\(\)\s*\n\s*{([^}]+)}'
+ ]
+
+ for pattern in dict_patterns:
+ for match in re.finditer(pattern, content, re.DOTALL):
+ dict_name = match.group(1)
+ dict_body = match.group(2)
+
+ values = {}
+ for line in dict_body.split('\n'):
+ line = line.strip()
+ if not line or line.startswith('//'):
+ continue
+
+ # Parse dictionary entries: { 0x1, "value" } or { 1, "value" }
+ entry_patterns = [
+ r'{\s*0x([0-9A-Fa-f]+),\s*"([^"]+)"\s*}', # Hex format
+ r'{\s*(\d+),\s*"([^"]+)"\s*}' # Decimal format
+ ]
+
+ for entry_pattern in entry_patterns:
+ entry_match = re.search(entry_pattern, line)
+ if entry_match:
+ key_str = entry_match.group(1)
+ value = entry_match.group(2)
+
+ # Convert hex to decimal if needed
+ if 'x' in entry_pattern:
+ key = str(int(key_str, 16))
+ else:
+ key = key_str
+
+ values[key] = value
+ break
+
+ if values:
+ dictionaries[dict_name] = {
+ 'name': dict_name,
+ 'values': values,
+ 'source_file': 'Dictionaries.cs'
+ }
+
+ return dictionaries
+ except Exception as e:
+ print(f"Error extracting dictionaries: {e}")
+ return {}
+
+def extract_spells_csv(file_path: Path) -> Dict[str, Any]:
+ """Extract spell data from Spells.csv."""
+ try:
+ spells = {}
+ # Try different encodings
+ for encoding in ['utf-8', 'latin1', 'cp1252']:
+ try:
+ with open(file_path, 'r', encoding=encoding) as f:
+ reader = csv.DictReader(f)
+ for row in reader:
+ spell_id = row.get('Id', '').strip()
+ if spell_id and spell_id.isdigit():
+ spells[spell_id] = {
+ 'id': int(spell_id),
+ 'name': row.get('Name', '').strip(),
+ 'description': row.get('Description', '').strip(),
+ 'school': row.get('School', '').strip(),
+ 'difficulty': row.get('Difficulty', '').strip(),
+ 'duration': row.get('Duration', '').strip(),
+ 'mana': row.get('Mana', '').strip(),
+ 'family': row.get('Family', '').strip(),
+ 'speed': row.get('Speed', '').strip(),
+ 'target_effect': row.get('TargetEffect', '').strip(),
+ 'target_mask': row.get('TargetMask', '').strip()
+ }
+ break
+ except UnicodeDecodeError:
+ continue
+
+ return {
+ 'name': 'Spells',
+ 'values': spells,
+ 'source_file': 'Spells.csv'
+ }
+ except Exception as e:
+ print(f"Error extracting spells: {e}")
+ return {}
+
+def extract_object_class_cs(file_path: Path) -> Dict[str, Any]:
+ """Extract ObjectClass enum specifically."""
+ try:
+ content = file_path.read_text(encoding='utf-8')
+
+ # Find ObjectClass enum
+ enum_match = re.search(r'public enum ObjectClass\s*{([^}]+)}', content, re.DOTALL)
+ if not enum_match:
+ return {}
+
+ enum_body = enum_match.group(1)
+ values = {}
+ current_value = 0
+
+ for line in enum_body.split('\n'):
+ line = line.strip()
+ if not line or line.startswith('//'):
+ continue
+
+ if '=' in line:
+ parts = line.split('=')
+ if len(parts) >= 2:
+ name = parts[0].strip().rstrip(',')
+ value_str = parts[1].strip().rstrip(',')
+ try:
+ current_value = int(value_str)
+ values[str(current_value)] = name
+ current_value += 1
+ except ValueError:
+ pass
+ else:
+ name = line.rstrip(',').strip()
+ if name and not name.startswith('//'):
+ values[str(current_value)] = name
+ current_value += 1
+
+ return {
+ 'name': 'ObjectClass',
+ 'values': values,
+ 'source_file': 'ObjectClass.cs'
+ }
+ except Exception as e:
+ print(f"Error extracting ObjectClass: {e}")
+ return {}
+
+def main():
+ base_path = Path('/home/erik/MosswartOverlord/Mag-Plugins/Shared')
+ constants_path = base_path / 'Constants'
+ spells_path = base_path / 'Spells'
+
+ comprehensive_database = {
+ 'metadata': {
+ 'extracted_at': '2025-06-10',
+ 'source': 'Mag-Plugins/Shared (comprehensive)',
+ 'version': '2.0.0'
+ },
+ 'enums': {},
+ 'dictionaries': {},
+ 'spells': {},
+ 'object_classes': {}
+ }
+
+ # Extract all constant enums
+ for cs_file in constants_path.glob('*.cs'):
+ if cs_file.name in ['Dictionaries.cs']:
+ continue # Handle separately
+
+ enum_data = extract_csharp_enum(cs_file)
+ if enum_data:
+ comprehensive_database['enums'][enum_data['name']] = enum_data
+ print(f"✓ Extracted enum: {enum_data['name']} ({len(enum_data['values'])} values)")
+
+ # Extract ObjectClass enum
+ object_class_file = base_path / 'ObjectClass.cs'
+ if object_class_file.exists():
+ object_class_data = extract_object_class_cs(object_class_file)
+ if object_class_data:
+ comprehensive_database['object_classes'] = object_class_data
+ print(f"✓ Extracted ObjectClass: {len(object_class_data['values'])} values")
+
+ # Extract dictionaries
+ dict_file = constants_path / 'Dictionaries.cs'
+ if dict_file.exists():
+ dict_data = extract_dictionaries_cs(dict_file)
+ comprehensive_database['dictionaries'] = dict_data
+ print(f"✓ Extracted dictionaries: {len(dict_data)} dictionaries")
+
+ # Extract spells
+ spells_file = spells_path / 'Spells.csv'
+ if spells_file.exists():
+ spell_data = extract_spells_csv(spells_file)
+ if spell_data:
+ comprehensive_database['spells'] = spell_data
+ print(f"✓ Extracted spells: {len(spell_data['values'])} spells")
+
+ # Save comprehensive database
+ output_file = Path('/home/erik/MosswartOverlord/inventory-service/comprehensive_enum_database_v2.json')
+ with open(output_file, 'w') as f:
+ json.dump(comprehensive_database, f, indent=2)
+
+ print(f"\n✅ Comprehensive enum database saved to: {output_file}")
+ print(f"📊 Total enums: {len(comprehensive_database['enums'])}")
+ print(f"📊 Total dictionaries: {len(comprehensive_database['dictionaries'])}")
+ print(f"📊 Total spells: {len(comprehensive_database['spells'].get('values', {}))}")
+ print(f"📊 Object classes: {len(comprehensive_database['object_classes'].get('values', {}))}")
+
+if __name__ == '__main__':
+ main()
\ No newline at end of file
diff --git a/inventory-service/extract_enums.py b/inventory-service/extract_enums.py
new file mode 100644
index 00000000..3b92a40c
--- /dev/null
+++ b/inventory-service/extract_enums.py
@@ -0,0 +1,130 @@
+#!/usr/bin/env python3
+"""
+Extract enum definitions from Mag-Plugins C# files into JSON mappings.
+
+This script parses the IntValueKey.cs file to create a mapping between
+numeric enum values and their human-readable names for inventory processing.
+"""
+
+import re
+import json
+import os
+from pathlib import Path
+
+def extract_int_value_enums(cs_file_path):
+ """Extract IntValueKey enum definitions from C# file."""
+
+ with open(cs_file_path, 'r') as f:
+ content = f.read()
+
+ # Pattern to match enum entries: EnumName = Value,
+ pattern = r'^\s*(?:\[[^\]]+\])?\s*(\w+)\s*=\s*(\d+),?\s*(?://.*)?$'
+
+ enums = {}
+ in_enum = False
+
+ for line in content.split('\n'):
+ # Check if we're entering the enum
+ if 'enum IntValueKey' in line:
+ in_enum = True
+ continue
+
+ # Check if we're exiting the enum
+ if in_enum and line.strip() == '}':
+ break
+
+ # Parse enum entries
+ if in_enum:
+ match = re.match(pattern, line)
+ if match:
+ name = match.group(1)
+ value = int(match.group(2))
+ enums[value] = name
+
+ return enums
+
+def create_property_mappings():
+ """Create organized property mappings for different item aspects."""
+
+ # Based on analysis of the enum values and common item properties
+ property_categories = {
+ 'basic': {
+ 5: 'encumbrance', # EncumbranceVal
+ 19: 'value', # Value
+ 25: 'level', # Level
+ 28: 'armor_level', # ArmorLevel
+ 44: 'damage', # Damage
+ 45: 'damage_type', # DamageType
+ },
+
+ 'requirements': {
+ 158: 'wield_requirement', # Common wield requirement key (from JSON data)
+ 160: 'wield_level', # Common wield level key (from JSON data)
+ 48: 'weapon_skill', # WeaponSkill
+ },
+
+ 'combat': {
+ 218103842: 'max_damage', # MaxDamage_Decal
+ 36: 'resist_magic', # ResistMagic
+ 56: 'shield_value', # ShieldValue
+ },
+
+ 'display': {
+ 218103809: 'icon', # Icon_Decal_DID
+ 218103849: 'icon_overlay', # IconOverlay_Decal_DID
+ 218103850: 'icon_underlay', # IconUnderlay_Decal_DID
+ },
+
+ 'metadata': {
+ 218103808: 'weenie_class_id', # WeenieClassId_Decal
+ 218103847: 'physics_data_flags', # PhysicsDataFlags_Decal
+ 218103831: 'object_desc_flags', # ObjectDescriptionFlags_Decal
+ }
+ }
+
+ return property_categories
+
+def main():
+ """Main extraction process."""
+
+ # Paths
+ mag_plugins_path = Path('/home/erik/MosswartOverlord/Mag-Plugins')
+ int_value_key_path = mag_plugins_path / 'Shared' / 'Constants' / 'IntValueKey.cs'
+ output_dir = Path('/home/erik/MosswartOverlord/inventory-service')
+
+ # Create output directory
+ output_dir.mkdir(exist_ok=True)
+
+ # Extract all enum values
+ print("Extracting IntValueKey enums...")
+ int_enums = extract_int_value_enums(int_value_key_path)
+ print(f"Found {len(int_enums)} enum definitions")
+
+ # Create property categories
+ property_categories = create_property_mappings()
+
+ # Save complete enum mapping
+ enum_output = output_dir / 'int_value_enums.json'
+ with open(enum_output, 'w') as f:
+ json.dump(int_enums, f, indent=2)
+ print(f"Saved complete enum mapping to {enum_output}")
+
+ # Save categorized mappings
+ categories_output = output_dir / 'property_categories.json'
+ with open(categories_output, 'w') as f:
+ json.dump(property_categories, f, indent=2)
+ print(f"Saved property categories to {categories_output}")
+
+ # Print some interesting findings
+ print("\nKey mappings found:")
+ interesting_keys = [5, 19, 28, 44, 158, 160, 218103809, 218103842, 218103847, 218103849]
+ for key in interesting_keys:
+ if key in int_enums:
+ print(f" {key}: {int_enums[key]}")
+
+ print(f"\nFiles created in {output_dir}/")
+ print("- int_value_enums.json: Complete enum mapping")
+ print("- property_categories.json: Organized property categories")
+
+if __name__ == '__main__':
+ main()
\ No newline at end of file
diff --git a/inventory-service/extract_spell_names.py b/inventory-service/extract_spell_names.py
new file mode 100644
index 00000000..7505b1f4
--- /dev/null
+++ b/inventory-service/extract_spell_names.py
@@ -0,0 +1,121 @@
+#!/usr/bin/env python3
+"""
+Extract spell names from Mag-Plugins/Shared/Spells/Spells.csv for spell ID translation.
+"""
+
+import csv
+import json
+from pathlib import Path
+
+def extract_spell_names():
+ """Extract spell ID to name mappings from Spells.csv."""
+
+ csv_path = Path('/home/erik/MosswartOverlord/Mag-Plugins/Shared/Spells/Spells.csv')
+
+ if not csv_path.exists():
+ print(f"❌ Spells.csv not found at {csv_path}")
+ return {}
+
+ spell_mappings = {}
+
+ # Try different encodings
+ encodings = ['utf-8', 'latin-1', 'windows-1252', 'utf-8-sig']
+
+ for encoding in encodings:
+ try:
+ with open(csv_path, 'r', encoding=encoding) as f:
+ reader = csv.DictReader(f)
+ print(f"✓ Successfully opened with {encoding} encoding")
+
+ for row in reader:
+ try:
+ spell_id = int(row['Id'])
+ spell_name = row['Name'].strip()
+ spell_description = row.get('Description', '').strip()
+ spell_school = row.get('School', '').strip()
+ spell_family = row.get('Family', '').strip()
+ spell_difficulty = row.get('Difficulty', '').strip()
+ spell_duration = row.get('Duration', '').strip()
+ spell_mana = row.get('Mana', '').strip()
+
+ # Create comprehensive spell data
+ spell_data = {
+ 'name': spell_name,
+ 'description': spell_description,
+ 'school': spell_school,
+ 'family': spell_family,
+ 'difficulty': spell_difficulty,
+ 'duration': spell_duration,
+ 'mana': spell_mana
+ }
+
+ spell_mappings[spell_id] = spell_data
+
+ except (ValueError, KeyError) as e:
+ print(f"⚠️ Skipping invalid row: {e}")
+ continue
+
+ # If we get here successfully, we're done
+ break
+
+ except Exception as e:
+ print(f"❌ Error with {encoding} encoding: {e}")
+ continue
+
+ if spell_mappings:
+ print(f"✓ Extracted {len(spell_mappings)} spell entries")
+ else:
+ print("❌ Failed to extract spells with any encoding")
+
+ return spell_mappings
+
+def save_spell_database(spell_mappings):
+ """Save spell mappings to JSON file."""
+
+ output_path = Path('/home/erik/MosswartOverlord/inventory-service/spell_database.json')
+
+ spell_database = {
+ 'metadata': {
+ 'version': '1.0.0',
+ 'source': 'Mag-Plugins/Shared/Spells/Spells.csv',
+ 'total_spells': len(spell_mappings),
+ 'description': 'Spell ID to name/data mappings for Asheron\'s Call'
+ },
+ 'spells': spell_mappings
+ }
+
+ try:
+ with open(output_path, 'w', encoding='utf-8') as f:
+ json.dump(spell_database, f, indent=2, ensure_ascii=False)
+
+ print(f"✓ Spell database saved to {output_path}")
+ return True
+
+ except Exception as e:
+ print(f"❌ Error saving spell database: {e}")
+ return False
+
+def main():
+ """Main extraction process."""
+ print("Extracting spell names from Spells.csv...")
+
+ # Extract spell mappings
+ spell_mappings = extract_spell_names()
+
+ if not spell_mappings:
+ print("❌ No spells extracted")
+ return
+
+ # Save to JSON file
+ if save_spell_database(spell_mappings):
+ # Show some sample spells
+ print("\nSample spell entries:")
+ for spell_id, spell_data in list(spell_mappings.items())[:5]:
+ print(f" {spell_id}: {spell_data['name']} ({spell_data['school']})")
+
+ print(f"\n✓ Successfully processed {len(spell_mappings)} spells")
+ else:
+ print("❌ Failed to save spell database")
+
+if __name__ == "__main__":
+ main()
\ No newline at end of file
diff --git a/inventory-service/init_db.py b/inventory-service/init_db.py
new file mode 100644
index 00000000..a8c915fe
--- /dev/null
+++ b/inventory-service/init_db.py
@@ -0,0 +1,37 @@
+#!/usr/bin/env python3
+"""
+Initialize the inventory service database.
+Creates all tables and performs initial setup.
+"""
+
+import asyncio
+import logging
+import os
+import sqlalchemy as sa
+from database import Base, DATABASE_URL, create_indexes
+
+logging.basicConfig(level=logging.INFO)
+logger = logging.getLogger(__name__)
+
+async def init_database():
+ """Initialize database tables and indexes."""
+ try:
+ # Create engine
+ engine = sa.create_engine(DATABASE_URL)
+
+ # Create all tables
+ logger.info("Creating database tables...")
+ Base.metadata.create_all(engine)
+
+ # Create indexes
+ logger.info("Creating performance indexes...")
+ create_indexes(engine)
+
+ logger.info("Database initialization completed successfully")
+
+ except Exception as e:
+ logger.error(f"Database initialization failed: {e}")
+ raise
+
+if __name__ == "__main__":
+ asyncio.run(init_database())
\ No newline at end of file
diff --git a/inventory-service/int_value_enums.json b/inventory-service/int_value_enums.json
new file mode 100644
index 00000000..fe096f71
--- /dev/null
+++ b/inventory-service/int_value_enums.json
@@ -0,0 +1,450 @@
+{
+ "0": "Undef",
+ "1": "ItemType",
+ "2": "CreatureType",
+ "3": "PaletteTemplate",
+ "4": "ClothingPriority",
+ "5": "EncumbranceVal",
+ "6": "ItemsCapacity",
+ "7": "ContainersCapacity",
+ "8": "Mass",
+ "9": "ValidLocations",
+ "10": "CurrentWieldedLocation",
+ "11": "MaxStackSize",
+ "12": "StackSize",
+ "13": "StackUnitEncumbrance",
+ "14": "StackUnitMass",
+ "15": "StackUnitValue",
+ "16": "ItemUseable",
+ "17": "RareId",
+ "18": "UiEffects",
+ "19": "Value",
+ "20": "CoinValue",
+ "21": "TotalExperience",
+ "22": "AvailableCharacter",
+ "23": "TotalSkillCredits",
+ "24": "AvailableSkillCredits",
+ "25": "Level",
+ "26": "AccountRequirements",
+ "27": "ArmorType",
+ "28": "ArmorLevel",
+ "29": "AllegianceCpPool",
+ "30": "AllegianceRank",
+ "31": "ChannelsAllowed",
+ "32": "ChannelsActive",
+ "33": "Bonded",
+ "34": "MonarchsRank",
+ "35": "AllegianceFollowers",
+ "36": "ResistMagic",
+ "37": "ResistItemAppraisal",
+ "38": "ResistLockpick",
+ "39": "DeprecatedResistRepair",
+ "40": "CombatMode",
+ "41": "CurrentAttackHeight",
+ "42": "CombatCollisions",
+ "43": "NumDeaths",
+ "44": "Damage",
+ "45": "DamageType",
+ "46": "DefaultCombatStyle",
+ "47": "AttackType",
+ "48": "WeaponSkill",
+ "49": "WeaponTime",
+ "50": "AmmoType",
+ "51": "CombatUse",
+ "52": "ParentLocation",
+ "53": "PlacementPosition",
+ "54": "WeaponEncumbrance",
+ "55": "WeaponMass",
+ "56": "ShieldValue",
+ "57": "ShieldEncumbrance",
+ "58": "MissileInventoryLocation",
+ "59": "FullDamageType",
+ "60": "WeaponRange",
+ "61": "AttackersSkill",
+ "62": "DefendersSkill",
+ "63": "AttackersSkillValue",
+ "64": "AttackersClass",
+ "65": "Placement",
+ "66": "CheckpointStatus",
+ "67": "Tolerance",
+ "68": "TargetingTactic",
+ "69": "CombatTactic",
+ "70": "HomesickTargetingTactic",
+ "71": "NumFollowFailures",
+ "72": "FriendType",
+ "73": "FoeType",
+ "74": "MerchandiseItemTypes",
+ "75": "MerchandiseMinValue",
+ "76": "MerchandiseMaxValue",
+ "77": "NumItemsSold",
+ "78": "NumItemsBought",
+ "79": "MoneyIncome",
+ "80": "MoneyOutflow",
+ "81": "MaxGeneratedObjects",
+ "82": "InitGeneratedObjects",
+ "83": "ActivationResponse",
+ "84": "OriginalValue",
+ "85": "NumMoveFailures",
+ "86": "MinLevel",
+ "87": "MaxLevel",
+ "88": "LockpickMod",
+ "89": "BoosterEnum",
+ "90": "BoostValue",
+ "91": "MaxStructure",
+ "92": "Structure",
+ "93": "PhysicsState",
+ "94": "TargetType",
+ "95": "RadarBlipColor",
+ "96": "EncumbranceCapacity",
+ "97": "LoginTimestamp",
+ "98": "CreationTimestamp",
+ "99": "PkLevelModifier",
+ "100": "GeneratorType",
+ "101": "AiAllowedCombatStyle",
+ "102": "LogoffTimestamp",
+ "103": "GeneratorDestructionType",
+ "104": "ActivationCreateClass",
+ "105": "ItemWorkmanship",
+ "106": "ItemSpellcraft",
+ "107": "ItemCurMana",
+ "108": "ItemMaxMana",
+ "109": "ItemDifficulty",
+ "110": "ItemAllegianceRankLimit",
+ "111": "PortalBitmask",
+ "112": "AdvocateLevel",
+ "113": "Gender",
+ "114": "Attuned",
+ "115": "ItemSkillLevelLimit",
+ "116": "GateLogic",
+ "117": "ItemManaCost",
+ "118": "Logoff",
+ "119": "Active",
+ "120": "AttackHeight",
+ "121": "NumAttackFailures",
+ "122": "AiCpThreshold",
+ "123": "AiAdvancementStrategy",
+ "124": "Version",
+ "125": "Age",
+ "126": "VendorHappyMean",
+ "127": "VendorHappyVariance",
+ "128": "CloakStatus",
+ "129": "VitaeCpPool",
+ "130": "NumServicesSold",
+ "131": "MaterialType",
+ "132": "NumAllegianceBreaks",
+ "133": "ShowableOnRadar",
+ "134": "PlayerKillerStatus",
+ "135": "VendorHappyMaxItems",
+ "136": "ScorePageNum",
+ "137": "ScoreConfigNum",
+ "138": "ScoreNumScores",
+ "139": "DeathLevel",
+ "140": "AiOptions",
+ "141": "OpenToEveryone",
+ "142": "GeneratorTimeType",
+ "143": "GeneratorStartTime",
+ "144": "GeneratorEndTime",
+ "145": "GeneratorEndDestructionType",
+ "146": "XpOverride",
+ "147": "NumCrashAndTurns",
+ "148": "ComponentWarningThreshold",
+ "149": "HouseStatus",
+ "150": "HookPlacement",
+ "151": "HookType",
+ "152": "HookItemType",
+ "153": "AiPpThreshold",
+ "154": "GeneratorVersion",
+ "155": "HouseType",
+ "156": "PickupEmoteOffset",
+ "157": "WeenieIteration",
+ "158": "WieldRequirements",
+ "159": "WieldSkillType",
+ "160": "WieldDifficulty",
+ "161": "HouseMaxHooksUsable",
+ "162": "HouseCurrentHooksUsable",
+ "163": "AllegianceMinLevel",
+ "164": "AllegianceMaxLevel",
+ "165": "HouseRelinkHookCount",
+ "166": "SlayerCreatureType",
+ "167": "ConfirmationInProgress",
+ "168": "ConfirmationTypeInProgress",
+ "169": "TsysMutationData",
+ "170": "NumItemsInMaterial",
+ "171": "NumTimesTinkered",
+ "172": "AppraisalLongDescDecoration",
+ "173": "AppraisalLockpickSuccessPercent",
+ "174": "AppraisalPages",
+ "175": "AppraisalMaxPages",
+ "176": "AppraisalItemSkill",
+ "177": "GemCount",
+ "178": "GemType",
+ "179": "ImbuedEffect",
+ "180": "AttackersRawSkillValue",
+ "181": "ChessRank",
+ "182": "ChessTotalGames",
+ "183": "ChessGamesWon",
+ "184": "ChessGamesLost",
+ "185": "TypeOfAlteration",
+ "186": "SkillToBeAltered",
+ "187": "SkillAlterationCount",
+ "188": "HeritageGroup",
+ "189": "TransferFromAttribute",
+ "190": "TransferToAttribute",
+ "191": "AttributeTransferCount",
+ "192": "FakeFishingSkill",
+ "193": "NumKeys",
+ "194": "DeathTimestamp",
+ "195": "PkTimestamp",
+ "196": "VictimTimestamp",
+ "197": "HookGroup",
+ "198": "AllegianceSwearTimestamp",
+ "199": "HousePurchaseTimestamp",
+ "200": "RedirectableEquippedArmorCount",
+ "201": "MeleeDefenseImbuedEffectTypeCache",
+ "202": "MissileDefenseImbuedEffectTypeCache",
+ "203": "MagicDefenseImbuedEffectTypeCache",
+ "204": "ElementalDamageBonus",
+ "205": "ImbueAttempts",
+ "206": "ImbueSuccesses",
+ "207": "CreatureKills",
+ "208": "PlayerKillsPk",
+ "209": "PlayerKillsPkl",
+ "210": "RaresTierOne",
+ "211": "RaresTierTwo",
+ "212": "RaresTierThree",
+ "213": "RaresTierFour",
+ "214": "RaresTierFive",
+ "215": "AugmentationStat",
+ "216": "AugmentationFamilyStat",
+ "217": "AugmentationInnateFamily",
+ "218": "AugmentationInnateStrength",
+ "219": "AugmentationInnateEndurance",
+ "220": "AugmentationInnateCoordination",
+ "221": "AugmentationInnateQuickness",
+ "222": "AugmentationInnateFocus",
+ "223": "AugmentationInnateSelf",
+ "224": "AugmentationSpecializeSalvaging",
+ "225": "AugmentationSpecializeItemTinkering",
+ "226": "AugmentationSpecializeArmorTinkering",
+ "227": "AugmentationSpecializeMagicItemTinkering",
+ "228": "AugmentationSpecializeWeaponTinkering",
+ "229": "AugmentationExtraPackSlot",
+ "230": "AugmentationIncreasedCarryingCapacity",
+ "231": "AugmentationLessDeathItemLoss",
+ "232": "AugmentationSpellsRemainPastDeath",
+ "233": "AugmentationCriticalDefense",
+ "234": "AugmentationBonusXp",
+ "235": "AugmentationBonusSalvage",
+ "236": "AugmentationBonusImbueChance",
+ "237": "AugmentationFasterRegen",
+ "238": "AugmentationIncreasedSpellDuration",
+ "239": "AugmentationResistanceFamily",
+ "240": "AugmentationResistanceSlash",
+ "241": "AugmentationResistancePierce",
+ "242": "AugmentationResistanceBlunt",
+ "243": "AugmentationResistanceAcid",
+ "244": "AugmentationResistanceFire",
+ "245": "AugmentationResistanceFrost",
+ "246": "AugmentationResistanceLightning",
+ "247": "RaresTierOneLogin",
+ "248": "RaresTierTwoLogin",
+ "249": "RaresTierThreeLogin",
+ "250": "RaresTierFourLogin",
+ "251": "RaresTierFiveLogin",
+ "252": "RaresLoginTimestamp",
+ "253": "RaresTierSix",
+ "254": "RaresTierSeven",
+ "255": "RaresTierSixLogin",
+ "256": "RaresTierSevenLogin",
+ "257": "ItemAttributeLimit",
+ "258": "ItemAttributeLevelLimit",
+ "259": "ItemAttribute2ndLimit",
+ "260": "ItemAttribute2ndLevelLimit",
+ "261": "CharacterTitleId",
+ "262": "NumCharacterTitles",
+ "263": "ResistanceModifierType",
+ "264": "FreeTinkersBitfield",
+ "265": "EquipmentSetId",
+ "266": "PetClass",
+ "267": "Lifespan",
+ "268": "RemainingLifespan",
+ "269": "UseCreateQuantity",
+ "270": "WieldRequirements2",
+ "271": "WieldSkillType2",
+ "272": "WieldDifficulty2",
+ "273": "WieldRequirements3",
+ "274": "WieldSkillType3",
+ "275": "WieldDifficulty3",
+ "276": "WieldRequirements4",
+ "277": "WieldSkillType4",
+ "278": "WieldDifficulty4",
+ "279": "Unique",
+ "280": "SharedCooldown",
+ "281": "Faction1Bits",
+ "282": "Faction2Bits",
+ "283": "Faction3Bits",
+ "284": "Hatred1Bits",
+ "285": "Hatred2Bits",
+ "286": "Hatred3Bits",
+ "287": "SocietyRankCelhan",
+ "288": "SocietyRankEldweb",
+ "289": "SocietyRankRadblo",
+ "290": "HearLocalSignals",
+ "291": "HearLocalSignalsRadius",
+ "292": "Cleaving",
+ "293": "AugmentationSpecializeGearcraft",
+ "294": "AugmentationInfusedCreatureMagic",
+ "295": "AugmentationInfusedItemMagic",
+ "296": "AugmentationInfusedLifeMagic",
+ "297": "AugmentationInfusedWarMagic",
+ "298": "AugmentationCriticalExpertise",
+ "299": "AugmentationCriticalPower",
+ "300": "AugmentationSkilledMelee",
+ "301": "AugmentationSkilledMissile",
+ "302": "AugmentationSkilledMagic",
+ "303": "ImbuedEffect2",
+ "304": "ImbuedEffect3",
+ "305": "ImbuedEffect4",
+ "306": "ImbuedEffect5",
+ "307": "DamageRating",
+ "308": "DamageResistRating",
+ "309": "AugmentationDamageBonus",
+ "310": "AugmentationDamageReduction",
+ "311": "ImbueStackingBits",
+ "312": "HealOverTime",
+ "313": "CritRating",
+ "314": "CritDamageRating",
+ "315": "CritResistRating",
+ "316": "CritDamageResistRating",
+ "317": "HealingResistRating",
+ "318": "DamageOverTime",
+ "319": "ItemMaxLevel",
+ "320": "ItemXpStyle",
+ "321": "EquipmentSetExtra",
+ "322": "AetheriaBitfield",
+ "323": "HealingBoostRating",
+ "324": "HeritageSpecificArmor",
+ "325": "AlternateRacialSkills",
+ "326": "AugmentationJackOfAllTrades",
+ "327": "AugmentationResistanceNether",
+ "328": "AugmentationInfusedVoidMagic",
+ "329": "WeaknessRating",
+ "330": "NetherOverTime",
+ "331": "NetherResistRating",
+ "332": "LuminanceAward",
+ "333": "LumAugDamageRating",
+ "334": "LumAugDamageReductionRating",
+ "335": "LumAugCritDamageRating",
+ "336": "LumAugCritReductionRating",
+ "337": "LumAugSurgeEffectRating",
+ "338": "LumAugSurgeChanceRating",
+ "339": "LumAugItemManaUsage",
+ "340": "LumAugItemManaGain",
+ "341": "LumAugVitality",
+ "342": "LumAugHealingRating",
+ "343": "LumAugSkilledCraft",
+ "344": "LumAugSkilledSpec",
+ "345": "LumAugNoDestroyCraft",
+ "346": "RestrictInteraction",
+ "347": "OlthoiLootTimestamp",
+ "348": "OlthoiLootStep",
+ "349": "UseCreatesContractId",
+ "350": "DotResistRating",
+ "351": "LifeResistRating",
+ "352": "CloakWeaveProc",
+ "353": "WeaponType",
+ "354": "MeleeMastery",
+ "355": "RangedMastery",
+ "356": "SneakAttackRating",
+ "357": "RecklessnessRating",
+ "358": "DeceptionRating",
+ "359": "CombatPetRange",
+ "360": "WeaponAuraDamage",
+ "361": "WeaponAuraSpeed",
+ "362": "SummoningMastery",
+ "363": "HeartbeatLifespan",
+ "364": "UseLevelRequirement",
+ "365": "LumAugAllSkills",
+ "366": "UseRequiresSkill",
+ "367": "UseRequiresSkillLevel",
+ "368": "UseRequiresSkillSpec",
+ "369": "UseRequiresLevel",
+ "370": "GearDamage",
+ "371": "GearDamageResist",
+ "372": "GearCrit",
+ "373": "GearCritResist",
+ "374": "GearCritDamage",
+ "375": "GearCritDamageResist",
+ "376": "GearHealingBoost",
+ "377": "GearNetherResist",
+ "378": "GearLifeResist",
+ "379": "GearMaxHealth",
+ "380": "Unknown380",
+ "381": "PKDamageRating",
+ "382": "PKDamageResistRating",
+ "383": "GearPKDamageRating",
+ "384": "GearPKDamageResistRating",
+ "385": "Unknown385",
+ "386": "Overpower",
+ "387": "OverpowerResist",
+ "388": "GearOverpower",
+ "389": "GearOverpowerResist",
+ "390": "Enlightenment",
+ "8007": "PCAPRecordedAutonomousMovement",
+ "8030": "PCAPRecordedMaxVelocityEstimated",
+ "8041": "PCAPRecordedPlacement",
+ "8042": "PCAPRecordedAppraisalPages",
+ "8043": "PCAPRecordedAppraisalMaxPages",
+ "9008": "CurrentLoyaltyAtLastLogoff",
+ "9009": "CurrentLeadershipAtLastLogoff",
+ "9010": "AllegianceOfficerRank",
+ "9011": "HouseRentTimestamp",
+ "9012": "Hairstyle",
+ "9013": "VisualClothingPriority",
+ "9014": "SquelchGlobal",
+ "9015": "InventoryOrder",
+ "218103808": "WeenieClassId_Decal",
+ "218103809": "Icon_Decal_DID",
+ "218103810": "Container_Decal_IID",
+ "218103811": "Landblock_Decal",
+ "218103812": "ItemSlots_Decal",
+ "218103813": "PackSlots_Decal",
+ "218103814": "StackCount_Decal",
+ "218103815": "StackMax_Decal",
+ "218103816": "Spell_Decal_DID",
+ "218103817": "SlotLegacy_Decal",
+ "218103818": "Wielder_Decal_IID",
+ "218103819": "WieldingSlot_Decal",
+ "218103820": "Monarch_Decal_IID",
+ "218103821": "Coverage_Decal",
+ "218103822": "EquipableSlots_Decal",
+ "218103823": "EquipType_Decal",
+ "218103824": "IconOutline_Decal",
+ "218103825": "MissileType_Decal",
+ "218103826": "UsageMask_Decal",
+ "218103827": "HouseOwner_Decal_IID",
+ "218103828": "HookMask_Decal",
+ "218103829": "HookType_Decal",
+ "218103830": "Setup_Decal_DID",
+ "218103831": "ObjectDescriptionFlags_Decal",
+ "218103832": "CreateFlags1_Decal",
+ "218103833": "CreateFlags2_Decal",
+ "218103834": "Category_Decal",
+ "218103835": "Behavior_Decal",
+ "218103836": "MagicDef_Decal",
+ "218103837": "SpecialProps_Decal",
+ "218103838": "SpellCount_Decal",
+ "218103839": "WeapSpeed_Decal",
+ "218103840": "EquipSkill_Decal",
+ "218103841": "DamageType_Decal",
+ "218103842": "MaxDamage_Decal",
+ "218103843": "Unknown10_Decal",
+ "218103844": "Unknown100000_Decal",
+ "218103845": "Unknown800000_Decal",
+ "218103846": "Unknown8000000_Decal",
+ "218103847": "PhysicsDataFlags_Decal",
+ "218103848": "ActiveSpellCount_Decal",
+ "218103849": "IconOverlay_Decal_DID",
+ "218103850": "IconUnderlay_Decal_DID",
+ "231735296": "Slot_Decal"
+}
\ No newline at end of file
diff --git a/inventory-service/main.py b/inventory-service/main.py
new file mode 100644
index 00000000..641851c1
--- /dev/null
+++ b/inventory-service/main.py
@@ -0,0 +1,1112 @@
+"""
+Inventory Service - Separate microservice for item data processing and queries.
+
+Handles enum translation, data normalization, and provides structured item data APIs.
+"""
+
+import json
+import logging
+from pathlib import Path
+from typing import Dict, List, Optional, Any
+from datetime import datetime
+
+from fastapi import FastAPI, HTTPException, Depends, Query
+from fastapi.responses import JSONResponse
+from pydantic import BaseModel
+import databases
+import sqlalchemy as sa
+
+from database import (
+ Base, Item, ItemCombatStats, ItemRequirements, ItemEnhancements,
+ ItemRatings, ItemSpells, ItemRawData, DATABASE_URL, create_indexes
+)
+
+# Configure logging
+logging.basicConfig(level=logging.INFO)
+logger = logging.getLogger(__name__)
+
+# FastAPI app
+app = FastAPI(
+ title="Inventory Service",
+ description="Microservice for Asheron's Call item data processing and queries",
+ version="1.0.0"
+)
+
+# Database connection
+database = databases.Database(DATABASE_URL)
+engine = sa.create_engine(DATABASE_URL)
+
+# Load comprehensive enum mappings
+def load_comprehensive_enums():
+ """Load complete enum database with all translations."""
+ logger.info("Loading comprehensive enum database...")
+ try:
+ # Try new comprehensive database first
+ logger.info("Attempting to load comprehensive_enum_database_v2.json")
+ with open('comprehensive_enum_database_v2.json', 'r') as f:
+ enum_db = json.load(f)
+ logger.info("Successfully loaded comprehensive_enum_database_v2.json")
+ except FileNotFoundError:
+ logger.warning("comprehensive_enum_database_v2.json not found, trying fallback")
+ try:
+ with open('complete_enum_database.json', 'r') as f:
+ enum_db = json.load(f)
+ logger.info("Successfully loaded complete_enum_database.json")
+ except FileNotFoundError as e:
+ logger.error(f"No enum database found: {e}")
+ return {'int_values': {}, 'materials': {}, 'item_types': {}, 'skills': {}, 'spell_categories': {}, 'spells': {}, 'object_classes': {}, 'coverage_masks': {}}
+ except Exception as e:
+ logger.error(f"Error reading enum database file: {e}")
+ return {'int_values': {}, 'materials': {}, 'item_types': {}, 'skills': {}, 'spell_categories': {}, 'spells': {}, 'object_classes': {}, 'coverage_masks': {}}
+
+ # Extract specific enum mappings for easy access from new format
+ logger.info("Processing loaded enum database...")
+ enums = enum_db.get('enums', {})
+ spells_data = enum_db.get('spells', {})
+ object_classes_data = enum_db.get('object_classes', {})
+
+ # Convert IntValueKey to integer-keyed dict for fast lookup
+ int_values = {}
+ if 'IntValueKey' in enums:
+ for k, v in enums['IntValueKey']['values'].items():
+ try:
+ int_values[int(k)] = v
+ except (ValueError, TypeError):
+ pass # Skip non-numeric keys
+
+ # Material types mapping
+ materials = {}
+ if 'MaterialType' in enums:
+ for k, v in enums['MaterialType']['values'].items():
+ try:
+ materials[int(k)] = v
+ except (ValueError, TypeError):
+ pass
+
+ # Item types mapping
+ item_types = {}
+ if 'ItemType' in enums:
+ for k, v in enums['ItemType']['values'].items():
+ try:
+ item_types[int(k)] = v
+ except (ValueError, TypeError):
+ pass
+
+ # Skills mapping
+ skills = {}
+ if 'Skill' in enums:
+ skill_data = enums['Skill']['values']
+ for k, v in skill_data.items():
+ try:
+ if isinstance(v, dict):
+ skills[int(k)] = v.get('name', str(v))
+ else:
+ skills[int(k)] = str(v)
+ except (ValueError, TypeError):
+ pass
+
+ # Spell categories mapping
+ spell_categories = {}
+ if 'SpellCategory' in enums:
+ for k, v in enums['SpellCategory']['values'].items():
+ try:
+ spell_categories[int(k)] = v
+ except (ValueError, TypeError):
+ pass
+
+ # Coverage mask mapping
+ coverage_masks = {}
+ if 'CoverageMask' in enums:
+ for k, v in enums['CoverageMask']['values'].items():
+ try:
+ coverage_masks[int(k)] = v
+ except (ValueError, TypeError):
+ pass
+
+ # Object classes mapping
+ object_classes = {}
+ if object_classes_data and 'values' in object_classes_data:
+ for k, v in object_classes_data['values'].items():
+ try:
+ object_classes[int(k)] = v
+ except (ValueError, TypeError):
+ pass
+
+ # Spells mapping
+ spells = {}
+ if spells_data and 'values' in spells_data:
+ spells = {int(k): v for k, v in spells_data['values'].items() if k.isdigit()}
+
+ logger.info(f"Enum database loaded successfully: {len(int_values)} int values, {len(spells)} spells, {len(object_classes)} object classes")
+
+ return {
+ 'int_values': int_values,
+ 'materials': materials,
+ 'item_types': item_types,
+ 'skills': skills,
+ 'spell_categories': spell_categories,
+ 'coverage_masks': coverage_masks,
+ 'object_classes': object_classes,
+ 'spells': spells,
+ 'full_database': enum_db
+ }
+
+ENUM_MAPPINGS = load_comprehensive_enums()
+
+# Pydantic models
+class InventoryItem(BaseModel):
+ """Raw inventory item from plugin."""
+ character_name: str
+ timestamp: datetime
+ items: List[Dict[str, Any]]
+
+class ProcessedItem(BaseModel):
+ """Processed item with translated properties."""
+ name: str
+ icon: int
+ object_class: int
+ value: int
+ burden: int
+ # Add other fields as needed
+
+# Startup/shutdown events
+@app.on_event("startup")
+async def startup():
+ """Initialize database connection and create tables."""
+ await database.connect()
+
+ # Create tables if they don't exist
+ Base.metadata.create_all(engine)
+
+ # Create performance indexes
+ create_indexes(engine)
+
+ logger.info("Inventory service started successfully")
+
+@app.on_event("shutdown")
+async def shutdown():
+ """Close database connection."""
+ await database.disconnect()
+
+# Enhanced translation functions
+def translate_int_values(int_values: Dict[str, int]) -> Dict[str, Any]:
+ """Translate IntValues enum keys to human-readable names using comprehensive database."""
+ translated = {}
+ int_enum_map = ENUM_MAPPINGS.get('int_values', {})
+
+ for key_str, value in int_values.items():
+ try:
+ key_int = int(key_str)
+ if key_int in int_enum_map:
+ enum_name = int_enum_map[key_int]
+ translated[enum_name] = value
+ else:
+ # Keep unknown keys with numeric identifier
+ translated[f"unknown_{key_int}"] = value
+ except ValueError:
+ # Skip non-numeric keys
+ translated[key_str] = value
+
+ return translated
+
+def translate_material_type(material_id: int) -> str:
+ """Translate material type ID to human-readable name."""
+ materials = ENUM_MAPPINGS.get('materials', {})
+ return materials.get(material_id, f"Unknown_Material_{material_id}")
+
+def translate_item_type(item_type_id: int) -> str:
+ """Translate item type ID to human-readable name."""
+ item_types = ENUM_MAPPINGS.get('item_types', {})
+ return item_types.get(item_type_id, f"Unknown_ItemType_{item_type_id}")
+
+def translate_object_class(object_class_id: int, item_data: dict = None) -> str:
+ """Translate object class ID to human-readable name with context-aware detection."""
+ # Use the extracted ObjectClass enum first
+ object_classes = ENUM_MAPPINGS.get('object_classes', {})
+ if object_class_id in object_classes:
+ base_name = object_classes[object_class_id]
+
+ # Context-aware classification for Gem class (ID 11)
+ if base_name == "Gem" and object_class_id == 11 and item_data:
+ # Check item name and properties to distinguish types
+ item_name = item_data.get('Name', '').lower()
+
+ # Mana stones and crystals
+ if any(keyword in item_name for keyword in ['mana stone', 'crystal', 'gem']):
+ if 'mana stone' in item_name:
+ return "Mana Stone"
+ elif 'crystal' in item_name:
+ return "Crystal"
+ else:
+ return "Gem"
+
+ # Aetheria detection - check for specific properties
+ int_values = item_data.get('IntValues', {})
+ if isinstance(int_values, dict):
+ # Check for Aetheria-specific properties
+ has_item_set = '265' in int_values or 265 in int_values # EquipmentSetId
+ has_aetheria_level = '218103840' in int_values or 218103840 in int_values # ItemMaxLevel
+
+ if has_item_set or has_aetheria_level or 'aetheria' in item_name:
+ return "Aetheria"
+
+ # Default to Gem for other items in this class
+ return "Gem"
+
+ return base_name
+
+ # Fallback to WeenieType enum
+ weenie_types = {}
+ if 'WeenieType' in ENUM_MAPPINGS.get('full_database', {}).get('enums', {}):
+ weenie_data = ENUM_MAPPINGS['full_database']['enums']['WeenieType']['values']
+ for k, v in weenie_data.items():
+ try:
+ weenie_types[int(k)] = v
+ except (ValueError, TypeError):
+ pass
+
+ return weenie_types.get(object_class_id, f"Unknown_ObjectClass_{object_class_id}")
+
+def translate_skill(skill_id: int) -> str:
+ """Translate skill ID to skill name."""
+ skills = ENUM_MAPPINGS.get('skills', {})
+ return skills.get(skill_id, f"Unknown_Skill_{skill_id}")
+
+def translate_spell_category(category_id: int) -> str:
+ """Translate spell category ID to spell category name."""
+ spell_categories = ENUM_MAPPINGS.get('spell_categories', {})
+ return spell_categories.get(category_id, f"Unknown_SpellCategory_{category_id}")
+
+def translate_spell(spell_id: int) -> Dict[str, Any]:
+ """Translate spell ID to spell data including name, description, school, etc."""
+ spells = ENUM_MAPPINGS.get('spells', {})
+ spell_data = spells.get(spell_id)
+
+ if spell_data:
+ return {
+ 'id': spell_id,
+ 'name': spell_data.get('name', f'Unknown_Spell_{spell_id}'),
+ 'description': spell_data.get('description', ''),
+ 'school': spell_data.get('school', ''),
+ 'difficulty': spell_data.get('difficulty', ''),
+ 'duration': spell_data.get('duration', ''),
+ 'mana': spell_data.get('mana', ''),
+ 'family': spell_data.get('family', '')
+ }
+ else:
+ return {
+ 'id': spell_id,
+ 'name': f'Unknown_Spell_{spell_id}',
+ 'description': '',
+ 'school': '',
+ 'difficulty': '',
+ 'duration': '',
+ 'mana': '',
+ 'family': ''
+ }
+
+def translate_coverage_mask(coverage_value: int) -> List[str]:
+ """Translate coverage mask value to list of body parts covered."""
+ coverage_masks = ENUM_MAPPINGS.get('coverage_masks', {})
+ covered_parts = []
+
+ # Coverage masks are flags, so we need to check each bit
+ for mask_value, part_name in coverage_masks.items():
+ if coverage_value & mask_value:
+ # Convert technical names to display names
+ display_name = part_name.replace('Outerwear', '').replace('Underwear', '').strip()
+ if display_name and display_name not in covered_parts:
+ covered_parts.append(display_name)
+
+ # Map technical names to user-friendly names
+ name_mapping = {
+ 'UpperLegs': 'Upper Legs',
+ 'LowerLegs': 'Lower Legs',
+ 'UpperArms': 'Upper Arms',
+ 'LowerArms': 'Lower Arms',
+ 'Abdomen': 'Abdomen',
+ 'Chest': 'Chest',
+ 'Head': 'Head',
+ 'Hands': 'Hands',
+ 'Feet': 'Feet',
+ 'Cloak': 'Cloak'
+ }
+
+ return [name_mapping.get(part, part) for part in covered_parts if part]
+
+def translate_workmanship(workmanship_value: int) -> str:
+ """Translate workmanship value to descriptive text."""
+ if workmanship_value <= 0:
+ return ""
+ elif workmanship_value == 1:
+ return "Pitiful (1)"
+ elif workmanship_value == 2:
+ return "Poor (2)"
+ elif workmanship_value == 3:
+ return "Below Average (3)"
+ elif workmanship_value == 4:
+ return "Average (4)"
+ elif workmanship_value == 5:
+ return "Above Average (5)"
+ elif workmanship_value == 6:
+ return "Nearly flawless (6)"
+ elif workmanship_value == 7:
+ return "Flawless (7)"
+ elif workmanship_value >= 8:
+ return "Utterly flawless (8)"
+ else:
+ return f"Quality ({workmanship_value})"
+
+def format_damage_resistance(armor_level: int, damage_type: str) -> str:
+ """Format damage resistance values with descriptive text."""
+ if armor_level <= 0:
+ return ""
+
+ # Rough categorization based on armor level
+ if armor_level < 200:
+ category = "Poor"
+ elif armor_level < 300:
+ category = "Below Average"
+ elif armor_level < 400:
+ category = "Average"
+ elif armor_level < 500:
+ category = "Above Average"
+ elif armor_level < 600:
+ category = "Excellent"
+ else:
+ category = "Superior"
+
+ return f"{category} ({armor_level})"
+
+def get_damage_range_and_type(item_data: Dict[str, Any]) -> Dict[str, Any]:
+ """Calculate damage range and determine damage type for weapons."""
+ damage_info = {}
+
+ int_values = item_data.get('IntValues', {})
+ double_values = item_data.get('DoubleValues', {})
+
+ # Max damage
+ max_damage = None
+ if '218103842' in int_values:
+ max_damage = int_values['218103842']
+ elif 218103842 in int_values:
+ max_damage = int_values[218103842]
+
+ # Variance for damage range calculation
+ variance = None
+ if '167772171' in double_values:
+ variance = double_values['167772171']
+ elif 167772171 in double_values:
+ variance = double_values[167772171]
+
+ # Damage bonus
+ damage_bonus = None
+ if '167772174' in double_values:
+ damage_bonus = double_values['167772174']
+ elif 167772174 in double_values:
+ damage_bonus = double_values[167772174]
+
+ if max_damage and variance:
+ # Calculate min damage: max_damage * (2 - variance) / 2
+ min_damage = max_damage * (2 - variance) / 2
+ damage_info['damage_range'] = f"{min_damage:.2f} - {max_damage}"
+ damage_info['min_damage'] = min_damage
+ damage_info['max_damage'] = max_damage
+ elif max_damage:
+ damage_info['damage_range'] = str(max_damage)
+ damage_info['max_damage'] = max_damage
+
+ # Determine damage type from item name or properties
+ item_name = item_data.get('Name', '').lower()
+ if 'flaming' in item_name or 'fire' in item_name:
+ damage_info['damage_type'] = 'Fire'
+ elif 'frost' in item_name or 'ice' in item_name:
+ damage_info['damage_type'] = 'Cold'
+ elif 'lightning' in item_name or 'electric' in item_name:
+ damage_info['damage_type'] = 'Electrical'
+ elif 'acid' in item_name:
+ damage_info['damage_type'] = 'Acid'
+ else:
+ # Check for elemental damage bonus
+ elemental_bonus = None
+ if '204' in int_values:
+ elemental_bonus = int_values['204']
+ elif 204 in int_values:
+ elemental_bonus = int_values[204]
+
+ if elemental_bonus and elemental_bonus > 0:
+ damage_info['damage_type'] = 'Elemental'
+ else:
+ damage_info['damage_type'] = 'Physical'
+
+ return damage_info
+
+def get_weapon_speed(item_data: Dict[str, Any]) -> Dict[str, Any]:
+ """Get weapon speed information."""
+ speed_info = {}
+
+ int_values = item_data.get('IntValues', {})
+
+ # Weapon speed (check multiple possible keys)
+ speed_value = None
+ speed_keys = ['169', 169, 'WeapSpeed_Decal']
+ for key in speed_keys:
+ if key in int_values:
+ speed_value = int_values[key]
+ break
+
+ # Also check translated enum properties for speed
+ translated_ints = translate_int_values(int_values)
+ if 'WeaponSpeed' in translated_ints:
+ speed_value = translated_ints['WeaponSpeed']
+ elif 'WeapSpeed' in translated_ints:
+ speed_value = translated_ints['WeapSpeed']
+ elif 'WeapSpeed_Decal' in translated_ints:
+ speed_value = translated_ints['WeapSpeed_Decal']
+
+ if speed_value:
+ speed_info['speed_value'] = speed_value
+
+ # Convert to descriptive text
+ if speed_value <= 20:
+ speed_info['speed_text'] = f"Very Fast ({speed_value})"
+ elif speed_value <= 30:
+ speed_info['speed_text'] = f"Fast ({speed_value})"
+ elif speed_value <= 40:
+ speed_info['speed_text'] = f"Average ({speed_value})"
+ elif speed_value <= 50:
+ speed_info['speed_text'] = f"Slow ({speed_value})"
+ else:
+ speed_info['speed_text'] = f"Very Slow ({speed_value})"
+
+ return speed_info
+
+def get_mana_and_spellcraft(item_data: Dict[str, Any]) -> Dict[str, Any]:
+ """Get mana and spellcraft information for items."""
+ mana_info = {}
+
+ int_values = item_data.get('IntValues', {})
+
+ # Get translated enum properties first
+ translated_ints = translate_int_values(int_values)
+
+ # Current mana - check translated properties first
+ current_mana = None
+ if 'ItemCurMana' in translated_ints:
+ current_mana = translated_ints['ItemCurMana']
+ elif '73' in int_values:
+ current_mana = int_values['73']
+ elif 73 in int_values:
+ current_mana = int_values[73]
+
+ # Max mana - check translated properties first
+ max_mana = None
+ if 'ItemMaxMana' in translated_ints:
+ max_mana = translated_ints['ItemMaxMana']
+ elif '72' in int_values:
+ max_mana = int_values['72']
+ elif 72 in int_values:
+ max_mana = int_values[72]
+
+ # Spellcraft - check translated properties first
+ spellcraft = None
+ if 'ItemSpellcraft' in translated_ints:
+ spellcraft = translated_ints['ItemSpellcraft']
+ elif '106' in int_values:
+ spellcraft = int_values['106']
+ elif 106 in int_values:
+ spellcraft = int_values[106]
+
+ if current_mana is not None and max_mana is not None:
+ mana_info['mana_display'] = f"{current_mana} / {max_mana}"
+ mana_info['current_mana'] = current_mana
+ mana_info['max_mana'] = max_mana
+
+ if spellcraft:
+ mana_info['spellcraft'] = spellcraft
+
+ return mana_info
+
+def get_comprehensive_translations(item_data: Dict[str, Any]) -> Dict[str, Any]:
+ """Get comprehensive translations for all aspects of an item."""
+ translations = {}
+
+ # Translate IntValues
+ int_values = item_data.get('IntValues', {})
+ if int_values:
+ translations['int_properties'] = translate_int_values(int_values)
+
+ # Translate material if present (check multiple locations)
+ material_id = item_data.get('MaterialType')
+ if material_id is None:
+ # Check IntValues for material (key 131)
+ int_values = item_data.get('IntValues', {})
+ if isinstance(int_values, dict) and '131' in int_values:
+ material_id = int_values['131']
+ elif isinstance(int_values, dict) and 131 in int_values:
+ material_id = int_values[131]
+
+ if material_id is not None and material_id != 0:
+ translations['material_name'] = translate_material_type(material_id)
+ translations['material_id'] = material_id
+
+ # Translate item type if present
+ item_type_id = item_data.get('ItemType')
+ if item_type_id is not None:
+ translations['item_type_name'] = translate_item_type(item_type_id)
+
+ # Translate object class using WeenieType enum
+ object_class = item_data.get('ObjectClass')
+ if object_class is not None:
+ translations['object_class_name'] = translate_object_class(object_class, item_data)
+
+ return translations
+
+def extract_item_properties(item_data: Dict[str, Any]) -> Dict[str, Any]:
+ """Extract and categorize item properties from raw JSON."""
+
+ # Get raw values for comprehensive extraction
+ int_values = item_data.get('IntValues', {})
+ double_values = item_data.get('DoubleValues', {})
+
+ # Start with processed fields (if available)
+ properties = {
+ 'basic': {
+ 'name': item_data.get('Name', ''),
+ 'icon': item_data.get('Icon', 0),
+ 'object_class': item_data.get('ObjectClass', 0),
+ 'value': item_data.get('Value', 0),
+ 'burden': item_data.get('Burden', 0),
+ 'has_id_data': item_data.get('HasIdData', False),
+ },
+ 'combat': {
+ 'max_damage': item_data.get('MaxDamage', -1),
+ 'armor_level': item_data.get('ArmorLevel', -1),
+ 'damage_bonus': item_data.get('DamageBonus', -1.0),
+ 'attack_bonus': item_data.get('AttackBonus', -1.0),
+ # Add missing combat stats from raw values
+ 'melee_defense_bonus': double_values.get('29', double_values.get(29, -1.0)),
+ 'magic_defense_bonus': double_values.get('150', double_values.get(150, -1.0)),
+ 'missile_defense_bonus': double_values.get('149', double_values.get(149, -1.0)),
+ 'elemental_damage_vs_monsters': double_values.get('152', double_values.get(152, -1.0)),
+ 'mana_conversion_bonus': double_values.get('144', double_values.get(144, -1.0)),
+ },
+ 'requirements': {
+ 'wield_level': item_data.get('WieldLevel', -1),
+ 'skill_level': item_data.get('SkillLevel', -1),
+ 'lore_requirement': item_data.get('LoreRequirement', -1),
+ 'equip_skill': item_data.get('EquipSkill'),
+ },
+ 'enhancements': {
+ 'material': item_data.get('Material'),
+ 'imbue': item_data.get('Imbue'),
+ 'tinks': item_data.get('Tinks', -1),
+ 'workmanship': item_data.get('Workmanship', -1.0),
+ 'item_set': item_data.get('ItemSet'),
+ },
+ 'ratings': {
+ 'damage_rating': item_data.get('DamRating', -1),
+ 'crit_rating': item_data.get('CritRating', -1),
+ 'heal_boost_rating': item_data.get('HealBoostRating', -1),
+ }
+ }
+
+ # Get comprehensive translations
+ translations = get_comprehensive_translations(item_data)
+ if translations:
+ properties['translations'] = translations
+
+ # Translate raw enum values if available
+ int_values = item_data.get('IntValues', {})
+ if int_values:
+ translated_ints = translate_int_values(int_values)
+ properties['translated_ints'] = translated_ints
+
+ # Extract spell information
+ spells = item_data.get('Spells', [])
+ active_spells = item_data.get('ActiveSpells', [])
+
+ # Translate spell IDs to spell data
+ translated_spells = []
+ for spell_id in spells:
+ translated_spells.append(translate_spell(spell_id))
+
+ translated_active_spells = []
+ for spell_id in active_spells:
+ translated_active_spells.append(translate_spell(spell_id))
+
+ # Get spell-related properties from IntValues
+ int_values = item_data.get('IntValues', {})
+ spell_info = {
+ 'spell_ids': spells,
+ 'active_spell_ids': active_spells,
+ 'spell_count': len(spells),
+ 'active_spell_count': len(active_spells),
+ 'spells': translated_spells,
+ 'active_spells': translated_active_spells
+ }
+
+ # Extract spell-related IntValues
+ for key_str, value in int_values.items():
+ key_int = int(key_str) if key_str.isdigit() else None
+ if key_int:
+ # Check for spell-related properties
+ if key_int == 94: # TargetType/SpellDID
+ spell_info['spell_target_type'] = value
+ elif key_int == 106: # ItemSpellcraft
+ spell_info['item_spellcraft'] = value
+ elif key_int in [218103816, 218103838, 218103848]: # Spell decals
+ spell_info[f'spell_decal_{key_int}'] = value
+
+ properties['spells'] = spell_info
+
+ # Add weapon-specific information
+ damage_info = get_damage_range_and_type(item_data)
+ if damage_info:
+ properties['weapon_damage'] = damage_info
+
+ speed_info = get_weapon_speed(item_data)
+ if speed_info:
+ properties['weapon_speed'] = speed_info
+
+ mana_info = get_mana_and_spellcraft(item_data)
+ if mana_info:
+ properties['mana_info'] = mana_info
+
+ return properties
+
+# API endpoints
+@app.post("/process-inventory")
+async def process_inventory(inventory: InventoryItem):
+ """Process raw inventory data and store in normalized format."""
+
+ processed_count = 0
+ error_count = 0
+
+ async with database.transaction():
+ # First, delete all existing items for this character from all related tables
+ # Get item IDs to delete
+ item_ids_query = "SELECT id FROM items WHERE character_name = :character_name"
+ item_ids = await database.fetch_all(item_ids_query, {"character_name": inventory.character_name})
+
+ if item_ids:
+ id_list = [str(row['id']) for row in item_ids]
+ id_placeholder = ','.join(id_list)
+
+ # Delete from all related tables first
+ await database.execute(f"DELETE FROM item_raw_data WHERE item_id IN ({id_placeholder})")
+ await database.execute(f"DELETE FROM item_combat_stats WHERE item_id IN ({id_placeholder})")
+ await database.execute(f"DELETE FROM item_requirements WHERE item_id IN ({id_placeholder})")
+ await database.execute(f"DELETE FROM item_enhancements WHERE item_id IN ({id_placeholder})")
+ await database.execute(f"DELETE FROM item_ratings WHERE item_id IN ({id_placeholder})")
+ await database.execute(f"DELETE FROM item_spells WHERE item_id IN ({id_placeholder})")
+
+ # Finally delete from main items table
+ await database.execute(
+ "DELETE FROM items WHERE character_name = :character_name",
+ {"character_name": inventory.character_name}
+ )
+
+ # Then insert the new complete inventory
+ for item_data in inventory.items:
+ try:
+ # Extract properties
+ properties = extract_item_properties(item_data)
+
+ # Create core item record
+ item_id = item_data.get('Id')
+ if item_id is None:
+ logger.warning(f"Skipping item without ID: {item_data.get('Name', 'Unknown')}")
+ error_count += 1
+ continue
+
+ # Insert or update core item (handle timezone-aware timestamps)
+ timestamp = inventory.timestamp
+ if timestamp.tzinfo is not None:
+ timestamp = timestamp.replace(tzinfo=None)
+
+ # Simple INSERT since we cleared the table first
+ item_stmt = sa.insert(Item).values(
+ character_name=inventory.character_name,
+ item_id=item_id,
+ timestamp=timestamp,
+ name=properties['basic']['name'],
+ icon=properties['basic']['icon'],
+ object_class=properties['basic']['object_class'],
+ value=properties['basic']['value'],
+ burden=properties['basic']['burden'],
+ has_id_data=properties['basic']['has_id_data'],
+ last_id_time=item_data.get('LastIdTime', 0)
+ ).returning(Item.id)
+
+ result = await database.fetch_one(item_stmt)
+ db_item_id = result['id']
+
+ # Store combat stats if applicable
+ combat = properties['combat']
+ if any(v != -1 and v != -1.0 for v in combat.values()):
+ combat_stmt = sa.dialects.postgresql.insert(ItemCombatStats).values(
+ item_id=db_item_id,
+ **{k: v if v != -1 and v != -1.0 else None for k, v in combat.items()}
+ ).on_conflict_do_update(
+ index_elements=['item_id'],
+ set_=dict(**{k: v if v != -1 and v != -1.0 else None for k, v in combat.items()})
+ )
+ await database.execute(combat_stmt)
+
+ # Store raw data for completeness
+ raw_stmt = sa.dialects.postgresql.insert(ItemRawData).values(
+ item_id=db_item_id,
+ int_values=item_data.get('IntValues', {}),
+ double_values=item_data.get('DoubleValues', {}),
+ string_values=item_data.get('StringValues', {}),
+ bool_values=item_data.get('BoolValues', {}),
+ original_json=item_data
+ ).on_conflict_do_update(
+ index_elements=['item_id'],
+ set_=dict(
+ int_values=item_data.get('IntValues', {}),
+ double_values=item_data.get('DoubleValues', {}),
+ string_values=item_data.get('StringValues', {}),
+ bool_values=item_data.get('BoolValues', {}),
+ original_json=item_data
+ )
+ )
+ await database.execute(raw_stmt)
+
+ processed_count += 1
+
+ except Exception as e:
+ logger.error(f"Error processing item {item_data.get('Id', 'unknown')}: {e}")
+ error_count += 1
+
+ logger.info(f"Inventory processing complete for {inventory.character_name}: {processed_count} processed, {error_count} errors, {len(inventory.items)} total items received")
+
+ return {
+ "status": "completed",
+ "processed": processed_count,
+ "errors": error_count,
+ "total_received": len(inventory.items),
+ "character": inventory.character_name
+ }
+
+@app.get("/inventory/{character_name}")
+async def get_character_inventory(
+ character_name: str,
+ limit: int = Query(1000, le=5000),
+ offset: int = Query(0, ge=0)
+):
+ """Get processed inventory for a character with structured data and comprehensive translations."""
+
+ query = """
+ SELECT
+ i.id, i.name, i.icon, i.object_class, i.value, i.burden,
+ i.has_id_data, i.timestamp,
+ cs.max_damage, cs.armor_level, cs.damage_bonus, cs.attack_bonus,
+ r.wield_level, r.skill_level, r.equip_skill, r.lore_requirement,
+ e.material, e.imbue, e.item_set, e.tinks, e.workmanship,
+ rt.damage_rating, rt.crit_rating, rt.heal_boost_rating,
+ rd.int_values, rd.double_values, rd.string_values, rd.bool_values, rd.original_json
+ FROM items i
+ LEFT JOIN item_combat_stats cs ON i.id = cs.item_id
+ LEFT JOIN item_requirements r ON i.id = r.item_id
+ LEFT JOIN item_enhancements e ON i.id = e.item_id
+ LEFT JOIN item_ratings rt ON i.id = rt.item_id
+ LEFT JOIN item_raw_data rd ON i.id = rd.item_id
+ WHERE i.character_name = :character_name
+ ORDER BY i.name
+ LIMIT :limit OFFSET :offset
+ """
+
+ items = await database.fetch_all(query, {
+ "character_name": character_name,
+ "limit": limit,
+ "offset": offset
+ })
+
+ if not items:
+ raise HTTPException(status_code=404, detail=f"No inventory found for {character_name}")
+
+ # Convert to structured format with enhanced translations
+ processed_items = []
+ for item in items:
+ processed_item = dict(item)
+
+ # Get comprehensive translations from original_json
+ if processed_item.get('original_json'):
+ original_json = processed_item['original_json']
+ # Handle case where original_json might be stored as string
+ if isinstance(original_json, str):
+ try:
+ original_json = json.loads(original_json)
+ except (json.JSONDecodeError, TypeError):
+ original_json = {}
+
+ if original_json:
+ # Extract properties and get translations
+ properties = extract_item_properties(original_json)
+
+ # Add translated properties to the item
+ processed_item['translated_properties'] = properties
+
+ # Add material translation
+ if processed_item.get('material'):
+ processed_item['material_name'] = translate_material_type(processed_item['material'])
+
+ # Add object class translation
+ if processed_item.get('object_class'):
+ processed_item['object_class_name'] = translate_object_class(processed_item['object_class'], original_json)
+
+ # Add skill translation
+ if processed_item.get('equip_skill'):
+ processed_item['equip_skill_name'] = translate_skill(processed_item['equip_skill'])
+
+ # Flatten the structure - move translated properties to top level
+ if 'translated_properties' in processed_item:
+ translated_props = processed_item.pop('translated_properties')
+
+ # Move spells to top level
+ if 'spells' in translated_props:
+ processed_item['spells'] = translated_props['spells']
+
+ # Move translated_ints to top level for enhanced tooltips
+ if 'translated_ints' in translated_props:
+ processed_item['enhanced_properties'] = translated_props['translated_ints']
+
+ # Add weapon damage information
+ if 'weapon_damage' in translated_props:
+ weapon_damage = translated_props['weapon_damage']
+ if weapon_damage.get('damage_range'):
+ processed_item['damage_range'] = weapon_damage['damage_range']
+ if weapon_damage.get('damage_type'):
+ processed_item['damage_type'] = weapon_damage['damage_type']
+ if weapon_damage.get('min_damage'):
+ processed_item['min_damage'] = weapon_damage['min_damage']
+
+ # Add weapon speed information
+ if 'weapon_speed' in translated_props:
+ speed_info = translated_props['weapon_speed']
+ if speed_info.get('speed_text'):
+ processed_item['speed_text'] = speed_info['speed_text']
+ if speed_info.get('speed_value'):
+ processed_item['speed_value'] = speed_info['speed_value']
+
+ # Add mana and spellcraft information
+ if 'mana_info' in translated_props:
+ mana_info = translated_props['mana_info']
+ if mana_info.get('mana_display'):
+ processed_item['mana_display'] = mana_info['mana_display']
+ if mana_info.get('spellcraft'):
+ processed_item['spellcraft'] = mana_info['spellcraft']
+ if mana_info.get('current_mana'):
+ processed_item['current_mana'] = mana_info['current_mana']
+ if mana_info.get('max_mana'):
+ processed_item['max_mana'] = mana_info['max_mana']
+
+ # Add icon overlay/underlay information from translated properties
+ if 'translated_ints' in translated_props:
+ translated_ints = translated_props['translated_ints']
+
+ # Icon overlay - check for the proper property name
+ if 'IconOverlay_Decal_DID' in translated_ints and translated_ints['IconOverlay_Decal_DID'] > 0:
+ processed_item['icon_overlay_id'] = translated_ints['IconOverlay_Decal_DID']
+
+ # Icon underlay - check for the proper property name
+ if 'IconUnderlay_Decal_DID' in translated_ints and translated_ints['IconUnderlay_Decal_DID'] > 0:
+ processed_item['icon_underlay_id'] = translated_ints['IconUnderlay_Decal_DID']
+
+ # Add comprehensive combat stats
+ if 'combat' in translated_props:
+ combat_stats = translated_props['combat']
+ if combat_stats.get('max_damage', -1) != -1:
+ processed_item['max_damage'] = combat_stats['max_damage']
+ if combat_stats.get('armor_level', -1) != -1:
+ processed_item['armor_level'] = combat_stats['armor_level']
+ if combat_stats.get('damage_bonus', -1.0) != -1.0:
+ processed_item['damage_bonus'] = combat_stats['damage_bonus']
+ if combat_stats.get('attack_bonus', -1.0) != -1.0:
+ processed_item['attack_bonus'] = combat_stats['attack_bonus']
+ # Add missing combat bonuses
+ if combat_stats.get('melee_defense_bonus', -1.0) != -1.0:
+ processed_item['melee_defense_bonus'] = combat_stats['melee_defense_bonus']
+ if combat_stats.get('magic_defense_bonus', -1.0) != -1.0:
+ processed_item['magic_defense_bonus'] = combat_stats['magic_defense_bonus']
+ if combat_stats.get('missile_defense_bonus', -1.0) != -1.0:
+ processed_item['missile_defense_bonus'] = combat_stats['missile_defense_bonus']
+ if combat_stats.get('elemental_damage_vs_monsters', -1.0) != -1.0:
+ processed_item['elemental_damage_vs_monsters'] = combat_stats['elemental_damage_vs_monsters']
+ if combat_stats.get('mana_conversion_bonus', -1.0) != -1.0:
+ processed_item['mana_conversion_bonus'] = combat_stats['mana_conversion_bonus']
+
+ # Add comprehensive requirements
+ if 'requirements' in translated_props:
+ requirements = translated_props['requirements']
+ if requirements.get('wield_level', -1) != -1:
+ processed_item['wield_level'] = requirements['wield_level']
+ if requirements.get('skill_level', -1) != -1:
+ processed_item['skill_level'] = requirements['skill_level']
+ if requirements.get('lore_requirement', -1) != -1:
+ processed_item['lore_requirement'] = requirements['lore_requirement']
+ if requirements.get('equip_skill'):
+ processed_item['equip_skill'] = requirements['equip_skill']
+
+ # Add comprehensive enhancements
+ if 'enhancements' in translated_props:
+ enhancements = translated_props['enhancements']
+ if enhancements.get('material'):
+ processed_item['material'] = enhancements['material']
+
+ # Add material information from translations
+ if 'translations' in translated_props:
+ trans = translated_props['translations']
+ if trans.get('material_name'):
+ processed_item['material_name'] = trans['material_name']
+ if trans.get('material_id'):
+ processed_item['material_id'] = trans['material_id']
+
+ # Continue with other enhancements
+ if 'enhancements' in translated_props:
+ enhancements = translated_props['enhancements']
+ if enhancements.get('imbue'):
+ processed_item['imbue'] = enhancements['imbue']
+ if enhancements.get('tinks', -1) != -1:
+ processed_item['tinks'] = enhancements['tinks']
+ if enhancements.get('workmanship', -1.0) != -1.0:
+ processed_item['workmanship'] = enhancements['workmanship']
+ processed_item['workmanship_text'] = translate_workmanship(int(enhancements['workmanship']))
+ if enhancements.get('item_set'):
+ processed_item['item_set'] = enhancements['item_set']
+
+ # Add comprehensive ratings
+ if 'ratings' in translated_props:
+ ratings = translated_props['ratings']
+ if ratings.get('damage_rating', -1) != -1:
+ processed_item['damage_rating'] = ratings['damage_rating']
+ if ratings.get('crit_rating', -1) != -1:
+ processed_item['crit_rating'] = ratings['crit_rating']
+ if ratings.get('heal_boost_rating', -1) != -1:
+ processed_item['heal_boost_rating'] = ratings['heal_boost_rating']
+
+ # Apply material prefix to item name if material exists
+ if processed_item.get('material_name') and processed_item.get('name'):
+ original_name = processed_item['name']
+ material_name = processed_item['material_name']
+
+ # Don't add prefix if name already starts with the material
+ if not original_name.lower().startswith(material_name.lower()):
+ processed_item['name'] = f"{material_name} {original_name}"
+ processed_item['original_name'] = original_name # Preserve original for reference
+
+ # Remove raw data from response (keep clean output)
+ processed_item.pop('int_values', None)
+ processed_item.pop('double_values', None)
+ processed_item.pop('string_values', None)
+ processed_item.pop('bool_values', None)
+ processed_item.pop('original_json', None)
+
+ # Remove null values for cleaner response
+ processed_item = {k: v for k, v in processed_item.items() if v is not None}
+ processed_items.append(processed_item)
+
+ return {
+ "character_name": character_name,
+ "item_count": len(processed_items),
+ "items": processed_items
+ }
+
+@app.get("/health")
+async def health_check():
+ """Health check endpoint."""
+ return {"status": "healthy", "service": "inventory-service"}
+
+@app.get("/enum-info")
+async def get_enum_info():
+ """Get information about available enum translations."""
+ if ENUM_MAPPINGS is None:
+ return {"error": "Enum database not loaded"}
+
+ return {
+ "available_enums": list(ENUM_MAPPINGS.keys()),
+ "int_values_count": len(ENUM_MAPPINGS.get('int_values', {})),
+ "materials_count": len(ENUM_MAPPINGS.get('materials', {})),
+ "item_types_count": len(ENUM_MAPPINGS.get('item_types', {})),
+ "skills_count": len(ENUM_MAPPINGS.get('skills', {})),
+ "spell_categories_count": len(ENUM_MAPPINGS.get('spell_categories', {})),
+ "spells_count": len(ENUM_MAPPINGS.get('spells', {})),
+ "object_classes_count": len(ENUM_MAPPINGS.get('object_classes', {})),
+ "coverage_masks_count": len(ENUM_MAPPINGS.get('coverage_masks', {})),
+ "database_version": ENUM_MAPPINGS.get('full_database', {}).get('metadata', {}).get('version', 'unknown')
+ }
+
+@app.get("/translate/{enum_type}/{value}")
+async def translate_enum_value(enum_type: str, value: int):
+ """Translate a specific enum value to human-readable name."""
+
+ if enum_type == "material":
+ return {"translation": translate_material_type(value)}
+ elif enum_type == "item_type":
+ return {"translation": translate_item_type(value)}
+ elif enum_type == "skill":
+ return {"translation": translate_skill(value)}
+ elif enum_type == "spell_category":
+ return {"translation": translate_spell_category(value)}
+ elif enum_type == "spell":
+ return {"translation": translate_spell(value)}
+ elif enum_type == "int_value":
+ int_enums = ENUM_MAPPINGS.get('int_values', {})
+ return {"translation": int_enums.get(value, f"unknown_{value}")}
+ else:
+ raise HTTPException(status_code=400, detail=f"Unknown enum type: {enum_type}")
+
+@app.get("/inventory/{character_name}/raw")
+async def get_character_inventory_raw(character_name: str):
+ """Get raw inventory data including comprehensive translations."""
+
+ query = """
+ SELECT
+ i.name, i.icon, i.object_class, i.value, i.burden, i.timestamp,
+ rd.int_values, rd.double_values, rd.string_values, rd.bool_values,
+ rd.original_json
+ FROM items i
+ LEFT JOIN item_raw_data rd ON i.id = rd.item_id
+ WHERE i.character_name = :character_name
+ ORDER BY i.name
+ LIMIT 100
+ """
+
+ items = await database.fetch_all(query, {"character_name": character_name})
+
+ if not items:
+ raise HTTPException(status_code=404, detail=f"No inventory found for {character_name}")
+
+ # Process items with comprehensive translations
+ processed_items = []
+ for item in items:
+ item_dict = dict(item)
+
+ # Add comprehensive translations for raw data
+ if item_dict.get('original_json'):
+ original_json = item_dict['original_json']
+ # Handle case where original_json might be stored as string
+ if isinstance(original_json, str):
+ try:
+ original_json = json.loads(original_json)
+ except (json.JSONDecodeError, TypeError):
+ logger.warning(f"Failed to parse original_json as JSON for item")
+ original_json = {}
+
+ if original_json:
+ translations = get_comprehensive_translations(original_json)
+ item_dict['comprehensive_translations'] = translations
+
+ processed_items.append(item_dict)
+
+ return {
+ "character_name": character_name,
+ "item_count": len(processed_items),
+ "items": processed_items
+ }
+
+if __name__ == "__main__":
+ import uvicorn
+ uvicorn.run(app, host="0.0.0.0", port=8000)
\ No newline at end of file
diff --git a/inventory-service/property_categories.json b/inventory-service/property_categories.json
new file mode 100644
index 00000000..40949270
--- /dev/null
+++ b/inventory-service/property_categories.json
@@ -0,0 +1,30 @@
+{
+ "basic": {
+ "5": "encumbrance",
+ "19": "value",
+ "25": "level",
+ "28": "armor_level",
+ "44": "damage",
+ "45": "damage_type"
+ },
+ "requirements": {
+ "158": "wield_requirement",
+ "160": "wield_level",
+ "48": "weapon_skill"
+ },
+ "combat": {
+ "218103842": "max_damage",
+ "36": "resist_magic",
+ "56": "shield_value"
+ },
+ "display": {
+ "218103809": "icon",
+ "218103849": "icon_overlay",
+ "218103850": "icon_underlay"
+ },
+ "metadata": {
+ "218103808": "weenie_class_id",
+ "218103847": "physics_data_flags",
+ "218103831": "object_desc_flags"
+ }
+}
\ No newline at end of file
diff --git a/inventory-service/requirements.txt b/inventory-service/requirements.txt
new file mode 100644
index 00000000..d2b5c831
--- /dev/null
+++ b/inventory-service/requirements.txt
@@ -0,0 +1,9 @@
+fastapi==0.104.1
+uvicorn[standard]==0.24.0
+sqlalchemy==1.4.53
+asyncpg==0.29.0
+databases[postgresql]==0.8.0
+pydantic==2.5.0
+python-multipart==0.0.6
+python-json-logger==2.0.7
+psycopg2-binary==2.9.9
\ No newline at end of file
diff --git a/inventory-service/spell_database.json b/inventory-service/spell_database.json
new file mode 100644
index 00000000..906ac4e0
--- /dev/null
+++ b/inventory-service/spell_database.json
@@ -0,0 +1,56404 @@
+{
+ "metadata": {
+ "version": "1.0.0",
+ "source": "Mag-Plugins/Shared/Spells/Spells.csv",
+ "total_spells": 6266,
+ "description": "Spell ID to name/data mappings for Asheron's Call"
+ },
+ "spells": {
+ "1": {
+ "name": "Strength Other I",
+ "description": "Increases the target's Strength by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "2": {
+ "name": "Strength Self I",
+ "description": "Increases the caster's Strength by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "3": {
+ "name": "Weakness Other I",
+ "description": "Decreases the target's Strength by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "4": {
+ "name": "Weakness Self I",
+ "description": "Decrease the caster's Strength by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "15",
+ "duration": "60",
+ "mana": "15"
+ },
+ "5": {
+ "name": "Heal Other I",
+ "description": "Restores 10-25 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "6": {
+ "name": "Heal Self I",
+ "description": "Restores 10-25 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "7": {
+ "name": "Harm Other I",
+ "description": "Drains 4-6 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "8": {
+ "name": "Harm Self I",
+ "description": "Drains 4-6 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "15",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "9": {
+ "name": "Infuse Mana Other I",
+ "description": "Drains one-quarter of the caster's Mana and gives 75% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "15": {
+ "name": "Vulnerability Other I",
+ "description": "Decrease the target's Melee Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "16": {
+ "name": "Vulnerability Self I",
+ "description": "Decrease the target's Melee Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "17": {
+ "name": "Invulnerability Other I",
+ "description": "Increases the target's Melee Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "18": {
+ "name": "Invulnerability Self I",
+ "description": "Increases the caster's Melee Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "19": {
+ "name": "Fire Protection Other I",
+ "description": "Reduces damage the target takes from fire by 9%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "20": {
+ "name": "Fire Protection Self I",
+ "description": "Reduces damage the caster takes from Fire by 9%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "21": {
+ "name": "Fire Vulnerability Other I",
+ "description": "Increases damage the target takes from Fire by 10%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "22": {
+ "name": "Fire Vulnerability Self I",
+ "description": "Increases damage the caster takes from Fire by 10%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "15"
+ },
+ "23": {
+ "name": "Armor Other I",
+ "description": "Increases the target's natural armor by 20 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "24": {
+ "name": "Armor Self I",
+ "description": "Increases the caster's natural armor by 20 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "25": {
+ "name": "Imperil Other I",
+ "description": "Decreases the target's natural armor by 20 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "26": {
+ "name": "Imperil Self I",
+ "description": "Decreases the caster's natural armor by 20 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "20"
+ },
+ "27": {
+ "name": "Flame Bolt I",
+ "description": "Shoots a bolt of flame at the target. The bolt does 16-31 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "28": {
+ "name": "Frost Bolt I",
+ "description": "Shoots a bolt of frost at the target. The bolt does 16-31 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "35": {
+ "name": "Aura of Blood Drinker Self I",
+ "description": "Increases a weapon's damage value by 2 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "36": {
+ "name": "Blood Loather I",
+ "description": "Decreases a weapon's damage value by 2 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "37": {
+ "name": "Blade Bane I",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 10%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "38": {
+ "name": "Blade Lure I",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 10%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "47": {
+ "name": "Primary Portal Tie",
+ "description": "Links the caster to a targeted portal.",
+ "school": "Item Enchantment",
+ "family": "200",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "48": {
+ "name": "Primary Portal Recall",
+ "description": "Transports the caster to the destination of the portal last successfully linked to with Primary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "201",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "49": {
+ "name": "Aura of Swift Killer Self I",
+ "description": "Improves a weapon's speed by 10 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "50": {
+ "name": "Leaden Weapon I",
+ "description": "Worsens a weapon's speed by 10 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "51": {
+ "name": "Impenetrability I",
+ "description": "Improves a shield or piece of armor's armor value by 20 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "53": {
+ "name": "Rejuvenation Other I",
+ "description": "Increases the rate at which the target regains Stamina by 10%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "54": {
+ "name": "Rejuvenation Self I",
+ "description": "Increases the rate at which the caster regains Stamina by 10%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "57": {
+ "name": "Magic Bolt",
+ "description": "Shoots a bolt of force at the target. The bolt does 8-16 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "58": {
+ "name": "Acid Stream I",
+ "description": "Shoots a stream of acid at the target. The stream does 16-31 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "59": {
+ "name": "Acid Stream II",
+ "description": "Shoots a stream of acid at the target. The stream does 26-52 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "60": {
+ "name": "Acid Stream III",
+ "description": "Shoots a stream of acid at the target. The stream does 42-84 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "61": {
+ "name": "Acid Stream IV",
+ "description": "Shoots a stream of acid at the target. The stream does 52-105 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "62": {
+ "name": "Acid Stream V",
+ "description": "Shoots a stream of acid at the target. The stream does 68-136 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "63": {
+ "name": "Acid Stream VI",
+ "description": "Shoots a stream of acid at the target. The stream does 84-168 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "64": {
+ "name": "Shock Wave I",
+ "description": "Shoots a shock wave at the target. The wave does 16-31 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "65": {
+ "name": "Shock Wave II",
+ "description": "Shoots a shock wave at the target. The wave does 26-52 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "66": {
+ "name": "Shock Wave III",
+ "description": "Shoots a shock wave at the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "67": {
+ "name": "Shock Wave IV",
+ "description": "Shoots a shock wave at the target. The wave does 52-105 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "68": {
+ "name": "Shock Wave V",
+ "description": "Shoots a shock wave at the target. The wave does 68-136 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "69": {
+ "name": "Shock Wave VI",
+ "description": "Shoots a shock wave at the target. The wave does 84-168 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "70": {
+ "name": "Frost Bolt II",
+ "description": "Shoots a bolt of frost at the target. The bolt does 26-52 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "71": {
+ "name": "Frost Bolt III",
+ "description": "Shoots a bolt of cold at the target. The bolt does 42-84 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "72": {
+ "name": "Frost Bolt IV",
+ "description": "Shoots a bolt of cold at the target. The bolt does 52-105 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "73": {
+ "name": "Frost Bolt V",
+ "description": "Shoots a bolt of cold at the target. The bolt does 68-136 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "74": {
+ "name": "Frost Bolt VI",
+ "description": "Shoots a bolt of cold at the target. The bolt does 84-168 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "75": {
+ "name": "Lightning Bolt I",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 16-31 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "76": {
+ "name": "Lightning Bolt II",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 26-52 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "77": {
+ "name": "Lightning Bolt III",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 42-84 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "78": {
+ "name": "Lightning Bolt IV",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 52-105 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "79": {
+ "name": "Lightning Bolt V",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 68-136 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "80": {
+ "name": "Lightning Bolt VI",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 84-168 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "81": {
+ "name": "Flame Bolt II",
+ "description": "Shoots a bolt of flame at the target. The bolt does 26-52 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "82": {
+ "name": "Flame Bolt III",
+ "description": "Shoots a bolt of flame at the target. The bolt does 42-84 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "83": {
+ "name": "Flame Bolt IV",
+ "description": "Shoots a bolt of flame at the target. The bolt does 52-105 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "84": {
+ "name": "Flame Bolt V",
+ "description": "Shoots a bolt of flame at the target. The bolt does 68-136 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "85": {
+ "name": "Flame Bolt VI",
+ "description": "Shoots a bolt of flame at the target. The bolt does 84-168 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "86": {
+ "name": "Force Bolt I",
+ "description": "Shoots a bolt of force at the target. The bolt does 16-31 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "87": {
+ "name": "Force Bolt II",
+ "description": "Shoots a bolt of force at the target. The bolt does 26-52 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "88": {
+ "name": "Force Bolt III",
+ "description": "Shoots a bolt of force at the target. The bolt does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "89": {
+ "name": "Force Bolt IV",
+ "description": "Shoots a bolt of force at the target. The bolt does 52-105 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "90": {
+ "name": "Force Bolt V",
+ "description": "Shoots a bolt of force at the target. The bolt does 68-136 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "91": {
+ "name": "Force Bolt VI",
+ "description": "Shoots a bolt of force at the target. The bolt does 84-168 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "92": {
+ "name": "Whirling Blade I",
+ "description": "Shoots a magical blade at the target. The bolt does 16-31 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "93": {
+ "name": "Whirling Blade II",
+ "description": "Shoots a magical blade at the target. The bolt does 26-52 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "94": {
+ "name": "Whirling Blade III",
+ "description": "Shoots a magical blade at the target. The bolt does 42-84 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "95": {
+ "name": "Whirling Blade IV",
+ "description": "Shoots a magical blade at the target. The bolt does 52-105 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "96": {
+ "name": "Whirling Blade V",
+ "description": "Shoots a magical blade at the target. The bolt does 68-136 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "97": {
+ "name": "Whirling Blade VI",
+ "description": "Shoots a magical blade at the target. The bolt does 84-168 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "99": {
+ "name": "Acid Blast III",
+ "description": "Shoots three streams of acid outward from the caster. Each stream does 15-31 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "100": {
+ "name": "Acid Blast IV",
+ "description": "Shoots three streams of acid outward from the caster. Each stream does 20-40 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "101": {
+ "name": "Acid Blast V",
+ "description": "Shoots three streams of acid outward from the caster. Each stream does 26-52 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "102": {
+ "name": "Acid Blast VI",
+ "description": "Shoots three streams of acid outward from the caster. Each stream does 34-69 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "103": {
+ "name": "Shock Blast III",
+ "description": "Shoots three shock waves outward from the caster. Each wave does 15-31 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "104": {
+ "name": "Shock Blast IV",
+ "description": "Shoots three shock waves outward from the caster. Each wave does 20-40 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "105": {
+ "name": "Shock Blast V",
+ "description": "Shoots three shock waves outward from the caster. Each wave does 26-52 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "106": {
+ "name": "Shock Blast VI",
+ "description": "Shoots three shock waves outward from the caster. Each wave does 34-69 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "107": {
+ "name": "Frost Blast III",
+ "description": "Shoots three bolts of frost outward from the caster. Each bolt does 15-31 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "108": {
+ "name": "Frost Blast IV",
+ "description": "Shoots three bolts of frost outward from the caster. Each bolt does 20-40 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "109": {
+ "name": "Frost Blast V",
+ "description": "Shoots three bolts of frost outward from the caster. Each bolt does 26-52 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "110": {
+ "name": "Frost Blast VI",
+ "description": "Shoots three bolts of frost outward from the caster. Each bolt does 34-69 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "111": {
+ "name": "Lightning Blast III",
+ "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 15-31 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "112": {
+ "name": "Lightning Blast IV",
+ "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 20-40 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "113": {
+ "name": "Lightning Blast V",
+ "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 26-52 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "114": {
+ "name": "Lightning Blast VI",
+ "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 34-69 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "115": {
+ "name": "Flame Blast III",
+ "description": "Shoots three bolts of flame outward from the caster. Each bolt does 15-31 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "116": {
+ "name": "Flame Blast IV",
+ "description": "Shoots three bolts of flame outward from the caster. Each bolt does 20-40 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "117": {
+ "name": "Flame Blast V",
+ "description": "Shoots three bolts of flame outward from the caster. Each bolt does 26-52 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "118": {
+ "name": "Flame Blast VI",
+ "description": "Shoots three bolts of flame outward from the caster. Each bolt does 34-69 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "119": {
+ "name": "Force Blast III",
+ "description": "Shoots three force bolts outward from the caster. Each bolt does 15-31 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "120": {
+ "name": "Force Blast IV",
+ "description": "Shoots three force bolts outward from the caster. Each bolt does 20-40 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "121": {
+ "name": "Force Blast V",
+ "description": "Shoots three force bolts outward from the caster. Each bolt does 26-52 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "122": {
+ "name": "Force Blast VI",
+ "description": "Shoots three force bolts outward from the caster. Each bolt does 34-69 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "123": {
+ "name": "Blade Blast III",
+ "description": "Shoots three whirling blades outward from the caster. Each blade does 10-20 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "124": {
+ "name": "Blade Blast IV",
+ "description": "Shoots three whirling blades outward from the caster. Each blade does 20-40 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "125": {
+ "name": "Blade Blast V",
+ "description": "Shoots three whirling blades outward from the caster. Each blade does 26-52 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "126": {
+ "name": "Blade Blast VI",
+ "description": "Shoots three whirling blades outward from the caster. Each blade does 34-69 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "127": {
+ "name": "Acid Volley III",
+ "description": "Shoots three streams of acid toward the target. Each stream does 15-31 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "128": {
+ "name": "Acid Volley IV",
+ "description": "Shoots three streams of acid toward the target. Each stream does 20-40 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "129": {
+ "name": "Acid Volley V",
+ "description": "Shoots three streams of acid toward the target. Each stream does 26-52 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "130": {
+ "name": "Acid Volley VI",
+ "description": "Shoots three streams of acid toward the target. Each stream does 34-69 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "131": {
+ "name": "Bludgeoning Volley III",
+ "description": "Shoots three shock waves toward the target. Each wave does 15-31 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "132": {
+ "name": "Bludgeoning Volley IV",
+ "description": "Shoots three shock waves toward the target. Each wave does 20-40 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "133": {
+ "name": "Bludgeoning Volley V",
+ "description": "Shoots three shock waves toward the target. Each wave does 26-52 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "134": {
+ "name": "Bludgeoning Volley VI",
+ "description": "Shoots three shock waves toward the target. Each wave does 34-69 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "135": {
+ "name": "Frost Volley III",
+ "description": "Shoots three bolts of frost toward the target. Each bolt does 15-31 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "136": {
+ "name": "Frost Volley IV",
+ "description": "Shoots three bolts of frost toward the target. Each bolt does 20-40 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "137": {
+ "name": "Frost Volley V",
+ "description": "Shoots three bolts of frost toward the target. Each bolt does 26-52 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "138": {
+ "name": "Frost Volley VI",
+ "description": "Shoots three bolts of frost toward the target. Each bolt does 34-69 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "139": {
+ "name": "Lightning Volley III",
+ "description": "Shoots three bolts of lightning toward the target. Each bolt does 15-31 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "140": {
+ "name": "Lightning Volley IV",
+ "description": "Shoots three bolts of lightning toward the target. Each bolt does 20-40 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "141": {
+ "name": "Lightning Volley V",
+ "description": "Shoots three bolts of lightning toward the target. Each bolt does 26-52 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "142": {
+ "name": "Lightning Volley VI",
+ "description": "Shoots three bolts of lightning toward the target. Each bolt does 34-69 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "143": {
+ "name": "Flame Volley III",
+ "description": "Shoots three bolts of flame toward the target. Each bolt does 15-31 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "144": {
+ "name": "Flame Volley IV",
+ "description": "Shoots three bolts of flame toward the target. Each bolt does 20-40 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "145": {
+ "name": "Flame Volley V",
+ "description": "Shoots three bolts of flame toward the target. Each bolt does 26-52 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "146": {
+ "name": "Flame Volley VI",
+ "description": "Shoots three bolts of flame toward the target. Each bolt does 34-69 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "147": {
+ "name": "Force Volley III",
+ "description": "Shoots three bolts of force toward the target. Each bolt does 15-31 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "148": {
+ "name": "Force Volley IV",
+ "description": "Shoots three bolts of force toward the target. Each bolt does 20-40 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "149": {
+ "name": "Force Volley V",
+ "description": "Shoots three bolts of force toward the target. Each bolt does 26-52 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "150": {
+ "name": "Force Volley VI",
+ "description": "Shoots three bolts of force toward the target. Each bolt does 34-69 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "151": {
+ "name": "Blade Volley III",
+ "description": "Shoots three whirling blades toward the target. Each blade does 15-31 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "152": {
+ "name": "Blade Volley IV",
+ "description": "Shoots three whirling blades toward the target. Each blade does 20-40 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "153": {
+ "name": "Blade Volley V",
+ "description": "Shoots three whirling blades toward the target. Each blade does 26-52 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "154": {
+ "name": "Blade Volley VI",
+ "description": "Shoots three whirling blades toward the target. Each blade does 34-69 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "157": {
+ "name": "Summon Primary Portal I",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "200",
+ "duration": "60",
+ "mana": "70"
+ },
+ "158": {
+ "name": "Summon Primary Portal II",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "90"
+ },
+ "159": {
+ "name": "Regeneration Other I",
+ "description": "Increase target's natural healing rate by 10%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "160": {
+ "name": "Regeneration Other II",
+ "description": "Increase target's natural healing rate by 25%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "161": {
+ "name": "Regeneration Other III",
+ "description": "Increase target's natural healing rate by 40%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "162": {
+ "name": "Regeneration Other IV",
+ "description": "Increase target's natural healing rate by 55%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "163": {
+ "name": "Regeneration Other V",
+ "description": "Increase target's natural healing rate by 70%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "164": {
+ "name": "Regeneration Other VI",
+ "description": "Increase target's natural healing rate by 85%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "165": {
+ "name": "Regeneration Self I",
+ "description": "Increase caster's natural healing rate by 10%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "166": {
+ "name": "Regeneration Self II",
+ "description": "Increase caster's natural healing rate by 25%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "167": {
+ "name": "Regeneration Self III",
+ "description": "Increase caster's natural healing rate by 40%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "168": {
+ "name": "Regeneration Self IV",
+ "description": "Increase caster's natural healing rate by 55%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "169": {
+ "name": "Regeneration Self V",
+ "description": "Increase caster's natural healing rate by 70%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "170": {
+ "name": "Regeneration Self VI",
+ "description": "Increase caster's natural healing rate by 85%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "171": {
+ "name": "Fester Other I",
+ "description": "Decrease target's natural healing rate by 9%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "172": {
+ "name": "Fester Other II",
+ "description": "Decrease target's natural healing rate by 20%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "173": {
+ "name": "Fester Other III",
+ "description": "Decrease target's natural healing rate by 29%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "174": {
+ "name": "Fester Other IV",
+ "description": "Decrease target's natural healing rate by 35%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "175": {
+ "name": "Fester Other V",
+ "description": "Decrease target's natural healing rate by 41%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "176": {
+ "name": "Fester Other VI",
+ "description": "Decrease target's natural healing rate by 46%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "178": {
+ "name": "Fester Self I",
+ "description": "Decrease caster's natural healing rate by 9%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "20"
+ },
+ "179": {
+ "name": "Fester Self II",
+ "description": "Decrease caster's natural healing rate by 20%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "180": {
+ "name": "Fester Self III",
+ "description": "Decrease caster's natural healing rate by 29%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "181": {
+ "name": "Fester Self IV",
+ "description": "Decrease caster's natural healing rate by 35%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "182": {
+ "name": "Fester Self V",
+ "description": "Decrease caster's natural healing rate by 41%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "183": {
+ "name": "Fester Self VI",
+ "description": "Decrease caster's natural healing rate by 46%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "184": {
+ "name": "Rejuvenation Other II",
+ "description": "Increases the rate at which the target regains Stamina by 25%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "185": {
+ "name": "Rejuvenation Other III",
+ "description": "Increases the rate at which the target regains Stamina by 40%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "186": {
+ "name": "Rejuvenation Other IV",
+ "description": "Increases the rate at which the target regains Stamina by 55%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "187": {
+ "name": "Rejuvenation Other V",
+ "description": "Increases the rate at which the target regains Stamina by 70%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "188": {
+ "name": "Rejuvenation Other VI",
+ "description": "Increases the rate at which the target regains Stamina by 85%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "189": {
+ "name": "Rejuvenation Self II",
+ "description": "Increases the rate at which the caster regains Stamina by 25%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "190": {
+ "name": "Rejuvenation Self III",
+ "description": "Increases the rate at which the caster regains Stamina by 40%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "191": {
+ "name": "Rejuvenation Self IV",
+ "description": "Increases the rate at which the caster regains Stamina by 55%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "192": {
+ "name": "Rejuvenation Self V",
+ "description": "Increases the rate at which the caster regains Stamina by 70%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "193": {
+ "name": "Rejuvenation Self VI",
+ "description": "Increases the rate at which the caster regains Stamina by 85%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "194": {
+ "name": "Exhaustion Other I",
+ "description": "Decreases the rate at which the target regains Stamina by 9%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "195": {
+ "name": "Exhaustion Other II",
+ "description": "Decreases the rate at which the target regains Stamina by 20%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "196": {
+ "name": "Exhaustion Other III",
+ "description": "Decreases the rate at which the target regains Stamina by 29%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "197": {
+ "name": "Exhaustion Other IV",
+ "description": "Decreases the rate at which the target regains Stamina by 35%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "198": {
+ "name": "Exhaustion Other V",
+ "description": "Decreases the rate at which the target regains Stamina by 41%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "199": {
+ "name": "Exhaustion Other VI",
+ "description": "Decreases the rate at which the target regains Stamina by 46%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "200": {
+ "name": "Exhaustion Self I",
+ "description": "Decreases the rate at which the caster regains Stamina by 9%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "20"
+ },
+ "201": {
+ "name": "Exhaustion Self II",
+ "description": "Decreases the rate at which the caster regains Stamina by 20%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "202": {
+ "name": "Exhaustion Self III",
+ "description": "Decreases the rate at which the caster regains Stamina by 29%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "203": {
+ "name": "Exhaustion Self IV",
+ "description": "Decreases the rate at which the caster regains Stamina by 35%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "204": {
+ "name": "Exhaustion Self V",
+ "description": "Decreases the rate at which the caster regains Stamina by 41%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "205": {
+ "name": "Exhaustion Self VI",
+ "description": "Decreases the rate at which the caster regains Stamina by 46%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "206": {
+ "name": "Mana Renewal Other I",
+ "description": "Increases the target's natural mana rate by 10%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "207": {
+ "name": "Mana Renewal Other II",
+ "description": "Increases the target's natural mana rate by 25%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "208": {
+ "name": "Mana Renewal Other III",
+ "description": "Increases the target's natural mana rate by 40%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "209": {
+ "name": "Mana Renewal Other IV",
+ "description": "Increases the target's natural mana rate by 55%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "210": {
+ "name": "Mana Renewal Other V",
+ "description": "Increases the target's natural mana rate by 70%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "211": {
+ "name": "Mana Renewal Other VI",
+ "description": "Increases the target's natural mana rate by 85%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "212": {
+ "name": "Mana Renewal Self I",
+ "description": "Increases the caster's natural mana rate by 10%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "25",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "213": {
+ "name": "Mana Renewal Self II",
+ "description": "Increases the caster's natural mana rate by 25%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "214": {
+ "name": "Mana Renewal Self III",
+ "description": "Increases the caster's natural mana rate by 40%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "215": {
+ "name": "Mana Renewal Self IV",
+ "description": "Increases the caster's natural mana rate by 55%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "216": {
+ "name": "Mana Renewal Self V",
+ "description": "Increases the caster's natural mana rate by 70%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "217": {
+ "name": "Mana Renewal Self VI",
+ "description": "Increases the caster's natural mana rate by 85%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "218": {
+ "name": "Mana Depletion Other I",
+ "description": "Decreases target's natural mana rate by 9%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "219": {
+ "name": "Mana Depletion Other II",
+ "description": "Decreases target's natural mana rate by 20%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "220": {
+ "name": "Mana Depletion Other III",
+ "description": "Decreases target's natural mana rate by 29%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "221": {
+ "name": "Mana Depletion Other IV",
+ "description": "Decreases target's natural mana rate by 35%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "222": {
+ "name": "Mana Depletion Other V",
+ "description": "Decreases target's natural mana rate by 41%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "223": {
+ "name": "Mana Depletion Other VI",
+ "description": "Decreases target's natural mana rate by 46%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "224": {
+ "name": "Mana Depletion Self I",
+ "description": "Decreases caster's natural mana rate by 9%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "20"
+ },
+ "225": {
+ "name": "Mana Depletion Self II",
+ "description": "Decreases caster's natural mana rate by 20%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "226": {
+ "name": "Mana Depletion Self III",
+ "description": "Decreases caster's natural mana rate by 29%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "227": {
+ "name": "Mana Depletion Self IV",
+ "description": "Decreases caster's natural mana rate by 35%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "228": {
+ "name": "Mana Depletion Self V",
+ "description": "Decreases caster's natural mana rate by 41%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "229": {
+ "name": "Mana Depletion Self VI",
+ "description": "Decreases caster's natural mana rate by 46%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "230": {
+ "name": "Vulnerability Other II",
+ "description": "Decrease the target's Melee Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "231": {
+ "name": "Vulnerability Other III",
+ "description": "Decrease the target's Melee Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "232": {
+ "name": "Vulnerability Other IV",
+ "description": "Decrease the target's Melee Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "233": {
+ "name": "Vulnerability Other V",
+ "description": "Decrease the target's Melee Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "234": {
+ "name": "Vulnerability Other VI",
+ "description": "Decrease the target's Melee Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "235": {
+ "name": "Vulnerability Self II",
+ "description": "Decrease the target's Melee Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "236": {
+ "name": "Vulnerability Self III",
+ "description": "Decrease the target's Melee Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "237": {
+ "name": "Vulnerability Self IV",
+ "description": "Decrease the target's Melee Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "238": {
+ "name": "Vulnerability Self V",
+ "description": "Decrease the target's Melee Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "239": {
+ "name": "Vulnerability Self VI",
+ "description": "Decrease the target's Melee Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "240": {
+ "name": "Invulnerability Other II",
+ "description": "Increases the target's Melee Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "241": {
+ "name": "Invulnerability Other III",
+ "description": "Increases the target's Melee Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "242": {
+ "name": "Invulnerability Other IV",
+ "description": "Increases the target's Melee Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "243": {
+ "name": "Invulnerability Other V",
+ "description": "Increases the target's Melee Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "244": {
+ "name": "Invulnerability Other VI",
+ "description": "Increases the target's Melee Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "245": {
+ "name": "Invulnerability Self II",
+ "description": "Increases the caster's Melee Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "246": {
+ "name": "Invulnerability Self III",
+ "description": "Increases the caster's Melee Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "247": {
+ "name": "Invulnerability Self IV",
+ "description": "Increases the caster's Melee Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "248": {
+ "name": "Invulnerability Self V",
+ "description": "Increases the caster's Melee Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "249": {
+ "name": "Invulnerability Self VI",
+ "description": "Increases the caster's Melee Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "250": {
+ "name": "Impregnability Other I",
+ "description": "Increases the target's Missile Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "251": {
+ "name": "Impregnability Other II",
+ "description": "Increases the target's Missile Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "252": {
+ "name": "Impregnability Other III",
+ "description": "Increases the target's Missile Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "253": {
+ "name": "Impregnability Other IV",
+ "description": "Increases the target's Missile Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "254": {
+ "name": "Impregnability Other V",
+ "description": "Increases the target's Missile Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "255": {
+ "name": "Impregnability Other VI",
+ "description": "Increases the target's Missile Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "256": {
+ "name": "Impregnability Self I",
+ "description": "Increases the caster's Missile Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "257": {
+ "name": "Impregnability Self II",
+ "description": "Increases the caster's Missile Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "258": {
+ "name": "Impregnability Self III",
+ "description": "Increases the caster's Missile Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "259": {
+ "name": "Impregnability Self IV",
+ "description": "Increases the caster's Missile Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "260": {
+ "name": "Impregnability Self V",
+ "description": "Increases the caster's Missile Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "261": {
+ "name": "Impregnability Self VI",
+ "description": "Increases the caster's Missile Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "262": {
+ "name": "Defenselessness Other I",
+ "description": "Decreases the target's Missile Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "263": {
+ "name": "Defenselessness Other II",
+ "description": "Decreases the target's Missile Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "264": {
+ "name": "Defenselessness Other III",
+ "description": "Decreases the target's Missile Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "265": {
+ "name": "Defenselessness Other IV",
+ "description": "Decreases the target's Missile Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "266": {
+ "name": "Defenselessness Other V",
+ "description": "Decreases the target's Missile Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "267": {
+ "name": "Defenselessness Other VI",
+ "description": "Decreases the target's Missile Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "268": {
+ "name": "Magic Resistance Other I",
+ "description": "Increases the target's Magic Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "269": {
+ "name": "Magic Resistance Other II",
+ "description": "Increases the target's Magic Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "270": {
+ "name": "Magic Resistance Other III",
+ "description": "Increases the target's Magic Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "271": {
+ "name": "Magic Resistance Other IV",
+ "description": "Increases the target's Magic Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "272": {
+ "name": "Magic Resistance Other V",
+ "description": "Increases the target's Magic Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "273": {
+ "name": "Magic Resistance Other VI",
+ "description": "Increases the target's Magic Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "274": {
+ "name": "Magic Resistance Self I",
+ "description": "Increases the caster's Magic Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "275": {
+ "name": "Magic Resistance Self II",
+ "description": "Increases the caster's Magic Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "276": {
+ "name": "Magic Resistance Self III",
+ "description": "Increases the caster's Magic Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "277": {
+ "name": "Magic Resistance Self IV",
+ "description": "Increases the caster's Magic Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "278": {
+ "name": "Magic Resistance Self V",
+ "description": "Increases the caster's Magic Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "279": {
+ "name": "Magic Resistance Self VI",
+ "description": "Increases the caster's Magic Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "280": {
+ "name": "Magic Yield Other I",
+ "description": "Decreases the target's Magic Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "281": {
+ "name": "Magic Yield Other II",
+ "description": "Decreases the target's Magic Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "282": {
+ "name": "Magic Yield Other III",
+ "description": "Decreases the target's Magic Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "283": {
+ "name": "Magic Yield Other IV",
+ "description": "Decreases the target's Magic Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "284": {
+ "name": "Magic Yield Other V",
+ "description": "Decreases the target's Magic Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "285": {
+ "name": "Magic Yield Other VI",
+ "description": "Decreases the target's Magic Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "286": {
+ "name": "Magic Yield Self I",
+ "description": "Decreases the caster's Magic Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "287": {
+ "name": "Magic Yield Self II",
+ "description": "Decreases the caster's Magic Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "288": {
+ "name": "Magic Yield Self III",
+ "description": "Decreases the caster's Magic Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "289": {
+ "name": "Magic Yield Self IV",
+ "description": "Decreases the caster's Magic Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "290": {
+ "name": "Magic Yield Self V",
+ "description": "Decreases the caster's Magic Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "291": {
+ "name": "Magic Yield Self VI",
+ "description": "Decreases the caster's Magic Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "292": {
+ "name": "Light Weapon Mastery Other I",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "293": {
+ "name": "Light Weapon Mastery Other II",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "294": {
+ "name": "Light Weapon Mastery Other III",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "295": {
+ "name": "Light Weapon Mastery Other IV",
+ "description": "Increases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "296": {
+ "name": "Light Weapon Mastery Other V",
+ "description": "Increases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "297": {
+ "name": "Light Weapon Mastery Other VI",
+ "description": "Increases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "298": {
+ "name": "Light Weapon Mastery Self I",
+ "description": "Increases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "299": {
+ "name": "Light Weapon Mastery Self II",
+ "description": "Increases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "300": {
+ "name": "Light Weapon Mastery Self III",
+ "description": "Increases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "301": {
+ "name": "Light Weapon Mastery Self IV",
+ "description": "Increases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "302": {
+ "name": "Light Weapon Mastery Self V",
+ "description": "Increases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "303": {
+ "name": "Light Weapon Mastery Self VI",
+ "description": "Increases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "304": {
+ "name": "Light Weapon Ineptitude Other I",
+ "description": "Decreases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "305": {
+ "name": "Light Weapon Ineptitude Other II",
+ "description": "Decreases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "306": {
+ "name": "Light Weapon Ineptitude Other III",
+ "description": "Decreases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "307": {
+ "name": "Light Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "308": {
+ "name": "Light Weapon Ineptitude Other V",
+ "description": "Decreases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "309": {
+ "name": "Light Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "310": {
+ "name": "Light Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "311": {
+ "name": "Light Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "312": {
+ "name": "Light Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "313": {
+ "name": "Light Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "314": {
+ "name": "Light Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "315": {
+ "name": "Light Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "316": {
+ "name": "Finesse Weapon Mastery Other I",
+ "description": "Increases the target's Finesse Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "317": {
+ "name": "Finesse Weapon Mastery Other II",
+ "description": "Increases the target's Finesse Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "318": {
+ "name": "Finesse Weapon Mastery Other III",
+ "description": "Increases the target's Finesse Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "319": {
+ "name": "Finesse Weapon Mastery Other IV",
+ "description": "Increases the target's Finesse Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "320": {
+ "name": "Finesse Weapon Mastery Other V",
+ "description": "Increases the target's Finesse Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "321": {
+ "name": "Finesse Weapon Mastery Other VI",
+ "description": "Increases the target's Finesse Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "322": {
+ "name": "Finesse Weapon Mastery Self I",
+ "description": "Increases the caster's Finesse Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "323": {
+ "name": "Finesse Weapon Mastery Self II",
+ "description": "Increases the caster's Finesse Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "324": {
+ "name": "Finesse Weapon Mastery Self III",
+ "description": "Increases the caster's Finesse Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "325": {
+ "name": "Finesse Weapon Mastery Self IV",
+ "description": "Increases the caster's Finesse Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "326": {
+ "name": "Finesse Weapon Mastery Self V",
+ "description": "Increases the caster's Finesse Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "327": {
+ "name": "Finesse Weapon Mastery Self VI",
+ "description": "Increases the caster's Finesse Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "328": {
+ "name": "Finesse Weapon Ineptitude Other I",
+ "description": "Decreases the target's Finesse Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "329": {
+ "name": "Finesse Weapon Ineptitude Other II",
+ "description": "Decreases the target's Finesse Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "330": {
+ "name": "Finesse Weapon Ineptitude Other III",
+ "description": "Decreases the target's Finesse Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "331": {
+ "name": "Finesse Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Finesse Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "332": {
+ "name": "Finesse Weapon Ineptitude Other V",
+ "description": "Decreases the target's Finesse Weapon skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "333": {
+ "name": "Finesse Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Finesse Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "334": {
+ "name": "Finesse Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Finesse Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "335": {
+ "name": "Finesse Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Finesse Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "336": {
+ "name": "Finesse Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Finesse Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "337": {
+ "name": "Finesse Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Finesse Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "338": {
+ "name": "Finesse Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Finesse Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "339": {
+ "name": "Finesse Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Finesse Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "340": {
+ "name": "Light Weapon Mastery Other I",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "341": {
+ "name": "Light Weapon Mastery Other II",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "342": {
+ "name": "Light Weapon Mastery Other III",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "343": {
+ "name": "Light Weapon Mastery Other IV",
+ "description": "Increases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "344": {
+ "name": "Light Weapon Mastery Other V",
+ "description": "Increases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "345": {
+ "name": "Light Weapon Mastery Other VI",
+ "description": "Increases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "346": {
+ "name": "Light Weapon Mastery Self I",
+ "description": "Increases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "347": {
+ "name": "Light Weapon Mastery Self II",
+ "description": "Increases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "348": {
+ "name": "Light Weapon Mastery Self III",
+ "description": "Increases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "349": {
+ "name": "Light Weapon Mastery Self IV",
+ "description": "Increases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "350": {
+ "name": "Light Weapon Mastery Self V",
+ "description": "Increases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "351": {
+ "name": "Light Weapon Mastery Self VI",
+ "description": "Increases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "352": {
+ "name": "Light Weapon Ineptitude Other I",
+ "description": "Decreases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "353": {
+ "name": "Light Weapon Ineptitude Other II",
+ "description": "Decreases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "354": {
+ "name": "Light Weapon Ineptitude Other III",
+ "description": "Decreases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "355": {
+ "name": "Light Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "356": {
+ "name": "Light Weapon Ineptitude Other V",
+ "description": "Decreases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "357": {
+ "name": "Light Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "358": {
+ "name": "Light Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "359": {
+ "name": "Light Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "360": {
+ "name": "Light Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "361": {
+ "name": "Light Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "362": {
+ "name": "Light Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "363": {
+ "name": "Light Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "364": {
+ "name": "Light Weapon Mastery Other I",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "365": {
+ "name": "Light Weapon Mastery Other II",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "366": {
+ "name": "Light Weapon Mastery Other III",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "367": {
+ "name": "Light Weapon Mastery Other IV",
+ "description": "Increases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "368": {
+ "name": "Light Weapon Mastery Other V",
+ "description": "Increases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "369": {
+ "name": "Light Weapon Mastery Other VI",
+ "description": "Increases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "370": {
+ "name": "Light Weapon Mastery Self I",
+ "description": "Increases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "371": {
+ "name": "Light Weapon Mastery Self II",
+ "description": "Increases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "372": {
+ "name": "Light Weapon Mastery Self III",
+ "description": "Increases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "373": {
+ "name": "Light Weapon Mastery Self IV",
+ "description": "Increases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "374": {
+ "name": "Light Weapon Mastery Self V",
+ "description": "Increases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "375": {
+ "name": "Light Weapon Mastery Self VI",
+ "description": "Increases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "376": {
+ "name": "Light Weapon Ineptitude Other I",
+ "description": "Decreases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "377": {
+ "name": "Light Weapon Ineptitude Other II",
+ "description": "Decreases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "378": {
+ "name": "Light Weapon Ineptitude Other III",
+ "description": "Decreases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "379": {
+ "name": "Light Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "380": {
+ "name": "Light Weapon Ineptitude Other V",
+ "description": "Decreases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "381": {
+ "name": "Light Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "382": {
+ "name": "Light Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "383": {
+ "name": "Light Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "384": {
+ "name": "Light Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "385": {
+ "name": "Light Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "386": {
+ "name": "Light Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "387": {
+ "name": "Light Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "388": {
+ "name": "Light Weapon Mastery Other I",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "389": {
+ "name": "Light Weapon Mastery Other II",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "390": {
+ "name": "Light Weapon Mastery Other III",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "391": {
+ "name": "Light Weapon Mastery Other IV",
+ "description": "Increases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "392": {
+ "name": "Light Weapon Mastery Other V",
+ "description": "Increases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "393": {
+ "name": "Light Weapon Mastery Other VI",
+ "description": "Increases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "394": {
+ "name": "Light Weapon Mastery Self I",
+ "description": "Increases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "395": {
+ "name": "Light Weapon Mastery Self II",
+ "description": "Increases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "396": {
+ "name": "Light Weapon Mastery Self III",
+ "description": "Increases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "397": {
+ "name": "Light Weapon Mastery Self IV",
+ "description": "Increases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "398": {
+ "name": "Light Weapon Mastery Self V",
+ "description": "Increases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "399": {
+ "name": "Light Weapon Mastery Self VI",
+ "description": "Increases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "400": {
+ "name": "Light Weapon Ineptitude Other I",
+ "description": "Decreases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "401": {
+ "name": "Light Weapon Ineptitude Other II",
+ "description": "Decreases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "402": {
+ "name": "Light Weapon Ineptitude Other III",
+ "description": "Decreases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "403": {
+ "name": "Light Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "404": {
+ "name": "Light Weapon Ineptitude Other V",
+ "description": "Decreases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "405": {
+ "name": "Light Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "406": {
+ "name": "Light Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "407": {
+ "name": "Light Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "408": {
+ "name": "Light Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "409": {
+ "name": "Light Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "410": {
+ "name": "Light Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "411": {
+ "name": "Light Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "412": {
+ "name": "Heavy Weapon Mastery Other I",
+ "description": "Increases the target's Heavy Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "413": {
+ "name": "Heavy Weapon Mastery Other II",
+ "description": "Increases the target's Heavy Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "414": {
+ "name": "Heavy Weapon Mastery Other III",
+ "description": "Increases the target's Heavy Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "415": {
+ "name": "Heavy Weapon Mastery Other IV",
+ "description": "Increases the target's Heavy Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "416": {
+ "name": "Heavy Weapon Mastery Other V",
+ "description": "Increases the target's Heavy Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "417": {
+ "name": "Heavy Weapon Mastery Other VI",
+ "description": "Increases the target's Heavy Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "418": {
+ "name": "Heavy Weapon Mastery Self I",
+ "description": "Increases the caster's Heavy Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "419": {
+ "name": "Heavy Weapon Mastery Self II",
+ "description": "Increases the caster's Heavy Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "420": {
+ "name": "Heavy Weapon Mastery Self III",
+ "description": "Increases the caster's Heavy Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "421": {
+ "name": "Heavy Weapon Mastery Self IV",
+ "description": "Increases the caster's Heavy Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "422": {
+ "name": "Heavy Weapon Mastery Self V",
+ "description": "Increases the caster's Heavy Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "423": {
+ "name": "Heavy Weapon Mastery Self VI",
+ "description": "Increases the caster's Heavy Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "424": {
+ "name": "Heavy Weapon Ineptitude Other I",
+ "description": "Decreases the target's Heavy Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "425": {
+ "name": "Heavy Weapon Ineptitude Other II",
+ "description": "Decreases the target's Heavy Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "426": {
+ "name": "Heavy Weapon Ineptitude Other III",
+ "description": "Decreases the target's Heavy Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "427": {
+ "name": "Heavy Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Heavy Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "428": {
+ "name": "Heavy Weapon Ineptitude Other V",
+ "description": "Decreases the target's Heavy Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "429": {
+ "name": "Heavy Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Heavy Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "430": {
+ "name": "Heavy Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Heavy Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "431": {
+ "name": "Heavy Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Heavy Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "432": {
+ "name": "Heavy Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Heavy Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "433": {
+ "name": "Heavy Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Heavy Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "435": {
+ "name": "Heavy Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Heavy Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "436": {
+ "name": "Heavy Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Heavy Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "437": {
+ "name": "Light Weapon Mastery Other I",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "438": {
+ "name": "Light Weapon Mastery Other II",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "439": {
+ "name": "Light Weapon Mastery Other III",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "440": {
+ "name": "Light Weapon Mastery Other IV",
+ "description": "Increases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "441": {
+ "name": "Light Weapon Mastery Other V",
+ "description": "Increases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "442": {
+ "name": "Light Weapon Mastery Other VI",
+ "description": "Increases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "443": {
+ "name": "Light Weapon Mastery Self I",
+ "description": "Increases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "444": {
+ "name": "Light Weapon Mastery Self II",
+ "description": "Increases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "445": {
+ "name": "Light Weapon Mastery Self III",
+ "description": "Increases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "446": {
+ "name": "Light Weapon Mastery Self IV",
+ "description": "Increases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "447": {
+ "name": "Light Weapon Mastery Self V",
+ "description": "Increases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "448": {
+ "name": "Light Weapon Mastery Self VI",
+ "description": "Increases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "449": {
+ "name": "Light Weapon Ineptitude Other I",
+ "description": "Decreases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "450": {
+ "name": "Light Weapon Ineptitude Other II",
+ "description": "Decreases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "451": {
+ "name": "Light Weapon Ineptitude Other III",
+ "description": "Decreases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "452": {
+ "name": "Light Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "453": {
+ "name": "Light Weapon Ineptitude Other V",
+ "description": "Decreases the target's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "454": {
+ "name": "Light Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "455": {
+ "name": "Light Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "456": {
+ "name": "Light Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "457": {
+ "name": "Light Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "458": {
+ "name": "Light Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Light Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "459": {
+ "name": "Light Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Light Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "460": {
+ "name": "Light Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Light Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "461": {
+ "name": "Missile Weapon Mastery Other I",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "462": {
+ "name": "Missile Weapon Mastery Other II",
+ "description": "Increases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "463": {
+ "name": "Missile Weapon Mastery Other III",
+ "description": "Increases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "464": {
+ "name": "Missile Weapon Mastery Other IV",
+ "description": "Increases the target's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "465": {
+ "name": "Missile Weapon Mastery Other V",
+ "description": "Increases the target's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "466": {
+ "name": "Missile Weapon Mastery Other VI",
+ "description": "Increases the target's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "467": {
+ "name": "Missile Weapon Mastery Self I",
+ "description": "Increases the caster's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "468": {
+ "name": "Missile Weapon Mastery Self II",
+ "description": "Increases the caster's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "469": {
+ "name": "Missile Weapon Mastery Self III",
+ "description": "Increases the caster's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "470": {
+ "name": "Missile Weapon Mastery Self IV",
+ "description": "Increases the caster's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "471": {
+ "name": "Missile Weapon Mastery Self V",
+ "description": "Increases the caster's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "472": {
+ "name": "Missile Weapon Mastery Self VI",
+ "description": "Increases the caster's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "473": {
+ "name": "Missile Weapon Ineptitude Other I",
+ "description": "Decreases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "474": {
+ "name": "Missile Weapon Ineptitude Other II",
+ "description": "Decreases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "475": {
+ "name": "Missile Weapon Ineptitude Other III",
+ "description": "Decreases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "476": {
+ "name": "Missile Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "477": {
+ "name": "Missile Weapon Ineptitude Other V",
+ "description": "Decreases the target's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "478": {
+ "name": "Missile Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "479": {
+ "name": "Missile Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "480": {
+ "name": "Missile Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "481": {
+ "name": "Missile Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "482": {
+ "name": "Missile Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "483": {
+ "name": "Missile Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "484": {
+ "name": "Missile Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "485": {
+ "name": "Missile Weapon Mastery Other I",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "486": {
+ "name": "Missile Weapon Mastery Other II",
+ "description": "Increases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "487": {
+ "name": "Missile Weapon Mastery Other III",
+ "description": "Increases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "488": {
+ "name": "Missile Weapon Mastery Other IV",
+ "description": "Increases the target's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "489": {
+ "name": "Missile Weapon Mastery Other V",
+ "description": "Increases the target's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "490": {
+ "name": "Missile Weapon Mastery Other VI",
+ "description": "Increases the target's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "491": {
+ "name": "Missile Weapon Mastery Self I",
+ "description": "Increases the caster's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "492": {
+ "name": "Missile Weapon Mastery Self II",
+ "description": "Increases the caster's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "493": {
+ "name": "Missile Weapon Mastery Self III",
+ "description": "Increases the caster's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "494": {
+ "name": "Missile Weapon Mastery Self IV",
+ "description": "Increases the caster's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "495": {
+ "name": "Missile Weapon Mastery Self V",
+ "description": "Increases the caster's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "496": {
+ "name": "Missile Weapon Mastery Self VI",
+ "description": "Increases the caster's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "497": {
+ "name": "Missile Weapon Ineptitude Other I",
+ "description": "Decreases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "498": {
+ "name": "Missile Weapon Ineptitude Other II",
+ "description": "Decreases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "499": {
+ "name": "Missile Weapon Ineptitude Other III",
+ "description": "Decreases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "500": {
+ "name": "Missile Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "501": {
+ "name": "Missile Weapon Ineptitude Other V",
+ "description": "Decreases the target's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "502": {
+ "name": "Missile Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "503": {
+ "name": "Missile Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "504": {
+ "name": "Missile Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "505": {
+ "name": "Missile Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "506": {
+ "name": "Missile Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "507": {
+ "name": "Missile Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "508": {
+ "name": "Missile Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "509": {
+ "name": "Acid Protection Other I",
+ "description": "Reduces damage the target takes from acid by 9%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "510": {
+ "name": "Acid Protection Other II",
+ "description": "Reduces damage the target takes from acid by 20%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "511": {
+ "name": "Acid Protection Other III",
+ "description": "Reduces damage the target takes from acid by 33%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "512": {
+ "name": "Acid Protection Other IV",
+ "description": "Reduces damage the target takes from acid by 43%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "513": {
+ "name": "Acid Protection Other V",
+ "description": "Reduces damage the target takes from acid by 50%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "514": {
+ "name": "Acid Protection Other VI",
+ "description": "Reduces damage the target takes from acid by 60%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "515": {
+ "name": "Acid Protection Self I",
+ "description": "Reduces damage the caster takes from acid by 9%",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "516": {
+ "name": "Acid Protection Self II",
+ "description": "Reduces damage the caster takes from acid by 20%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "517": {
+ "name": "Acid Protection Self III",
+ "description": "Reduces damage the caster takes from acid by 33%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "518": {
+ "name": "Acid Protection Self IV",
+ "description": "Reduces damage the caster takes from acid by 43%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "519": {
+ "name": "Acid Protection Self V",
+ "description": "Reduces damage the caster takes from acid by 50%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "520": {
+ "name": "Acid Protection Self VI",
+ "description": "Reduces damage the caster takes from acid by 60%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "521": {
+ "name": "Acid Vulnerability Other I",
+ "description": "Increases damage the target takes from acid by 10%",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "522": {
+ "name": "Acid Vulnerability Other II",
+ "description": "Increases damage the target takes from acid by 25%",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "523": {
+ "name": "Acid Vulnerability Other III",
+ "description": "Increases damage the target takes from acid by 50%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "524": {
+ "name": "Acid Vulnerability Other IV",
+ "description": "Increases damage the target takes from acid by 75%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "525": {
+ "name": "Acid Vulnerability Other V",
+ "description": "Increases damage the target takes from acid by 100%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "526": {
+ "name": "Acid Vulnerability Other VI",
+ "description": "Increases damage the target takes from acid by 150%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "527": {
+ "name": "Acid Vulnerability Self I",
+ "description": "Increases damage the caster takes from acid by 10%",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "15"
+ },
+ "528": {
+ "name": "Acid Vulnerability Self II",
+ "description": "Increases damage the caster takes from acid by 25%",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "529": {
+ "name": "Acid Vulnerability Self III",
+ "description": "Increases damage the caster takes from acid by 50%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "530": {
+ "name": "Acid Vulnerability Self IV",
+ "description": "Increases damage the caster takes from acid by 75%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "531": {
+ "name": "Acid Vulnerability Self V",
+ "description": "Increases damage the caster takes from acid by 100%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "532": {
+ "name": "Acid Vulnerability Self VI",
+ "description": "Increases damage the caster takes from acid by 150%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "533": {
+ "name": "Missile Weapon Mastery Other I",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "534": {
+ "name": "Missile Weapon Mastery Other II",
+ "description": "Increases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "535": {
+ "name": "Missile Weapon Mastery Other III",
+ "description": "Increases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "536": {
+ "name": "Missile Weapon Mastery Other IV",
+ "description": "Increases the target's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "537": {
+ "name": "Missile Weapon Mastery Other V",
+ "description": "Increases the target's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "538": {
+ "name": "Missile Weapon Mastery Other VI",
+ "description": "Increases the target's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "539": {
+ "name": "Missile Weapon Mastery Self I",
+ "description": "Increases the caster's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "540": {
+ "name": "Missile Weapon Mastery Self II",
+ "description": "Increases the caster's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "541": {
+ "name": "Missile Weapon Mastery Self III",
+ "description": "Increases the caster's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "542": {
+ "name": "Missile Weapon Mastery Self IV",
+ "description": "Increases the caster's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "543": {
+ "name": "Missile Weapon Mastery Self V",
+ "description": "Increases the caster's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "544": {
+ "name": "Missile Weapon Mastery Self VI",
+ "description": "Increases the caster's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "545": {
+ "name": "Missile Weapon Ineptitude Other I",
+ "description": "Decreases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "546": {
+ "name": "Missile Weapon Ineptitude Other II",
+ "description": "Decreases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "547": {
+ "name": "Missile Weapon Ineptitude Other III",
+ "description": "Decreases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "548": {
+ "name": "Missile Weapon Ineptitude Other IV",
+ "description": "Decreases the target's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "549": {
+ "name": "Missile Weapon Ineptitude Other V",
+ "description": "Decreases the target's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "550": {
+ "name": "Missile Weapon Ineptitude Other VI",
+ "description": "Decreases the target's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "551": {
+ "name": "Missile Weapon Ineptitude Self I",
+ "description": "Decreases the caster's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "552": {
+ "name": "Missile Weapon Ineptitude Self II",
+ "description": "Decreases the caster's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "553": {
+ "name": "Missile Weapon Ineptitude Self III",
+ "description": "Decreases the caster's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "554": {
+ "name": "Missile Weapon Ineptitude Self IV",
+ "description": "Decreases the caster's Missile Weapons skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "555": {
+ "name": "Missile Weapon Ineptitude Self V",
+ "description": "Decreases the caster's Missile Weapons skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "556": {
+ "name": "Missile Weapon Ineptitude Self VI",
+ "description": "Decreases the caster's Missile Weapons skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "557": {
+ "name": "Creature Enchantment Mastery Self I",
+ "description": "Increases the caster's Creature Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "558": {
+ "name": "Creature Enchantment Mastery Self II",
+ "description": "Increases the caster's Creature Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "559": {
+ "name": "Creature Enchantment Mastery Self III",
+ "description": "Increases the caster's Creature Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "560": {
+ "name": "Creature Enchantment Mastery Self IV",
+ "description": "Increases the caster's Creature Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "561": {
+ "name": "Creature Enchantment Mastery Self V",
+ "description": "Increases the caster's Creature Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "562": {
+ "name": "Creature Enchantment Mastery Self VI",
+ "description": "Increases the caster's Creature Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "563": {
+ "name": "Creature Enchantment Mastery Other I",
+ "description": "Increases the target's Creature Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "564": {
+ "name": "Creature Enchantment Mastery Other II",
+ "description": "Increases the target's Creature Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "565": {
+ "name": "Creature Enchantment Mastery Other III",
+ "description": "Increases the target's Creature Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "566": {
+ "name": "Creature Enchantment Mastery Other IV",
+ "description": "Increases the target's Creature Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "567": {
+ "name": "Creature Enchantment Mastery Other V",
+ "description": "Increases the target's Creature Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "568": {
+ "name": "Creature Enchantment Mastery Other VI",
+ "description": "Increases the target's Creature Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "569": {
+ "name": "Creature Enchantment Ineptitude Other I",
+ "description": "Decreases the target's Creature Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "570": {
+ "name": "Creature Enchantment Ineptitude Other II",
+ "description": "Decreases the target's Creature Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "571": {
+ "name": "Creature Enchantment Ineptitude Other III",
+ "description": "Decreases the target's Creature Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "572": {
+ "name": "Creature Enchantment Ineptitude Other IV",
+ "description": "Decreases the target's Creature Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "573": {
+ "name": "Creature Enchantment Ineptitude Other V",
+ "description": "Decreases the target's Creature Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "574": {
+ "name": "Creature Enchantment Ineptitude Other VI",
+ "description": "Decreases the target's Creature Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "575": {
+ "name": "Creature Enchantment Ineptitude Self I",
+ "description": "Decreases the caster's Creature Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "576": {
+ "name": "Creature Enchantment Ineptitude Self II",
+ "description": "Decreases the caster's Creature Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "577": {
+ "name": "Creature Enchantment Ineptitude Self III",
+ "description": "Decreases the caster's Creature Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "578": {
+ "name": "Creature Enchantment Ineptitude Self IV",
+ "description": "Decreases the caster's Creature Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "579": {
+ "name": "Creature Enchantment Ineptitude Self V",
+ "description": "Decreases the caster's Creature Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "580": {
+ "name": "Creature Enchantment Ineptitude Self VI",
+ "description": "Decreases the caster's Creature Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "581": {
+ "name": "Item Enchantment Mastery Self I",
+ "description": "Increases the caster's Item Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "582": {
+ "name": "Item Enchantment Mastery Self II",
+ "description": "Increases the caster's Item Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "583": {
+ "name": "Item Enchantment Mastery Self III",
+ "description": "Increases the caster's Item Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "584": {
+ "name": "Item Enchantment Mastery Self IV",
+ "description": "Increases the caster's Item Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "585": {
+ "name": "Item Enchantment Mastery Self V",
+ "description": "Increases the caster's Item Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "586": {
+ "name": "Item Enchantment Mastery Self VI",
+ "description": "Increases the caster's Item Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "587": {
+ "name": "Item Enchantment Mastery Other I",
+ "description": "Increases the target's Item Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "588": {
+ "name": "Item Enchantment Mastery Other II",
+ "description": "Increases the target's Item Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "589": {
+ "name": "Item Enchantment Mastery Other III",
+ "description": "Increases the target's Item Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "590": {
+ "name": "Item Enchantment Mastery Other IV",
+ "description": "Increases the target's Item Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "591": {
+ "name": "Item Enchantment Mastery Other V",
+ "description": "Increases the target's Item Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "592": {
+ "name": "Item Enchantment Mastery Other VI",
+ "description": "Increases the target's Item Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "593": {
+ "name": "Item Enchantment Ineptitude Other I",
+ "description": "Decreases the target's Item Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "594": {
+ "name": "Item Enchantment Ineptitude Other II",
+ "description": "Decreases the target's Item Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "595": {
+ "name": "Item Enchantment Ineptitude Other III",
+ "description": "Decreases the target's Item Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "596": {
+ "name": "Item Enchantment Ineptitude Other IV",
+ "description": "Decreases the target's Item Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "597": {
+ "name": "Item Enchantment Ineptitude Other V",
+ "description": "Decreases the target's Item Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "598": {
+ "name": "Item Enchantment Ineptitude Other VI",
+ "description": "Decreases the target's Item Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "599": {
+ "name": "Item Enchantment Ineptitude Self I",
+ "description": "Decreases the caster's Item Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "600": {
+ "name": "Item Enchantment Ineptitude Self II",
+ "description": "Decreases the caster's Item Enchantment skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "601": {
+ "name": "Item Enchantment Ineptitude Self III",
+ "description": "Decreases the caster's Item Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "602": {
+ "name": "Item Enchantment Ineptitude Self IV",
+ "description": "Decreases the caster's Item Enchantment skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "603": {
+ "name": "Item Enchantment Ineptitude Self V",
+ "description": "Decreases the caster's Item Enchantment skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "604": {
+ "name": "Item Enchantment Ineptitude Self VI",
+ "description": "Decreases the caster's Item Enchantment skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "605": {
+ "name": "Life Magic Mastery Self I",
+ "description": "Increases the caster's Life Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "606": {
+ "name": "Life Magic Mastery Self II",
+ "description": "Increases the caster's Life Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "607": {
+ "name": "Life Magic Mastery Self III",
+ "description": "Increases the caster's Life Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "608": {
+ "name": "Life Magic Mastery Self IV",
+ "description": "Increases the caster's Life Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "609": {
+ "name": "Life Magic Mastery Self V",
+ "description": "Increases the caster's Life Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "610": {
+ "name": "Life Magic Mastery Self VI",
+ "description": "Increases the caster's Life Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "611": {
+ "name": "Life Magic Mastery Other I",
+ "description": "Increases the target's Life Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "612": {
+ "name": "Life Magic Mastery Other II",
+ "description": "Increases the target's Life Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "613": {
+ "name": "Life Magic Mastery Other III",
+ "description": "Increases the target's Life Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "614": {
+ "name": "Life Magic Mastery Other IV",
+ "description": "Increases the target's Life Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "615": {
+ "name": "Life Magic Mastery Other V",
+ "description": "Increases the target's Life Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "616": {
+ "name": "Life Magic Mastery Other VI",
+ "description": "Increases the target's Life Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "617": {
+ "name": "Life Magic Ineptitude Self I",
+ "description": "Decreases the caster's Life Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "618": {
+ "name": "Life Magic Ineptitude Self II",
+ "description": "Decreases the caster's Life Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "619": {
+ "name": "Life Magic Ineptitude Self III",
+ "description": "Decreases the caster's Life Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "620": {
+ "name": "Life Magic Ineptitude Self IV",
+ "description": "Decreases the caster's Life Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "621": {
+ "name": "Life Magic Ineptitude Self V",
+ "description": "Decreases the caster's Life Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "622": {
+ "name": "Life Magic Ineptitude Self VI",
+ "description": "Decreases the caster's Life Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "623": {
+ "name": "Life Magic Ineptitude Other I",
+ "description": "Decreases the target's Life Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "624": {
+ "name": "Life Magic Ineptitude Other II",
+ "description": "Decreases the target's Life Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "10"
+ },
+ "625": {
+ "name": "Life Magic Ineptitude Other III",
+ "description": "Decreases the target's Life Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "626": {
+ "name": "Life Magic Ineptitude Other IV",
+ "description": "Decreases the target's Life Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "627": {
+ "name": "Life Magic Ineptitude Other V",
+ "description": "Decreases the target's Life Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "628": {
+ "name": "Life Magic Ineptitude Other VI",
+ "description": "Decreases the target's Life Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "629": {
+ "name": "War Magic Mastery Self I",
+ "description": "Increases the caster's War Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "630": {
+ "name": "War Magic Mastery Self II",
+ "description": "Increases the caster's War Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "631": {
+ "name": "War Magic Mastery Self III",
+ "description": "Increases the caster's War Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "632": {
+ "name": "War Magic Mastery Self IV",
+ "description": "Increases the caster's War Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "633": {
+ "name": "War Magic Mastery Self V",
+ "description": "Increases the caster's War Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "634": {
+ "name": "War Magic Mastery Self VI",
+ "description": "Increases the caster's War Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "635": {
+ "name": "War Magic Mastery Other I",
+ "description": "Increases the target's War Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "636": {
+ "name": "War Magic Mastery Other II",
+ "description": "Increases the target's War Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "637": {
+ "name": "War Magic Mastery Other III",
+ "description": "Increases the target's War Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "638": {
+ "name": "War Magic Mastery Other IV",
+ "description": "Increases the target's War Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "639": {
+ "name": "War Magic Mastery Other V",
+ "description": "Increases the target's War Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "640": {
+ "name": "War Magic Mastery Other VI",
+ "description": "Increases the target's War Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "641": {
+ "name": "War Magic Ineptitude Self I",
+ "description": "Decreases the caster's War Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "642": {
+ "name": "War Magic Ineptitude Self II",
+ "description": "Decreases the caster's War Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "643": {
+ "name": "War Magic Ineptitude Self III",
+ "description": "Decreases the caster's War Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "644": {
+ "name": "War Magic Ineptitude Self IV",
+ "description": "Decreases the caster's War Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "645": {
+ "name": "War Magic Ineptitude Self V",
+ "description": "Decreases the caster's War Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "646": {
+ "name": "War Magic Ineptitude Self VI",
+ "description": "Decreases the caster's War Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "647": {
+ "name": "War Magic Ineptitude Other I",
+ "description": "Decreases the target's War Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "648": {
+ "name": "War Magic Ineptitude Other II",
+ "description": "Decreases the target's War Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "649": {
+ "name": "War Magic Ineptitude Other III",
+ "description": "Decreases the target's War Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "650": {
+ "name": "War Magic Ineptitude Other IV",
+ "description": "Decreases the target's War Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "651": {
+ "name": "War Magic Ineptitude Other V",
+ "description": "Decreases the target's War Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "652": {
+ "name": "War Magic Ineptitude Other VI",
+ "description": "Decreases the target's War Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "653": {
+ "name": "Mana Conversion Mastery Self I",
+ "description": "Increases the caster's Mana Conversion skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "654": {
+ "name": "Mana Conversion Mastery Self II",
+ "description": "Increases the caster's Mana Conversion skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "655": {
+ "name": "Mana Conversion Mastery Self III",
+ "description": "Increases the caster's Mana Conversion skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "656": {
+ "name": "Mana Conversion Mastery Self IV",
+ "description": "Increases the caster's Mana Conversion skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "657": {
+ "name": "Mana Conversion Mastery Self V",
+ "description": "Increases the caster's Mana Conversion skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "658": {
+ "name": "Mana Conversion Mastery Self VI",
+ "description": "Increases the caster's Mana Conversion skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "659": {
+ "name": "Mana Conversion Mastery Other I",
+ "description": "Increases the target's Mana Conversion skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "660": {
+ "name": "Mana Conversion Mastery Other II",
+ "description": "Increases the target's Mana Conversion skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "661": {
+ "name": "Mana Conversion Mastery Other III",
+ "description": "Increases the target's Mana Conversion skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "662": {
+ "name": "Mana Conversion Mastery Other IV",
+ "description": "Increases the target's Mana Conversion skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "663": {
+ "name": "Mana Conversion Mastery Other V",
+ "description": "Increases the target's Mana Conversion skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "664": {
+ "name": "Mana Conversion Mastery Other VI",
+ "description": "Increases the target's Mana Conversion skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "665": {
+ "name": "Mana Conversion Ineptitude Self I",
+ "description": "Decreases the caster's Mana Conversion skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "666": {
+ "name": "Vitae",
+ "description": "Death sucks",
+ "school": "Creature Enchantment",
+ "family": "204",
+ "difficulty": "30",
+ "duration": "-1",
+ "mana": "3"
+ },
+ "667": {
+ "name": "Mana Conversion Ineptitude Self II",
+ "description": "Decreases the caster's Mana Conversion skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "668": {
+ "name": "Mana Conversion Ineptitude Self III",
+ "description": "Decreases the caster's Mana Conversion skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "669": {
+ "name": "Mana Conversion Ineptitude Self IV",
+ "description": "Decreases the caster's Mana Conversion skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "670": {
+ "name": "Mana Conversion Ineptitude Self V",
+ "description": "Decreases the caster's Mana Conversion skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "671": {
+ "name": "Mana Conversion Ineptitude Self VI",
+ "description": "Decreases the caster's Mana Conversion skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "672": {
+ "name": "Mana Conversion Ineptitude Other I",
+ "description": "Decreases the target's Mana Conversion skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "673": {
+ "name": "Mana Conversion Ineptitude Other II",
+ "description": "Decreases the target's Mana Conversion skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "674": {
+ "name": "Mana Conversion Ineptitude Other III",
+ "description": "Decreases the target's Mana Conversion skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "675": {
+ "name": "Mana Conversion Ineptitude Other IV",
+ "description": "Decreases the target's Mana Conversion skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "676": {
+ "name": "Mana Conversion Ineptitude Other V",
+ "description": "Decreases the target's Mana Conversion skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "677": {
+ "name": "Mana Conversion Ineptitude Other VI",
+ "description": "Decreases the target's Mana Conversion skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "678": {
+ "name": "Arcane Enlightenment Self I",
+ "description": "Increases the caster's Arcane Lore skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "679": {
+ "name": "Arcane Enlightenment Self II",
+ "description": "Increases the caster's Arcane Lore skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "680": {
+ "name": "Arcane Enlightenment Self III",
+ "description": "Increases the caster's Arcane Lore skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "681": {
+ "name": "Arcane Enlightenment Self IV",
+ "description": "Increases the caster's Arcane Lore skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "682": {
+ "name": "Arcane Enlightenment Self V",
+ "description": "Increases the caster's Arcane Lore skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "683": {
+ "name": "Arcane Enlightenment Self VI",
+ "description": "Increases the caster's Arcane Lore skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "684": {
+ "name": "Arcane Enlightenment Other I",
+ "description": "Increases the target's Arcane Lore skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "685": {
+ "name": "Arcane Enlightenment Other II",
+ "description": "Increases the target's Arcane Lore skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "686": {
+ "name": "Arcane Enlightenment Other III",
+ "description": "Increases the target's Arcane Lore skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "687": {
+ "name": "Arcane Enlightenment Other IV",
+ "description": "Increases the target's Arcane Lore skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "688": {
+ "name": "Arcane Enlightenment Other V",
+ "description": "Increases the target's Arcane Lore skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "689": {
+ "name": "Arcane Enlightenment Other VI",
+ "description": "Increases the target's Arcane Lore skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "690": {
+ "name": "Arcane Benightedness Self I",
+ "description": "Decreases the caster's Arcane Lore skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "691": {
+ "name": "Arcane Benightedness Self II",
+ "description": "Decreases the caster's Arcane Lore skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "692": {
+ "name": "Arcane Benightedness Self III",
+ "description": "Decreases the caster's Arcane Lore skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "693": {
+ "name": "Arcane Benightedness Self IV",
+ "description": "Decreases the caster's Arcane Lore skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "694": {
+ "name": "Arcane Benightedness Self V",
+ "description": "Decreases the caster's Arcane Lore skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "695": {
+ "name": "Arcane Benightedness Self VI",
+ "description": "Decreases the caster's Arcane Lore skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "696": {
+ "name": "Arcane Benightedness Other I",
+ "description": "Decreases the target's Arcane Lore skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "697": {
+ "name": "Arcane Benightedness Other II",
+ "description": "Decreases the target's Arcane Lore skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "698": {
+ "name": "Arcane Benightedness Other III",
+ "description": "Decreases the target's Arcane Lore skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "699": {
+ "name": "Arcane Benightedness Other IV",
+ "description": "Decreases the target's Arcane Lore skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "700": {
+ "name": "Arcane Benightedness Other V",
+ "description": "Decreases the target's Arcane Lore skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "701": {
+ "name": "Arcane Benightedness Other VI",
+ "description": "Decreases the target's Arcane Lore skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "702": {
+ "name": "Armor Tinkering Expertise Self I",
+ "description": "Increases the caster's Armor Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "703": {
+ "name": "Armor Tinkering Expertise Self II",
+ "description": "Increases the caster's Armor Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "704": {
+ "name": "Armor Tinkering Expertise Self III",
+ "description": "Increases the caster's Armor Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "705": {
+ "name": "Armor Tinkering Expertise Self IV",
+ "description": "Increases the caster's Armor Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "706": {
+ "name": "Armor Tinkering Expertise Self V",
+ "description": "Increases the caster's Armor Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "707": {
+ "name": "Armor Tinkering Expertise Self VI",
+ "description": "Increases the caster's Armor Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "708": {
+ "name": "Armor Tinkering Expertise Other I",
+ "description": "Increases the target's Armor Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "709": {
+ "name": "Armor Tinkering Expertise Other II",
+ "description": "Increases the target's Armor Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "710": {
+ "name": "Armor Tinkering Expertise Other III",
+ "description": "Increases the target's Armor Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "711": {
+ "name": "Armor Tinkering Expertise Other IV",
+ "description": "Increases the target's Armor Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "712": {
+ "name": "Armor Tinkering Expertise Other V",
+ "description": "Increases the target's Armor Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "713": {
+ "name": "Armor Tinkering Expertise Other VI",
+ "description": "Increases the target's Armor Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "714": {
+ "name": "Armor Tinkering Ignorance Self I",
+ "description": "Decreases the caster's Armor Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "715": {
+ "name": "Armor Tinkering Ignorance Self II",
+ "description": "Decreases the caster's Armor Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "716": {
+ "name": "Armor Tinkering Ignorance Self III",
+ "description": "Decreases the caster's Armor Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "717": {
+ "name": "Armor Tinkering Ignorance Self IV",
+ "description": "Decreases the caster's Armor Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "718": {
+ "name": "Armor Tinkering Ignorance Self V",
+ "description": "Decreases the caster's Armor Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "719": {
+ "name": "Armor Tinkering Ignorance Self VI",
+ "description": "Decreases the caster's Armor Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "720": {
+ "name": "Armor Tinkering Ignorance Other I",
+ "description": "Decreases the target's Armor Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "721": {
+ "name": "Armor Tinkering Ignorance Other II",
+ "description": "Decreases the target's Armor Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "722": {
+ "name": "Armor Tinkering Ignorance Other III",
+ "description": "Decreases the target's Armor Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "723": {
+ "name": "Armor Tinkering Ignorance Other IV",
+ "description": "Decreases the target's Armor Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "724": {
+ "name": "Armor Tinkering Ignorance Other V",
+ "description": "Decreases the target's Armor Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "725": {
+ "name": "Armor Tinkering Ignorance Other VI",
+ "description": "Decreases the target's Armor Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "726": {
+ "name": "Item Tinkering Expertise Self I",
+ "description": "Increases the caster's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "727": {
+ "name": "Item Tinkering Expertise Self II",
+ "description": "Increases the caster's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "728": {
+ "name": "Item Tinkering Expertise Self III",
+ "description": "Increases the caster's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "729": {
+ "name": "Item Tinkering Expertise Self IV",
+ "description": "Increases the caster's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "730": {
+ "name": "Item Tinkering Expertise Self V",
+ "description": "Increases the caster's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "731": {
+ "name": "Item Tinkering Expertise Self VI",
+ "description": "Increases the caster's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "732": {
+ "name": "Item Tinkering Expertise Other I",
+ "description": "Increases the target's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "733": {
+ "name": "Item Tinkering Expertise Other II",
+ "description": "Increases the target's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "734": {
+ "name": "Item Tinkering Expertise Other III",
+ "description": "Increases the target's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "735": {
+ "name": "Item Tinkering Expertise Other IV",
+ "description": "Increases the target's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "736": {
+ "name": "Item Tinkering Expertise Other V",
+ "description": "Increases the target's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "737": {
+ "name": "Item Tinkering Expertise Other VI",
+ "description": "Increases the target's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "738": {
+ "name": "Item Tinkering Ignorance Self I",
+ "description": "Decreases the caster's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "739": {
+ "name": "Item Tinkering Ignorance Self II",
+ "description": "Decreases the caster's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "740": {
+ "name": "Item Tinkering Ignorance Self III",
+ "description": "Decreases the caster's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "741": {
+ "name": "Item Tinkering Ignorance Self IV",
+ "description": "Decreases the caster's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "742": {
+ "name": "Item Tinkering Ignorance Self V",
+ "description": "Decreases the caster's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "743": {
+ "name": "Item Tinkering Ignorance Self VI",
+ "description": "Decreases the caster's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "744": {
+ "name": "Item Tinkering Ignorance Other I",
+ "description": "Decreases the target's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "745": {
+ "name": "Item Tinkering Ignorance Other II",
+ "description": "Decreases the target's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "746": {
+ "name": "Item Tinkering Ignorance Other III",
+ "description": "Decreases the target's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "747": {
+ "name": "Item Tinkering Ignorance Other IV",
+ "description": "Decreases the target's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "748": {
+ "name": "Item Tinkering Ignorance Other V",
+ "description": "Decreases the target's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "749": {
+ "name": "Item Tinkering Ignorance Other VI",
+ "description": "Decreases the target's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "750": {
+ "name": "Magic Item Tinkering Expertise Self I",
+ "description": "Increases the caster's Magic Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "751": {
+ "name": "Magic Item Tinkering Expertise Self II",
+ "description": "Increases the caster's Magic Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "752": {
+ "name": "Magic Item Tinkering Expertise Self III",
+ "description": "Increases the caster's Magic Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "753": {
+ "name": "Magic Item Tinkering Expertise Self IV",
+ "description": "Increases the caster's Magic Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "754": {
+ "name": "Magic Item Tinkering Expertise Self V",
+ "description": "Increases the caster's Magic Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "755": {
+ "name": "Magic Item Tinkering Expertise Self VI",
+ "description": "Increases the caster's Magic Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "756": {
+ "name": "Magic Item Tinkering Expertise Other I",
+ "description": "Increases the target's Magic Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "757": {
+ "name": "Magic Item Tinkering Expertise Other II",
+ "description": "Increases the target's Magic Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "758": {
+ "name": "Magic Item Tinkering Expertise Other III",
+ "description": "Increases the target's Magic Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "75",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "759": {
+ "name": "Magic Item Tinkering Expertise Other IV",
+ "description": "Increases the target's Magic Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "125",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "760": {
+ "name": "Magic Item Tinkering Expertise Other V",
+ "description": "Increases the target's Magic Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "761": {
+ "name": "Magic Item Tinkering Expertise Other VI",
+ "description": "Increases the target's Magic Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "762": {
+ "name": "Magic Item Tinkering Ignorance Self I",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "763": {
+ "name": "Magic Item Tinkering Ignorance Self II",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "764": {
+ "name": "Magic Item Tinkering Ignorance Self III",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "765": {
+ "name": "Magic Item Tinkering Ignorance Self IV",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "766": {
+ "name": "Magic Item Tinkering Ignorance Self V",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "767": {
+ "name": "Magic Item Tinkering Ignorance Self VI",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "768": {
+ "name": "Magic Item Tinkering Ignorance Other I",
+ "description": "Decreases the target's Magic Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "769": {
+ "name": "Magic Item Tinkering Ignorance Other II",
+ "description": "Decreases the target's Magic Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "770": {
+ "name": "Magic Item Tinkering Ignorance Other III",
+ "description": "Decreases the target's Magic Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "771": {
+ "name": "Magic Item Tinkering Ignorance Other IV",
+ "description": "Decreases the target's Magic Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "772": {
+ "name": "Magic Item Tinkering Ignorance Other V",
+ "description": "Decreases the target's Magic Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "773": {
+ "name": "Magic Item Tinkering Ignorance Other VI",
+ "description": "Decreases the target's Magic Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "774": {
+ "name": "Weapon Tinkering Expertise Self I",
+ "description": "Increases the caster's Weapon Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "775": {
+ "name": "Weapon Tinkering Expertise Self II",
+ "description": "Increases the caster's Weapon Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "776": {
+ "name": "Weapon Tinkering Expertise Self III",
+ "description": "Increases the caster's Weapon Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "777": {
+ "name": "Weapon Tinkering Expertise Self IV",
+ "description": "Increases the caster's Weapon Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "778": {
+ "name": "Weapon Tinkering Expertise Self V",
+ "description": "Increases the caster's Weapon Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "779": {
+ "name": "Weapon Tinkering Expertise Self VI",
+ "description": "Increases the caster's Weapon Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "780": {
+ "name": "Weapon Tinkering Expertise Other I",
+ "description": "Increases the target's Weapon Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "781": {
+ "name": "Weapon Tinkering Expertise Other II",
+ "description": "Increases the target's Weapon Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "782": {
+ "name": "Weapon Tinkering Expertise Other III",
+ "description": "Increases the target's Weapon Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "783": {
+ "name": "Weapon Tinkering Expertise Other IV",
+ "description": "Increases the target's Weapon Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "784": {
+ "name": "Weapon Tinkering Expertise Other V",
+ "description": "Increases the target's Weapon Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "785": {
+ "name": "Weapon Tinkering Expertise Other VI",
+ "description": "Increases the target's Weapon Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "786": {
+ "name": "Weapon Tinkering Ignorance Self I",
+ "description": "Decreases the caster's Weapon Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "787": {
+ "name": "Weapon Tinkering Ignorance Self II",
+ "description": "Decreases the caster's Weapon Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "788": {
+ "name": "Weapon Tinkering Ignorance Self III",
+ "description": "Decreases the caster's Weapon Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "789": {
+ "name": "Weapon Tinkering Ignorance Self IV",
+ "description": "Decreases the caster's Weapon Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "790": {
+ "name": "Weapon Tinkering Ignorance Self V",
+ "description": "Decreases the caster's Weapon Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "791": {
+ "name": "Weapon Tinkering Ignorance Self VI",
+ "description": "Decreases the caster's Weapon Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "792": {
+ "name": "Weapon Tinkering Ignorance Other I",
+ "description": "Decreases the target's Weapon Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "793": {
+ "name": "Weapon Tinkering Ignorance Other II",
+ "description": "Decreases the target's Weapon Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "794": {
+ "name": "Weapon Tinkering Ignorance Other III",
+ "description": "Decreases the target's Weapon Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "795": {
+ "name": "Weapon Tinkering Ignorance Other IV",
+ "description": "Decreases the target's Weapon Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "796": {
+ "name": "Weapon Tinkering Ignorance Other V",
+ "description": "Decreases the target's Weapon Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "797": {
+ "name": "Weapon Tinkering Ignorance Other VI",
+ "description": "Decreases the target's Weapon Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "798": {
+ "name": "Monster Attunement Self I",
+ "description": "Increases the caster's Assess Monster skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "799": {
+ "name": "Monster Attunement Self II",
+ "description": "Increases the caster's Assess Monster skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "800": {
+ "name": "Monster Attunement Self III",
+ "description": "Increases the caster's Assess Monster skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "801": {
+ "name": "Monster Attunement Self IV",
+ "description": "Increases the caster's Assess Monster skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "802": {
+ "name": "Monster Attunement Self V",
+ "description": "Increases the caster's Assess Monster skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "803": {
+ "name": "Monster Attunement Self VI",
+ "description": "Increases the caster's Assess Monster skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "804": {
+ "name": "Monster Attunement Other I",
+ "description": "Increases the target's Assess Monster skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "805": {
+ "name": "Monster Attunement Other II",
+ "description": "Increases the target's Assess Monster skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "806": {
+ "name": "Monster Attunement Other III",
+ "description": "Increases the target's Assess Monster skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "807": {
+ "name": "Monster Attunement Other IV",
+ "description": "Increases the target's Assess Monster skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "808": {
+ "name": "Monster Attunement Other V",
+ "description": "Increases the target's Assess Monster skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "809": {
+ "name": "Monster Attunement Other VI",
+ "description": "Increases the target's Assess Monster skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "810": {
+ "name": "Fire Protection Other II",
+ "description": "Reduces damage the target takes from fire by 20%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "811": {
+ "name": "Monster Unfamiliarity Self I",
+ "description": "Decreases the caster's Assess Monster skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "812": {
+ "name": "Monster Unfamiliarity Self II",
+ "description": "Decreases the caster's Assess Monster skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "813": {
+ "name": "Monster Unfamiliarity Self III",
+ "description": "Decreases the caster's Assess Monster skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "814": {
+ "name": "Monster Unfamiliarity Self IV",
+ "description": "Decreases the caster's Assess Monster skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "815": {
+ "name": "Monster Unfamiliarity Self V",
+ "description": "Decreases the caster's Assess Monster skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "816": {
+ "name": "Monster Unfamiliarity Self VI",
+ "description": "Decreases the caster's Assess Monster skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "817": {
+ "name": "Monster Unfamiliarity Other I",
+ "description": "Decreases the target's Assess Monster skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "818": {
+ "name": "Monster Unfamiliarity Other II",
+ "description": "Decreases the target's Assess Monster skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "819": {
+ "name": "Monster Unfamiliarity Other III",
+ "description": "Decreases the target's Assess Monster skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "820": {
+ "name": "Monster Unfamiliarity Other IV",
+ "description": "Decreases the target's Assess Monster skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "821": {
+ "name": "Monster Unfamiliarity Other V",
+ "description": "Decreases the target's Assess Monster skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "822": {
+ "name": "Monster Unfamiliarity Other VI",
+ "description": "Decreases the target's Assess Monster skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "824": {
+ "name": "Person Attunement Self I",
+ "description": "Increases the caster's Assess Person skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "825": {
+ "name": "Person Attunement Self II",
+ "description": "Increases the caster's Assess Person skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "826": {
+ "name": "Person Attunement Self III",
+ "description": "Increases the caster's Assess Person skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "827": {
+ "name": "Person Attunement Self IV",
+ "description": "Increases the caster's Assess Person skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "828": {
+ "name": "Person Attunement Self V",
+ "description": "Increases the caster's Assess Person skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "829": {
+ "name": "Person Attunement Self VI",
+ "description": "Increases the caster's Assess Person skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "830": {
+ "name": "Person Attunement Other I",
+ "description": "Increases the target's Assess Person skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "831": {
+ "name": "Person Attunement Other II",
+ "description": "Increases the target's Assess Person skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "832": {
+ "name": "Person Attunement Other III",
+ "description": "Increases the target's Assess Person skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "833": {
+ "name": "Person Attunement Other IV",
+ "description": "Increases the target's Assess Person skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "834": {
+ "name": "Person Attunement Other V",
+ "description": "Increases the target's Assess Person skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "835": {
+ "name": "Person Attunement Other VI",
+ "description": "Increases the target's Assess Person skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "836": {
+ "name": "Fire Protection Other III",
+ "description": "Reduces damage the target takes from fire by 33%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "837": {
+ "name": "Person Unfamiliarity Self I",
+ "description": "Decreases the caster's Assess Person skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "838": {
+ "name": "Person Unfamiliarity Self II",
+ "description": "Decreases the caster's Assess Person skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "839": {
+ "name": "Person Unfamiliarity Self III",
+ "description": "Decreases the caster's Assess Person skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "840": {
+ "name": "Person Unfamiliarity Self IV",
+ "description": "Decreases the caster's Assess Person skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "841": {
+ "name": "Person Unfamiliarity Self V",
+ "description": "Decreases the caster's Assess Person skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "842": {
+ "name": "Person Unfamiliarity Self VI",
+ "description": "Decreases the caster's Assess Person skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "843": {
+ "name": "Person Unfamiliarity Other I",
+ "description": "Decreases the target's Assess Person skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "844": {
+ "name": "Person Unfamiliarity Other II",
+ "description": "Decreases the target's Assess Person skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "845": {
+ "name": "Person Unfamiliarity Other III",
+ "description": "Decreases the target's Assess Person skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "846": {
+ "name": "Person Unfamiliarity Other IV",
+ "description": "Decreases the target's Assess Person skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "847": {
+ "name": "Person Unfamiliarity Other V",
+ "description": "Decreases the target's Assess Person skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "848": {
+ "name": "Person Unfamiliarity Other VI",
+ "description": "Decreases the target's Assess Person skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "849": {
+ "name": "Fire Protection Other IV",
+ "description": "Reduces damage the target takes from fire by 43%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "850": {
+ "name": "Deception Mastery Self I",
+ "description": "Increases the caster's Deception skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "851": {
+ "name": "Deception Mastery Self II",
+ "description": "Increases the caster's Deception skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "852": {
+ "name": "Deception Mastery Self III",
+ "description": "Increases the caster's Deception skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "853": {
+ "name": "Deception Mastery Self IV",
+ "description": "Increases the caster's Deception skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "854": {
+ "name": "Deception Mastery Self V",
+ "description": "Increases the caster's Deception skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "855": {
+ "name": "Deception Mastery Self VI",
+ "description": "Increases the caster's Deception skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "856": {
+ "name": "Deception Mastery Other I",
+ "description": "Increases the target's Deception skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "857": {
+ "name": "Deception Mastery Other II",
+ "description": "Increases the target's Deception skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "858": {
+ "name": "Deception Mastery Other III",
+ "description": "Increases the target's Deception skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "859": {
+ "name": "Deception Mastery Other IV",
+ "description": "Increases the target's Deception skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "860": {
+ "name": "Deception Mastery Other V",
+ "description": "Increases the target's Deception skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "861": {
+ "name": "Deception Mastery Other VI",
+ "description": "Increases the target's Deception skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "862": {
+ "name": "Deception Ineptitude Self I",
+ "description": "Decreases the caster's Deception skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "863": {
+ "name": "Deception Ineptitude Self II",
+ "description": "Decreases the caster's Deception skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "864": {
+ "name": "Deception Ineptitude Self III",
+ "description": "Decreases the caster's Deception skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "865": {
+ "name": "Deception Ineptitude Self IV",
+ "description": "Decreases the caster's Deception skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "866": {
+ "name": "Deception Ineptitude Self V",
+ "description": "Decreases the caster's Deception skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "867": {
+ "name": "Deception Ineptitude Self VI",
+ "description": "Decreases the caster's Deception skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "868": {
+ "name": "Deception Ineptitude Other I",
+ "description": "Decreases the target's Deception skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "869": {
+ "name": "Deception Ineptitude Other II",
+ "description": "Decreases the target's Deception skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "870": {
+ "name": "Deception Ineptitude Other III",
+ "description": "Decreases the target's Deception skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "871": {
+ "name": "Deception Ineptitude Other IV",
+ "description": "Decreases the target's Deception skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "872": {
+ "name": "Deception Ineptitude Other V",
+ "description": "Decreases the target's Deception skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "873": {
+ "name": "Deception Ineptitude Other VI",
+ "description": "Decreases the target's Deception skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "874": {
+ "name": "Healing Mastery Self I",
+ "description": "Increases the caster's Healing skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "875": {
+ "name": "Healing Mastery Self II",
+ "description": "Increases the caster's Healing skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "876": {
+ "name": "Healing Mastery Self III",
+ "description": "Increases the caster's Healing skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "877": {
+ "name": "Healing Mastery Self IV",
+ "description": "Increases the caster's Healing skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "878": {
+ "name": "Healing Mastery Self V",
+ "description": "Increases the caster's Healing skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "879": {
+ "name": "Healing Mastery Self VI",
+ "description": "Increases the caster's Healing skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "880": {
+ "name": "Healing Mastery Other I",
+ "description": "Increases the target's Healing skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "881": {
+ "name": "Healing Mastery Other II",
+ "description": "Increases the target's Healing skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "882": {
+ "name": "Healing Mastery Other III",
+ "description": "Increases the target's Healing skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "883": {
+ "name": "Healing Mastery Other IV",
+ "description": "Increases the target's Healing skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "884": {
+ "name": "Healing Mastery Other V",
+ "description": "Increases the target's Healing skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "885": {
+ "name": "Healing Mastery Other VI",
+ "description": "Increases the target's Healing skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "886": {
+ "name": "Healing Ineptitude Self I",
+ "description": "Decreases the caster's Healing skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "887": {
+ "name": "Healing Ineptitude Self II",
+ "description": "Decreases the caster's Healing skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "888": {
+ "name": "Healing Ineptitude Self III",
+ "description": "Decreases the caster's Healing skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "889": {
+ "name": "Healing Ineptitude Self IV",
+ "description": "Decreases the caster's Healing skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "890": {
+ "name": "Healing Ineptitude Self V",
+ "description": "Decreases the caster's Healing skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "891": {
+ "name": "Healing Ineptitude Self VI",
+ "description": "Decreases the caster's Healing skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "892": {
+ "name": "Healing Ineptitude Other I",
+ "description": "Decreases the target's Healing skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "893": {
+ "name": "Healing Ineptitude Other II",
+ "description": "Decreases the target's Healing skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "894": {
+ "name": "Healing Ineptitude Other III",
+ "description": "Decreases the target's Healing skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "895": {
+ "name": "Healing Ineptitude Other IV",
+ "description": "Decreases the target's Healing skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "896": {
+ "name": "Healing Ineptitude Other V",
+ "description": "Decreases the target's Healing skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "897": {
+ "name": "Healing Ineptitude Other VI",
+ "description": "Decreases the target's Healing skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "898": {
+ "name": "Leadership Mastery Self I",
+ "description": "Increases the caster's Leadership skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "899": {
+ "name": "Leadership Mastery Self II",
+ "description": "Increases the caster's Leadership skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "25",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "900": {
+ "name": "Leadership Mastery Self III",
+ "description": "Increases the caster's Leadership skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "75",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "901": {
+ "name": "Leadership Mastery Self IV",
+ "description": "Increases the caster's Leadership skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "125",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "902": {
+ "name": "Leadership Mastery Self V",
+ "description": "Increases the caster's Leadership skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "903": {
+ "name": "Leadership Mastery Self VI",
+ "description": "Increases the caster's Leadership skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "904": {
+ "name": "Leadership Mastery Other I",
+ "description": "Increases the target's Leadership skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "905": {
+ "name": "Leadership Mastery Other II",
+ "description": "Increases the target's Leadership skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "906": {
+ "name": "Leadership Mastery Other III",
+ "description": "Increases the target's Leadership skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "907": {
+ "name": "Leadership Mastery Other IV",
+ "description": "Increases the target's Leadership skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "908": {
+ "name": "Leadership Mastery Other V",
+ "description": "Increases the target's Leadership skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "909": {
+ "name": "Leadership Mastery Other VI",
+ "description": "Increases the target's Leadership skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "910": {
+ "name": "Leadership Ineptitude Self I",
+ "description": "Decreases the caster's Leadership skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "911": {
+ "name": "Leadership Ineptitude Self II",
+ "description": "Decreases the caster's Leadership skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "912": {
+ "name": "Leadership Ineptitude Self III",
+ "description": "Decreases the caster's Leadership skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "913": {
+ "name": "Leadership Ineptitude Self IV",
+ "description": "Decreases the caster's Leadership skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "914": {
+ "name": "Leadership Ineptitude Self V",
+ "description": "Decreases the caster's Leadership skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "915": {
+ "name": "Leadership Ineptitude Self VI",
+ "description": "Decreases the caster's Leadership skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "916": {
+ "name": "Leadership Ineptitude Other I",
+ "description": "Decreases the target's Leadership skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "917": {
+ "name": "Leadership Ineptitude Other II",
+ "description": "Decreases the target's Leadership skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "918": {
+ "name": "Leadership Ineptitude Other III",
+ "description": "Decreases the target's Leadership skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "919": {
+ "name": "Leadership Ineptitude Other IV",
+ "description": "Decreases the target's Leadership skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "920": {
+ "name": "Leadership Ineptitude Other V",
+ "description": "Decreases the target's Leadership skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "921": {
+ "name": "Leadership Ineptitude Other VI",
+ "description": "Decreases the target's Leadership skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "922": {
+ "name": "Lockpick Mastery Self I",
+ "description": "Increases the caster's Lockpick skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "923": {
+ "name": "Lockpick Mastery Self II",
+ "description": "Increases the caster's Lockpick skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "924": {
+ "name": "Lockpick Mastery Self III",
+ "description": "Increases the caster's Lockpick skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "925": {
+ "name": "Lockpick Mastery Self IV",
+ "description": "Increases the caster's Lockpick skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "926": {
+ "name": "Lockpick Mastery Self V",
+ "description": "Increases the caster's Lockpick skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "927": {
+ "name": "Lockpick Mastery Self VI",
+ "description": "Increases the caster's Lockpick skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "928": {
+ "name": "Lockpick Mastery Other I",
+ "description": "Increases the target's Lockpick skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "929": {
+ "name": "Lockpick Mastery Other II",
+ "description": "Increases the target's Lockpick skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "930": {
+ "name": "Lockpick Mastery Other III",
+ "description": "Increases the target's Lockpick skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "931": {
+ "name": "Lockpick Mastery Other IV",
+ "description": "Increases the target's Lockpick skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "932": {
+ "name": "Lockpick Mastery Other V",
+ "description": "Increases the target's Lockpick skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "933": {
+ "name": "Lockpick Mastery Other VI",
+ "description": "Increases the target's Lockpick skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "934": {
+ "name": "Lockpick Ineptitude Self I",
+ "description": "Decreases the caster's Lockpick skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "935": {
+ "name": "Lockpick Ineptitude Self II",
+ "description": "Decreases the caster's Lockpick skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "936": {
+ "name": "Lockpick Ineptitude Self III",
+ "description": "Decreases the caster's Lockpick skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "937": {
+ "name": "Lockpick Ineptitude Self IV",
+ "description": "Decreases the caster's Lockpick skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "938": {
+ "name": "Lockpick Ineptitude Self V",
+ "description": "Decreases the caster's Lockpick skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "939": {
+ "name": "Lockpick Ineptitude Self VI",
+ "description": "Decreases the caster's Lockpick skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "940": {
+ "name": "Lockpick Ineptitude Other I",
+ "description": "Decreases the target's Lockpick skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "941": {
+ "name": "Lockpick Ineptitude Other II",
+ "description": "Decreases the target's Lockpick skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "942": {
+ "name": "Lockpick Ineptitude Other III",
+ "description": "Decreases the target's Lockpick skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "943": {
+ "name": "Lockpick Ineptitude Other IV",
+ "description": "Decreases the target's Lockpick skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "944": {
+ "name": "Lockpick Ineptitude Other V",
+ "description": "Decreases the target's Lockpick skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "945": {
+ "name": "Lockpick Ineptitude Other VI",
+ "description": "Decreases the target's Lockpick skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "946": {
+ "name": "Fealty Self I",
+ "description": "Increases the caster's Loyalty skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "947": {
+ "name": "Fealty Self II",
+ "description": "Increases the caster's Loyalty skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "948": {
+ "name": "Fealty Self III",
+ "description": "Increases the caster's Loyalty skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "949": {
+ "name": "Fealty Self IV",
+ "description": "Increases the caster's Loyalty skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "950": {
+ "name": "Fealty Self V",
+ "description": "Increases the caster's Loyalty skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "951": {
+ "name": "Fealty Self VI",
+ "description": "Increases the caster's Loyalty skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "952": {
+ "name": "Fealty Other I",
+ "description": "Increases the target's Loyalty skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "953": {
+ "name": "Fealty Other II",
+ "description": "Increases the target's Loyalty skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "954": {
+ "name": "Fealty Other III",
+ "description": "Increases the target's Loyalty skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "955": {
+ "name": "Fealty Other IV",
+ "description": "Increases the target's Loyalty skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "956": {
+ "name": "Fealty Other V",
+ "description": "Increases the target's Loyalty skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "957": {
+ "name": "Fealty Other VI",
+ "description": "Increases the target's Loyalty skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "958": {
+ "name": "Faithlessness Self I",
+ "description": "Decreases the caster's Loyalty skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "959": {
+ "name": "Faithlessness Self II",
+ "description": "Decreases the caster's Loyalty skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "960": {
+ "name": "Faithlessness Self III",
+ "description": "Decreases the caster's Loyalty skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "961": {
+ "name": "Faithlessness Self IV",
+ "description": "Decreases the caster's Loyalty skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "962": {
+ "name": "Faithlessness Self V",
+ "description": "Decreases the caster's Loyalty skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "963": {
+ "name": "Faithlessness Self VI",
+ "description": "Decreases the caster's Loyalty skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "964": {
+ "name": "Faithlessness Other I",
+ "description": "Decreases the target's Loyalty skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "965": {
+ "name": "Faithlessness Other II",
+ "description": "Decreases the target's Loyalty skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "966": {
+ "name": "Faithlessness Other III",
+ "description": "Decreases the target's Loyalty skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "967": {
+ "name": "Faithlessness Other IV",
+ "description": "Decreases the target's Loyalty skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "968": {
+ "name": "Faithlessness Other V",
+ "description": "Decreases the target's Loyalty skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "969": {
+ "name": "Faithlessness Other VI",
+ "description": "Decreases the target's Loyalty skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "970": {
+ "name": "Jumping Mastery Self I",
+ "description": "Increases the caster's Jump skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "971": {
+ "name": "Jumping Mastery Self II",
+ "description": "Increases the caster's Jump skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "972": {
+ "name": "Jumping Mastery Self III",
+ "description": "Increases the caster's Jump skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "973": {
+ "name": "Jumping Mastery Self IV",
+ "description": "Increases the caster's Jump skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "974": {
+ "name": "Jumping Mastery Self V",
+ "description": "Increases the caster's Jump skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "975": {
+ "name": "Jumping Mastery Self VI",
+ "description": "Increases the caster's Jump skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "976": {
+ "name": "Jumping Mastery Other I",
+ "description": "Increases the target's Jump skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "977": {
+ "name": "Jumping Mastery Other II",
+ "description": "Increases the target's Jump skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "978": {
+ "name": "Jumping Mastery Other III",
+ "description": "Increases the target's Jump skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "979": {
+ "name": "Jumping Mastery Other IV",
+ "description": "Increases the target's Jump skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "980": {
+ "name": "Jumping Mastery Other V",
+ "description": "Increases the target's Jump skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "981": {
+ "name": "Jumping Mastery Other VI",
+ "description": "Increases the target's Jump skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "982": {
+ "name": "Sprint Self I",
+ "description": "Increases the caster's Run skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "983": {
+ "name": "Sprint Self II",
+ "description": "Increases the caster's Run skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "984": {
+ "name": "Sprint Self III",
+ "description": "Increases the caster's Run skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "985": {
+ "name": "Sprint Self IV",
+ "description": "Increases the caster's Run skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "986": {
+ "name": "Sprint Self V",
+ "description": "Increases the caster's Run skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "987": {
+ "name": "Sprint Self VI",
+ "description": "Increases the caster's Run skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "988": {
+ "name": "Sprint Other I",
+ "description": "Increases the target's Run skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "989": {
+ "name": "Sprint Other II",
+ "description": "Increases the target's Run skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "990": {
+ "name": "Sprint Other III",
+ "description": "Increases the target's Run skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "991": {
+ "name": "Sprint Other IV",
+ "description": "Increases the target's Run skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "992": {
+ "name": "Sprint Other V",
+ "description": "Increases the target's Run skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "993": {
+ "name": "Sprint Other VI",
+ "description": "Increases the target's Run skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "994": {
+ "name": "Leaden Feet Self I",
+ "description": "Decreases the caster's Run skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "995": {
+ "name": "Leaden Feet Self II",
+ "description": "Decreases the caster's Run skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "996": {
+ "name": "Leaden Feet Self III",
+ "description": "Decreases the caster's Run skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "997": {
+ "name": "Leaden Feet Self IV",
+ "description": "Decreases the caster's Run skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "998": {
+ "name": "Leaden Feet Self V",
+ "description": "Decreases the caster's Run skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "999": {
+ "name": "Leaden Feet Self VI",
+ "description": "Decreases the caster's Run skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1000": {
+ "name": "Leaden Feet Other I",
+ "description": "Decreases the target's Run skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1001": {
+ "name": "Leaden Feet Other II",
+ "description": "Decreases the target's Run skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1002": {
+ "name": "Leaden Feet Other III",
+ "description": "Decreases the target's Run skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1003": {
+ "name": "Leaden Feet Other IV",
+ "description": "Decreases the target's Run skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1004": {
+ "name": "Leaden Feet Other V",
+ "description": "Decreases the target's Run skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1005": {
+ "name": "Leaden Feet Other VI",
+ "description": "Decreases the target's Run skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1006": {
+ "name": "Jumping Ineptitude Self I",
+ "description": "Decreases the caster's Jump skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1007": {
+ "name": "Jumping Ineptitude Self II",
+ "description": "Decreases the caster's Jump skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1008": {
+ "name": "Jumping Ineptitude Self III",
+ "description": "Decreases the caster's Jump skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1009": {
+ "name": "Jumping Ineptitude Self IV",
+ "description": "Decreases the caster's Jump skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1010": {
+ "name": "Jumping Ineptitude Self V",
+ "description": "Decreases the caster's Jump skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1011": {
+ "name": "Jumping Ineptitude Self VI",
+ "description": "Decreases the caster's Jump skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1012": {
+ "name": "Jumping Ineptitude Other I",
+ "description": "Decreases the target's Jump skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1013": {
+ "name": "Jumping Ineptitude Other II",
+ "description": "Decreases the target's Jump skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1014": {
+ "name": "Jumping Ineptitude Other III",
+ "description": "Decreases the target's Jump skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1015": {
+ "name": "Jumping Ineptitude Other IV",
+ "description": "Decreases the target's Jump skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1016": {
+ "name": "Jumping Ineptitude Other V",
+ "description": "Decreases the target's Jump skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1017": {
+ "name": "Jumping Ineptitude Other VI",
+ "description": "Decreases the target's Jump skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1018": {
+ "name": "Bludgeoning Protection Self I",
+ "description": "Reduces damage the caster takes from Bludgeoning by 9%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1019": {
+ "name": "Bludgeoning Protection Self II",
+ "description": "Reduces damage the caster takes from Bludgeoning by 20%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1020": {
+ "name": "Bludgeoning Protection Self III",
+ "description": "Reduces damage the caster takes from Bludgeoning by 33%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1021": {
+ "name": "Bludgeoning Protection Self IV",
+ "description": "Reduces damage the caster takes from Bludgeoning by 43%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1022": {
+ "name": "Bludgeoning Protection Self V",
+ "description": "Reduces damage the caster takes from Bludgeoning by 50%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1023": {
+ "name": "Bludgeoning Protection Self VI",
+ "description": "Reduces damage the caster takes from Bludgeoning by 60%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1024": {
+ "name": "Bludgeoning Protection Other I",
+ "description": "Reduces damage the target takes from Bludgeoning by 9%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1025": {
+ "name": "Bludgeoning Protection Other II",
+ "description": "Reduces damage the target takes from Bludgeoning by 20%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1026": {
+ "name": "Bludgeoning Protection Other III",
+ "description": "Reduces damage the target takes from Bludgeoning by 33%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1027": {
+ "name": "Bludgeoning Protection Other IV",
+ "description": "Reduces damage the target takes from Bludgeoning by 43%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1028": {
+ "name": "Bludgeoning Protection Other V",
+ "description": "Reduces damage the target takes from Bludgeoning by 50%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1029": {
+ "name": "Bludgeoning Protection Other VI",
+ "description": "Reduces damage the target takes from Bludgeoning by 60%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1030": {
+ "name": "Cold Protection Self I",
+ "description": "Reduces damage the caster takes from Cold by 9%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1031": {
+ "name": "Cold Protection Self II",
+ "description": "Reduces damage the caster takes from Cold by 20%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1032": {
+ "name": "Cold Protection Self III",
+ "description": "Reduces damage the caster takes from Cold by 33%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1033": {
+ "name": "Cold Protection Self IV",
+ "description": "Reduces damage the caster takes from Cold by 43%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1034": {
+ "name": "Cold Protection Self V",
+ "description": "Reduces damage the caster takes from Cold by 50%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1035": {
+ "name": "Cold Protection Self VI",
+ "description": "Reduces damage the caster takes from Cold by 60%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1036": {
+ "name": "Cold Protection Other I",
+ "description": "Reduces damage the target takes from Cold by 9%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1037": {
+ "name": "Cold Protection Other II",
+ "description": "Reduces damage the target takes from Cold by 20%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1038": {
+ "name": "Cold Protection Other III",
+ "description": "Reduces damage the target takes from Cold by 33%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1039": {
+ "name": "Cold Protection Other IV",
+ "description": "Reduces damage the target takes from Cold by 43%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1040": {
+ "name": "Cold Protection Other V",
+ "description": "Reduces damage the target takes from Cold by 50%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1041": {
+ "name": "Cold Protection Other VI",
+ "description": "Reduces damage the target takes from Cold by 60%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1042": {
+ "name": "Bludgeoning Vulnerability Self I",
+ "description": "Increases damage the caster takes from Bludgeoning by 10%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1043": {
+ "name": "Bludgeoning Vulnerability Self II",
+ "description": "Increases damage the caster takes from Bludgeoning by 25%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1044": {
+ "name": "Bludgeoning Vulnerability Self III",
+ "description": "Increases damage the caster takes from Bludgeoning by 50%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1045": {
+ "name": "Bludgeoning Vulnerability Self IV",
+ "description": "Increases damage the caster takes from Bludgeoning by 75%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1046": {
+ "name": "Bludgeoning Vulnerability Self V",
+ "description": "Increases damage the caster takes from Bludgeoning by 100%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1047": {
+ "name": "Bludgeoning Vulnerability Self VI",
+ "description": "Increases damage the caster takes from Bludgeoning by 150%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1048": {
+ "name": "Bludgeoning Vulnerability Other I",
+ "description": "Increases damage the target takes from Bludgeoning by 10%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1049": {
+ "name": "Bludgeoning Vulnerability Other II",
+ "description": "Increases damage the target takes from Bludgeoning by 25%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1050": {
+ "name": "Bludgeoning Vulnerability Other III",
+ "description": "Increases damage the target takes from Bludgeoning by 50%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1051": {
+ "name": "Bludgeoning Vulnerability Other IV",
+ "description": "Increases damage the target takes from Bludgeoning by 75%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1052": {
+ "name": "Bludgeoning Vulnerability Other V",
+ "description": "Increases damage the target takes from Bludgeoning by 100%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1053": {
+ "name": "Bludgeoning Vulnerability Other VI",
+ "description": "Increases damage the target takes from Bludgeoning by 150%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1054": {
+ "name": "Cold Vulnerability Self I",
+ "description": "Increases damage the caster takes from Cold by 10%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1055": {
+ "name": "Cold Vulnerability Self II",
+ "description": "Increases damage the caster takes from Cold by 25%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1056": {
+ "name": "Cold Vulnerability Self III",
+ "description": "Increases damage the caster takes from Cold by 50%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1057": {
+ "name": "Cold Vulnerability Self IV",
+ "description": "Increases damage the caster takes from Cold by 75%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1058": {
+ "name": "Cold Vulnerability Self V",
+ "description": "Increases damage the caster takes from Cold by 100%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1059": {
+ "name": "Cold Vulnerability Self VI",
+ "description": "Increases damage the caster takes from Cold by 150%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1060": {
+ "name": "Cold Vulnerability Other I",
+ "description": "Increases damage the target takes from Cold by 10%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1061": {
+ "name": "Cold Vulnerability Other II",
+ "description": "Increases damage the target takes from Cold by 25%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1062": {
+ "name": "Cold Vulnerability Other III",
+ "description": "Increases damage the target takes from Cold by 50%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1063": {
+ "name": "Cold Vulnerability Other IV",
+ "description": "Increases damage the target takes from Cold by 75%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1064": {
+ "name": "Cold Vulnerability Other V",
+ "description": "Increases damage the target takes from Cold by 100%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1065": {
+ "name": "Cold Vulnerability Other VI",
+ "description": "Increases damage the target takes from Cold by 150%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1066": {
+ "name": "Lightning Protection Self I",
+ "description": "Reduces damage the caster takes from Lightning by 9%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1067": {
+ "name": "Lightning Protection Self II",
+ "description": "Reduces damage the caster takes from Lightning by 20%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1068": {
+ "name": "Lightning Protection Self III",
+ "description": "Reduces damage the caster takes from Lightning by 33%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1069": {
+ "name": "Lightning Protection Self IV",
+ "description": "Reduces damage the caster takes from Lightning by 43%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1070": {
+ "name": "Lightning Protection Self V",
+ "description": "Reduces damage the caster takes from Lightning by 50%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1071": {
+ "name": "Lightning Protection Self VI",
+ "description": "Reduces damage the caster takes from Lightning by 60%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1072": {
+ "name": "Lightning Protection Other I",
+ "description": "Reduces damage the target takes from Lightning by 9%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1073": {
+ "name": "Lightning Protection Other II",
+ "description": "Reduces damage the target takes from Lightning by 20%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1074": {
+ "name": "Lightning Protection Other III",
+ "description": "Reduces damage the target takes from Lightning by 33%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1075": {
+ "name": "Lightning Protection Other IV",
+ "description": "Reduces damage the target takes from Lightning by 43%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1076": {
+ "name": "Lightning Protection Other V",
+ "description": "Reduces damage the target takes from Lightning by 50%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1077": {
+ "name": "Lightning Protection Other VI",
+ "description": "Reduces damage the target takes from Lightning by 60%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1078": {
+ "name": "Lightning Vulnerability Self I",
+ "description": "Increases damage the caster takes from Lightning by 10%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1079": {
+ "name": "Lightning Vulnerability Self II",
+ "description": "Increases damage the caster takes from Lightning by 25%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1080": {
+ "name": "Lightning Vulnerability Self III",
+ "description": "Increases damage the caster takes from Lightning by 50%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1081": {
+ "name": "Lightning Vulnerability Self IV",
+ "description": "Increases damage the caster takes from Lightning by 75%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1082": {
+ "name": "Lightning Vulnerability Self V",
+ "description": "Increases damage the caster takes from Lightning by 100%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1083": {
+ "name": "Lightning Vulnerability Self VI",
+ "description": "Increases damage the caster takes from Lightning by 150%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1084": {
+ "name": "Lightning Vulnerability Other I",
+ "description": "Increases damage the target takes from Lightning by 10%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1085": {
+ "name": "Lightning Vulnerability Other II",
+ "description": "Increases damage the target takes from Lightning by 25%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1086": {
+ "name": "Lightning Vulnerability Other III",
+ "description": "Increases damage the target takes from Lightning by 50%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1087": {
+ "name": "Lightning Vulnerability Other IV",
+ "description": "Increases damage the target takes from Lightning by 75%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1088": {
+ "name": "Lightning Vulnerability Other V",
+ "description": "Increases damage the target takes from Lightning by 100%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1089": {
+ "name": "Lightning Vulnerability Other VI",
+ "description": "Increases damage the target takes from Lightning by 150%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1090": {
+ "name": "Fire Protection Self II",
+ "description": "Reduces damage the caster takes from Fire by 20%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1091": {
+ "name": "Fire Protection Self III",
+ "description": "Reduces damage the caster takes from Fire by 33%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1092": {
+ "name": "Fire Protection Self IV",
+ "description": "Reduces damage the caster takes from Fire by 43%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1093": {
+ "name": "Fire Protection Self V",
+ "description": "Reduces damage the caster takes from Fire by 50%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1094": {
+ "name": "Fire Protection Self VI",
+ "description": "Reduces damage the caster takes from Fire by 60%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1095": {
+ "name": "Fire Protection Other V",
+ "description": "Reduces damage the target takes from fire by 50%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1096": {
+ "name": "Fire Protection Other VI",
+ "description": "Reduces damage the target takes from fire by 60%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1097": {
+ "name": "Flaming Missile",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1098": {
+ "name": "Fire Vulnerability Self II",
+ "description": "Increases damage the caster takes from Fire by 25%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1099": {
+ "name": "Fire Vulnerability Self III",
+ "description": "Increases damage the caster takes from Fire by 50%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1100": {
+ "name": "Fire Vulnerability Self IV",
+ "description": "Increases damage the caster takes from Fire by 75%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1101": {
+ "name": "Fire Vulnerability Self V",
+ "description": "Increases damage the caster takes from Fire by 100%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1102": {
+ "name": "Fire Vulnerability Self VI",
+ "description": "Increases damage the caster takes from Fire by 150%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1104": {
+ "name": "Fire Vulnerability Other II",
+ "description": "Increases damage the target takes from Fire by 25%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1105": {
+ "name": "Fire Vulnerability Other III",
+ "description": "Increases damage the target takes from Fire by 50%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1106": {
+ "name": "Fire Vulnerability Other IV",
+ "description": "Increases damage the target takes from Fire by 75%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1107": {
+ "name": "Fire Vulnerability Other V",
+ "description": "Increases damage the target takes from Fire by 100%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1108": {
+ "name": "Fire Vulnerability Other VI",
+ "description": "Increases damage the target takes from Fire by 150%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1109": {
+ "name": "Blade Protection Self I",
+ "description": "Reduces damage the caster takes from Slashing by 9%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1110": {
+ "name": "Blade Protection Self II",
+ "description": "Reduces damage the caster takes from Slashing by 20%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1111": {
+ "name": "Blade Protection Self III",
+ "description": "Reduces damage the caster takes from Slashing by 33%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1112": {
+ "name": "Blade Protection Self IV",
+ "description": "Reduces damage the caster takes from Slashing by 43%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1113": {
+ "name": "Blade Protection Self V",
+ "description": "Reduces damage the caster takes from Slashing by 50%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1114": {
+ "name": "Blade Protection Self VI",
+ "description": "Reduces damage the caster takes from Slashing by 60%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1115": {
+ "name": "Blade Protection Other I",
+ "description": "Reduces damage the target takes from Slashing by 9%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1116": {
+ "name": "Blade Protection Other II",
+ "description": "Reduces damage the target takes from Slashing by 20%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1117": {
+ "name": "Blade Protection Other III",
+ "description": "Reduces damage the target takes from Slashing by 33%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1118": {
+ "name": "Blade Protection Other IV",
+ "description": "Reduces damage the target takes from Slashing by 43%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1119": {
+ "name": "Blade Protection Other V",
+ "description": "Reduces damage the target takes from Slashing by 50%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1120": {
+ "name": "Blade Protection Other VI",
+ "description": "Reduces damage the target takes from Slashing by 60%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1121": {
+ "name": "Blade Vulnerability Self I",
+ "description": "Increases damage the caster takes from Slashing by 10%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1122": {
+ "name": "Blade Vulnerability Self II",
+ "description": "Increases damage the caster takes from Slashing by 25%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1123": {
+ "name": "Blade Vulnerability Self III",
+ "description": "Increases damage the caster takes from Slashing by 50%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1124": {
+ "name": "Blade Vulnerability Self IV",
+ "description": "Increases damage the caster takes from Slashing by 75%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1125": {
+ "name": "Blade Vulnerability Self V",
+ "description": "Increases damage the caster takes from Slashing by 100%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1126": {
+ "name": "Blade Vulnerability Self VI",
+ "description": "Increases damage the caster takes from Slashing by 150%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1127": {
+ "name": "Blade Vulnerability Other I",
+ "description": "Increases damage the target takes from Slashing by 10%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1128": {
+ "name": "Blade Vulnerability Other II",
+ "description": "Increases damage the target takes from Slashing by 25%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1129": {
+ "name": "Blade Vulnerability Other III",
+ "description": "Increases damage the target takes from Slashing by 50%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1130": {
+ "name": "Blade Vulnerability Other IV",
+ "description": "Increases damage the target takes from Slashing by 75%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1131": {
+ "name": "Blade Vulnerability Other V",
+ "description": "Increases damage the target takes from Slashing by 100%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1132": {
+ "name": "Blade Vulnerability Other VI",
+ "description": "Increases damage the target takes from Slashing by 150%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1133": {
+ "name": "Piercing Protection Self I",
+ "description": "Reduces damage the caster takes from Piercing by 9%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1134": {
+ "name": "Piercing Protection Self II",
+ "description": "Reduces damage the caster takes from Piercing by 20%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1135": {
+ "name": "Piercing Protection Self III",
+ "description": "Reduces damage the caster takes from Piercing by 33%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1136": {
+ "name": "Piercing Protection Self IV",
+ "description": "Reduces damage the caster takes from Piercing by 43%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1137": {
+ "name": "Piercing Protection Self V",
+ "description": "Reduces damage the caster takes from Piercing by 50%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1138": {
+ "name": "Piercing Protection Self VI",
+ "description": "Reduces damage the caster takes from Piercing by 60%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1139": {
+ "name": "Piercing Protection Other I",
+ "description": "Reduces damage the target takes from Piercing by 9%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1140": {
+ "name": "Piercing Protection Other II",
+ "description": "Reduces damage the target takes from Piercing by 20%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1141": {
+ "name": "Piercing Protection Other III",
+ "description": "Reduces damage the target takes from Piercing by 33%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1142": {
+ "name": "Piercing Protection Other IV",
+ "description": "Reduces damage the target takes from Piercing by 43%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1143": {
+ "name": "Piercing Protection Other V",
+ "description": "Reduces damage the target takes from Piercing by 50%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1144": {
+ "name": "Piercing Protection Other VI",
+ "description": "Reduces damage the target takes from Piercing by 60%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1145": {
+ "name": "Piercing Vulnerability Self I",
+ "description": "Increases damage the caster takes from Piercing by 10%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1146": {
+ "name": "Piercing Vulnerability Self II",
+ "description": "Increases damage the caster takes from Piercing by 25%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1147": {
+ "name": "Piercing Vulnerability Self III",
+ "description": "Increases damage the caster takes from Piercing by 50%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1148": {
+ "name": "Piercing Vulnerability Self IV",
+ "description": "Increases damage the caster takes from Piercing by 75%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1149": {
+ "name": "Piercing Vulnerability Self V",
+ "description": "Increases damage the caster takes from Piercing by 100%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1150": {
+ "name": "Piercing Vulnerability Self VI",
+ "description": "Increases damage the caster takes from Piercing by 150%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1151": {
+ "name": "Piercing Vulnerability Other I",
+ "description": "Increases damage the target takes from Piercing by 10%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1152": {
+ "name": "Piercing Vulnerability Other II",
+ "description": "Increases damage the target takes from Piercing by 25%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1153": {
+ "name": "Piercing Vulnerability Other III",
+ "description": "Increases damage the target takes from Piercing by 50%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1154": {
+ "name": "Piercing Vulnerability Other IV",
+ "description": "Increases damage the target takes from Piercing by 75%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1155": {
+ "name": "Piercing Vulnerability Other V",
+ "description": "Increases damage the target takes from Piercing by 100%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1156": {
+ "name": "Piercing Vulnerability Other VI",
+ "description": "Increases damage the target takes from Piercing by 150%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1157": {
+ "name": "Heal Self II",
+ "description": "Restores 15-35 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1158": {
+ "name": "Heal Self III",
+ "description": "Restores 20-45 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1159": {
+ "name": "Heal Self IV",
+ "description": "Restores 30-60 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1160": {
+ "name": "Heal Self V",
+ "description": "Restores 45-90 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1161": {
+ "name": "Heal Self VI",
+ "description": "Restores 55-120 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "1162": {
+ "name": "Heal Other II",
+ "description": "Restores 15-35 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1163": {
+ "name": "Heal Other III",
+ "description": "Restores 20-45 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1164": {
+ "name": "Heal Other IV",
+ "description": "Restores 30-60 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1165": {
+ "name": "Heal Other V",
+ "description": "Restores 45-90 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1166": {
+ "name": "Heal Other VI",
+ "description": "Restores 55-120 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1167": {
+ "name": "Harm Self II",
+ "description": "Drains 7-12 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1168": {
+ "name": "Harm Self III",
+ "description": "Drains 10-18 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1169": {
+ "name": "Harm Self IV",
+ "description": "Drains 16-30 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1170": {
+ "name": "Harm Self V",
+ "description": "Drains 23-45 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1171": {
+ "name": "Harm Self VI",
+ "description": "Drains 31-60 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "1172": {
+ "name": "Harm Other II",
+ "description": "Drains 7-12 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1173": {
+ "name": "Harm Other III",
+ "description": "Drains 10-19 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1174": {
+ "name": "Harm Other IV",
+ "description": "Drains 16-33 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1175": {
+ "name": "Harm Other V",
+ "description": "Drains 24-47 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1176": {
+ "name": "Harm Other VI",
+ "description": "Drains 33-63 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1177": {
+ "name": "Revitalize Self I",
+ "description": "Restores 15-35 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "1178": {
+ "name": "Revitalize Self II",
+ "description": "Restores 20-45 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1179": {
+ "name": "Revitalize Self III",
+ "description": "Restores 30-60 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1180": {
+ "name": "Revitalize Self IV",
+ "description": "Restores 40-80 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1181": {
+ "name": "Revitalize Self V",
+ "description": "Restores 60-120 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1182": {
+ "name": "Revitalize Self VI",
+ "description": "Restores 80-160 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "1183": {
+ "name": "Revitalize Other I",
+ "description": "Restores 15-35 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1184": {
+ "name": "Revitalize Other II",
+ "description": "Restores 20-45 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1185": {
+ "name": "Revitalize Other III",
+ "description": "Restores 30-60 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1186": {
+ "name": "Revitalize Other IV",
+ "description": "Restores 40-80 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1187": {
+ "name": "Revitalize Other V",
+ "description": "Restores 60-120 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1188": {
+ "name": "Revitalize Other VI",
+ "description": "Restores 80-160 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1189": {
+ "name": "Enfeeble Self I",
+ "description": "Drains 7-12 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "15",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "1190": {
+ "name": "Enfeeble Self II",
+ "description": "Drains 7-12 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1191": {
+ "name": "Enfeeble Self III",
+ "description": "Drains 16-30 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1192": {
+ "name": "Enfeeble Self IV",
+ "description": "Drains 23-45 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1193": {
+ "name": "Enfeeble Self V",
+ "description": "Drains 31-60 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1194": {
+ "name": "Enfeeble Self VI",
+ "description": "Drains 38-75 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "1195": {
+ "name": "Enfeeble Other I",
+ "description": "Drains 7-12 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1196": {
+ "name": "Enfeeble Other II",
+ "description": "Drains 10-19 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1197": {
+ "name": "Enfeeble Other III",
+ "description": "Drains 16-31 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1198": {
+ "name": "Enfeeble Other IV",
+ "description": "Drains 24-47 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1199": {
+ "name": "Enfeeble Other V",
+ "description": "Drains 32-63 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1200": {
+ "name": "Enfeeble Other VI",
+ "description": "Drains 39-79 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1201": {
+ "name": "Mana Boost Self I",
+ "description": "Restores 6-10 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "1202": {
+ "name": "Mana Boost Self II",
+ "description": "Restores 11-20 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1203": {
+ "name": "Mana Boost Self III",
+ "description": "Restores 16-30 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1204": {
+ "name": "Mana Boost Self IV",
+ "description": "Restores 26-50 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1205": {
+ "name": "Mana Boost Self V",
+ "description": "Restores 38-75 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1206": {
+ "name": "Mana Boost Self VI",
+ "description": "Restores 51-100 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "1207": {
+ "name": "Mana Boost Other I",
+ "description": "Restores 6-10 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1208": {
+ "name": "Mana Boost Other II",
+ "description": "Restores 11-20 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1209": {
+ "name": "Mana Boost Other III",
+ "description": "Restores 16-30 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1210": {
+ "name": "Mana Boost Other IV",
+ "description": "Restores 26-50 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1211": {
+ "name": "Mana Boost Other V",
+ "description": "Restores 38-75 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1212": {
+ "name": "Mana Boost Other VI",
+ "description": "Restores 51-100 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1213": {
+ "name": "Mana Drain Self I",
+ "description": "Drains 4-6 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "15",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "1214": {
+ "name": "Mana Drain Self II",
+ "description": "Drains 7-12 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1215": {
+ "name": "Mana Drain Self III",
+ "description": "Drains 10-18 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1216": {
+ "name": "Mana Drain Self IV",
+ "description": "Drains 16-30 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1217": {
+ "name": "Mana Drain Self V",
+ "description": "Drains 23-45 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1218": {
+ "name": "Mana Drain Self VI",
+ "description": "Drains 31-60 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "1219": {
+ "name": "Mana Drain Other I",
+ "description": "Drains 4-6 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1220": {
+ "name": "Mana Drain Other II",
+ "description": "Drains 7-12 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1221": {
+ "name": "Mana Drain Other III",
+ "description": "Drains 10-19 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1222": {
+ "name": "Mana Drain Other IV",
+ "description": "Drains 16-31 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1223": {
+ "name": "Mana Drain Other V",
+ "description": "Drains 24-47 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1224": {
+ "name": "Mana Drain Other VI",
+ "description": "Drains 32-63 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1225": {
+ "name": "Infuse Health Other I",
+ "description": "Drains one-quarter of the caster's Health and gives 75% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1226": {
+ "name": "Infuse Health Other II",
+ "description": "Drains one-quarter of the caster's Health and gives 90% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1227": {
+ "name": "Infuse Health Other III",
+ "description": "Drains one-quarter of the caster's Health and gives 105% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1228": {
+ "name": "Infuse Health Other IV",
+ "description": "Drains one-quarter of the caster's Health and gives 120% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1229": {
+ "name": "Infuse Health Other V",
+ "description": "Drains one-quarter of the caster's Health and gives 135% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1230": {
+ "name": "Infuse Health Other VI",
+ "description": "Drains one-quarter of the caster's Health and gives 150% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1237": {
+ "name": "Drain Health Other I",
+ "description": "Drains 25% of the target's Health and gives 200% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "38",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1238": {
+ "name": "Drain Health Other II",
+ "description": "Drains 25% of the target's Health and gives 160% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "88",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1239": {
+ "name": "Drain Health Other III",
+ "description": "Drains 25% of the target's Health and gives 133% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "138",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1240": {
+ "name": "Drain Health Other IV",
+ "description": "Drains one-quarter of the target's Health and gives 100% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "188",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1241": {
+ "name": "Drain Health Other V",
+ "description": "Drains 30% of the target's Health and gives 100% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "238",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1242": {
+ "name": "Drain Health Other VI",
+ "description": "Drains 40% of the target's Health and gives 75% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "288",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1243": {
+ "name": "Infuse Stamina Other I",
+ "description": "Drains one-quarter of the caster's Stamina and gives 75% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1244": {
+ "name": "Infuse Stamina Other II",
+ "description": "Drains one-quarter of the caster's Stamina and gives 90% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1245": {
+ "name": "Infuse Stamina Other III",
+ "description": "Drains one-quarter of the caster's Stamina and gives 105% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1246": {
+ "name": "Infuse Stamina Other IV",
+ "description": "Drains one-quarter of the caster's Stamina and gives 120% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1247": {
+ "name": "Infuse Stamina Other V",
+ "description": "Drains one-quarter of the caster's Stamina and gives 135% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1248": {
+ "name": "Infuse Stamina Other VI",
+ "description": "Drains one-quarter of the caster's Stamina and gives 150% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1249": {
+ "name": "Drain Stamina Other I",
+ "description": "Drains 10% of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "38",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1250": {
+ "name": "Drain Stamina Other II",
+ "description": "Drains 15% of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "88",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1251": {
+ "name": "Drain Stamina Other III",
+ "description": "Drains 20% of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "138",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1252": {
+ "name": "Drain Stamina Other IV",
+ "description": "Drains one-quarter of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "188",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1253": {
+ "name": "Drain Stamina Other V",
+ "description": "Drains 30% of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "238",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1254": {
+ "name": "Drain Stamina Other VI",
+ "description": "Drains 40% of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "288",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1255": {
+ "name": "Infuse Mana Other II",
+ "description": "Drains one-quarter of the caster's Mana and gives 90% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1256": {
+ "name": "Infuse Mana Other III",
+ "description": "Drains one-quarter of the caster's Mana and gives 105% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1257": {
+ "name": "Infuse Mana Other IV",
+ "description": "Drains one-quarter of the caster's Mana and gives 120% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1258": {
+ "name": "Infuse Mana Other V",
+ "description": "Drains one-quarter of the caster's Mana and gives 135% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1259": {
+ "name": "Infuse Mana Other VI",
+ "description": "Drains one-quarter of the caster's Mana and gives 150% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1260": {
+ "name": "Drain Mana Other I",
+ "description": "Drains 10% of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "38",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1261": {
+ "name": "Drain Mana Other II",
+ "description": "Drains 15% of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "88",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1262": {
+ "name": "Drain Mana Other III",
+ "description": "Drains 20% of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "138",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1263": {
+ "name": "Drain Mana Other IV",
+ "description": "Drains one-quarter of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "188",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1264": {
+ "name": "Drain Mana Other V",
+ "description": "Drains 30% of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "238",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1265": {
+ "name": "Drain Mana Other VI",
+ "description": "Drains 40% of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "288",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1266": {
+ "name": "Health to Stamina Other I",
+ "description": "Drains one-half of the target's Health and gives 75% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1267": {
+ "name": "Health to Stamina Other II",
+ "description": "Drains one-half of the target's Health and gives 90% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1268": {
+ "name": "Health to Stamina Other III",
+ "description": "Drains one-half of the target's Health and gives 105% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1269": {
+ "name": "Health to Stamina Other IV",
+ "description": "Drains one-half of the target's Health and gives 120% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1270": {
+ "name": "Health to Stamina Other V",
+ "description": "Drains one-half of the target's Health and gives 135% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1271": {
+ "name": "Health to Stamina Other VI",
+ "description": "Drains one-half of the target's Health and gives 150% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1272": {
+ "name": "Health to Stamina Self I",
+ "description": "Drains one-half of the caster's Health and gives 90% of that to his/her Stamina (maximum of 50).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1273": {
+ "name": "Health to Stamina Self II",
+ "description": "Drains one-half of the caster's Health and gives 100% of that to his/her Stamina (maximum of 100).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1274": {
+ "name": "Health to Stamina Self III",
+ "description": "Drains one-half of the caster's Health and gives 110% of that to his/her Stamina (maximum of 150).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1275": {
+ "name": "Health to Stamina Self IV",
+ "description": "Drains one-half of the caster's Health and gives 120% of that to his/her Stamina (maximum of 200).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1276": {
+ "name": "Health to Stamina Self V",
+ "description": "Drains one-half of the caster's Health and gives 135% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1277": {
+ "name": "Health to Stamina Self VI",
+ "description": "Drains one-half of the caster's Health and gives 150% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1278": {
+ "name": "Health to Mana Self I",
+ "description": "Drains one-half of the caster's Health and gives 90% of that to his/her Mana (maximum of 50).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1279": {
+ "name": "Health to Mana Self II",
+ "description": "Drains one-half of the caster's Health and gives 100% of that to his/her Mana (maximum of 100).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1280": {
+ "name": "Health to Mana Self III",
+ "description": "Drains one-half of the caster's Health and gives 110% of that to his/her Mana (maximum of 150).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1281": {
+ "name": "Health to Mana Other IV",
+ "description": "Drains one-half of the target's Health and gives 120% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1282": {
+ "name": "Health to Mana Other V",
+ "description": "Drains one-half of the target's Health and gives 135% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1283": {
+ "name": "Health to Mana Other VI",
+ "description": "Drains one-half of the target's Health and gives 150% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1284": {
+ "name": "Mana to Health Other I",
+ "description": "Drains one-half of the target's Mana and gives 75% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1285": {
+ "name": "Mana to Health Other II",
+ "description": "Drains one-half of the target's Mana and gives 90% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1286": {
+ "name": "Mana to Health Other III",
+ "description": "Drains one-half of the target's Mana and gives 105% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1287": {
+ "name": "Mana to Health Other IV",
+ "description": "Drains one-half of the target's Mana and gives 120% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1288": {
+ "name": "Mana to Health Other V",
+ "description": "Drains one-half of the target's Mana and gives 135% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1289": {
+ "name": "Mana to Health Other VI",
+ "description": "Drains one-half of the target's Mana and gives 150% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1290": {
+ "name": "Mana to Health Self I",
+ "description": "Drains one-half of the caster's Mana and gives 90% of that to his/her Health (maximum of 50).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1291": {
+ "name": "Mana to Health Self II",
+ "description": "Drains one-half of the caster's Mana and gives 100% of that to his/her Health (maximum of 100).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1292": {
+ "name": "Mana to Health Self III",
+ "description": "Drains one-half of the caster's Mana and gives 110% of that to his/her Health (maximum of 150).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1293": {
+ "name": "Mana to Health Self IV",
+ "description": "Drains one-half of the caster's Mana and gives 120% of that to his/her Health (maximum of 200).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1294": {
+ "name": "Mana to Health Self V",
+ "description": "Drains one-half of the caster's Mana and gives 135% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1295": {
+ "name": "Mana to Health Self VI",
+ "description": "Drains one-half of the caster's Mana and gives 150% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1296": {
+ "name": "Mana to Stamina Self I",
+ "description": "Drains one-half of the caster's Mana and gives 90% of that to his/her Stamina (maximum of 50).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1297": {
+ "name": "Mana to Stamina Self II",
+ "description": "Drains one-half of the caster's Mana and gives 100% of that to his/her Stamina (maximum of 100).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1298": {
+ "name": "Mana to Stamina Self III",
+ "description": "Drains one-half of the caster's Mana and gives 110% of that to his/her Stamina (maximum of 150).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1299": {
+ "name": "Mana to Stamina Self IV",
+ "description": "Drains one-half of the caster's Mana and gives 120% of that to his/her Stamina (maximum of 200).",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1300": {
+ "name": "Mana to Stamina Self V",
+ "description": "Drains one-half of the caster's Mana and gives 135% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1301": {
+ "name": "Mana to Stamina Self VI",
+ "description": "Drains one-half of the caster's Mana and gives 150% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1302": {
+ "name": "Mana to Stamina Other I",
+ "description": "Drains one-half of the target's Mana and gives 75% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1303": {
+ "name": "Mana to Stamina Other II",
+ "description": "Drains one-half of the target's Mana and gives 90% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1304": {
+ "name": "Mana to Stamina Other III",
+ "description": "Drains one-half of the target's Mana and gives 105% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1305": {
+ "name": "Mana to Stamina Other IV",
+ "description": "Drains one-half of the target's Mana and gives 120% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1306": {
+ "name": "Mana to Stamina Other V",
+ "description": "Drains one-half of the target's Mana and gives 135% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1307": {
+ "name": "Mana to Stamina Other VI",
+ "description": "Drains one-half of the target's Mana and gives 150% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1308": {
+ "name": "Armor Self II",
+ "description": "Increases the caster's natural armor by 50 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1309": {
+ "name": "Armor Self III",
+ "description": "Increases the caster's natural armor by 75 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1310": {
+ "name": "Armor Self IV",
+ "description": "Increases the caster's natural armor by 100 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1311": {
+ "name": "Armor Self V",
+ "description": "Increases the caster's natural armor by 150 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1312": {
+ "name": "Armor Self VI",
+ "description": "Increases the caster's natural armor by 200 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1313": {
+ "name": "Armor Other II",
+ "description": "Increases the target's natural armor by 50 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1314": {
+ "name": "Armor Other III",
+ "description": "Increases the target's natural armor by 75 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1315": {
+ "name": "Armor Other IV",
+ "description": "Increases the target's natural armor by 100 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1316": {
+ "name": "Armor Other V",
+ "description": "Increases the target's natural armor by 150 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1317": {
+ "name": "Armor Other VI",
+ "description": "Increases the target's natural armor by 200 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1318": {
+ "name": "Imperil Self II",
+ "description": "Decreases the caster's natural armor by 50 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1319": {
+ "name": "Imperil Self III",
+ "description": "Decreases the caster's natural armor by 75 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1320": {
+ "name": "Imperil Self IV",
+ "description": "Decreases the caster's natural armor by 100 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1321": {
+ "name": "Imperil Self V",
+ "description": "Decreases the caster's natural armor by 150 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1322": {
+ "name": "Imperil Self VI",
+ "description": "Decreases the caster's natural armor by 200 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1323": {
+ "name": "Imperil Other II",
+ "description": "Decreases the target's natural armor by 50 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1324": {
+ "name": "Imperil Other III",
+ "description": "Decreases the target's natural armor by 75 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1325": {
+ "name": "Imperil Other IV",
+ "description": "Decreases the target's natural armor by 100 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1326": {
+ "name": "Imperil Other V",
+ "description": "Decreases the target's natural armor by 150 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1327": {
+ "name": "Imperil Other VI",
+ "description": "Decreases the target's natural armor by 200 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1328": {
+ "name": "Strength Self II",
+ "description": "Increases the caster's Strength by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1329": {
+ "name": "Strength Self III",
+ "description": "Increases the caster's Strength by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1330": {
+ "name": "Strength Self IV",
+ "description": "Increases the caster's Strength by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1331": {
+ "name": "Strength Self V",
+ "description": "Increases the caster's Strength by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1332": {
+ "name": "Strength Self VI",
+ "description": "Increases the caster's Strength by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1333": {
+ "name": "Strength Other II",
+ "description": "Increases the target's Strength by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1334": {
+ "name": "Strength Other III",
+ "description": "Increases the target's Strength by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1335": {
+ "name": "Strength Other IV",
+ "description": "Increases the target's Strength by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1336": {
+ "name": "Strength Other V",
+ "description": "Increases the target's Strength by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1337": {
+ "name": "Strength Other VI",
+ "description": "Increases the target's Strength by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1339": {
+ "name": "Weakness Other II",
+ "description": "Decreases the target's Strength by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1340": {
+ "name": "Weakness Other III",
+ "description": "Decreases the target's Strength by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1341": {
+ "name": "Weakness Other IV",
+ "description": "Decreases the target's Strength by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1342": {
+ "name": "Weakness Other V",
+ "description": "Decreases the target's Strength by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1343": {
+ "name": "Weakness Other VI",
+ "description": "Decreases the target's Strength by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1344": {
+ "name": "Weakness Self II",
+ "description": "Decrease the caster's Strength by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1345": {
+ "name": "Weakness Self III",
+ "description": "Decrease the caster's Strength by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1346": {
+ "name": "Weakness Self IV",
+ "description": "Decrease the caster's Strength by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1347": {
+ "name": "Weakness Self V",
+ "description": "Decrease the caster's Strength by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1348": {
+ "name": "Weakness Self VI",
+ "description": "Decrease the caster's Strength by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1349": {
+ "name": "Endurance Self I",
+ "description": "Increases the caster's Endurance by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1350": {
+ "name": "Endurance Self II",
+ "description": "Increases the caster's Endurance by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1351": {
+ "name": "Endurance Self III",
+ "description": "Increases the caster's Endurance by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1352": {
+ "name": "Endurance Self IV",
+ "description": "Increases the caster's Endurance by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1353": {
+ "name": "Endurance Self V",
+ "description": "Increases the caster's Endurance by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1354": {
+ "name": "Endurance Self VI",
+ "description": "Increases the caster's Endurance by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1355": {
+ "name": "Endurance Other I",
+ "description": "Increases the target's Endurance by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1356": {
+ "name": "Endurance Other II",
+ "description": "Increases the target's Endurance by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1357": {
+ "name": "Endurance Other III",
+ "description": "Increases the target's Endurance by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1358": {
+ "name": "Endurance Other IV",
+ "description": "Increases the target's Endurance by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1359": {
+ "name": "Endurance Other V",
+ "description": "Increases the target's Endurance by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1360": {
+ "name": "Endurance Other VI",
+ "description": "Increases the target's Endurance by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1361": {
+ "name": "Frailty Self I",
+ "description": "Decreases the caster's Endurance by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "15",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1362": {
+ "name": "Frailty Self II",
+ "description": "Decreases the caster's Endurance by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1363": {
+ "name": "Frailty Self III",
+ "description": "Decreases the caster's Endurance by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1364": {
+ "name": "Frailty Self IV",
+ "description": "Decreases the caster's Endurance by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1365": {
+ "name": "Frailty Self V",
+ "description": "Decreases the caster's Endurance by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1366": {
+ "name": "Frailty Self VI",
+ "description": "Decreases the caster's Endurance by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1367": {
+ "name": "Frailty Other I",
+ "description": "Decreases the target's Endurance by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1368": {
+ "name": "Frailty Other II",
+ "description": "Decreases the target's Endurance by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1369": {
+ "name": "Frailty Other III",
+ "description": "Decreases the target's Endurance by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1370": {
+ "name": "Frailty Other IV",
+ "description": "Decreases the target's Endurance by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1371": {
+ "name": "Frailty Other V",
+ "description": "Decreases the target's Endurance by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1372": {
+ "name": "Frailty Other VI",
+ "description": "Decreases the target's Endurance by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1373": {
+ "name": "Coordination Self I",
+ "description": "Increases the caster's Coordination by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1374": {
+ "name": "Coordination Self II",
+ "description": "Increases the caster's Coordination by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1375": {
+ "name": "Coordination Self III",
+ "description": "Increases the caster's Coordination by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1376": {
+ "name": "Coordination Self IV",
+ "description": "Increases the caster's Coordination by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1377": {
+ "name": "Coordination Self V",
+ "description": "Increases the caster's Coordination by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1378": {
+ "name": "Coordination Self VI",
+ "description": "Increases the caster's Coordination by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1379": {
+ "name": "Coordination Other I",
+ "description": "Increases the target's Coordination by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1380": {
+ "name": "Coordination Other II",
+ "description": "Increases the target's Coordination by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1381": {
+ "name": "Coordination Other III",
+ "description": "Increases the target's Coordination by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1382": {
+ "name": "Coordination Other IV",
+ "description": "Increases the target's Coordination by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1383": {
+ "name": "Coordination Other V",
+ "description": "Increases the target's Coordination by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1384": {
+ "name": "Coordination Other VI",
+ "description": "Increases the target's Coordination by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1385": {
+ "name": "Clumsiness Self I",
+ "description": "Decreases the caster's Coordination by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "15",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1386": {
+ "name": "Clumsiness Self II",
+ "description": "Decreases the caster's Coordination by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1387": {
+ "name": "Clumsiness Self III",
+ "description": "Decreases the caster's Coordination by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1388": {
+ "name": "Clumsiness Self IV",
+ "description": "Decreases the caster's Coordination by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1389": {
+ "name": "Clumsiness Self V",
+ "description": "Decreases the caster's Coordination by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1390": {
+ "name": "Clumsiness Self VI",
+ "description": "Decreases the caster's Coordination by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1391": {
+ "name": "Clumsiness Other I",
+ "description": "Decreases the target's Coordination by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1392": {
+ "name": "Clumsiness Other II",
+ "description": "Decreases the target's Coordination by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1393": {
+ "name": "Clumsiness Other III",
+ "description": "Decreases the target's Coordination by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1394": {
+ "name": "Clumsiness Other IV",
+ "description": "Decreases the target's Coordination by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1395": {
+ "name": "Clumsiness Other V",
+ "description": "Decreases the target's Coordination by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1396": {
+ "name": "Clumsiness Other VI",
+ "description": "Decreases the target's Coordination by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1397": {
+ "name": "Quickness Self I",
+ "description": "Increases the caster's Quickness by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1398": {
+ "name": "Quickness Self II",
+ "description": "Increases the caster's Quickness by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1399": {
+ "name": "Quickness Self III",
+ "description": "Increases the caster's Quickness by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1400": {
+ "name": "Quickness Self IV",
+ "description": "Increases the caster's Quickness by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1401": {
+ "name": "Quickness Self V",
+ "description": "Increases the caster's Quickness by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1402": {
+ "name": "Quickness Self VI",
+ "description": "Increases the caster's Quickness by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1403": {
+ "name": "Quickness Other I",
+ "description": "Increases the target's Quickness by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1404": {
+ "name": "Quickness Other II",
+ "description": "Increases the target's Quickness by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1405": {
+ "name": "Quickness Other III",
+ "description": "Increases the target's Quickness by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1406": {
+ "name": "Quickness Other IV",
+ "description": "Increases the target's Quickness by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1407": {
+ "name": "Quickness Other V",
+ "description": "Increases the target's Quickness by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1408": {
+ "name": "Quickness Other VI",
+ "description": "Increases the target's Quickness by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1409": {
+ "name": "Slowness Self I",
+ "description": "Decreases the caster's Quickness by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "15",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1410": {
+ "name": "Slowness Self II",
+ "description": "Decreases the caster's Quickness by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1411": {
+ "name": "Slowness Self III",
+ "description": "Decreases the caster's Quickness by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1412": {
+ "name": "Slowness Self IV",
+ "description": "Decreases the caster's Quickness by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1413": {
+ "name": "Slowness Self V",
+ "description": "Decreases the caster's Quickness by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1414": {
+ "name": "Slowness Self VI",
+ "description": "Decreases the caster's Quickness by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1415": {
+ "name": "Slowness Other I",
+ "description": "Decreases the target's Quickness by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1416": {
+ "name": "Slowness Other II",
+ "description": "Decreases the target's Quickness by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1417": {
+ "name": "Slowness Other III",
+ "description": "Decreases the target's Quickness by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1418": {
+ "name": "Slowness Other IV",
+ "description": "Decreases the target's Quickness by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1419": {
+ "name": "Slowness Other V",
+ "description": "Decreases the target's Quickness by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1420": {
+ "name": "Slowness Other VI",
+ "description": "Decreases the target's Quickness by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1421": {
+ "name": "Focus Self I",
+ "description": "Increases the caster's Focus by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1422": {
+ "name": "Focus Self II",
+ "description": "Increases the caster's Focus by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1423": {
+ "name": "Focus Self III",
+ "description": "Increases the caster's Focus by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1424": {
+ "name": "Focus Self IV",
+ "description": "Increases the caster's Focus by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1425": {
+ "name": "Focus Self V",
+ "description": "Increases the caster's Focus by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1426": {
+ "name": "Focus Self VI",
+ "description": "Increases the caster's Focus by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1427": {
+ "name": "Focus Other I",
+ "description": "Increases the target's Focus by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1428": {
+ "name": "Focus Other II",
+ "description": "Increases the target's Focus by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1429": {
+ "name": "Focus Other III",
+ "description": "Increases the target's Focus by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1430": {
+ "name": "Focus Other IV",
+ "description": "Increases the target's Focus by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1431": {
+ "name": "Focus Other V",
+ "description": "Increases the target's Focus by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1432": {
+ "name": "Focus Other VI",
+ "description": "Increases the target's Focus by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1433": {
+ "name": "Bafflement Self I",
+ "description": "Decreases the caster's Focus by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "15",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1434": {
+ "name": "Bafflement Self II",
+ "description": "Decreases the caster's Focus by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1435": {
+ "name": "Bafflement Self III",
+ "description": "Decreases the caster's Focus by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1436": {
+ "name": "Bafflement Self IV",
+ "description": "Decreases the caster's Focus by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1437": {
+ "name": "Bafflement Self V",
+ "description": "Decreases the caster's Focus by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1438": {
+ "name": "Bafflement Self VI",
+ "description": "Decreases the caster's Focus by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1439": {
+ "name": "Bafflement Other I",
+ "description": "Decreases the target's Focus by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1440": {
+ "name": "Bafflement Other II",
+ "description": "Decreases the target's Focus by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1441": {
+ "name": "Bafflement Other III",
+ "description": "Decreases the target's Focus by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1442": {
+ "name": "Bafflement Other IV",
+ "description": "Decreases the target's Focus by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1443": {
+ "name": "Bafflement Other V",
+ "description": "Decreases the target's Focus by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1444": {
+ "name": "Bafflement Other VI",
+ "description": "Decreases the target's Focus by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1445": {
+ "name": "Willpower Self I",
+ "description": "Increases the caster's Self by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1446": {
+ "name": "Willpower Self II",
+ "description": "Increases the caster's Self by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1447": {
+ "name": "Willpower Self III",
+ "description": "Increases the caster's Self by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1448": {
+ "name": "Willpower Self IV",
+ "description": "Increases the caster's Self by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1449": {
+ "name": "Willpower Self V",
+ "description": "Increases the caster's Self by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1450": {
+ "name": "Willpower Self VI",
+ "description": "Increases the caster's Self by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1451": {
+ "name": "Willpower Other I",
+ "description": "Increases the target's Self by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1452": {
+ "name": "Willpower Other II",
+ "description": "Increases the target's Self by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1453": {
+ "name": "Willpower Other III",
+ "description": "Increases the target's Self by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1454": {
+ "name": "Willpower Other IV",
+ "description": "Increases the target's Self by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1455": {
+ "name": "Willpower Other V",
+ "description": "Increases the target's Self by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1456": {
+ "name": "Willpower Other VI",
+ "description": "Increases the target's Self by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1457": {
+ "name": "Feeblemind Self I",
+ "description": "Decreases the caster's Self by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "15",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1458": {
+ "name": "Feeblemind Self II",
+ "description": "Decreases the caster's Self by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1459": {
+ "name": "Feeblemind Self III",
+ "description": "Decreases the caster's Self by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1460": {
+ "name": "Feeblemind Self IV",
+ "description": "Decreases the caster's Self by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1461": {
+ "name": "Feeblemind Self V",
+ "description": "Decreases the caster's Self by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1462": {
+ "name": "Feeblemind Self VI",
+ "description": "Decreases the caster's Self by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1463": {
+ "name": "Feeblemind Other I",
+ "description": "Decreases the target's Self by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1464": {
+ "name": "Feeblemind Other II",
+ "description": "Decreases the target's Self by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1465": {
+ "name": "Feeblemind Other III",
+ "description": "Decreases the target's Self by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1466": {
+ "name": "Feeblemind Other IV",
+ "description": "Decreases the target's Self by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1467": {
+ "name": "Feeblemind Other V",
+ "description": "Decreases the target's Self by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1468": {
+ "name": "Feeblemind Other VI",
+ "description": "Decreases the target's Self by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1469": {
+ "name": "Hermetic Void I",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 10%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1470": {
+ "name": "Hermetic Void II",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 20%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1471": {
+ "name": "Hermetic Void III",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 30%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1472": {
+ "name": "Hermetic Void IV",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 40%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1473": {
+ "name": "Hermetic Void V",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 50%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1474": {
+ "name": "Hermetic Void VI",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 60%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1475": {
+ "name": "Aura of Hermetic Link Self I",
+ "description": "Increases a magic casting implement's mana conversion bonus by 10%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "25",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1476": {
+ "name": "Aura of Hermetic Link Self II",
+ "description": "Increases a magic casting implement's mana conversion bonus by 20%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1477": {
+ "name": "Aura of Hermetic Link Self III",
+ "description": "Increases a magic casting implement's mana conversion bonus by 30%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1478": {
+ "name": "Aura of Hermetic Link Self IV",
+ "description": "Increases a magic casting implement's mana conversion bonus by 40%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1479": {
+ "name": "Aura of Hermetic Link Self V",
+ "description": "Increases a magic casting implement's mana conversion bonus by 50%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1480": {
+ "name": "Aura of Hermetic Link Self VI",
+ "description": "Increases a magic casting implement's mana conversion bonus by 60%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1481": {
+ "name": "Flaming Missile Volley",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1482": {
+ "name": "Impenetrability II",
+ "description": "Improves a shield or piece of armor's armor value by 50 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1483": {
+ "name": "Impenetrability III",
+ "description": "Improves a shield or piece of armor's armor value by 75 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1484": {
+ "name": "Impenetrability IV",
+ "description": "Improves a shield or piece of armor's armor value by 100 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1485": {
+ "name": "Impenetrability V",
+ "description": "Improves a shield or piece of armor's armor value by 150 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1486": {
+ "name": "Impenetrability VI",
+ "description": "Improves a shield or piece of armor's armor value by 200 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1487": {
+ "name": "Brittlemail I",
+ "description": "Worsens a shield or piece of armor's armor value by 20 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1488": {
+ "name": "Brittlemail II",
+ "description": "Worsens a shield or piece of armor's armor value by 50 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1489": {
+ "name": "Brittlemail III",
+ "description": "Worsens a shield or piece of armor's armor value by 75 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1490": {
+ "name": "Brittlemail IV",
+ "description": "Worsens a shield or piece of armor's armor value by 100 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1491": {
+ "name": "Brittlemail V",
+ "description": "Worsens a shield or piece of armor's armor value by 150 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1492": {
+ "name": "Brittlemail VI",
+ "description": "Worsens a shield or piece of armor's armor value by 200 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1493": {
+ "name": "Acid Bane I",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 10%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1494": {
+ "name": "Acid Bane II",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 25%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1495": {
+ "name": "Acid Bane III",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 50%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1496": {
+ "name": "Acid Bane IV",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 75%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1497": {
+ "name": "Acid Bane V",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 100%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1498": {
+ "name": "Acid Bane VI",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 150%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1499": {
+ "name": "Acid Lure I",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 10%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1500": {
+ "name": "Acid Lure II",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 25%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1501": {
+ "name": "Acid Lure III",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 50%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1502": {
+ "name": "Acid Lure IV",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 75%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1503": {
+ "name": "Acid Lure V",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 100%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1504": {
+ "name": "Acid Lure VI",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 150%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1505": {
+ "name": "Bludgeon Lure I",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 10%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1506": {
+ "name": "Bludgeon Lure II",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 25%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1507": {
+ "name": "Bludgeon Lure III",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 50%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1508": {
+ "name": "Bludgeon Lure IV",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 75%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1509": {
+ "name": "Bludgeon Lure V",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 100%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1510": {
+ "name": "Bludgeon Lure VI",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 150%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1511": {
+ "name": "Bludgeon Bane I",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 10%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1512": {
+ "name": "Bludgeon Bane II",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 25%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1513": {
+ "name": "Bludgeon Bane III",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 50%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1514": {
+ "name": "Bludgeon Bane IV",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 75%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1515": {
+ "name": "Bludgeon Bane V",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 100%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1516": {
+ "name": "Bludgeon Bane VI",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 150%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1517": {
+ "name": "Frost Lure I",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 10%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1518": {
+ "name": "Frost Lure II",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 25%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1519": {
+ "name": "Frost Lure III",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 50%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1520": {
+ "name": "Frost Lure IV",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 75%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1521": {
+ "name": "Frost Lure V",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 100%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1522": {
+ "name": "Frost Lure VI",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 150%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1523": {
+ "name": "Frost Bane I",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 10%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1524": {
+ "name": "Frost Bane II",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 25%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1525": {
+ "name": "Frost Bane III",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 50%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1526": {
+ "name": "Frost Bane IV",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 75%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1527": {
+ "name": "Frost Bane V",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 100%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1528": {
+ "name": "Frost Bane VI",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 150%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1529": {
+ "name": "Lightning Lure I",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 10%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1530": {
+ "name": "Lightning Lure II",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 25%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1531": {
+ "name": "Lightning Lure III",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 50%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1532": {
+ "name": "Lightning Lure IV",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 75%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1533": {
+ "name": "Lightning Lure V",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 100%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1534": {
+ "name": "Lightning Lure VI",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 150%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1535": {
+ "name": "Lightning Bane I",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 10%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1536": {
+ "name": "Lightning Bane II",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 25%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1537": {
+ "name": "Lightning Bane III",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 50%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1538": {
+ "name": "Lightning Bane IV",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 75%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1539": {
+ "name": "Lightning Bane V",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 100%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1540": {
+ "name": "Lightning Bane VI",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 150%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1541": {
+ "name": "Flame Lure I",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 10%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1542": {
+ "name": "Flame Lure II",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 25%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1543": {
+ "name": "Flame Lure III",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 50%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1544": {
+ "name": "Flame Lure IV",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 75%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1545": {
+ "name": "Flame Lure V",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 100%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1546": {
+ "name": "Flame Lure VI",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 150%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1547": {
+ "name": "Flame Bane I",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 10%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1548": {
+ "name": "Flame Bane II",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 25%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1549": {
+ "name": "Flame Bane III",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 50%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1550": {
+ "name": "Flame Bane IV",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 75%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1551": {
+ "name": "Flame Bane V",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 100%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1552": {
+ "name": "Flame Bane VI",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 150%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1553": {
+ "name": "Blade Lure II",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 25%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1554": {
+ "name": "Blade Lure III",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 50%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1555": {
+ "name": "Blade Lure IV",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 75%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1556": {
+ "name": "Blade Lure V",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 100%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1557": {
+ "name": "Blade Lure VI",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 150%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1558": {
+ "name": "Blade Bane II",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 25%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1559": {
+ "name": "Blade Bane III",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 50%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1560": {
+ "name": "Blade Bane IV",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 75%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1561": {
+ "name": "Blade Bane V",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 100%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1562": {
+ "name": "Blade Bane VI",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 150%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1563": {
+ "name": "Piercing Lure I",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 10%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1564": {
+ "name": "Piercing Lure II",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 25%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1565": {
+ "name": "Piercing Lure III",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 50%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1566": {
+ "name": "Piercing Lure IV",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 75%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1567": {
+ "name": "Piercing Lure V",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 100%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1568": {
+ "name": "Piercing Lure VI",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 150%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1569": {
+ "name": "Piercing Bane I",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 10%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1570": {
+ "name": "Piercing Bane II",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 25%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1571": {
+ "name": "Piercing Bane III",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 50%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1572": {
+ "name": "Piercing Bane IV",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 75%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1573": {
+ "name": "Piercing Bane V",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 100%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1574": {
+ "name": "Piercing Bane VI",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 150%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1575": {
+ "name": "Strengthen Lock I",
+ "description": "Increases a lock's resistance to picking by 10 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "1576": {
+ "name": "Strengthen Lock II",
+ "description": "Increases a lock's resistance to picking by 25 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "50",
+ "duration": "780",
+ "mana": "20"
+ },
+ "1577": {
+ "name": "Strengthen Lock III",
+ "description": "Increases a lock's resistance to picking by 50 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "100",
+ "duration": "780",
+ "mana": "30"
+ },
+ "1578": {
+ "name": "Strengthen Lock IV",
+ "description": "Increases a lock's resistance to picking by 75 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "150",
+ "duration": "780",
+ "mana": "40"
+ },
+ "1579": {
+ "name": "Strengthen Lock V",
+ "description": "Increases a lock's resistance to picking by 100 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "200",
+ "duration": "1020",
+ "mana": "50"
+ },
+ "1580": {
+ "name": "Strengthen Lock VI",
+ "description": "Increases a lock's resistance to picking by 150 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "250",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "1581": {
+ "name": "Weaken Lock I",
+ "description": "Decreases a lock's resistance to picking by 10 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1582": {
+ "name": "Weaken Lock II",
+ "description": "Decreases a lock's resistance to picking by 25 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "50",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1583": {
+ "name": "Weaken Lock III",
+ "description": "Decreases a lock's resistance to picking by 50 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "100",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1584": {
+ "name": "Weaken Lock IV",
+ "description": "Decreases a lock's resistance to picking by 75 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "150",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1585": {
+ "name": "Weaken Lock V",
+ "description": "Decreases a lock's resistance to picking by 100 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "200",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1586": {
+ "name": "Weaken Lock VI",
+ "description": "Decreases a lock's resistance to picking by 150 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "250",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1587": {
+ "name": "Aura of Heart Seeker Self I",
+ "description": "Increases a weapon's Attack Skill modifier by 2.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1588": {
+ "name": "Aura of Heart Seeker Self II",
+ "description": "Increases a weapon's Attack Skill modifier by 5.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1589": {
+ "name": "Aura of Heart Seeker Self III",
+ "description": "Increases a weapon's Attack Skill modifier by 7.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1590": {
+ "name": "Aura of Heart Seeker Self IV",
+ "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1591": {
+ "name": "Aura of Heart Seeker Self V",
+ "description": "Increases a weapon's Attack Skill modifier by 12.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1592": {
+ "name": "Aura of Heart Seeker Self VI",
+ "description": "Increases a weapon's Attack Skill modifier by 15.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1593": {
+ "name": "Turn Blade I",
+ "description": "Decreases a weapon's Attack Skill modifier by 2.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1594": {
+ "name": "Turn Blade II",
+ "description": "Decreases a weapon's Attack Skill modifier by 5.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1595": {
+ "name": "Turn Blade III",
+ "description": "Decreases a weapon's Attack Skill modifier by 7.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1596": {
+ "name": "Turn Blade IV",
+ "description": "Decreases a weapon's Attack Skill modifier by 10.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1597": {
+ "name": "Turn Blade V",
+ "description": "Decreases a weapon's Attack Skill modifier by 12.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1598": {
+ "name": "Turn Blade VI",
+ "description": "Decreases a weapon's Attack Skill modifier by 15.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1599": {
+ "name": "Aura of Defender Self I",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1601": {
+ "name": "Aura of Defender Self II",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1602": {
+ "name": "Aura of Defender Self III",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1603": {
+ "name": "Aura of Defender Self IV",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 10%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1604": {
+ "name": "Aura of Defender Self V",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 13%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1605": {
+ "name": "Aura of Defender Self VI",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 15%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1606": {
+ "name": "Lure Blade I",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 3%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1607": {
+ "name": "Lure Blade II",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 5%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1608": {
+ "name": "Lure Blade III",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1609": {
+ "name": "Lure Blade IV",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 10%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1610": {
+ "name": "Lure Blade V",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 13%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1611": {
+ "name": "Lure Blade VI",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 15%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1612": {
+ "name": "Aura of Blood Drinker Self II",
+ "description": "Increases a weapon's damage value by 4 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1613": {
+ "name": "Aura of Blood Drinker Self III",
+ "description": "Increases a weapon's damage value by 8 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1614": {
+ "name": "Aura of Blood Drinker Self IV",
+ "description": "Increases a weapon's damage value by 12 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1615": {
+ "name": "Aura of Blood Drinker Self V",
+ "description": "Increases a weapon's damage value by 16 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1616": {
+ "name": "Aura of Blood Drinker Self VI",
+ "description": "Increases a weapon's damage value by 20 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1617": {
+ "name": "Blood Loather II",
+ "description": "Decreases a weapon's damage value by 4 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1618": {
+ "name": "Blood Loather III",
+ "description": "Decreases a weapon's damage value by 8 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1619": {
+ "name": "Blood Loather IV",
+ "description": "Decreases a weapon's damage value by 12 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1620": {
+ "name": "Blood Loather V",
+ "description": "Decreases a weapon's damage value by 16 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1621": {
+ "name": "Blood Loather VI",
+ "description": "Decreases a weapon's damage value by 20 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1623": {
+ "name": "Aura of Swift Killer Self II",
+ "description": "Improves a weapon's speed by 20 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1624": {
+ "name": "Aura of Swift Killer Self III",
+ "description": "Improves a weapon's speed by 30 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1625": {
+ "name": "Aura of Swift Killer Self IV",
+ "description": "Improves a weapon's speed by 40 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1626": {
+ "name": "Aura of Swift Killer Self V",
+ "description": "Improves a weapon's speed by 50 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1627": {
+ "name": "Aura of Swift Killer Self VI",
+ "description": "Improves a weapon's speed by 60 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1629": {
+ "name": "Leaden Weapon II",
+ "description": "Worsens a weapon's speed by 20 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1630": {
+ "name": "Leaden Weapon III",
+ "description": "Worsens a weapon's speed by 30 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1631": {
+ "name": "Leaden Weapon IV",
+ "description": "Worsens a weapon's speed by 40 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1632": {
+ "name": "Leaden Weapon V",
+ "description": "Worsens a weapon's speed by 50 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1633": {
+ "name": "Leaden Weapon VI",
+ "description": "Worsens a weapon's speed by 60 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1634": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1635": {
+ "name": "Lifestone Recall",
+ "description": "Transports the caster to the Lifestone to which they have previously linked.",
+ "school": "Item Enchantment",
+ "family": "201",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1636": {
+ "name": "Lifestone Sending",
+ "description": "Transports the target to the last Lifestone he or she used.",
+ "school": "Item Enchantment",
+ "family": "215",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1637": {
+ "name": "Summon Primary Portal III",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "250",
+ "duration": "300",
+ "mana": "110"
+ },
+ "1638": {
+ "name": "Defenselessness Self I",
+ "description": "Decreases the caster's Missile Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1639": {
+ "name": "Defenselessness Self II",
+ "description": "Decreases the caster's Missile Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1640": {
+ "name": "Defenselessness Self III",
+ "description": "Decreases the caster's Missile Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1641": {
+ "name": "Defenselessness Self IV",
+ "description": "Decreases the caster's Missile Defense skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1642": {
+ "name": "Defenselessness Self V",
+ "description": "Decreases the caster's Missile Defense skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1643": {
+ "name": "Defenselessness Self VI",
+ "description": "Decreases the caster's Missile Defense skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1644": {
+ "name": "The Gift of Sarneho",
+ "description": "Makes you superfast to catch all the bad people.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "250",
+ "duration": "600",
+ "mana": "70"
+ },
+ "1658": {
+ "name": "Stamina to Health Other I",
+ "description": "Drains one-half of the target's Stamina and gives 75% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1659": {
+ "name": "Stamina to Health Other II",
+ "description": "Drains one-half of the target's Stamina and gives 90% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1660": {
+ "name": "Stamina to Health Other III",
+ "description": "Drains one-half of the target's Stamina and gives 105% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1661": {
+ "name": "Stamina to Health Other IV",
+ "description": "Drains one-half of the target's Stamina and gives 120% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1662": {
+ "name": "Stamina to Health Other V",
+ "description": "Drains one-half of the target's Stamina and gives 135% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1663": {
+ "name": "Stamina to Health Other VI",
+ "description": "Drains one-half of the target's Stamina and gives 150% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1664": {
+ "name": "Stamina to Health Self I",
+ "description": "Drains one-half of the caster's Stamina and gives 90% of that to his/her Health (maximum of 50).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1665": {
+ "name": "Stamina to Health Self II",
+ "description": "Drains one-half of the caster's Stamina and gives 100% of that to his/her Health (maximum of 100).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1666": {
+ "name": "Stamina to Health Self III",
+ "description": "Drains one-half of the caster's Stamina and gives 110% of that to his/her Health (maximum of 150).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1667": {
+ "name": "Stamina to Health Self IV",
+ "description": "Drains one-half of the caster's Stamina and gives 120% of that to his/her Health (maximum of 200).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1668": {
+ "name": "Stamina to Health Self V",
+ "description": "Drains one-half of the caster's Stamina and gives 135% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1669": {
+ "name": "Stamina to Health Self VI",
+ "description": "Drains one-half of the caster's Stamina and gives 150% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1670": {
+ "name": "Stamina to Mana Other I",
+ "description": "Drains one-half of the target's Stamina and gives 75% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1671": {
+ "name": "Stamina to Mana Other II",
+ "description": "Drains one-half of the target's Stamina and gives 90% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1672": {
+ "name": "Stamina to Mana Other III",
+ "description": "Drains one-half of the target's Stamina and gives 105% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1673": {
+ "name": "Stamina to Mana Other IV",
+ "description": "Drains one-half of the target's Stamina and gives 120% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1674": {
+ "name": "Stamina to Mana Other V",
+ "description": "Drains one-half of the target's Stamina and gives 135% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1675": {
+ "name": "Stamina to Mana Other VI",
+ "description": "Drains one-half of the target's Stamina and gives 150% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1676": {
+ "name": "Stamina to Mana Self I",
+ "description": "Drains one-half of the caster's Stamina and gives 90% of that to his/her Mana (maximum of 50).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1677": {
+ "name": "Stamina to Mana Self II",
+ "description": "Drains one-half of the caster's Stamina and gives 100% of that to his/her Mana (maximum of 100).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1678": {
+ "name": "Stamina to Mana Self III",
+ "description": "Drains one-half of the caster's Stamina and gives 110% of that to his/her Mana (maximum of 150).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1679": {
+ "name": "Stamina to Mana Self IV",
+ "description": "Drains one-half of the caster's Stamina and gives 120% of that to his/her Mana (maximum of 200).",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1680": {
+ "name": "Stamina to Mana Self V",
+ "description": "Drains one-half of the caster's Stamina and gives 135% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1681": {
+ "name": "Stamina to Mana Self VI",
+ "description": "Drains one-half of the caster's Stamina and gives 150% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1702": {
+ "name": "Health to Mana Self IV",
+ "description": "Drains one-half of the caster's Health and gives 120% of that to his/her Mana (maximum of 200).",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1703": {
+ "name": "Health to Mana Self V",
+ "description": "Drains one-half of the caster's Health and gives 135% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1704": {
+ "name": "Health to Mana Self VI",
+ "description": "Drains one-half of the caster's Health and gives 150% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1705": {
+ "name": "Health to Mana Other I",
+ "description": "Drains one-half of the target's Health and gives 75% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1706": {
+ "name": "Health to Mana Other II",
+ "description": "Drains one-half of the target's Health and gives 90% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1707": {
+ "name": "Health to Mana Other III",
+ "description": "Drains one-half of the target's Health and gives 105% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1708": {
+ "name": "Wedding Bliss",
+ "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "1709": {
+ "name": "Cooking Mastery Other I",
+ "description": "Increases the target's Cooking skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1710": {
+ "name": "Cooking Mastery Other II",
+ "description": "Increases the target's Cooking skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1711": {
+ "name": "Cooking Mastery Other III",
+ "description": "Increases the target's Cooking skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1712": {
+ "name": "Cooking Mastery Other IV",
+ "description": "Increases the target's Cooking skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1713": {
+ "name": "Cooking Mastery Other V",
+ "description": "Increases the target's Cooking skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1714": {
+ "name": "Cooking Mastery Other VI",
+ "description": "Increases the target's Cooking skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1715": {
+ "name": "Cooking Mastery Self I",
+ "description": "Increases the caster's Cooking skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1716": {
+ "name": "Cooking Mastery Self II",
+ "description": "Increases the caster's Cooking skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1717": {
+ "name": "Cooking Mastery Self III",
+ "description": "Increases the caster's Cooking skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1718": {
+ "name": "Cooking Mastery Self IV",
+ "description": "Increases the caster's Cooking skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1719": {
+ "name": "Cooking Mastery Self V",
+ "description": "Increases the caster's Cooking skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1720": {
+ "name": "Cooking Mastery Self VI",
+ "description": "Increases the caster's Cooking skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1721": {
+ "name": "Cooking Ineptitude Other I",
+ "description": "Decreases the target's Cooking skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1722": {
+ "name": "Cooking Ineptitude Other II",
+ "description": "Decreases the target's Cooking skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1723": {
+ "name": "Cooking Ineptitude Other III",
+ "description": "Decreases the target's Cooking skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1724": {
+ "name": "Cooking Ineptitude Other IV",
+ "description": "Decreases the target's Cooking skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1725": {
+ "name": "Cooking Ineptitude Other V",
+ "description": "Decreases the target's Cooking skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1726": {
+ "name": "Cooking Ineptitude Other VI",
+ "description": "Decreases the target's Cooking skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1727": {
+ "name": "Cooking Ineptitude Self I",
+ "description": "Decreases the caster's Cooking skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1728": {
+ "name": "Cooking Ineptitude Self II",
+ "description": "Decreases the caster's Cooking skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1729": {
+ "name": "Cooking Ineptitude Self III",
+ "description": "Decreases the caster's Cooking skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1730": {
+ "name": "Cooking Ineptitude Self IV",
+ "description": "Decreases the caster's Cooking skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1731": {
+ "name": "Cooking Ineptitude Self V",
+ "description": "Decreases the caster's Cooking skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1732": {
+ "name": "Cooking Ineptitude Self VI",
+ "description": "Decreases the caster's Cooking skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1733": {
+ "name": "Fletching Mastery Other I",
+ "description": "Increases the target's Fletching skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1734": {
+ "name": "Fletching Mastery Other II",
+ "description": "Increases the target's Fletching skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1735": {
+ "name": "Fletching Mastery Other III",
+ "description": "Increases the target's Fletching skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1736": {
+ "name": "Fletching Mastery Other IV",
+ "description": "Increases the target's Fletching skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1737": {
+ "name": "Fletching Mastery Other V",
+ "description": "Increases the target's Fletching skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1738": {
+ "name": "Fletching Mastery Other VI",
+ "description": "Increases the target's Fletching skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1739": {
+ "name": "Fletching Mastery Self I",
+ "description": "Increases the caster's Fletching skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1740": {
+ "name": "Fletching Mastery Self II",
+ "description": "Increases the caster's Fletching skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1741": {
+ "name": "Fletching Mastery Self III",
+ "description": "Increases the caster's Fletching skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1742": {
+ "name": "Fletching Mastery Self IV",
+ "description": "Increases the caster's Fletching skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1743": {
+ "name": "Fletching Mastery Self V",
+ "description": "Increases the caster's Fletching skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1744": {
+ "name": "Fletching Mastery Self VI",
+ "description": "Increases the caster's Fletching skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1745": {
+ "name": "Fletching Ineptitude Other I",
+ "description": "Decreases the target's Fletching skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1746": {
+ "name": "Fletching Ineptitude Other II",
+ "description": "Decreases the target's Fletching skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1747": {
+ "name": "Fletching Ineptitude Other III",
+ "description": "Decreases the target's Fletching skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1748": {
+ "name": "Fletching Ineptitude Other IV",
+ "description": "Decreases the target's Fletching skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1749": {
+ "name": "Fletching Ineptitude Other V",
+ "description": "Decreases the target's Fletching skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1750": {
+ "name": "Fletching Ineptitude Other VI",
+ "description": "Decreases the target's Fletching skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1751": {
+ "name": "Fletching Ineptitude Self I",
+ "description": "Decreases the caster's Fletching skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1752": {
+ "name": "Fletching Ineptitude Self II",
+ "description": "Decreases the caster's Fletching skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1753": {
+ "name": "Fletching Ineptitude Self III",
+ "description": "Decreases the caster's Fletching skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1754": {
+ "name": "Fletching Ineptitude Self IV",
+ "description": "Decreases the caster's Fletching skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1755": {
+ "name": "Fletching Ineptitude Self V",
+ "description": "Decreases the caster's Fletching skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1756": {
+ "name": "Fletching Ineptitude Self VI",
+ "description": "Decreases the caster's Fletching skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1757": {
+ "name": "Alchemy Mastery Other I",
+ "description": "Increases the target's Alchemy skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "1758": {
+ "name": "Alchemy Mastery Other II",
+ "description": "Increases the target's Alchemy skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "1759": {
+ "name": "Alchemy Mastery Other III",
+ "description": "Increases the target's Alchemy skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1760": {
+ "name": "Alchemy Mastery Other IV",
+ "description": "Increases the target's Alchemy skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1761": {
+ "name": "Alchemy Mastery Other V",
+ "description": "Increases the target's Alchemy skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1762": {
+ "name": "Alchemy Mastery Other VI",
+ "description": "Increases the target's Alchemy skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "1763": {
+ "name": "Alchemy Mastery Self I",
+ "description": "Increases the caster's Alchemy skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "1764": {
+ "name": "Alchemy Mastery Self II",
+ "description": "Increases the caster's Alchemy skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "1765": {
+ "name": "Alchemy Mastery Self III",
+ "description": "Increases the caster's Alchemy skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "1766": {
+ "name": "Alchemy Mastery Self IV",
+ "description": "Increases the caster's Alchemy skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "1767": {
+ "name": "Alchemy Mastery Self V",
+ "description": "Increases the caster's Alchemy skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "1768": {
+ "name": "Alchemy Mastery Self VI",
+ "description": "Increases the caster's Alchemy skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "1769": {
+ "name": "Alchemy Ineptitude Other I",
+ "description": "Decreases the target's Alchemy skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "1770": {
+ "name": "Alchemy Ineptitude Other II",
+ "description": "Decreases the target's Alchemy skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "1771": {
+ "name": "Alchemy Ineptitude Other III",
+ "description": "Decreases the target's Alchemy skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "1772": {
+ "name": "Alchemy Ineptitude Other IV",
+ "description": "Decreases the target's Alchemy skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "1773": {
+ "name": "Alchemy Ineptitude Other V",
+ "description": "Decreases the target's Alchemy skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "1774": {
+ "name": "Alchemy Ineptitude Other VI",
+ "description": "Decreases the target's Alchemy skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "1775": {
+ "name": "Alchemy Ineptitude Self I",
+ "description": "Decreases the caster's Alchemy skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "1776": {
+ "name": "Alchemy Ineptitude Self II",
+ "description": "Decreases the caster's Alchemy skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "1777": {
+ "name": "Alchemy Ineptitude Self III",
+ "description": "Decreases the caster's Alchemy skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "1778": {
+ "name": "Alchemy Ineptitude Self IV",
+ "description": "Decreases the caster's Alchemy skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "1779": {
+ "name": "Alchemy Ineptitude Self V",
+ "description": "Decreases the caster's Alchemy skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "1780": {
+ "name": "Alchemy Ineptitude Self VI",
+ "description": "Decreases the caster's Alchemy skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "1781": {
+ "name": "Exploding Magma",
+ "description": "Exploding magma from unstable golems!",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1782": {
+ "name": "Gertarh's Curse",
+ "description": "Decreases your Loyalty skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "225",
+ "duration": "780",
+ "mana": "50"
+ },
+ "1783": {
+ "name": "Searing Disc",
+ "description": "Shoots eight waves of acid outward from the caster. Each wave does 42-84 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1784": {
+ "name": "Horizon's Blades",
+ "description": "Shoots eight blades outward from the caster. Each blade does 42-84 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1785": {
+ "name": "Cassius' Ring of Fire",
+ "description": "Shoots eight waves of flame outward from the caster. Each wave does 42-84 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1786": {
+ "name": "Nuhmudira's Spines",
+ "description": "Shoots eight waves of force outward from the caster. Each wave does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1787": {
+ "name": "Halo of Frost",
+ "description": "Shoots eight waves of frost outward from the caster. Each wave does 42-84 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1788": {
+ "name": "Eye of the Storm",
+ "description": "Shoots eight waves of lightning outward from the caster. Each wave does 42-84 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1789": {
+ "name": "Tectonic Rifts",
+ "description": "Shoots eight shock waves outward from the caster. Each wave does 42-84 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1790": {
+ "name": "Acid Streak I",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 16-31 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1791": {
+ "name": "Acid Streak II",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 18-35 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1792": {
+ "name": "Acid Streak III",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 21-42 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1793": {
+ "name": "Acid Streak IV",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 25-50 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1794": {
+ "name": "Acid Streak V",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 29-59 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1795": {
+ "name": "Acid Streak VI",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 36-71 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1796": {
+ "name": "Flame Streak I",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 16-31 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1797": {
+ "name": "Flame Streak II",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 18-35 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1798": {
+ "name": "Flame Streak III",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 21-42 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1799": {
+ "name": "Flame Streak IV",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 25-50 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1800": {
+ "name": "Flame Streak V",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 29-59 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1801": {
+ "name": "Flame Streak VI",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 36-71 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1802": {
+ "name": "Force Streak I",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 16-31 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1803": {
+ "name": "Force Streak II",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 18-35 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1804": {
+ "name": "Force Streak III",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 21-42 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1805": {
+ "name": "Force Streak IV",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 25-50 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1806": {
+ "name": "Force Streak V",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 29-59 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1807": {
+ "name": "Force Streak VI",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 36-71 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1808": {
+ "name": "Frost Streak I",
+ "description": "Sends a bolt of frost streaking towards the target. The bolt does 16-31 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1809": {
+ "name": "Frost Streak II",
+ "description": "Sends a bolt of frost streaking towards the target. The bolt does 18-35 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1810": {
+ "name": "Frost Streak III",
+ "description": "Sends a bolt of cold streaking towards the target. The bolt does 21-42 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1811": {
+ "name": "Frost Streak IV",
+ "description": "Sends a bolt of cold streaking towards the target. The bolt does 25-50 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1812": {
+ "name": "Frost Streak V",
+ "description": "Sends a bolt of cold streaking towards the target. The bolt does 29-59 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1813": {
+ "name": "Frost Streak VI",
+ "description": "Sends a bolt of cold streaking towards the target. The bolt does 36-71 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1814": {
+ "name": "Lightning Streak I",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 16-31 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1815": {
+ "name": "Lightning Streak II",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 18-35 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1816": {
+ "name": "Lightning Streak III",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 21-42 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1817": {
+ "name": "Lightning Streak IV",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 25-50 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1818": {
+ "name": "Lightning Streak V",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 29-59 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1819": {
+ "name": "Lightning Streak VI",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 36-71 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1820": {
+ "name": "Shock Wave Streak I",
+ "description": "Sends a shock wave streaking towards the target. The wave does 16-31 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1821": {
+ "name": "Shock Wave Streak II",
+ "description": "Sends a shock wave streaking towards the target. The wave does 18-35 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1822": {
+ "name": "Shock Wave Streak III",
+ "description": "Sends a shock wave streaking towards the target. The wave does 21-42 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1823": {
+ "name": "Shock Wave Streak IV",
+ "description": "Sends a shock wave streaking towards the target. The wave does 25-50 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1824": {
+ "name": "Shock Wave Streak V",
+ "description": "Sends a shock wave streaking towards the target. The wave does 29-59 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1825": {
+ "name": "Shock Wave Streak VI",
+ "description": "Sends a shock wave streaking towards the target. The wave does 36-71 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1826": {
+ "name": "Whirling Blade Streak I",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 16-31 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "1827": {
+ "name": "Whirling Blade Streak II",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 18-35 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "1828": {
+ "name": "Whirling Blade Streak III",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 21-42 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "1829": {
+ "name": "Whirling Blade Streak IV",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 25-50 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1830": {
+ "name": "Whirling Blade Streak V",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 29-59 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1831": {
+ "name": "Whirling Blade Streak VI",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 36-71 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1832": {
+ "name": "Torrential Acid",
+ "description": "Rains nine streams of acid down at the area around the target. Each stream does 60-120 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "236",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1833": {
+ "name": "Squall of Swords",
+ "description": "Rains nine whirling blades down at the area around the target. Each blade does 60-120 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "242",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1834": {
+ "name": "Firestorm",
+ "description": "Rains nine balls of flame down at the area around the target. Each ball does 60-120 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "240",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1835": {
+ "name": "Splinterfall",
+ "description": "Rains nine bolts of force down at the area around the target. Each bolt does 60-120 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1836": {
+ "name": "Avalanche",
+ "description": "Rains up to twelve balls of frost down at the area around the target. Each ball does 60-120 points of cold damage to the first thing it hits. This spell is not very accurate. and cannot be used indoors.",
+ "school": "War Magic",
+ "family": "238",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1837": {
+ "name": "Lightning Barrage",
+ "description": "Rains nine bolts of lightning down at the area around the target. Each bolt does 60-120 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "239",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1838": {
+ "name": "Stone Fists",
+ "description": "Rains nine boulders down at the area around the target. Each boulder does 60-120 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1839": {
+ "name": "Blistering Creeper",
+ "description": "Sends a wall of five balls of acid. two high. slowly towards the target. Each ball does 35-70 points of acid damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "229",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1840": {
+ "name": "Bed of Blades",
+ "description": "Sends a wall of five whirling blades. two high. slowly towards the target. Each blade does 35-70 points of slashing damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "235",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1841": {
+ "name": "Slithering Flames",
+ "description": "Sends a wall of five balls of fire. two high. slowly towards the target. Each ball does 35-70 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1842": {
+ "name": "Spike Strafe",
+ "description": "Sends a wall of five bolts of force. two high. slowly towards the target. Each bolt does 35-70 points of piercing damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "234",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1843": {
+ "name": "Foon-Ki's Glacial Floe",
+ "description": "Sends a wall of five balls of frost. two high. slowly towards the target. Each ball does 35-70 points of cold damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "231",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1844": {
+ "name": "Os' Wall",
+ "description": "Sends a wall of five bolts of lightning. two high. slowly towards the target. Each ball does 35-70 points of electric damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "232",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1845": {
+ "name": "Hammering Crawler",
+ "description": "Sends a wall of five shockwaves. two high. slowly towards the target. Each wave does 35-70 points of bludgeoning damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "230",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1846": {
+ "name": "Curse of Black Fire",
+ "description": "Decreases the target's Magic Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "50",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "1847": {
+ "name": "Evaporate All Magic Other",
+ "description": "Dispels all enchantments of level 1 from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1848": {
+ "name": "Evaporate All Magic Other",
+ "description": "Dispels 1-3 positive enchantments of level 1 from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1849": {
+ "name": "Evaporate All Magic Other",
+ "description": "Dispels all negative enchantments of level 1 from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1850": {
+ "name": "Evaporate All Magic Self",
+ "description": "Dispels all enchantments of level 1 from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1851": {
+ "name": "Evaporate All Magic Self",
+ "description": "Dispels 1-3 positive enchantments of level 1 from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1852": {
+ "name": "Evaporate All Magic Self",
+ "description": "Dispels all negative enchantments of level 1 from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1853": {
+ "name": "Extinguish All Magic Other",
+ "description": "Dispels all enchantments of level 2 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1854": {
+ "name": "Extinguish All Magic Other",
+ "description": "Dispels 1-3 positive enchantments of level 2 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1855": {
+ "name": "Extinguish All Magic Other",
+ "description": "Dispels all negative enchantments of level 2 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1856": {
+ "name": "Extinguish All Magic Self",
+ "description": "Dispels all enchantments of level 2 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1857": {
+ "name": "Extinguish All Magic Self",
+ "description": "Dispels 1-3 positive enchantments of level 2 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1858": {
+ "name": "Extinguish All Magic Self",
+ "description": "Dispels all negative enchantments of level 2 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1859": {
+ "name": "Cleanse All Magic Other",
+ "description": "Dispels all enchantments of level 3 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1860": {
+ "name": "Cleanse All Magic Other",
+ "description": "Dispels 2-4 positive enchantments of level 3 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1861": {
+ "name": "Cleanse All Magic Other",
+ "description": "Dispels all negative enchantments of level 3 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1862": {
+ "name": "Cleanse All Magic Self",
+ "description": "Dispels all enchantments of level 3 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1863": {
+ "name": "Cleanse All Magic Self",
+ "description": "Dispels 2-4 positive enchantments of level 3 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1864": {
+ "name": "Cleanse All Magic Self",
+ "description": "Dispels all negative enchantments of level 3 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1865": {
+ "name": "Devour All Magic Other",
+ "description": "Dispels all enchantments of level 4 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1866": {
+ "name": "Devour All Magic Other",
+ "description": "Dispels 2-4 positive enchantments of level 4 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1867": {
+ "name": "Devour All Magic Other",
+ "description": "Dispels all negative enchantments of level 4 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "160"
+ },
+ "1868": {
+ "name": "Devour All Magic Self",
+ "description": "Dispels all enchantments of level 4 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1869": {
+ "name": "Devour All Magic Self",
+ "description": "Dispels 2-4 positive enchantments of level 4 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1870": {
+ "name": "Devour All Magic Self",
+ "description": "Dispels all negative enchantments of level 4 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "160"
+ },
+ "1871": {
+ "name": "Purge All Magic Other",
+ "description": "Dispels all enchantments of level 5 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1872": {
+ "name": "Purge All Magic Other",
+ "description": "Dispels 2-6 positive enchantments of level 5 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1873": {
+ "name": "Purge All Magic Other",
+ "description": "Dispels all negative enchantments of level 5 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1874": {
+ "name": "Purge All Magic Self",
+ "description": "Dispels all enchantments of level 5 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1875": {
+ "name": "Purge All Magic Self",
+ "description": "Dispels 2-6 positive enchantments of level 5 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1876": {
+ "name": "Purge All Magic Self",
+ "description": "Dispels all negative enchantments of level 5 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1877": {
+ "name": "Nullify All Magic Other",
+ "description": "Dispels all enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1878": {
+ "name": "Nullify All Magic Other",
+ "description": "Dispels 2-6 positive enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1879": {
+ "name": "Nullify All Magic Other",
+ "description": "Dispels all negative enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "1880": {
+ "name": "Nullify All Magic Self",
+ "description": "Dispels all enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1881": {
+ "name": "Nullify All Magic Self",
+ "description": "Dispels 2-6 positive enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1882": {
+ "name": "Nullify All Magic Self",
+ "description": "Dispels all negative enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "1883": {
+ "name": "Evaporate Creature Magic Other",
+ "description": "Dispels 1-3 Creature Magic enchantments of level 1 from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1884": {
+ "name": "Evaporate Creature Magic Other",
+ "description": "Dispels 1-3 positive Creature Magic enchantments of level 1 from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1885": {
+ "name": "Evaporate Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 1 from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1886": {
+ "name": "Evaporate Creature Magic Self",
+ "description": "Dispels 1-3 Creature Magic enchantments of level 1 from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1887": {
+ "name": "Evaporate Creature Magic Self",
+ "description": "Dispels 1-3 positive Creature Magic enchantments of level 1 from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1888": {
+ "name": "Evaporate Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 1 from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1889": {
+ "name": "Extinguish Creature Magic Other",
+ "description": "Dispels 1-3 Creature Magic enchantments of level 2 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1890": {
+ "name": "Extinguish Creature Magic Other",
+ "description": "Dispels 1-3 positive Creature Magic enchantments of level 2 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1891": {
+ "name": "Extinguish Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 2 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1892": {
+ "name": "Extinguish Creature Magic Self",
+ "description": "Dispels 1-3 Creature Magic enchantments of level 2 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1893": {
+ "name": "Extinguish Creature Magic Self",
+ "description": "Dispels 1-3 positive Creature Magic enchantments of level 2 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1894": {
+ "name": "Extinguish Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 2 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1895": {
+ "name": "Cleanse Creature Magic Other",
+ "description": "Dispels 2-4 Creature Magic enchantments of level 3 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1896": {
+ "name": "Cleanse Creature Magic Other",
+ "description": "Dispels 2-4 positive Creature Magic enchantments of level 3 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1897": {
+ "name": "Cleanse Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 3 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1898": {
+ "name": "Cleanse Creature Magic Self",
+ "description": "Dispels 2-4 Creature Magic enchantments of level 3 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1899": {
+ "name": "Cleanse Creature Magic Self",
+ "description": "Dispels 2-4 positive Creature Magic enchantments of level 3 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1900": {
+ "name": "Cleanse Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 3 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1901": {
+ "name": "Devour Creature Magic Other",
+ "description": "Dispels 2-4 Creature Magic enchantments of level 4 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1902": {
+ "name": "Devour Creature Magic Other",
+ "description": "Dispels 2-4 positive Creature Magic enchantments of level 4 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1903": {
+ "name": "Devour Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 4 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "160"
+ },
+ "1904": {
+ "name": "Devour Creature Magic Self",
+ "description": "Dispels 2-4 Creature Magic enchantments of level 4 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1905": {
+ "name": "Devour Creature Magic Self",
+ "description": "Dispels 2-4 positive Creature Magic enchantments of level 4 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1906": {
+ "name": "Devour Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 4 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "160"
+ },
+ "1907": {
+ "name": "Purge Creature Magic Other",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 5 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1908": {
+ "name": "Purge Creature Magic Other",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 5 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1909": {
+ "name": "Purge Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 5 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1910": {
+ "name": "Purge Creature Magic Self",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 5 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1911": {
+ "name": "Purge Creature Magic Self",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 5 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1912": {
+ "name": "Purge Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 5 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1913": {
+ "name": "Nullify Creature Magic Other",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1914": {
+ "name": "Nullify Creature Magic Other",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1915": {
+ "name": "Nullify Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 6 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "1916": {
+ "name": "Nullify Creature Magic Self",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1917": {
+ "name": "Nullify Creature Magic Self",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1918": {
+ "name": "Nullify Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 6 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "1919": {
+ "name": "Evaporate Item Magic",
+ "description": "Dispels 1-3 Item Magic enchantments of level 1 from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1920": {
+ "name": "Evaporate Item Magic",
+ "description": "Dispels 1-3 positive Item Magic enchantments of level 1 from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1921": {
+ "name": "Evaporate Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 1 from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1922": {
+ "name": "Evaporate Item Magic",
+ "description": "Dispels 1-3 Item Magic enchantments of level 1 from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1923": {
+ "name": "Evaporate Item Magic",
+ "description": "Dispels 1-3 positive Item Magic enchantments of level 1 from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1924": {
+ "name": "Evaporate Item Magic",
+ "description": "Dispels 1-3 negative Item Magic enchantments of level 1 from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1925": {
+ "name": "Extinguish Item Magic",
+ "description": "Dispels 1-3 Item Magic enchantments of level 2 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1926": {
+ "name": "Extinguish Item Magic",
+ "description": "Dispels 1-3 positive Item Magic enchantments of level 2 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1927": {
+ "name": "Extinguish Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 2 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1928": {
+ "name": "Extinguish Item Magic",
+ "description": "Dispels 1-3 Item Magic enchantments of level 2 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1929": {
+ "name": "Extinguish Item Magic",
+ "description": "Dispels 1-3 positive Item Magic enchantments of level 2 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1930": {
+ "name": "Extinguish Item Magic",
+ "description": "Dispels 1-3 negative Item Magic enchantments of level 2 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1931": {
+ "name": "Cleanse Item Magic",
+ "description": "Dispels 2-4 Item Magic enchantments of level 3 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1932": {
+ "name": "Cleanse Item Magic",
+ "description": "Dispels 2-4 positive Item Magic enchantments of level 3 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1933": {
+ "name": "Cleanse Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 3 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1934": {
+ "name": "Cleanse Item Magic",
+ "description": "Dispels 2-4 Item Magic enchantments of level 3 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1935": {
+ "name": "Cleanse Item Magic",
+ "description": "Dispels 2-4 positive Item Magic enchantments of level 3 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1936": {
+ "name": "Cleanse Item Magic",
+ "description": "Dispels 2-4 negative Item Magic enchantments of level 3 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1937": {
+ "name": "Devour Item Magic",
+ "description": "Dispels 2-4 Item Magic enchantments of level 4 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1938": {
+ "name": "Devour Item Magic",
+ "description": "Dispels 2-4 positive Item Magic enchantments of level 4 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1939": {
+ "name": "Devour Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 4 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "160"
+ },
+ "1940": {
+ "name": "Devour Item Magic",
+ "description": "Dispels 2-4 Item Magic enchantments of level 4 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1941": {
+ "name": "Devour Item Magic",
+ "description": "Dispels 2-4 positive Item Magic enchantments of level 4 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1942": {
+ "name": "Devour Item Magic",
+ "description": "Dispels 2-4 negative Item Magic enchantments of level 4 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1943": {
+ "name": "Purge Item Magic",
+ "description": "Dispels 2-6 Item Magic enchantments of level 5 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1944": {
+ "name": "Purge Item Magic",
+ "description": "Dispels 2-6 positive Item Magic enchantments of level 5 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1945": {
+ "name": "Purge Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 5 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1946": {
+ "name": "Purge Item Magic",
+ "description": "Dispels 2-6 Item Magic enchantments of level 5 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1947": {
+ "name": "Purge Item Magic",
+ "description": "Dispels 2-6 positive Item Magic enchantments of level 5 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1948": {
+ "name": "Purge Item Magic",
+ "description": "Dispels 2-6 negative Item Magic enchantments of level 5 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1949": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1950": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1951": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 6 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "1952": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1953": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1954": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 2-6 negative Item Magic enchantments of level 6 or lower from the caster.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1955": {
+ "name": "Evaporate Life Magic Other",
+ "description": "Dispels 1-3 Life Magic enchantments of level 1 from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1956": {
+ "name": "Evaporate Life Magic Other",
+ "description": "Dispels 1-3 positive Life Magic enchantments of level 1 from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1957": {
+ "name": "Evaporate Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 1 from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1958": {
+ "name": "Evaporate Life Magic Self",
+ "description": "Dispels 1-3 Life Magic enchantments of level 1 from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1959": {
+ "name": "Evaporate Life Magic Self",
+ "description": "Dispels 1-3 positive Life Magic enchantments of level 1 from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "1960": {
+ "name": "Evaporate Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 1 from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "1961": {
+ "name": "Extinguish Life Magic Other",
+ "description": "Dispels 1-3 Life Magic enchantments of level 2 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1962": {
+ "name": "Extinguish Life Magic Other",
+ "description": "Dispels 1-3 positive Life Magic enchantments of level 2 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1963": {
+ "name": "Extinguish Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 2 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1964": {
+ "name": "Extinguish Life Magic Self",
+ "description": "Dispels 1-3 Life Magic enchantments of level 2 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1965": {
+ "name": "Extinguish Life Magic Self",
+ "description": "Dispels 1-3 positive Life Magic enchantments of level 2 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "1966": {
+ "name": "Extinguish Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 2 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "1967": {
+ "name": "Cleanse Life Magic Other",
+ "description": "Dispels 2-4 Life Magic enchantments of level 3 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1968": {
+ "name": "Cleanse Life Magic Other",
+ "description": "Dispels 2-4 positive Life Magic enchantments of level 3 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1969": {
+ "name": "Cleanse Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 3 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1970": {
+ "name": "Cleanse Life Magic Self",
+ "description": "Dispels 2-4 Life Magic enchantments of level 3 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1971": {
+ "name": "Cleanse Life Magic Self",
+ "description": "Dispels 2-4 positive Life Magic enchantments of level 3 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "1972": {
+ "name": "Cleanse Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 3 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "1973": {
+ "name": "Devour Life Magic Other",
+ "description": "Dispels 2-4 Life Magic enchantments of level 4 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1974": {
+ "name": "Devour Life Magic Other",
+ "description": "Dispels 2-4 positive Life Magic enchantments of level 4 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1975": {
+ "name": "Devour Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 4 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "160"
+ },
+ "1976": {
+ "name": "Devour Life Magic Self",
+ "description": "Dispels 2-4 Life Magic enchantments of level 4 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1977": {
+ "name": "Devour Life Magic Self",
+ "description": "Dispels 2-4 positive Life Magic enchantments of level 4 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1978": {
+ "name": "Devour Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 4 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "160"
+ },
+ "1979": {
+ "name": "Purge Life Magic Other",
+ "description": "Dispels 2-6 Life Magic enchantments of level 5 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1980": {
+ "name": "Purge Life Magic Other",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 5 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1981": {
+ "name": "Purge Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 5 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1982": {
+ "name": "Purge Life Magic Self",
+ "description": "Dispels 2-6 Life Magic enchantments of level 5 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1983": {
+ "name": "Purge Life Magic Self",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 5 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "250"
+ },
+ "1984": {
+ "name": "Purge Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 5 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "1985": {
+ "name": "Nullify Life Magic Other",
+ "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1986": {
+ "name": "Nullify Life Magic Other",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1987": {
+ "name": "Nullify Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "1988": {
+ "name": "Nullify Life Magic Self",
+ "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1989": {
+ "name": "Nullify Life Magic Self",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "1990": {
+ "name": "Nullify Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "1991": {
+ "name": "Mana Blight",
+ "description": "Drains 5000 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "1992": {
+ "name": "Camping Mastery",
+ "description": "Increases the target's chance of finding phat loot.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "1",
+ "duration": "300",
+ "mana": "10"
+ },
+ "1993": {
+ "name": "Camping Ineptitude",
+ "description": "Decreases the target's chance of finding phat loot.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "1",
+ "duration": "300",
+ "mana": "1"
+ },
+ "1994": {
+ "name": "Aura of Wound Twister",
+ "description": "Increases a weapon's damage value by 25 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "250",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "1995": {
+ "name": "Aura of Alacrity",
+ "description": "Improves a weapon's speed by 20 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "50",
+ "duration": "360",
+ "mana": "20"
+ },
+ "1996": {
+ "name": "Aura of Soul Hunter",
+ "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "150",
+ "duration": "600",
+ "mana": "40"
+ },
+ "1997": {
+ "name": "Life Giver",
+ "description": "Increases maximum health by 15 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "1998": {
+ "name": "Stamina Giver",
+ "description": "Increases maximum stamina by 15 points.",
+ "school": "Life Magic",
+ "family": "281",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "1999": {
+ "name": "Mana Giver",
+ "description": "Increases maximum mana by 15 points.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2000": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2001": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2002": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2003": {
+ "name": "Warrior's Lesser Vitality",
+ "description": "Increases maximum health by 5 points.",
+ "school": "Life Magic",
+ "family": "273",
+ "difficulty": "240",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2004": {
+ "name": "Warrior's Vitality",
+ "description": "Increases maximum health by 10 points.",
+ "school": "Life Magic",
+ "family": "273",
+ "difficulty": "245",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2005": {
+ "name": "Warrior's Greater Vitality",
+ "description": "Increases maximum health by 15 points.",
+ "school": "Life Magic",
+ "family": "273",
+ "difficulty": "250",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2006": {
+ "name": "Warrior's Ultimate Vitality",
+ "description": "Increases maximum health by 20 points.",
+ "school": "Life Magic",
+ "family": "273",
+ "difficulty": "260",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2007": {
+ "name": "Warrior's Lesser Vigor",
+ "description": "Increases maximum stamina by 10 points.",
+ "school": "Life Magic",
+ "family": "275",
+ "difficulty": "240",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2008": {
+ "name": "Warrior's Vigor",
+ "description": "Increases maximum stamina by 20 points.",
+ "school": "Life Magic",
+ "family": "275",
+ "difficulty": "245",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2009": {
+ "name": "Warrior's Greater Vigor",
+ "description": "Increases maximum stamina by 30 points.",
+ "school": "Life Magic",
+ "family": "275",
+ "difficulty": "250",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2010": {
+ "name": "Warrior's Ultimate Vigor",
+ "description": "Increases maximum stamina by 40 points.",
+ "school": "Life Magic",
+ "family": "275",
+ "difficulty": "260",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2011": {
+ "name": "Wizard's Lesser Intellect",
+ "description": "Increases maximum mana by 10 points.",
+ "school": "Life Magic",
+ "family": "277",
+ "difficulty": "240",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2012": {
+ "name": "Wizard's Intellect",
+ "description": "Increases maximum mana by 15 points.",
+ "school": "Life Magic",
+ "family": "277",
+ "difficulty": "245",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2013": {
+ "name": "Wizard's Greater Intellect",
+ "description": "Increases maximum mana by 20 points.",
+ "school": "Life Magic",
+ "family": "277",
+ "difficulty": "250",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2014": {
+ "name": "Wizard's Ultimate Intellect",
+ "description": "Increases maximum mana by 30 points.",
+ "school": "Life Magic",
+ "family": "277",
+ "difficulty": "260",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2015": {
+ "name": "Aerfalle's Ward",
+ "description": "Improves a shield or piece of armor's armor value by 220 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "295",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2016": {
+ "name": "Impulse",
+ "description": "Increases maximum mana by 100 points.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "100",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "2017": {
+ "name": "Bunny Smite",
+ "description": "Drains 1000-6000 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2018": {
+ "name": "Tormenter of Flesh",
+ "description": "Drains 1000-6000 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2019": {
+ "name": "The sundering of the crystal",
+ "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "2020": {
+ "name": "Recall Asmolum 1",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2021": {
+ "name": "Thaumaturgic Shroud",
+ "description": "Drains one-half of the target's Mana and gives 200% of that to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2022": {
+ "name": "Soul Shroud",
+ "description": "Drains one-half of the target's Health and gives 200% of that to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2023": {
+ "name": "Recall the Sanctuary",
+ "description": "Transports the caster to the Ithaenc Cathedral.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2024": {
+ "name": "Recall Asmolum 2",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2025": {
+ "name": "RecallAsmolum 3",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2026": {
+ "name": "Nerve Burn",
+ "description": "Drains one-half of the target's Stamina and gives 200% of that to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2027": {
+ "name": "Martyr",
+ "description": "Drains all of the caster's Health and gives 1000% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2028": {
+ "name": "The Path to Kelderam's Ward",
+ "description": "Summons a PK-limited portal to the Catacombs beneath the Ithaenc Cathedral.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "200",
+ "duration": "60",
+ "mana": "70"
+ },
+ "2029": {
+ "name": "Stamina Blight",
+ "description": "Drains 5000 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2030": {
+ "name": "Flaming Blaze",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2031": {
+ "name": "Steel Thorns",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2032": {
+ "name": "Electric Blaze",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2033": {
+ "name": "Acidic Spray",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2034": {
+ "name": "Exploding Fury",
+ "description": "Exploding fury for baelzharon",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2035": {
+ "name": "Electric Discharge",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2036": {
+ "name": "Fuming Acid",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2037": {
+ "name": "Flaming Irruption",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2038": {
+ "name": "Exploding Ice",
+ "description": "Exploding fury for baelzharon",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2039": {
+ "name": "Sparking Fury",
+ "description": "CREATURE MAGIC ONLY!",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2040": {
+ "name": "The Path to Kelderam's Ward",
+ "description": "Will create a portal to the Sepulcher of the Hopeslayer.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "200",
+ "duration": "60",
+ "mana": "70"
+ },
+ "2041": {
+ "name": "Aerlinthe Recall",
+ "description": "Transports the caster to Aerlinthe Island.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "2042": {
+ "name": "Demon's Tongues",
+ "description": "Sends a wall of lag towards the opponents. burning them to a tasty crisp.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "1"
+ },
+ "2043": {
+ "name": "Weight of Eternity",
+ "description": "Afflicts the target with the weight of thousands of years.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "500",
+ "duration": "60",
+ "mana": "1"
+ },
+ "2044": {
+ "name": "Item Befoulment",
+ "description": "The target becomes totally ineffectual with Item magic.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "275",
+ "duration": "400",
+ "mana": "60"
+ },
+ "2045": {
+ "name": "Demon Fists",
+ "description": "Rains LOTS of boulders down. smooshing any that oppose.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2046": {
+ "name": "Portal to Teth",
+ "description": "Transports the target to the Fort Tethana.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2047": {
+ "name": "Demonskin",
+ "description": "The target's skin becomes hardened against physical damage.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "900",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2048": {
+ "name": "Boon of the Demon",
+ "description": "Gives the target a huge boost to their magic defense.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "250",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2049": {
+ "name": "Bile of the Hopeslayer",
+ "description": "Coats a weapon in the bile of Bael'zharon. greatly increasing its damage.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "250",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2050": {
+ "name": "Young Love",
+ "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2051": {
+ "name": "Young Love",
+ "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2052": {
+ "name": "Executor's Boon",
+ "description": "Increases the target's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2053": {
+ "name": "Executor's Blessing",
+ "description": "Increases the caster's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2054": {
+ "name": "Synaptic Misfire",
+ "description": "Decreases the target's Focus by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2055": {
+ "name": "Bafflement Self VII",
+ "description": "Decreases the caster's Focus by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2056": {
+ "name": "Ataxia",
+ "description": "Decreases the target's Coordination by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2057": {
+ "name": "Clumsiness Self VII",
+ "description": "Decreases the caster's Coordination by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2058": {
+ "name": "Boon of Refinement",
+ "description": "Increases the target's Coordination by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2059": {
+ "name": "Honed Control",
+ "description": "Increases the caster's Coordination by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2060": {
+ "name": "Temeritous Touch",
+ "description": "Increases the target's Endurance by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2061": {
+ "name": "Perseverance",
+ "description": "Increases the caster's Endurance by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2062": {
+ "name": "Anemia",
+ "description": "Drains 52-105 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2063": {
+ "name": "Enfeeble Self VII",
+ "description": "Drains 50-100 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2064": {
+ "name": "Self Loathing",
+ "description": "Decreases the target's Self by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2065": {
+ "name": "Feeblemind Self VII",
+ "description": "Decreases the caster's Self by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2066": {
+ "name": "Calming Gaze",
+ "description": "Increases the target's Focus by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2067": {
+ "name": "Inner Calm",
+ "description": "Increases the caster's Focus by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2068": {
+ "name": "Brittle Bones",
+ "description": "Decreases the target's Endurance by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2069": {
+ "name": "Frailty Self VII",
+ "description": "Decreases the caster's Endurance by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2070": {
+ "name": "Heart Rend",
+ "description": "Drains 42-79 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2071": {
+ "name": "Harm Self VII",
+ "description": "Drains 40-75 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2072": {
+ "name": "Adja's Gift",
+ "description": "Restores 80-150 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2073": {
+ "name": "Adja's Intervention",
+ "description": "Restores 80-150 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2074": {
+ "name": "Gossamer Flesh",
+ "description": "Decreases the target's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2075": {
+ "name": "Imperil Self VII",
+ "description": "Decreases the caster's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2076": {
+ "name": "Mana Boost Other VII",
+ "description": "Restores 51-100 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2077": {
+ "name": "Mana Boost Self VII",
+ "description": "Restores 51-100 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2078": {
+ "name": "Void's Call",
+ "description": "Drains 42-79 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2079": {
+ "name": "Mana Drain Self VII",
+ "description": "Drains 40-75 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2080": {
+ "name": "Ogfoot",
+ "description": "Increases the target's Quickness by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2081": {
+ "name": "Hastening",
+ "description": "Increases the caster's Quickness by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2082": {
+ "name": "Replenish",
+ "description": "Restores 100-200 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2083": {
+ "name": "Robustification",
+ "description": "Restores 100-200 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2084": {
+ "name": "Belly of Lead",
+ "description": "Decreases the target's Quickness by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2085": {
+ "name": "Slowness Self VII",
+ "description": "Decreases the caster's Quickness by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2086": {
+ "name": "Might of the 5 Mules",
+ "description": "Increases the target's Strength by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2087": {
+ "name": "Might of the Lugians",
+ "description": "Increases the caster's Strength by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2088": {
+ "name": "Senescence",
+ "description": "Decreases the target's Strength by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2089": {
+ "name": "Weakness Self VII",
+ "description": "Decrease the caster's Strength by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2090": {
+ "name": "Bolstered Will",
+ "description": "Increases the target's Self by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2091": {
+ "name": "Mind Blossom",
+ "description": "Increases the caster's Self by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2092": {
+ "name": "Olthoi's Bane",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 170%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2093": {
+ "name": "Olthoi Bait",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 170%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2094": {
+ "name": "Swordsman's Bane",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 170%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2095": {
+ "name": "Swordsman Bait",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 170%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2096": {
+ "name": "Aura of Infected Caress",
+ "description": "Increases a weapon's damage value by 22 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2097": {
+ "name": "Pacification",
+ "description": "Decreases a weapon's damage value by 22 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2098": {
+ "name": "Tusker's Bane",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 170%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2099": {
+ "name": "Tusker Bait",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 170%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2100": {
+ "name": "Tattercoat",
+ "description": "Worsens a shield or piece of armor's armor value by 220 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2101": {
+ "name": "Aura of Cragstone's Will",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2102": {
+ "name": "Inferno's Bane",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 170%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2103": {
+ "name": "Inferno Bait",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 170%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2104": {
+ "name": "Gelidite's Bane",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 170%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2105": {
+ "name": "Gelidite Bait",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 170%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2106": {
+ "name": "Aura of Elysa's Sight",
+ "description": "Increases a weapon's Attack Skill modifier by 17.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2107": {
+ "name": "Cabalistic Ostracism",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 70%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2108": {
+ "name": "Brogard's Defiance",
+ "description": "Improves a shield or piece of armor's armor value by 220 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2109": {
+ "name": "Lugian's Speed",
+ "description": "Worsens a weapon's speed by 70 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2110": {
+ "name": "Astyrrian's Bane",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 170%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2111": {
+ "name": "Astyrrian Bait",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 170%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2112": {
+ "name": "Wi's Folly",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 17%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2113": {
+ "name": "Archer's Bane",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 170%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2114": {
+ "name": "Archer Bait",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 170%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2115": {
+ "name": "Fortified Lock",
+ "description": "Increases a lock's resistance to picking by 200 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "300",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2116": {
+ "name": "Aura of Atlan's Alacrity",
+ "description": "Improves a weapon's speed by 70 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2117": {
+ "name": "Aura of Mystic's Blessing",
+ "description": "Increases a magic casting implement's mana conversion bonus by 70%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2118": {
+ "name": "Clouded Motives",
+ "description": "Decreases a weapon's Attack Skill modifier by 17.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2119": {
+ "name": "Vagabond's Gift",
+ "description": "Decreases a lock's resistance to picking by 200 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "300",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2120": {
+ "name": "Dissolving Vortex",
+ "description": "Shoots five streams of acid outward from the caster. Each stream does 42-84 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2121": {
+ "name": "Corrosive Flash",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 42-84 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2122": {
+ "name": "Disintegration",
+ "description": "Shoots a stream of acid at the target. The stream does 115-189 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2123": {
+ "name": "Celdiseth's Searing",
+ "description": "Shoots five streams of acid toward the target. Each stream does 42-84 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2124": {
+ "name": "Sau Kolin's Sword",
+ "description": "Shoots five whirling blades outward from the caster. Each blade does 42-84 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2125": {
+ "name": "Flensing Wings",
+ "description": "Shoots five whirling blades toward the target. Each blade does 42-84 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2126": {
+ "name": "Thousand Fists",
+ "description": "Shoots five shock waves toward the target. Each wave does 42-84 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2127": {
+ "name": "Silencia's Scorn",
+ "description": "Shoots five bolts of flame outward from the caster. Each bolt does 42-84 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2128": {
+ "name": "Ilservian's Flame",
+ "description": "Shoots a bolt of flame at the target. The bolt does 115-189 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2129": {
+ "name": "Sizzling Fury",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 42-84 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2130": {
+ "name": "Infernae",
+ "description": "Shoots five bolts of flame toward the target. Each bolt does 42-84 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2131": {
+ "name": "Stinging Needles",
+ "description": "Shoots five force bolts outward from the caster. Each bolt does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2132": {
+ "name": "The Spike",
+ "description": "Shoots a bolt of force at the target. The bolt does 115-189 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2133": {
+ "name": "Outlander's Insolence",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2134": {
+ "name": "Fusillade",
+ "description": "Shoots five bolts of force toward the target. Each bolt does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2135": {
+ "name": "Winter's Embrace",
+ "description": "Shoots five bolts of frost outward from the caster. Each bolt does 42-84 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2136": {
+ "name": "Icy Torment",
+ "description": "Shoots a bolt of cold at the target. The bolt does 115-189 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2137": {
+ "name": "Sudden Frost",
+ "description": "Sends a bolt of cold streaking towards the target. The bolt does 42-84 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2138": {
+ "name": "Blizzard",
+ "description": "Shoots five bolts of frost toward the target. Each bolt does 42-84 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2139": {
+ "name": "Luminous Wrath",
+ "description": "Shoots five bolts of lightning outward from the caster. Each bolt does 42-84 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2140": {
+ "name": "Alset's Coil",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 115-189 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2141": {
+ "name": "Lhen's Flare",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 42-84 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2142": {
+ "name": "Tempest",
+ "description": "Shoots five bolts of lightning toward the target. Each bolt does 42-84 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2143": {
+ "name": "Pummeling Storm",
+ "description": "Shoots five shock waves outward from the caster. Each wave does 42-84 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2144": {
+ "name": "Crushing Shame",
+ "description": "Shoots a shock wave at the target. The wave does 115-189 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2145": {
+ "name": "Cameron's Curse",
+ "description": "Sends a shock wave streaking towards the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2146": {
+ "name": "Evisceration",
+ "description": "Shoots a magical blade at the target. The bolt does 115-189 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2147": {
+ "name": "Rending Wind",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 42-84 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2148": {
+ "name": "Caustic Boon",
+ "description": "Reduces damage the target takes from acid by 65%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2149": {
+ "name": "Caustic Blessing",
+ "description": "Reduces damage the caster takes from acid by 65%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2150": {
+ "name": "Boon of the Blade Turner",
+ "description": "Reduces damage the target takes from Slashing by 65%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2151": {
+ "name": "Blessing of the Blade Turner",
+ "description": "Reduces damage the caster takes from Slashing by 65%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2152": {
+ "name": "Boon of the Mace Turner",
+ "description": "Reduces damage the target takes from Bludgeoning by 65%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2153": {
+ "name": "Blessing of the Mace Turner",
+ "description": "Reduces damage the caster takes from Bludgeoning by 65%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2154": {
+ "name": "Icy Boon",
+ "description": "Reduces damage the target takes from Cold by 65%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2155": {
+ "name": "Icy Blessing",
+ "description": "Reduces damage the caster takes from Cold by 65%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2156": {
+ "name": "Fiery Boon",
+ "description": "Reduces damage the target takes from fire by 65%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2157": {
+ "name": "Fiery Blessing",
+ "description": "Reduces damage the caster takes from Fire by 65%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2158": {
+ "name": "Storm's Boon",
+ "description": "Reduces damage the target takes from Lightning by 65%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2159": {
+ "name": "Storm's Blessing",
+ "description": "Reduces damage the caster takes from Lightning by 65%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2160": {
+ "name": "Boon of the Arrow Turner",
+ "description": "Reduces damage the target takes from Piercing by 65%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2161": {
+ "name": "Blessing of the Arrow Turner",
+ "description": "Reduces damage the caster takes from Piercing by 65%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2162": {
+ "name": "Olthoi's Gift",
+ "description": "Increases damage the target takes from acid by 185%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2163": {
+ "name": "Acid Vulnerability Self VII",
+ "description": "Increases damage the caster takes from acid by 185%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2164": {
+ "name": "Swordsman's Gift",
+ "description": "Increases damage the target takes from Slashing by 185%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2165": {
+ "name": "Blade Vulnerability Self VII",
+ "description": "Increases damage the caster takes from Slashing by 185%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2166": {
+ "name": "Tusker's Gift",
+ "description": "Increases damage the target takes from Bludgeoning by 185%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2167": {
+ "name": "Bludgeoning Vulnerability Self VII",
+ "description": "Increases damage the caster takes from Bludgeoning by 185%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2168": {
+ "name": "Gelidite's Gift",
+ "description": "Increases damage the target takes from Cold by 185%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2169": {
+ "name": "Cold Vulnerability Self VII",
+ "description": "Increases damage the caster takes from Cold by 185%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2170": {
+ "name": "Inferno's Gift",
+ "description": "Increases damage the target takes from Fire by 185%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2171": {
+ "name": "Fire Vulnerability Self VII",
+ "description": "Increases damage the caster takes from Fire by 185%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2172": {
+ "name": "Astyrrian's Gift",
+ "description": "Increases damage the target takes from Lightning by 185%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2173": {
+ "name": "Lightning Vulnerability Self VII",
+ "description": "Increases damage the caster takes from Lightning by 185%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2174": {
+ "name": "Archer's Gift",
+ "description": "Increases damage the target takes from Piercing by 185%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2175": {
+ "name": "Piercing Vulnerability Self VII",
+ "description": "Increases damage the caster takes from Piercing by 185%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2176": {
+ "name": "Enervation",
+ "description": "Decreases the rate at which the target regains Stamina by 60%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2177": {
+ "name": "Exhaustion Self VII",
+ "description": "Decreases the rate at which the caster regains Stamina by 60%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2178": {
+ "name": "Decrepitude's Grasp",
+ "description": "Decrease target's natural healing rate by 60%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2179": {
+ "name": "Fester Self VII",
+ "description": "Decrease caster's natural healing rate by 60%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2180": {
+ "name": "Energy Flux",
+ "description": "Decreases target's natural mana rate by 60%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2181": {
+ "name": "Mana Depletion Self VII",
+ "description": "Decreases caster's natural mana rate by 60%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2182": {
+ "name": "Battlemage's Boon",
+ "description": "Increases the target's natural mana rate by 115%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2183": {
+ "name": "Battlemage's Blessing",
+ "description": "Increases the caster's natural mana rate by 115%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2184": {
+ "name": "Hydra's Head",
+ "description": "Increase target's natural healing rate by 115%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2185": {
+ "name": "Robustify",
+ "description": "Increase caster's natural healing rate by 115%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2186": {
+ "name": "Tenaciousness",
+ "description": "Increases the rate at which the target regains Stamina by 115%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2187": {
+ "name": "Unflinching Persistence",
+ "description": "Increases the rate at which the caster regains Stamina by 115%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2188": {
+ "name": "Bottle Breaker",
+ "description": "Decreases the target's Alchemy skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2189": {
+ "name": "Alchemy Ineptitude Self VII",
+ "description": "Decreases the caster's Alchemy skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2190": {
+ "name": "Silencia's Boon",
+ "description": "Increases the target's Alchemy skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2191": {
+ "name": "Silencia's Blessing",
+ "description": "Increases the caster's Alchemy skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2192": {
+ "name": "Hands of Chorizite",
+ "description": "Decreases the target's Arcane Lore skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2193": {
+ "name": "Arcane Benightedness Self VII",
+ "description": "Decreases the caster's Arcane Lore skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2194": {
+ "name": "Aliester's Boon",
+ "description": "Increases the target's Arcane Lore skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2195": {
+ "name": "Aliester's Blessing",
+ "description": "Increases the caster's Arcane Lore skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2196": {
+ "name": "Jibril's Boon",
+ "description": "Increases the target's Armor Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2197": {
+ "name": "Jibril's Blessing",
+ "description": "Increases the caster's Armor Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2198": {
+ "name": "Jibril's Vitae",
+ "description": "Decreases the target's Armor Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2199": {
+ "name": "Armor Tinkering Ignorance Self VII",
+ "description": "Decreases the caster's Armor Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2200": {
+ "name": "Light Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2201": {
+ "name": "Light Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2202": {
+ "name": "Light Weapon Mastery Other VII",
+ "description": "Increases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2203": {
+ "name": "Light Weapon Mastery Self VII",
+ "description": "Increases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2204": {
+ "name": "Missile Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2205": {
+ "name": "Missile Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2206": {
+ "name": "Missile Weapon Mastery Other VII",
+ "description": "Increases the target's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2207": {
+ "name": "Missile Weapon Mastery Self VII",
+ "description": "Increases the caster's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2208": {
+ "name": "Challenger's Legacy",
+ "description": "Decreases the target's Cooking skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2209": {
+ "name": "Cooking Ineptitude Self VII",
+ "description": "Decreases the caster's Cooking skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2210": {
+ "name": "Morimoto's Boon",
+ "description": "Increases the target's Cooking skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2211": {
+ "name": "Morimoto's Blessing",
+ "description": "Increases the caster's Cooking skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2212": {
+ "name": "Wrath of Adja",
+ "description": "Decreases the target's Creature Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2213": {
+ "name": "Creature Enchantment Ineptitude Self VII",
+ "description": "Decreases the caster's Creature Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2214": {
+ "name": "Adja's Boon",
+ "description": "Increases the target's Creature Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2215": {
+ "name": "Adja's Blessing",
+ "description": "Increases the caster's Creature Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2216": {
+ "name": "Missile Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2217": {
+ "name": "Missile Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2218": {
+ "name": "Missile Weapon Mastery Other VII",
+ "description": "Increases the target's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2219": {
+ "name": "Missile Weapon Mastery Self VII",
+ "description": "Increases the caster's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2220": {
+ "name": "Finesse Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Finesse Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2221": {
+ "name": "Finesse Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Finesse Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2222": {
+ "name": "Finesse Weapon Mastery Other VII",
+ "description": "Increases the target's Finesse Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2223": {
+ "name": "Finesse Weapon Mastery Self VII",
+ "description": "Increases the caster's Finesse Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2224": {
+ "name": "Hearts on Sleeves",
+ "description": "Decreases the target's Deception skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2225": {
+ "name": "Deception Ineptitude Self VII",
+ "description": "Decreases the caster's Deception skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2226": {
+ "name": "Ketnan's Boon",
+ "description": "Increases the target's Deception skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2227": {
+ "name": "Ketnan's Blessing",
+ "description": "Increases the caster's Deception skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2228": {
+ "name": "Broadside of a Barn",
+ "description": "Decreases the target's Missile Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2229": {
+ "name": "Defenselessness Self VII",
+ "description": "Decreases the caster's Missile Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2230": {
+ "name": "Sashi Mu's Kiss",
+ "description": "Decreases the target's Loyalty skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2231": {
+ "name": "Faithlessness Self VII",
+ "description": "Decreases the caster's Loyalty skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2232": {
+ "name": "Odif's Boon",
+ "description": "Increases the target's Loyalty skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2233": {
+ "name": "Odif's Blessing",
+ "description": "Increases the caster's Loyalty skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2234": {
+ "name": "Twisted Digits",
+ "description": "Decreases the target's Fletching skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2235": {
+ "name": "Fletching Ineptitude Self VII",
+ "description": "Decreases the caster's Fletching skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2236": {
+ "name": "Lilitha's Boon",
+ "description": "Increases the target's Fletching skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2237": {
+ "name": "Lilitha's Blessing",
+ "description": "Increases the caster's Fletching skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2238": {
+ "name": "Unsteady Hands",
+ "description": "Decreases the target's Healing skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2239": {
+ "name": "Healing Ineptitude Self VII",
+ "description": "Decreases the caster's Healing skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2240": {
+ "name": "Avalenne's Boon",
+ "description": "Increases the target's Healing skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2241": {
+ "name": "Avalenne's Blessing",
+ "description": "Increases the caster's Healing skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2242": {
+ "name": "Web of Deflection",
+ "description": "Increases the target's Missile Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2243": {
+ "name": "Aura of Deflection",
+ "description": "Increases the caster's Missile Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2244": {
+ "name": "Web of Defense",
+ "description": "Increases the target's Melee Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2245": {
+ "name": "Aura of Defense",
+ "description": "Increases the caster's Melee Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2246": {
+ "name": "Wrath of Celcynd",
+ "description": "Decreases the target's Item Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2247": {
+ "name": "Item Enchantment Ineptitude Self VII",
+ "description": "Decreases the caster's Item Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2248": {
+ "name": "Celcynd's Boon",
+ "description": "Increases the target's Item Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2249": {
+ "name": "Celcynd's Blessing",
+ "description": "Increases the caster's Item Enchantment skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2250": {
+ "name": "Yoshi's Boon",
+ "description": "Increases the target's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2251": {
+ "name": "Yoshi's Blessing",
+ "description": "Increases the caster's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2252": {
+ "name": "Unfortunate Appraisal",
+ "description": "Decreases the target's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2253": {
+ "name": "Item Tinkering Ignorance Self VII",
+ "description": "Decreases the caster's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2254": {
+ "name": "Feat of Radaz",
+ "description": "Decreases the target's Jump skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2255": {
+ "name": "Jumping Ineptitude Self VII",
+ "description": "Decreases the caster's Jump skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2256": {
+ "name": "Jahannan's Boon",
+ "description": "Increases the target's Jump skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2257": {
+ "name": "Jahannan's Blessing",
+ "description": "Increases the caster's Jump skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2258": {
+ "name": "Gears Unwound",
+ "description": "Decreases the target's Run skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2259": {
+ "name": "Leaden Feet Self VII",
+ "description": "Decreases the caster's Run skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2260": {
+ "name": "Kwipetian Vision",
+ "description": "Decreases the target's Leadership skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2261": {
+ "name": "Leadership Ineptitude Self VII",
+ "description": "Decreases the caster's Leadership skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2262": {
+ "name": "Ar-Pei's Boon",
+ "description": "Increases the target's Leadership skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2263": {
+ "name": "Ar-Pei's Blessing",
+ "description": "Increases the caster's Leadership skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2264": {
+ "name": "Wrath of Harlune",
+ "description": "Decreases the target's Life Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2265": {
+ "name": "Life Magic Ineptitude Self VII",
+ "description": "Decreases the caster's Life Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2266": {
+ "name": "Harlune's Boon",
+ "description": "Increases the target's Life Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2267": {
+ "name": "Harlune's Blessing",
+ "description": "Increases the caster's Life Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2268": {
+ "name": "Fat Fingers",
+ "description": "Decreases the target's Lockpick skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2269": {
+ "name": "Lockpick Ineptitude Self VII",
+ "description": "Decreases the caster's Lockpick skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2270": {
+ "name": "Oswald's Boon",
+ "description": "Increases the target's Lockpick skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2271": {
+ "name": "Oswald's Blessing",
+ "description": "Increases the caster's Lockpick skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2272": {
+ "name": "Light Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2273": {
+ "name": "Light Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2274": {
+ "name": "Light Weapon Mastery Other VII",
+ "description": "Increases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2275": {
+ "name": "Light Weapon Mastery Self VII",
+ "description": "Increases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2276": {
+ "name": "Celdiseth's Boon",
+ "description": "Increases the target's Magic Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2277": {
+ "name": "Celdiseth's Blessing",
+ "description": "Increases the caster's Magic Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2278": {
+ "name": "Eyes Clouded",
+ "description": "Decreases the target's Magic Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2279": {
+ "name": "Magic Item Tinkering Ignorance Self VII",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2280": {
+ "name": "Web of Resistance",
+ "description": "Increases the target's Magic Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2281": {
+ "name": "Aura of Resistance",
+ "description": "Increases the caster's Magic Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2282": {
+ "name": "Futility",
+ "description": "Decreases the target's Magic Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2283": {
+ "name": "Magic Yield Self VII",
+ "description": "Decreases the caster's Magic Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2284": {
+ "name": "Inefficient Investment",
+ "description": "Decreases the target's Mana Conversion skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2285": {
+ "name": "Mana Conversion Ineptitude Self VII",
+ "description": "Decreases the caster's Mana Conversion skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2286": {
+ "name": "Nuhmudira's Boon",
+ "description": "Increases the target's Mana Conversion skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2287": {
+ "name": "Nuhmudira's Blessing",
+ "description": "Increases the caster's Mana Conversion skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2288": {
+ "name": "Topheron's Boon",
+ "description": "Increases the target's Assess Monster skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2289": {
+ "name": "Topheron's Blessing",
+ "description": "Increases the caster's Assess Monster skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2290": {
+ "name": "Ignorance's Bliss",
+ "description": "Decreases the target's Assess Monster skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2291": {
+ "name": "Monster Unfamiliarity Self VII",
+ "description": "Decreases the caster's Assess Monster skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2292": {
+ "name": "Kaluhc's Boon",
+ "description": "Increases the target's Assess Person skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2293": {
+ "name": "Kaluhc's Blessing",
+ "description": "Increases the caster's Assess Person skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2294": {
+ "name": "Introversion",
+ "description": "Decreases the target's Assess Person skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2295": {
+ "name": "Person Unfamiliarity Self VII",
+ "description": "Decreases the caster's Assess Person skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2296": {
+ "name": "Light Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2297": {
+ "name": "Light Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2298": {
+ "name": "Light Weapon Mastery Other VII",
+ "description": "Increases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2299": {
+ "name": "Light Weapon Mastery Self VII",
+ "description": "Increases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2300": {
+ "name": "Saladur's Boon",
+ "description": "Increases the target's Run skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2301": {
+ "name": "Saladur's Blessing",
+ "description": "Increases the caster's Run skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2302": {
+ "name": "Light Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2303": {
+ "name": "Light Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2304": {
+ "name": "Light Weapon Mastery Other VII",
+ "description": "Increases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2305": {
+ "name": "Light Weapon Mastery Self VII",
+ "description": "Increases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2306": {
+ "name": "Heavy Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Heavy Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2307": {
+ "name": "Heavy Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Heavy Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2308": {
+ "name": "Heavy Weapon Mastery Other VII",
+ "description": "Increases the target's Heavy Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2309": {
+ "name": "Heavy Weapon Mastery Self VII",
+ "description": "Increases the caster's Heavy Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2310": {
+ "name": "Missile Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2311": {
+ "name": "Missile Weapon Ineptitude Self VII",
+ "description": "Decreases the caster's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2312": {
+ "name": "Missile Weapon Mastery Other VII",
+ "description": "Increases the target's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2313": {
+ "name": "Missile Weapon Mastery Self VII",
+ "description": "Increases the caster's Missile Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2314": {
+ "name": "Light Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2315": {
+ "name": "Light Weapon Mastery Other VII",
+ "description": "Increases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2316": {
+ "name": "Light Weapon Mastery Self VII",
+ "description": "Increases the caster's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2317": {
+ "name": "Light Weapon Ineptitude Other VII",
+ "description": "Decreases the target's Light Weapons skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2318": {
+ "name": "Gravity Well",
+ "description": "Decrease the target's Melee Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2319": {
+ "name": "Vulnerability Self VII",
+ "description": "Decrease the target's Melee Defense skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2320": {
+ "name": "Wrath of the Hieromancer",
+ "description": "Decreases the target's War Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2321": {
+ "name": "War Magic Ineptitude Self VII",
+ "description": "Decreases the caster's War Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2322": {
+ "name": "Hieromancer's Boon",
+ "description": "Increases the target's War Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2323": {
+ "name": "Hieromancer's Blessing",
+ "description": "Increases the caster's War Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2324": {
+ "name": "Koga's Boon",
+ "description": "Increases the target's Weapon Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2325": {
+ "name": "Koga's Blessing",
+ "description": "Increases the caster's Weapon Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2326": {
+ "name": "Eye of the Grunt",
+ "description": "Decreases the target's Weapon Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2327": {
+ "name": "Weapon Tinkering Ignorance Self VII",
+ "description": "Decreases the caster's Weapon Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2328": {
+ "name": "Vitality Siphon",
+ "description": "Drains 50% of the target's Health and gives 50% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2329": {
+ "name": "Essence Void",
+ "description": "Drains 50% of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2330": {
+ "name": "Vigor Siphon",
+ "description": "Drains 50% of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2331": {
+ "name": "Health to Mana Other VII",
+ "description": "Drains one-half of the target's Health and gives 175% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2332": {
+ "name": "Cannibalize",
+ "description": "Drains one-half of the caster's Health and gives 175% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2333": {
+ "name": "Health to Stamina Other VII",
+ "description": "Drains one-half of the target's Health and gives 175% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2334": {
+ "name": "Self Sacrifice",
+ "description": "Drains one-half of the caster's Health and gives 175% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2335": {
+ "name": "Gift of Vitality",
+ "description": "Drains one-quarter of the caster's Health and gives 175% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2336": {
+ "name": "Gift of Essence",
+ "description": "Drains one-quarter of the caster's Mana and gives 175% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2337": {
+ "name": "Gift of Vigor",
+ "description": "Drains one-quarter of the caster's Stamina and gives 175% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2338": {
+ "name": "Mana to Health Other VII",
+ "description": "Drains one-half of the target's Mana and gives 175% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2339": {
+ "name": "Energize Vitality",
+ "description": "Drains one-half of the caster's Mana and gives 175% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2340": {
+ "name": "Mana to Stamina Other VII",
+ "description": "Drains one-half of the target's Mana and gives 175% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2341": {
+ "name": "Energize Vigor",
+ "description": "Drains one-half of the caster's Mana and gives 175% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2342": {
+ "name": "Stamina to Health Other VII",
+ "description": "Drains one-half of the target's Stamina and gives 175% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2343": {
+ "name": "Rushed Recovery",
+ "description": "Drains one-half of the caster's Stamina and gives 175% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2344": {
+ "name": "Stamina to Mana Other VII",
+ "description": "Drains one-half of the target's Stamina and gives 175% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2345": {
+ "name": "Meditative Trance",
+ "description": "Drains one-half of the caster's Stamina and gives 175% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2346": {
+ "name": "Malediction",
+ "description": "Decreases maximum mana by 50 points.",
+ "school": "Life Magic",
+ "family": "284",
+ "difficulty": "50",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2347": {
+ "name": "Concentration",
+ "description": "Increases the caster's Focus by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "13",
+ "difficulty": "100",
+ "duration": "1000",
+ "mana": "40"
+ },
+ "2348": {
+ "name": "Brilliance",
+ "description": "Increases the target's Focus by 50 points for a short period of time.",
+ "school": "Creature Enchantment",
+ "family": "15",
+ "difficulty": "250",
+ "duration": "30",
+ "mana": "60"
+ },
+ "2349": {
+ "name": "Hieromancer's Ward",
+ "description": "Improves a shield or piece of armor's armor value by 170 points. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "190",
+ "difficulty": "200",
+ "duration": "780",
+ "mana": "50"
+ },
+ "2350": {
+ "name": "Greater Decay Durance",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "188",
+ "difficulty": "200",
+ "duration": "780",
+ "mana": "50"
+ },
+ "2351": {
+ "name": "Greater Consumption Durance",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "186",
+ "difficulty": "200",
+ "duration": "780",
+ "mana": "50"
+ },
+ "2352": {
+ "name": "Greater Stasis Durance",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "184",
+ "difficulty": "200",
+ "duration": "780",
+ "mana": "50"
+ },
+ "2353": {
+ "name": "Greater Stimulation Durance",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "182",
+ "difficulty": "200",
+ "duration": "780",
+ "mana": "50"
+ },
+ "2354": {
+ "name": "Lesser Piercing Durance",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "180",
+ "difficulty": "50",
+ "duration": "360",
+ "mana": "20"
+ },
+ "2355": {
+ "name": "Lesser Slashing Durance",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "178",
+ "difficulty": "50",
+ "duration": "360",
+ "mana": "20"
+ },
+ "2356": {
+ "name": "Lesser Bludgeoning Durance",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "176",
+ "difficulty": "50",
+ "duration": "360",
+ "mana": "20"
+ },
+ "2357": {
+ "name": "Fauna Perlustration",
+ "description": "Increases the target's Assess Monster skill by 60 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "250",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2358": {
+ "name": "Lyceum Recall",
+ "description": "Transports the caster to the Ishilai Lyceum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "2359": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2360": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2361": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2362": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2363": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2364": {
+ "name": "Egress",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2365": {
+ "name": "something you're gonna fear for a long time",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2366": {
+ "name": "Bovine Intervention",
+ "description": "When Cow gods intervene.....",
+ "school": "Creature Enchantment",
+ "family": "237",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "2367": {
+ "name": "Groovy Portal Sending",
+ "description": "Sends you on a magical. groove-filled trip....",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "2000",
+ "duration": "-1",
+ "mana": "50000"
+ },
+ "2368": {
+ "name": "a powerful force",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2369": {
+ "name": "Expulsion",
+ "description": "Transports the target out of Lady Aerfalle's presence.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2370": {
+ "name": "Gift of Rotting Flesh",
+ "description": "Increases damage the target takes from Acid by 300%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "70"
+ },
+ "2371": {
+ "name": "Curse of Mortal Flesh",
+ "description": "Increases damage the target takes from Fire by 300%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "50"
+ },
+ "2372": {
+ "name": "Price of Immortality",
+ "description": "Prevents all natural healing by the target.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "275",
+ "duration": "300",
+ "mana": "60"
+ },
+ "2373": {
+ "name": "Enervation of the Heart",
+ "description": "Decreases maximum health by 50 points.",
+ "school": "Life Magic",
+ "family": "68",
+ "difficulty": "250",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2374": {
+ "name": "Enervation of the Limb",
+ "description": "Decreases maximum stamina by 50 points.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "250",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2375": {
+ "name": "Enervation of the Mind",
+ "description": "Decreases maximum mana by 50 points.",
+ "school": "Life Magic",
+ "family": "284",
+ "difficulty": "50",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2376": {
+ "name": "Glimpse of Annihilation",
+ "description": "Increases the target's War Magic skill by 5 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "255",
+ "difficulty": "5",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2377": {
+ "name": "Vision of Annihilation",
+ "description": "Increases the target's War Magic skill by 10 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "255",
+ "difficulty": "10",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2378": {
+ "name": "Beast Murmur",
+ "description": "Increases the target's Creature Enchantment skill by 10 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "251",
+ "difficulty": "10",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2379": {
+ "name": "Beast Whisper",
+ "description": "Increases the target's Creature Enchantment skill by 5 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "251",
+ "difficulty": "5",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2380": {
+ "name": "Grip of Instrumentality",
+ "description": "Increases the target's Item Enchantment skill by 10 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "253",
+ "difficulty": "1",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2381": {
+ "name": "Touch of Instrumentality",
+ "description": "Increases the target's Item Enchantment skill by 5 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "253",
+ "difficulty": "1",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2382": {
+ "name": "Unnatural Persistence",
+ "description": "Increase caster's natural healing rate by 100%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "285",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2383": {
+ "name": "Dark Flame",
+ "description": "Shoots a dark flame at the target. The flame does 68-136 points of righteous fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2384": {
+ "name": "Arcane Restoration",
+ "description": "Increases the caster's natural mana rate by 100%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "285",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "2385": {
+ "name": "Vigilance",
+ "description": "Increases the rate at which the target regains Stamina by 100%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "275",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2386": {
+ "name": "Indomitability",
+ "description": "Increase target's natural healing rate by 200%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "550",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2387": {
+ "name": "Determination",
+ "description": "Increases the target's Focus by 10 points. can be layered with other Focus spells.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "10",
+ "duration": "150",
+ "mana": "10"
+ },
+ "2388": {
+ "name": "Caution",
+ "description": "Increases the target's Coordination by 10 points. can be layered with other Coordination spells.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "10",
+ "duration": "150",
+ "mana": "10"
+ },
+ "2389": {
+ "name": "Vigor",
+ "description": "Increases the target's Endurance by 10 points. can be layered with other Endurance spells.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "10",
+ "duration": "150",
+ "mana": "10"
+ },
+ "2390": {
+ "name": "Haste",
+ "description": "Increases the target's Quickness by 10 points. can be layered with other Quickness spells.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "10",
+ "duration": "150",
+ "mana": "10"
+ },
+ "2391": {
+ "name": "Prowess",
+ "description": "Increases the target's Strength by 10 points. can be layered with other Strength spells.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "10",
+ "duration": "150",
+ "mana": "10"
+ },
+ "2392": {
+ "name": "Serenity",
+ "description": "Increases the target's Self by 10 points. can be layered with other Self spells.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "10",
+ "duration": "150",
+ "mana": "10"
+ },
+ "2393": {
+ "name": "Force Armor",
+ "description": "Increases the caster's natural armor by 75 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2394": {
+ "name": "Acid Shield",
+ "description": "Reduces damage the caster takes from acid by 33%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2395": {
+ "name": "Electric Shield",
+ "description": "Reduces damage the caster takes from Lightning by 33%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2396": {
+ "name": "Flame Shield",
+ "description": "Reduces damage the caster takes from fire by 33%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2397": {
+ "name": "Ice Shield",
+ "description": "Reduces damage the caster takes from Cold by 33%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2398": {
+ "name": "Bludgeon Shield",
+ "description": "Reduces damage the caster takes from Bludgeoning by 33%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2399": {
+ "name": "Piercing Shield",
+ "description": "Reduces damage the caster takes from Piercing by 33%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2400": {
+ "name": "Slashing Shield",
+ "description": "Reduces damage the caster takes from Slashing by 33%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "2401": {
+ "name": "Into the Garden",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2402": {
+ "name": "Essence Lull",
+ "description": "Reduces the rate at which mana is consumed.",
+ "school": "Item Enchantment",
+ "family": "83",
+ "difficulty": "100",
+ "duration": "240",
+ "mana": "30"
+ },
+ "2403": {
+ "name": "Balanced Breakfast",
+ "description": "Increases the target's Strength by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "277",
+ "duration": "10800",
+ "mana": "60"
+ },
+ "2404": {
+ "name": "Collector Acid Protection",
+ "description": "Reduces damage the caster takes from acid by 90%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2405": {
+ "name": "Collector Blade Protection",
+ "description": "Reduces damage the caster takes from slashing by 90%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2406": {
+ "name": "Collector Bludgeoning Protection",
+ "description": "Reduces damage the caster takes from bludgeoning by 90%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2407": {
+ "name": "Collector Cold Protection",
+ "description": "Reduces damage the caster takes from cold by 90%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2408": {
+ "name": "Collector Fire Protection",
+ "description": "Reduces damage the caster takes from fire by 90%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2409": {
+ "name": "Collector Lightning Protection",
+ "description": "Reduces damage the caster takes from lightning by 90%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2410": {
+ "name": "Collector Piercing Protection",
+ "description": "Reduces damage the caster takes from piercing by 90%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2411": {
+ "name": "Discipline",
+ "description": "Increases a weapon's damage value by 30 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "450",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "2412": {
+ "name": "Enduring Coordination",
+ "description": "Increases the target's Coordination by 35 points for three hours.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "310",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "2413": {
+ "name": "Enduring Focus",
+ "description": "Increases the target's Focus by 35 points for three hours.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "310",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "2414": {
+ "name": "Enduring Stoicism",
+ "description": "Increases the caster's Endurance by 35 points for three hours.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "310",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "2415": {
+ "name": "Eye of the Hunter",
+ "description": "Enhances the penetration of arrow shots. adding 25% to the bow's damage modifier.",
+ "school": "Item Enchantment",
+ "family": "325",
+ "difficulty": "25",
+ "duration": "1020",
+ "mana": "50"
+ },
+ "2416": {
+ "name": "High Tension String",
+ "description": "Enhances the penetration of arrow shots. adding 20% to the bow's damage modifier.",
+ "school": "Item Enchantment",
+ "family": "325",
+ "difficulty": "20",
+ "duration": "1020",
+ "mana": "50"
+ },
+ "2417": {
+ "name": "Obedience",
+ "description": "Increases the target's Leadership skill by 10 points. This can be combined with other Leadership-enhancing spells.",
+ "school": "Creature Enchantment",
+ "family": "293",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2418": {
+ "name": "Occult Potence",
+ "description": "Doubles the target's natural mana renewal rate for three hours.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "310",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "2419": {
+ "name": "Panic Attack",
+ "description": "Causes the target to quake and shiver uncontrollably.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "200",
+ "duration": "30",
+ "mana": "300"
+ },
+ "2420": {
+ "name": "Panoply of the Queenslayer",
+ "description": "Increases the target's natural armor by 200 points for three hours.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "250",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "2421": {
+ "name": "Paralyzing Fear",
+ "description": "Causes the target to freeze in horror.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "410",
+ "duration": "30",
+ "mana": "300"
+ },
+ "2422": {
+ "name": "Send to Dryreach",
+ "description": "Transports the target to the town of Dryreach.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2423": {
+ "name": "Precise",
+ "description": "This weapon is highly accurate in the hands of a skilled bowman. enchancing skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2424": {
+ "name": "Rabbit's Eye",
+ "description": "Increases the target's Focus by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "500",
+ "duration": "1020",
+ "mana": "70"
+ },
+ "2425": {
+ "name": "Stone Wall",
+ "description": "Increases the caster's Endurance by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "310",
+ "duration": "1020",
+ "mana": "70"
+ },
+ "2426": {
+ "name": "Strong Pull",
+ "description": "The tension of the bowstring gives this weapon enhanced range when wielded by a skilled bowman.",
+ "school": "Item Enchantment",
+ "family": "327",
+ "difficulty": "200",
+ "duration": "1020",
+ "mana": "50"
+ },
+ "2427": {
+ "name": "Sugar Rush",
+ "description": "Increases the target's Coordination by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "500",
+ "duration": "1020",
+ "mana": "70"
+ },
+ "2428": {
+ "name": "Timaru's Shelter",
+ "description": "Increases the target's Magic Defense skill by 10 points. Additional protection can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "10",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2429": {
+ "name": "Timaru's Shelter",
+ "description": "Increases the target's natural armor by 30 points. Additional protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "295",
+ "difficulty": "280",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2430": {
+ "name": "Timaru's Shelter",
+ "description": "Increases the target's Quickness by 10 points. Additional protection can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "297",
+ "difficulty": "280",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2431": {
+ "name": "Vivification",
+ "description": "Doubles the target's natural healing rate for three hours.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "290",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "2432": {
+ "name": "Acid Ward",
+ "description": "Reduces damage the target takes from acid by 20%. Additional magical protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "285",
+ "difficulty": "50",
+ "duration": "10800",
+ "mana": "20"
+ },
+ "2433": {
+ "name": "Flame Ward",
+ "description": "Reduces damage the target takes from fire by 20%. Additional magical protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "287",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "20"
+ },
+ "2434": {
+ "name": "Frost Ward",
+ "description": "Reduces damage the target takes from cold by 20%. Additional magical protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "20"
+ },
+ "2435": {
+ "name": "Lightning Ward",
+ "description": "Reduces damage the target takes from lightning by 20%. Additional magical protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "291",
+ "difficulty": "50",
+ "duration": "10800",
+ "mana": "20"
+ },
+ "2436": {
+ "name": "Laying on of Hands",
+ "description": "Increases the target's Healing skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "100",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2437": {
+ "name": "Greater Rockslide",
+ "description": "Increases a weapon's Attack Skill modifier by 5%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "30",
+ "duration": "780",
+ "mana": "60"
+ },
+ "2438": {
+ "name": "Lesser Rockslide",
+ "description": "Increases a weapon's Attack Skill modifier by 1%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "60"
+ },
+ "2439": {
+ "name": "Rockslide",
+ "description": "Increases a weapon's Attack Skill modifier by 3%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "60"
+ },
+ "2440": {
+ "name": "Greater Stone Cliffs",
+ "description": "Increases the target's Melee Defense skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "321",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2441": {
+ "name": "Lesser Stone Cliffs",
+ "description": "Increases the target's Melee Defense skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "321",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2442": {
+ "name": "Stone Cliffs",
+ "description": "Increases the target's Melee Defense skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "321",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2443": {
+ "name": "Greater Strength of Earth",
+ "description": "Increases the target's Strength by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "40"
+ },
+ "2444": {
+ "name": "Lesser Strength of Earth",
+ "description": "Increases the target's Strength by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "40"
+ },
+ "2445": {
+ "name": "Strength of Earth",
+ "description": "Increases the target's Strength by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "40"
+ },
+ "2446": {
+ "name": "Greater Growth",
+ "description": "Increase the target's natural healing rate by 75%.",
+ "school": "Life Magic",
+ "family": "309",
+ "difficulty": "30",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2447": {
+ "name": "Lesser Growth",
+ "description": "Increase caster's natural healing rate by 25%.",
+ "school": "Life Magic",
+ "family": "309",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2448": {
+ "name": "Growth",
+ "description": "Increase the target's natural healing rate by 50%.",
+ "school": "Life Magic",
+ "family": "309",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2449": {
+ "name": "Greater Hunter's Acumen",
+ "description": "Increases the target's Coordination by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2450": {
+ "name": "Lesser Hunter's Acumen",
+ "description": "Increases the target's Coordination by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2451": {
+ "name": "Hunter's Acumen",
+ "description": "Increases the target's Coordination by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2452": {
+ "name": "Greater Thorns",
+ "description": "Increases a weapon's damage value by 4 points.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "51",
+ "duration": "780",
+ "mana": "40"
+ },
+ "2453": {
+ "name": "Lesser Thorns",
+ "description": "Increases a weapon's damage value by 2 points.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "40"
+ },
+ "2454": {
+ "name": "Thorns",
+ "description": "Increases a weapon's damage value by 3 points.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "40"
+ },
+ "2455": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2456": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2457": {
+ "name": "Cascade",
+ "description": "Increases the target's Light Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2458": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Finesse Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2459": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Finesse Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2460": {
+ "name": "Cascade",
+ "description": "Increases the target's Finesse Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2461": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2462": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2463": {
+ "name": "Cascade",
+ "description": "Increases the target's Light Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2464": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2465": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2466": {
+ "name": "Cascade",
+ "description": "Increases the target's Light Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2467": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2468": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2469": {
+ "name": "Cascade",
+ "description": "Increases the target's Light Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2470": {
+ "name": "Greater Still Water",
+ "description": "Increases the target's Endurance by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2471": {
+ "name": "Lesser Still Water",
+ "description": "Increases the target's Endurance by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2472": {
+ "name": "Still Water",
+ "description": "Increases the target's Endurance by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2473": {
+ "name": "Greater Torrent",
+ "description": "Increases the target's Quickness by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "12",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2474": {
+ "name": "Lesser Torrent",
+ "description": "Increases the target's Quickness by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2475": {
+ "name": "Torrent",
+ "description": "Increases the target's Quickness by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "8",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "2476": {
+ "name": "Safe Harbor",
+ "description": "Transports the target to the town of Timaru.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2477": {
+ "name": "Free Trip to the Aluvian Casino",
+ "description": "Transports the target to Monty's Den of Iniquity.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2478": {
+ "name": "Cragstone Reinforcements camp recall",
+ "description": "Transports the target to the Cragstone Reinforcements Camp portal.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2479": {
+ "name": "Advance Camp Recall",
+ "description": "Transports the target to the Cragstone advance camp.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2480": {
+ "name": "Free Trip to the Gharun'dim Casino",
+ "description": "Transports the target to Arshid's Den of Iniquity.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2481": {
+ "name": "Zaikhal Reinforcement Camp Recall",
+ "description": "Transports the target to the Zaikhal Reinforcement Camp.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2482": {
+ "name": "Zaikhal Advance Camp Recall",
+ "description": "Transports the target to the Zaikhal Advance Camp.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2483": {
+ "name": "Free Trip to the Sho Casino",
+ "description": "Transports the target to Gan-Zo's Den of Iniquity.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2484": {
+ "name": "Hebian-to Reinforcements Camp Portal",
+ "description": "Transports the target to the Hebian-to Reinforcements Camp.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2485": {
+ "name": "Hebian-to Advance Camp Recall",
+ "description": "Transports the target to the Hebian-to Advance Camp.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2486": {
+ "name": "Blood Thirst",
+ "description": "Increases a weapon's damage value by 2 points.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2487": {
+ "name": "Spirit Strike",
+ "description": "Increases a weapon's damage value by 2 points.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2488": {
+ "name": "Weapon Familiarity",
+ "description": "The crafter of this weapon is intimately familiar with its handling and suffers no defense penalty while wielding it. Additional magical enhancements can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "329",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "2489": {
+ "name": "Free Ride to the Shoushi Southeast Outpost Portal",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2490": {
+ "name": "Free Ride to the Holtburg South Outpost",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2491": {
+ "name": "Free Ride to the Holtburg West Outpost",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2492": {
+ "name": "Free Ride to the Shoushi West Outpost",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2493": {
+ "name": "Free Ride to the Yaraq East Outpost",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2494": {
+ "name": "Free Ride to the Yaraq North Outpost",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2495": {
+ "name": "Send Reinforcements",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2496": {
+ "name": "Send Reinforcements",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2497": {
+ "name": "Send Reinforcements",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2498": {
+ "name": "Send Reinforcements",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2499": {
+ "name": "Send Reinforcements",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2500": {
+ "name": "Send Reinforcements",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2501": {
+ "name": "Major Alchemical Prowess",
+ "description": "Increases the target's Alchemy skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "333",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2502": {
+ "name": "Major Arcane Prowess",
+ "description": "Increases the target's Arcane Lore skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "335",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2503": {
+ "name": "Major Armor Tinkering Expertise",
+ "description": "Increases the target's Armor Tinkering skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "337",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2504": {
+ "name": "Major Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2505": {
+ "name": "Major Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2506": {
+ "name": "Major Cooking Prowess",
+ "description": "Increases the target's Cooking skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "339",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2507": {
+ "name": "Major Creature Enchantment Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "251",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2508": {
+ "name": "Major Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2509": {
+ "name": "Major Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2510": {
+ "name": "Major Deception Prowess",
+ "description": "Increases the target's Deception skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "343",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2511": {
+ "name": "Major Fealty",
+ "description": "Increases the target's Loyalty skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "345",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2512": {
+ "name": "Major Fletching Prowess",
+ "description": "Increases the target's Fletching skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "347",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2513": {
+ "name": "Major Healing Prowess",
+ "description": "Increases the target's Healing skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "349",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2514": {
+ "name": "Major Impregnability",
+ "description": "Increases the target's Missile Defense skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "654",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2515": {
+ "name": "Major Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2516": {
+ "name": "Major Item Enchantment Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "253",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2517": {
+ "name": "Major Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "353",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2518": {
+ "name": "Major Jumping Prowess",
+ "description": "Increases the target's Jump skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "355",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2519": {
+ "name": "Major Leadership",
+ "description": "Increases the target's Leadership skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "293",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2520": {
+ "name": "Major Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "357",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2521": {
+ "name": "Major Lockpick Prowess",
+ "description": "Increases the target's Lockpick skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "359",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2522": {
+ "name": "Major Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2523": {
+ "name": "Major Magic Item Tinkering Expertise",
+ "description": "Increases the target's Magic Item Tinkering skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "361",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2524": {
+ "name": "Major Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2525": {
+ "name": "Major Mana Conversion Prowess",
+ "description": "Increases the target's Mana Conversion skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2526": {
+ "name": "Major Monster Attunement",
+ "description": "Increases the target's Assess Creature skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "365",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2527": {
+ "name": "Major Person Attunement",
+ "description": "Increases the target's Assess Person skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "367",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2528": {
+ "name": "Major Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2529": {
+ "name": "Major Sprint",
+ "description": "Increases the target's Run skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "369",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2530": {
+ "name": "Major Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2531": {
+ "name": "Major Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2532": {
+ "name": "Major Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2533": {
+ "name": "Major Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2534": {
+ "name": "Major War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "255",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2535": {
+ "name": "Major Weapon Tinkering Expertise",
+ "description": "Increases the target's Weapon Tinkering skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "377",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2536": {
+ "name": "Minor Alchemical Prowess",
+ "description": "Increases the target's Alchemy skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "333",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2537": {
+ "name": "Minor Arcane Prowess",
+ "description": "Increases the target's Arcane Lore skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "335",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2538": {
+ "name": "Minor Armor Tinkering Expertise",
+ "description": "Increases the target's Armor Tinkering skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "337",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2539": {
+ "name": "Minor Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2540": {
+ "name": "Minor Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2541": {
+ "name": "Minor Cooking Prowess",
+ "description": "Increases the target's Cooking skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "339",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2542": {
+ "name": "Minor Creature Enchantment Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "251",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2543": {
+ "name": "Minor Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2544": {
+ "name": "Minor Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2545": {
+ "name": "Minor Deception Prowess",
+ "description": "Increases the target's Deception skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "343",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2546": {
+ "name": "Minor Fealty",
+ "description": "Increases the target's Loyalty skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "345",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2547": {
+ "name": "Minor Fletching Prowess",
+ "description": "Increases the target's Fletching skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "347",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2548": {
+ "name": "Minor Healing Prowess",
+ "description": "Increases the target's Healing skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "349",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2549": {
+ "name": "Minor Impregnability",
+ "description": "Increases the target's Missile Defense skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "654",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2550": {
+ "name": "Minor Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2551": {
+ "name": "Minor Item Enchantment Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "253",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2552": {
+ "name": "Minor Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "353",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2553": {
+ "name": "Minor Jumping Prowess",
+ "description": "Increases the target's Jump skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "355",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2554": {
+ "name": "Minor Leadership",
+ "description": "Increases the target's Leadership skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "293",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2555": {
+ "name": "Minor Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "357",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2556": {
+ "name": "Minor Lockpick Prowess",
+ "description": "Increases the target's Lockpick skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "359",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2557": {
+ "name": "Minor Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2558": {
+ "name": "Minor Magic Item Tinkering Expertise",
+ "description": "Increases the target's Magic Item Tinkering skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "361",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2559": {
+ "name": "Minor Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2560": {
+ "name": "Minor Mana Conversion Prowess",
+ "description": "Increases the target's Mana Conversion skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2561": {
+ "name": "Minor Monster Attunement",
+ "description": "Increases the target's Assess Creature skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "365",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2562": {
+ "name": "Minor Person Attunement",
+ "description": "Increases the target's Assess Person skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "367",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2563": {
+ "name": "Minor Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2564": {
+ "name": "Minor Sprint",
+ "description": "Increases the target's Run skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "369",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2565": {
+ "name": "Minor Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2566": {
+ "name": "Minor Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2567": {
+ "name": "Minor Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2568": {
+ "name": "Minor Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2569": {
+ "name": "Minor War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "255",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2570": {
+ "name": "Minor Weapon Tinkering Expertise",
+ "description": "Increases the target's Weapon Tinkering skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "377",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2571": {
+ "name": "Major Armor",
+ "description": "Increases the target's natural armor by 40 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "40",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2572": {
+ "name": "Major Coordination",
+ "description": "Increases the target's Coordination by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2573": {
+ "name": "Major Endurance",
+ "description": "Increases the target's Endurance by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2574": {
+ "name": "Major Focus",
+ "description": "Increases the target's Focus by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2575": {
+ "name": "Major Quickness",
+ "description": "Increases the target's Quickness by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2576": {
+ "name": "Major Strength",
+ "description": "Increases the target's Strength by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2577": {
+ "name": "Major Willpower",
+ "description": "Increases the target's Self by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2578": {
+ "name": "Minor Armor",
+ "description": "Increases the target's natural armor by 20 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2579": {
+ "name": "Minor Coordination",
+ "description": "Increases the target's Coordination by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2580": {
+ "name": "Minor Endurance",
+ "description": "Increases the target's Endurance by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2581": {
+ "name": "Minor Focus",
+ "description": "Increases the target's Focus by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2582": {
+ "name": "Minor Quickness",
+ "description": "Increases the target's Quickness by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2583": {
+ "name": "Minor Strength",
+ "description": "Increases the target's Strength by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2584": {
+ "name": "Minor Willpower",
+ "description": "Increases the target's Self by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2585": {
+ "name": "Major Acid Bane",
+ "description": "Increases a shield or piece of armor's resistance to Acid damage by 15%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "381",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2586": {
+ "name": "Major Blood Thirst",
+ "description": "Increases a weapon's damage value by 4 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2587": {
+ "name": "Major Bludgeoning Bane",
+ "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 15%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "383",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2588": {
+ "name": "Major Defender",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "329",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2589": {
+ "name": "Major Flame Bane",
+ "description": "Increases a shield or piece of armor's resistance to Fire damage by 15%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "385",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2590": {
+ "name": "Major Frost Bane",
+ "description": "Increases a shield or piece of armor's resistance to Cold damage by 15%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "387",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2591": {
+ "name": "Major Heart Thirst",
+ "description": "Increases a weapon's Attack Skill modifier by 5%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2592": {
+ "name": "Major Impenetrability",
+ "description": "Improves a shield or piece of armor's Armor value by 40 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "391",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2593": {
+ "name": "Major Piercing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Piercing damage by 15%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "393",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2594": {
+ "name": "Major Slashing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Slashing damage by 15%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "395",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2595": {
+ "name": "Major Storm Bane",
+ "description": "Increases a shield or piece of armor's resistance to Electric damage by 15%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "397",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2596": {
+ "name": "Major Swift Hunter",
+ "description": "Improves a weapon's speed by 20 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "399",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2597": {
+ "name": "Minor Acid Bane",
+ "description": "Increases a shield or piece of armor's resistance to Acid damage by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "381",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2598": {
+ "name": "Minor Blood Thirst",
+ "description": "Increases a weapon's damage value by 2 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2599": {
+ "name": "Minor Bludgeoning Bane",
+ "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "383",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2600": {
+ "name": "Minor Defender",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "329",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2601": {
+ "name": "Minor Flame Bane",
+ "description": "Increases a shield or piece of armor's resistance to Fire damage by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "385",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2602": {
+ "name": "Minor Frost Bane",
+ "description": "Increases a shield or piece of armor's resistance to Cold damage by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "387",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2603": {
+ "name": "Minor Heart Thirst",
+ "description": "Increases a weapon's Attack Skill modifier by 3%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2604": {
+ "name": "Minor Impenetrability",
+ "description": "Improves a shield or piece of armor's Armor value by 20 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "391",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2605": {
+ "name": "Minor Piercing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Piercing damage by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "393",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2606": {
+ "name": "Minor Slashing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Slashing damage by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "395",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2607": {
+ "name": "Minor Storm Bane",
+ "description": "Increases a shield or piece of armor's resistance to Electric damage by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "397",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2608": {
+ "name": "Minor Swift Hunter",
+ "description": "Improves a weapon's speed by 10 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "399",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2609": {
+ "name": "Major Acid Ward",
+ "description": "Reduces damage the target takes from Acid by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "285",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2610": {
+ "name": "Major Bludgeoning Ward",
+ "description": "Reduces damage the target takes from Bludgeoning by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "401",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2611": {
+ "name": "Major Flame Ward",
+ "description": "Reduces damage the target takes from Fire by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "287",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2612": {
+ "name": "Major Frost Ward",
+ "description": "Reduces damage the target takes from Cold by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2613": {
+ "name": "Major Piercing Ward",
+ "description": "Reduces damage the target takes from Piercing by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "405",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2614": {
+ "name": "Major Slashing Ward",
+ "description": "Reduces damage the target takes from Slashing by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "403",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2615": {
+ "name": "Major Storm Ward",
+ "description": "Reduces damage the target takes from Lightning by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "291",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2616": {
+ "name": "Minor Acid Ward",
+ "description": "Reduces damage the target takes from Acid by 10%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "285",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2617": {
+ "name": "Minor Bludgeoning Ward",
+ "description": "Reduces damage the target takes from Bludgeoning by 10%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "401",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2618": {
+ "name": "Minor Flame Ward",
+ "description": "Reduces damage the target takes from Fire by 10%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "287",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2619": {
+ "name": "Minor Frost Ward",
+ "description": "Reduces damage the target takes from Cold by 10%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2620": {
+ "name": "Minor Piercing Ward",
+ "description": "Reduces damage the target takes from Piercing by 10%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "405",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2621": {
+ "name": "Minor Slashing Ward",
+ "description": "Reduces damage the target takes from Slashing by 10%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "403",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2622": {
+ "name": "Minor Storm Ward",
+ "description": "Reduces damage the target takes from Lightning by 10%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "291",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2623": {
+ "name": "Major Health Gain",
+ "description": "Increases the rate at which the target regains Health by 30%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "30",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2624": {
+ "name": "Major Mana Gain",
+ "description": "Increases the rate at which the target regains Mana by 30%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "30",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2625": {
+ "name": "Major Stamina Gain",
+ "description": "Increases the rate at which the target regains Stamina by 30%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "30",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2626": {
+ "name": "Minor Health Gain",
+ "description": "Increases the rate at which the target regains Health by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2627": {
+ "name": "Minor Mana Gain",
+ "description": "Increases the rate at which the target regains Mana by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2628": {
+ "name": "Minor Stamina Gain",
+ "description": "Increases the rate at which the target regains Stamina by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2629": {
+ "name": "Huntress' Boon",
+ "description": "Increases the bow's base damage value by 5 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2630": {
+ "name": "Prey's Reflex",
+ "description": "Allows the wielder to anticipate the movements of the target. adding 6% to the weapon's attack odds. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "6",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2631": {
+ "name": "Secret Descent",
+ "description": "Portals Target to Halls of Hollows Dungeon",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2632": {
+ "name": "Secret Ascent",
+ "description": "Portals Target to the exit of Halls of Hollows Dungeon",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2633": {
+ "name": "Breaking and Entering",
+ "description": "Portals Traget to the Regicide Dungeon",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2634": {
+ "name": "Cautious Egress",
+ "description": "Portals target to the Regicide Dungeon Exit",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2635": {
+ "name": "Witshire Passage",
+ "description": "Summons a portal to the Witshire Dungeon",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "2000",
+ "duration": "-1",
+ "mana": "50000"
+ },
+ "2636": {
+ "name": "Karenua's Curse",
+ "description": "Decreases the target's Lockpick skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "500",
+ "duration": "900",
+ "mana": "70"
+ },
+ "2637": {
+ "name": "Invoking Aun Tanua",
+ "description": "Summons the Spirit of the Tumerok Warrior Aun Tanua to do 160-200 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "2638": {
+ "name": "Heart of Oak",
+ "description": "Increases the target's Self by 20 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "13",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2639": {
+ "name": "Repulsion",
+ "description": "Decreases maximum mana by 20 points.",
+ "school": "Life Magic",
+ "family": "284",
+ "difficulty": "20",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2640": {
+ "name": "Devourer",
+ "description": "Decreases maximum mana by 20 points.",
+ "school": "Life Magic",
+ "family": "284",
+ "difficulty": "20",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2641": {
+ "name": "Force to Arms",
+ "description": "Decreases maximum mana by 100 points.",
+ "school": "Life Magic",
+ "family": "284",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2642": {
+ "name": "Consumption",
+ "description": "Decreases maximum mana by 20 points.",
+ "school": "Life Magic",
+ "family": "284",
+ "difficulty": "20",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2643": {
+ "name": "Stasis",
+ "description": "Decreases maximum mana by 20 points.",
+ "school": "Life Magic",
+ "family": "284",
+ "difficulty": "20",
+ "duration": "60",
+ "mana": "30"
+ },
+ "2644": {
+ "name": "Lifestone Tie",
+ "description": "Links the caster to a targeted Lifestone.",
+ "school": "Item Enchantment",
+ "family": "200",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2645": {
+ "name": "Portal Recall",
+ "description": "Transports the caster to the destination of the last recallable portal the caster traveled through.",
+ "school": "Item Enchantment",
+ "family": "201",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2646": {
+ "name": "Secondary Portal Tie",
+ "description": "Links the caster to a targeted portal.",
+ "school": "Item Enchantment",
+ "family": "200",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2647": {
+ "name": "Secondary Portal Recall",
+ "description": "Transports the caster to the destination of the portal last successfully linked to with Secondary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "201",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2648": {
+ "name": "Summon Secondary Portal I",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "200",
+ "duration": "60",
+ "mana": "70"
+ },
+ "2649": {
+ "name": "Summon Secondary Portal II",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "90"
+ },
+ "2650": {
+ "name": "Summon Secondary Portal III",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "250",
+ "duration": "300",
+ "mana": "110"
+ },
+ "2651": {
+ "name": "Portal Sending Self Sacrifice",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2652": {
+ "name": "Portal Sending Merciless",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2653": {
+ "name": "Feeble Willpower",
+ "description": "Increases the target's Self by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2654": {
+ "name": "Feeble Endurance",
+ "description": "Increases the target's Endurance by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2655": {
+ "name": "Feeble Focus",
+ "description": "Increases the target's Focus by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2656": {
+ "name": "Feeble Quickness",
+ "description": "Increases the target's Quickness by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2657": {
+ "name": "Feeble Strength",
+ "description": "Increases the target's Strength by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2658": {
+ "name": "Feeble Coordination",
+ "description": "Increases the target's Coordination by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2659": {
+ "name": "Moderate Coordination",
+ "description": "Increases the target's Coordination by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "10",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "2660": {
+ "name": "Moderate Endurance",
+ "description": "Increases the target's Endurance by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2661": {
+ "name": "Moderate Focus",
+ "description": "Increases the target's Focus by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2662": {
+ "name": "Moderate Quickness",
+ "description": "Increases the target's Quickness by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2663": {
+ "name": "Moderate Strength",
+ "description": "Increases the target's Strength by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2664": {
+ "name": "Moderate Willpower",
+ "description": "Increases the target's Self by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2665": {
+ "name": "Essence Sluice",
+ "description": "Increases maximum health by 25 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "25",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2666": {
+ "name": "Essence Glutton",
+ "description": "Increases maximum health by 30 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "30",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2667": {
+ "name": "Essence Spike",
+ "description": "Increases maximum health by 20 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "20",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2668": {
+ "name": "Nuhmudiras Benefaction",
+ "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2669": {
+ "name": "Nuhmudiras Bestowment",
+ "description": "Increases the target's Magic Defense skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2670": {
+ "name": "Nuhmudiras Endowment",
+ "description": "Increases the target's Magic Defense skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2671": {
+ "name": "Portal to the Callous Heart",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2672": {
+ "name": "Ring of True Pain",
+ "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "2673": {
+ "name": "Ring of Unspeakable Agony",
+ "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "2674": {
+ "name": "Vicious Rebuke",
+ "description": "Kills the target.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2675": {
+ "name": "Feeble Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2676": {
+ "name": "Feeble Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2677": {
+ "name": "Feeble Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2678": {
+ "name": "Feeble Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2679": {
+ "name": "Feeble Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2680": {
+ "name": "Feeble Mana Conversion Prowess",
+ "description": "Increases the target's Mana Conversion skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2681": {
+ "name": "Feeble Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2682": {
+ "name": "Feeble Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2683": {
+ "name": "Feeble Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2684": {
+ "name": "Feeble Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2685": {
+ "name": "Feeble Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2686": {
+ "name": "Moderate Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2687": {
+ "name": "Moderate Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2688": {
+ "name": "Moderate Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2689": {
+ "name": "Moderate Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2690": {
+ "name": "Moderate Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2691": {
+ "name": "Moderate Mana Conversion Prowess",
+ "description": "Increases the target's Mana Conversion skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2692": {
+ "name": "Moderate Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2693": {
+ "name": "Moderate Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2694": {
+ "name": "Moderate Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2695": {
+ "name": "Moderate Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2696": {
+ "name": "Moderate Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2697": {
+ "name": "Aerfalle's Touch",
+ "description": "Decreases all of the target's attributes by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "300"
+ },
+ "2698": {
+ "name": "Aerfalle's Embrace",
+ "description": "Decreases the attributes of all fellowship members by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "70"
+ },
+ "2699": {
+ "name": "Auroric Whip",
+ "description": "Sends a bolt of lightning streaking towards the target. The stream does 150-200 points of lightning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2700": {
+ "name": "Corrosive Cloud",
+ "description": "Sends a cloud of acid streaking towards the target. The stream does 150-200 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2701": {
+ "name": "Elemental Fury",
+ "description": "Burns the target for 150-200 damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2702": {
+ "name": "Elemental Fury",
+ "description": "Burns the target for 150-200 damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2703": {
+ "name": "Elemental Fury",
+ "description": "Disitegrates the target for 150-200 damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2704": {
+ "name": "Elemental Fury",
+ "description": "Jolts the target for 150-200 damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2705": {
+ "name": "Aerfalle's Enforcement",
+ "description": "Lowers all fellowship members skills by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "70"
+ },
+ "2706": {
+ "name": "Aerfalle's Gaze",
+ "description": "Lowers targets skills by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "70"
+ },
+ "2707": {
+ "name": "Elemental Pit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2708": {
+ "name": "Stasis Field",
+ "description": "Decreases all of the target's attributes by 50 points.",
+ "school": "Life Magic",
+ "family": "421",
+ "difficulty": "50",
+ "duration": "120",
+ "mana": "300"
+ },
+ "2709": {
+ "name": "Summon Primary Portal I",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "200",
+ "duration": "60",
+ "mana": "70"
+ },
+ "2710": {
+ "name": "Volcanic Blast",
+ "description": "Sends a stream of magma streaking towards the target. The stream does 150-200 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2711": {
+ "name": "Acid Arc I",
+ "description": "Shoots a stream of acid at the target. The stream does 16-30 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "2712": {
+ "name": "Acid Arc II",
+ "description": "Shoots a stream of acid at the target. The stream does 26-52 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2713": {
+ "name": "Acid Arc III",
+ "description": "Shoots a stream of acid at the target. The stream does 42-84 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2714": {
+ "name": "Acid Arc IV",
+ "description": "Shoots a stream of acid at the target. The stream does 52-105 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2715": {
+ "name": "Acid Arc V",
+ "description": "Shoots a stream of acid at the target. The stream does 68-136 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2716": {
+ "name": "Acid Arc VI",
+ "description": "Shoots a stream of acid at the target. The stream does 84-168 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2717": {
+ "name": "Acid Arc VII",
+ "description": "Shoots a stream of acid at the target. The stream does 115-189 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2718": {
+ "name": "Force Arc I",
+ "description": "Shoots a bolt of force at the target. The bolt does 16-30 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "2719": {
+ "name": "Force Arc II",
+ "description": "Shoots a bolt of force at the target. The bolt does 26-52 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2720": {
+ "name": "Force Arc III",
+ "description": "Shoots a bolt of force at the target. The bolt does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2721": {
+ "name": "Force Arc IV",
+ "description": "Shoots a bolt of force at the target. The bolt does 52-105 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2722": {
+ "name": "Force Arc V",
+ "description": "Shoots a bolt of force at the target. The bolt does 68-136 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2723": {
+ "name": "Force Arc VI",
+ "description": "Shoots a bolt of force at the target. The bolt does 84-168 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2724": {
+ "name": "Force Arc VII",
+ "description": "Shoots a bolt of force at the target. The bolt does 115-189 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2725": {
+ "name": "Frost Arc I",
+ "description": "Shoots a bolt of frost at the target. The bolt does 16-30 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "2726": {
+ "name": "Frost Arc II",
+ "description": "Shoots a bolt of frost at the target. The bolt does 26-52 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2727": {
+ "name": "Frost Arc III",
+ "description": "Shoots a bolt of cold at the target. The bolt does 42-84 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2728": {
+ "name": "Frost Arc IV",
+ "description": "Shoots a bolt of cold at the target. The bolt does 52-105 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2729": {
+ "name": "Frost Arc V",
+ "description": "Shoots a bolt of cold at the target. The bolt does 68-136 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2730": {
+ "name": "Frost Arc VI",
+ "description": "Shoots a bolt of cold at the target. The bolt does 84-168 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2731": {
+ "name": "Frost Arc VII",
+ "description": "Shoots a bolt of cold at the target. The bolt does 115-189 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2732": {
+ "name": "Lightning Arc I",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 16-30 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "2733": {
+ "name": "Lightning Arc II",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 26-52 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2734": {
+ "name": "Lightning Arc III",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 42-84 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2735": {
+ "name": "Lightning Arc IV",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 52-105 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2736": {
+ "name": "Lightning Arc V",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 68-136 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2737": {
+ "name": "Lightning Arc VI",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 84-168 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2738": {
+ "name": "Lightning Arc VII",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 115-189 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2739": {
+ "name": "Flame Arc I",
+ "description": "Shoots a bolt of flame at the target. The bolt does 16-30 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "2740": {
+ "name": "Flame Arc II",
+ "description": "Shoots a bolt of flame at the target. The bolt does 26-52 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2741": {
+ "name": "Flame Arc III",
+ "description": "Shoots a bolt of flame at the target. The bolt does 42-84 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2742": {
+ "name": "Flame Arc IV",
+ "description": "Shoots a bolt of flame at the target. The bolt does 52-105 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2743": {
+ "name": "Flame Arc V",
+ "description": "Shoots a bolt of flame at the target. The bolt does 68-136 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2744": {
+ "name": "Flame Arc VI",
+ "description": "Shoots a bolt of flame at the target. The bolt does 84-168 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2745": {
+ "name": "Flame Arc VII",
+ "description": "Shoots a bolt of flame at the target. The bolt does 115-189 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2746": {
+ "name": "Shock Arc I",
+ "description": "Shoots a shock wave at the target. The wave does 16-30 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "2747": {
+ "name": "Shock Arc II",
+ "description": "Shoots a shock wave at the target. The wave does 26-52 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2748": {
+ "name": "Shock Arc III",
+ "description": "Shoots a shock wave at the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2749": {
+ "name": "Shock Arc IV",
+ "description": "Shoots a shock wave at the target. The wave does 52-105 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2750": {
+ "name": "Shock Arc V",
+ "description": "Shoots a shock wave at the target. The wave does 68-136 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2751": {
+ "name": "Shock Arc VI",
+ "description": "Shoots a shock wave at the target. The wave does 84-168 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2752": {
+ "name": "Shock Arc VII",
+ "description": "Shoots a shock wave at the target. The wave does 115-189 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2753": {
+ "name": "Blade Arc I",
+ "description": "Shoots a magical blade at the target. The bolt does 16-30 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "2754": {
+ "name": "Blade Arc II",
+ "description": "Shoots a magical blade at the target. The bolt does 26-52 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2755": {
+ "name": "Blade Arc III",
+ "description": "Shoots a magical blade at the target. The bolt does 42-84 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2756": {
+ "name": "Blade Arc IV",
+ "description": "Shoots a magical blade at the target. The bolt does 52-105 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2757": {
+ "name": "Blade Arc V",
+ "description": "Shoots a magical blade at the target. The bolt does 68-136 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "2758": {
+ "name": "Blade Arc VI",
+ "description": "Shoots a magical blade at the target. The bolt does 84-168 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2759": {
+ "name": "Blade Arc VII",
+ "description": "Shoots a magical blade at the target. The bolt does 115-189 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "2760": {
+ "name": "Martyr's Hecatomb I",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 75% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2761": {
+ "name": "Martyr's Hecatomb II",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 90% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2762": {
+ "name": "Martyr's Hecatomb III",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 105% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2763": {
+ "name": "Martyr's Hecatomb IV",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 125% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2764": {
+ "name": "Martyr's Hecatomb V",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 150% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2765": {
+ "name": "Martyr's Hecatomb VI",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 175% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2766": {
+ "name": "Martyr's Hecatomb VII",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 200% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2767": {
+ "name": "Martyr's Tenacity I",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 75% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2768": {
+ "name": "Martyr's Tenacity II",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 90% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2769": {
+ "name": "Martyr's Tenacity III",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 105% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2770": {
+ "name": "Martyr's Tenacity IV",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 125% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2771": {
+ "name": "Martyr's Tenacity V",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 150% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2772": {
+ "name": "Martyr's Tenacity VI",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 175% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2773": {
+ "name": "Martyr's Tenacity VII",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 200% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2774": {
+ "name": "Martyr's Blight I",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 75% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2775": {
+ "name": "Martyr's Blight II",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 90% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2776": {
+ "name": "Martyr's Blight III",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 105% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2777": {
+ "name": "Martyr's Blight IV",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 125% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2778": {
+ "name": "Martyr's Blight V",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 150% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2779": {
+ "name": "Martyr's Blight VI",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 175% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2780": {
+ "name": "Martyr's Blight VII",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 200% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2781": {
+ "name": "Lesser Elemental Fury",
+ "description": "Disitegrates the target for 200 points of acid damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "2782": {
+ "name": "Lesser Elemental Fury",
+ "description": "Burns the target for 200 points of fire damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "2783": {
+ "name": "Lesser Elemental Fury",
+ "description": "Burns the target for 200 points of cold damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "2784": {
+ "name": "Lesser Elemental Fury",
+ "description": "Jolts the target for 200 points of electric damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "2785": {
+ "name": "Lesser Stasis Field",
+ "description": "Decreases all of the target's attributes by 20 points.",
+ "school": "Life Magic",
+ "family": "421",
+ "difficulty": "20",
+ "duration": "120",
+ "mana": "300"
+ },
+ "2786": {
+ "name": "Madness",
+ "description": "Wearing the mask makes you feel strange.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "2787": {
+ "name": "Supremacy",
+ "description": "Increases the Allegiance Rank by 1.",
+ "school": "Creature Enchantment",
+ "family": "529",
+ "difficulty": "300",
+ "duration": "60",
+ "mana": "70"
+ },
+ "2788": {
+ "name": "Essence Blight",
+ "description": "Drains 5000 points of the targets Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2789": {
+ "name": "Elemental Destruction",
+ "description": "Drains 8000 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2790": {
+ "name": "Weight of the World",
+ "description": "Afflicts the target with the weight of the world.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "275",
+ "duration": "60",
+ "mana": "1"
+ },
+ "2791": {
+ "name": "Rolling Death",
+ "description": "A giant ball of acid.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2792": {
+ "name": "Rolling Death",
+ "description": "A giant ball of fire.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2793": {
+ "name": "Rolling Death",
+ "description": "A giant ball of ice.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2794": {
+ "name": "Rolling Death",
+ "description": "A giant ball of lightning.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2795": {
+ "name": "Citadel Library",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2796": {
+ "name": "Citadel Surface",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2797": {
+ "name": "Proving Grounds Rolling Death",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2798": {
+ "name": "Proving Grounds High",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2799": {
+ "name": "Proving Grounds Low",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2800": {
+ "name": "Proving Grounds Mid",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2801": {
+ "name": "Proving Grounds Extreme",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2802": {
+ "name": "Proving Grounds High",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2803": {
+ "name": "Proving Grounds Low",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2804": {
+ "name": "Proving Grounds Mid",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2805": {
+ "name": "Impudence",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2806": {
+ "name": "Impudence",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2807": {
+ "name": "Impudence",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2808": {
+ "name": "Impudence",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2809": {
+ "name": "Moderate Arcane Prowess",
+ "description": "Increases the target's Arcane Lore skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "335",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2810": {
+ "name": "Moderate Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "357",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2811": {
+ "name": "Moderate Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2812": {
+ "name": "Moderate War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "255",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2813": {
+ "name": "Mount Lethe Recall",
+ "description": "Transports the caster to the base of Mount Lethe.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "2814": {
+ "name": "Priest's Curse",
+ "description": "Casts the Undead Priest's Curse on the target. The bolt does 61-120 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2815": {
+ "name": "Boom Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2816": {
+ "name": "Big Boom Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2817": {
+ "name": "Shockwave Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2818": {
+ "name": "Spiral Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2819": {
+ "name": "Sparkle Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2820": {
+ "name": "Blossom Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2821": {
+ "name": "Ring Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2822": {
+ "name": "Boom Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2823": {
+ "name": "Big Boom Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2824": {
+ "name": "Shockwave Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2825": {
+ "name": "Spiral Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2826": {
+ "name": "Sparkle Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2827": {
+ "name": "Blossom Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2828": {
+ "name": "Ring Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2829": {
+ "name": "Boom Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2830": {
+ "name": "Big Boom Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2831": {
+ "name": "Shockwave Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2832": {
+ "name": "Spiral Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2833": {
+ "name": "Sparkle Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2834": {
+ "name": "Blossom Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2835": {
+ "name": "Ring Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2836": {
+ "name": "Boom Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2837": {
+ "name": "Big Boom Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2838": {
+ "name": "Shockwave Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2839": {
+ "name": "Spiral Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2840": {
+ "name": "Sparkle Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2841": {
+ "name": "Blossom Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2842": {
+ "name": "Ring Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2843": {
+ "name": "Boom Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2844": {
+ "name": "Big Boom Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2845": {
+ "name": "Shockwave Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2846": {
+ "name": "Spiral Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2847": {
+ "name": "Sparkle Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2848": {
+ "name": "Blossom Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2849": {
+ "name": "Ring Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2850": {
+ "name": "Boom Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2851": {
+ "name": "Big Boom Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2852": {
+ "name": "Shockwave Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2853": {
+ "name": "Spiral Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2854": {
+ "name": "Sparkle Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2855": {
+ "name": "Blossom Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2856": {
+ "name": "Ring Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2857": {
+ "name": "Boom White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2858": {
+ "name": "Big Boom White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2859": {
+ "name": "Shockwave White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2860": {
+ "name": "Spiral White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2861": {
+ "name": "Sparkle White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2862": {
+ "name": "Blossom White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2863": {
+ "name": "Ring White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2864": {
+ "name": "Boom Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2865": {
+ "name": "Big Boom Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2866": {
+ "name": "Shockwave Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2867": {
+ "name": "Spiral Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2868": {
+ "name": "Sparkle Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2869": {
+ "name": "Blossom Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2870": {
+ "name": "Ring Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2871": {
+ "name": "Boom Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2872": {
+ "name": "Big Boom Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2873": {
+ "name": "Shockwave Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2874": {
+ "name": "Spiral Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2875": {
+ "name": "Sparkle Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2876": {
+ "name": "Blossom Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2877": {
+ "name": "Ring Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2878": {
+ "name": "Boom Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2879": {
+ "name": "Big Boom Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2880": {
+ "name": "Shockwave Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2881": {
+ "name": "Spiral Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2882": {
+ "name": "Sparkle Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2883": {
+ "name": "Blossom Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2884": {
+ "name": "Ring Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2885": {
+ "name": "Boom Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2886": {
+ "name": "Big Boom Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2887": {
+ "name": "Shockwave Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2888": {
+ "name": "Spiral Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2889": {
+ "name": "Sparkle Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2890": {
+ "name": "Blossom Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2891": {
+ "name": "Ring Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2892": {
+ "name": "Boom Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2893": {
+ "name": "Big Boom Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2894": {
+ "name": "Shockwave Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2895": {
+ "name": "Spiral Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2896": {
+ "name": "Sparkle Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2897": {
+ "name": "Blossom Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2898": {
+ "name": "Ring Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2899": {
+ "name": "Boom Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2900": {
+ "name": "Big Boom Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2901": {
+ "name": "Shockwave Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2902": {
+ "name": "Spiral Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2903": {
+ "name": "Sparkle Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2904": {
+ "name": "Blossom Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2905": {
+ "name": "Ring Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2906": {
+ "name": "Boom Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2907": {
+ "name": "Big Boom Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2908": {
+ "name": "Shockwave Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2909": {
+ "name": "Spiral Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2910": {
+ "name": "Sparkle Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2911": {
+ "name": "Blossom Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2912": {
+ "name": "Ring Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2913": {
+ "name": "Boom White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2914": {
+ "name": "Big Boom White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2915": {
+ "name": "Shockwave White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2916": {
+ "name": "Spiral White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2917": {
+ "name": "Sparkle White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2918": {
+ "name": "Blossom White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2919": {
+ "name": "Ring White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2920": {
+ "name": "Boom Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2921": {
+ "name": "Big Boom Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "2922": {
+ "name": "Shockwave Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2923": {
+ "name": "Spiral Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "2924": {
+ "name": "Sparkle Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2925": {
+ "name": "Blossom Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2926": {
+ "name": "Ring Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "2927": {
+ "name": "Old School Fireworks",
+ "description": "Original Anniversary Celebration Effect.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2928": {
+ "name": "Tusker Hide",
+ "description": "Increases the target's natural armor by 200 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "250",
+ "duration": "5400",
+ "mana": "100"
+ },
+ "2929": {
+ "name": "Tusker Might",
+ "description": "Increases the caster's strength by 35.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "276",
+ "duration": "5400",
+ "mana": "100"
+ },
+ "2930": {
+ "name": "Tusker Skin",
+ "description": "Boosts a piece of armor by 200 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "253",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "2931": {
+ "name": "Recall Aphus Lassel",
+ "description": "Teleports caster to Aphus Lassel.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "2932": {
+ "name": "Tusker Leap",
+ "description": "Boosts casters jump skill by 100 for a short time.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "401",
+ "duration": "10",
+ "mana": "100"
+ },
+ "2933": {
+ "name": "Tusker Sprint",
+ "description": "Boosts casters run skill by 100 for a short time.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "401",
+ "duration": "60",
+ "mana": "100"
+ },
+ "2934": {
+ "name": "Tusker Fists",
+ "description": "A hail of tusker fists pummels a clear path ahead of the caster.",
+ "school": "War Magic",
+ "family": "230",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "2935": {
+ "name": "Trial of the Tusker Hero",
+ "description": "Transports target to Mowen Udaun.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2936": {
+ "name": "Entrance to Tusker Island",
+ "description": "Transports target to Tusker Island.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2937": {
+ "name": "Moderate Impregnability",
+ "description": "Increases the target's Missile Defense skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "297",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2938": {
+ "name": "Moderate Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2939": {
+ "name": "Entering the Temple",
+ "description": "Transports the target to the Temple of Enlightenment.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2940": {
+ "name": "Entering the Temple",
+ "description": "Transports the target to the Temple of Forgetfulness.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2941": {
+ "name": "Ulgrim's Recall",
+ "description": "A really really good spell.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "2942": {
+ "name": "Free Ride to the Abandoned Mine",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2943": {
+ "name": "Recall to the Singularity Caul",
+ "description": "Teleports caster to the Singularity Caul.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "2944": {
+ "name": "Storage Warehouse",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2945": {
+ "name": "Storage Warehouse",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2946": {
+ "name": "Moderate Creature Magic Aptitude",
+ "description": "Increases the target's Creature Magic skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "251",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2947": {
+ "name": "Nullify All Magic Other",
+ "description": "Dispels all negative enchantments of level 6 or lower from the target. This spell is not affected by mana conversion.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "240"
+ },
+ "2948": {
+ "name": "Hieromancer's Great Ward",
+ "description": "Improves a shield or piece of armor's armor value by 220 points. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal.",
+ "school": "Item Enchantment",
+ "family": "190",
+ "difficulty": "200",
+ "duration": "780",
+ "mana": "50"
+ },
+ "2949": {
+ "name": "Lightbringer's Way",
+ "description": "Enhances the mettle and conviction of a weapon so that the metal bites deeper. The damage of the weapon is increased by 21 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "2950": {
+ "name": "Maiden's Kiss",
+ "description": "Enhances the health of the recipient by 30 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "30",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2951": {
+ "name": "Gates of Knorr",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2952": {
+ "name": "Courtyard of Knorr",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2953": {
+ "name": "Interior Gates of Knorr",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2954": {
+ "name": "Barracks Conveyance",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2955": {
+ "name": "Forge Conveyance",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2956": {
+ "name": "Research Chambers Conveyance",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2957": {
+ "name": "Seat of Knorr",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2958": {
+ "name": "Blessing of the Priestess",
+ "description": "Increases the target's Life Magic skill by 5 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "357",
+ "difficulty": "5",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2959": {
+ "name": "Mark of the Priestess",
+ "description": "Increases the target's Life Magic skill by 10 points. Additional enchancements to the skill can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "357",
+ "difficulty": "10",
+ "duration": "300",
+ "mana": "10"
+ },
+ "2960": {
+ "name": "Greater Bludgeoning Durance",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "176",
+ "difficulty": "50",
+ "duration": "360",
+ "mana": "20"
+ },
+ "2961": {
+ "name": "Greater Piercing Durance",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "180",
+ "difficulty": "50",
+ "duration": "360",
+ "mana": "20"
+ },
+ "2962": {
+ "name": "Greater Slashing Durance",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.",
+ "school": "Item Enchantment",
+ "family": "178",
+ "difficulty": "50",
+ "duration": "360",
+ "mana": "20"
+ },
+ "2963": {
+ "name": "Aura of Hunter's Cunning",
+ "description": "My prey shall know the bite of my steel long before it becomes aware of my presence. Increases the base offense bonus of a weapon by 18%.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2964": {
+ "name": "Aura of Hunter's Mark",
+ "description": "I shall be known by motion and cunning. all shall fear my mark. Increases the Melee Defense skill modifier of a weapon or magic caster by 18%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2965": {
+ "name": "Aura of Murderous Intent",
+ "description": "I shall know my mindset and my prey will learn to fear. Increases the mana conversion bonus of a casting implement by 80%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "2966": {
+ "name": "Aura of Murderous Thirst",
+ "description": "I shall drink the blood of my victims and it shall nourish my fevered desire. Increases the base damage of a weapon by 26.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2967": {
+ "name": "Aura of The Speedy Hunter",
+ "description": "My movements shall become as the wind. silent and swift. Decrease the base speed of a weapon by 30.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2968": {
+ "name": "Vision of the Hunter",
+ "description": "I will see with a sight beyond sight. Increases the base damage bonus of a weapon by 18%.",
+ "school": "Item Enchantment",
+ "family": "325",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2969": {
+ "name": "Mother's Blessing",
+ "description": "This spell increases the overall health of a character by 25 points. This is not stackable with other effects.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "25",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2970": {
+ "name": "Hunter's Lash",
+ "description": "...and the blood shall pour down my throat and sate the thirst. Deals 70-180 points of slashing damage to a player/creatures before resistance is applied.",
+ "school": "Life Magic",
+ "family": "137",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "2971": {
+ "name": "Bullseye",
+ "description": "Transports the player to the logic test of Oswald's Lair.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2972": {
+ "name": "Oswald's Room",
+ "description": "Transports target to Oswald's Room",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2973": {
+ "name": "Access to the Secret Lair",
+ "description": "Transports the player to Oswald's Lair.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2974": {
+ "name": "Vagabond Passed",
+ "description": "Transports target to test of fleet feet.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2975": {
+ "name": "Moderate Item Enchantment Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "253",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "2976": {
+ "name": "Acid Spray",
+ "description": "Sprayed acid from an olthoi egg.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "2977": {
+ "name": "Portal spell to a hidden place",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2978": {
+ "name": "Nullify All Magic Other",
+ "description": "Dispels all enchantments of level 7 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "375",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "2979": {
+ "name": "Destiny's Wind",
+ "description": "Increases maximum mana by 100 points.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "100",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "2980": {
+ "name": "Endless Vigor",
+ "description": "Increases maximum stamina by 100 points.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "350",
+ "duration": "5400",
+ "mana": "100"
+ },
+ "2981": {
+ "name": "Fellowship Heal I",
+ "description": "Restores 8-15 points of each fellow member.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "2982": {
+ "name": "Fellowship Alchemy Mastery I",
+ "description": "Increases each fellow's Alchemy skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "2983": {
+ "name": "Fellowship Evaporate Life Magic Self",
+ "description": "Dispels 1-3 negative Life Magic enchantments of level 1 from each person in the fellowship.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2984": {
+ "name": "Lyceum of Kivik Lir",
+ "description": "Transports the fellowship to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2985": {
+ "name": "Ardence",
+ "description": "Increases maximum health by 15 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "2986": {
+ "name": "Vim",
+ "description": "Increases maximum stamina by 15 points.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "15",
+ "duration": "5400",
+ "mana": "100"
+ },
+ "2987": {
+ "name": "Volition",
+ "description": "Increases maximum mana by 15 points.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "15",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "2988": {
+ "name": "Beaten into Submission",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2989": {
+ "name": "Portal to the Bandit Hideout.",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2990": {
+ "name": "Knocked Out",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "2991": {
+ "name": "Winter's Kiss",
+ "description": "Reduces damage the target takes from Cold by 13%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "13",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "2992": {
+ "name": "Depletion",
+ "description": "Reduces the total mana of target by half.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "50",
+ "duration": "30",
+ "mana": "10"
+ },
+ "2993": {
+ "name": "Grace of the Unicorn",
+ "description": "Increases the target's Coordination by 2 points. Additional spells. including cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "413",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "2994": {
+ "name": "Plague",
+ "description": "Target's total health is reduces by 50%.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "50",
+ "duration": "30",
+ "mana": "10"
+ },
+ "2995": {
+ "name": "Power of the Dragon",
+ "description": "Increases the target's Strength by 2 points. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "414",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "2996": {
+ "name": "Scourge",
+ "description": "Target's total stamina is reduced by 50%.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "50",
+ "duration": "30",
+ "mana": "10"
+ },
+ "2997": {
+ "name": "Splendor of the Firebird",
+ "description": "Increases the target's Focus by 2 points. Additional spells. including cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "415",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "2998": {
+ "name": "Wrath of the Puppeteer",
+ "description": "Shoots three bolts of flame toward the target. Each bolt does 40-60 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "2999": {
+ "name": "Endurance of the Abyss",
+ "description": "Increases the target's Endurance by 2 points. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "416",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3000": {
+ "name": "Ire of the Dark Prince",
+ "description": "Decreases the target's natural armor by 500 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "500",
+ "duration": "10",
+ "mana": "60"
+ },
+ "3001": {
+ "name": "Puppet String",
+ "description": "Reduces all target's attributes by 25 for one minute.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3002": {
+ "name": "Will of the Quiddity",
+ "description": "Increases the target's Self by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "417",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3003": {
+ "name": "Dark Wave",
+ "description": "Lowers the total health of all fellowship member by half for ten seconds.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "50",
+ "duration": "10",
+ "mana": "10"
+ },
+ "3004": {
+ "name": "Puppet Strings",
+ "description": "Lowers the attributes of a fellowship by 25 points for one minute.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3005": {
+ "name": "Dispersion",
+ "description": "Enhances the target's base Magic Defense by 1%. this can be layered with other spells.",
+ "school": "Creature Enchantment",
+ "family": "420",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3006": {
+ "name": "Foresight",
+ "description": "Enhances the target's base Missile Defense by 1%. other spells can be layered on top of this spell.",
+ "school": "Creature Enchantment",
+ "family": "419",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3007": {
+ "name": "Uncanny Dodge",
+ "description": "Enhances the target's base Melee Defense by 1%",
+ "school": "Creature Enchantment",
+ "family": "418",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3008": {
+ "name": "Finesse",
+ "description": "Increases the target's Coordination by 8 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "40"
+ },
+ "3009": {
+ "name": "Thew",
+ "description": "Increases the target's Strength by 8 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3010": {
+ "name": "Zeal",
+ "description": "Increases the target's Endurance by 8 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3011": {
+ "name": "Endless Sight",
+ "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "40"
+ },
+ "3012": {
+ "name": "Far Sight",
+ "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "40"
+ },
+ "3013": {
+ "name": "Fruit of the Oasis",
+ "description": "Increases the rate at which the target regains Health by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3014": {
+ "name": "Water of the Oasis",
+ "description": "Increases the rate at which the target regains Mana by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3015": {
+ "name": "Shade of the Oasis",
+ "description": "Increases the rate at which the target regains Stamina by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3016": {
+ "name": "Raptor's Sight",
+ "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "40"
+ },
+ "3017": {
+ "name": "Greater Battle Dungeon Sending from Candeth Keep",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3018": {
+ "name": "Greater Battle Dungeon Sending from Fort Tethana",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3019": {
+ "name": "Greater Battle Dungeon Sending from Nanto",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3020": {
+ "name": "Greater Battle Dungeon Sending from Plateau",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3021": {
+ "name": "Greater Battle Dungeon Sending from Qalabar",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3022": {
+ "name": "Greater Battle Dungeon Sending from Tou-Tou",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3023": {
+ "name": "Greater Battle Dungeon Sending from Xarabydun",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3024": {
+ "name": "Greater Battle Dungeon Sending from Yaraq",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3025": {
+ "name": "Shriek",
+ "description": "A howling wail. Does 40-80 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "280",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "3026": {
+ "name": "Lesser Battle Dungeon Sending from Candeth Keep",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3027": {
+ "name": "Lesser Battle Dungeon Sending from Fort Tethana",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3028": {
+ "name": "Lesser Battle Dungeon Sending from Nanto",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3029": {
+ "name": "Lesser Battle Dungeon Sending from Plateau",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3030": {
+ "name": "Lesser Battle Dungeon Sending from Qalabar",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3031": {
+ "name": "Lesser Battle Dungeon Sending from Tou-Tou",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3032": {
+ "name": "Lesser Battle Dungeon Sending from Xarabydun",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3033": {
+ "name": "Lesser Battle Dungeon Sending from Yaraq",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3034": {
+ "name": "Benediction of Immortality",
+ "description": "Increases the target's Health by 7 points. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "422",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3035": {
+ "name": "Closing of the Great Divide",
+ "description": "Increases the target's Item Enchantment by 3 points. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "423",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3036": {
+ "name": "Cold Grip of the Grave",
+ "description": "Drains 300 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "3037": {
+ "name": "Death's Call",
+ "description": "Drains 40 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "3038": {
+ "name": "Death's Embrace",
+ "description": "Drains 50 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "3039": {
+ "name": "Death's Feast",
+ "description": "Drains 150 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "3040": {
+ "name": "Places Death's Kiss upon you.",
+ "description": "Drains 30 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "3041": {
+ "name": "Essence Dissolution",
+ "description": "Drains 175 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "0"
+ },
+ "3042": {
+ "name": "Grip of Death",
+ "description": "Lowers all skills by 99%.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "500",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3043": {
+ "name": "Kiss of the Grave",
+ "description": "Lowers total stamina of each fellowship member by 50%.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "500",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3044": {
+ "name": "Lesser Benediction of Immortality",
+ "description": "Increases the target's Health by 3 points. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "422",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3045": {
+ "name": "Lesser Closing of the Great Divide",
+ "description": "Increases the target's Item Enchantment by 1 point. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "423",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3046": {
+ "name": "Lesser Mists of Bur",
+ "description": "Increases the target's natural armor by 195 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "240",
+ "duration": "3600",
+ "mana": "50"
+ },
+ "3047": {
+ "name": "Matron's Barb",
+ "description": "Drains 250 point of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "0"
+ },
+ "3048": {
+ "name": "Minor Benediction of Immortality",
+ "description": "Increases the target's Health by 5 points. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "422",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3049": {
+ "name": "Minor Closing of the Great Divide",
+ "description": "Increases the target's Item Enchantment by 2 points. Additional spells. including Cantrips. can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "423",
+ "difficulty": "500",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3050": {
+ "name": "Minor Mists of Bur",
+ "description": "Increases the target's natural armor by 205 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "255",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3051": {
+ "name": "Mire Foot",
+ "description": "Target's run skill is reduces by 95%.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "500",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3052": {
+ "name": "Mists of Bur",
+ "description": "Increases the target's natural armor by 230 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "305",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3053": {
+ "name": "Paralyzing Touch",
+ "description": "Lowers all attributes by 99%.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "500",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3054": {
+ "name": "Soul Dissolution",
+ "description": "Drains 750-1000 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "3055": {
+ "name": "Asphyxiation",
+ "description": "Lowers the attributes of a target by 30 points for two minutes.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3056": {
+ "name": "Death's Vice",
+ "description": "Lowers total health of each fellowship member by 50%.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "500",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3057": {
+ "name": "Enervation",
+ "description": "Lowers the total stamina of a target by 20% for 2 minutes.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3058": {
+ "name": "Asphyiaxtion",
+ "description": "Lowers the attributes of a target by 40 points for two minutes.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3059": {
+ "name": "Enervation",
+ "description": "Lowers the total stamina of a target by 30% for 2 minutes.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3060": {
+ "name": "Poison Blood",
+ "description": "Lowers the total health of a target by 30% for 45 seconds.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "300",
+ "duration": "45",
+ "mana": "10"
+ },
+ "3061": {
+ "name": "Taint Mana",
+ "description": "Lowers the total mana of a target by 30% for 2 minutes.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3062": {
+ "name": "Asphyxiation",
+ "description": "Lowers the attributes of a target by 20 points for two minutes.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3063": {
+ "name": "Enervation",
+ "description": "Lowers the total stamina of a target by 10% for 2 minutes.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3064": {
+ "name": "Poison Blood",
+ "description": "Lowers the total health of a target by 10% for 45 seconds.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "300",
+ "duration": "45",
+ "mana": "10"
+ },
+ "3065": {
+ "name": "Taint Mana",
+ "description": "Lowers the total mana of a target by 10% for 2 minutes.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3066": {
+ "name": "Lesser Ward of Rebirth",
+ "description": "Increase natural healing rate of all fellowship members by 100%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "255",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3067": {
+ "name": "Matron's Curse",
+ "description": "Lowers total mana of each fellowship member by 50%.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "500",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3068": {
+ "name": "Minor Ward of Rebirth",
+ "description": "Increase natural healing rate of all fellowship members by 125%..",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "310",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3069": {
+ "name": "Poison Blood",
+ "description": "Lowers the total health of a target by 20% for 45 seconds.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "300",
+ "duration": "45",
+ "mana": "10"
+ },
+ "3070": {
+ "name": "Taint Mana",
+ "description": "Lowers the total mana of a target by 20% for 2 minutes.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3071": {
+ "name": "Ward of Rebirth",
+ "description": "Increase natural healing rate of all fellowship members by 150%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3072": {
+ "name": "Hall of the Temple Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3073": {
+ "name": "Matron's Outer Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3074": {
+ "name": "Bruised Flesh",
+ "description": "Lowers bludgeoning resistance of a target by 100%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3075": {
+ "name": "Flesh of Cloth",
+ "description": "Lowers slashing resistance of a target by 100%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3076": {
+ "name": "Exposed Flesh",
+ "description": "Lowers acid resistance of a target by 100%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3077": {
+ "name": "Flesh of Flint",
+ "description": "Lowers flame resistance of a target by 100%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3078": {
+ "name": "Weaken Flesh",
+ "description": "Lowers piercing resistance of a target by 100%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3079": {
+ "name": "Thin Skin",
+ "description": "Lowers the natural armor of a target by 145.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3080": {
+ "name": "Bruised Flesh",
+ "description": "Lowers bludgeoning resistance of a target by 190%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3081": {
+ "name": "Flesh of Cloth",
+ "description": "Lowers slashing resistance of a target by 190%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3082": {
+ "name": "Exposed Flesh",
+ "description": "Lowers acid resistance of a target by 190%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3083": {
+ "name": "Flesh of Flint",
+ "description": "Lowers flame resistance of a target by 190%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3084": {
+ "name": "Weaken Flesh",
+ "description": "Lowers piercing resistance of a target by 190%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3085": {
+ "name": "Bruised Flesh",
+ "description": "Lowers bludgeoning resistance of a target by 160%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3086": {
+ "name": "Flesh of Cloth",
+ "description": "Lowers slashing resistance of a target by 160%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3087": {
+ "name": "Exposed Flesh",
+ "description": "Lowers acid resistance of a target by 160%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3088": {
+ "name": "Flesh of Flint",
+ "description": "Lowers flame resistance of a target by 160%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3089": {
+ "name": "Weaken Flesh",
+ "description": "Lowers piercing resistance of a target by 160%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3090": {
+ "name": "Thin Skin",
+ "description": "Lowers the natural armor of a target by 210.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "300",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3091": {
+ "name": "Thin Skin",
+ "description": "Lowers the natural armor of a target by 230.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "332",
+ "duration": "120",
+ "mana": "10"
+ },
+ "3092": {
+ "name": "Lesser Skin of the Fiazhat",
+ "description": "Improves a shield or piece of armor's armor value by 180 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "180",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3093": {
+ "name": "Minor Skin of the Fiazhat",
+ "description": "Improves a shield or piece of armor's armor value by 205 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "255",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3094": {
+ "name": "Skin of the Fiazhat",
+ "description": "Improves a shield or piece of armor's armor value by 225 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "305",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3095": {
+ "name": "Crypt of Jexki Ki",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3096": {
+ "name": "Crypt of Ibrexi Jekti",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3097": {
+ "name": "Hall of the Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3098": {
+ "name": "Hall of the Greater Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3099": {
+ "name": "Hall of the Lesser Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3100": {
+ "name": "Antechamber of Ixir Zi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3101": {
+ "name": "Crypt of Ixir Zi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3102": {
+ "name": "Kivik Lir's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3103": {
+ "name": "Crypt of Kixkti Xri",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3104": {
+ "name": "Hall of the Arbiter",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3105": {
+ "name": "Hall of the Arbiter",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3106": {
+ "name": "Hall of the Arbiter",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3107": {
+ "name": "Flay Soul",
+ "description": "Shoots a magical blade at the target. The bolt does 100-210 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3108": {
+ "name": "Flay Soul",
+ "description": "Shoots a magical blade at the target. The bolt does 100-220 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3109": {
+ "name": "Liquefy Flesh",
+ "description": "Shoots a stream of acid at the target. The stream does 100-220 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3110": {
+ "name": "Sear Flesh",
+ "description": "Shoots a bolt of flame at the target. The bolt does 100-220 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3111": {
+ "name": "Soul Hammer",
+ "description": "Shoots a shock wave at the target. The wave does 100-220 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3112": {
+ "name": "Soul Spike",
+ "description": "Shoots a bolt of force at the target. The bolt does 100-220 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3113": {
+ "name": "Flay Soul",
+ "description": "Shoots a magical blade at the target. The bolt does 100-200 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3114": {
+ "name": "Liquefy Flesh",
+ "description": "Shoots a stream of acid at the target. The stream does 100-200 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3115": {
+ "name": "Sear Flesh",
+ "description": "Shoots a bolt of flame at the target. The bolt does 100-200 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3116": {
+ "name": "Soul Hammer",
+ "description": "Shoots a shock wave at the target. The wave does 100-200 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3117": {
+ "name": "Soul Spike",
+ "description": "Shoots a bolt of force at the target. The bolt does 100-200 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3118": {
+ "name": "Liquefy Flesh",
+ "description": "Shoots a stream of acid at the target. The stream does 100-210 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3119": {
+ "name": "Sear Flesh",
+ "description": "Shoots a bolt of flame at the target. The bolt does 100-210 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3120": {
+ "name": "Soul Hammer",
+ "description": "Shoots a shock wave at the target. The wave does 100-210 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3121": {
+ "name": "Soul Spike",
+ "description": "Shoots a bolt of force at the target. The bolt does 100-210 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3122": {
+ "name": "Sacrificial Edge",
+ "description": "Shoots a single blade that deals 100-150 points of piercing damage at the target.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "0"
+ },
+ "3123": {
+ "name": "Sacrificial Edges",
+ "description": "Shoots three blades that deal 100-150 points of piercing damage at the target.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "0"
+ },
+ "3124": {
+ "name": "Blight Mana",
+ "description": "Lowers recipient's mana by 20% for 5 minutes.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "300",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3125": {
+ "name": "EnervateBeing",
+ "description": "Lowers recipent's Stamina by 20% for 5 minutes.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "300",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3126": {
+ "name": "Poison Health",
+ "description": "Lowers recipient's health by 20% for 5 minutes.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "300",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3127": {
+ "name": "Fell Wind",
+ "description": "Lowers the total stamina of all fellowship members by 20% for 5 minutes.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "500",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3128": {
+ "name": "Infected Blood",
+ "description": "Lowers the total health of all fellowship members by 20% for 5 minutes.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "500",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3129": {
+ "name": "Infirmed Mana",
+ "description": "Lowers the total mana of all fellowship members by 20% for 5 minutes.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "500",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3130": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3131": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3132": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3133": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3134": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3135": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3136": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3137": {
+ "name": "Halls of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3138": {
+ "name": "Antechamber of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3139": {
+ "name": "Liazk Itzi's Crypt",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3140": {
+ "name": "Lair of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3141": {
+ "name": "Lair of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3142": {
+ "name": "Lair of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3143": {
+ "name": "Lair of Liazk Itzi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3144": {
+ "name": "Liazk Itzi Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3145": {
+ "name": "Liazk Itzi Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3146": {
+ "name": "Liazk Itzi Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3147": {
+ "name": "Liazk Itzi Guardians",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3148": {
+ "name": "Liazk Itzi's Offering Room",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3149": {
+ "name": "Liazk Itzi's Offering Room",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3150": {
+ "name": "Liazk Itzi's Offering Room",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3151": {
+ "name": "Liazk Itzi's Offering Room",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3152": {
+ "name": "Inferior Scythe Aegis",
+ "description": "Reduces damage the target takes from Slashing by 52%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "245",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3153": {
+ "name": "Lesser Scythe Aegis",
+ "description": "Reduces damage the target takes from Slashing by 45%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "195",
+ "duration": "3600",
+ "mana": "50"
+ },
+ "3154": {
+ "name": "Scythe Aegis",
+ "description": "Reduces damage the target takes from Slashing by 62%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "295",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "3155": {
+ "name": "Lesser Alacrity of the Conclave",
+ "description": "Enhances the Coordination of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3156": {
+ "name": "Alacrity of the Conclave",
+ "description": "Enhances the Coordination of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3157": {
+ "name": "Greater Alacrity of the Conclave",
+ "description": "Enhances the Coordination of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3158": {
+ "name": "Superior Alacrity of the Conclave",
+ "description": "Enhances the Coordination of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3159": {
+ "name": "Lesser Vivify the Conclave",
+ "description": "Enhances the Endurance of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3160": {
+ "name": "Vivify the Conclave",
+ "description": "Enhances the Endurance of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3161": {
+ "name": "Greater Vivify the Conclave",
+ "description": "Enhances the Endurance of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3162": {
+ "name": "Superior Vivify the Conclave",
+ "description": "Enhances the Endurance of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3163": {
+ "name": "Lesser Acumen of the Conclave",
+ "description": "Enhances the Focus of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3164": {
+ "name": "Acumen of the Conclave",
+ "description": "Enhances the Focus of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3165": {
+ "name": "Greater Acumen of the Conclave",
+ "description": "Enhances the Focus of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3166": {
+ "name": "Superior Acumen of the Conclave",
+ "description": "Enhances the Focus of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3167": {
+ "name": "Lesser Speed the Conclave",
+ "description": "Enhances the Quickness of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3168": {
+ "name": "Speed the Conclave",
+ "description": "Enhances the Quickness of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3169": {
+ "name": "Greater Speed the Conclave",
+ "description": "Enhances the Quickness of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3170": {
+ "name": "Superior Speed the Conclave",
+ "description": "Enhances the Quickness of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3171": {
+ "name": "Lesser Volition of the Conclave",
+ "description": "Enhances the Self of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3172": {
+ "name": "Volition of the Conclave",
+ "description": "Enhances the Self of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3173": {
+ "name": "Greater Volition of the Conclave",
+ "description": "Enhances the Self of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3174": {
+ "name": "Superior Volition of the Conclave",
+ "description": "Enhances the Self of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3175": {
+ "name": "Lesser Empowering the Conclave",
+ "description": "Enhances the Strength of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3176": {
+ "name": "Empowering the Conclave",
+ "description": "Enhances the Strength of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3177": {
+ "name": "Greater Empowering the Conclave",
+ "description": "Enhances the Strength of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3178": {
+ "name": "Superior Empowering the Conclave",
+ "description": "Enhances the Strength of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3179": {
+ "name": "Eradicate All Magic Other",
+ "description": "Dispels all negative enchantments of level 7 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3180": {
+ "name": "Eradicate All Magic Self",
+ "description": "Dispels all negative enchantments of level 7 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3181": {
+ "name": "Nullify All Magic Other",
+ "description": "Dispels 2-6 positive enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3182": {
+ "name": "Nullify All Magic Self",
+ "description": "Dispels 2-6 positive enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3183": {
+ "name": "Nullify All Magic Self",
+ "description": "Dispels all enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3184": {
+ "name": "Eradicate Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 7 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3185": {
+ "name": "Eradicate Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 7 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3186": {
+ "name": "Nullify Creature Magic Other",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3187": {
+ "name": "Nullify Creature Magic Self",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3188": {
+ "name": "Nullify Creature Magic Other",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3189": {
+ "name": "Nullify Creature Magic Self",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3190": {
+ "name": "Eradicate Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 7 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3191": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3192": {
+ "name": "Nullify Item Magic",
+ "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3193": {
+ "name": "Eradicate Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 7 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3194": {
+ "name": "Eradicate Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 7 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3195": {
+ "name": "Nullify Life Magic Other",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3196": {
+ "name": "Nullify Life Magic Self",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3197": {
+ "name": "Nullify Life Magic Other",
+ "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3198": {
+ "name": "Nullify Life Magic Self",
+ "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3199": {
+ "name": "Minor Hermetic Link",
+ "description": "Increases a magic casting implement's mana conversion bonus by 10%.",
+ "school": "Item Enchantment",
+ "family": "425",
+ "difficulty": "10",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3200": {
+ "name": "Major Hermetic Link",
+ "description": "Increases a magic casting implement's mana conversion bonus by 20%.",
+ "school": "Item Enchantment",
+ "family": "425",
+ "difficulty": "20",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3201": {
+ "name": "Feeble Hermetic Link",
+ "description": "Increases a magic casting implement's mana conversion bonus by 5%.",
+ "school": "Item Enchantment",
+ "family": "425",
+ "difficulty": "5",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3202": {
+ "name": "Moderate Hermetic Link",
+ "description": "Increases a magic casting implement's mana conversion bonus by 15%.",
+ "school": "Item Enchantment",
+ "family": "425",
+ "difficulty": "15",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3203": {
+ "name": "Eradicate All Magic Other",
+ "description": "Dispels all negative enchantments of level 7 or lower from the target. This spell is not affected by mana conversion.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "3204": {
+ "name": "Blazing Heart",
+ "description": "Increases maximum health by 50 points for 4 hours.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "50",
+ "duration": "14400",
+ "mana": "70"
+ },
+ "3205": {
+ "name": "Good Eating",
+ "description": "Increases the target's Melee Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "10",
+ "duration": "14400",
+ "mana": "10"
+ },
+ "3206": {
+ "name": "Enliven",
+ "description": "Increases maximum mana by 100 points for 4 hours.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "100",
+ "duration": "14400",
+ "mana": "70"
+ },
+ "3207": {
+ "name": "Ore Fire",
+ "description": "Increases the target's Magic Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "10",
+ "duration": "14400",
+ "mana": "10"
+ },
+ "3208": {
+ "name": "Innervate",
+ "description": "Increases maximum stamina by 200 points for 4 hours.",
+ "school": "Life Magic",
+ "family": "281",
+ "difficulty": "200",
+ "duration": "14400",
+ "mana": "70"
+ },
+ "3209": {
+ "name": "Refreshment",
+ "description": "Increases the target's Missile Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).",
+ "school": "Creature Enchantment",
+ "family": "297",
+ "difficulty": "10",
+ "duration": "14400",
+ "mana": "10"
+ },
+ "3210": {
+ "name": "Agitate",
+ "description": "The Shadow Child enrages the target. reducing the target's Strength by 15%.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "350",
+ "duration": "45",
+ "mana": "70"
+ },
+ "3211": {
+ "name": "Annoyance",
+ "description": "The Shadow Child exasperates the target. reducing the target's Endurance by 15% .",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "350",
+ "duration": "45",
+ "mana": "70"
+ },
+ "3212": {
+ "name": "Guilt Trip",
+ "description": "The sad tale of the Shadow Child decreases the target's Coordination by 15%.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "350",
+ "duration": "45",
+ "mana": "70"
+ },
+ "3213": {
+ "name": "Heart Ache",
+ "description": "The sad tale of the Shadow Child decreases the target's Self by 15%.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "350",
+ "duration": "45",
+ "mana": "70"
+ },
+ "3214": {
+ "name": "Sorrow",
+ "description": "The sad tale of the Shadow Child decreases the target's Focus by 15%.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "350",
+ "duration": "45",
+ "mana": "70"
+ },
+ "3215": {
+ "name": "Underfoot",
+ "description": "The Shadow Child gets in the target's way. reducing the target's Quickness by 15%.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "350",
+ "duration": "45",
+ "mana": "70"
+ },
+ "3216": {
+ "name": "Transport to the Forbidden Catacombs",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3217": {
+ "name": "Cascade",
+ "description": "Increases the target's Missile Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3218": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3219": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Missile Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3220": {
+ "name": "Cascade",
+ "description": "Increases the target's Missile Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3221": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3222": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Missile Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3223": {
+ "name": "Cascade",
+ "description": "Increases the target's Mana Conversion skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3224": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Mana Conversion skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3225": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Mana Conversion skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3226": {
+ "name": "Cascade",
+ "description": "Increases the target's Heavy Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3227": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Heavy Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3228": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Heavy Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3229": {
+ "name": "Cascade",
+ "description": "Increases the target's Light Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3230": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Light Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3231": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3232": {
+ "name": "Cascade",
+ "description": "Increases the target's Missile Weapons skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3233": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Missile Weapons skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3234": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Missile Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3235": {
+ "name": "Dark Power",
+ "description": "A dark power suffuses your being. increasing your Self by 2.",
+ "school": "Creature Enchantment",
+ "family": "417",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3236": {
+ "name": "Restorative Draught",
+ "description": "Restores 60-80 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "1000"
+ },
+ "3237": {
+ "name": "Fanaticism",
+ "description": "A fervent need for destruction increases your War Magic skill by 2.",
+ "school": "Creature Enchantment",
+ "family": "426",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3238": {
+ "name": "Portal to Nanner Island",
+ "description": "Transports the target to Nanner Island.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3239": {
+ "name": "Insight of the Khe",
+ "description": "This spell enhances the caster's understanding of the mystical world. Self is raised by 32.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "245",
+ "duration": "60",
+ "mana": "60"
+ },
+ "3240": {
+ "name": "Wisdom of the Khe",
+ "description": "This spell enhances the caster's knowledge and ability to manipulate the mystical world. Focus is increased by 32.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "245",
+ "duration": "60",
+ "mana": "60"
+ },
+ "3241": {
+ "name": "Flame Burst",
+ "description": "A burst of superheated air blasts outward from the caster.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3242": {
+ "name": "Weave of Chorizite",
+ "description": "Veins of chorizite serve to raise your magic defense. Magic Defense is raised by 2 points when this item is wielded. This is in addition to any spells and cantrips.",
+ "school": "Creature Enchantment",
+ "family": "428",
+ "difficulty": "265",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3243": {
+ "name": "Consecration",
+ "description": "The innate magic of the Homunculus enhances your Item Enchantment skill by 2.",
+ "school": "Creature Enchantment",
+ "family": "431",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3244": {
+ "name": "Divine Manipulation",
+ "description": "The power to show creatures the way surges through you. Increases your Creature Enchantment skill by 2.",
+ "school": "Creature Enchantment",
+ "family": "430",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3245": {
+ "name": "Sacrosanct Touch",
+ "description": "You feel urged to bless the worthy and punish the unworthy. Increases your Life Magic skill by 2.",
+ "school": "Creature Enchantment",
+ "family": "429",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3246": {
+ "name": "Adja's Benefaction",
+ "description": "Adja bestows her blessing upon you. increasing your Health Regeneration Rate by 50%. This effect can be layered with normal spell effects.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "50",
+ "duration": "60",
+ "mana": "60"
+ },
+ "3247": {
+ "name": "Adja's Favor",
+ "description": "Adja bestows her favor upon you. increasing your Stamina Regeneration Rate by 50%. This effect can be layered with normal spell effects.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "50",
+ "duration": "60",
+ "mana": "60"
+ },
+ "3248": {
+ "name": "Adja's Grace",
+ "description": "Adja bestows her grace upon you. increasing your Mana Regeneration Rate by 50%. This effect can be layered with normal spell effects.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "50",
+ "duration": "60",
+ "mana": "60"
+ },
+ "3249": {
+ "name": "Ghostly Chorus",
+ "description": "A vision of a ghostly chorus sings to you. lifting your spirits and empowering you. Your rate of Mana Renewal increases by 200% for one hour.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "1000",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "3250": {
+ "name": "Major Spirit Thirst",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 3%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3251": {
+ "name": "Minor Spirit Thirst",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 1%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3252": {
+ "name": "Spirit Thirst",
+ "description": "Increases a caster's damage mod by 0.02 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3253": {
+ "name": "Aura of Spirit Drinker Self I",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 1%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3254": {
+ "name": "Aura of Spirit Drinker Self II",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 2%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "3255": {
+ "name": "Aura of Spirit Drinker Self III",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 3%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "3256": {
+ "name": "Aura of Spirit Drinker Self IV",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 4%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3257": {
+ "name": "Aura of Spirit Drinker Self V",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 5%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3258": {
+ "name": "Aura of Spirit Drinker Self VI",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 6%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3259": {
+ "name": "Aura of Infected Spirit Caress",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3260": {
+ "name": "Spirit Loather I",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 1%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3261": {
+ "name": "Spirit Loather II",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 2%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "3262": {
+ "name": "Spirit Loather III",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 3%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "3263": {
+ "name": "Spirit Loather IV",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 4%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "3264": {
+ "name": "Spirit Loather V",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 5%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "3265": {
+ "name": "Spirit Loather VI",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 6%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "3266": {
+ "name": "Spirit Pacification",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 7%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "3267": {
+ "name": "Bit Between Teeth",
+ "description": "This spell decreases the target's Self by 75%.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "285",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3268": {
+ "name": "Biting Bonds",
+ "description": "Lowers recipient's health by 40% for five minutes.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "285",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3269": {
+ "name": "Under The Lash",
+ "description": "Decreases the target's armor by 250 points for five minutes.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "285",
+ "duration": "300",
+ "mana": "70"
+ },
+ "3270": {
+ "name": "Hezhit's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3271": {
+ "name": "Hezhit's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3272": {
+ "name": "Hezhit's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3273": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3274": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3275": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3276": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3277": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3278": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3279": {
+ "name": "Entrance to Hizk Ri's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3280": {
+ "name": "Return to the Corridor",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3281": {
+ "name": "Hizk Ri's Test",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3282": {
+ "name": "Hizk Ri's Test",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3283": {
+ "name": "Hizk Ri's Test",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3284": {
+ "name": "Consort Hezhit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3285": {
+ "name": "Attendant Jrvik",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3286": {
+ "name": "Well of Tears",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3287": {
+ "name": "Well of Tears",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3288": {
+ "name": "Well of Tears",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3289": {
+ "name": "Patriarch Zixki",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3290": {
+ "name": "Jrvik's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3291": {
+ "name": "Jrvik's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3292": {
+ "name": "Jrvik's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3293": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3294": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3295": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3296": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3297": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3298": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3299": {
+ "name": "Zixk's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3300": {
+ "name": "Zixk's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3301": {
+ "name": "Zixk's Safety",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3302": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3303": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3304": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3305": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3306": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3307": {
+ "name": "Prison",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3308": {
+ "name": "Flange Aegis",
+ "description": "Reduces damage the target takes from Bludgeoning by 62%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "295",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "3309": {
+ "name": "Inferior Flange Aegis",
+ "description": "Reduces damage the target takes from Bludgeoning by 52%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "245",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3310": {
+ "name": "Inferior Lance Aegis",
+ "description": "Reduces damage the target takes from Piercing by 52%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "245",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3311": {
+ "name": "Lance Aegis",
+ "description": "Reduces damage the target takes from Piercing by 62%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "295",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "3312": {
+ "name": "Lesser Flange Aegis",
+ "description": "Reduces damage the target takes from Bludgeoning by 45%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "195",
+ "duration": "3600",
+ "mana": "50"
+ },
+ "3313": {
+ "name": "Lesser Lance Aegis",
+ "description": "Reduces damage the target takes from Piercing by 45%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "195",
+ "duration": "3600",
+ "mana": "50"
+ },
+ "3314": {
+ "name": "Chained to the Wall",
+ "description": "Decreases the target's Jump skill by 50% for five minutes.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "285",
+ "duration": "300",
+ "mana": "70"
+ },
+ "3315": {
+ "name": "The Sewer",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3316": {
+ "name": "The Sewer",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3317": {
+ "name": "The Sewer",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3318": {
+ "name": "Hizk Ri's Crypt",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3319": {
+ "name": "Portal to Izji Qo's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3320": {
+ "name": "Lesser Corrosive Ward",
+ "description": "Reduces damage all fellowship members take from acid by 43%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3321": {
+ "name": "Corrosive Ward",
+ "description": "Reduces damage all fellowship members take from acid by 50%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3322": {
+ "name": "Greater Corrosive Ward",
+ "description": "Reduces damage all fellowship members take from acid by 60%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3323": {
+ "name": "Superior Corrosive Ward",
+ "description": "Reduces damage all fellowship members take from acid by 65%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3324": {
+ "name": "Lesser Scythe Ward",
+ "description": "Reduces damage all fellowship members take from Slashing by 43%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3325": {
+ "name": "Scythe Ward",
+ "description": "Reduces damage all fellowship members take from Slashing by 50%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3326": {
+ "name": "Greater Scythe Ward",
+ "description": "Reduces damage all fellowship members take from Slashing by 60%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3327": {
+ "name": "Superior Scythe Ward",
+ "description": "Reduces damage all fellowship members take from Slashing by 65%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3328": {
+ "name": "Lesser Flange Ward",
+ "description": "Reduces damage all fellowship members take from Bludgeoning by 43%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3329": {
+ "name": "Flange Ward",
+ "description": "Reduces damage all fellowship members take from Bludgeoning by 50%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3330": {
+ "name": "Greater Flange Ward",
+ "description": "Reduces damage all fellowship members take from Bludgeoning by 60%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3331": {
+ "name": "Superior Flange Ward",
+ "description": "Reduces damage all fellowship members from Bludgeoning by 65%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3332": {
+ "name": "Lesser Frore Ward",
+ "description": "Reduces damage all fellowship members take from Cold by 43%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3333": {
+ "name": "Frore Ward",
+ "description": "Reduces damage all fellowship members take from Cold by 50%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3334": {
+ "name": "Greater Frore Ward",
+ "description": "Reduces damage all fellowship members take from Cold by 60%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3335": {
+ "name": "Superior Frore Ward",
+ "description": "Reduces damage all fellowship members take from Cold by 65%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3336": {
+ "name": "Lesser Inferno Ward",
+ "description": "Reduces damage all fellowship members take from fire by 43%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3337": {
+ "name": "Inferno Ward",
+ "description": "Reduces damage all fellowship members take from fire by 50%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3338": {
+ "name": "Greater Inferno Ward",
+ "description": "Reduces damage all fellowship members take from fire by 60%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3339": {
+ "name": "Superior Inferno Ward",
+ "description": "Reduces damage all fellowship members take from fire by 65%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3340": {
+ "name": "Lesser Voltaic Ward",
+ "description": "Reduces damage all fellowship members take from Lightning by 43%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3341": {
+ "name": "Voltaic Ward",
+ "description": "Reduces damage all fellowship members take from Lightning by 50%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3342": {
+ "name": "Greater Voltaic Ward",
+ "description": "Reduces damage all fellowship members take from Lightning by 60%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3343": {
+ "name": "Superior Voltaic Ward",
+ "description": "Reduces damage all fellowship members take from Lightning by 65%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3344": {
+ "name": "Lesser Lance Ward",
+ "description": "Reduces damage all fellowship members take from Piercing by 43%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3345": {
+ "name": "Lance Ward",
+ "description": "Reduces damage all fellowship members take from Piercing by 50%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3346": {
+ "name": "Greater Lance Ward",
+ "description": "Reduces damage all fellowship members take from Piercing by 60%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3347": {
+ "name": "Superior Lance Ward",
+ "description": "Reduces damage all fellowship members take from Piercing by 65%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3348": {
+ "name": "Lesser Warden of the Clutch",
+ "description": "Enhances the Missile Defense of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3349": {
+ "name": "Inferior Warden of the Clutch",
+ "description": "Enhances the Missile Defense of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3350": {
+ "name": "Warden of the Clutch",
+ "description": "Enhances the Missile Defense of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3351": {
+ "name": "Potent Warden of the Clutch",
+ "description": "Enhances the Missile Defense of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3352": {
+ "name": "Lesser Guardian of the Clutch",
+ "description": "Enhances the Melee Defense of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3353": {
+ "name": "Inferior Guardian of the Clutch",
+ "description": "Enhances the Melee Defense of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3354": {
+ "name": "Guardian of the Clutch",
+ "description": "Enhances the Melee Defense of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3355": {
+ "name": "Potent Guardian of the Clutch",
+ "description": "Enhances the Melee Defense of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3356": {
+ "name": "Lesser Sanctifier of the Clutch",
+ "description": "Enhances the Magic Defense of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3357": {
+ "name": "Inferior Sanctifier of the Clutch",
+ "description": "Enhances the Magic Defense of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3358": {
+ "name": "Sanctifier of the Clutch",
+ "description": "Enhances the Magic Defense of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3359": {
+ "name": "Potent Sanctifier of the Clutch",
+ "description": "Enhances the Magic Defense of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3360": {
+ "name": "Entrance to the Burun Shrine",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3361": {
+ "name": "The Art of Destruction",
+ "description": "Increases the target's War Magic skill by 11%.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "351",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3362": {
+ "name": "Blessing of the Horn",
+ "description": "Increases the target's Magic Defense skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3363": {
+ "name": "Blessing of the Scale",
+ "description": "Increases the target's Melee Defense skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3364": {
+ "name": "Blessing of the Wing",
+ "description": "Increases the target's Missile Defense skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "297",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3365": {
+ "name": "Gift of Enhancement",
+ "description": "Increases the target's Creature Enchantement by 11%.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "351",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3366": {
+ "name": "The Heart's Touch",
+ "description": "Increases the target's Life Magic skill by 11%.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "351",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3367": {
+ "name": "Leaping Legs",
+ "description": "Increases the target's Jump skill by 11%.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "351",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3368": {
+ "name": "Mage's Understanding",
+ "description": "Increases the target's Mana Conversion skill by 11%.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "351",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3369": {
+ "name": "On the Run",
+ "description": "Increases the target's Run skill by 11%.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "351",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3370": {
+ "name": "Power of Enchantment",
+ "description": "Increases the target's Item Enchantment skill by 11%.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "351",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3371": {
+ "name": "Greater Life Giver",
+ "description": "Increases maximum health by 25 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "25",
+ "duration": "510",
+ "mana": "70"
+ },
+ "3372": {
+ "name": "Debilitating Spore",
+ "description": "Drains 5000 points of the target's stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "3373": {
+ "name": "Diseased Air",
+ "description": "Drains 5000 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "3374": {
+ "name": "Kivik Lir's Scorn",
+ "description": "Drains the target of 99% of their current health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "600",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3375": {
+ "name": "Fungal Bloom",
+ "description": "Lowers the total health of the target by 50%.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "500",
+ "duration": "15",
+ "mana": "10"
+ },
+ "3376": {
+ "name": "Lesser Vision Beyond the Grave",
+ "description": "Enhances your understanding of the flux between worlds.",
+ "school": "Creature Enchantment",
+ "family": "433",
+ "difficulty": "1",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3377": {
+ "name": "Minor Vision Beyond the Grave",
+ "description": "Enhances your understanding of the flux between worlds.",
+ "school": "Creature Enchantment",
+ "family": "433",
+ "difficulty": "2",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3378": {
+ "name": "Vision Beyond the Grave",
+ "description": "Enhances your understanding of the flux between worlds.",
+ "school": "Creature Enchantment",
+ "family": "433",
+ "difficulty": "3",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3379": {
+ "name": "Vitae",
+ "description": "Death sucks",
+ "school": "Creature Enchantment",
+ "family": "204",
+ "difficulty": "30",
+ "duration": "-1",
+ "mana": "3"
+ },
+ "3380": {
+ "name": "Vitae",
+ "description": "Death sucks",
+ "school": "Creature Enchantment",
+ "family": "204",
+ "difficulty": "30",
+ "duration": "-1",
+ "mana": "3"
+ },
+ "3381": {
+ "name": "Debilitating Spore",
+ "description": "Drains 5000 points of stamina from each member of a fellowship.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "375",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "3382": {
+ "name": "Diseased Air",
+ "description": "Drains 5000 points of mana from each member of a fellowship.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "375",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "3383": {
+ "name": "Fungal Bloom",
+ "description": "Lowers total health of each fellowship member by 50%.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "500",
+ "duration": "15",
+ "mana": "10"
+ },
+ "3384": {
+ "name": "Lesser Conjurant Chant",
+ "description": "Enhances the Creature Enchantment skill of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3385": {
+ "name": "Conjurant Chant",
+ "description": "Enhances the Creature Enchantment skill of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3386": {
+ "name": "Greater Conjurant Chant",
+ "description": "Enhances the Creature Enchantment skill of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3387": {
+ "name": "Superior Conjurant Chant",
+ "description": "Enhances the Creature Enchantment skill of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3388": {
+ "name": "Lesser Artificant Chant",
+ "description": "Enhances the Item Enchantment skill of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3389": {
+ "name": "Artificant Chant",
+ "description": "Enhances the Item Enchantment skill of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3390": {
+ "name": "Greater Artificant Chant",
+ "description": "Enhances the Item Enchantment skill of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3391": {
+ "name": "Superior Artificant Chant",
+ "description": "Enhances the Item Enchantment skill of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3392": {
+ "name": "Lesser Vitaeic Chant",
+ "description": "Enhances the Life Magic skill of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3393": {
+ "name": "Vitaeic Chant",
+ "description": "Enhances the Life Magic skill of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3394": {
+ "name": "Greater Vitaeic Chant",
+ "description": "Enhances the Life Magic skill of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3395": {
+ "name": "Superior Vitaeic Chant",
+ "description": "Enhances the Life Magic skill of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3396": {
+ "name": "Lesser Conveyic Chant",
+ "description": "Enhances the Mana Conversion skill of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3397": {
+ "name": "Conveyic Chant",
+ "description": "Enhances the Mana Conversion skill of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3398": {
+ "name": "Greater Conveyic Chant",
+ "description": "Enhances the Mana Conversion skill of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3399": {
+ "name": "Superior Conveyic Chant",
+ "description": "Enhances the Mana Conversion skill of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3400": {
+ "name": "Lesser Hieromantic Chant",
+ "description": "Enhances the War Magic skill of all Fellowship members by 25 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3401": {
+ "name": "Hieromantic Chant",
+ "description": "Enhances the War Magic skill of all Fellowship members by 30 points for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3402": {
+ "name": "Greater Hieromantic Chant",
+ "description": "Enhances the War Magic skill of all Fellowship members by 35 points for 45 minutes.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "275",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3403": {
+ "name": "Superior Hieromantic Chant",
+ "description": "Enhances the War Magic skill of all Fellowship members by 40 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "325",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3404": {
+ "name": "Evil Thirst",
+ "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.",
+ "school": "Life Magic",
+ "family": "280",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "3405": {
+ "name": "Gift of the Fiazhat",
+ "description": "The gift of the Fiazhat enhances your magical capacity.",
+ "school": "Creature Enchantment",
+ "family": "432",
+ "difficulty": "15",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3406": {
+ "name": "Kivik Lir's Boon",
+ "description": "Kivik Lir has granted a boon upon you. student. You have 15 minutes to complete the remaining two trials. Do not fail.",
+ "school": "Creature Enchantment",
+ "family": "196",
+ "difficulty": "500",
+ "duration": "900",
+ "mana": "10"
+ },
+ "3407": {
+ "name": "Lesser Evil Thirst",
+ "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.",
+ "school": "Life Magic",
+ "family": "280",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "3408": {
+ "name": "Lesser Gift of the Fiazhat",
+ "description": "The gift of the Fiazhat enhances your magical capacity.",
+ "school": "Creature Enchantment",
+ "family": "432",
+ "difficulty": "5",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3409": {
+ "name": "Minor Evil Thirst",
+ "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.",
+ "school": "Life Magic",
+ "family": "280",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "3410": {
+ "name": "Minor Gift of the Fiazhat",
+ "description": "The gift of the Fiazhat enhances your magical capacity.",
+ "school": "Creature Enchantment",
+ "family": "432",
+ "difficulty": "10",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3411": {
+ "name": "Portal spell to a Hidden Chamber",
+ "description": "Transports the player to Elysa's treasure chamber.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3412": {
+ "name": "Halls of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3413": {
+ "name": "Lesser Arena of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3414": {
+ "name": "Arena of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3415": {
+ "name": "Greater Arena of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3416": {
+ "name": "Gallery of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3417": {
+ "name": "Gallery of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3418": {
+ "name": "Gallery of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3419": {
+ "name": "Crypt of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3420": {
+ "name": "Lesser Haven of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3421": {
+ "name": "Haven of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3422": {
+ "name": "Greater Haven of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3423": {
+ "name": "Trials of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3424": {
+ "name": "Triumph Against the Trials",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3425": {
+ "name": "Lyceum of Kivik Lir",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3426": {
+ "name": "Greater Withering",
+ "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-220 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "550",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3427": {
+ "name": "Lesser Withering",
+ "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-200 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3428": {
+ "name": "Withering",
+ "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-210 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "450",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3429": {
+ "name": "Kivik Lir's Venom",
+ "description": "The Spirit of Kivik Lir curses you for despoiling her tomb. Your natural armor is reduced by 200 points for 1 hour.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "9999",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3430": {
+ "name": "Inferior Scourge Aegis",
+ "description": "Reduces damage the target takes from Acid by 52%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "245",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3431": {
+ "name": "Lesser Scourge Aegis",
+ "description": "Reduces damage the target takes from Acid by 45%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "195",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3432": {
+ "name": "Scourge Aegis",
+ "description": "Reduces damage the target takes from Acid by 62%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "295",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3433": {
+ "name": "Decay",
+ "description": "The Spirit of Kivik Lir curses you for despoiling her tomb. You can no longer recover health naturally for 1 hour.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "9999",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3434": {
+ "name": "Eyes Beyond the Mist",
+ "description": "Enhances your understanding of the flux between worlds.",
+ "school": "Creature Enchantment",
+ "family": "434",
+ "difficulty": "3",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3435": {
+ "name": "Greater Mucor Blight",
+ "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 50%.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "500",
+ "duration": "15",
+ "mana": "10"
+ },
+ "3436": {
+ "name": "Lesser Eyes Beyond the Mist",
+ "description": "Enhances your understanding of the flux between worlds.",
+ "school": "Creature Enchantment",
+ "family": "434",
+ "difficulty": "1",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3437": {
+ "name": "Lesser Mucor Blight",
+ "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 10%.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "500",
+ "duration": "15",
+ "mana": "10"
+ },
+ "3438": {
+ "name": "Minor Eyes Beyond the Mist",
+ "description": "Enhances your understanding of the flux between worlds.",
+ "school": "Creature Enchantment",
+ "family": "434",
+ "difficulty": "2",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3439": {
+ "name": "Mucor Blight",
+ "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 20%.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "500",
+ "duration": "15",
+ "mana": "10"
+ },
+ "3440": {
+ "name": "Health of the Lugian",
+ "description": "Increase target's natural healing rate by 125%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "311",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "3441": {
+ "name": "Insight of the Lugian",
+ "description": "Increases the target's natural mana rate by 125%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "351",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "3442": {
+ "name": "Stamina of the Lugian",
+ "description": "Increases the rate at which the target regains Stamina by 125%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "351",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "3443": {
+ "name": "Blight of the Swamp",
+ "description": "The vile nature of the swamp swells within your body. you are afflicted with all manner of ill feelings and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "327",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3444": {
+ "name": "Justice of The Sleeping One",
+ "description": "This spell attempts to rip all positive creature magic from a single target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3445": {
+ "name": "The Sleeping One's Purge",
+ "description": "This spell attempts to rip all positive creature magic from a single target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3446": {
+ "name": "Wrath of the Swamp",
+ "description": "The vile nature of the swamp swells within you and each of your companions. you are all afflicted with ill feelings and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "327",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3447": {
+ "name": "Asphyxiating Spore Cloud",
+ "description": "A small cloud of spores surrounds you and your fellowship choking the vigor from your bodies. Causes stamina loss over time.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "326",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3448": {
+ "name": "Mass Blood Affliction",
+ "description": "Pain wracks your body and the bodies of your fellowship members as painful spores burrow into your flesh and enter your blood stream. Causes health damage over time.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "326",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3449": {
+ "name": "Mass Blood Disease",
+ "description": "Pain wracks your body and the bodies of your fellowship members as painful spores burrow into your flesh and enter your blood stream. Causes a large amount of damage over time.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "325",
+ "duration": "40",
+ "mana": "70"
+ },
+ "3450": {
+ "name": "Cloud of Mold Spores",
+ "description": "A small cloud of spores pours into your lungs choking the vigor from your body. Stamina degenerates over time.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "325",
+ "duration": "40",
+ "mana": "70"
+ },
+ "3451": {
+ "name": "Concussive Belch",
+ "description": "The creature let's out a violent belch that is laden with magical force. It damages a single target for 120-220 of bludgeon Damage.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "3452": {
+ "name": "Concussive Wail",
+ "description": "The creature let's out a violent wail that is laden with magical force. It sends a ring of damage around it dealing 80 ?Çô 200 damage bludgeoning damage.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3453": {
+ "name": "Feelun Blight",
+ "description": "The creature summons the power of the mighty feelun tree and coalesces it into a blast of fire against a single target. It damages a single target for 120 -220 of fire damage.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3454": {
+ "name": "Wrath of the Feelun",
+ "description": "The creature summons the power of the mighty feelun tree and coalesces it into a blast of fire against a single target. It damages a single target for 120 - 220 of fire damage.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "3455": {
+ "name": "Koruu Cloud",
+ "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. The spells deals 80 ?Çô 200 damage of cold damage with each bolt.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3456": {
+ "name": "Koruu's Wrath",
+ "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. 120 - 220 of cold damage.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "3457": {
+ "name": "Mana Bolt",
+ "description": "The creature launch a blast of pure mana at a single target dealing 50 ?Çô 100 damage.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "3458": {
+ "name": "Mana Purge",
+ "description": "The creature launch a blast of pure mana in a ring around itself dealing 50 ?Çô 100 damage with each bolt.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3459": {
+ "name": "Mucor Cloud",
+ "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. This speall deals 80 ?Çô 200 damage acid damage with each bolt.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3460": {
+ "name": "Dissolving Vortex",
+ "description": "A cloud of spores launches out of the creature inflicting powerful damage to a target. Deals 120 - 220 acid damage to a single target.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "3461": {
+ "name": "Batter Flesh",
+ "description": "Target's flesh is left open and vulnerable to bludgeoning attacks. Increases damage the target takes from Bludgeoning by 200%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "350",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3462": {
+ "name": "Canker Flesh",
+ "description": "Target's flesh is left open and vulnerable to acid attacks. Increases damage the target takes from acid by 200%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "350",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3463": {
+ "name": "Char Flesh",
+ "description": "Target's flesh is left open and vulnerable to fire attacks. Increases damage the target takes from fire by 200%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "350",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3464": {
+ "name": "Numb Flesh",
+ "description": "Target's flesh is left open and vulnerable to cold attacks. Increases damage the target takes from Cold by 200%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "350",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3465": {
+ "name": "Blood Affliction",
+ "description": "Pain wracks your body as painful spores burrow into your flesh and enter your blood stream.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "326",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3466": {
+ "name": "Blood Disease",
+ "description": "Pain wracks your body as painful spores burrow into your flesh and enter your blood stream.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "325",
+ "duration": "40",
+ "mana": "10"
+ },
+ "3467": {
+ "name": "Choking Spores",
+ "description": "A small cloud of spores pours into your lungs choking the vigor from your body.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "326",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3468": {
+ "name": "Mold Spores",
+ "description": "A small cloud of spores pours into your lungs choking the vigor from your body.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "326",
+ "duration": "40",
+ "mana": "10"
+ },
+ "3469": {
+ "name": "Parasitic Affliction",
+ "description": "A host of parasites burrow into your flesh and begin to devour you from within your own blood. The healthier you are. the more potent these parasites become.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "326",
+ "duration": "300",
+ "mana": "10"
+ },
+ "3470": {
+ "name": "Lesser Endless Well",
+ "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 55% increase to their nautral mana recovery rate.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3471": {
+ "name": "The Endless Well",
+ "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 70% increase to their nautral mana recovery rate.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3472": {
+ "name": "Greater Endless Well",
+ "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 85% increase to their nautral mana recovery rate.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3473": {
+ "name": "Superior Endless Well",
+ "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 115% increase to their nautral mana recovery rate.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3474": {
+ "name": "Lesser Soothing Wind",
+ "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 55% increase to their natural health recovery rate.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3475": {
+ "name": "The Soothing Wind",
+ "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 70% increase to their natural health recovery rate.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3476": {
+ "name": "Greater Soothing Wind",
+ "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 85% increase to their natural health recovery rate.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3477": {
+ "name": "Superior Soothing Wind",
+ "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 115% increase to their natural health recovery rate.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3478": {
+ "name": "Lesser Golden Wind",
+ "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 55% increase to their natural stamina recovery rate.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3479": {
+ "name": "The Golden Wind",
+ "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 70% increase to their natural stamina recovery rate.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3480": {
+ "name": "Greater Golden Wind",
+ "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 85% increase to their natural stamina recovery rate.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3481": {
+ "name": "Superior Golden Wind",
+ "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 115% increase to their natural stamina recovery rate.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3482": {
+ "name": "Izji Qo's Antechamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3483": {
+ "name": "Izji Qo's Defenders",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3484": {
+ "name": "Izji Qo's Defenders",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3485": {
+ "name": "Izji Qo's Defenders",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3486": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3487": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3488": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3489": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3490": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3491": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3492": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3493": {
+ "name": "Into the Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3494": {
+ "name": "Izji Qo's Crypt",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3495": {
+ "name": "Izji Qo's Test",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3496": {
+ "name": "Inzji Qo's Test",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3497": {
+ "name": "Izji Qo's Test",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3498": {
+ "name": "Disintegrated",
+ "description": "Transports the target to the last Lifestone he or she used.",
+ "school": "Item Enchantment",
+ "family": "215",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3499": {
+ "name": "Arcanum Salvaging Self I",
+ "description": "Increases the caster's Salvaging skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "3500": {
+ "name": "Arcanum Salvaging Self II",
+ "description": "Increases the caster's Salvaging skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "3501": {
+ "name": "Arcanum Salvaging Self III",
+ "description": "Increases the caster's Salvaging skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3502": {
+ "name": "Arcanum Salvaging Self IV",
+ "description": "Increases the caster's Salvaging skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3503": {
+ "name": "Arcanum Salvaging Self V",
+ "description": "Increases the caster's Salvaging skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "3504": {
+ "name": "Arcanum Salvaging Self VI",
+ "description": "Increases the caster's Salvaging skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "3505": {
+ "name": "Arcanum Salvaging VII",
+ "description": "Increases the caster's Salvaging skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3506": {
+ "name": "Arcanum Enlightenment I",
+ "description": "Increases the target's Salvaging skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3507": {
+ "name": "Arcanum Enlightenment II",
+ "description": "Increases the target's Salvaging skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "3508": {
+ "name": "Arcanum Enlightenment III",
+ "description": "Increases the target's Salvaging skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "3509": {
+ "name": "Arcanum Enlightenment IV",
+ "description": "Increases the target's Salvaging skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3510": {
+ "name": "Arcanum Enlightenment V",
+ "description": "Increases the target's Salvaging skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3511": {
+ "name": "Arcanum Enlightenment VI",
+ "description": "Increases the target's Salvaging skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3512": {
+ "name": "Arcanum Enlightenment VII",
+ "description": "Increases the target's Salvaging skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3513": {
+ "name": "Nuhmudira's Wisdom I",
+ "description": "Increases the caster's Salvaging skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "3514": {
+ "name": "Nuhmudira's Wisdom II",
+ "description": "Increases the caster's Salvaging skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "3515": {
+ "name": "Nuhmudira's Wisdom III",
+ "description": "Increases the caster's Salvaging skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3516": {
+ "name": "Nuhmudira's Wisdom IV",
+ "description": "Increases the caster's Salvaging skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3517": {
+ "name": "Nuhmudira's Wisdom V",
+ "description": "Increases the caster's Salvaging skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "3518": {
+ "name": "Nuhmudira's Wisdom VI",
+ "description": "Increases the caster's Salvaging skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "3519": {
+ "name": "Nuhmudira's Wisdom VII",
+ "description": "Increases the caster's Salvaging skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3520": {
+ "name": "Nuhmudira's Enlightenment I",
+ "description": "Increases the target's Salvaging skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3521": {
+ "name": "Nuhmudira's Enlightenment II",
+ "description": "Increases the target's Salvaging skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "3522": {
+ "name": "Nuhmudira's Enlightenment III",
+ "description": "Increases the target's Salvaging skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "3523": {
+ "name": "Nuhmudira's Enlightenment IV",
+ "description": "Increases the target's Salvaging skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "3524": {
+ "name": "Nuhmudira's Enlightenment V",
+ "description": "Increases the target's Salvaging skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3525": {
+ "name": "Nuhmudira Enlightenment VI",
+ "description": "Increases the target's Salvaging skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "3526": {
+ "name": "Nuhmudira's Enlightenment",
+ "description": "Increases the target's Salvaging skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3527": {
+ "name": "Intoxication I",
+ "description": "Decreases the target's Coordination by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "130",
+ "duration": "300",
+ "mana": "50"
+ },
+ "3528": {
+ "name": "Intoxication II",
+ "description": "Decreases the target's Coordination by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "230",
+ "duration": "300",
+ "mana": "50"
+ },
+ "3529": {
+ "name": "Intoxication III",
+ "description": "Decreases the target's Coordination by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "330",
+ "duration": "300",
+ "mana": "50"
+ },
+ "3530": {
+ "name": "Ketnan's Eye",
+ "description": "Increases the target's Focus by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "420",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "3531": {
+ "name": "Bobo's Quickening",
+ "description": "Increases the caster's Quickness by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "420",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "3532": {
+ "name": "Bobo's Focused Blessing",
+ "description": "Increases the target's Focus by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "140",
+ "duration": "300",
+ "mana": "50"
+ },
+ "3533": {
+ "name": "Brighteyes' Favor",
+ "description": "Increases the caster's Coordination by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "420",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "3534": {
+ "name": "Free Ride to the K'nath Lair",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3535": {
+ "name": "Free Ride to Sanamar",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3536": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3537": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3538": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3539": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3540": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3541": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3542": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3543": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3544": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3545": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3546": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3547": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3548": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3549": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3550": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3551": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3552": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3553": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3554": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3555": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3556": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3557": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3558": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3559": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3560": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3561": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3562": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3563": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3564": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3565": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3566": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3567": {
+ "name": "Fiun Flee",
+ "description": "Increases the target's Run skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "515",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3568": {
+ "name": "Fiun Efficiency",
+ "description": "Increases the target's Mana Conversion skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "516",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3569": {
+ "name": "Mana Boost",
+ "description": "Raises mana by 10% for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "412",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3570": {
+ "name": "Stamina Boost",
+ "description": "Raises Stamina by 10% for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3571": {
+ "name": "Health Boost",
+ "description": "Raises health by 10% for 30 minutes.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3572": {
+ "name": "Inner Brilliance",
+ "description": "Raises target's Focus by 12 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3573": {
+ "name": "Inner Might",
+ "description": "Raises target's Strength by 12 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3574": {
+ "name": "Inner Will",
+ "description": "Raises target's Self by 12 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3575": {
+ "name": "Perfect Balance",
+ "description": "Raises target's Coordination by 12 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3576": {
+ "name": "Perfect Health",
+ "description": "Raises target's Endurance by 12 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3577": {
+ "name": "Perfect Speed",
+ "description": "Raises target's Quickness by 12 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3578": {
+ "name": "Depths of Liazk Itzi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3579": {
+ "name": "Underpassage of Liazk Itzi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3580": {
+ "name": "Center of Liazk Itzi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3581": {
+ "name": "Secrets of Liazk Itzi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3582": {
+ "name": "Eaten!",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3583": {
+ "name": "Regurgitated",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3584": {
+ "name": "Qin Xikit's Receiving Chamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3585": {
+ "name": "Eaten!",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3586": {
+ "name": "Qin Xikit's Antechamber",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3587": {
+ "name": "Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3588": {
+ "name": "Secrets of Qin Xikit's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3589": {
+ "name": "Qin Xikit's Tomb",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3590": {
+ "name": "Regurgitated!",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3591": {
+ "name": "Access to Xi Ru's Font",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3592": {
+ "name": "Qin Xikit's Island",
+ "description": "Summons a portal to Qin Xikit's Island.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "351",
+ "duration": "900",
+ "mana": "110"
+ },
+ "3593": {
+ "name": "Eaten!",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3594": {
+ "name": "Underpassage of Hizk Ri's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3595": {
+ "name": "Underpassage of Hizk Ri's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3596": {
+ "name": "Center of Hizk Ri's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3597": {
+ "name": "Secrets of Hizk Ri's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3598": {
+ "name": "Regurgitated",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3599": {
+ "name": "Eaten!",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3600": {
+ "name": "Depths of Ixir Zi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3601": {
+ "name": "Underpassage of Ixir Zi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3602": {
+ "name": "Center of Ixir Zi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3603": {
+ "name": "Secrets of Ixir Zi's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3604": {
+ "name": "Regurgitated",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3605": {
+ "name": "Portal to Cragstone",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3606": {
+ "name": "Eaten!",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3607": {
+ "name": "Depth's of Izji Qo's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3608": {
+ "name": "Underpassage of Izji Qo's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3609": {
+ "name": "Center of Izji Qo's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3610": {
+ "name": "Secrets of Izji Qo's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3611": {
+ "name": "Regurgitated",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3612": {
+ "name": "Eaten!",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3613": {
+ "name": "Regurgitated",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3614": {
+ "name": "Underpassage of Kivik Lir's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3615": {
+ "name": "Center of Kivik Lir's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3616": {
+ "name": "Secrets of Kivik Lir's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3617": {
+ "name": "Depths of Kivik Lir's Temple",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3618": {
+ "name": "Portal to Western Aphus Lassel",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3619": {
+ "name": "Portal to the Black Death Catacombs",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3620": {
+ "name": "Portal to Black Spawn Den",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3621": {
+ "name": "Portal to Black Spawn Den",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3622": {
+ "name": "Portal to Black Spawn Den",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3623": {
+ "name": "Portal to Center of the Obsidian Plains",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3624": {
+ "name": "Portal to Hills Citadel",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3625": {
+ "name": "Portal to the Kara Wetlands",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3626": {
+ "name": "Portal to the Marescent Plateau Base",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3627": {
+ "name": "Portal to Neydisa Castle",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3628": {
+ "name": "Portal to the Northern Landbridge",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3629": {
+ "name": "Portal to the Olthoi Horde Nest",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3630": {
+ "name": "Portal to the Olthoi North",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3631": {
+ "name": "Portal to the Renegade Fortress",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3632": {
+ "name": "Portal to Ridge Citadel",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3633": {
+ "name": "Portal to the Southern Landbridge",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3634": {
+ "name": "Portal To Valley of Death",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3635": {
+ "name": "Portal to Wilderness Citadel",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3636": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3637": {
+ "name": "Ranger's Boon",
+ "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3638": {
+ "name": "Ranger's Boon",
+ "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3639": {
+ "name": "Ranger's Boon",
+ "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3640": {
+ "name": "Enchanter's Boon",
+ "description": "Increases the target's Creature Enchantment skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "430",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3641": {
+ "name": "Hieromancer's Boon",
+ "description": "Increases the target's War Magic skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "426",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3642": {
+ "name": "Fencer's Boon",
+ "description": "Increases the target's Finesse Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "442",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3643": {
+ "name": "Life Giver's Boon",
+ "description": "Increases the target's Life Magic skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "429",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3644": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3645": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3646": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3647": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3648": {
+ "name": "Soldier's Boon",
+ "description": "Increases the target's Heavy Weapons skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "447",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3649": {
+ "name": "Aerfalle's Embrace",
+ "description": "Decreases the attributes of all fellowship members by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "70"
+ },
+ "3650": {
+ "name": "Aerfalle's Enforcement",
+ "description": "Lowers all fellowship members skills by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "70"
+ },
+ "3651": {
+ "name": "Aerfalle's Gaze",
+ "description": "Lowers target's skills by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "70"
+ },
+ "3652": {
+ "name": "Aerfalle's Touch",
+ "description": "Decreases all of the target's attributes by 45 points for 120 seconds.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "325",
+ "duration": "120",
+ "mana": "300"
+ },
+ "3653": {
+ "name": "Acid Blast III",
+ "description": "Shoots three streams of acid toward the target. Each stream does 11-21 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3654": {
+ "name": "Acid Volley I",
+ "description": "Shoots three streams of acid toward the target. Each stream does 4-10 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "3655": {
+ "name": "Acid Volley II",
+ "description": "Shoots three streams of acid toward the target. Each stream does 8-16 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3656": {
+ "name": "Blade Blast III",
+ "description": "Shoots three whirling blades outward from the caster. Each blade does 11-21 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3657": {
+ "name": "Blade Blast IV",
+ "description": "Shoots three whirling blades outward from the caster. Each blade does 11-21 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3658": {
+ "name": "Blade Volley I",
+ "description": "Shoots three whirling blades toward the target. Each blade does 4-10 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "3659": {
+ "name": "Blade Volley II",
+ "description": "Shoots three whirling blades toward the target. Each blade does 8-16 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3660": {
+ "name": "Bludgeoning Volley I",
+ "description": "Shoots three shock waves toward the target. Each wave does 4-10 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3661": {
+ "name": "Bludgeoning Volley II",
+ "description": "Shoots three shock waves toward the target. Each wave does 8-16 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3662": {
+ "name": "Flame Blast I",
+ "description": "Shoots three streams of acid toward the target. Each stream does 11-21 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "3663": {
+ "name": "Flame Volley III",
+ "description": "Shoots three bolts of flame toward the target. Each bolt does 4-10 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3664": {
+ "name": "Flame Volley IV",
+ "description": "Shoots three bolts of flame toward the target. Each bolt does 8-16 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3665": {
+ "name": "Force Blast III",
+ "description": "Shoots three force bolts outward from the caster. Each bolt does 11-21 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3666": {
+ "name": "Force Blast IV",
+ "description": "Shoots three force bolts outward from the caster. Each bolt does 11-21 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3667": {
+ "name": "Force Volley III",
+ "description": "Shoots three bolts of force toward the target. Each bolt does 4-10 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3668": {
+ "name": "Force Volley IV",
+ "description": "Shoots three bolts of force toward the target. Each bolt does 8-16 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3669": {
+ "name": "Frost Blast III",
+ "description": "Shoots three bolts of frost outward from the caster. Each bolt does 11-21 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3670": {
+ "name": "Frost Blast IV",
+ "description": "Shoots three bolts of frost outward from the caster. Each bolt does 11-21 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3671": {
+ "name": "Frost Volley III",
+ "description": "Shoots three bolts of frost toward the target. Each bolt does 4-10 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3672": {
+ "name": "Frost Volley IV",
+ "description": "Shoots three bolts of frost toward the target. Each bolt does 8-16 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3673": {
+ "name": "Lightning Blast III",
+ "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 11-21 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3674": {
+ "name": "Lightning Blast IV",
+ "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 11-21 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3675": {
+ "name": "Lightning Volley III",
+ "description": "Shoots three bolts of lightning toward the target. Each bolt does 4-10 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3676": {
+ "name": "Lightning Volley IV",
+ "description": "Shoots three bolts of lightning toward the target. Each bolt does 8-16 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3677": {
+ "name": "Shock Blast III",
+ "description": "Shoots three shock waves outward from the caster. Each wave does 11-21 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "3678": {
+ "name": "Shock Blast IV",
+ "description": "Shoots three shock waves outward from the caster. Each wave does 11-21 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "3679": {
+ "name": "Prodigal Acid Bane",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 500%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "449",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3680": {
+ "name": "Prodigal Acid Protection",
+ "description": "Reduces damage the caster takes from acid by 99.9%.",
+ "school": "Life Magic",
+ "family": "448",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3681": {
+ "name": "Prodigal Alchemy Mastery",
+ "description": "Increases the caster's Alchemy skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "450",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3682": {
+ "name": "Prodigal Arcane Enlightenment",
+ "description": "Increases the caster's Arcane Lore skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "456",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3683": {
+ "name": "Prodigal Armor Expertise",
+ "description": "Increases the caster's Armor Tinkering skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "452",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3684": {
+ "name": "Prodigal Armor",
+ "description": "Increases the caster's natural armor by 1000 points.",
+ "school": "Life Magic",
+ "family": "457",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3685": {
+ "name": "Prodigal Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3686": {
+ "name": "Prodigal Blade Bane",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 500%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "503",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3687": {
+ "name": "Prodigal Blade Protection",
+ "description": "Reduces damage the caster takes from Slashing by 99.9%.",
+ "school": "Life Magic",
+ "family": "502",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3688": {
+ "name": "Prodigal Blood Drinker",
+ "description": "Increases a weapon's damage value by 50 points.",
+ "school": "Item Enchantment",
+ "family": "473",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3689": {
+ "name": "Prodigal Bludgeon Bane",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 500%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "464",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3690": {
+ "name": "Prodigal Bludgeon Protection",
+ "description": "Reduces damage the caster takes from Bludgeoning by 99.9%.",
+ "school": "Life Magic",
+ "family": "463",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3691": {
+ "name": "Prodigal Missile Weapon Mastery",
+ "description": "Increases the caster's Missile Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "465",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3692": {
+ "name": "Prodigal Cold Protection",
+ "description": "Reduces damage the caster takes from Cold by 99.9%.",
+ "school": "Life Magic",
+ "family": "466",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3693": {
+ "name": "Prodigal Cooking Mastery",
+ "description": "Increases the caster's Cooking skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "468",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3694": {
+ "name": "Prodigal Coordination",
+ "description": "Increases the caster's Coordination by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "469",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3695": {
+ "name": "Prodigal Creature Enchantment Mastery",
+ "description": "Increases the caster's Creature Enchantment skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "470",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3696": {
+ "name": "Prodigal Missile Weapon Mastery",
+ "description": "Increases the caster's Missile Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "465",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3697": {
+ "name": "Prodigal Finesse Weapon Mastery",
+ "description": "Increases the caster's Finesse Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "472",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3698": {
+ "name": "Prodigal Deception Mastery",
+ "description": "Increases the caster's Deception skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "474",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3699": {
+ "name": "Prodigal Defender",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 25%.",
+ "school": "Item Enchantment",
+ "family": "475",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3700": {
+ "name": "Prodigal Endurance",
+ "description": "Increases the caster's Endurance by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "478",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3701": {
+ "name": "Prodigal Fealty",
+ "description": "Increases the caster's Loyalty skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "490",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3702": {
+ "name": "Prodigal Fire Protection",
+ "description": "Reduces damage the caster takes from Fire by 99.9%.",
+ "school": "Life Magic",
+ "family": "479",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3703": {
+ "name": "Prodigal Flame Bane",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 500%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "480",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3704": {
+ "name": "Prodigal Fletching Mastery",
+ "description": "Increases the caster's Fletching skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "481",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3705": {
+ "name": "Prodigal Focus",
+ "description": "Increases the caster's Focus by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "482",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3706": {
+ "name": "Prodigal Frost Bane",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 500%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "467",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3707": {
+ "name": "Prodigal Healing Mastery",
+ "description": "Increases the caster's Healing skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "483",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3708": {
+ "name": "Prodigal Heart Seeker",
+ "description": "Increases a weapon's Attack Skill modifier by 25%.",
+ "school": "Item Enchantment",
+ "family": "461",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3709": {
+ "name": "Prodigal Hermetic Link",
+ "description": "Increases a magic casting implement's mana conversion bonus by 100%.",
+ "school": "Item Enchantment",
+ "family": "451",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3710": {
+ "name": "Prodigal Impenetrability",
+ "description": "Improves a shield or piece of armor's armor value by 1000 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "458",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3711": {
+ "name": "Prodigal Impregnability",
+ "description": "Increases the caster's Missile Defense skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "496",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3712": {
+ "name": "Prodigal Invulnerability",
+ "description": "Increases the caster's Melee Defense skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "495",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3713": {
+ "name": "Prodigal Item Enchantment Mastery",
+ "description": "Increases the caster's Item Enchantment skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "485",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3714": {
+ "name": "Prodigal Item Expertise",
+ "description": "Increases the caster's Item Tinkering skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "453",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3715": {
+ "name": "Prodigal Jumping Mastery",
+ "description": "Increases the caster's Jump skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "486",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3716": {
+ "name": "Prodigal Leadership Mastery",
+ "description": "Increases the caster's Leadership skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "487",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3717": {
+ "name": "Prodigal Life Magic Mastery",
+ "description": "Increases the caster's Life Magic skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "488",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3718": {
+ "name": "Prodigal Lightning Bane",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 500%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "477",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3719": {
+ "name": "Prodigal Lightning Protection",
+ "description": "Reduces damage the caster takes from Lightning by 99.9%.",
+ "school": "Life Magic",
+ "family": "476",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3720": {
+ "name": "Prodigal Lockpick Mastery",
+ "description": "Increases the caster's Lockpick skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "489",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3721": {
+ "name": "Prodigal Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3722": {
+ "name": "Prodigal Magic Item Expertise",
+ "description": "Increases the caster's Magic Item Tinkering skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "454",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3723": {
+ "name": "Prodigal Magic Resistance",
+ "description": "Increases the caster's Magic Defense skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "492",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3724": {
+ "name": "Prodigal Mana Conversion Mastery",
+ "description": "Increases the caster's Mana Conversion skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "494",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3725": {
+ "name": "Prodigal Mana Renewal",
+ "description": "Increases the caster's natural mana rate by 1000%.",
+ "school": "Life Magic",
+ "family": "493",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3726": {
+ "name": "Prodigal Monster Attunement",
+ "description": "Increases the caster's Assess Monster skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "459",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3727": {
+ "name": "Prodigal Person Attunement",
+ "description": "Increases the caster's Assess Person skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "460",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3728": {
+ "name": "Prodigal Piercing Bane",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 500%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "498",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3729": {
+ "name": "Prodigal Piercing Protection",
+ "description": "Reduces damage the caster takes from Piercing by 99.9%.",
+ "school": "Life Magic",
+ "family": "497",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3730": {
+ "name": "Prodigal Quickness",
+ "description": "Increases the caster's Quickness by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "499",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3731": {
+ "name": "Prodigal Regeneration",
+ "description": "Increase caster's natural healing rate by 1000%.",
+ "school": "Life Magic",
+ "family": "484",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3732": {
+ "name": "Prodigal Rejuvenation",
+ "description": "Increases the rate at which the caster regains Stamina by 1000%.",
+ "school": "Life Magic",
+ "family": "506",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3733": {
+ "name": "Prodigal Willpower",
+ "description": "Increases the caster's Self by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "501",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3734": {
+ "name": "Prodigal Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3735": {
+ "name": "Prodigal Spirit Drinker",
+ "description": "Increases a caster's damage mod by 15%.",
+ "school": "Item Enchantment",
+ "family": "473",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3736": {
+ "name": "Prodigal Sprint",
+ "description": "Increases the caster's Run skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "500",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3737": {
+ "name": "Prodigal Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3738": {
+ "name": "Prodigal Strength",
+ "description": "Increases the caster's Strength by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "507",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3739": {
+ "name": "Prodigal Swift Killer",
+ "description": "Improves a weapon's speed by 1000 points.",
+ "school": "Item Enchantment",
+ "family": "512",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3740": {
+ "name": "Prodigal Heavy Weapon Mastery",
+ "description": "Increases the caster's Heavy Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "508",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3741": {
+ "name": "Prodigal Missile Weapon Mastery",
+ "description": "Increases the caster's Missile Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "465",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3742": {
+ "name": "Prodigal Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3743": {
+ "name": "Prodigal War Magic Mastery",
+ "description": "Increases the caster's War Magic skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "511",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3744": {
+ "name": "Prodigal Weapon Expertise",
+ "description": "Increases the caster's Weapon Tinkering skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "455",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "3745": {
+ "name": "Inferior Inferno Aegis",
+ "description": "Reduces damage the target takes from Fire by 52%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "245",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3746": {
+ "name": "Inferno Aegis",
+ "description": "Reduces damage the target takes from Fire by 62%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "295",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3747": {
+ "name": "Lesser Inferno Aegis",
+ "description": "Reduces damage the target takes from Fire by 45%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "195",
+ "duration": "3600",
+ "mana": "40"
+ },
+ "3748": {
+ "name": "Master Salvager's Greater Boon",
+ "description": "Increases the caster's Salvaging skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "325",
+ "duration": "360",
+ "mana": "70"
+ },
+ "3749": {
+ "name": "Master Alchemist's Boon",
+ "description": "Increases the caster's Alchemy skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "325",
+ "duration": "180",
+ "mana": "50"
+ },
+ "3750": {
+ "name": "Master Alchemist's Greater Boon",
+ "description": "Increases the caster's Alchemy skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "325",
+ "duration": "360",
+ "mana": "50"
+ },
+ "3751": {
+ "name": "Master Chef's Boon",
+ "description": "Increases the target's Cooking skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "325",
+ "duration": "180",
+ "mana": "70"
+ },
+ "3752": {
+ "name": "Master Chef's Greater Boon",
+ "description": "Increases the target's Cooking skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "325",
+ "duration": "360",
+ "mana": "70"
+ },
+ "3753": {
+ "name": "Fletching Master's Boon",
+ "description": "Increases the target's Fletching skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "325",
+ "duration": "180",
+ "mana": "50"
+ },
+ "3754": {
+ "name": "Fletching Master's Greater Boon",
+ "description": "Increases the target's Fletching skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "325",
+ "duration": "360",
+ "mana": "50"
+ },
+ "3755": {
+ "name": "Master Lockpicker's Boon",
+ "description": "Increases the target's Lockpick skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "325",
+ "duration": "180",
+ "mana": "70"
+ },
+ "3756": {
+ "name": "Master Lockpicker's Greater Boon",
+ "description": "Increases the target's Lockpick skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "325",
+ "duration": "360",
+ "mana": "70"
+ },
+ "3757": {
+ "name": "Master Salvager's Boon",
+ "description": "Increases the caster's Salvaging skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "325",
+ "duration": "180",
+ "mana": "70"
+ },
+ "3758": {
+ "name": "Inky Armor",
+ "description": "Your skin is coated with a fine layer of Niffis ink. Your natural armor is increased by 5 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "513",
+ "difficulty": "1",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3759": {
+ "name": "Mana Giver",
+ "description": "Increases maximum mana by 15 points.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "3760": {
+ "name": "Culinary Ecstasy",
+ "description": "All secondary attributes are increased by 10% for the duration of the spell.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "300",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3761": {
+ "name": "Fiun Resistance",
+ "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "514",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3762": {
+ "name": "Defiled Temple Portal Sending",
+ "description": "Transports the target to the Defiled Temple",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3763": {
+ "name": "Balloon Ride",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3764": {
+ "name": "Summons a portal to the Banderling Shrine",
+ "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.",
+ "school": "Item Enchantment",
+ "family": "203",
+ "difficulty": "200",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3765": {
+ "name": "Entry to the Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3766": {
+ "name": "Entry to the Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3767": {
+ "name": "Entry to the Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3768": {
+ "name": "Bitter Punishment",
+ "description": "Transports the target to far above Ayn Tayan.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3769": {
+ "name": "Entry to the Mausoleum of Anger",
+ "description": "Transports the target to an entrance of the Mausoleum of Anger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3770": {
+ "name": "Entry to the Mausoleum of Anger",
+ "description": "Transports the target to an entrance of the Mausoleum of Anger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3771": {
+ "name": "Entry to the Mausoleum of Anger",
+ "description": "Transports the target to an entrance of the Mausoleum of Anger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3772": {
+ "name": "Entry to the Mausoleum of Anger",
+ "description": "Transports the target to an entrance of the Mausoleum of Anger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3773": {
+ "name": "Entry to the Mausoleum of Anger",
+ "description": "Transports the target to an entrance of the Mausoleum of Anger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3774": {
+ "name": "Entry to the Mausoleum of Anger",
+ "description": "Transports the target to an entrance of the Mausoleum of Anger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3775": {
+ "name": "Angry Punishment",
+ "description": "Transports the target to high above the northern mountains",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3776": {
+ "name": "Entry to the Mausoleum of Cruelty",
+ "description": "Transports the target to an entrance of the Mausoleum of Cruelty",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3777": {
+ "name": "Entry to the Mausoleum of Cruelty",
+ "description": "Transports the target to an entrance of the Mausoleum of Cruelty",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3778": {
+ "name": "Entry to the Mausoleum of Cruelty",
+ "description": "Transports the target to an entrance of the Mausoleum of Cruelty",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3779": {
+ "name": "Entry to the Mausoleum of Cruelty",
+ "description": "Transports the target to an entrance of the Mausoleum of Cruelty",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3780": {
+ "name": "Entry to the Mausoleum of Cruelty",
+ "description": "Transports the target to an entrance of the Mausoleum of Cruelty",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3781": {
+ "name": "Entry to the Mausoleum of Cruelty",
+ "description": "Transports the target to an entrance of the Mausoleum of Cruelty",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3782": {
+ "name": "Cruel Punishment",
+ "description": "Transports the target to high above a Shadow Spire crater",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3783": {
+ "name": "Entry to the Accursed Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3784": {
+ "name": "Entry to the Accursed Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3785": {
+ "name": "Entry to the Accursed Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3786": {
+ "name": "Entry to the Accursed Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3787": {
+ "name": "Entry to the Accursed Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3788": {
+ "name": "Entry to the Accursed Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3789": {
+ "name": "Slaughter Punishment",
+ "description": "Transports the target to high above a Spire crater in the Obsidian Plains",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3790": {
+ "name": "Entry to the Unholy Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3791": {
+ "name": "Entry to the Unholy Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3792": {
+ "name": "Entry to the Unholy Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3793": {
+ "name": "Entry to the Unholy Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3794": {
+ "name": "Entry to the Unholy Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3795": {
+ "name": "Entry to the Unholy Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3796": {
+ "name": "Entry to the Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3797": {
+ "name": "Entry to the Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3798": {
+ "name": "Entry to the Mausoleum of Bitterness",
+ "description": "Transports the target to an entrance of the Mausoleum of Bitterness",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3799": {
+ "name": "Black Marrow Bliss",
+ "description": "The warm flavor of the Black Marrow Tea soothes your soul.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "3800": {
+ "name": "Burning Spirit",
+ "description": "Increases all attributes by 2 for 10 minutes. This effect layers on top of normal spells as well as cantrips.",
+ "school": "Creature Enchantment",
+ "family": "517",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3801": {
+ "name": "Shadow Touch",
+ "description": "Increases the target's Melee Defense skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "518",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3802": {
+ "name": "Shadow Reek",
+ "description": "Increases the target's War Magic skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "426",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3803": {
+ "name": "Shadow Shot",
+ "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3804": {
+ "name": "Shadow Shot",
+ "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3805": {
+ "name": "Acid Ring",
+ "description": "Shoots nine waves of acid outward from the caster. Each wave does 30-60 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3806": {
+ "name": "Flame Ring",
+ "description": "Shoots nine waves of flame outward from the caster. Each wave does 30-60 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3807": {
+ "name": "Force Ring",
+ "description": "Shoots nine waves of force outward from the caster. Each wave does 30-60 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3808": {
+ "name": "Lightning Ring",
+ "description": "Shoots nine waves of lightning outward from the caster. Each wave does 30-60 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3809": {
+ "name": "Minor Salvaging Aptitude",
+ "description": "Increases the target's Salvaging skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "437",
+ "difficulty": "5",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "3810": {
+ "name": "Asheron?ÇÖs Benediction",
+ "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "520",
+ "difficulty": "100",
+ "duration": "86400",
+ "mana": "1"
+ },
+ "3811": {
+ "name": "Blackmoor?ÇÖs Favor",
+ "description": "Increases Natural Armor by 50 points for 24 hours. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "519",
+ "difficulty": "100",
+ "duration": "86400",
+ "mana": "1"
+ },
+ "3812": {
+ "name": "Tursh's Lair",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3813": {
+ "name": "Free Ride to Shoushi",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3814": {
+ "name": "Free Ride to Yaraq",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3815": {
+ "name": "Free Ride to Holtburg",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3816": {
+ "name": "Marksman's Ken",
+ "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "10",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3817": {
+ "name": "Hunter's Ward",
+ "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "30",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3818": {
+ "name": "Curse of Raven Fury",
+ "description": "Drains half of the caster?ÇÖs health and projects a ring of vicious energy outwards. When struck. the target?ÇÖs health is reduced by 200% of the amount drained from the caster.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "3819": {
+ "name": "Conscript's Might",
+ "description": "The might of the Conscripts of the Raven Hand flows through you. bolstering your strength by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "10",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3820": {
+ "name": "Conscript's Ward",
+ "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "30",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3821": {
+ "name": "Augur's Will",
+ "description": "The will of the Augurs of the Raven Hand flows through you. increasing your Self by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "10",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3822": {
+ "name": "Augur's Glare",
+ "description": "You are filled with the intense dedication of the Augurs of the Raven Hand. increasing your Focus by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "10",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3823": {
+ "name": "Augur's Ward",
+ "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "30",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3824": {
+ "name": "Marksman's Ken",
+ "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "10",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3825": {
+ "name": "Marksman's Ken",
+ "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "10",
+ "duration": "2400",
+ "mana": "10"
+ },
+ "3826": {
+ "name": "a powerful force",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3827": {
+ "name": "Lunnum's Embrace",
+ "description": "Improves a shield or piece of armor's armor value by 500 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3828": {
+ "name": "Rage of Grael",
+ "description": "Infuses a weapon with the rage of the ancient barbarian gladiator. Grael. Increases a weapon's damage value by 3 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "3",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3829": {
+ "name": "Blessing of the Sundew",
+ "description": "Increases the rate at which the target regains Mana by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "25",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3830": {
+ "name": "Blessing of the Fly Trap",
+ "description": "Increases the rate at which the target regains Health by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "25",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3831": {
+ "name": "Blessing of the Pitcher Plant",
+ "description": "Increases the rate at which the target regains Stamina by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "25",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3832": {
+ "name": "Master's Voice",
+ "description": "The sibilant voice of Adhorix helps improve your concentration. Your Focus is raised by 10. This effect stacks with other Focus-raising spells.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "10",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3833": {
+ "name": "Minor Salvaging Aptitude",
+ "description": "Increases the target's Salvaging skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "437",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3834": {
+ "name": "Major Salvaging Aptitude",
+ "description": "Increases the target's Salvaging skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "437",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3835": {
+ "name": "Leviathan's Curse",
+ "description": "Drains 150-400 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "3836": {
+ "name": "Breath of the Deep",
+ "description": "Shoots a bolt of cold at the target. The bolt does 200-350 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3837": {
+ "name": "Water Island Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3838": {
+ "name": "Abandoned Mines Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3839": {
+ "name": "Brilliant Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3840": {
+ "name": "Dazzling Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3841": {
+ "name": "Devastated Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3842": {
+ "name": "Northeast Coast Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3843": {
+ "name": "Fire Island Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3844": {
+ "name": "Gatekeeper Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3845": {
+ "name": "Radiant Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3846": {
+ "name": "Ruined Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3847": {
+ "name": "Cataracts of Xik Minru",
+ "description": "Sends target to the Cataracts of Xik Minru",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "500",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3848": {
+ "name": "Combat Medication",
+ "description": "The energies imbued upon the ring weave a healing aura around you. increasing your natural healing rate by 130%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "320",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3849": {
+ "name": "Night Runner",
+ "description": "The energies imbued upon this ring surge through you. increasing your run skill by 40. Additional effects can be layered on top of this.",
+ "school": "Creature Enchantment",
+ "family": "369",
+ "difficulty": "350",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3850": {
+ "name": "Selflessness",
+ "description": "Your selflessness aids your fellows. but at a cost. Your health is reduced by 10.",
+ "school": "Life Magic",
+ "family": "280",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3851": {
+ "name": "Corrupted Essence",
+ "description": "Dark forces channel through your essence. improving your focus. Your Focus is raised by 15. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "15",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3852": {
+ "name": "Ravenous Armor",
+ "description": "You feel your life force being sapped slowly by your armor. Your Maximum Health is reduced by 10.",
+ "school": "Life Magic",
+ "family": "280",
+ "difficulty": "10",
+ "duration": "600",
+ "mana": "70"
+ },
+ "3853": {
+ "name": "Ardent Defense",
+ "description": "You are gifted with an improved defense against melee attacks. Your Melee Defense is raised by 12. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3854": {
+ "name": "True Loyalty",
+ "description": "Your loyalty knows no bounds while you wear this armor. Your Loyalty is raised by 12. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "345",
+ "difficulty": "12",
+ "duration": "600",
+ "mana": "10"
+ },
+ "3855": {
+ "name": "Flight of Bats",
+ "description": "Increases the target's Healing skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "100",
+ "duration": "780",
+ "mana": "30"
+ },
+ "3856": {
+ "name": "Ulgrim's Recall",
+ "description": "A really really good spell.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "3857": {
+ "name": "Pumpkin Rain",
+ "description": "Rains eight of pumpkins down. smooshing any that oppose.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "3858": {
+ "name": "Pumpkin Ring",
+ "description": "Shoots eight waves of flame outward from the caster. Each wave does 40-80 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3859": {
+ "name": "Pumpkin Wall",
+ "description": "Sends a wall of five balls of fire. two high. slowly towards the target. Each ball does 30-60 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3860": {
+ "name": "Sweet Speed",
+ "description": "Increases the target's Run by 100 points.",
+ "school": "Creature Enchantment",
+ "family": "369",
+ "difficulty": "500",
+ "duration": "60",
+ "mana": "50"
+ },
+ "3861": {
+ "name": "Taste for Blood",
+ "description": "The feral instincts of the Mukkir give you a keener eye towards improving your weapons. Increases the target's Weapon Tinkering skill by 8 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "377",
+ "difficulty": "8",
+ "duration": "600",
+ "mana": "50"
+ },
+ "3862": {
+ "name": "Duke Raoul's Pride",
+ "description": "Increases the caster's Self by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "420",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "3863": {
+ "name": "Hunter's Hardiness",
+ "description": "Increases the caster's Endurance by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "420",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "3864": {
+ "name": "Zongo's Fist",
+ "description": "Increases the caster's Strength by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "420",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "3865": {
+ "name": "Glenden Wood Recall",
+ "description": "Sends the caster to Glenden Wood.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3866": {
+ "name": "Glacial Speed",
+ "description": "Decreases the target's Run skill by 200 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "400",
+ "duration": "30",
+ "mana": "50"
+ },
+ "3867": {
+ "name": "Embrace of the Chill Shadow",
+ "description": "Reduces damage the target takes from Cold by 12%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "12",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3868": {
+ "name": "Dardante's Keep Portal Sending",
+ "description": "This spell sends the user to Dardante's Keep.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3869": {
+ "name": "Invocation of the Black Book",
+ "description": "The dark energies of the Black Book of Salt and Ash have made your weapon strike more accurately. The Invocation has raised your weapon's Attack Modifier by 10%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "521",
+ "difficulty": "250",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3870": {
+ "name": "Syphon Creature Essence",
+ "description": "This spell attempts to rip all positive Creature Magic from a single target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3871": {
+ "name": "Syphon Item Essence",
+ "description": "Dispels all positive Item Enchantments of level 7 or lower from the players wielded weapon or caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3872": {
+ "name": "Syphon Life Essence",
+ "description": "This spell attempts to rip all positive Life Magic from a single target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3873": {
+ "name": "Essence's Command",
+ "description": "Dispels 1-3 positive Life Magic enchantments of level 7 or lower from each person in the fellowship.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "300"
+ },
+ "3874": {
+ "name": "Death's Aura",
+ "description": "Drains 40-75 points of health from each member of the fellowship.",
+ "school": "Life Magic",
+ "family": "68",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3875": {
+ "name": "Acidic Curse",
+ "description": "Increases damage all fellowship members take from acid by 185%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "400",
+ "duration": "240",
+ "mana": "70"
+ },
+ "3876": {
+ "name": "Curse of the Blades",
+ "description": "Increases damage all fellowship members take from Slashing by 185%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "400",
+ "duration": "240",
+ "mana": "70"
+ },
+ "3877": {
+ "name": "Corrosive Strike",
+ "description": "Shoots a stream of acid at the target. The stream does 150-300 points of acid damage to the target.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3878": {
+ "name": "Incendiary Strike",
+ "description": "Shoots a bolt of flame at the target. The bolt does 150-300 points of fire damage to the target.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3879": {
+ "name": "Glacial Strike",
+ "description": "Shoots a bolt of frost at the target. The bolt does 150-300 points of cold damage to the target.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3880": {
+ "name": "Galvanic Strike",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 150-300 points of electrical damage to the target.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3881": {
+ "name": "Corrosive Ring",
+ "description": "Shoots eight waves of acid outward from the caster. Each wave does 100-200 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3882": {
+ "name": "Incendiary Ring",
+ "description": "Shoots eight waves of flame outward from the caster. Each wave does 100-200 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3883": {
+ "name": "Pyroclastic Explosion",
+ "description": "Shoots sixteen waves of flame outward from the caster. Each wave does 75-150 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3884": {
+ "name": "Glacial Ring",
+ "description": "Shoots eight waves of frost outward from the caster. Each wave does 100-200 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3885": {
+ "name": "Galvanic Ring",
+ "description": "Shoots eight waves of lightning outward from the caster. Each wave does 100-200 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3886": {
+ "name": "Magic Disarmament",
+ "description": "Decreases the target's Magic Defense skill by 200 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3887": {
+ "name": "Entering the Hatch",
+ "description": "Entering the Hatch",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3888": {
+ "name": "Passage to the Rare Chambers",
+ "description": "Passage to the Rare Chambers",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3889": {
+ "name": "Inner Burial Chamber Portal Sending",
+ "description": "Portals the user to the Inner Burial Chamber in the Ruschk Burial Mound dungeon.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3890": {
+ "name": "Will of the People",
+ "description": "The words of Arwyth Margyle have boosted your Self by 10 points. This spell stacks with normal spells. but will be overridden by Major Willpower.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "10",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3891": {
+ "name": "Honor of the Bull",
+ "description": "Your deidcation to the Viamontian cause has bolstered your loyalty by 10 points. This spell stacks with normal spells. but will be overridden by Major Loyalty.",
+ "school": "Creature Enchantment",
+ "family": "345",
+ "difficulty": "10",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "3892": {
+ "name": "Summon Flame Seekers",
+ "description": "Summons three Homing Flame Bolts.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3893": {
+ "name": "Summon Burning Haze",
+ "description": "Creates a cloud of burning gases.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3894": {
+ "name": "Dark Persistence",
+ "description": "A dark power suffuses your being. increasing your Endurance by 3.",
+ "school": "Creature Enchantment",
+ "family": "416",
+ "difficulty": "3",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3895": {
+ "name": "Dark Reflexes",
+ "description": "A dark power suffuses your being. increasing your Quickness by 3.",
+ "school": "Creature Enchantment",
+ "family": "522",
+ "difficulty": "3",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3896": {
+ "name": "Dark Equilibrium",
+ "description": "A dark power suffuses your being. increasing your Coordination by 3.",
+ "school": "Creature Enchantment",
+ "family": "413",
+ "difficulty": "3",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3897": {
+ "name": "Dark Purpose",
+ "description": "A dark power suffuses your being. increasing your Self by 3.",
+ "school": "Creature Enchantment",
+ "family": "417",
+ "difficulty": "3",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3898": {
+ "name": "Pooky's Recall 1",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3899": {
+ "name": "Pooky's Recall 2",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3900": {
+ "name": "Pooky's Recall 3",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3901": {
+ "name": "Egg Bomb",
+ "description": "Shoots an explosive egg at the target. The egg does 100-200 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3902": {
+ "name": "Ring around the Rabbit",
+ "description": "Shoots eight rabbits outward from the caster. Each rabbit does 40-80 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3903": {
+ "name": "Whirlwind",
+ "description": "Eight whirlwinds move outward from the caster. Each whirlwind does 60-120 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3904": {
+ "name": "Essence's Fury",
+ "description": "Corrodes the target for 200 points of acid damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "3905": {
+ "name": "Essence's Fury",
+ "description": "Burns the target for 200 points of fire damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "3906": {
+ "name": "Essence's Fury",
+ "description": "Freezes the target for 200 points of cold damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "3907": {
+ "name": "Essence's Fury",
+ "description": "Shocks the target for 200 points of electric damage.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "3908": {
+ "name": "Mana Blast",
+ "description": "Fires three bolts of energy. When struck by a bolt. the target's mana is reduced by 500.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "3909": {
+ "name": "Mana Syphon",
+ "description": "Decreases target's natural mana rate by 100%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "400",
+ "duration": "120",
+ "mana": "70"
+ },
+ "3910": {
+ "name": "Brain Freeze",
+ "description": "The Essence strikes out with an icicle impaling your head. reducing all your skills by 50%.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "500",
+ "duration": "15",
+ "mana": "10"
+ },
+ "3911": {
+ "name": "Spiral of Souls",
+ "description": "A spiral of energy sucks the life force out of all those around the caster for 40-75 points of damage.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "3912": {
+ "name": "Lower Black Spear Temple Portal Sending",
+ "description": "Transports the player to the lower levels of the Black Spear Temple.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3913": {
+ "name": "Aegis of the Golden Flame",
+ "description": "Increases the caster's natural armor by 235 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "310",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3914": {
+ "name": "Dark Vortex",
+ "description": "A spinning vortex of shadow.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3915": {
+ "name": "Black Madness",
+ "description": "A madness enters your mind. The gaping horror of the abyss fills you with dread. reducing all your skills by 30%.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "350",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3916": {
+ "name": "Flayed Flesh",
+ "description": "Decreases the target's natural armor by 500 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "500",
+ "duration": "10",
+ "mana": "70"
+ },
+ "3917": {
+ "name": "Numbing Chill",
+ "description": "Increases damage all fellowship members take from cold by 185%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "400",
+ "duration": "240",
+ "mana": "70"
+ },
+ "3918": {
+ "name": "Flammable",
+ "description": "Increases damage all fellowship members take from fire by 185%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "400",
+ "duration": "240",
+ "mana": "70"
+ },
+ "3919": {
+ "name": "Lightning Rod",
+ "description": "Increases damage all fellowship members take from lightning by 185%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "400",
+ "duration": "240",
+ "mana": "70"
+ },
+ "3920": {
+ "name": "Tunnels to the Harbinger",
+ "description": "Tunnels to the Harbinger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3921": {
+ "name": "Harbinger's Lair",
+ "description": "Harbinger's Lair",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3922": {
+ "name": "Tunnels to the Harbinger",
+ "description": "Tunnels to the Harbinger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3923": {
+ "name": "Tunnels to the Harbinger",
+ "description": "Tunnels to the Harbinger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3924": {
+ "name": "Tunnels to the Harbinger",
+ "description": "Tunnels to the Harbinger",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3925": {
+ "name": "Harbinger's Lair",
+ "description": "Harbinger's Lair",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3926": {
+ "name": "Harbinger's Fiery Touch",
+ "description": "Shoots a bolt of elemental energy at the target. The bolt does 130-220 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3927": {
+ "name": "Charge Flesh",
+ "description": "Target's flesh is left open and vulnerable to electric attacks. Increases damage the target takes from lightning by 200%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "350",
+ "duration": "60",
+ "mana": "10"
+ },
+ "3928": {
+ "name": "Disarmament",
+ "description": "Decreases the target's Melee Defense skill by 200 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "70"
+ },
+ "3929": {
+ "name": "Rossu Morta Chapterhouse Recall",
+ "description": "This spell teleports the caster to the Chapterhouse of the Rossu Morta.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3930": {
+ "name": "Whispering Blade Chapterhouse Recall",
+ "description": "This spell teleports the caster to the Chapterhouse of the Whispering Blade.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3931": {
+ "name": "Dark Vortex",
+ "description": "A spinning vortex of shadow.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3932": {
+ "name": "Grael's Rage",
+ "description": "Drains 200-400 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "3933": {
+ "name": "Black Spear Strike",
+ "description": "Impales the target for 250-300 points of piercing damage.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "3934": {
+ "name": "Heavy Acid Ring",
+ "description": "Shoots 12 waves of acid outward from the caster. Each wave does 250-400 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3935": {
+ "name": "Heavy Blade Ring",
+ "description": "Shoots 12 waves of blades outward from the caster. Each wave does 250-400 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3936": {
+ "name": "Fire Bomb",
+ "description": "Shoots 12 waves of flame outward from the caster. Each wave does 250-400 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3937": {
+ "name": "Heavy Force Ring",
+ "description": "Shoots 12 waves of force outward from the caster. Each wave does 250-400 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3938": {
+ "name": "Heavy Frost Ring",
+ "description": "Shoots 12 waves of frost outward from the caster. Each wave does 250-400 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3939": {
+ "name": "Thaumic Bleed",
+ "description": "Shoots 12 waves of lightning around the caster. Each wave does 250-300 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3940": {
+ "name": "Exsanguinating Wave",
+ "description": "A wave of life draining energy.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "3941": {
+ "name": "Heavy Lightning Ring",
+ "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 250-400 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3942": {
+ "name": "Heavy Shock Ring",
+ "description": "Shoots 12 waves of shock outward from the caster. Each wave does 250-400 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3943": {
+ "name": "Burning Earth",
+ "description": "A burning section of ground that deals 100-400 points of damage to whatever touches it.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3944": {
+ "name": "Rain of Spears",
+ "description": "Black Spears streak from the sky dealing 300 points of damage to whatever they hit.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "3945": {
+ "name": "Raging Storm",
+ "description": "Rains LOTS of red lightning down.",
+ "school": "War Magic",
+ "family": "239",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "3946": {
+ "name": "Acid Wave",
+ "description": "Shoots eight waves of acid forward from the caster. Each wave does 80-150 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3947": {
+ "name": "Blade Wave",
+ "description": "Shoots eight slashing waves forward from the caster. Each wave does 80-150 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3948": {
+ "name": "Flame Wave",
+ "description": "Shoots eight waves of flame forward from the caster. Each wave does 80-150 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3949": {
+ "name": "Force Wave",
+ "description": "Shoots eight waves of force forward from the caster. Each wave does 80-150 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3950": {
+ "name": "Frost Wave",
+ "description": "Shoots eight waves of frost forward from the caster. Each wave does 80-150 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3951": {
+ "name": "Lightning Wave",
+ "description": "Shoots eight waves of lightning forward from the caster. Each wave does 80-100 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3952": {
+ "name": "Shock Waves",
+ "description": "Shoots eight shock waves forward from the caster. Each wave does 80-150 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3953": {
+ "name": "Carraida?ÇÖs Benediction",
+ "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "520",
+ "difficulty": "100",
+ "duration": "86400",
+ "mana": "1"
+ },
+ "3954": {
+ "name": "Access to the White Tower",
+ "description": "Teleports the target into the White Tower.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3955": {
+ "name": "Epic Bludgeon Ward",
+ "description": "Reduces damage the target takes from bludgeoning by 20%. Additional magical protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "401",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "20"
+ },
+ "3956": {
+ "name": "Epic Piercing Ward",
+ "description": "Reduces damage the target takes from piercing by 20%. Additional magical protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "405",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "20"
+ },
+ "3957": {
+ "name": "Epic Slashing Ward",
+ "description": "Reduces damage the target takes from slashing by 20%. Additional magical protection can be layered over this.",
+ "school": "Life Magic",
+ "family": "403",
+ "difficulty": "50",
+ "duration": "10800",
+ "mana": "20"
+ },
+ "3958": {
+ "name": "White Tower Egress",
+ "description": "Teleports the target out of the White Tower.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3959": {
+ "name": "Redirect Motives",
+ "description": "In an attempt to redirect the motives of the wielder back to the law they are sworn to uphold this spell drains 50-100 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "3960": {
+ "name": "Authority",
+ "description": "Increases a weapon's damage value by 60 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "500",
+ "duration": "1020",
+ "mana": "60"
+ },
+ "3961": {
+ "name": "Defense of the Just",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 60%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "3962": {
+ "name": "Bound to the Law",
+ "description": "Target is bound to law and justice. The confines of the law do not always allow free action. Reduces Melee Defense by 60 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "400",
+ "duration": "240",
+ "mana": "70"
+ },
+ "3963": {
+ "name": "Epic Coordination",
+ "description": "Increases the target's Coordination by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3964": {
+ "name": "Epic Focus",
+ "description": "Increases the target's Focus by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3965": {
+ "name": "Epic Strength",
+ "description": "Increases the target's Strength by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "3966": {
+ "name": "Ringleader's Chambers",
+ "description": "Target is portaled into a the Bandit Ringleader?ÇÖs chambers",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3967": {
+ "name": "Bandit Trap",
+ "description": "Target is portaled into a Sawato Bandit Trap!",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3968": {
+ "name": "Bandit Hideout",
+ "description": "Target is portaled into the Sawato Bandit Hideout",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "3969": {
+ "name": "Acid Bomb",
+ "description": "Shoots 12 waves of acid outward from the caster. Each wave does 100-400 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3970": {
+ "name": "Blade Bomb",
+ "description": "Shoots 12 waves of blades outward from the caster. Each wave does 100-400 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3971": {
+ "name": "Fire Bomb",
+ "description": "Shoots 12 waves of flame outward from the caster. Each wave does 100-400 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3972": {
+ "name": "Force Bomb",
+ "description": "Shoots 12 waves of force outward from the caster. Each wave does 100-400 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3973": {
+ "name": "Frost Bomb",
+ "description": "Shoots 12 waves of frost outward from the caster. Each wave does 100-400 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3974": {
+ "name": "Lightning Bomb",
+ "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 200-1000 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3975": {
+ "name": "Shock Bomb",
+ "description": "Shoots 12 waves of shock outward from the caster. Each wave does 200-1000 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3976": {
+ "name": "Incantation of Armor Other",
+ "description": "Increases the target's natural armor by 250 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "3977": {
+ "name": "Coordination Other Incantation",
+ "description": "Increases the target's Coordination by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "100"
+ },
+ "3978": {
+ "name": "Focus Other Incantation",
+ "description": "Increases the target's Focus by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "100"
+ },
+ "3979": {
+ "name": "Strength Other Incantation",
+ "description": "Increases the target's Strength by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "3980": {
+ "name": "Impenetrability Incantation",
+ "description": "Improves a shield or piece of armor's armor value by 240 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "325",
+ "duration": "10800",
+ "mana": "100"
+ },
+ "3981": {
+ "name": "Mana Renewal Other Incantation",
+ "description": "Increases the target's natural mana rate by 145%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "100"
+ },
+ "3982": {
+ "name": "Regeneration Other Incantation",
+ "description": "Increase target's natural healing rate by 145%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "100"
+ },
+ "3983": {
+ "name": "Rejuvenation Other Incantation",
+ "description": "Increases the rate at which the target regains Stamina by 145%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "100"
+ },
+ "3984": {
+ "name": "Mukkir's Ferocity",
+ "description": "Increases a weapon's Attack Skill modifier by 4%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "4",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3985": {
+ "name": "Mukkir Sense",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 4%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "329",
+ "difficulty": "4",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "3986": {
+ "name": "Rock Fall",
+ "description": "A large falling block of black ice.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3987": {
+ "name": "Black Spear Strike",
+ "description": "Impales the target for 150-200 points of piercing damage.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "3988": {
+ "name": "Black Spear Strike",
+ "description": "Impales the target for 200-250 points of piercing damage.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "3989": {
+ "name": "Dark Lightning",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 150-250 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "3990": {
+ "name": "Heavy Frost Ring",
+ "description": "Shoots 12 waves of frost outward from the caster. Each wave does 100-150 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3991": {
+ "name": "Thaumic Bleed",
+ "description": "Shoots 8 waves of lightning around the caster. Each wave does 250-300 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3992": {
+ "name": "Heavy Acid Ring",
+ "description": "Shoots 12 waves of acid outward from the caster. Each wave does 150-300 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3993": {
+ "name": "Heavy Blade Ring",
+ "description": "Shoots 12 waves of blades outward from the caster. Each wave does 150-300 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3994": {
+ "name": "Fire Bomb",
+ "description": "Shoots 12 waves of flame outward from the caster. Each wave does 150-300 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3995": {
+ "name": "Heavy Force Ring",
+ "description": "Shoots 12 waves of force outward from the caster. Each wave does 150-300 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3996": {
+ "name": "Heavy Frost Ring",
+ "description": "Shoots 12 waves of frost outward from the caster. Each wave does 150-300 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3997": {
+ "name": "Heavy Lightning Ring",
+ "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 150-300 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3998": {
+ "name": "Dark Vortex",
+ "description": "A spinning vortex of shadow.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "3999": {
+ "name": "Exsanguinating Wave",
+ "description": "A wave of life draining energy.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4000": {
+ "name": "Heavy Shock Ring",
+ "description": "Shoots 12 waves of shock outward from the caster. Each wave does 150-300 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4001": {
+ "name": "Burning Earth",
+ "description": "A burning section of ground that deals 200-500 points of damage to whatever touches it.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4002": {
+ "name": "Burning Earth",
+ "description": "A burning section of ground that deals 100-200 points of damage to whatever touches it.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4003": {
+ "name": "Wall of Spears",
+ "description": "Black Spears streak towards the target. Each spear does 150-250 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "234",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4004": {
+ "name": "Wall of Spears",
+ "description": "Black Spears streak towards the target. Each spear does 100-150 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "234",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4005": {
+ "name": "Acid Wave",
+ "description": "Shoots eight waves of acid forward from the caster. Each wave does 20-100 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4006": {
+ "name": "Blade Wave",
+ "description": "Shoots eight slashing waves forward from the caster. Each wave does 20-100 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4007": {
+ "name": "Flame Wave",
+ "description": "Shoots eight waves of flame forward from the caster. Each wave does 20-100 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4008": {
+ "name": "Force Wave",
+ "description": "Shoots eight waves of force forward from the caster. Each wave does 20-100 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4009": {
+ "name": "Frost Wave",
+ "description": "Shoots eight waves of frost forward from the caster. Each wave does 20-100 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4010": {
+ "name": "Lightning Wave",
+ "description": "Shoots eight waves of lightning forward from the caster. Each wave does 20-100 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4011": {
+ "name": "Shock Waves",
+ "description": "Shoots eight shock waves forward from the caster. Each wave does 20-100 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4012": {
+ "name": "White Totem Temple Sending",
+ "description": "The White Totem Gateway sends you to the White Totem Temple.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4013": {
+ "name": "Black Totem Temple Sending",
+ "description": "The Black Totem Gateway sends you to the Black Totem Temple.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4014": {
+ "name": "Abyssal Totem Temple Sending",
+ "description": "The Abyssal Totem Gateway sends you to the Abyssal Totem Temple.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4015": {
+ "name": "Ruschk Skin",
+ "description": "Increases the target's natural armor by 10 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "513",
+ "difficulty": "10",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "4016": {
+ "name": "Shadow's Heart",
+ "description": "Increases the target's Healing skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "349",
+ "difficulty": "25",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "4017": {
+ "name": "Phial's Accuracy",
+ "description": "Increases the target's Missile Weapons skill by 800 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "100"
+ },
+ "4018": {
+ "name": "Permafrost",
+ "description": "A frozen shell that offers a surprising amount of protection.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "475",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4019": {
+ "name": "Epic Quickness",
+ "description": "Increases the target's Quickness by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4020": {
+ "name": "Epic Deception Prowess",
+ "description": "Increases the target's Deception skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "343",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4021": {
+ "name": "Flurry of Stars",
+ "description": "Shoots five whirling blades quickly outward from the caster. Each blade does 115-189 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4022": {
+ "name": "Zombies Persistence",
+ "description": "Increase caster's natural healing rate by 200% for 60 seconds.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "545",
+ "duration": "60",
+ "mana": "50"
+ },
+ "4023": {
+ "name": "Disco Inferno Portal Sending",
+ "description": "This spell sends the player to the Night Club dungeon.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4024": {
+ "name": "Asheron?ÇÖs Lesser Benediction",
+ "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "520",
+ "difficulty": "100",
+ "duration": "86400",
+ "mana": "1"
+ },
+ "4025": {
+ "name": "Cast Iron Stomach",
+ "description": "Increases maximum stamina by 50 points.",
+ "school": "Life Magic",
+ "family": "281",
+ "difficulty": "50",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "4026": {
+ "name": "Hematic Verdure",
+ "description": "Increases maximum health by 25 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "25",
+ "duration": "510",
+ "mana": "70"
+ },
+ "4027": {
+ "name": "Messenger's Stride",
+ "description": "Increases the target's Run skill by 30 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "369",
+ "difficulty": "30",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4028": {
+ "name": "Snowball",
+ "description": "A fluffy snowball.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "4029": {
+ "name": "Return to the Hall of Champions",
+ "description": "Transports the target to the Colosseum's Hall of Champions.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4030": {
+ "name": "Colosseum Arena",
+ "description": "Transports the target to the starting Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4031": {
+ "name": "Advanced Colosseum Arena",
+ "description": "Transports the target to the 6th Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4032": {
+ "name": "Colosseum Arena",
+ "description": "Transports the target to the starting Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4033": {
+ "name": "Advanced Colosseum Arena",
+ "description": "Transports the target to the 6th Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4034": {
+ "name": "Colosseum Arena",
+ "description": "Transports the target to the starting Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4035": {
+ "name": "Advanced Colosseum Arena",
+ "description": "Transports the target to the 6th Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4036": {
+ "name": "Colosseum Arena",
+ "description": "Transports the target to the starting Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4037": {
+ "name": "Advanced Colosseum Arena",
+ "description": "Transports the target to the 6th Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4038": {
+ "name": "Colosseum Arena",
+ "description": "Transports the target to the starting Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4039": {
+ "name": "Advanced Colosseum Arena",
+ "description": "Transports the target to the 6th Arena of the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4040": {
+ "name": "Master's Innervation",
+ "description": "Increase caster's natural healing rate by 1000% for 20 seconds.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "1000",
+ "duration": "20",
+ "mana": "70"
+ },
+ "4041": {
+ "name": "The Path to Bur",
+ "description": "Transports the target to the world of Bur.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4042": {
+ "name": "The Winding Path to Bur",
+ "description": "Transports the target to the world of Bur.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4043": {
+ "name": "Kukuur Hide",
+ "description": "Increases the caster's natural armor by 300 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "350",
+ "duration": "120",
+ "mana": "100"
+ },
+ "4044": {
+ "name": "Acid Ball",
+ "description": "A ball of acid.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4045": {
+ "name": "Flame Ball",
+ "description": "A ball of fire.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4046": {
+ "name": "Lightning Ball",
+ "description": "A ball of lightning.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4047": {
+ "name": "Artisan Alchemist's Inspiration",
+ "description": "Increases the target's Alchemy skill by 30 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "523",
+ "difficulty": "30",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4048": {
+ "name": "Artisan Cook's Inspiration",
+ "description": "Increases the target's Cooking skill by 30 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "524",
+ "difficulty": "30",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4049": {
+ "name": "Artisan Fletcher's Inspiration",
+ "description": "Increases the target's Fletching skill by 30 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "525",
+ "difficulty": "30",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4050": {
+ "name": "Artisan Lockpicker's Inspiration",
+ "description": "Increases the target's Lockpick skill by 30 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "526",
+ "difficulty": "30",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4051": {
+ "name": "Master Alchemist's Inspiration",
+ "description": "Increases the target's Alchemy skill by 20 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "523",
+ "difficulty": "20",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4052": {
+ "name": "Master Cook's Inspiration",
+ "description": "Increases the target's Cooking skill by 20 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "524",
+ "difficulty": "20",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4053": {
+ "name": "Master Fletcher's Inspiration",
+ "description": "Increases the target's Fletching skill by 20 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "525",
+ "difficulty": "20",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4054": {
+ "name": "Master Lockpicker's Inspiration",
+ "description": "Increases the target's Lockpick skill by 20 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "526",
+ "difficulty": "20",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4055": {
+ "name": "Journeyman Alchemist's Inspiration",
+ "description": "Increases the target's Alchemy skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "523",
+ "difficulty": "10",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4056": {
+ "name": "Journeyman Cook's Inspiration",
+ "description": "Increases the target's Cooking skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "524",
+ "difficulty": "10",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4057": {
+ "name": "Journeyman Fletcher's Inspiration",
+ "description": "Increases the target's Fletching skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "525",
+ "difficulty": "10",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4058": {
+ "name": "Journeyman Lockpicker's Inspiration",
+ "description": "Increases the target's Lockpick skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "526",
+ "difficulty": "10",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4059": {
+ "name": "Endurance Other Incantation",
+ "description": "Increases the target's Endurance by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "400",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4060": {
+ "name": "Quickness Other Incantation",
+ "description": "Increases the target's Quickness by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "400",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4061": {
+ "name": "Willpower Other Incantation",
+ "description": "Increases the target's Self by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "400",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4062": {
+ "name": "Empyrean Aegis",
+ "description": "Improves a shield or piece of armor's armor value by 500 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4063": {
+ "name": "Exit the Upper Catacomb",
+ "description": "Transports the target to the caverns of the Burun.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4064": {
+ "name": "Access the Upper Catacomb",
+ "description": "Transports the target to the upper chamber of the Falatacot.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4065": {
+ "name": "Lower Catacomb Portal Sending",
+ "description": "Transports the target to the lower catacomb of the Falatacot",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4066": {
+ "name": "Access to the Ley Line Cavern",
+ "description": "This spell transports the target to the Ley Line Cavern.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4067": {
+ "name": "Mucor Bolt",
+ "description": "Casting this spell creates a bolt of pure mana which sails toward its target. doing 0-100 points directly to health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "100"
+ },
+ "4068": {
+ "name": "Mucor Mana Well",
+ "description": "Consuming this fungus causes your ability to regenerate mana to rapidly increase. Your regeneration rate is increased by 100% (stacking with both normal spells and cantrips) for 3 hours.",
+ "school": "Life Magic",
+ "family": "527",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "4069": {
+ "name": "Mucor Jolt",
+ "description": "The mucor imbued into this weapon sap a small amount of strength from the target of your blow. dealing 0-70 points of damage directly to health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "4070": {
+ "name": "Empyrean Mana Absorbtion",
+ "description": "Increases maximum mana by 100 points.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "100",
+ "duration": "7200",
+ "mana": "70"
+ },
+ "4071": {
+ "name": "Empyrean Stamina Absorbtion",
+ "description": "Increases maximum Stamina by 100 points.",
+ "school": "Life Magic",
+ "family": "281",
+ "difficulty": "100",
+ "duration": "7200",
+ "mana": "70"
+ },
+ "4072": {
+ "name": "Aurlanaa's Resolve",
+ "description": "Increases your Stamina Regeneration Rate by 20%. This effect can be layered with other cantrips.",
+ "school": "Life Magic",
+ "family": "528",
+ "difficulty": "20",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "4073": {
+ "name": "Empyrean Regeneration",
+ "description": "Increases your Health Regeneration Rate by 50%. This effect can be layered with normal spell effects.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "50",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "4074": {
+ "name": "Empyrean Rejuvenation",
+ "description": "Increases your Stamina Regeneration Rate by 50%. This effect can be layered with normal spell effects.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "50",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "4075": {
+ "name": "Empyrean Mana Renewal",
+ "description": "Increases your Mana Regeneration Rate by 50%. This effect can be layered with normal spell effects.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "50",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "4076": {
+ "name": "Empyrean Enlightenment",
+ "description": "Increases the target's Arcane Lore skill by 60 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4077": {
+ "name": "Mana Conversion Mastery Incantation",
+ "description": "Increases the target's Mana Conversion skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "400",
+ "duration": "7200",
+ "mana": "80"
+ },
+ "4078": {
+ "name": "Egg",
+ "description": "An egg.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "4079": {
+ "name": "Work it Off",
+ "description": "Teleports the target to the dishwashing room",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4080": {
+ "name": "Paid in Full",
+ "description": "Teleports the target to the kitchen",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4081": {
+ "name": "Eye of the Tempest",
+ "description": "Shoots twelve waves of lightning outward from the caster. Each wave does 60-120 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4082": {
+ "name": "Big Fire",
+ "description": "A large ball of fire.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4083": {
+ "name": "Kresovus' Warren Portal Sending",
+ "description": "The mysterious chest in Lord Kresovus' chambers has teleported you...",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4084": {
+ "name": "Bur Recall",
+ "description": "Sends the caster to Bur.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4085": {
+ "name": "Entering Harraag's Hideout",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4086": {
+ "name": "Icy Shield",
+ "description": "Increases the target's natural armor by 100 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "100",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "4087": {
+ "name": "Armor Breach",
+ "description": "Decreases the target's natural armor by 225 points for 10 seconds.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "325",
+ "duration": "10",
+ "mana": "70"
+ },
+ "4088": {
+ "name": "Withering Poison",
+ "description": "Decreases the victim's natural healing rate by 75%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "500",
+ "duration": "240",
+ "mana": "70"
+ },
+ "4089": {
+ "name": "Assassin's Gift",
+ "description": "Raises the Assassin's Deception Skill by 100.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "500",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4090": {
+ "name": "Scarab's Shell",
+ "description": "Increases the target's natural armor by 260 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "401",
+ "duration": "7200",
+ "mana": "70"
+ },
+ "4091": {
+ "name": "Spear",
+ "description": "Impales the target for 150-250 points of piercing damage.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "4092": {
+ "name": "Flame Grenade",
+ "description": "Burns the target for 80-240 points of fire damage.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "200"
+ },
+ "4093": {
+ "name": "Don't Bite Me",
+ "description": "Reduces damage the target takes from Bludgeoning by 12%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "401",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4094": {
+ "name": "Don't Burn Me",
+ "description": "Reduces damage the target takes from Fire by 12%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "287",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4095": {
+ "name": "Don't Stab Me",
+ "description": "Reduces damage the target takes from Piercing by 12%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "405",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4096": {
+ "name": "Flame Chain",
+ "description": "Shoots five bolts of flame in a row at the target. Each bolt does 26-44 points of fire damage to the first thing it hits. This spell is more effective for long range attacks.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "4097": {
+ "name": "Violet Rain",
+ "description": "Rains LOTS of lightning down.",
+ "school": "War Magic",
+ "family": "239",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4098": {
+ "name": "Treasure Room",
+ "description": "Sends a player to BoneCrunch's Treasure Room.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4099": {
+ "name": "Strength of Diemos",
+ "description": "Increases the target's Strength by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "410",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "4100": {
+ "name": "Breath of Renewal",
+ "description": "Restores 500-750 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4101": {
+ "name": "Champion's Skullduggery",
+ "description": "Decrease the target's Melee Defense skill by 125 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "325",
+ "duration": "20",
+ "mana": "70"
+ },
+ "4102": {
+ "name": "Champion's Clever Ruse",
+ "description": "Decrease the target's Magic Defense skill by 125 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "325",
+ "duration": "20",
+ "mana": "70"
+ },
+ "4103": {
+ "name": "Black Water Portal Sending",
+ "description": "Portals the user to the lair of the Watcher of the Black Water.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4104": {
+ "name": "Champion Arena",
+ "description": "Transports the target to Gladiator Diemos' Arena.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4105": {
+ "name": "Champion Arena",
+ "description": "Transports the target to The Master's Arena.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4106": {
+ "name": "Travel to the Paradox-touched Olthoi Queen's Lair",
+ "description": "Instantly transports the target to the Paradox-touched Olthoi Queen's Lair.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4107": {
+ "name": "Marrow Blight",
+ "description": "Lowers all of the target's attributes by 10% for 10 seconds.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "500",
+ "duration": "10",
+ "mana": "10"
+ },
+ "4108": {
+ "name": "Apathy",
+ "description": "You feel as though a great weight has settled on you. You can't seem to gather enough strength to do much of anything.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "400",
+ "duration": "30",
+ "mana": "1"
+ },
+ "4109": {
+ "name": "Greater Marrow Blight",
+ "description": "You feel a sharp ache deep in your bones. Lowers all of the targets attributes by 50%.",
+ "school": "Creature Enchantment",
+ "family": "421",
+ "difficulty": "400",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4110": {
+ "name": "Poison",
+ "description": "Drains 40-80 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4111": {
+ "name": "Lesser Tusker Hide",
+ "description": "Increases your natural armor by 200 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "250",
+ "duration": "60",
+ "mana": "100"
+ },
+ "4112": {
+ "name": "Spirit Nullification",
+ "description": "Your caster's usual glow of elemental power is extinguished.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "70"
+ },
+ "4113": {
+ "name": "FoulRing",
+ "description": "A wave of foulness.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4114": {
+ "name": "Hypnotic Suggestion",
+ "description": "A sudden urge to cluck like a chicken makes it difficult to defend yourself. Decreases your Melee Defense by 200 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "400",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4115": {
+ "name": "Mesmerizing Gaze",
+ "description": "Mudmouth stares deep into your eyes and you find your mind wandering. even with the sounds of battle that surround you. Your skills are lowered by 20%.",
+ "school": "Creature Enchantment",
+ "family": "424",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "10"
+ },
+ "4116": {
+ "name": "Trance",
+ "description": "Just look at that shiny thing over there! It's sooo beautiful. Decreases your Magic Defense by 200 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "400",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4117": {
+ "name": "Dark Shield",
+ "description": "Reduces damage the caster takes from acid damage by 50%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "40"
+ },
+ "4118": {
+ "name": "Dark Shield",
+ "description": "Reduces damage the caster takes from lightning damage by 50%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "40"
+ },
+ "4119": {
+ "name": "Dark Shield",
+ "description": "Reduces damage the caster takes from fire damage by 50%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "40"
+ },
+ "4120": {
+ "name": "Dark Shield",
+ "description": "Reduces damage the caster takes from Cold damage by 50%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "40"
+ },
+ "4121": {
+ "name": "Dark Shield",
+ "description": "Reduces damage the caster takes from bludgeon damage by 50%.",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "40"
+ },
+ "4122": {
+ "name": "Dark Shield",
+ "description": "Reduces damage the caster takes from Piercing damage by 50%.",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "40"
+ },
+ "4123": {
+ "name": "Dark Shield",
+ "description": "Reduces damage the caster takes from Slashing damage by 50%.",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "40"
+ },
+ "4124": {
+ "name": "Dark Nanners",
+ "description": "Shoots a wall of ten Dark Nanners at the target. Each Dark Nanner does 50-150 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "235",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4125": {
+ "name": "Dark Nanners",
+ "description": "Shoots a wall of ten Dark Nanners at the target. Each Dark Nanner does 50-150 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "234",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4126": {
+ "name": "Rain of Nanners",
+ "description": "Dark Nanners streak from the sky dealing 100-300 points of piercing damage to the first thing they hit.",
+ "school": "War Magic",
+ "family": "241",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4127": {
+ "name": "Portal Punch",
+ "description": "A powerful punch which sends the target to Oolutanga's Refuge.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4128": {
+ "name": "Call of the Mhoire Forge",
+ "description": "Calls the spirit to the location of the forge of House Mhoire.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4129": {
+ "name": "Travel to the Prodigal Shadow Child's Lair",
+ "description": "Instantly transports the target to the Prodigal Shadow Child's Lair.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4130": {
+ "name": "Travel to the Prodigal Shadow Child's Sanctum",
+ "description": "Instantly transports the target to the Prodigal Shadow Child's Sanctum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4131": {
+ "name": "Spectral Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4132": {
+ "name": "Spectral Blood Drinker",
+ "description": "Increases a weapon's damage value by 30 points for 3 minutes.",
+ "school": "Item Enchantment",
+ "family": "473",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4133": {
+ "name": "Spectral Missile Weapon Mastery",
+ "description": "Increases the caster's Missile Weapons skill by 150 points for 9 minutes",
+ "school": "Creature Enchantment",
+ "family": "465",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4134": {
+ "name": "Spectral Missile Weapon Mastery",
+ "description": "Increases the caster's Missile_Weapons skill by 150 points for 9 minutes",
+ "school": "Creature Enchantment",
+ "family": "465",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4135": {
+ "name": "Spectral Finesse Weapon Mastery",
+ "description": "Increases the caster's Finesse Weapons skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "472",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4136": {
+ "name": "Spectral Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4137": {
+ "name": "Spectral Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4138": {
+ "name": "Spectral Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4139": {
+ "name": "Spectral Heavy Weapon Mastery",
+ "description": "Increases the caster's Heavy Weapons skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "508",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4140": {
+ "name": "Spectral Missile Weapon Mastery",
+ "description": "Increases the caster's Missile_Weapons skill by 150 points for 9 minutes",
+ "school": "Creature Enchantment",
+ "family": "465",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4141": {
+ "name": "Spectral Light Weapon Mastery",
+ "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "462",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4142": {
+ "name": "Spectral War Magic Mastery",
+ "description": "Increases the caster's War Magic skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "511",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4143": {
+ "name": "Witnessing History",
+ "description": "Teleports the PC to Branch 4. Stage 4 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4144": {
+ "name": "Witnessing History",
+ "description": "Teleports the PC to Branch 5. Stage 4 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4145": {
+ "name": "Crossing the Threshold of Darkness",
+ "description": "Teleports the PC to Branch 1. Stage 6 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4146": {
+ "name": "Crossing the Threshold of Darkness",
+ "description": "Teleports the PC to Branch 2. Stage 6 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4147": {
+ "name": "Crossing the Threshold of Darkness",
+ "description": "Teleports the PC to Branch 3. Stage 6 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4148": {
+ "name": "Crossing the Threshold of Darkness",
+ "description": "Teleports the PC to Branch 4. Stage 6 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4149": {
+ "name": "Crossing the Threshold of Darkness",
+ "description": "Teleports the PC to Branch 5. Stage 6 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4150": {
+ "name": "Expulsion from Claude's Mind",
+ "description": "Teleports the PC to Aun Kelauri's tent.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4151": {
+ "name": "Sending to the Other World",
+ "description": "Teleports the PC to Branch 1. Stage 1 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4152": {
+ "name": "Sending to the Other World",
+ "description": "Teleports the PC to Branch 2. Stage 1 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4153": {
+ "name": "Sending to the Other World",
+ "description": "Teleports the PC to Branch 3. Stage 1 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4154": {
+ "name": "Sending to the Other World",
+ "description": "Teleports the PC to Branch 4. Stage 1 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4155": {
+ "name": "Sending to the Other World",
+ "description": "Teleports the PC to Branch 5. Stage 1 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4156": {
+ "name": "Delving into Claude's Mind",
+ "description": "Teleports the PC to Branch 1. Stage 2 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4157": {
+ "name": "Delving into Claude's Mind",
+ "description": "Teleports the PC to Branch 2. Stage 2 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4158": {
+ "name": "Delving into Claude's Mind",
+ "description": "Teleports the PC to Branch 3. Stage 2 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4159": {
+ "name": "Delving into Claude's Mind",
+ "description": "Teleports the PC to Branch 4. Stage 2 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4160": {
+ "name": "Delving into Claude's Mind",
+ "description": "Teleports the PC to Branch 5. Stage 2 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4161": {
+ "name": "Exploring the Past",
+ "description": "Teleports the PC to Branch 1. Stage 3 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4162": {
+ "name": "Exploring the Past",
+ "description": "Teleports the PC to Branch 2. Stage 3 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4163": {
+ "name": "Exploring the Past",
+ "description": "Teleports the PC to Branch 3. Stage 3 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4164": {
+ "name": "Exploring the Past",
+ "description": "Teleports the PC to Branch 4. Stage 3 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4165": {
+ "name": "Exploring the Past",
+ "description": "Teleports the PC to Branch 5. Stage 3 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4166": {
+ "name": "Witnessing History",
+ "description": "Teleports the PC to Branch 1. Stage 4 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4167": {
+ "name": "Witnessing History",
+ "description": "Teleports the PC to Branch 2. Stage 4 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4168": {
+ "name": "Witnessing History",
+ "description": "Teleports the PC to Branch 3. Stage 4 of Vision Quest",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4169": {
+ "name": "Harbinger Blood Infusion",
+ "description": "The Harbinger's blood suffuses your being. increasing your natural armor by 300 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "410",
+ "duration": "900",
+ "mana": "100"
+ },
+ "4170": {
+ "name": "Harbinger's Coordination",
+ "description": "Increases Coordination 1 point above spells and most cantrips.",
+ "school": "Creature Enchantment",
+ "family": "413",
+ "difficulty": "1",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "4171": {
+ "name": "Harbinger's Endurance",
+ "description": "Increases Endurance 1 point above spells and most cantrips.",
+ "school": "Creature Enchantment",
+ "family": "416",
+ "difficulty": "1",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "4172": {
+ "name": "Harbinger's Focus",
+ "description": "Increases Focus 1 point above spells and most cantrips.",
+ "school": "Creature Enchantment",
+ "family": "415",
+ "difficulty": "1",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "4173": {
+ "name": "Harbinger's Quickness",
+ "description": "Increases Quickness 1 point above spells and most cantrips.",
+ "school": "Creature Enchantment",
+ "family": "522",
+ "difficulty": "1",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "4174": {
+ "name": "Harbinger's Strength",
+ "description": "Increases Strength 1 point above spells and most cantrips.",
+ "school": "Creature Enchantment",
+ "family": "414",
+ "difficulty": "1",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "4175": {
+ "name": "Harbinger's Willpower",
+ "description": "Increases Willpower 1 point above spells and most cantrips.",
+ "school": "Creature Enchantment",
+ "family": "417",
+ "difficulty": "1",
+ "duration": "7200",
+ "mana": "10"
+ },
+ "4176": {
+ "name": "Prodigal Harbinger's Lair",
+ "description": "Sends the target directly to the Prodigal Harbinger's Lair.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4177": {
+ "name": "Prodigal Harbinger's Antechamber",
+ "description": "Sends the target to the Prodigal Harbinger's Acid Prep Room.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4178": {
+ "name": "Prodigal Harbinger's Antechamber",
+ "description": "Sends the target to the Prodigal Harbinger's Cold Prep Room.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4179": {
+ "name": "Prodigal Harbinger's Antechamber",
+ "description": "Sends the target to the Prodigal Harbinger's Fire Prep Room.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4180": {
+ "name": "Prodigal Harbinger's Antechamber",
+ "description": "Sends the target to the Prodigal Harbinger's Lightning Prep Room.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4181": {
+ "name": "Essence Bolt",
+ "description": "A dangerous looking ball of acid.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4182": {
+ "name": "Ball Lightning",
+ "description": "A sparking ball of lightning that deals 400 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4183": {
+ "name": "Corrosive Veil",
+ "description": "A wave of acid that deals 400 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4184": {
+ "name": "Essence Bolt",
+ "description": "A dangerous looking ball of flame.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4185": {
+ "name": "Essence Bolt",
+ "description": "A dangerous looking ball of Frost.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4186": {
+ "name": "Hoar Frost",
+ "description": "A strangely spreading frost that deals 400 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4187": {
+ "name": "Essence Bolt",
+ "description": "A dangerous looking ball of lightning.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4188": {
+ "name": "Shadowed Flame",
+ "description": "A dark flame that deals 400 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "4189": {
+ "name": "Harbinger Acid Protection",
+ "description": "Reduces damage the target takes from acid by 80%.",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "350",
+ "duration": "120",
+ "mana": "70"
+ },
+ "4190": {
+ "name": "Harbinger Cold Protection",
+ "description": "Reduces damage the target takes from Cold by 80%.",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "350",
+ "duration": "120",
+ "mana": "70"
+ },
+ "4191": {
+ "name": "Harbinger Flame Protection",
+ "description": "Reduces damage the target takes from fire by 80%.",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "350",
+ "duration": "120",
+ "mana": "70"
+ },
+ "4192": {
+ "name": "Harbinger Lightning Protection",
+ "description": "Reduces damage the target takes from Lightning by 80%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "350",
+ "duration": "120",
+ "mana": "70"
+ },
+ "4193": {
+ "name": "Harbinger Magic Defense",
+ "description": "Increases the caster's Magic Defense skill by 400 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "70"
+ },
+ "4194": {
+ "name": "Magical Void",
+ "description": "Decreases the target's Magic Defense skill by 350 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "350",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4195": {
+ "name": "Harbinger Melee Defense",
+ "description": "Increases the caster's Melee Defense skill by 400 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "70"
+ },
+ "4196": {
+ "name": "Harbinger Missile Defense",
+ "description": "Increases the caster's Missile Defense skill by 400 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "400",
+ "duration": "60",
+ "mana": "70"
+ },
+ "4197": {
+ "name": "Naked to the Elements",
+ "description": "Decrease the target's Melee Defense skill by 350 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "350",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4198": {
+ "name": "Paradox-touched Olthoi Infested Area Recall",
+ "description": "Transports the caster to the area infested by the Paradox-touched Olthoi.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4199": {
+ "name": "Frozen Armor",
+ "description": "A layer of thin but sturdy frost covers you. increasing your natural armor by 260.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "401",
+ "duration": "7200",
+ "mana": "70"
+ },
+ "4200": {
+ "name": "Into the Darkness",
+ "description": "Teleports the target into a dark zombie filled dungeon.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4201": {
+ "name": "Numbing Chill",
+ "description": "A numbing chill that acclimates you to cold.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "340",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4202": {
+ "name": "Trevor's Zombie Strike",
+ "description": "Damages the first thing it hits.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4203": {
+ "name": "Dark Crypt Entrance",
+ "description": "Sends the target into the Dark Crypt.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4204": {
+ "name": "Dark Crypt Entrance",
+ "description": "Sends the target into the Dark Crypt.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4205": {
+ "name": "Dark Crypt Entrance",
+ "description": "Sends the target into the Dark Crypt.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4206": {
+ "name": "Chewy Center",
+ "description": "Dispels all negative enchantments of level 7 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "280"
+ },
+ "4207": {
+ "name": "Arena of the Pumpkin King",
+ "description": "Transports the target to the Arena of the Pumpkin King.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4208": {
+ "name": "Spectral Flame",
+ "description": "Shoots a bolt of spectral energy dealing 110-180 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4209": {
+ "name": "Gummy Shield",
+ "description": "Boosts the targets magic defense skill by 100 for a short time.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "500",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4210": {
+ "name": "The Jitters",
+ "description": "Boosts the targets missile defense by 100 for a short time.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "500",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4211": {
+ "name": "Licorice Leap",
+ "description": "Boosts casters jump skill by 100 for a short time.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "500",
+ "duration": "30",
+ "mana": "100"
+ },
+ "4212": {
+ "name": "Sticky Melee",
+ "description": "Boosts the targets melee defense skill by 100 for a short time.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "500",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4213": {
+ "name": "Colosseum Recall",
+ "description": "Sends the caster to the Colosseum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4214": {
+ "name": "Return to the Keep",
+ "description": "This spell returns the caster to Candeth Keep.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4215": {
+ "name": "Shadow Armor",
+ "description": "The darkness envelops this armor. offering magical protection from harm.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "900",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4216": {
+ "name": "Frost Wave",
+ "description": "Shoots eight waves of frost forward from the caster. Each wave does 30-60 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4217": {
+ "name": "Gourd Guard",
+ "description": "Improves the Pumpkin Shield's armor value by 300 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "410",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "4218": {
+ "name": "Knockback",
+ "description": "Knocks the target back from the portal.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4219": {
+ "name": "Trial of the Arm",
+ "description": "Sends the target directly to the Prodigal Harbinger's Lair.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4220": {
+ "name": "Trial of the Heart",
+ "description": "Sends the target directly to the Prodigal Harbinger's Lair.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4221": {
+ "name": "Spectral Life Magic Mastery",
+ "description": "Increases the caster's Life Magic skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "488",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "4222": {
+ "name": "Chambers Beneath",
+ "description": "Sends the target directly to the chambers beneath Linvak Tukal.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4223": {
+ "name": "Trials Graduation Chamber",
+ "description": "Portals the target to the Trials Graduation Chamber.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4224": {
+ "name": "Trial of the Mind",
+ "description": "Portals the target to Linvak Tukal's Trial of the Mind.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4225": {
+ "name": "Trials of the Arm. Mind and Heart",
+ "description": "Sends the target to the Trials of the Arm. Mind and Heart.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4226": {
+ "name": "Epic Endurance",
+ "description": "Increases the target's Endurance by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4227": {
+ "name": "Epic Willpower",
+ "description": "Increases the target's Self by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4228": {
+ "name": "Awakening",
+ "description": "You awake as if from a dream.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4229": {
+ "name": "Journey Into the Past",
+ "description": "This spell transports the target into the Apparition Black Death Catacomb.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4230": {
+ "name": "Bael'Zharon Dream Sending",
+ "description": "Teleports the player into the dream realm of the Ithaenc Quiddity Seed.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4231": {
+ "name": "Leadership Mastery Other Incantation",
+ "description": "Increases the target's Leadership skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "325",
+ "duration": "7200",
+ "mana": "80"
+ },
+ "4232": {
+ "name": "Epic Leadership",
+ "description": "Increases the target's Leadership skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "293",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4233": {
+ "name": "Aerbax Recall Center Platform",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4234": {
+ "name": "Aerbax Recall East Platform",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4235": {
+ "name": "Aerbax Recall North Platform",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4236": {
+ "name": "Aerbax Recall South Platform",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4237": {
+ "name": "Aerbax Recall West Platform",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4238": {
+ "name": "Aerbax Expulsion",
+ "description": "Portals the target off Aerbax's Platforms.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4239": {
+ "name": "Ring of Death",
+ "description": "A large explosion dealing massive ammounts of damage to everyone it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4240": {
+ "name": "Aerbax's Magic Shield",
+ "description": "Increases the caster's Magic Defense by 900 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "800",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4241": {
+ "name": "Aerbax Magic Shield Down",
+ "description": "Nullifies Aerbax's Magic Shield.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "800",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4242": {
+ "name": "Aerbax's Melee Shield",
+ "description": "Increases the caster's Melee Defense by 900 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "800",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4243": {
+ "name": "Aerbax Melee Shield Down",
+ "description": "Nullifies Aerbax's Melee Shield.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "800",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4244": {
+ "name": "Aerbax's Missile Shield",
+ "description": "Increases the caster's Missile Defense by 900 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "800",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4245": {
+ "name": "Aerbax Missile Shield Down",
+ "description": "Nullifies Aerbax's Missile Shield.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "800",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4246": {
+ "name": "MeteorStrike",
+ "description": "Rains LOTS of red lightning down.",
+ "school": "War Magic",
+ "family": "239",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "1"
+ },
+ "4247": {
+ "name": "Tanada Battle Burrows Portal Sending",
+ "description": "This spell transports the target to the Tanada Battle Burrows.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4248": {
+ "name": "Shroud Cabal North Outpost Sending",
+ "description": "This spell sends the player to the Shroud Cabal Northern Outpost",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4249": {
+ "name": "Shroud Cabal South Outpost Sending",
+ "description": "This spell sends the player to the Shroud Cabal Southern Outpost",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4250": {
+ "name": "Aerbax's Platform",
+ "description": "Portals the target to the Aerbax's Platform.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4251": {
+ "name": "Jester's Boot",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4252": {
+ "name": "Entrance to the Jester's Cell",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4253": {
+ "name": "Entrance to the Jester's Cell",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4254": {
+ "name": "Jester's Prison Hallway",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4255": {
+ "name": "Jester's Prison Entryway",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4256": {
+ "name": "Jester Recall 1",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4257": {
+ "name": "Jester Recall 2",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4258": {
+ "name": "Jester Recall 3",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4259": {
+ "name": "Jester Recall 4",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4260": {
+ "name": "Jester Recall 5",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4261": {
+ "name": "Jester Recall 6",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4262": {
+ "name": "Jester Recall 7",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4263": {
+ "name": "Jester Recall 8",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4264": {
+ "name": "Arcane Death",
+ "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4265": {
+ "name": "Arcane Pyramid",
+ "description": "Shoots a pyramid at the target. The pyramid does 130-185 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4266": {
+ "name": "Blood Bolt",
+ "description": "Shoots a bolt of blood at your target that does 100-200 points of health damage.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4267": {
+ "name": "Cow",
+ "description": "Shoots a Cow at your target. Cow does 100-200 points of Bludgeoning damage.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4268": {
+ "name": "Fireworks",
+ "description": "Shoots fireworks at your target. The fireworks do 100-200 points of Fire damage.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4269": {
+ "name": "Present",
+ "description": "Shoots a Present at your target. Present does 100-200 points of slashing damage.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4270": {
+ "name": "Table",
+ "description": "Shoots a Table at your target. Table does 100-200 points of piercing damage.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4271": {
+ "name": "Acid Whip",
+ "description": "Sends a line of eight balls of acid towards the target. Each ball does 60-120 points of acid damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "229",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4272": {
+ "name": "Razor Whip",
+ "description": "Sends a line of eight whirling blades towards the target. Each ball does 60-120 points of slashing damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "235",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4273": {
+ "name": "Spray of Coins",
+ "description": "Sends a wall of thirty coins towards the target. Each coin does 1-30 points of bludgeoning damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "230",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4274": {
+ "name": "Flame Whip",
+ "description": "Sends a line of eight balls of fire towards the target. Each ball does 60-120 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "233",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4275": {
+ "name": "Electric Whip",
+ "description": "Sends a line of eight bolts of lightning towards the target. Each ball does 60-120 points of electric damage to the first thing it hits. The wall is created 2 meters in front of the caster.",
+ "school": "War Magic",
+ "family": "232",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4276": {
+ "name": "Jester's Malevolent Eye",
+ "description": "Shoots a beam of light at your target. It does 50-150 points of undefined damage.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4277": {
+ "name": "Jester's Prison Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4278": {
+ "name": "Rytheran's Library Portal Sending",
+ "description": "This spell sends the player to Rytheran's Library.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4280": {
+ "name": "Deck of Hands Favor",
+ "description": "Increases the target's Coordination by 15 points. This spell stacks with normal spells and cantrip spells.",
+ "school": "Creature Enchantment",
+ "family": "413",
+ "difficulty": "15",
+ "duration": "600",
+ "mana": "10"
+ },
+ "4281": {
+ "name": "Deck of Eyes Favor",
+ "description": "Increases the target's Focus by 15 points. This spell stacks with normal spells and cantrip spells.",
+ "school": "Creature Enchantment",
+ "family": "415",
+ "difficulty": "15",
+ "duration": "600",
+ "mana": "10"
+ },
+ "4282": {
+ "name": "Arcane Death",
+ "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4283": {
+ "name": "Arcane Death",
+ "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "4284": {
+ "name": "Harm Self",
+ "description": "Drains 100000 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4285": {
+ "name": "Harm Self",
+ "description": "Drains 900000 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4286": {
+ "name": "Harm Self",
+ "description": "Drains 300000 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4287": {
+ "name": "Harm Self",
+ "description": "Drains 700000 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4288": {
+ "name": "Harm Self",
+ "description": "Drains 500000 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4289": {
+ "name": "Access the Messenger's Sanctuary",
+ "description": "Transports the target to the hidden cavern where Falatacot messengers tend to hide.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "1000",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4290": {
+ "name": "Incantation of Armor Other",
+ "description": "Increases the target's natural armor by 250 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4291": {
+ "name": "Incantation of Armor Self",
+ "description": "Increases the caster's natural armor by 250 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4292": {
+ "name": "Incantation of Bafflement Other",
+ "description": "Decreases the target's Focus by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4293": {
+ "name": "Incantation of Bafflement Self",
+ "description": "Decreases the caster's Focus by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "10",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4294": {
+ "name": "Incantation of Clumsiness Other",
+ "description": "Decreases the target's Coordination by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4295": {
+ "name": "Incantation of Clumsiness Self",
+ "description": "Decreases the caster's Coordination by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "8",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4296": {
+ "name": "Incantation of Coordination Other",
+ "description": "Increases the target's Coordination by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4297": {
+ "name": "Incantation of Coordination Self",
+ "description": "Increases the caster's Coordination by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4298": {
+ "name": "Incantation of Endurance Other",
+ "description": "Increases the target's Endurance by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4299": {
+ "name": "Incantation of Endurance Self",
+ "description": "Increases the caster's Endurance by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4300": {
+ "name": "Incantation of Enfeeble Other",
+ "description": "Drains 66-131 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4301": {
+ "name": "Incantation of Enfeeble Self",
+ "description": "Drains 50-100 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4302": {
+ "name": "Incantation of Feeblemind Other",
+ "description": "Decreases the target's Self by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4303": {
+ "name": "Incantation of Feeblemind Self",
+ "description": "Decreases the caster's Self by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4304": {
+ "name": "Incantation of Focus Other",
+ "description": "Increases the target's Focus by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4305": {
+ "name": "Incantation of Focus Self",
+ "description": "Increases the caster's Focus by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4306": {
+ "name": "Incantation of Frailty Other",
+ "description": "Decreases the target's Endurance by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4307": {
+ "name": "Incantation of Frailty Self",
+ "description": "Decreases the caster's Endurance by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "4",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4308": {
+ "name": "Incantation of Harm Other",
+ "description": "Drains 50-95 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4309": {
+ "name": "Incantation of Harm Self",
+ "description": "Drains 48-90 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4310": {
+ "name": "Incantation of Heal Other",
+ "description": "Restores 90-180 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "79",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4311": {
+ "name": "Incantation of Heal Self",
+ "description": "Restores 90-180 points of the caster's Health.",
+ "school": "Life Magic",
+ "family": "67",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4312": {
+ "name": "Incantation of Imperil Other",
+ "description": "Decreases the target's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4313": {
+ "name": "Incantation of Imperil Self",
+ "description": "Decreases the caster's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4314": {
+ "name": "Incantation of Mana Boost Other",
+ "description": "Restores 51-100 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4315": {
+ "name": "Incantation of Mana Boost Self",
+ "description": "Restores 51-100 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "83",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4316": {
+ "name": "Incantation of Mana Drain Other",
+ "description": "Drains 52-95 points of the target's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4317": {
+ "name": "Incantation of Mana Drain Self",
+ "description": "Drains 48-90 points of the caster's Mana.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4318": {
+ "name": "Incantation of Quickness Other",
+ "description": "Increases the target's Quickness by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4319": {
+ "name": "Incantation of Quickness Self",
+ "description": "Increases the caster's Quickness by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4320": {
+ "name": "Incantation of Revitalize Other",
+ "description": "Restores 125-250 points of the target's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4321": {
+ "name": "Incantation of Revitalize Self",
+ "description": "Restores 125-250 points of the caster's Stamina.",
+ "school": "Life Magic",
+ "family": "81",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4322": {
+ "name": "Incantation of Slowness Other",
+ "description": "Decreases the target's Quickness by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4323": {
+ "name": "Incantation of Slowness Self",
+ "description": "Decreases the caster's Quickness by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4324": {
+ "name": "Incantation of Strength Other",
+ "description": "Increases the target's Strength by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4325": {
+ "name": "Incantation of Strength Self",
+ "description": "Increases the caster's Strength by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4326": {
+ "name": "Incantation of Weakness Other",
+ "description": "Decreases the target's Strength by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4327": {
+ "name": "Incantation of Weakness Self",
+ "description": "Decrease the caster's Strength by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "2",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4328": {
+ "name": "Incantation of Willpower Other",
+ "description": "Increases the target's Self by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4329": {
+ "name": "Incantation of Willpower Self",
+ "description": "Increases the caster's Self by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4330": {
+ "name": "Incantation of Nullify All Magic Other",
+ "description": "Dispels all negative enchantments of level 8 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "320"
+ },
+ "4331": {
+ "name": "Incantation of Nullify All Magic Self",
+ "description": "Dispels all negative enchantments of level 8 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "320"
+ },
+ "4332": {
+ "name": "Incantation of Nullify All Magic Other",
+ "description": "Dispels 2-6 positive enchantments of level 8 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4333": {
+ "name": "Incantation of Nullify All Magic Self",
+ "description": "Dispels all positive enchantments of level 8 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4334": {
+ "name": "Incantation of Nullify All Magic Other",
+ "description": "Dispels all enchantments of level 8 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4335": {
+ "name": "Incantation of Nullify All Magic Self",
+ "description": "Dispels all enchantments of level 8 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4336": {
+ "name": "Incantation of Nullify Creature Magic Other",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 8 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "320"
+ },
+ "4337": {
+ "name": "Incantation of Nullify Creature Magic Self",
+ "description": "Dispels 3-6 negative Creature Magic enchantments of level 8 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "320"
+ },
+ "4338": {
+ "name": "Incantation of Nullify Creature Magic Other",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4339": {
+ "name": "Incantation of Nullify Creature Magic Self",
+ "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4340": {
+ "name": "Incantation of Nullify Creature Magic Other",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4341": {
+ "name": "Incantation of Nullify Creature Magic Self",
+ "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.",
+ "school": "Creature Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4342": {
+ "name": "Incantation of Nullify Item Magic",
+ "description": "Dispels 3-6 negative Item Magic enchantments of level 8 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "320"
+ },
+ "4343": {
+ "name": "Incantation of Nullify Item Magic",
+ "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4344": {
+ "name": "Incantation of Nullify Item Magic",
+ "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.",
+ "school": "Item Enchantment",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4345": {
+ "name": "Incantation of Nullify Life Magic Other",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 8 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "320"
+ },
+ "4346": {
+ "name": "Incantation of Nullify Life Magic Self",
+ "description": "Dispels 3-6 negative Life Magic enchantments of level 8 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "320"
+ },
+ "4347": {
+ "name": "Incantation of Nullify Life Magic Other",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 8 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4348": {
+ "name": "Incantation of Nullify Life Magic Self",
+ "description": "Dispels 2-6 positive Life Magic enchantments of level 8 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4349": {
+ "name": "Incantation of Nullify Life Magic Other",
+ "description": "Dispels 2-6 Life Magic enchantments of level 8 or lower from the target.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4350": {
+ "name": "Incantation of Nullify Life Magic Self",
+ "description": "Dispels 2-6 Life Magic enchantments of level 8 or lower from the caster.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "4351": {
+ "name": "Incantation of Greater Alacrity of the Conclave",
+ "description": "Enhances the Coordination of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4352": {
+ "name": "Incantation of Greater Vivify the Conclave",
+ "description": "Enhances the Endurance of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4353": {
+ "name": "Incantation of Greater Acumen of the Conclave",
+ "description": "Enhances the Focus of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4354": {
+ "name": "Incantation of Greater Speed the Conclave",
+ "description": "Enhances the Quickness of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4355": {
+ "name": "Incantation of Greater Volition of the Conclave",
+ "description": "Enhances the Self of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4356": {
+ "name": "Incantation of Greater Empowering the Conclave",
+ "description": "Enhances the Strength of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4357": {
+ "name": "Incantation of Greater Corrosive Ward",
+ "description": "Reduces damage all fellowship members take from acid by 70%",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4358": {
+ "name": "Incantation of Greater Scythe Ward",
+ "description": "Reduces damage all fellowship members take from Slashing by 70%",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4359": {
+ "name": "Incantation of Greater Flange Ward",
+ "description": "Reduces damage all fellowship members from Bludgeoning by 70%",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4360": {
+ "name": "Incantation of Greater Frore Ward",
+ "description": "Reduces damage all fellowship members take from Cold by 70%",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4361": {
+ "name": "Incantation of Greater Inferno Ward",
+ "description": "Reduces damage all fellowship members take from fire by 70%",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4362": {
+ "name": "Incantation of Greater Voltaic Ward",
+ "description": "Reduces damage all fellowship members take from Lightning by 70%",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4363": {
+ "name": "Incantation of Greater Lance Ward",
+ "description": "Reduces damage all fellowship members take from Piercing by 70%",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4364": {
+ "name": "Incantation of Greater Endless Well",
+ "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 115% increase to their nautral mana recovery rate.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4365": {
+ "name": "Incantation of Greater Soothing Wind",
+ "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 115% increase to their natural health recovery rate.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4366": {
+ "name": "Incantation of Greater Golden Wind",
+ "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 115% increase to their natural stamina recovery rate.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4367": {
+ "name": "Incantation of Greater Conjurant Chant",
+ "description": "Enhances the Creature Enchantment skill of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4368": {
+ "name": "Incantation of Warden of the Clutch",
+ "description": "Enhances the Missile Defense of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4369": {
+ "name": "Incantation of Guardian of the Clutch",
+ "description": "Enhances the Melee Defense of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4370": {
+ "name": "Incantation of Greater Artificant Chant",
+ "description": "Enhances the Item Enchantment skill of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4371": {
+ "name": "Incantation of Greater Vitaeic Chant",
+ "description": "Enhances the Life Magic skill of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4372": {
+ "name": "Incantation of Sanctifier of the Clutch",
+ "description": "Enhances the Magic Defense of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4373": {
+ "name": "Incantation of Greater Conveyic Chant",
+ "description": "Enhances the Mana Conversion skill of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4374": {
+ "name": "Incantation of Greater Hieromantic Chant",
+ "description": "Enhances the War Magic skill of all Fellowship members by 45 points for 60 minutes.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4375": {
+ "name": "Incantation of Blossom Black Firework OUT",
+ "description": "Shoots out a Black Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4376": {
+ "name": "Incantation of Blossom Blue Firework OUT",
+ "description": "Shoots out a Blue Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4377": {
+ "name": "Incantation of Blossom Green Firework OUT",
+ "description": "Shoots out a Green Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4378": {
+ "name": "Incantation of Blossom Orange Firework OUT",
+ "description": "Shoots out a Orange Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4379": {
+ "name": "Incantation of Blossom Purple Firework OUT",
+ "description": "Shoots out a Purple Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4380": {
+ "name": "Incantation of Blossom Red Firework OUT",
+ "description": "Shoots out a Red Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4381": {
+ "name": "Incantation of Blossom White Firework OUT",
+ "description": "Shoots out a White Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4382": {
+ "name": "Incantation of Blossom Yellow Firework OUT",
+ "description": "Shoots out a Yellow Firework.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4383": {
+ "name": "Incantation of Blossom Black Firework UP",
+ "description": "Shoots a Black Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4384": {
+ "name": "Incantation of Blossom Blue Firework UP",
+ "description": "Shoots a Blue Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4385": {
+ "name": "Incantation of Blossom Green Firework UP",
+ "description": "Shoots a Green Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4386": {
+ "name": "Incantation of Blossom Orange Firework UP",
+ "description": "Shoots a Orange Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4387": {
+ "name": "Incantation of Blossom Purple Firework UP",
+ "description": "Shoots a Purple Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4388": {
+ "name": "Incantation of Blossom Red Firework UP",
+ "description": "Shoots a Red Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4389": {
+ "name": "Incantation of Blossom White Firework UP",
+ "description": "Shoots a White Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4390": {
+ "name": "Incantation of Blossom Yellow Firework UP",
+ "description": "Shoots a Yellow Firework straight up.",
+ "school": "War Magic",
+ "family": "409",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4391": {
+ "name": "Incantation of Acid Bane",
+ "description": "Increases a shield or piece of armor's resistance to acid damage by 200%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "162",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4392": {
+ "name": "Incantation of Acid Lure",
+ "description": "Decreases a shield or piece of armor's resistance to acid damage by 200%.",
+ "school": "Item Enchantment",
+ "family": "163",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4393": {
+ "name": "Incantation of Blade Bane",
+ "description": "Increases a shield or piece of armor's resistance to slashing damage by 200%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "174",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4394": {
+ "name": "Incantation of Blade Lure",
+ "description": "Decreases a shield or piece of armor's resistance to slashing damage by 200%.",
+ "school": "Item Enchantment",
+ "family": "175",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4395": {
+ "name": "Aura of Incantation of Blood Drinker Self",
+ "description": "Increases a weapon's damage value by 24 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4396": {
+ "name": "Incantation of Blood Loather",
+ "description": "Decreases a weapon's damage value by 24 points.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4397": {
+ "name": "Incantation of Bludgeon Bane",
+ "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 200%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "164",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4398": {
+ "name": "Incantation of Bludgeon Lure",
+ "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 200%.",
+ "school": "Item Enchantment",
+ "family": "165",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4399": {
+ "name": "Incantation of Brittlemail",
+ "description": "Worsens a shield or piece of armor's armor value by 300 points.",
+ "school": "Item Enchantment",
+ "family": "161",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4400": {
+ "name": "Aura of Incantation of Defender Self",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 20%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "350",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4401": {
+ "name": "Incantation of Flame Bane",
+ "description": "Increases a shield or piece of armor's resistance to fire damage by 200%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "170",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4402": {
+ "name": "Incantation of Flame Lure",
+ "description": "Decreases a shield or piece of armor's resistance to fire damage by 200%.",
+ "school": "Item Enchantment",
+ "family": "171",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4403": {
+ "name": "Incantation of Frost Bane",
+ "description": "Increases a shield or piece of armor's resistance to cold damage by 200%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "166",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4404": {
+ "name": "Incantation of Frost Lure",
+ "description": "Decreases a shield or piece of armor's resistance to cold damage by 200%.",
+ "school": "Item Enchantment",
+ "family": "167",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4405": {
+ "name": "Aura of Incantation of Heart Seeker Self",
+ "description": "Increases a weapon's Attack Skill modifier by 20.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4406": {
+ "name": "Incantation of Hermetic Void",
+ "description": "Decreases a magic casting implement's mana conversion bonus by 80%.",
+ "school": "Item Enchantment",
+ "family": "194",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4407": {
+ "name": "Incantation of Impenetrability",
+ "description": "Improves a shield or piece of armor's armor value by 240 points. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4408": {
+ "name": "Incantation of Leaden Weapon",
+ "description": "Worsens a weapon's speed by 80 points.",
+ "school": "Item Enchantment",
+ "family": "159",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4409": {
+ "name": "Incantation of Lightning Bane",
+ "description": "Increases a shield or piece of armor's resistance to electric damage by 200%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "168",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4410": {
+ "name": "Incantation of Lightning Lure",
+ "description": "Decreases a shield or piece of armor's resistance to electric damage by 200%.",
+ "school": "Item Enchantment",
+ "family": "169",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4411": {
+ "name": "Incantation of Lure Blade",
+ "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 20%.",
+ "school": "Item Enchantment",
+ "family": "157",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4412": {
+ "name": "Incantation of Piercing Bane",
+ "description": "Increases a shield or piece of armor's resistance to piercing damage by 200%. Target yourself to cast this spell on all of your equipped armor.",
+ "school": "Item Enchantment",
+ "family": "172",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4413": {
+ "name": "Incantation of Piercing Lure",
+ "description": "Decreases a shield or piece of armor's resistance to piercing damage by 200%.",
+ "school": "Item Enchantment",
+ "family": "173",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4414": {
+ "name": "Aura of Incantation of Spirit Drinker Self",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4415": {
+ "name": "Incantation of Spirit Loather",
+ "description": "Decreases the elemental damage bonus of an elemental magic caster by 8%.",
+ "school": "Item Enchantment",
+ "family": "155",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4416": {
+ "name": "Incantation of Strengthen Lock",
+ "description": "Increases a lock's resistance to picking by 250 points.",
+ "school": "Item Enchantment",
+ "family": "192",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4417": {
+ "name": "Aura of Incantation of Swift Killer Self",
+ "description": "Improves a weapon's speed by 80 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4418": {
+ "name": "Aura of Incantation of Hermetic Link Self",
+ "description": "Increases a magic casting implement's mana conversion bonus by 80%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4419": {
+ "name": "Incantation of Turn Blade",
+ "description": "Decreases a weapon's Attack Skill modifier by 20.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "153",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4420": {
+ "name": "Incantation of Weaken Lock",
+ "description": "Decreases a lock's resistance to picking by 250 points.",
+ "school": "Item Enchantment",
+ "family": "193",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4421": {
+ "name": "Incantation of Acid Arc",
+ "description": "Shoots a stream of acid at the target. The stream does 142-204 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4422": {
+ "name": "Incantation of Blade Arc",
+ "description": "Shoots a magical blade at the target. The bolt does 142-204 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4423": {
+ "name": "Incantation of Flame Arc",
+ "description": "Shoots a bolt of flame at the target. The bolt does 142-204 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4424": {
+ "name": "Incantation of Force Arc",
+ "description": "Shoots a bolt of force at the target. The bolt does 142-204 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4425": {
+ "name": "Incantation of Frost Arc",
+ "description": "Shoots a bolt of cold at the target. The bolt does 142-204 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4426": {
+ "name": "Incantation of Lightning Arc",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4427": {
+ "name": "Incantation of Shock Arc",
+ "description": "Shoots a shock wave at the target. The wave does 142-204 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4428": {
+ "name": "Incantation of Martyr's Hecatomb",
+ "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 200% of the amount drained.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4429": {
+ "name": "Incantation of Martyr's Blight",
+ "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 200% of the amount drained.",
+ "school": "Life Magic",
+ "family": "84",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4430": {
+ "name": "Incantation of Martyr's Tenacity",
+ "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 200% of the amount drained.",
+ "school": "Life Magic",
+ "family": "82",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4431": {
+ "name": "Incantation of Acid Blast",
+ "description": "Shoots five streams of acid outward from the caster. Each stream does 47-94 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4432": {
+ "name": "Incantation of Acid Streak",
+ "description": "Sends a stream of acid streaking towards the target. The stream does 47-94 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4433": {
+ "name": "Incantation of Acid Stream",
+ "description": "Shoots a stream of acid at the target. The stream does 142-204 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4434": {
+ "name": "Incantation of Acid Volley",
+ "description": "Shoots five streams of acid toward the target. Each stream does 47-94 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4435": {
+ "name": "Incantation of Blade Blast",
+ "description": "Shoots five whirling blades outward from the caster. Each blade does 47-94 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "137",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4436": {
+ "name": "Incantation of Blade Volley",
+ "description": "Shoots five whirling blades toward the target. Each blade does 47-94 points of Slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "213",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4437": {
+ "name": "Incantation of Bludgeoning Volley",
+ "description": "Shoots five shock waves toward the target. Each wave does 47-94 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "208",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4438": {
+ "name": "Incantation of Flame Blast",
+ "description": "Shoots five bolts of flame outward from the caster. Each bolt does 47-94 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "135",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4439": {
+ "name": "Incantation of Flame Bolt",
+ "description": "Shoots a bolt of flame at the target. The bolt does 142-204 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4440": {
+ "name": "Incantation of Flame Streak",
+ "description": "Sends a bolt of flame streaking towards the target. The bolt does 47-94 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "247",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4441": {
+ "name": "Incantation of Flame Volley",
+ "description": "Shoots five bolts of flame toward the target. Each bolt does 47-94 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "211",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4442": {
+ "name": "Incantation of Force Blast",
+ "description": "Shoots five force bolts outward from the caster. Each bolt does 47-94 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "136",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4443": {
+ "name": "Incantation of Force Bolt",
+ "description": "Shoots a bolt of force at the target. The bolt does 142-204 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4444": {
+ "name": "Incantation of Force Streak",
+ "description": "Sends a bolt of force streaking towards the target. The bolt does 47-94 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "248",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4445": {
+ "name": "Incantation of Force Volley",
+ "description": "Shoots five bolts of force toward the target. Each bolt does 47-94 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "212",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4446": {
+ "name": "Incantation of Frost Blast",
+ "description": "Shoots five bolts of frost outward from the caster. Each bolt does 47-94 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "133",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4447": {
+ "name": "Incantation of Frost Bolt",
+ "description": "Shoots a bolt of cold at the target. The bolt does 142-204 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "119",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4448": {
+ "name": "Incantation of Frost Streak",
+ "description": "Sends a bolt of cold streaking towards the target. The bolt does 47-94 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "245",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4449": {
+ "name": "Incantation of Frost Volley",
+ "description": "Shoots five bolts of frost toward the target. Each bolt does 47-94 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "209",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4450": {
+ "name": "Incantation of Lightning Blast",
+ "description": "Shoots five bolts of lightning outward from the caster. Each bolt does 47-94 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4451": {
+ "name": "Incantation of Lightning Bolt",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4452": {
+ "name": "Incantation of Lightning Streak",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 47-94 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4453": {
+ "name": "Incantation of Lightning Volley",
+ "description": "Shoots five bolts of lightning toward the target. Each bolt does 47-94 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4454": {
+ "name": "Incantation of Shock Blast",
+ "description": "Shoots five shock waves outward from the caster. Each wave does 47-94 points of damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4455": {
+ "name": "Incantation of Shock Wave",
+ "description": "Shoots a shock wave at the target. The wave does 142-204 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "118",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4456": {
+ "name": "Incantation of Shock Wave Streak",
+ "description": "Sends a shock wave streaking towards the target. The wave does 47-94 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "244",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4457": {
+ "name": "Incantation of Whirling Blade",
+ "description": "Shoots a magical blade at the target. The bolt does 142-204 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "123",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4458": {
+ "name": "Incantation of Whirling Blade Streak",
+ "description": "Sends a magical blade streaking towards the target. The bolt does 47-94 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "249",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4459": {
+ "name": "Incantation of Acid Protection Other",
+ "description": "Reduces damage the target takes from acid by 68%",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4460": {
+ "name": "Incantation of Acid Protection Self",
+ "description": "Reduces damage the caster takes from acid by 68%",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4461": {
+ "name": "Incantation of Blade Protection Other",
+ "description": "Reduces damage the target takes from Slashing by 68%",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4462": {
+ "name": "Incantation of Blade Protection Self",
+ "description": "Reduces damage the caster takes from Slashing by 68%",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4463": {
+ "name": "Incantation of Bludgeoning Protection Other",
+ "description": "Reduces damage the target takes from Bludgeoning by 68%",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4464": {
+ "name": "Incantation of Bludgeoning Protection Self",
+ "description": "Reduces damage the caster takes from Bludgeoning by 68%",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4465": {
+ "name": "Incantation of Cold Protection Other",
+ "description": "Reduces damage the target takes from Cold by 68%",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4466": {
+ "name": "Incantation of Cold Protection Self",
+ "description": "Reduces damage the caster takes from Cold by 68%",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4467": {
+ "name": "Incantation of Fire Protection Other",
+ "description": "Reduces damage the target takes from fire by 68%",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4468": {
+ "name": "Incantation of Fire Protection Self",
+ "description": "Reduces damage the caster takes from Fire by 68%",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4469": {
+ "name": "Incantation of Lightning Protection Other",
+ "description": "Reduces damage the target takes from Lightning by 68%",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4470": {
+ "name": "Incantation of Lightning Protection Self",
+ "description": "Reduces damage the caster takes from Lightning by 68%",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4471": {
+ "name": "Incantation of Piercing Protection Other",
+ "description": "Reduces damage the target takes from Piercing by 68%",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4472": {
+ "name": "Incantation of Piercing Protection Self",
+ "description": "Reduces damage the caster takes from Piercing by 68%",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4473": {
+ "name": "Incantation of Acid Vulnerability Other",
+ "description": "Increases damage the target takes from acid by 210%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4474": {
+ "name": "Incantation of Acid Vulnerability Self",
+ "description": "Increases damage the caster takes from acid by 210%.",
+ "school": "Life Magic",
+ "family": "102",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4475": {
+ "name": "Incantation of Blade Vulnerability Other",
+ "description": "Increases damage the target takes from Slashing by 210%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4476": {
+ "name": "Incantation of Blade Vulnerability Self",
+ "description": "Increases damage the caster takes from Slashing by 210%.",
+ "school": "Life Magic",
+ "family": "114",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4477": {
+ "name": "Incantation of Bludgeoning Vulnerability Other",
+ "description": "Increases damage the target takes from Bludgeoning by 210%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4478": {
+ "name": "Incantation of Bludgeoning Vulnerability Self",
+ "description": "Increases damage the caster takes from Bludgeoning by 210%.",
+ "school": "Life Magic",
+ "family": "104",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4479": {
+ "name": "Incantation of Cold Vulnerability Other",
+ "description": "Increases damage the target takes from Cold by 210%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4480": {
+ "name": "Incantation of Cold Vulnerability Self",
+ "description": "Increases damage the caster takes from Cold by 210%.",
+ "school": "Life Magic",
+ "family": "106",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4481": {
+ "name": "Incantation of Fire Vulnerability Other",
+ "description": "Increases damage the target takes from Fire by 210%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4482": {
+ "name": "Incantation of Fire Vulnerability Self",
+ "description": "Increases damage the caster takes from Fire by 210%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4483": {
+ "name": "Incantation of Lightning Vulnerability Other",
+ "description": "Increases damage the target takes from Lightning by 210%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4484": {
+ "name": "Incantation of Lightning Vulnerability Self",
+ "description": "Increases damage the caster takes from Lightning by 210%.",
+ "school": "Life Magic",
+ "family": "108",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4485": {
+ "name": "Incantation of Piercing Vulnerability Other",
+ "description": "Increases damage the target takes from Piercing by 210%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4486": {
+ "name": "Incantation of Piercing Vulnerability Self",
+ "description": "Increases damage the caster takes from Piercing by 210%.",
+ "school": "Life Magic",
+ "family": "112",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4487": {
+ "name": "Incantation of Exhaustion Other",
+ "description": "Decreases the rate at which the target regains Stamina by 75%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4488": {
+ "name": "Incantation of Exhaustion Self",
+ "description": "Decreases the rate at which the caster regains Stamina by 75%.",
+ "school": "Life Magic",
+ "family": "96",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4489": {
+ "name": "Incantation of Fester Other",
+ "description": "Decrease target's natural healing rate by 75%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4490": {
+ "name": "Incantation of Fester Self",
+ "description": "Decrease caster's natural healing rate by 75%.",
+ "school": "Life Magic",
+ "family": "94",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4491": {
+ "name": "Incantation of Mana Depletion Other",
+ "description": "Decreases target's natural mana rate by 75%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4492": {
+ "name": "Incantation of Mana Depletion Self",
+ "description": "Decreases caster's natural mana rate by 75%.",
+ "school": "Life Magic",
+ "family": "98",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4493": {
+ "name": "Incantation of Mana Renewal Other",
+ "description": "Increases the target's natural mana rate by 145%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4494": {
+ "name": "Incantation of Mana Renewal Self",
+ "description": "Increases the caster's natural mana rate by 145%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4495": {
+ "name": "Incantation of Regeneration Other",
+ "description": "Increase target's natural healing rate by 145%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4496": {
+ "name": "Incantation of Regeneration Self",
+ "description": "Increase caster's natural healing rate by 145%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4497": {
+ "name": "Incantation of Rejuvenation Other",
+ "description": "Increases the rate at which the target regains Stamina by 145%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4498": {
+ "name": "Incantation of Rejuvenation Self",
+ "description": "Increases the rate at which the caster regains Stamina by 145%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4499": {
+ "name": "Incantation of Arcanum Salvaging Self",
+ "description": "Increases the caster's Salvaging skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4500": {
+ "name": "Incantation of Arcanum Enlightenment",
+ "description": "Increases the target's Salvaging skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4501": {
+ "name": "Incantation of Nuhmudira's Wisdom",
+ "description": "Increases the caster's Salvaging skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4502": {
+ "name": "Incantation of Nuhmudira Enlightenment",
+ "description": "Increases the target's Salvaging skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4503": {
+ "name": "Incantation of Alchemy Ineptitude Other",
+ "description": "Decreases the target's Alchemy skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4504": {
+ "name": "Incantation of Alchemy Ineptitude Self",
+ "description": "Decreases the caster's Alchemy skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "220",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4505": {
+ "name": "Incantation of Alchemy Mastery Other",
+ "description": "Increases the target's Alchemy skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4506": {
+ "name": "Incantation of Alchemy Mastery Self",
+ "description": "Increases the caster's Alchemy skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "221",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4507": {
+ "name": "Incantation of Arcane Benightedness Other",
+ "description": "Decreases the target's Arcane Lore skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4508": {
+ "name": "Incantation of Arcane Benightedness Self",
+ "description": "Decreases the caster's Arcane Lore skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "54",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4509": {
+ "name": "Incantation of Arcane Enlightenment Other",
+ "description": "Increases the target's Arcane Lore skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4510": {
+ "name": "Incantation of Arcane Enlightenment Self",
+ "description": "Increases the caster's Arcane Lore skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "53",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4511": {
+ "name": "Incantation of Armor Tinkering Expertise Other",
+ "description": "Increases the target's Armor Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4512": {
+ "name": "Incantation of Armor Tinkering Expertise Self",
+ "description": "Increases the caster's Armor Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "55",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4513": {
+ "name": "Incantation of Armor Tinkering Ignorance Other",
+ "description": "Decreases the target's Armor Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4514": {
+ "name": "Incantation of Armor Tinkering Ignorance Self",
+ "description": "Decreases the caster's Armor Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "56",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4515": {
+ "name": "Incantation of Light Weapon Ineptitude Other",
+ "description": "Decreases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4516": {
+ "name": "Incantation of Light Weapon Ineptitude Self",
+ "description": "Decreases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4517": {
+ "name": "Incantation of Light Weapon Mastery Other",
+ "description": "Increases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4518": {
+ "name": "Incantation of Light Weapon Mastery Self",
+ "description": "Increases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4519": {
+ "name": "Incantation of Missile Weapon Ineptitude Other",
+ "description": "Decreases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4520": {
+ "name": "Incantation of Missile Weapon Ineptitude Self",
+ "description": "Decreases the caster's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4521": {
+ "name": "Incantation of Missile Weapon Mastery Other",
+ "description": "Increases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4522": {
+ "name": "Incantation of Missile Weapon Mastery Self",
+ "description": "Increases the caster's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4523": {
+ "name": "Incantation of Cooking Ineptitude Other",
+ "description": "Decreases the target's Cooking skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4524": {
+ "name": "Incantation of Cooking Ineptitude Self",
+ "description": "Decreases the caster's Cooking skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "217",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4525": {
+ "name": "Incantation of Cooking Mastery Other",
+ "description": "Increases the target's Cooking skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4526": {
+ "name": "Incantation of Cooking Mastery Self",
+ "description": "Increases the caster's Cooking skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "216",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4527": {
+ "name": "Incantation of Creature Enchantment Ineptitude Other",
+ "description": "Decreases the target's Creature Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4528": {
+ "name": "Incantation of Creature Enchantment Ineptitude Self",
+ "description": "Decreases the caster's Creature Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "44",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4529": {
+ "name": "Incantation of Creature Enchantment Mastery Other",
+ "description": "Increases the target's Creature Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4530": {
+ "name": "Incantation of Creature Enchantment Mastery Self",
+ "description": "Increases the caster's Creature Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "43",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4531": {
+ "name": "Incantation of Missile Weapon Ineptitude Other",
+ "description": "Decreases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4532": {
+ "name": "Incantation of Missile Weapon Ineptitude Self",
+ "description": "Decreases the caster's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4533": {
+ "name": "Incantation of Missile Weapon Mastery Other",
+ "description": "Increases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4534": {
+ "name": "Incantation of Missile Weapon Mastery Self",
+ "description": "Increases the caster's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4535": {
+ "name": "Incantation of Finesse Weapon Ineptitude Other",
+ "description": "Decreases the target's Finesse Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4536": {
+ "name": "Incantation of Finesse Weapon Ineptitude Self",
+ "description": "Decreases the caster's Finesse Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "24",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4537": {
+ "name": "Incantation of Finesse Weapon Mastery Other",
+ "description": "Increases the target's Finesse Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4538": {
+ "name": "Incantation of Finesse Weapon Mastery Self",
+ "description": "Increases the caster's Finesse Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "23",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4539": {
+ "name": "Incantation of Deception Ineptitude Other",
+ "description": "Decreases the target's Deception skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4540": {
+ "name": "Incantation of Deception Ineptitude Self",
+ "description": "Decreases the caster's Deception skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "66",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4541": {
+ "name": "Incantation of Deception Mastery Other",
+ "description": "Increases the target's Deception skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4542": {
+ "name": "Incantation of Deception Mastery Self",
+ "description": "Increases the caster's Deception skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "65",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4543": {
+ "name": "Incantation of Defenselessness Other",
+ "description": "Decreases the target's Missile Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4544": {
+ "name": "Incantation of Defenselessness Self",
+ "description": "Decreases the caster's Missile Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "40",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4545": {
+ "name": "Incantation of Faithlessness Other",
+ "description": "Decreases the target's Loyalty skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4546": {
+ "name": "Incantation of Faithlessness Self",
+ "description": "Decreases the caster's Loyalty skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "76",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4547": {
+ "name": "Incantation of Fealty Other",
+ "description": "Increases the target's Loyalty skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4548": {
+ "name": "Incantation of Fealty Self",
+ "description": "Increases the caster's Loyalty skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "75",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4549": {
+ "name": "Incantation of Fletching Ineptitude Other",
+ "description": "Decreases the target's Fletching skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4550": {
+ "name": "Incantation of Fletching Ineptitude Self",
+ "description": "Decreases the caster's Fletching skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "219",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4551": {
+ "name": "Incantation of Fletching Mastery Other",
+ "description": "Increases the target's Fletching skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4552": {
+ "name": "Incantation of Fletching Mastery Self",
+ "description": "Increases the caster's Fletching skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "218",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4553": {
+ "name": "Incantation of Healing Ineptitude Other",
+ "description": "Decreases the target's Healing skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4554": {
+ "name": "Incantation of Healing Ineptitude Self",
+ "description": "Decreases the caster's Healing skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "68",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4555": {
+ "name": "Incantation of Healing Mastery Other",
+ "description": "Increases the target's Healing skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4556": {
+ "name": "Incantation of Healing Mastery Self",
+ "description": "Increases the caster's Healing skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "67",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4557": {
+ "name": "Incantation of Impregnability Other",
+ "description": "Increases the target's Missile Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4558": {
+ "name": "Incantation of Impregnability Self",
+ "description": "Increases the caster's Missile Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4559": {
+ "name": "Incantation of Invulnerability Other",
+ "description": "Increases the target's Melee Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4560": {
+ "name": "Incantation of Invulnerability Self",
+ "description": "Increases the caster's Melee Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4561": {
+ "name": "Incantation of Item Enchantment Ineptitude Other",
+ "description": "Decreases the target's Item Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4562": {
+ "name": "Incantation of Item Enchantment Ineptitude Self",
+ "description": "Decreases the caster's Item Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "46",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4563": {
+ "name": "Incantation of Item Enchantment Mastery Other",
+ "description": "Increases the target's Item Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4564": {
+ "name": "Incantation of Item Enchantment Mastery Self",
+ "description": "Increases the caster's Item Enchantment skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "45",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4565": {
+ "name": "Incantation of Item Tinkering Expertise Other",
+ "description": "Increases the target's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4566": {
+ "name": "Incantation of Item Tinkering Expertise Self",
+ "description": "Increases the caster's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4567": {
+ "name": "Incantation of Item Tinkering Ignorance Other",
+ "description": "Decreases the target's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4568": {
+ "name": "Incantation of Item Tinkering Ignorance Self",
+ "description": "Decreases the caster's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4569": {
+ "name": "Incantation of Jumping Ineptitude Other",
+ "description": "Decreases the target's Jump skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4570": {
+ "name": "Incantation of Jumping Ineptitude Self",
+ "description": "Decreases the caster's Jump skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "70",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4571": {
+ "name": "Incantation of Jumping Mastery Other",
+ "description": "Increases the target's Jump skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4572": {
+ "name": "Incantation of Jumping Mastery Self",
+ "description": "Increases the caster's Jump skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "69",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4573": {
+ "name": "Incantation of Leaden Feet Other",
+ "description": "Decreases the target's Run skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4574": {
+ "name": "Incantation of Leaden Feet Self",
+ "description": "Decreases the caster's Run skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4575": {
+ "name": "Incantation of Leadership Ineptitude Other",
+ "description": "Decreases the target's Leadership skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4576": {
+ "name": "Incantation of Leadership Ineptitude Self",
+ "description": "Decreases the caster's Leadership skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "72",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4577": {
+ "name": "Incantation of Leadership Mastery Other",
+ "description": "Increases the target's Leadership skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4578": {
+ "name": "Incantation of Leadership Mastery Self",
+ "description": "Increases the caster's Leadership skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "71",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4579": {
+ "name": "Incantation of Life Magic Ineptitude Other",
+ "description": "Decreases the target's Life Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4580": {
+ "name": "Incantation of Life Magic Ineptitude Self",
+ "description": "Decreases the caster's Life Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "48",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4581": {
+ "name": "Incantation of Life Magic Mastery Other",
+ "description": "Increases the target's Life Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4582": {
+ "name": "Incantation of Life Magic Mastery Self",
+ "description": "Increases the caster's Life Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "47",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4583": {
+ "name": "Incantation of Lockpick Ineptitude Other",
+ "description": "Decreases the target's Lockpick skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4584": {
+ "name": "Incantation of Lockpick Ineptitude Self",
+ "description": "Decreases the caster's Lockpick skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "74",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4585": {
+ "name": "Incantation of Lockpick Mastery Other",
+ "description": "Increases the target's Lockpick skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4586": {
+ "name": "Incantation of Lockpick Mastery Self",
+ "description": "Increases the caster's Lockpick skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "73",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4587": {
+ "name": "Incantation of Light Weapon Ineptitude Other",
+ "description": "Decreases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4588": {
+ "name": "Incantation of Light Weapon Ineptitude Self",
+ "description": "Decreases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4589": {
+ "name": "Incantation of Light Weapon Mastery Other",
+ "description": "Increases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4590": {
+ "name": "Incantation of Light Weapon Mastery Self",
+ "description": "Increases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4591": {
+ "name": "Incantation of Magic Item Tinkering Expertise Other",
+ "description": "Increases the target's Magic Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4592": {
+ "name": "Incantation of Magic Item Tinkering Expertise Self",
+ "description": "Increases the caster's Magic Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "59",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4593": {
+ "name": "Incantation of Magic Item Tinkering Ignorance Other",
+ "description": "Decreases the target's Magic Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4594": {
+ "name": "Incantation of Magic Item Tinkering Ignorance Self",
+ "description": "Decreases the caster's Magic Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "60",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4595": {
+ "name": "Incantation of Magic Resistance Other",
+ "description": "Increases the target's Magic Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4596": {
+ "name": "Incantation of Magic Resistance Self",
+ "description": "Increases the caster's Magic Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4597": {
+ "name": "Incantation of Magic Yield Other",
+ "description": "Decreases the target's Magic Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4598": {
+ "name": "Incantation of Magic Yield Self",
+ "description": "Decreases the caster's Magic Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "42",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4599": {
+ "name": "Incantation of Mana Conversion Ineptitude Other",
+ "description": "Decreases the target's Mana Conversion skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4600": {
+ "name": "Incantation of Mana Conversion Ineptitude Self",
+ "description": "Decreases the caster's Mana Conversion skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "52",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4601": {
+ "name": "Incantation of Mana Conversion Mastery Other",
+ "description": "Increases the target's Mana Conversion skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4602": {
+ "name": "Incantation of Mana Conversion Mastery Self",
+ "description": "Increases the caster's Mana Conversion skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4603": {
+ "name": "Incantation of Monster Attunement Other",
+ "description": "Increases the target's Assess Monster skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4604": {
+ "name": "Incantation of Monster Attunement Self",
+ "description": "Increases the caster's Assess Monster skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "63",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4605": {
+ "name": "Incantation of Monster Unfamiliarity Other",
+ "description": "Decreases the target's Assess Monster skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4606": {
+ "name": "Incantation of Monster Unfamiliarity Self",
+ "description": "Decreases the caster's Assess Monster skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "64",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4607": {
+ "name": "Incantation of Person Attunement Other",
+ "description": "Increases the target's Assess Person skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4608": {
+ "name": "Incantation of Person Attunement Self",
+ "description": "Increases the caster's Assess Person skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "205",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4609": {
+ "name": "Incantation of Person Unfamiliarity Other",
+ "description": "Decreases the target's Assess Person skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4610": {
+ "name": "Incantation of Person Unfamiliarity Self",
+ "description": "Decreases the caster's Assess Person skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "206",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4611": {
+ "name": "Incantation of Light Weapon Ineptitude Other",
+ "description": "Decreases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4612": {
+ "name": "Incantation of Light Weapon Ineptitude Self",
+ "description": "Decreases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4613": {
+ "name": "Incantation of Light Weapon Mastery Other",
+ "description": "Increases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4614": {
+ "name": "Incantation of Light Weapon Mastery Self",
+ "description": "Increases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4615": {
+ "name": "Incantation of Sprint Other",
+ "description": "Increases the target's Run skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4616": {
+ "name": "Incantation of Sprint Self",
+ "description": "Increases the caster's Run skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4617": {
+ "name": "Incantation of Light Weapon Ineptitude Other",
+ "description": "Decreases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4618": {
+ "name": "Incantation of Light Weapon Ineptitude Self",
+ "description": "Decreases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4619": {
+ "name": "Incantation of Light Weapon Mastery Other",
+ "description": "Increases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4620": {
+ "name": "Incantation of Light Weapon Mastery Self",
+ "description": "Increases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4621": {
+ "name": "Incantation of Heavy Weapon Ineptitude Other",
+ "description": "Decreases the target's Heavy Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4622": {
+ "name": "Incantation of Heavy Weapon Ineptitude Self",
+ "description": "Decreases the caster's Heavy Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "32",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4623": {
+ "name": "Incantation of Heavy Weapon Mastery Other",
+ "description": "Increases the target's Heavy Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4624": {
+ "name": "Incantation of Heavy Weapon Mastery Self",
+ "description": "Increases the caster's Heavy Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "31",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4625": {
+ "name": "Incantation of Missile Weapon Ineptitude Other",
+ "description": "Decreases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4626": {
+ "name": "Incantation of Missile Weapon Ineptitude Self",
+ "description": "Decreases the caster's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "20",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4627": {
+ "name": "Incantation of Missile Weapon Mastery Other",
+ "description": "Increases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4628": {
+ "name": "Incantation of Missile Weapon Mastery Self",
+ "description": "Increases the caster's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4629": {
+ "name": "Incantation of Light Weapon Ineptitude Other",
+ "description": "Decreases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4630": {
+ "name": "Incantation of Light Weapon Mastery Other",
+ "description": "Increases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4631": {
+ "name": "Incantation of Light Weapon Mastery Self",
+ "description": "Increases the caster's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4632": {
+ "name": "Incantation of Light Weapon Ineptitude Other",
+ "description": "Decreases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "18",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4633": {
+ "name": "Incantation of Vulnerability Other",
+ "description": "Decrease the target's Melee Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4634": {
+ "name": "Incantation of Vulnerability Self",
+ "description": "Decrease the target's Melee Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "38",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4635": {
+ "name": "Incantation of War Magic Ineptitude Other",
+ "description": "Decreases the target's War Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4636": {
+ "name": "Incantation of War Magic Ineptitude Self",
+ "description": "Decreases the caster's War Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "50",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4637": {
+ "name": "Incantation of War Magic Mastery Other",
+ "description": "Increases the target's War Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4638": {
+ "name": "Incantation of War Magic Mastery Self",
+ "description": "Increases the caster's War Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4639": {
+ "name": "Incantation of Weapon Tinkering Expertise Other",
+ "description": "Increases the target's Weapon Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4640": {
+ "name": "Incantation of Weapon Tinkering Expertise Self",
+ "description": "Increases the caster's Weapon Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "61",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4641": {
+ "name": "Incantation of Weapon Tinkering Ignorance Other",
+ "description": "Decreases the target's Weapon Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4642": {
+ "name": "Incantation of Weapon Tinkering Ignorance Self",
+ "description": "Decreases the caster's Weapon Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "62",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "4643": {
+ "name": "Incantation of Drain Health Other",
+ "description": "Drains 60% of the target's Health and gives 35% of it to the caster.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "68"
+ },
+ "4644": {
+ "name": "Incantation of Drain Mana Other",
+ "description": "Drains 60% of the target's Mana and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "68"
+ },
+ "4645": {
+ "name": "Incantation of Drain Stamina Other",
+ "description": "Drains 60% of the target's Stamina and gives it to the caster.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "68"
+ },
+ "4646": {
+ "name": "Incantation of Health to Mana Other",
+ "description": "Drains one-half of the target's Health and gives 200% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4647": {
+ "name": "Incantation of Health to Mana Self",
+ "description": "Drains one-half of the caster's Health and gives 200% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4648": {
+ "name": "Incantation of Health to Stamina Other",
+ "description": "Drains one-half of the target's Health and gives 200% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4649": {
+ "name": "Incantation of Health to Stamina Self",
+ "description": "Drains one-half of the caster's Health and gives 200% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "87",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4650": {
+ "name": "Incantation of Infuse Health Other",
+ "description": "Drains one-quarter of the caster's Health and gives 200% of that to the target.",
+ "school": "Life Magic",
+ "family": "88",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4651": {
+ "name": "Incantation of Infuse Mana Other",
+ "description": "Drains one-quarter of the caster's Mana and gives 200% of that to the target.",
+ "school": "Life Magic",
+ "family": "92",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4652": {
+ "name": "Incantation of Infuse Stamina Other",
+ "description": "Drains one-quarter of the caster's Stamina and gives 200% of that to the target.",
+ "school": "Life Magic",
+ "family": "90",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4653": {
+ "name": "Incantation of Mana to Health Other",
+ "description": "Drains one-half of the target's Mana and gives 200% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4654": {
+ "name": "Incantation of Mana to Health Self",
+ "description": "Drains one-half of the caster's Mana and gives 200% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4655": {
+ "name": "Incantation of Mana to Stamina Other",
+ "description": "Drains one-half of the target's Mana and gives 200% of that to his/her stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4656": {
+ "name": "Incantation of Mana to Stamina Self",
+ "description": "Drains one-half of the caster's Mana and gives 200% of that to his/her Stamina.",
+ "school": "Life Magic",
+ "family": "91",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4657": {
+ "name": "Incantation of Stamina to Health Other",
+ "description": "Drains one-half of the target's Stamina and gives 200% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4658": {
+ "name": "Incantation of Stamina to Health Self",
+ "description": "Drains one-half of the caster's Stamina and gives 200% of that to his/her Health.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4659": {
+ "name": "Incantation of Stamina to Mana Other",
+ "description": "Drains one-half of the target's Stamina and gives 200% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4660": {
+ "name": "Epic Acid Bane",
+ "description": "Increases a shield or piece of armor's resistance to Acid damage by 20%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "381",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4661": {
+ "name": "Epic Blood Thirst",
+ "description": "Increases a weapon's damage value by 7 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4662": {
+ "name": "Epic Bludgeoning Bane",
+ "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 20%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "383",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4663": {
+ "name": "Epic Defender",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "329",
+ "difficulty": "6",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4664": {
+ "name": "Epic Flame Bane",
+ "description": "Increases a shield or piece of armor's resistance to Fire damage by 20%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "385",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4665": {
+ "name": "Epic Frost Bane",
+ "description": "Increases a shield or piece of armor's resistance to Cold damage by 20%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "387",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4666": {
+ "name": "Epic Heart Thirst",
+ "description": "Increases a weapon's Attack Skill modifier by 7%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "6",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4667": {
+ "name": "Epic Impenetrability",
+ "description": "Improves a shield or piece of armor's Armor value by 60 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "391",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4668": {
+ "name": "Epic Piercing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Piercing damage by 20%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "393",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4669": {
+ "name": "Epic Slashing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Slashing damage by 20%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "395",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4670": {
+ "name": "Epic Spirit Thirst",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 5%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4671": {
+ "name": "Epic Storm Bane",
+ "description": "Increases a shield or piece of armor's resistance to Electric damage by 20%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "397",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4672": {
+ "name": "Epic Swift Hunter",
+ "description": "Improves a weapon's speed by 30 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "399",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4673": {
+ "name": "Epic Acid Ward",
+ "description": "Reduces damage the target takes from Acid by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "285",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4674": {
+ "name": "Epic Bludgeoning Ward",
+ "description": "Reduces damage the target takes from Bludgeoning by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "401",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4675": {
+ "name": "Epic Flame Ward",
+ "description": "Reduces damage the target takes from Fire by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "287",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4676": {
+ "name": "Epic Frost Ward",
+ "description": "Reduces damage the target takes from Cold by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4677": {
+ "name": "Epic Piercing Ward",
+ "description": "Reduces damage the target takes from Piercing by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "405",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4678": {
+ "name": "Epic Slashing Ward",
+ "description": "Reduces damage the target takes from Slashing by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "403",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4679": {
+ "name": "Epic Storm Ward",
+ "description": "Reduces damage the target takes from Lightning by 20%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "291",
+ "difficulty": "20",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4680": {
+ "name": "Epic Health Gain",
+ "description": "Increases the rate at which the target regains Health by 45%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "45",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4681": {
+ "name": "Epic Mana Gain",
+ "description": "Increases the rate at which the target regains Mana by 45%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "45",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4682": {
+ "name": "Epic Stamina Gain",
+ "description": "Increases the rate at which the target regains Stamina by 45%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "45",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4683": {
+ "name": "Epic Alchemical Prowess",
+ "description": "Increases the target's Alchemy skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "333",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4684": {
+ "name": "Epic Arcane Prowess",
+ "description": "Increases the target's Arcane Lore skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "335",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4685": {
+ "name": "Epic Armor Tinkering Expertise",
+ "description": "Increases the target's Armor Tinkering skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "337",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4686": {
+ "name": "Epic Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4687": {
+ "name": "Epic Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4688": {
+ "name": "Epic Cooking Prowess",
+ "description": "Increases the target's Cooking skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "339",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4689": {
+ "name": "Epic Creature Enchantment Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "251",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4690": {
+ "name": "Epic Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4691": {
+ "name": "Epic Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4692": {
+ "name": "Epic Fealty",
+ "description": "Increases the target's Loyalty skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "345",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4693": {
+ "name": "Epic Fletching Prowess",
+ "description": "Increases the target's Fletching skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "347",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4694": {
+ "name": "Epic Healing Prowess",
+ "description": "Increases the target's Healing skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "349",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4695": {
+ "name": "Epic Impregnability",
+ "description": "Increases the target's Missile Defense skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "654",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4696": {
+ "name": "Epic Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4697": {
+ "name": "Epic Item Enchantment Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "253",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4698": {
+ "name": "Epic Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "353",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4699": {
+ "name": "Epic Jumping Prowess",
+ "description": "Increases the target's Jump skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "355",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4700": {
+ "name": "Epic Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "357",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4701": {
+ "name": "Epic Lockpick Prowess",
+ "description": "Increases the target's Lockpick skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "359",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4702": {
+ "name": "Epic Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4703": {
+ "name": "Epic Magic Item Tinkering Expertise",
+ "description": "Increases the target's Magic Item Tinkering skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "361",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4704": {
+ "name": "Epic Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4705": {
+ "name": "Epic Mana Conversion Prowess",
+ "description": "Increases the target's Mana Conversion skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4706": {
+ "name": "Epic Monster Attunement",
+ "description": "Increases the target's Assess Creature skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "365",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4707": {
+ "name": "Epic Person Attunement",
+ "description": "Increases the target's Assess Person skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "367",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4708": {
+ "name": "Epic Salvaging Aptitude",
+ "description": "Increases the target's Salvaging skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "437",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4709": {
+ "name": "Epic Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4710": {
+ "name": "Epic Sprint",
+ "description": "Increases the target's Run skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "369",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4711": {
+ "name": "Epic Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4712": {
+ "name": "Epic Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4713": {
+ "name": "Epic Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4714": {
+ "name": "Epic Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4715": {
+ "name": "Epic War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "255",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4716": {
+ "name": "Burning Curse",
+ "description": "Does 100-250 points of fire damage to the cursed target.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "4717": {
+ "name": "Expedient Return to Ulgrim",
+ "description": "Teleports target far above Ayan Baqur.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "4718": {
+ "name": "Welcomed by the Blood Witches",
+ "description": "This spell teleports the character to the Waiting Area of the Falatacot Visitor's Alcove.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "999",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4719": {
+ "name": "Welcomed by the Blood Witches",
+ "description": "This spell teleports the character to the Outer Receiving Chamber of the Falatacot Visitor's Alcove.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "999",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4720": {
+ "name": "Welcomed by the Blood Witches",
+ "description": "This spell teleports the character to the Inner Receiving Chamber of the Falatacot Visitor's Alcove.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "999",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4721": {
+ "name": "Travel to the Ruins of Degar'Alesh",
+ "description": "Instantly transports the target to the Ruins of Degar'Alesh.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4722": {
+ "name": "Bleed Other",
+ "description": "Decreases target's health by 10 every heart beat.",
+ "school": "Life Magic",
+ "family": "530",
+ "difficulty": "10",
+ "duration": "30",
+ "mana": "20"
+ },
+ "4723": {
+ "name": "Bleed Self",
+ "description": "Decreases caster's health by 10 every heart beat.",
+ "school": "Life Magic",
+ "family": "530",
+ "difficulty": "10",
+ "duration": "30",
+ "mana": "20"
+ },
+ "4724": {
+ "name": "Gateway to Nyr'leha",
+ "description": "The Gateway to Nyr'leha. ancient city from beneath the waves.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4725": {
+ "name": "The Pit of Heretics",
+ "description": "Sends the target to the Sclavus Pit.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4726": {
+ "name": "Poison",
+ "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "300",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4727": {
+ "name": "Poison",
+ "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.",
+ "school": "Creature Enchantment",
+ "family": "536",
+ "difficulty": "300",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4728": {
+ "name": "Poison",
+ "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.",
+ "school": "Creature Enchantment",
+ "family": "537",
+ "difficulty": "300",
+ "duration": "30",
+ "mana": "10"
+ },
+ "4729": {
+ "name": "Travel to the Catacombs of Tar'Kelyn",
+ "description": "Instantly transports the target to the Catacombs of Tar'Kelyn.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4730": {
+ "name": "Novice Duelist's Coordination",
+ "description": "Increases the target's Coordination by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "568",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4731": {
+ "name": "Apprentice Duelist's Coordination",
+ "description": "Increases the target's Coordination by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "568",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4732": {
+ "name": "Journeyman Duelist's Coordination",
+ "description": "Increases the target's Coordination by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "568",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4733": {
+ "name": "Master Duelist's Coordination",
+ "description": "Increases the target's Coordination by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "568",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4734": {
+ "name": "Novice Hero's Endurance",
+ "description": "Increases the target's Endurance by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "567",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4735": {
+ "name": "Apprentice Hero's Endurance",
+ "description": "Increases the target's Endurance by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "567",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4736": {
+ "name": "Journeyman Hero's Endurance",
+ "description": "Increases the target's Endurance by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "567",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4737": {
+ "name": "Master Hero's Endurance",
+ "description": "Increases the target's Endurance by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "567",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4738": {
+ "name": "Novice Sage's Focus",
+ "description": "Increases the target's Focus by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "570",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4739": {
+ "name": "Apprentice Sage's Focus",
+ "description": "Increases the target's Focus by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "570",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4740": {
+ "name": "Journeyman Sage's Focus",
+ "description": "Increases the target's Focus by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "570",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4741": {
+ "name": "Master Sage's Focus",
+ "description": "Increases the target's Focus by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "570",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4742": {
+ "name": "Novice Rover's Quickness",
+ "description": "Increases the target's Quickness by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "569",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4743": {
+ "name": "Apprentice Rover's Quickness",
+ "description": "Increases the target's Quickness by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "569",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4744": {
+ "name": "Journeyman Rover's Quickness",
+ "description": "Increases the target's Quickness by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "569",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4745": {
+ "name": "Master Rover's Quickness",
+ "description": "Increases the target's Quickness by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "569",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4746": {
+ "name": "Novice Brute's Strength",
+ "description": "Increases the target's Strength by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "566",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4747": {
+ "name": "Apprentice Brute's Strength",
+ "description": "Increases the target's Strength by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "566",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4748": {
+ "name": "Journeyman Brute's Strength",
+ "description": "Increases the target's Strength by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "566",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4749": {
+ "name": "Master Brute's Strength",
+ "description": "Increases the target's Strength by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "566",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4750": {
+ "name": "Novice Adherent's Willpower",
+ "description": "Increases the target's Self by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "571",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4751": {
+ "name": "Apprentice Adherent's Willpower",
+ "description": "Increases the target's Self by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "571",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4752": {
+ "name": "Journeyman Adherent's Willpower",
+ "description": "Increases the target's Self by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "571",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4753": {
+ "name": "Master Adherent's Willpower",
+ "description": "Increases the target's Self by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "571",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4754": {
+ "name": "Apprentice Survivor's Health",
+ "description": "Increases maximum health by 3 points.",
+ "school": "Life Magic",
+ "family": "572",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "4755": {
+ "name": "Journeyman Survivor's Health",
+ "description": "Increases maximum health by 10 points.",
+ "school": "Life Magic",
+ "family": "572",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "4756": {
+ "name": "Apprentice Clairvoyant's Mana",
+ "description": "Increases maximum mana by 6 points.",
+ "school": "Life Magic",
+ "family": "574",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "4757": {
+ "name": "Journeyman Clairvoyant's Mana",
+ "description": "Increases maximum mana by 20 points.",
+ "school": "Life Magic",
+ "family": "574",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "4758": {
+ "name": "Apprentice Tracker's Stamina",
+ "description": "Increases maximum stamina by 6 points.",
+ "school": "Life Magic",
+ "family": "573",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "4759": {
+ "name": "Journeyman Tracker's Stamina",
+ "description": "Increases maximum stamina by 20 points.",
+ "school": "Life Magic",
+ "family": "573",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "4760": {
+ "name": "Incidental Acid Resistance",
+ "description": "Reduces damage the target takes from Acid by 2%.",
+ "school": "Life Magic",
+ "family": "581",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4761": {
+ "name": "Crude Acid Resistance",
+ "description": "Reduces damage the target takes from Acid by 5%.",
+ "school": "Life Magic",
+ "family": "581",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4762": {
+ "name": "Effective Acid Resistance",
+ "description": "Reduces damage the target takes from Acid by 10%.",
+ "school": "Life Magic",
+ "family": "581",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4763": {
+ "name": "Masterwork Acid Resistance",
+ "description": "Reduces damage the target takes from Acid by 20%.",
+ "school": "Life Magic",
+ "family": "581",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4764": {
+ "name": "Incidental Bludgeoning Resistance",
+ "description": "Reduces damage the target takes from Bludgeoning by 2%.",
+ "school": "Life Magic",
+ "family": "578",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4765": {
+ "name": "Crude Bludgeoning Resistance",
+ "description": "Reduces damage the target takes from Bludgeoning by 5%.",
+ "school": "Life Magic",
+ "family": "578",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4766": {
+ "name": "Effective Bludgeoning Resistance",
+ "description": "Reduces damage the target takes from Bludgeoning by 10%.",
+ "school": "Life Magic",
+ "family": "578",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4767": {
+ "name": "Masterwork Bludgeoning Resistance",
+ "description": "Reduces damage the target takes from Bludgeoning by 20%.",
+ "school": "Life Magic",
+ "family": "578",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4768": {
+ "name": "Incidental Flame Resistance",
+ "description": "Reduces damage the target takes from Fire by 2%.",
+ "school": "Life Magic",
+ "family": "580",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4769": {
+ "name": "Crude Flame Resistance",
+ "description": "Reduces damage the target takes from Fire by 5%.",
+ "school": "Life Magic",
+ "family": "580",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4770": {
+ "name": "Effective Flame Resistance",
+ "description": "Reduces damage the target takes from Fire by 10%.",
+ "school": "Life Magic",
+ "family": "580",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4771": {
+ "name": "Masterwork Flame Resistance",
+ "description": "Reduces damage the target takes from Fire by 20%.",
+ "school": "Life Magic",
+ "family": "580",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4772": {
+ "name": "Incidental Frost Resistance",
+ "description": "Reduces damage the target takes from Cold by 2%.",
+ "school": "Life Magic",
+ "family": "582",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4773": {
+ "name": "Crude Frost Resistance",
+ "description": "Reduces damage the target takes from Cold by 5%.",
+ "school": "Life Magic",
+ "family": "582",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4774": {
+ "name": "Effective Frost Resistance",
+ "description": "Reduces damage the target takes from Cold by 10%.",
+ "school": "Life Magic",
+ "family": "582",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4775": {
+ "name": "Masterwork Frost Resistance",
+ "description": "Reduces damage the target takes from Cold by 20%.",
+ "school": "Life Magic",
+ "family": "582",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4776": {
+ "name": "Incidental Lightning Resistance",
+ "description": "Reduces damage the target takes from Lightning by 2%.",
+ "school": "Life Magic",
+ "family": "583",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4777": {
+ "name": "Crude Lightning Resistance",
+ "description": "Reduces damage the target takes from Lightning by 5%.",
+ "school": "Life Magic",
+ "family": "583",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4778": {
+ "name": "Effective Lightning Resistance",
+ "description": "Reduces damage the target takes from Lightning by 10%.",
+ "school": "Life Magic",
+ "family": "583",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4779": {
+ "name": "Masterwork Lightning Resistance",
+ "description": "Reduces damage the target takes from Lightning by 20%.",
+ "school": "Life Magic",
+ "family": "583",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4780": {
+ "name": "Incidental Piercing Resistance",
+ "description": "Reduces damage the target takes from Piercing by 2%.",
+ "school": "Life Magic",
+ "family": "579",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4781": {
+ "name": "Crude Piercing Resistance",
+ "description": "Reduces damage the target takes from Piercing by 5%.",
+ "school": "Life Magic",
+ "family": "579",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4782": {
+ "name": "Effective Piercing Resistance",
+ "description": "Reduces damage the target takes from Piercing by 10%.",
+ "school": "Life Magic",
+ "family": "579",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4783": {
+ "name": "Masterwork Piercing Resistance",
+ "description": "Reduces damage the target takes from Piercing by 20%.",
+ "school": "Life Magic",
+ "family": "579",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4784": {
+ "name": "Incidental Slashing Resistance",
+ "description": "Reduces damage the target takes from Slashing by 2%.",
+ "school": "Life Magic",
+ "family": "577",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4785": {
+ "name": "Crude Slashing Resistance",
+ "description": "Reduces damage the target takes from Slashing by 5%.",
+ "school": "Life Magic",
+ "family": "577",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4786": {
+ "name": "Effective Slashing Resistance",
+ "description": "Reduces damage the target takes from Slashing by 10%.",
+ "school": "Life Magic",
+ "family": "577",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4787": {
+ "name": "Masterwork Slashing Resistance",
+ "description": "Reduces damage the target takes from Slashing by 20%.",
+ "school": "Life Magic",
+ "family": "577",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4788": {
+ "name": "Novice Concoctor's Alchemy Aptitude",
+ "description": "Increases the target's Alchemy skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "559",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4789": {
+ "name": "Apprentice Concoctor's Alchemy Aptitude",
+ "description": "Increases the target's Alchemy skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "559",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4790": {
+ "name": "Journeyman Concoctor's Alchemy Aptitude",
+ "description": "Increases the target's Alchemy skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "559",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4791": {
+ "name": "Master Concoctor's Alchemy Aptitude",
+ "description": "Increases the target's Alchemy skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "559",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4792": {
+ "name": "Novice Armorer's Armor Tinkering Aptitude",
+ "description": "Increases the target's Armor Tinkering skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "561",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4793": {
+ "name": "Apprentice Armorer's Armor Tinkering Aptitude",
+ "description": "Increases the target's Armor Tinkering skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "561",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4794": {
+ "name": "Journeyman Armorer's Armor Tinkering Aptitude",
+ "description": "Increases the target's Armor Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "561",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4795": {
+ "name": "Master Armorer's Armor Tinkering Aptitude",
+ "description": "Increases the target's Armor Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "561",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4796": {
+ "name": "Novice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4797": {
+ "name": "Apprentice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4798": {
+ "name": "Journeyman Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4799": {
+ "name": "Master Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4800": {
+ "name": "Novice Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4801": {
+ "name": "Apprentice Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4802": {
+ "name": "Journeyman Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4803": {
+ "name": "Master Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4804": {
+ "name": "Novice Chef's Cooking Aptitude",
+ "description": "Increases the target's Cooking skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "556",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4805": {
+ "name": "Apprentice Chef's Cooking Aptitude",
+ "description": "Increases the target's Cooking skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "556",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4806": {
+ "name": "Journeyman Chef's Cooking Aptitude",
+ "description": "Increases the target's Cooking skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "556",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4807": {
+ "name": "Master Chef's Cooking Aptitude",
+ "description": "Increases the target's Cooking skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "556",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4808": {
+ "name": "Novice Enchanter's Creature Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "549",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4809": {
+ "name": "Apprentice Enchanter's Creature Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "549",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4810": {
+ "name": "Journeyman Enchanter's Creature Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "549",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4811": {
+ "name": "Master Enchanter's Creature Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "549",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4812": {
+ "name": "Novice Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4813": {
+ "name": "Apprentice Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4814": {
+ "name": "Journeyman Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4815": {
+ "name": "Master Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4816": {
+ "name": "Novice Soldier's Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "540",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4817": {
+ "name": "Apprentice Soldier's Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "540",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4818": {
+ "name": "Journeyman Soldier's Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "540",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4819": {
+ "name": "Master Soldier's Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "540",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4820": {
+ "name": "Novice Huntsman's Fletching Aptitude",
+ "description": "Increases the target's Fletching skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "557",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4821": {
+ "name": "Apprentice Huntsman's Fletching Aptitude",
+ "description": "Increases the target's Fletching skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "557",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4822": {
+ "name": "Journeyman Huntsman's Fletching Aptitude",
+ "description": "Increases the target's Fletching skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "557",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4823": {
+ "name": "Master Huntsman's Fletching Aptitude",
+ "description": "Increases the target's Fletching skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "557",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4824": {
+ "name": "Novice Artifex's Item Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "548",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4825": {
+ "name": "Apprentice Artifex's Item Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "548",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4826": {
+ "name": "Journeyman Artifex's Item Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "548",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4827": {
+ "name": "Master Artifex's Item Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "548",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4828": {
+ "name": "Novice Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4829": {
+ "name": "Apprentice Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4830": {
+ "name": "Journeyman Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4831": {
+ "name": "Master Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4832": {
+ "name": "Novice Leaper's Jumping Aptitude",
+ "description": "Increases the target's Jump skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "576",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4833": {
+ "name": "Apprentice Leaper's Jumping Aptitude",
+ "description": "Increases the target's Jump skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "576",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4834": {
+ "name": "Journeyman Leaper's Jumping Aptitude",
+ "description": "Increases the target's Jump skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "576",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4835": {
+ "name": "Master Leaper's Jumping Aptitude",
+ "description": "Increases the target's Jump skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "576",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4836": {
+ "name": "Novice Theurge's Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "551",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4837": {
+ "name": "Apprentice Theurge's Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "551",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4838": {
+ "name": "Journeyman Theurge's Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "551",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4839": {
+ "name": "Master Theurge's Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "551",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4840": {
+ "name": "Novice Locksmith's Lockpick Aptitude",
+ "description": "Increases the target's Lockpick skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "558",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4841": {
+ "name": "Apprentice Locksmith's Lockpick Aptitude",
+ "description": "Increases the target's Lockpick skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "558",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4842": {
+ "name": "Journeyman Locksmith's Lockpick Aptitude",
+ "description": "Increases the target's Lockpick skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "558",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4843": {
+ "name": "Master Locksmith's Lockpick Aptitude",
+ "description": "Increases the target's Lockpick skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "558",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4844": {
+ "name": "Yeoman's Loyalty",
+ "description": "Increases the target's Loyalty skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "565",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4845": {
+ "name": "Squire's Loyalty",
+ "description": "Increases the target's Loyalty skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "565",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4846": {
+ "name": "Novice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4847": {
+ "name": "Apprentice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4848": {
+ "name": "Journeyman Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4849": {
+ "name": "Master Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4850": {
+ "name": "Novice Negator's Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "554",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4851": {
+ "name": "Apprentice Negator's Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "554",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4852": {
+ "name": "Journeyman Negator's Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "554",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4853": {
+ "name": "Master Negator's Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "554",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4854": {
+ "name": "Novice Arcanist's Magic Item Tinkering Aptitude",
+ "description": "Increases the target's Magic Item Tinkering skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "564",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4855": {
+ "name": "Apprentice Arcanist's Magic Item Tinkering Aptitude",
+ "description": "Increases the target's Magic Item Tinkering skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "564",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4856": {
+ "name": "Journeyman Arcanist's Magic Item Tinkering Aptitude",
+ "description": "Increases the target's Magic Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "564",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4857": {
+ "name": "Master Arcanist's Magic Item Tinkering Aptitude",
+ "description": "Increases the target's Magic Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "564",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4858": {
+ "name": "Novice Guardian's Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "552",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4859": {
+ "name": "Apprentice Guardian's Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "552",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4860": {
+ "name": "Journeyman Guardian's Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "552",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4861": {
+ "name": "Master Guardian's Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "552",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4862": {
+ "name": "Novice Wayfarer's Impregnability",
+ "description": "Increases the target's Missile Defense skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "553",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4863": {
+ "name": "Apprentice Wayfarer's Impregnability",
+ "description": "Increases the target's Missile Defense skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "553",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4864": {
+ "name": "Journeyman Wayfarer's Impregnability",
+ "description": "Increases the target's Missile Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "553",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4865": {
+ "name": "Master Wayfarer's Impregnability",
+ "description": "Increases the target's Missile Defense skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "553",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4866": {
+ "name": "Novice Scavenger's Salvaging Aptitude",
+ "description": "Increases the target's Salvaging skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "560",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4867": {
+ "name": "Apprentice Scavenger's Salvaging Aptitude",
+ "description": "Increases the target's Salvaging skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "560",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4868": {
+ "name": "Novice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4869": {
+ "name": "Apprentice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4870": {
+ "name": "Journeyman Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4871": {
+ "name": "Master Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4872": {
+ "name": "Novice Messenger's Sprint Aptitude",
+ "description": "Increases the target's Run skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "575",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4873": {
+ "name": "Apprentice Messenger's Sprint Aptitude",
+ "description": "Increases the target's Run skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "575",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4874": {
+ "name": "Journeyman Messenger's Sprint Aptitude",
+ "description": "Increases the target's Run skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "575",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4875": {
+ "name": "Master Messenger's Sprint Aptitude",
+ "description": "Increases the target's Run skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "575",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4876": {
+ "name": "Novice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4877": {
+ "name": "Apprentice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4878": {
+ "name": "Journeyman Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4879": {
+ "name": "Master Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4880": {
+ "name": "Novice Soldier's Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "538",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4881": {
+ "name": "Apprentice Soldier's Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "538",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4882": {
+ "name": "Journeyman Soldier's Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "538",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4883": {
+ "name": "Master Soldier's Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "538",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4884": {
+ "name": "Novice Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4885": {
+ "name": "Apprentice Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4886": {
+ "name": "Journeyman Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4887": {
+ "name": "Master Archer's Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "545",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4888": {
+ "name": "Novice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4889": {
+ "name": "Apprentice Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4890": {
+ "name": "Journeyman Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4891": {
+ "name": "Master Soldier's Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "539",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4892": {
+ "name": "Novice Warlock's War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "550",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4893": {
+ "name": "Apprentice Warlock's War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "550",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4894": {
+ "name": "Journeyman Warlock's War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "550",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4895": {
+ "name": "Master Warlock's War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "550",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4896": {
+ "name": "Novice Swordsmith's Weapon Tinkering Aptitude",
+ "description": "Increases the target's Weapon Tinkering skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "562",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4897": {
+ "name": "Apprentice Swordsmith's Weapon Tinkering Aptitude",
+ "description": "Increases the target's Weapon Tinkering skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "562",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4898": {
+ "name": "Journeyman Swordsmith's Weapon Tinkering Aptitude",
+ "description": "Increases the target's Weapon Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "562",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4899": {
+ "name": "Master Swordsmith's Weapon Tinkering Aptitude",
+ "description": "Increases the target's Weapon Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "562",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "4900": {
+ "name": "Society Initiate's Blessing",
+ "description": "Increases all attributes by 3. This effect layers on top of normal spells as well as cantrips.",
+ "school": "Creature Enchantment",
+ "family": "517",
+ "difficulty": "3",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "4901": {
+ "name": "Society Adept's Blessing",
+ "description": "Increases all attributes by 6. This effect layers on top of normal spells as well as cantrips.",
+ "school": "Creature Enchantment",
+ "family": "517",
+ "difficulty": "6",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "4902": {
+ "name": "Society Knight's Blessing",
+ "description": "Increases all attributes by 9. This effect layers on top of normal spells as well as cantrips.",
+ "school": "Creature Enchantment",
+ "family": "517",
+ "difficulty": "9",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "4903": {
+ "name": "Society Lord's Blessing",
+ "description": "Increases all attributes by 12. This effect layers on top of normal spells as well as cantrips.",
+ "school": "Creature Enchantment",
+ "family": "517",
+ "difficulty": "12",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "4904": {
+ "name": "Society Master's Blessing",
+ "description": "Increases all attributes by 15. This effect layers on top of normal spells as well as cantrips.",
+ "school": "Creature Enchantment",
+ "family": "517",
+ "difficulty": "15",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "4905": {
+ "name": "Novice Challenger's Rejuvenation",
+ "description": "Increases the rate at which the target regains Stamina by 30%.",
+ "school": "Life Magic",
+ "family": "555",
+ "difficulty": "1",
+ "duration": "2700",
+ "mana": "10"
+ },
+ "4906": {
+ "name": "Apprentice Challenger's Rejuvenation",
+ "description": "Increases the rate at which the target regains Stamina by 100%.",
+ "school": "Life Magic",
+ "family": "555",
+ "difficulty": "2",
+ "duration": "2700",
+ "mana": "10"
+ },
+ "4907": {
+ "name": "Celestial Hand Stronghold Recall",
+ "description": "Sends the caster to the Celestial Hand Stronghold.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4908": {
+ "name": "Eldrytch Web Stronghold Recall",
+ "description": "Sends the caster to the Eldrytch Web Stronghold.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4909": {
+ "name": "Radiant Blood Stronghold Recall",
+ "description": "Sends the caster to the Radiant Blood Stronghold.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4910": {
+ "name": "Raider Tag",
+ "description": "Drains 1-2 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4911": {
+ "name": "Epic Armor",
+ "description": "Increases the target's natural armor by 60 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "60",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4912": {
+ "name": "Epic Weapon Tinkering Expertise",
+ "description": "Increases the target's Weapon Tinkering skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "377",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4913": {
+ "name": "Aerlinthe Pyramid Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4914": {
+ "name": "Aerlinthe Pyramid Portal Exit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4915": {
+ "name": "A'mun Pyramid Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4916": {
+ "name": "A'mun Pyramid Portal Exit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4917": {
+ "name": "Esper Pyramid Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4918": {
+ "name": "Esper Pyramid Portal Exit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4919": {
+ "name": "Halaetan Pyramid Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4920": {
+ "name": "Halaetan Pyramid Portal Exit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4921": {
+ "name": "Linvak Pyramid Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4922": {
+ "name": "Linvak Pyramid Portal Exit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4923": {
+ "name": "Obsidian Pyramid Portal Sending",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4924": {
+ "name": "Obsidian Pyramid Portal Exit",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4925": {
+ "name": "Dance",
+ "description": "Causes the target to dance uncontrollably.",
+ "school": "Creature Enchantment",
+ "family": "198",
+ "difficulty": "800",
+ "duration": "30",
+ "mana": "70"
+ },
+ "4926": {
+ "name": "Smite",
+ "description": "Drains 400-800 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "4927": {
+ "name": "Incantation of Acid Stream with 300 Spellpower",
+ "description": "Shoots a stream of acid at the target. The stream does 135-195 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4928": {
+ "name": "Incantation of Acid Stream with 350 Spellpower",
+ "description": "Shoots a stream of acid at the target. The stream does 135-195 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "350",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "4929": {
+ "name": "Harm",
+ "description": "Drains 5-10 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "4930": {
+ "name": "Flame Bolt I",
+ "description": "Shoots a mini fireball",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4931": {
+ "name": "Mini Fireball",
+ "description": "Shoots a mini fireball",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4932": {
+ "name": "Mini Fireball",
+ "description": "Shoots a mini fireball",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4933": {
+ "name": "Slowness",
+ "description": "Decreases the target's Quickness by 9 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "1",
+ "duration": "5",
+ "mana": "10"
+ },
+ "4934": {
+ "name": "Slowness",
+ "description": "Decreases the target's Quickness by 9 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "1",
+ "duration": "10",
+ "mana": "10"
+ },
+ "4935": {
+ "name": "Slowness",
+ "description": "Decreases the target's Quickness by 9 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "10"
+ },
+ "4936": {
+ "name": "Flame Bolt I",
+ "description": "Shoots a mini iceball",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4937": {
+ "name": "Flame Bolt I",
+ "description": "Shoots a mini iceball",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4938": {
+ "name": "Flame Bolt I",
+ "description": "Shoots a mini arrow",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4939": {
+ "name": "Mini Uber",
+ "description": "Shoots a bolt of elemental energy at the target.",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4940": {
+ "name": "Mini Ring",
+ "description": "Shoots eight waves of force outward from the caster.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4941": {
+ "name": "Mini Ring",
+ "description": "Shoots eight waves of force outward from the caster.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4942": {
+ "name": "Mini Ring",
+ "description": "Shoots eight waves of force outward from the caster.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4943": {
+ "name": "Mini Fireball",
+ "description": "Shoots a mini fireball",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4944": {
+ "name": "Slowness",
+ "description": "Decreases the target's Quickness by 9 points.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "1",
+ "duration": "40",
+ "mana": "10"
+ },
+ "4945": {
+ "name": "Flame Bolt I",
+ "description": "Shoots a mini arrow",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "900",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4946": {
+ "name": "Mini Ring",
+ "description": "Shoots eight waves of force outward from the caster.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4947": {
+ "name": "Harm",
+ "description": "Drains 10-20 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "4948": {
+ "name": "Harm",
+ "description": "Drains 20-30 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "4949": {
+ "name": "Harm",
+ "description": "Drains 60-80 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "4950": {
+ "name": "Tactical Defense",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4951": {
+ "name": "Tactical Defense",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4952": {
+ "name": "Tactical Defense",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4953": {
+ "name": "Test Portal",
+ "description": "Target is portaled for testing purposes and doesn't really go anywhere.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4954": {
+ "name": "Crystalline Portal",
+ "description": "Target is portaled into up to the Crystalline Crag",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4955": {
+ "name": "Portal Space Eddy",
+ "description": "Target is portaled for testing purposes and doesn't really go anywhere",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4956": {
+ "name": "Tanada Sanctum Portal Sending",
+ "description": "This spell sends the player to the Tanada Clan inner sanctum.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4957": {
+ "name": "Tanada Sanctum Return",
+ "description": "This spell sends the player to Tanada Sajo in Hebian-To.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4958": {
+ "name": "Greater Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 55 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "450",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4959": {
+ "name": "Lesser Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4960": {
+ "name": "Lesser Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4961": {
+ "name": "Lesser Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4962": {
+ "name": "Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "425",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4963": {
+ "name": "Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "425",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4964": {
+ "name": "Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 50 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "425",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4965": {
+ "name": "Greater Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 55 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "450",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4966": {
+ "name": "Greater Rockslide",
+ "description": "Increases the target's Missile Weapons skill by 55 points.",
+ "school": "Creature Enchantment",
+ "family": "19",
+ "difficulty": "450",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "4967": {
+ "name": "Cleansing Ring of Fire",
+ "description": "Shoots eight waves of flame outward from the caster. Each wave does 31-52 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4968": {
+ "name": "Ranger's Boon",
+ "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4969": {
+ "name": "Ranger's Boon",
+ "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4970": {
+ "name": "Ranger's Boon",
+ "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "439",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4971": {
+ "name": "Enchanter's Boon",
+ "description": "Increases the target's Creature Enchantment skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "430",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4972": {
+ "name": "Hieromancer's Boon",
+ "description": "Increases the target's War Magic skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "426",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4973": {
+ "name": "Fencer's Boon",
+ "description": "Increases the target's Finesse Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "442",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4974": {
+ "name": "Life Giver's Boon",
+ "description": "Increases the target's Life Magic skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "429",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4975": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "4976": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "4977": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "4978": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "4979": {
+ "name": "Soldier's Boon",
+ "description": "Increases the target's Heavy Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "447",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "4980": {
+ "name": "Kern's Boon",
+ "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "438",
+ "difficulty": "2",
+ "duration": "600",
+ "mana": "10"
+ },
+ "4981": {
+ "name": "Incantation of Stamina to Mana Self",
+ "description": "Drains one-half of the caster's Stamina and gives 200% of that to his/her Mana.",
+ "school": "Life Magic",
+ "family": "89",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "4982": {
+ "name": "Nimble Fingers - Lockpick",
+ "description": "Increases the target's Lockpick skill by 5 points. This stacks with all other Lockpick bonuses.",
+ "school": "Creature Enchantment",
+ "family": "584",
+ "difficulty": "5",
+ "duration": "360",
+ "mana": "70"
+ },
+ "4983": {
+ "name": "Nimble Fingers - Alchemy",
+ "description": "Increases the caster's Alchemy skill by 5 points. This stacks with all other Alchemy bonuses.",
+ "school": "Creature Enchantment",
+ "family": "587",
+ "difficulty": "5",
+ "duration": "360",
+ "mana": "50"
+ },
+ "4984": {
+ "name": "Nimble Fingers - Cooking",
+ "description": "Increases the target's Cooking skill by 5 points. This stacks with all other Cooking bonuses.",
+ "school": "Creature Enchantment",
+ "family": "586",
+ "difficulty": "5",
+ "duration": "360",
+ "mana": "70"
+ },
+ "4985": {
+ "name": "Nimble Fingers - Fletching",
+ "description": "Increases the target's Fletching skill by 5 points. This stacks with all other Fletching bonuses.",
+ "school": "Creature Enchantment",
+ "family": "585",
+ "difficulty": "5",
+ "duration": "360",
+ "mana": "50"
+ },
+ "4986": {
+ "name": "Assassin's Alchemy Kit",
+ "description": "Increases the caster's Alchemy skill by 1%. This increase stacks with all other Alchemy increases.",
+ "school": "Creature Enchantment",
+ "family": "592",
+ "difficulty": "1",
+ "duration": "360",
+ "mana": "50"
+ },
+ "4987": {
+ "name": "Olthoi Spit",
+ "description": "A spell-like projectile of condensed olthoi acid.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "4988": {
+ "name": "Tunnel Out",
+ "description": "The olthoi matron tunnels away.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4989": {
+ "name": "Mysterious Portal",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4990": {
+ "name": "Floor Puzzle Bypass",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4991": {
+ "name": "Jump Puzzle Bypass",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4992": {
+ "name": "Direct Assassin Access",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4993": {
+ "name": "Portal to Derethian Combat Arena",
+ "description": "Transports the target to the PK Challenge.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4994": {
+ "name": "Get over here!",
+ "description": "The assassin teleports you to her.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4995": {
+ "name": "Portal to Derethian Combat Arena",
+ "description": "Transports the target to the PK Challenge.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4996": {
+ "name": "Portal to Derethian Combat Arena",
+ "description": "Transports the target to the PK Challenge.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4997": {
+ "name": "Portal to Derethian Combat Arena",
+ "description": "Transports the target to the PK Challenge.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "4998": {
+ "name": "Arena Stamina",
+ "description": "Increases maximum stamina by 25 points.",
+ "school": "Life Magic",
+ "family": "281",
+ "difficulty": "15",
+ "duration": "180",
+ "mana": "70"
+ },
+ "4999": {
+ "name": "Arena Life",
+ "description": "Increases maximum health by 25 points.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "15",
+ "duration": "180",
+ "mana": "70"
+ },
+ "5000": {
+ "name": "Arena Mana",
+ "description": "Increases maximum mana by 25 points.",
+ "school": "Life Magic",
+ "family": "283",
+ "difficulty": "250",
+ "duration": "180",
+ "mana": "70"
+ },
+ "5001": {
+ "name": "Arena Piercing Protection Other",
+ "description": "Reduces damage the target takes from Piercing by 70%",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "400",
+ "duration": "180",
+ "mana": "80"
+ },
+ "5002": {
+ "name": "Arena Acid Protection Other",
+ "description": "Reduces damage the target takes from acid by 70%",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "400",
+ "duration": "180",
+ "mana": "80"
+ },
+ "5003": {
+ "name": "Arena Blade Protection Other",
+ "description": "Reduces damage the target takes from Slashing by 70%",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "400",
+ "duration": "180",
+ "mana": "80"
+ },
+ "5004": {
+ "name": "Arena Bludgeoning Protection Other",
+ "description": "Reduces damage the target takes from Bludgeoning by 70%",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "400",
+ "duration": "180",
+ "mana": "80"
+ },
+ "5005": {
+ "name": "Arena Cold Protection Other",
+ "description": "Reduces damage the target takes from Cold by 70%",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "400",
+ "duration": "180",
+ "mana": "80"
+ },
+ "5006": {
+ "name": "Arena Fire Protection Other",
+ "description": "Reduces damage the target takes from fire by 70%",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "400",
+ "duration": "180",
+ "mana": "80"
+ },
+ "5007": {
+ "name": "Arena Lightning Protection Other",
+ "description": "Reduces damage the target takes from Lightning by 70%",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "400",
+ "duration": "180",
+ "mana": "80"
+ },
+ "5008": {
+ "name": "Apostate Nexus Portal Sending",
+ "description": "Teleports the user to the Apostate Nexus dungeon.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5009": {
+ "name": "Aerfalle's Greater Ward",
+ "description": "Improves a shield or piece of armor's armor value by 400 points.",
+ "school": "Item Enchantment",
+ "family": "160",
+ "difficulty": "401",
+ "duration": "3600",
+ "mana": "60"
+ },
+ "5010": {
+ "name": "Entering Aerfalle's Sanctum",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5011": {
+ "name": "Geomantic Raze",
+ "description": "Drains 150-300 points of the target's Health.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5012": {
+ "name": "Mar'uun",
+ "description": "A portal to the town of Mar'uun; there is something strange about it.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5013": {
+ "name": "Mar'uun",
+ "description": "A portal to the town of Mar'uun; there is something strange about it.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5014": {
+ "name": "Mar'uun",
+ "description": "A portal to the town of Mar'uun; there is something strange about it.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5015": {
+ "name": "Mar'uun",
+ "description": "A portal to the town of Mar'uun; there is something strange about it.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5016": {
+ "name": "Mar'uun",
+ "description": "A portal to the town of Mar'uun; there is something strange about it.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5017": {
+ "name": "Mar'uun",
+ "description": "A portal to the town of Mar'uun; there is something strange about it.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5018": {
+ "name": "Story of the Unknown Warrior",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5019": {
+ "name": "Portalspace Rift",
+ "description": "A rift in portal space.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5020": {
+ "name": "Portalspace Rift",
+ "description": "A rift in portal space.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5021": {
+ "name": "Portalspace Rift",
+ "description": "A rift in portal space.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5022": {
+ "name": "Portalspace Rift",
+ "description": "A rift in portal space.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5023": {
+ "name": "Spectral Two Handed Combat Mastery",
+ "description": "Increases the caster's Two Handed Combat skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "598",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "5024": {
+ "name": "Spectral Item Expertise",
+ "description": "Increases the caster's Item Tinkering skill by 150 points.",
+ "school": "Creature Enchantment",
+ "family": "453",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5025": {
+ "name": "Prodigal Item Expertise",
+ "description": "Increases the caster's Item Tinkering skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "453",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5026": {
+ "name": "Prodigal Two Handed Combat Mastery",
+ "description": "Increases the caster's Two Handed Combat skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "598",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5027": {
+ "name": "Greater Cascade",
+ "description": "Increases the target's Two Handed Combat skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "30"
+ },
+ "5028": {
+ "name": "Lesser Cascade",
+ "description": "Increases the target's Two Handed Combat skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "8",
+ "duration": "780",
+ "mana": "30"
+ },
+ "5029": {
+ "name": "Cascade",
+ "description": "Increases the target's Two Handed Combat skill by 12 points.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "12",
+ "duration": "780",
+ "mana": "30"
+ },
+ "5030": {
+ "name": "Two Handed Fighter's Boon",
+ "description": "Increases the target's Two Handed Combat skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "597",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5031": {
+ "name": "Two Handed Fighter's Boon",
+ "description": "Increases the target's Two Handed Combat skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "597",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5032": {
+ "name": "Incantation of Two Handed Combat Mastery Self",
+ "description": "Increases the caster's Two Handed Combat skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5033": {
+ "name": "Epic Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "353",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5034": {
+ "name": "Epic Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5035": {
+ "name": "Feeble Sword Aptitude",
+ "description": "Increases the target's Sword skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5036": {
+ "name": "Feeble Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 3 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "3",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5037": {
+ "name": "Item Tinkering Ignorance Other I",
+ "description": "Decreases the target's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5038": {
+ "name": "Item Tinkering Ignorance Other II",
+ "description": "Decreases the target's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5039": {
+ "name": "Item Tinkering Ignorance Other III",
+ "description": "Decreases the target's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5040": {
+ "name": "Item Tinkering Ignorance Other IV",
+ "description": "Decreases the target's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5041": {
+ "name": "Item Tinkering Ignorance Other V",
+ "description": "Decreases the target's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5042": {
+ "name": "Item Tinkering Ignorance Other VI",
+ "description": "Decreases the target's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5043": {
+ "name": "Unfortunate Appraisal",
+ "description": "Decreases the target's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5044": {
+ "name": "Incantation of Item Tinkering Ignorance Other",
+ "description": "Decreases the target's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5045": {
+ "name": "Item Tinkering Ignorance Self I",
+ "description": "Decreases the caster's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "5046": {
+ "name": "Item Tinkering Ignorance Self II",
+ "description": "Decreases the caster's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "5047": {
+ "name": "Item Tinkering Ignorance Self III",
+ "description": "Decreases the caster's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "5048": {
+ "name": "Item Tinkering Ignorance Self IV",
+ "description": "Decreases the caster's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "5049": {
+ "name": "Item Tinkering Ignorance Self V",
+ "description": "Decreases the caster's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "5050": {
+ "name": "Item Tinkering Ignorance Self VI",
+ "description": "Decreases the caster's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "5051": {
+ "name": "Item Tinkering Ignorance Self VII",
+ "description": "Decreases the caster's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5052": {
+ "name": "Incantation of Item Tinkering Ignorance Self",
+ "description": "Decreases the caster's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "58",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5053": {
+ "name": "Item Tinkering Expertise Other I",
+ "description": "Increases the target's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5054": {
+ "name": "Item Tinkering Expertise Other II",
+ "description": "Increases the target's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5055": {
+ "name": "Item Tinkering Expertise Other III",
+ "description": "Increases the target's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5056": {
+ "name": "Item Tinkering Expertise Other IV",
+ "description": "Increases the target's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5057": {
+ "name": "Item Tinkering Expertise Other V",
+ "description": "Increases the target's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5058": {
+ "name": "Item Tinkering Expertise Other VI",
+ "description": "Increases the target's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5059": {
+ "name": "Yoshi's Boon",
+ "description": "Increases the target's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5060": {
+ "name": "Incantation of Item Tinkering Expertise Other",
+ "description": "Increases the target's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5061": {
+ "name": "Item Tinkering Expertise Self I",
+ "description": "Increases the caster's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5062": {
+ "name": "Item Tinkering Expertise Self II",
+ "description": "Increases the caster's Item Tinkering skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5063": {
+ "name": "Item Tinkering Expertise Self III",
+ "description": "Increases the caster's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5064": {
+ "name": "Item Tinkering Expertise Self IV",
+ "description": "Increases the caster's Item Tinkering skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5065": {
+ "name": "Item Tinkering Expertise Self V",
+ "description": "Increases the caster's Item Tinkering skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5066": {
+ "name": "Item Tinkering Expertise Self VI",
+ "description": "Increases the caster's Item Tinkering skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5067": {
+ "name": "Yoshi's Blessing",
+ "description": "Increases the caster's Item Tinkering skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5068": {
+ "name": "Incantation of Item Tinkering Expertise Self",
+ "description": "Increases the caster's Item Tinkering skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "57",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5069": {
+ "name": "Major Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "353",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5070": {
+ "name": "Major Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5071": {
+ "name": "Minor Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "353",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5072": {
+ "name": "Minor Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5073": {
+ "name": "Moderate Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "602",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5074": {
+ "name": "Moderate Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5075": {
+ "name": "Two Handed Combat Ineptitude Other I",
+ "description": "Decreases the target's Two Handed Combat skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5076": {
+ "name": "Two Handed Combat Ineptitude Other II",
+ "description": "Decreases the target's Two Handed Combat skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5077": {
+ "name": "Two Handed Combat Ineptitude Other III",
+ "description": "Decreases the target's Two Handed Combat skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5078": {
+ "name": "Two Handed Combat Ineptitude Other IV",
+ "description": "Decreases the target's Two Handed Combat skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5079": {
+ "name": "Two Handed Combat Ineptitude Other V",
+ "description": "Decreases the target's Two Handed Combat skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5080": {
+ "name": "Two Handed Combat Ineptitude Other VI",
+ "description": "Decreases the target's Two Handed Combat skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5081": {
+ "name": "Greased Palms",
+ "description": "Decreases the target's Two Handed Combat skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5082": {
+ "name": "Incantation of Two Handed Combat Ineptitude Other",
+ "description": "Decreases the target's Two Handed Combat skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5083": {
+ "name": "Two Handed Combat Ineptitude Self I",
+ "description": "Decreases the caster's Two Handed Combat skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "15"
+ },
+ "5084": {
+ "name": "Two Handed Combat Ineptitude Self II",
+ "description": "Decreases the caster's Two Handed Combat skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "30"
+ },
+ "5085": {
+ "name": "Two Handed Combat Ineptitude Self III",
+ "description": "Decreases the caster's Two Handed Combat skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "40"
+ },
+ "5086": {
+ "name": "Two Handed Combat Ineptitude Self IV",
+ "description": "Decreases the caster's Two Handed Combat skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "50"
+ },
+ "5087": {
+ "name": "Two Handed Combat Ineptitude Self V",
+ "description": "Decreases the caster's Two Handed Combat skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "60"
+ },
+ "5088": {
+ "name": "Two Handed Combat Ineptitude Self VI",
+ "description": "Decreases the caster's Two Handed Combat skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "70"
+ },
+ "5089": {
+ "name": "Two Handed Combat Ineptitude Self VII",
+ "description": "Decreases the caster's Two Handed Combat skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5090": {
+ "name": "Incantation of Two Handed Combat Ineptitude Self",
+ "description": "Decreases the caster's Two Handed Combat skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "594",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5091": {
+ "name": "Two Handed Combat Mastery Other I",
+ "description": "Increases the target's Two Handed Combat skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5092": {
+ "name": "Two Handed Combat Mastery Other II",
+ "description": "Increases the target's Two Handed Combat skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5093": {
+ "name": "Two Handed Combat Mastery Other III",
+ "description": "Increases the target's Two Handed Combat skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5094": {
+ "name": "Two Handed Combat Mastery Other IV",
+ "description": "Increases the target's Two Handed Combat skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5095": {
+ "name": "Two Handed Combat Mastery Other V",
+ "description": "Increases the target's Two Handed Combat skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5096": {
+ "name": "Two Handed Combat Mastery Other VI",
+ "description": "Increases the target's Two Handed Combat skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5097": {
+ "name": "Boon of T'ing",
+ "description": "Increases the target's Two Handed Combat skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5098": {
+ "name": "Incantation of Two Handed Combat Mastery Other",
+ "description": "Increases the target's Two Handed Combat skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5099": {
+ "name": "Two Handed Combat Mastery Self I",
+ "description": "Increases the caster's Two Handed Combat skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5100": {
+ "name": "Two Handed Combat Mastery Self II",
+ "description": "Increases the caster's Two Handed Combat skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5101": {
+ "name": "Two Handed Combat Mastery Self III",
+ "description": "Increases the caster's Two Handed Combat skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5102": {
+ "name": "Two Handed Combat Mastery Self IV",
+ "description": "Increases the caster's Two Handed Combat skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5103": {
+ "name": "Two Handed Combat Mastery Self V",
+ "description": "Increases the caster's Two Handed Combat skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5104": {
+ "name": "Two Handed Combat Mastery Self VI",
+ "description": "Increases the caster's Two Handed Combat skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5105": {
+ "name": "Blessing of T'ing",
+ "description": "Increases the caster's Two Handed Combat skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "593",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5106": {
+ "name": "Master Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5107": {
+ "name": "Novice Soldier's Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "599",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5108": {
+ "name": "Apprentice Soldier's Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "599",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5109": {
+ "name": "Journeyman Soldier's Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "599",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5110": {
+ "name": "Master Soldier's Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "599",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5111": {
+ "name": "Novice Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5112": {
+ "name": "Apprentice Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5113": {
+ "name": "Journeyman Inventor's Item Tinkering Aptitude",
+ "description": "Increases the target's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "563",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5114": {
+ "name": "Expose Weakness VIII",
+ "description": "Decreases the target's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5115": {
+ "name": "Expose Weakness I",
+ "description": "Decreases the target's natural armor by 20 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "25",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5116": {
+ "name": "Expose Weakness II",
+ "description": "Decreases the target's natural armor by 50 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5117": {
+ "name": "Expose Weakness III",
+ "description": "Decreases the target's natural armor by 75 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5118": {
+ "name": "Expose Weakness IV",
+ "description": "Decreases the target's natural armor by 100 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5119": {
+ "name": "Expose Weakness V",
+ "description": "Decreases the target's natural armor by 150 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5120": {
+ "name": "Expose Weakness VI",
+ "description": "Decreases the target's natural armor by 200 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5121": {
+ "name": "Expose Weakness VII",
+ "description": "Decreases the target's natural armor by 225 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5122": {
+ "name": "Call of Leadership V",
+ "description": "Increases maximum health by 10 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "609",
+ "difficulty": "400",
+ "duration": "1800",
+ "mana": "80"
+ },
+ "5123": {
+ "name": "Answer of Loyalty (Mana) I",
+ "description": "Enhances the Mana of all Fellowship members by 2 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "607",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5124": {
+ "name": "Answer of Loyalty (Mana) II",
+ "description": "Enhances the Mana of all Fellowship members by 4 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "607",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5125": {
+ "name": "Answer of Loyalty (Mana) III",
+ "description": "Enhances the Mana of all Fellowship members by 6 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "607",
+ "difficulty": "275",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5126": {
+ "name": "Answer of Loyalty (Mana) IV",
+ "description": "Enhances the Mana of all Fellowship members by 8 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "607",
+ "difficulty": "325",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "5127": {
+ "name": "Answer of Loyalty (Mana) V",
+ "description": "Enhances the Mana of all Fellowship members by 10 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "607",
+ "difficulty": "400",
+ "duration": "1800",
+ "mana": "80"
+ },
+ "5128": {
+ "name": "Answer of Loyalty (Stamina) I",
+ "description": "Enhances the Endurance of all Fellowship members by 2 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "608",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5129": {
+ "name": "Answer of Loyalty (Stamina) II",
+ "description": "Enhances the Endurance of all Fellowship members by 4 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "608",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5130": {
+ "name": "Answer of Loyalty (Stamina) III",
+ "description": "Enhances the Endurance of all Fellowship members by 6 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "608",
+ "difficulty": "275",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5131": {
+ "name": "Answer of Loyalty (Stamina) IV",
+ "description": "Enhances the Endurance of all Fellowship members by 8 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "608",
+ "difficulty": "325",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "5132": {
+ "name": "Answer of Loyalty (Stamina) V",
+ "description": "Enhances the Endurance of all Fellowship members by 10 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "608",
+ "difficulty": "400",
+ "duration": "1800",
+ "mana": "80"
+ },
+ "5133": {
+ "name": "Call of Leadership I",
+ "description": "Increases maximum health by 2 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "609",
+ "difficulty": "175",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5134": {
+ "name": "Call of Leadership II",
+ "description": "Increases maximum health by 4 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "609",
+ "difficulty": "225",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5135": {
+ "name": "Call of Leadership III",
+ "description": "Increases maximum health by 6 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "609",
+ "difficulty": "275",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5136": {
+ "name": "Call of Leadership IV",
+ "description": "Increases maximum health by 8 points for 30 minutes.",
+ "school": "Life Magic",
+ "family": "609",
+ "difficulty": "325",
+ "duration": "1800",
+ "mana": "70"
+ },
+ "5137": {
+ "name": "Augmented Understanding III",
+ "description": "Increases experience by 6%.",
+ "school": "Life Magic",
+ "family": "615",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5138": {
+ "name": "Augmented Damage I",
+ "description": "Increases damage rating by 1.",
+ "school": "Life Magic",
+ "family": "610",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5139": {
+ "name": "Augmented Damage II",
+ "description": "Increases damage rating by 2.",
+ "school": "Life Magic",
+ "family": "610",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5140": {
+ "name": "Augmented Damage III",
+ "description": "Increases damage rating by 3.",
+ "school": "Life Magic",
+ "family": "610",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5141": {
+ "name": "Augmented Damage Reduction I",
+ "description": "Increases damage reduction rating by 1.",
+ "school": "Life Magic",
+ "family": "611",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5142": {
+ "name": "Augmented Damage Reduction II",
+ "description": "Increases damage reduction rating by 2.",
+ "school": "Life Magic",
+ "family": "611",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5143": {
+ "name": "Augmented Damage Reduction III",
+ "description": "Increases damage reduction rating by 3.",
+ "school": "Life Magic",
+ "family": "611",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5144": {
+ "name": "Augmented Health I",
+ "description": "Increases maximum health by 5 points.",
+ "school": "Life Magic",
+ "family": "612",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5145": {
+ "name": "Augmented Health II",
+ "description": "Increases maximum health by 10 points.",
+ "school": "Life Magic",
+ "family": "612",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5146": {
+ "name": "Augmented Health III",
+ "description": "Increases maximum health by 15 points.",
+ "school": "Life Magic",
+ "family": "612",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5147": {
+ "name": "Augmented Mana I",
+ "description": "Increases maximum mana by 10 points.",
+ "school": "Life Magic",
+ "family": "614",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5148": {
+ "name": "Augmented Mana II",
+ "description": "Increases maximum mana by 20 points.",
+ "school": "Life Magic",
+ "family": "614",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5149": {
+ "name": "Augmented Mana III",
+ "description": "Increases maximum mana by 30 points.",
+ "school": "Life Magic",
+ "family": "614",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5150": {
+ "name": "Augmented Stamina I",
+ "description": "Increases maximum stamina by 10 points.",
+ "school": "Life Magic",
+ "family": "613",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5151": {
+ "name": "Augmented Stamina II",
+ "description": "Increases maximum stamina by 20 points.",
+ "school": "Life Magic",
+ "family": "613",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5152": {
+ "name": "Augmented Stamina III",
+ "description": "Increases maximum stamina by 30 points.",
+ "school": "Life Magic",
+ "family": "613",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5153": {
+ "name": "Augmented Understanding I",
+ "description": "Increases experience by 2%.",
+ "school": "Life Magic",
+ "family": "615",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5154": {
+ "name": "Augmented Understanding II",
+ "description": "Increases experience by 4%.",
+ "school": "Life Magic",
+ "family": "615",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5155": {
+ "name": "Virindi Whisper IV",
+ "description": "Increases the target's Arcane Lore skill by 32 points for 60 seconds.",
+ "school": "Creature Enchantment",
+ "family": "616",
+ "difficulty": "150",
+ "duration": "60",
+ "mana": "40"
+ },
+ "5156": {
+ "name": "Virindi Whisper V",
+ "description": "Increases the target's Arcane Lore skill by 40 points for 60 seconds.",
+ "school": "Creature Enchantment",
+ "family": "616",
+ "difficulty": "225",
+ "duration": "60",
+ "mana": "50"
+ },
+ "5157": {
+ "name": "Virindi Whisper I",
+ "description": "Increases the target's Arcane Lore skill by 8 points for 60 seconds.",
+ "school": "Creature Enchantment",
+ "family": "616",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5158": {
+ "name": "Virindi Whisper II",
+ "description": "Increases the target's Arcane Lore skill by 16 points for 60 seconds.",
+ "school": "Creature Enchantment",
+ "family": "616",
+ "difficulty": "50",
+ "duration": "60",
+ "mana": "20"
+ },
+ "5159": {
+ "name": "Virindi Whisper III",
+ "description": "Increases the target's Arcane Lore skill by 24 points for 60 seconds.",
+ "school": "Creature Enchantment",
+ "family": "616",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "30"
+ },
+ "5160": {
+ "name": "Mhoire Castle",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5161": {
+ "name": "Mhoire Castle Great Hall",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5162": {
+ "name": "Mhoire Castle Northeast Tower",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5163": {
+ "name": "Mhoire Castle Northwest Tower",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5164": {
+ "name": "Mhoire Castle Southeast Tower",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5165": {
+ "name": "Mhoire Castle Southwest Tower",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5166": {
+ "name": "Flaming Skull",
+ "description": "A burning skull",
+ "school": "War Magic",
+ "family": "121",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "5167": {
+ "name": "Mhoire Castle Exit Portal",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5168": {
+ "name": "a spectacular view of the Mhoire lands",
+ "description": "You've fallen into the spectral waters!",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5169": {
+ "name": "a descent into the Mhoire catacombs",
+ "description": "You've fallen into the spectral waters!",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5170": {
+ "name": "a descent into the Mhoire catacombs",
+ "description": "You've fallen into the spectral waters!",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5171": {
+ "name": "Spectral Fountain Sip",
+ "description": "You've sipped the spectral waters. You're feeling pretty good.",
+ "school": "Life Magic",
+ "family": "617",
+ "difficulty": "250",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5172": {
+ "name": "Spectral Fountain Sip",
+ "description": "You've sipped the spectral waters. Your blood is poisoned.",
+ "school": "Life Magic",
+ "family": "618",
+ "difficulty": "250",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5173": {
+ "name": "Spectral Fountain Sip",
+ "description": "You've sipped the spectral waters. Your wounds are poisoned and don't heal as well.",
+ "school": "Life Magic",
+ "family": "619",
+ "difficulty": "250",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5174": {
+ "name": "Mhoire's Blessing of Power",
+ "description": "Your damage has been augmented by the magic of the Mhoire blood.",
+ "school": "Life Magic",
+ "family": "610",
+ "difficulty": "250",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5175": {
+ "name": "Facility Hub Recall",
+ "description": "Transports the caster to the Facilty Hub.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "5176": {
+ "name": "Celestial Hand Basement",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5177": {
+ "name": "Radiant Blood Basement",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5178": {
+ "name": "Eldrytch Web Basement",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5179": {
+ "name": "Celestial Hand Basement",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5180": {
+ "name": "Radiant Blood Basement",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5181": {
+ "name": "Eldrytch Web Basement",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5182": {
+ "name": "Aura of Incantation of Spirit Drinker",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "350",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5183": {
+ "name": "Aura of Incantation of Blood Drinker Self",
+ "description": "Increases a weapon's damage value by 24 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "350",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5184": {
+ "name": "Rare Damage Boost VII",
+ "description": "Your damage rating is increased by 7.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5185": {
+ "name": "Rare Damage Boost VIII",
+ "description": "Your damage rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5186": {
+ "name": "Rare Damage Boost IX",
+ "description": "Your damage rating is increased by 9.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5187": {
+ "name": "Rare Damage Boost X",
+ "description": "Your damage rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5188": {
+ "name": "Rare Damage Reduction I",
+ "description": "Your damage reduction rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5189": {
+ "name": "Rare Damage Reduction II",
+ "description": "Your damage reduction rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5190": {
+ "name": "Rare Damage Reduction III",
+ "description": "Your damage reduction rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5191": {
+ "name": "Rare Damage Reduction IV",
+ "description": "Your damage reduction rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5192": {
+ "name": "Rare Damage Reduction V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5193": {
+ "name": "Rare Damage Reduction V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5194": {
+ "name": "Rare Damage Reduction V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5195": {
+ "name": "Rare Damage Reduction V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5196": {
+ "name": "Rare Damage Reduction V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5197": {
+ "name": "Rare Damage Reduction V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "634",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5198": {
+ "name": "Rare Damage Boost I",
+ "description": "Your damage rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5199": {
+ "name": "Rare Damage Boost II",
+ "description": "Your damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5200": {
+ "name": "Rare Damage Boost III",
+ "description": "Your damage rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5201": {
+ "name": "Rare Damage Boost IV",
+ "description": "Your damage rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5202": {
+ "name": "Rare Damage Boost V",
+ "description": "Your damage rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5203": {
+ "name": "Rare Damage Boost VI",
+ "description": "Your damage rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "633",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5204": {
+ "name": "Surge of Destruction",
+ "description": "The damage rating of the caster is increased by 20.",
+ "school": "Life Magic",
+ "family": "628",
+ "difficulty": "1",
+ "duration": "8",
+ "mana": "70"
+ },
+ "5205": {
+ "name": "Surge of Affliction",
+ "description": "The target loses 150 points of health over 19 seconds.",
+ "school": "Life Magic",
+ "family": "631",
+ "difficulty": "250",
+ "duration": "19",
+ "mana": "80"
+ },
+ "5206": {
+ "name": "Surge of Protection",
+ "description": "The damage reduction rating of the caster is increased by 20.",
+ "school": "Life Magic",
+ "family": "629",
+ "difficulty": "1",
+ "duration": "12",
+ "mana": "70"
+ },
+ "5207": {
+ "name": "Surge of Festering",
+ "description": "The heal rating of the target is decreased by 20.",
+ "school": "Life Magic",
+ "family": "619",
+ "difficulty": "250",
+ "duration": "12",
+ "mana": "80"
+ },
+ "5208": {
+ "name": "Surge of Regeneration",
+ "description": "The caster gains 150 points of health over 19 seconds.",
+ "school": "Life Magic",
+ "family": "630",
+ "difficulty": "250",
+ "duration": "19",
+ "mana": "80"
+ },
+ "5209": {
+ "name": "Sigil of Fury I (Critical Damage)",
+ "description": "Your critical damage rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5210": {
+ "name": "Sigil of Fury II (Critical Damage)",
+ "description": "Your critical damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5211": {
+ "name": "Sigil of Fury III (Critical Damage)",
+ "description": "Your critical damage rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5212": {
+ "name": "Sigil of Fury IV (Critical Damage)",
+ "description": "Your critical damage rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5213": {
+ "name": "Sigil of Fury V (Critical Damage)",
+ "description": "Your critical damage rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5214": {
+ "name": "Sigil of Fury VI (Critical Damage)",
+ "description": "Your critical damage rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5215": {
+ "name": "Sigil of Fury VII (Critical Damage)",
+ "description": "Your critical damage rating is increased by 7.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5216": {
+ "name": "Sigil of Fury VIII (Critical Damage)",
+ "description": "Your critical damage rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5217": {
+ "name": "Sigil of Fury IX (Critical Damage)",
+ "description": "Your critical damage rating is increased by 9.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5218": {
+ "name": "Sigil of Fury X (Critical Damage)",
+ "description": "Your critical damage rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5219": {
+ "name": "Sigil of Fury XI (Critical Damage)",
+ "description": "Your critical damage rating is increased by 11.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5220": {
+ "name": "Sigil of Fury XII (Critical Damage)",
+ "description": "Your critical damage rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5221": {
+ "name": "Sigil of Fury XIII (Critical Damage)",
+ "description": "Your critical damage rating is increased by 13.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5222": {
+ "name": "Sigil of Fury XIV (Critical Damage)",
+ "description": "Your critical damage rating is increased by 14.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5223": {
+ "name": "Sigil of Fury XV (Critical Damage)",
+ "description": "Your critical damage rating is increased by 15.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5224": {
+ "name": "Sigil of Destruction I",
+ "description": "Your damage rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5225": {
+ "name": "Sigil of Destruction II",
+ "description": "Your damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5226": {
+ "name": "Sigil of Destruction III",
+ "description": "Your damage rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5227": {
+ "name": "Sigil of Destruction IV",
+ "description": "Your damage rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5228": {
+ "name": "Sigil of Destruction V",
+ "description": "Your damage rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5229": {
+ "name": "Sigil of Destruction VI",
+ "description": "Your damage rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5230": {
+ "name": "Sigil of Destruction VII",
+ "description": "Your damage rating is increased by 7.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5231": {
+ "name": "Sigil of Destruction VIII",
+ "description": "Your damage rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5232": {
+ "name": "Sigil of Destruction IX",
+ "description": "Your damage rating is increased by 9.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5233": {
+ "name": "Sigil of Destruction X",
+ "description": "Your damage rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5234": {
+ "name": "Sigil of Destruction XI",
+ "description": "Your damage rating is increased by 11.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5235": {
+ "name": "Sigil of Destruction XII",
+ "description": "Your damage rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5236": {
+ "name": "Sigil of Destruction XIII",
+ "description": "Your damage rating is increased by 13.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5237": {
+ "name": "Sigil of Destruction XIV",
+ "description": "Your damage rating is increased by 14.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5238": {
+ "name": "Sigil of Destruction XV",
+ "description": "Your damage rating is increased by 15.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5239": {
+ "name": "Sigil of Defense I",
+ "description": "Your damage reduction rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5240": {
+ "name": "Sigil of Defense II",
+ "description": "Your damage reduction rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5241": {
+ "name": "Sigil of Defense III",
+ "description": "Your damage reduction rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5242": {
+ "name": "Sigil of Defense IV",
+ "description": "Your damage reduction rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5243": {
+ "name": "Sigil of Defense V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5244": {
+ "name": "Sigil of Defense VI",
+ "description": "Your damage reduction rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5245": {
+ "name": "Sigil of Defense VII",
+ "description": "Your damage reduction rating is increased by 7.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5246": {
+ "name": "Sigil of Defense VIII",
+ "description": "Your damage reduction rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5247": {
+ "name": "Sigil of Defense IX",
+ "description": "Your damage reduction rating is increased by 9.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5248": {
+ "name": "Sigil of Defense X",
+ "description": "Your damage reduction rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5249": {
+ "name": "Sigil of Defense XI",
+ "description": "Your damage reduction rating is increased by 11.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5250": {
+ "name": "Sigil of Defense XII",
+ "description": "Your damage reduction rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5251": {
+ "name": "Sigil of Defense XIII",
+ "description": "Your damage reduction rating is increased by 13.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5252": {
+ "name": "Sigil of Defense XIV",
+ "description": "Your damage reduction rating is increased by 14.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5253": {
+ "name": "Sigil of Defense XV",
+ "description": "Your damage reduction rating is increased by 15.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5254": {
+ "name": "Sigil of Growth I",
+ "description": "Your healing rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "1",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5255": {
+ "name": "Sigil of Growth II",
+ "description": "Your healing rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "2",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5256": {
+ "name": "Sigil of Growth III",
+ "description": "Your healing rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "3",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5257": {
+ "name": "Sigil of Growth IV",
+ "description": "Your healing rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "4",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5258": {
+ "name": "Sigil of Growth V",
+ "description": "Your healing rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "5",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5259": {
+ "name": "Sigil of Growth VI",
+ "description": "Your healing rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "6",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5260": {
+ "name": "Sigil of Growth VII",
+ "description": "Your healing rating is increased by 7.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "7",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5261": {
+ "name": "Sigil of Growth VIII",
+ "description": "Your healing rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "8",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5262": {
+ "name": "Sigil of Growth IX",
+ "description": "Your healing rating is increased by 9.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "9",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5263": {
+ "name": "Sigil of Growth X",
+ "description": "Your healing rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "10",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5264": {
+ "name": "Sigil of Growth XI",
+ "description": "Your healing rating is increased by 11.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "11",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5265": {
+ "name": "Sigil of Growth XII",
+ "description": "Your healing rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "12",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5266": {
+ "name": "Sigil of Growth XIII",
+ "description": "Your healing rating is increased by 13.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "13",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5267": {
+ "name": "Sigil of Growth XIV",
+ "description": "Your healing rating is increased by 14.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "14",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5268": {
+ "name": "Sigil of Growth XV",
+ "description": "Your healing rating is increased by 15.",
+ "school": "Life Magic",
+ "family": "627",
+ "difficulty": "15",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5269": {
+ "name": "Sigil of Vigor I (Health)",
+ "description": "Your health is increased by 1.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5270": {
+ "name": "Sigil of Vigor II (Health)",
+ "description": "Your health is increased by 2.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5271": {
+ "name": "Sigil of Vigor III (Health)",
+ "description": "Your health is increased by 3.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5272": {
+ "name": "Sigil of Vigor IV (Health)",
+ "description": "Your health is increased by 4.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5273": {
+ "name": "Sigil of Vigor V (Health)",
+ "description": "Your health is increased by 5.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5274": {
+ "name": "Sigil of Vigor VI (Health)",
+ "description": "Your health is increased by 6.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5275": {
+ "name": "Sigil of Vigor VII (Health)",
+ "description": "Your health is increased by 7.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5276": {
+ "name": "Sigil of Vigor VIII (Health)",
+ "description": "Your health is increased by 8.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5277": {
+ "name": "Sigil of Vigor IX (Health)",
+ "description": "Your health is increased by 9.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5278": {
+ "name": "Sigil of Vigor X (Health)",
+ "description": "Your health is increased by 10.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5279": {
+ "name": "Sigil of Vigor XI (Health)",
+ "description": "Your health is increased by 11.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5280": {
+ "name": "Sigil of Vigor XII (Health)",
+ "description": "Your health is increased by 12.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5281": {
+ "name": "Sigil of Vigor XIII (Health)",
+ "description": "Your health is increased by 13.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5282": {
+ "name": "Sigil of Vigor XIV (Health)",
+ "description": "Your health is increased by 14.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5283": {
+ "name": "Sigil of Vigor XV (Health)",
+ "description": "Your health is increased by 15.",
+ "school": "Life Magic",
+ "family": "623",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5284": {
+ "name": "Sigil of Vigor I (Mana)",
+ "description": "Your mana is increased by 5.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5285": {
+ "name": "Sigil of Vigor II (Mana)",
+ "description": "Your mana is increased by 10.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5286": {
+ "name": "Sigil of Vigor III (Mana)",
+ "description": "Your mana is increased by 15.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5287": {
+ "name": "Sigil of Vigor IV (Mana)",
+ "description": "Your mana is increased by 20.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5288": {
+ "name": "Sigil of Vigor V (Mana)",
+ "description": "Your mana is increased by 25.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5289": {
+ "name": "Sigil of Vigor VI (Mana)",
+ "description": "Your mana is increased by 30.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5290": {
+ "name": "Sigil of Vigor VII (Mana)",
+ "description": "Your mana is increased by 35.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5291": {
+ "name": "Sigil of Vigor VIII (Mana)",
+ "description": "Your mana is increased by 40.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5292": {
+ "name": "Sigil of Vigor IX (Mana)",
+ "description": "Your mana is increased by 45.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5293": {
+ "name": "Sigil of Vigor X (Mana)",
+ "description": "Your mana is increased by 50.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5294": {
+ "name": "Sigil of Vigor XI (Mana)",
+ "description": "Your mana is increased by 55.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5295": {
+ "name": "Sigil of Vigor XII (Mana)",
+ "description": "Your mana is increased by 60.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5296": {
+ "name": "Sigil of Vigor XIII (Mana)",
+ "description": "Your mana is increased by 65.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5297": {
+ "name": "Sigil of Vigor XIV (Mana)",
+ "description": "Your mana is increased by 70.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5298": {
+ "name": "Sigil of Vigor XV (Mana)",
+ "description": "Your mana is increased by 75.",
+ "school": "Life Magic",
+ "family": "625",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5299": {
+ "name": "Sigil of Vigor I (Stamina)",
+ "description": "Your stamina is increased by 5.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5300": {
+ "name": "Sigil of Vigor II (Stamina)",
+ "description": "Your stamina is increased by 10.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5301": {
+ "name": "Sigil of Vigor III (Stamina)",
+ "description": "Your stamina is increased by 15.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5302": {
+ "name": "Sigil of Vigor IV (Stamina)",
+ "description": "Your stamina is increased by 20.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5303": {
+ "name": "Sigil of Vigor V (Stamina)",
+ "description": "Your stamina is increased by 25.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5304": {
+ "name": "Sigil of Vigor VI (Stamina)",
+ "description": "Your stamina is increased by 30.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5305": {
+ "name": "Sigil of Vigor VII (Stamina)",
+ "description": "Your stamina is increased by 35.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5306": {
+ "name": "Sigil of Vigor VIII (Stamina)",
+ "description": "Your stamina is increased by 40.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5307": {
+ "name": "Sigil of Vigor IX (Stamina)",
+ "description": "Your stamina is increased by 45.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5308": {
+ "name": "Sigil of Vigor X (Stamina)",
+ "description": "Your stamina is increased by 50.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5309": {
+ "name": "Sigil of Vigor XI (Stamina)",
+ "description": "Your stamina is increased by 55.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5310": {
+ "name": "Sigil of Vigor XII (Stamina)",
+ "description": "Your stamina is increased by 60.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5311": {
+ "name": "Sigil of Vigor XIII (Stamina)",
+ "description": "Your stamina is increased by 65.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5312": {
+ "name": "Sigil of Vigor XIV (Stamina)",
+ "description": "Your stamina is increased by 70.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5313": {
+ "name": "Sigil of Vigor XV (Stamina)",
+ "description": "Your stamina is increased by 75.",
+ "school": "Life Magic",
+ "family": "624",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5314": {
+ "name": "Blessing of Unity",
+ "description": "You heal 10 points of health every 5 seconds for 50 seconds.",
+ "school": "Life Magic",
+ "family": "617",
+ "difficulty": "250",
+ "duration": "50",
+ "mana": "80"
+ },
+ "5315": {
+ "name": "Sigil of Fury I (Endurance)",
+ "description": "Your endurance is increased by 1.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5316": {
+ "name": "Sigil of Fury II (Endurance)",
+ "description": "Your endurance is increased by 2.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5317": {
+ "name": "Sigil of Fury III (Endurance)",
+ "description": "Your endurance is increased by 3.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5318": {
+ "name": "Sigil of Fury IV (Endurance)",
+ "description": "Your endurance is increased by 4.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5319": {
+ "name": "Sigil of Fury V (Endurance)",
+ "description": "Your endurance is increased by 5.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5320": {
+ "name": "Sigil of Fury VI (Endurance)",
+ "description": "Your endurance is increased by 6.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5321": {
+ "name": "Sigil of Fury VII (Endurance)",
+ "description": "Your endurance is increased by 7.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5322": {
+ "name": "Sigil of Fury VIII (Endurance)",
+ "description": "Your endurance is increased by 8.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5323": {
+ "name": "Sigil of Fury IX (Endurance)",
+ "description": "Your endurance is increased by 9.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5324": {
+ "name": "Sigil of Fury X (Endurance)",
+ "description": "Your endurance is increased by 10.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5325": {
+ "name": "Sigil of Fury XI (Endurance)",
+ "description": "Your endurance is increased by 11.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5326": {
+ "name": "Sigil of Fury XII (Endurance)",
+ "description": "Your endurance is increased by 12.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5327": {
+ "name": "Sigil of Fury XIII (Endurance)",
+ "description": "Your endurance is increased by 13.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5328": {
+ "name": "Sigil of Fury XIV (Endurance)",
+ "description": "Your endurance is increased by 14.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5329": {
+ "name": "Sigil of Fury XV (Endurance)",
+ "description": "Your endurance is increased by 15.",
+ "school": "Life Magic",
+ "family": "635",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5330": {
+ "name": "Gear Knight Invasion Area Camp Recall",
+ "description": "Sends the caster to the Gear Knight Invasion Area Camp.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5331": {
+ "name": "Clouded Soul",
+ "description": "Shoots eight waves of nether outward from the caster. Each wave does 200-250 points of nether damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "700",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5332": {
+ "name": "Bael'zharon's Nether Streak",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 125-200 points of nether damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "639",
+ "difficulty": "700",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5333": {
+ "name": "Bael'zharon's Nether Arc",
+ "description": "Shoots a bolt of nether at the target. The bolt does 125-200 points of nether damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "640",
+ "difficulty": "700",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5334": {
+ "name": "Bael'zharons Curse of Destruction",
+ "description": "The target loses 600 points of health over 30 seconds.",
+ "school": "War Magic",
+ "family": "636",
+ "difficulty": "700",
+ "duration": "30",
+ "mana": "80"
+ },
+ "5335": {
+ "name": "Bael'zharons Curse of Minor Destruction",
+ "description": "The target loses 720 points of health over 120 seconds.",
+ "school": "War Magic",
+ "family": "637",
+ "difficulty": "700",
+ "duration": "240",
+ "mana": "80"
+ },
+ "5336": {
+ "name": "Bael'zharons Curse of Festering",
+ "description": "The heal rating of the target is decreased by 90.",
+ "school": "Life Magic",
+ "family": "619",
+ "difficulty": "700",
+ "duration": "60",
+ "mana": "80"
+ },
+ "5337": {
+ "name": "Destructive Curse VII",
+ "description": "The target loses 294 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "325",
+ "duration": "30",
+ "mana": "70"
+ },
+ "5338": {
+ "name": "Incantation of Destructive Curse",
+ "description": "The target loses 357 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "400",
+ "duration": "30",
+ "mana": "80"
+ },
+ "5339": {
+ "name": "Destructive Curse I",
+ "description": "The target loses 56 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "25",
+ "duration": "30",
+ "mana": "10"
+ },
+ "5340": {
+ "name": "Destructive Curse II",
+ "description": "The target loses 91 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "75",
+ "duration": "30",
+ "mana": "20"
+ },
+ "5341": {
+ "name": "Destructive Curse III",
+ "description": "The target loses 126 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "125",
+ "duration": "30",
+ "mana": "30"
+ },
+ "5342": {
+ "name": "Destructive Curse IV",
+ "description": "The target loses 154 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "175",
+ "duration": "30",
+ "mana": "40"
+ },
+ "5343": {
+ "name": "Destructive Curse V",
+ "description": "The target loses 189 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "225",
+ "duration": "30",
+ "mana": "50"
+ },
+ "5344": {
+ "name": "Destructive Curse VI",
+ "description": "The target loses 231 points of health over 30 seconds.",
+ "school": "Void Magic",
+ "family": "636",
+ "difficulty": "275",
+ "duration": "30",
+ "mana": "60"
+ },
+ "5345": {
+ "name": "Nether Streak V",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 35-88 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5346": {
+ "name": "Nether Streak VI",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 42-105 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "5347": {
+ "name": "Nether Streak VII",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 84-130 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5348": {
+ "name": "Incantation of Nether Streak",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 126-162 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5349": {
+ "name": "Nether Bolt I",
+ "description": "Shoots a bolt of nether at the target. The bolt does 21-52 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "5350": {
+ "name": "Nether Bolt II",
+ "description": "Shoots a bolt of nether at the target. The bolt does 42-84 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "5351": {
+ "name": "Nether Bolt III",
+ "description": "Shoots a bolt of nether at the target. The bolt does 63-115 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "5352": {
+ "name": "Nether Bolt IV",
+ "description": "Shoots a bolt of nether at the target. The bolt does 73-146 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5353": {
+ "name": "Nether Bolt V",
+ "description": "Shoots a bolt of nether at the target. The bolt does 84-178 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "5354": {
+ "name": "Nether Bolt VI",
+ "description": "Shoots a bolt of nether at the target. The bolt does 105-210 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5355": {
+ "name": "Nether Bolt VII",
+ "description": "Shoots a bolt of nether at the target. The bolt does 168-262 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5356": {
+ "name": "Incantation of Nether Bolt",
+ "description": "Shoots a bolt of nether at the target. The bolt does 252-325 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5357": {
+ "name": "Nether Streak I",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 10-27 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "5358": {
+ "name": "Nether Streak II",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 21-42 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5359": {
+ "name": "Nether Streak III",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 25-56 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5360": {
+ "name": "Nether Streak IV",
+ "description": "Sends a bolt of nether streaking towards the target. The bolt does 31-73 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "639",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5361": {
+ "name": "Clouded Soul",
+ "description": "Shoots eight waves of nether outward from the caster. Each wave does 94-147 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "641",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5362": {
+ "name": "Nether Arc II",
+ "description": "Shoots a bolt of nether at the target. The bolt does 42-84 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "5363": {
+ "name": "Nether Arc III",
+ "description": "Shoots a bolt of nether at the target. The bolt does 63-115 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "5364": {
+ "name": "Nether Arc IV",
+ "description": "Shoots a bolt of nether at the target. The bolt does 73-147 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5365": {
+ "name": "Nether Arc V",
+ "description": "Shoots a bolt of nether at the target. The bolt does 84-178 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "5366": {
+ "name": "Nether Arc VI",
+ "description": "Shoots a bolt of nether at the target. The bolt does 105-210 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5367": {
+ "name": "Nether Arc VII",
+ "description": "Shoots a bolt of nether at the target. The bolt does 168-262 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5368": {
+ "name": "Incantation of Nether Arc",
+ "description": "Shoots a bolt of nether at the target. The bolt does 252-325 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5369": {
+ "name": "Nether Arc I",
+ "description": "Shoots a bolt of nether at the target. The bolt does 21-52 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "640",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "5370": {
+ "name": "Incantation of Nether Streak",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 42-57 points of electrical damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "246",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5371": {
+ "name": "Festering Curse I",
+ "description": "The heal rating of the target is decreased by 5.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "25",
+ "duration": "30",
+ "mana": "10"
+ },
+ "5372": {
+ "name": "Festering Curse II",
+ "description": "The heal rating of the target is decreased by 10.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "75",
+ "duration": "30",
+ "mana": "20"
+ },
+ "5373": {
+ "name": "Festering Curse III",
+ "description": "The heal rating of the target is decreased by 15.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "125",
+ "duration": "30",
+ "mana": "30"
+ },
+ "5374": {
+ "name": "Festering Curse IV",
+ "description": "The heal rating of the target is decreased by 20.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "175",
+ "duration": "30",
+ "mana": "40"
+ },
+ "5375": {
+ "name": "Festering Curse V",
+ "description": "The heal rating of the target is decreased by 25.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "225",
+ "duration": "30",
+ "mana": "50"
+ },
+ "5376": {
+ "name": "Festering Curse VI",
+ "description": "The heal rating of the target is decreased by 30.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "275",
+ "duration": "30",
+ "mana": "60"
+ },
+ "5377": {
+ "name": "Festering Curse VII",
+ "description": "The heal rating of the target is decreased by 35.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "325",
+ "duration": "30",
+ "mana": "70"
+ },
+ "5378": {
+ "name": "Incantation of Festering Curse",
+ "description": "The heal rating of the target is decreased by 45.",
+ "school": "Void Magic",
+ "family": "643",
+ "difficulty": "400",
+ "duration": "30",
+ "mana": "80"
+ },
+ "5379": {
+ "name": "Weakening Curse I",
+ "description": "Decreases the target's damage rating by 1.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "25",
+ "duration": "15",
+ "mana": "10"
+ },
+ "5380": {
+ "name": "Weakening Curse II",
+ "description": "Decreases the target's damage rating by 2.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "75",
+ "duration": "15",
+ "mana": "20"
+ },
+ "5381": {
+ "name": "Weakening Curse III",
+ "description": "Decreases the target's damage rating by 4.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "125",
+ "duration": "15",
+ "mana": "30"
+ },
+ "5382": {
+ "name": "Weakening Curse IV",
+ "description": "Decreases the target's damage rating by 6.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "175",
+ "duration": "15",
+ "mana": "40"
+ },
+ "5383": {
+ "name": "Weakening Curse V",
+ "description": "Decreases the target's damage rating by 8.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "225",
+ "duration": "15",
+ "mana": "50"
+ },
+ "5384": {
+ "name": "Weakening Curse VI",
+ "description": "Decreases the target's damage rating by 10.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "275",
+ "duration": "15",
+ "mana": "60"
+ },
+ "5385": {
+ "name": "Weakening Curse VII",
+ "description": "Decreases the target's damage rating by 12.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "325",
+ "duration": "15",
+ "mana": "70"
+ },
+ "5386": {
+ "name": "Incantation of Weakening Curse",
+ "description": "Decreases the target's damage rating by 15.",
+ "school": "Void Magic",
+ "family": "642",
+ "difficulty": "400",
+ "duration": "15",
+ "mana": "80"
+ },
+ "5387": {
+ "name": "Corrosion I",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 76 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "5"
+ },
+ "5388": {
+ "name": "Corrosion II",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 116 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "5389": {
+ "name": "Corrosion III",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 152 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "5390": {
+ "name": "Corrosion IV",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 192 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5391": {
+ "name": "Corrosion V",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 204 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "5392": {
+ "name": "Corrosion VI",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 288 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5393": {
+ "name": "Corrosion VII",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 360 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5394": {
+ "name": "Incantation of Corrosion",
+ "description": "Sends a bolt of corrosion towards the target. The bolt does 448 points of damage over 15 seconds.",
+ "school": "Void Magic",
+ "family": "637",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5395": {
+ "name": "Corruption I",
+ "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 56 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "5396": {
+ "name": "Corruption II",
+ "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 91 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5397": {
+ "name": "Corruption III",
+ "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 126 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5398": {
+ "name": "Corruption IV",
+ "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 154 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5399": {
+ "name": "Corruption V",
+ "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 189 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5400": {
+ "name": "Corruption VI",
+ "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 231 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "5401": {
+ "name": "Corruption VII",
+ "description": "Sends 5 bolts of corruption outward from the caster. Each bolt does 294 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5402": {
+ "name": "Incantation of Corruption",
+ "description": "Sends 5 bolts of corruption outward from the caster. Each bolt does 357 points of damage over 30 seconds.",
+ "school": "Void Magic",
+ "family": "638",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5403": {
+ "name": "Void Magic Mastery Other I",
+ "description": "Increases the target's Void Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5404": {
+ "name": "Void Magic Mastery Other II",
+ "description": "Increases the target's Void Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5405": {
+ "name": "Void Magic Mastery Other III",
+ "description": "Increases the target's Void Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5406": {
+ "name": "Void Magic Mastery Other IV",
+ "description": "Increases the target's Void Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5407": {
+ "name": "Void Magic Mastery Other V",
+ "description": "Increases the target's Void Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5408": {
+ "name": "Void Magic Mastery Other VI",
+ "description": "Increases the target's Void Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5409": {
+ "name": "Void Magic Mastery Other VII",
+ "description": "Increases the target's Void Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5410": {
+ "name": "Incantation of Void Magic Mastery Other",
+ "description": "Increases the target's Void Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5411": {
+ "name": "Void Magic Mastery Self I",
+ "description": "Increases the caster's Void Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5412": {
+ "name": "Void Magic Mastery Self II",
+ "description": "Increases the caster's Void Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5413": {
+ "name": "Void Magic Mastery Self III",
+ "description": "Increases the caster's Void Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5414": {
+ "name": "Void Magic Mastery Self IV",
+ "description": "Increases the caster's Void Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5415": {
+ "name": "Void Magic Mastery Self V",
+ "description": "Increases the caster's Void Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5416": {
+ "name": "Void Magic Mastery Self VI",
+ "description": "Increases the caster's Void Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5417": {
+ "name": "Void Magic Mastery Self VII",
+ "description": "Increases the caster's Void Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5418": {
+ "name": "Incantation of Void Magic Mastery Self",
+ "description": "Increases the caster's Void Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "645",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5419": {
+ "name": "Void Magic Ineptitude Other I",
+ "description": "Decreases the target's Void Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5420": {
+ "name": "Void Magic Ineptitude Other II",
+ "description": "Decreases the target's Void Magic skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5421": {
+ "name": "Void Magic Ineptitude Other III",
+ "description": "Decreases the target's Void Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5422": {
+ "name": "Void Magic Ineptitude Other IV",
+ "description": "Decreases the target's Void Magic skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5423": {
+ "name": "Void Magic Ineptitude Other V",
+ "description": "Decreases the target's Void Magic skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5424": {
+ "name": "Void Magic Ineptitude Other VI",
+ "description": "Decreases the target's Void Magic skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5425": {
+ "name": "Void Magic Ineptitude Other VII",
+ "description": "Decreases the target's Void Magic skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5426": {
+ "name": "Incantation of Void Magic Ineptitude Other",
+ "description": "Decreases the target's Void Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "644",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5427": {
+ "name": "Minor Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "646",
+ "difficulty": "5",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5428": {
+ "name": "Major Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "646",
+ "difficulty": "15",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5429": {
+ "name": "Epic Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "646",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5430": {
+ "name": "Moderate Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "646",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5431": {
+ "name": "Novice Shadow's Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "647",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5432": {
+ "name": "Apprentice Voidlock's Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "647",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5433": {
+ "name": "Journeyman Voidlock's Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "647",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5434": {
+ "name": "Master Voidlock's Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "647",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5435": {
+ "name": "Spectral Void Magic Mastery",
+ "description": "Increases the caster's Void Magic skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "648",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "5436": {
+ "name": "Prodigal Void Magic Mastery",
+ "description": "Increases the caster's Void Magic skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "648",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5437": {
+ "name": "Corruptor's Boon",
+ "description": "Increases the target's Void Magic skill by 2 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "649",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5438": {
+ "name": "Corruptor's Boon",
+ "description": "Increases the target's Void Magic skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "649",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5439": {
+ "name": "Acid Spit Streak 1",
+ "description": "Spits a stream of acid streaking towards the target. The stream does 54-94 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5440": {
+ "name": "Acid Spit 1",
+ "description": "Spits a stream of acid at the target. The stream does 149-219 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5441": {
+ "name": "Acid Spit 2",
+ "description": "Spits a stream of acid at the target. The stream does 182-232 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5442": {
+ "name": "Acid Spit Arc 1",
+ "description": "Spits a stream of acid at the target. The stream does 149-219 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5443": {
+ "name": "Acid Spit Arc 2",
+ "description": "Spits a stream of acid at the target. The stream does 182-232 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5444": {
+ "name": "Acid Spit Blast 1",
+ "description": "Spits five streams of acid outward from the caster. Each stream does 54-94 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5445": {
+ "name": "Acid Spit Blast 2",
+ "description": "Spits five streams of acid outward from the caster. Each stream does 61-106 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "131",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5446": {
+ "name": "Acid Spit Volley 1",
+ "description": "Spits five streams of acid toward the target. Each stream does 54-94 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5447": {
+ "name": "Acid Spit Volley 2",
+ "description": "Shoots five streams of acid toward the target. Each stream does 61-106 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "207",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5448": {
+ "name": "Acid Spit Streak",
+ "description": "Spits a stream of acid streaking towards the target. The stream does 61-106 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "243",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5449": {
+ "name": "Surging Strength",
+ "description": "The damage rating of the caster is increased by 20. This spell stacks with other effects that boost damage rating.",
+ "school": "Life Magic",
+ "family": "650",
+ "difficulty": "2",
+ "duration": "15",
+ "mana": "70"
+ },
+ "5450": {
+ "name": "Towering Defense",
+ "description": "The damage reduction rating of the caster is increased by 30. This spell stacks with other effects that boost damage reduction rating.",
+ "school": "Life Magic",
+ "family": "651",
+ "difficulty": "2",
+ "duration": "15",
+ "mana": "70"
+ },
+ "5451": {
+ "name": "Luminous Vitality",
+ "description": "Increases maximum health by 5 points. This spell stacks with other effects that increase health.",
+ "school": "Life Magic",
+ "family": "652",
+ "difficulty": "5",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5452": {
+ "name": "Queen's Willpower",
+ "description": "Increases the target's Self by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "11",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5453": {
+ "name": "Queen's Armor",
+ "description": "Increases the target's natural armor by 250 points.",
+ "school": "Life Magic",
+ "family": "115",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5454": {
+ "name": "Queen's Coordination",
+ "description": "Increases the target's Coordination by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "7",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5455": {
+ "name": "Queen's Endurance",
+ "description": "Increases the target's Endurance by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "3",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5456": {
+ "name": "Queen's Focus",
+ "description": "Increases the target's Focus by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "9",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5457": {
+ "name": "Queen's Quickness",
+ "description": "Increases the target's Quickness by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "5",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5458": {
+ "name": "Queen's Strength",
+ "description": "Increases the target's Strength by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "1",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5459": {
+ "name": "Queen's Piercing Protection",
+ "description": "Reduces damage the target takes from Piercing by 68%",
+ "school": "Life Magic",
+ "family": "111",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5460": {
+ "name": "Queen's Acid Protection",
+ "description": "Reduces damage the target takes from acid by 68%",
+ "school": "Life Magic",
+ "family": "101",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5461": {
+ "name": "Queen's Blade Protection",
+ "description": "Reduces damage the target takes from Slashing by 68%",
+ "school": "Life Magic",
+ "family": "113",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5462": {
+ "name": "Queen's Bludgeoning Protection",
+ "description": "Reduces damage the target takes from Bludgeoning by 68%",
+ "school": "Life Magic",
+ "family": "103",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5463": {
+ "name": "Queen's Cold Protection",
+ "description": "Reduces damage the target takes from Cold by 68%",
+ "school": "Life Magic",
+ "family": "105",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5464": {
+ "name": "Queen's Fire Protection",
+ "description": "Reduces damage the target takes from fire by 68%",
+ "school": "Life Magic",
+ "family": "109",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5465": {
+ "name": "Queen's Lightning Protection",
+ "description": "Reduces damage the target takes from Lightning by 68%",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5466": {
+ "name": "Queen's Rejuvenation",
+ "description": "Increases the rate at which the target regains Stamina by 145%.",
+ "school": "Life Magic",
+ "family": "95",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5467": {
+ "name": "Queen's Mana Renewal",
+ "description": "Increases the target's natural mana rate by 145%.",
+ "school": "Life Magic",
+ "family": "97",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5468": {
+ "name": "Queen's Regeneration",
+ "description": "Increase target's natural healing rate by 145%.",
+ "school": "Life Magic",
+ "family": "93",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5469": {
+ "name": "Queen's Impregnability Other",
+ "description": "Increases the target's Missile Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "39",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5470": {
+ "name": "Queen's Invulnerability Other",
+ "description": "Increases the target's Melee Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "37",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5471": {
+ "name": "Queen's Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "41",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5472": {
+ "name": "Queen's Mana Conversion Mastery",
+ "description": "Increases the target's Mana Conversion skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "51",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5473": {
+ "name": "Queen's Salvaging Mastery Other",
+ "description": "Increases the caster's Salvaging skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "435",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5474": {
+ "name": "Queen's Sprint",
+ "description": "Increases the target's Run skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "77",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5475": {
+ "name": "Queen's Light Weapon Mastery",
+ "description": "Increases the target's Light Weapons skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "17",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5476": {
+ "name": "Queen's War Magic Mastery",
+ "description": "Increases the target's War Magic skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "49",
+ "difficulty": "400",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "5477": {
+ "name": "Critical Damage Metamorphi I",
+ "description": "Your critical damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5478": {
+ "name": "Critical Damage Metamorphi II",
+ "description": "Your critical damage rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5479": {
+ "name": "Critical Damage Metamorphi III",
+ "description": "Your critical damage rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5480": {
+ "name": "Critical Damage Metamorphi IV",
+ "description": "Your critical damage rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5481": {
+ "name": "Critical Damage Metamorphi V",
+ "description": "Your critical damage rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5482": {
+ "name": "Critical Damage Metamorphi VI",
+ "description": "Your critical damage rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5483": {
+ "name": "Critical Damage Metamorphi VII",
+ "description": "Your critical damage rating is increased by 14.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5484": {
+ "name": "Critical Damage Metamorphi VIII",
+ "description": "Your critical damage rating is increased by 16.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5485": {
+ "name": "Critical Damage Metamorphi IX",
+ "description": "Your critical damage rating is increased by 20.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5486": {
+ "name": "Critical Damage Metamorphi X",
+ "description": "Your critical damage rating is increased by 24.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5487": {
+ "name": "Critical Damage Metamorphi XI",
+ "description": "Your critical damage rating is increased by 30.",
+ "school": "Life Magic",
+ "family": "626",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5489": {
+ "name": "Critical Damage Reduction Metamorphi I",
+ "description": "Your critical damage reduction rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5490": {
+ "name": "Critical Damage Reduction Metamorphi II",
+ "description": "Your critical damage reduction rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5491": {
+ "name": "Critical Damage Reduction Metamorphi III",
+ "description": "Your critical damage reduction rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5492": {
+ "name": "Critical Damage Reduction Metamorphi IV",
+ "description": "Your critical damage reduction rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5493": {
+ "name": "Critical Damage Reduction Metamorphi V",
+ "description": "Your critical damage reduction rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5494": {
+ "name": "Critical Damage Reduction Metamorphi VI",
+ "description": "Your critical damage reduction rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5495": {
+ "name": "Critical Damage Reduction Metamorphi VII",
+ "description": "Your critical damage reduction rating is increased by 14.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5496": {
+ "name": "Critical Damage Reduction Metamorphi VIII",
+ "description": "Your critical damage reduction rating is increased by 16.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5497": {
+ "name": "Critical Damage Reduction Metamorphi IX",
+ "description": "Your critical damage reduction rating is increased by 20.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5498": {
+ "name": "Critical Damage Reduction Metamorphi X",
+ "description": "Your critical damage reduction rating is increased by 24.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5499": {
+ "name": "Critical Damage Reduction Metamorphi XI",
+ "description": "Your critical damage reduction rating is increased by 30.",
+ "school": "Life Magic",
+ "family": "653",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5500": {
+ "name": "Damage Metamorphi I",
+ "description": "Your damage rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5501": {
+ "name": "Damage Metamorphi II",
+ "description": "Your damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5502": {
+ "name": "Damage Metamorphi III",
+ "description": "Your damage rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5503": {
+ "name": "Damage Metamorphi IV",
+ "description": "Your damage rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5504": {
+ "name": "Damage Metamorphi V",
+ "description": "Your damage rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5505": {
+ "name": "Damage Metamorphi VI",
+ "description": "Your damage rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5506": {
+ "name": "Damage Metamorphi VII",
+ "description": "Your damage rating is increased by 7.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5507": {
+ "name": "Damage Metamorphi VIII",
+ "description": "Your damage rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5508": {
+ "name": "Damage Metamorphi IX",
+ "description": "Your damage rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5509": {
+ "name": "Damage Metamorphi X",
+ "description": "Your damage rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5510": {
+ "name": "Damage Metamorphi XI",
+ "description": "Your damage rating is increased by 15.",
+ "school": "Life Magic",
+ "family": "620",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5511": {
+ "name": "Damage Reduction Metamorphi I",
+ "description": "Your damage reduction rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5512": {
+ "name": "Damage Reduction Metamorphi II",
+ "description": "Your damage reduction rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5513": {
+ "name": "Damage Reduction Metamorphi III",
+ "description": "Your damage reduction rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5514": {
+ "name": "Damage Reduction Metamorphi IV",
+ "description": "Your damage reduction rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5515": {
+ "name": "Damage Reduction Metamorphi V",
+ "description": "Your damage reduction rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5516": {
+ "name": "Damage Reduction Metamorphi VI",
+ "description": "Your damage reduction rating is increased by 6.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5517": {
+ "name": "Damage Reduction Metamorphi VII",
+ "description": "Your damage reduction rating is increased by 7.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5518": {
+ "name": "Damage Reduction Metamorphi VIII",
+ "description": "Your damage reduction rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5519": {
+ "name": "Damage Reduction Metamorphi IX",
+ "description": "Your damage reduction rating is increased by 10.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5520": {
+ "name": "Damage Reduction Metamorphi X",
+ "description": "Your damage reduction rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5521": {
+ "name": "Damage Reduction Metamorphi XI",
+ "description": "Your damage reduction rating is increased by 15.",
+ "school": "Life Magic",
+ "family": "621",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5522": {
+ "name": "Acid Spit Vulnerability 1",
+ "description": "Increases damage the target takes from acid by 185%.",
+ "school": "War Magic",
+ "family": "102",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5523": {
+ "name": "Acid Spit Vulnerability 2",
+ "description": "Increases damage the target takes from acid by 210%.",
+ "school": "War Magic",
+ "family": "102",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5524": {
+ "name": "Falling stalactite",
+ "description": "Stalactites fall from the ceiling piercing anyone below.",
+ "school": "War Magic",
+ "family": "237",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "5525": {
+ "name": "Bloodstone Bolt I",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 16-40 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "10"
+ },
+ "5526": {
+ "name": "Bloodstone Bolt II",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 32-64 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "50",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5527": {
+ "name": "Bloodstone Bolt III",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 48-88 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "100",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5528": {
+ "name": "Bloodstone Bolt IV",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 56-112 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5529": {
+ "name": "Bloodstone Bolt V",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 64-136 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5530": {
+ "name": "Bloodstone Bolt VI",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 80-160 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "60"
+ },
+ "5531": {
+ "name": "Bloodstone Bolt VII",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 128-200 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5532": {
+ "name": "Incantation of Bloodstone Bolt",
+ "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 192-248 points of health from the first thing it hits.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5533": {
+ "name": "Entering Lord Kastellar's Lab",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5534": {
+ "name": "Entering the Bloodstone Factory",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5535": {
+ "name": "Acidic Blood",
+ "description": "Shoots a stream of acidic blood at the target. The stream does 80-160 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5536": {
+ "name": "Acidic Blood",
+ "description": "Shoots a stream of acidic blood at the target. The stream does 135-195 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5537": {
+ "name": "Acidic Blood",
+ "description": "Shoots a stream of acidic blood at the target. The stream does 50-100 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5538": {
+ "name": "Darkened Heart",
+ "description": "Your heart. darkened with hate. provides an increase to your Void Magic skill by 2.",
+ "school": "Creature Enchantment",
+ "family": "649",
+ "difficulty": "2",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "5539": {
+ "name": "Warded Cavern Passage",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5540": {
+ "name": "Warded Dungeon Passage",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5541": {
+ "name": "Lost City of Neftet Recall",
+ "description": "Sends the caster to the Lost City of Neftet.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "5542": {
+ "name": "Burning Sands Infliction",
+ "description": "You've been covered in burning sand. causing damage over time. The target loses 357 points of health over 30 seconds.",
+ "school": "Life Magic",
+ "family": "618",
+ "difficulty": "350",
+ "duration": "30",
+ "mana": "80"
+ },
+ "5543": {
+ "name": "Curse of the Burning Sands",
+ "description": "Your wounds are cursed and don't heal as well.",
+ "school": "Life Magic",
+ "family": "619",
+ "difficulty": "350",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5544": {
+ "name": "Nether Blast I",
+ "description": "Shoots three bolts of nether outward from the caster. Each bolt does 10-21 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5545": {
+ "name": "Nether Blast II",
+ "description": "Shoots three bolts of nether outward from the caster. Each bolt does 10-21 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "75",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5546": {
+ "name": "Nether Blast III",
+ "description": "Shoots three bolts of nether outward from the caster. Each bolt does 21-47 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "15"
+ },
+ "5547": {
+ "name": "Nether Blast IV",
+ "description": "Shoots three bolts of nether outward from the caster. Each bolt does 31-63 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "175",
+ "duration": "-1",
+ "mana": "20"
+ },
+ "5548": {
+ "name": "Nether Blast V",
+ "description": "Shoots three bolts of nether outward from the caster. Each bolt does 36-73 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "25"
+ },
+ "5549": {
+ "name": "Nether Blast VI",
+ "description": "Shoots three bolts of nether outward from the caster. Each bolt does 42-89 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "275",
+ "duration": "-1",
+ "mana": "30"
+ },
+ "5550": {
+ "name": "Nether Blast VII",
+ "description": "Shoots five bolts of nether outward from the caster. Each bolt does 78-126 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "325",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5551": {
+ "name": "Incantation of Nether Blast",
+ "description": "Shoots five bolts of nether outward from the caster. Each bolt does 115-158 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "135",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5552": {
+ "name": "Sigil of Purity IX",
+ "description": "Your DoT reduction rating is increased by 36.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5553": {
+ "name": "Sigil of Perserverance I",
+ "description": "Your health drain resistance rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5554": {
+ "name": "Sigil of Perserverance X",
+ "description": "Your health drain resistance rating is increased by 40.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5555": {
+ "name": "Sigil of Perserverance XI",
+ "description": "Your health drain resistance rating is increased by 44.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5556": {
+ "name": "Sigil of Perserverance XII",
+ "description": "Your health drain resistance rating is increased by 48.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5557": {
+ "name": "Sigil of Perserverance XIII",
+ "description": "desc desc Your health drain resistance rating is increased by 52.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5558": {
+ "name": "Sigil of Perserverance XIV",
+ "description": "desc desc Your health drain resistance rating is increased by 56.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5559": {
+ "name": "Sigil of Perserverance XV",
+ "description": "desc desc Your health drain resistance rating is increased by 50.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5560": {
+ "name": "Sigil of Perserverance II",
+ "description": "Your health drain resistance rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5561": {
+ "name": "Sigil of Perserverance III",
+ "description": "Your health drain resistance rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5562": {
+ "name": "Sigil of Perserverance IV",
+ "description": "Your health drain resistance rating is increased by 16.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5563": {
+ "name": "Sigil of Perserverance V",
+ "description": "Your health drain resistance rating is increased by 20.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5564": {
+ "name": "Sigil of Perserverance VI",
+ "description": "Your health drain resistance rating is increased by 24.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5565": {
+ "name": "Sigil of Perserverance VII",
+ "description": "Your health drain resistance rating is increased by 28.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5566": {
+ "name": "Sigil of Perserverance VIII",
+ "description": "Your health drain resistance rating is increased by 32.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5567": {
+ "name": "Sigil of Perserverance IX",
+ "description": "Your health drain resistance rating is increased by 36.",
+ "school": "Life Magic",
+ "family": "657",
+ "difficulty": "9",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5568": {
+ "name": "Sigil of Purity I",
+ "description": "Your DoT reduction rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "1",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5569": {
+ "name": "Sigil of Purity X",
+ "description": "Your DoT reduction rating is increased by 40.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "10",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5570": {
+ "name": "Sigil of Purity XI",
+ "description": "Your DoT reduction rating is increased by 44.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "11",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5571": {
+ "name": "Sigil of Purity XII",
+ "description": "Your DoT reduction rating is increased by 48.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "12",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5572": {
+ "name": "Sigil of Purity XIII",
+ "description": "Your DoT reduction rating is increased by 52.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "13",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5573": {
+ "name": "Sigil of Purity XIV",
+ "description": "Your DoT reduction rating is increased by 56.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "14",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5574": {
+ "name": "Sigil of Purity XV",
+ "description": "Your DoT reduction rating is increased by 60.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "15",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5575": {
+ "name": "Sigil of Purity II",
+ "description": "Your DoT reduction rating is increased by 8.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "2",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5576": {
+ "name": "Sigil of Purity III",
+ "description": "Your DoT reduction rating is increased by 12.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "3",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5577": {
+ "name": "Sigil of Purity IV",
+ "description": "Your DoT reduction rating is increased by 16.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "4",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5578": {
+ "name": "Sigil of Purity V",
+ "description": "Your DoT reduction rating is increased by 20.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "5",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5579": {
+ "name": "Sigil of Purity VI",
+ "description": "Your DoT reduction rating is increased by 24.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "6",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5580": {
+ "name": "Sigil of Purity VII",
+ "description": "Your DoT reduction rating is increased by 28.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "7",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5581": {
+ "name": "Sigil of Purity VIII",
+ "description": "Your DoT reduction rating is increased by 32.",
+ "school": "Life Magic",
+ "family": "658",
+ "difficulty": "8",
+ "duration": "510",
+ "mana": "70"
+ },
+ "5582": {
+ "name": "Nullify All Rares",
+ "description": "Dispels all rare enchantments on the player.",
+ "school": "Life Magic",
+ "family": "250",
+ "difficulty": "600",
+ "duration": "-1",
+ "mana": "340"
+ },
+ "5583": {
+ "name": "Weave of Alchemy I",
+ "description": "Increases the target's Alchemy skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5584": {
+ "name": "Weave of Alchemy II",
+ "description": "Increases the target's Alchemy skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5585": {
+ "name": "Weave of Alchemy III",
+ "description": "Increases the target's Alchemy skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5586": {
+ "name": "Weave of Alchemy IV",
+ "description": "Increases the target's Alchemy skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5587": {
+ "name": "Weave of Alchemy V",
+ "description": "Increases the target's Alchemy skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5588": {
+ "name": "Weave of Arcane Lore I",
+ "description": "Increases the target's Arcane Lore skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5589": {
+ "name": "Weave of Arcane Lore II",
+ "description": "Increases the target's Arcane Lore skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5590": {
+ "name": "Weave of Arcane Lore III",
+ "description": "Increases the target's Arcane Lore skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5591": {
+ "name": "Weave of Arcane Lore IV",
+ "description": "Increases the target's Arcane Lore skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5592": {
+ "name": "Weave of Arcane Lore V",
+ "description": "Increases the target's Arcane Lore skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5593": {
+ "name": "Weave of Armor Tinkering I",
+ "description": "Increases the target's Armor Tinkering skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5594": {
+ "name": "Weave of Armor Tinkering II",
+ "description": "Increases the target's Armor Tinkering skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5595": {
+ "name": "Weave of Armor Tinkering III",
+ "description": "Increases the target's Armor Tinkering skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5596": {
+ "name": "Weave of Armor Tinkering IV",
+ "description": "Increases the target's Armor Tinkering skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5597": {
+ "name": "Weave of Armor Tinkering V",
+ "description": "Increases the target's Armor Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5598": {
+ "name": "Weave of Person Attunement I",
+ "description": "Increases the target's Assess Person skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5599": {
+ "name": "Weave of Person Attunement II",
+ "description": "Increases the target's Assess Person skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5600": {
+ "name": "Weave of Person Attunement III",
+ "description": "Increases the target's Assess Person skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5601": {
+ "name": "Weave of Person Attunement IV",
+ "description": "Increases the target's Assess Person skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5602": {
+ "name": "Weave of the Person Attunement V",
+ "description": "Increases the target's Assess Person skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5603": {
+ "name": "Weave of Light Weapons I",
+ "description": "Increases the target's Light Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5604": {
+ "name": "Weave of Light Weapons II",
+ "description": "Increases the target's Light Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5605": {
+ "name": "Weave of Light Weapons III",
+ "description": "Increases the target's Light Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5606": {
+ "name": "Weave of Light Weapons IV",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5607": {
+ "name": "Weave of Light Weapons V",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5608": {
+ "name": "Weave of Missile Weapons I",
+ "description": "Increases the target's Missile Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5609": {
+ "name": "Weave of Missile Weapons II",
+ "description": "Increases the target's Missile Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5610": {
+ "name": "Weave of Missile Weapons III",
+ "description": "Increases the target's Missile Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5611": {
+ "name": "Weave of Missile Weapons IV",
+ "description": "Increases the target's Missile Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5612": {
+ "name": "Weave of Missile Weapons V",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5613": {
+ "name": "Weave of Cooking I",
+ "description": "Increases the target's Cooking skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5614": {
+ "name": "Weave of Cooking II",
+ "description": "Increases the target's Cooking skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5615": {
+ "name": "Weave of Cooking III",
+ "description": "Increases the target's Cooking skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5616": {
+ "name": "Weave of Cooking IV",
+ "description": "Increases the target's Cooking skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5617": {
+ "name": "Weave of the Cooking V",
+ "description": "Increases the target's Cooking skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5618": {
+ "name": "Weave of Creature Enchantment I",
+ "description": "Increases the target's Creature Enchantment skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5619": {
+ "name": "Weave of Creature Enchantment II",
+ "description": "Increases the target's Creature Enchantment skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5620": {
+ "name": "Weave of Creature Enchantment III",
+ "description": "Increases the target's Creature Enchantment skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5621": {
+ "name": "Weave of Creature Enchantment IV",
+ "description": "Increases the target's Creature Enchantment skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5622": {
+ "name": "Weave of the Creature Enchantment V",
+ "description": "Increases the target's Creature Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5623": {
+ "name": "Weave of Missile Weapons I",
+ "description": "Increases the target's Missile Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5624": {
+ "name": "Weave of Missile Weapons II",
+ "description": "Increases the target's Missile Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5625": {
+ "name": "Weave of Missile Weapons III",
+ "description": "Increases the target's Missile Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5626": {
+ "name": "Weave of Missile Weapons IV",
+ "description": "Increases the target's Missile Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5627": {
+ "name": "Weave of Missile Weapons V",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5628": {
+ "name": "Weave of Finesse Weapons I",
+ "description": "Increases the target's Finesse Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5629": {
+ "name": "Weave of Finesse Weapons II",
+ "description": "Increases the target's Finesse Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5630": {
+ "name": "Weave of Finesse Weapons III",
+ "description": "Increases the target's Finesse Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5631": {
+ "name": "Weave of Finesse Weapons IV",
+ "description": "Increases the target's Finesse Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5632": {
+ "name": "Weave of Finesse Weapons V",
+ "description": "Increases the target's Finesse Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5633": {
+ "name": "Weave of Deception I",
+ "description": "Increases the target's Deception skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5634": {
+ "name": "Weave of the Deception II",
+ "description": "Increases the target's Deception skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5635": {
+ "name": "Weave of the Deception III",
+ "description": "Increases the target's Deception skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5636": {
+ "name": "Weave of the Deception IV",
+ "description": "Increases the target's Deception skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5637": {
+ "name": "Weave of the Deception V",
+ "description": "Increases the target's Deception skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5638": {
+ "name": "Weave of Fletching I",
+ "description": "Increases the target's Fletching skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5639": {
+ "name": "Weave of the Fletching II",
+ "description": "Increases the target's Fletching skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5640": {
+ "name": "Weave of the Fletching III",
+ "description": "Increases the target's Fletching skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5641": {
+ "name": "Weave of the Fletching IV",
+ "description": "Increases the target's Fletching skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5642": {
+ "name": "Weave of the Fletching V",
+ "description": "Increases the target's Fletching skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5643": {
+ "name": "Weave of Healing I",
+ "description": "Increases the target's Healing skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5644": {
+ "name": "Weave of the Healing II",
+ "description": "Increases the target's Healing skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5645": {
+ "name": "Weave of the Healing III",
+ "description": "Increases the target's Healing skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5646": {
+ "name": "Weave of the Healing IV",
+ "description": "Increases the target's Healing skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5647": {
+ "name": "Weave of the Healing V",
+ "description": "Increases the target's Healing skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5648": {
+ "name": "Weave of Item Enchantment I",
+ "description": "Increases the target's Item Enchantment skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5649": {
+ "name": "Weave of Item Enchantment II",
+ "description": "Increases the target's Item Enchantment skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5650": {
+ "name": "Weave of Item Enchantment III",
+ "description": "Increases the target's Item Enchantment skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5651": {
+ "name": "Weave of Item Enchantment IV",
+ "description": "Increases the target's Item Enchantment skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5652": {
+ "name": "Weave of the Item Enchantment V",
+ "description": "Increases the target's Item Enchantment skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5653": {
+ "name": "Weave of Item Tinkering I",
+ "description": "Increases the target's Item Tinkering skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5654": {
+ "name": "Weave of Item Tinkering II",
+ "description": "Increases the target's Item Tinkering skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5655": {
+ "name": "Weave of Item Tinkering III",
+ "description": "Increases the target's Item Tinkering skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5656": {
+ "name": "Weave of Item Tinkering IV",
+ "description": "Increases the target's Item Tinkering skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5657": {
+ "name": "Weave of the Item Tinkering V",
+ "description": "Increases the target's Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5658": {
+ "name": "Weave of Leadership I",
+ "description": "Increases the target's Leadership skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5659": {
+ "name": "Weave of Leadership II",
+ "description": "Increases the target's Leadership skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5660": {
+ "name": "Weave of Leadership III",
+ "description": "Increases the target's Leadership skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5661": {
+ "name": "Weave of Leadership IV",
+ "description": "Increases the target's Leadership skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5662": {
+ "name": "Weave of Leadership V",
+ "description": "Increases the target's Leadership skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5663": {
+ "name": "Weave of Life Magic I",
+ "description": "Increases the target's Life Magic skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5664": {
+ "name": "Weave of Life Magic II",
+ "description": "Increases the target's Life Magic skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5665": {
+ "name": "Weave of Life Magic III",
+ "description": "Increases the target's Life Magic skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5666": {
+ "name": "Weave of Life Magic IV",
+ "description": "Increases the target's Life Magic skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5667": {
+ "name": "Weave of Life Magic V",
+ "description": "Increases the target's Life Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5668": {
+ "name": "Weave of Fealty I",
+ "description": "Increases the target's Loyalty skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5669": {
+ "name": "Weave of Fealty II",
+ "description": "Increases the target's Loyalty skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5670": {
+ "name": "Weave of Fealty III",
+ "description": "Increases the target's Loyalty skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5671": {
+ "name": "Weave of Fealty IV",
+ "description": "Increases the target's Loyalty skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5672": {
+ "name": "Weave of Fealty V",
+ "description": "Increases the target's Loyalty skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5673": {
+ "name": "Weave of Light Weapons I",
+ "description": "Increases the target's Light Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5674": {
+ "name": "Weave of Light Weapons II",
+ "description": "Increases the target's Light Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5675": {
+ "name": "Weave of Light Weapons III",
+ "description": "Increases the target's Light Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5676": {
+ "name": "Weave of Light Weapons IV",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5677": {
+ "name": "Weave of Light Weapons V",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5678": {
+ "name": "Weave of Magic Resistance I",
+ "description": "Increases the target's Magic Defense skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5679": {
+ "name": "Weave of Magic Resistance II",
+ "description": "Increases the target's Magic Defense skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5680": {
+ "name": "Weave of Magic Resistance III",
+ "description": "Increases the target's Magic Defense skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5681": {
+ "name": "Weave of Magic Resistance IV",
+ "description": "Increases the target's Magic Defense skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5682": {
+ "name": "Weave of the Magic Resistance V",
+ "description": "Increases the target's Magic Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5683": {
+ "name": "Weave of Magic Item Tinkering I",
+ "description": "Increases the target's Magic Item Tinkering skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5684": {
+ "name": "Weave of Magic Item Tinkering II",
+ "description": "Increases the target's Magic Item Tinkering skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5685": {
+ "name": "Weave of Magic Item Tinkering III",
+ "description": "Increases the target's Magic Item Tinkering skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5686": {
+ "name": "Weave of Magic Item Tinkering IV",
+ "description": "Increases the target's Magic Item Tinkering skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5687": {
+ "name": "Weave of the Magic Item Tinkering V",
+ "description": "Increases the target's Magic Item Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5688": {
+ "name": "Weave of Mana Conversion I",
+ "description": "Increases the target's Mana Conversion skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5689": {
+ "name": "Weave of Mana Conversion II",
+ "description": "Increases the target's Mana Conversion skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5690": {
+ "name": "Weave of Mana Conversion III",
+ "description": "Increases the target's Mana Conversion skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5691": {
+ "name": "Weave of Mana Conversion IV",
+ "description": "Increases the target's Mana Conversion skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5692": {
+ "name": "Weave of Mana Conversion V",
+ "description": "Increases the target's Mana Conversion skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5693": {
+ "name": "Weave of Invulnerability I",
+ "description": "Increases the target's Melee Defense skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5694": {
+ "name": "Weave of Invulnerability II",
+ "description": "Increases the target's Melee Defense skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5695": {
+ "name": "Weave of Invulnerability III",
+ "description": "Increases the target's Melee Defense skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5696": {
+ "name": "Weave of Invulnerability IV",
+ "description": "Increases the target's Melee Defense skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5697": {
+ "name": "Weave of the Invulnerability V",
+ "description": "Increases the target's Melee Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5698": {
+ "name": "Weave of Impregnability I",
+ "description": "Increases the target's Missile Defense skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5699": {
+ "name": "Weave of Impregnability II",
+ "description": "Increases the target's Missile Defense skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5700": {
+ "name": "Weave of Impregnability III",
+ "description": "Increases the target's Missile Defense skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5701": {
+ "name": "Weave of Impregnability IV",
+ "description": "Increases the target's Missile Defense skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5702": {
+ "name": "Weave of the Impregnability V",
+ "description": "Increases the target's Missile Defense skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5703": {
+ "name": "Weave of Salvaging I",
+ "description": "Increases the target's Salvaging skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5704": {
+ "name": "Weave of Salvaging II",
+ "description": "Increases the target's Salvaging skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5705": {
+ "name": "Weave of Salvaging III",
+ "description": "Increases the target's Salvaging skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5706": {
+ "name": "Weave of Salvaging IV",
+ "description": "Increases the target's Salvaging skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5707": {
+ "name": "Weave of Salvaging V",
+ "description": "Increases the target's Salvaging skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5708": {
+ "name": "Weave of Light Weapons I",
+ "description": "Increases the target's Light Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5709": {
+ "name": "Weave of Light Weapons II",
+ "description": "Increases the target's Light Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5710": {
+ "name": "Weave of Light Weapons III",
+ "description": "Increases the target's Light Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5711": {
+ "name": "Weave of Light Weapons IV",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5712": {
+ "name": "Weave of Light Weapons V",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5713": {
+ "name": "Weave of Light Weapons I",
+ "description": "Increases the target's Light Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5714": {
+ "name": "Weave of Light Weapons II",
+ "description": "Increases the target's Light Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5715": {
+ "name": "Weave of Light Weapons III",
+ "description": "Increases the target's Light Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5716": {
+ "name": "Weave of Light Weapons IV",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5717": {
+ "name": "Weave of Light Weapons V",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5718": {
+ "name": "Weave of Heavy Weapons I",
+ "description": "Increases the target's Heavy Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5719": {
+ "name": "Weave of Heavy Weapons II",
+ "description": "Increases the target's Heavy Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5720": {
+ "name": "Weave of Heavy Weapons III",
+ "description": "Increases the target's Heavy Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5721": {
+ "name": "Weave of Heavy Weapons IV",
+ "description": "Increases the target's Heavy Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5722": {
+ "name": "Weave of Heavy Weapons V",
+ "description": "Increases the target's Heavy Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5723": {
+ "name": "Weave of Missile Weapons I",
+ "description": "Increases the target's Missile Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5724": {
+ "name": "Weave of Missile Weapons II",
+ "description": "Increases the target's Missile Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5725": {
+ "name": "Weave of Missile Weapons III",
+ "description": "Increases the target's Missile Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5726": {
+ "name": "Weave of Missile Weapons IV",
+ "description": "Increases the target's Missile Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5727": {
+ "name": "Weave of Missile Weapons V",
+ "description": "Increases the target's Missile Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5728": {
+ "name": "Weave of Two Handed Combat I",
+ "description": "Increases the target's Two Handed Combat skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5729": {
+ "name": "Weave of Two Handed Combat II",
+ "description": "Increases the target's Two Handed Combat skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5730": {
+ "name": "Weave of Two Handed Combat III",
+ "description": "Increases the target's Two Handed Combat skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5731": {
+ "name": "Weave of Two Handed Combat IV",
+ "description": "Increases the target's Two Handed Combat skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5732": {
+ "name": "Weave of Two Handed Combat V",
+ "description": "Increases the target's Two Handed Combat skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5733": {
+ "name": "Weave of Light Weapons I",
+ "description": "Increases the target's Light Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5734": {
+ "name": "Weave of Light Weapons II",
+ "description": "Increases the target's Light Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5735": {
+ "name": "Weave of Light Weapons III",
+ "description": "Increases the target's Light Weapons skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5736": {
+ "name": "Weave of Light Weapons IV",
+ "description": "Increases the target's Light Weapons skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5737": {
+ "name": "Weave of Light Weapons V",
+ "description": "Increases the target's Light Weapons skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5738": {
+ "name": "Weave of Void Magic I",
+ "description": "Increases the target's Void Magic skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5739": {
+ "name": "Weave of Void Magic II",
+ "description": "Increases the target's Void Magic skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5740": {
+ "name": "Weave of Void Magic III",
+ "description": "Increases the target's Void Magic skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5741": {
+ "name": "Weave of Void Magic IV",
+ "description": "Increases the target's Void Magic skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5742": {
+ "name": "Weave of Void Magic V",
+ "description": "Increases the target's Void Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5743": {
+ "name": "Weave of War Magic I",
+ "description": "Increases the target's War Magic skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5744": {
+ "name": "Weave of War Magic II",
+ "description": "Increases the target's War Magic skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5745": {
+ "name": "Weave of War Magic III",
+ "description": "Increases the target's War Magic skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5746": {
+ "name": "Weave of War Magic IV",
+ "description": "Increases the target's War Magic skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5747": {
+ "name": "Weave of War Magic V",
+ "description": "Increases the target's War Magic skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5748": {
+ "name": "Weave of Weapon Tinkering I",
+ "description": "Increases the target's Weapon Tinkering skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5749": {
+ "name": "Weave of Weapon Tinkering II",
+ "description": "Increases the target's Weapon Tinkering skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5750": {
+ "name": "Weave of Weapon Tinkering III",
+ "description": "Increases the target's Weapon Tinkering skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5751": {
+ "name": "Weave of Weapon Tinkering IV",
+ "description": "Increases the target's Weapon Tinkering skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5752": {
+ "name": "Weave of the Weapon Tinkering V",
+ "description": "Increases the target's Weapon Tinkering skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5753": {
+ "name": "Cloaked in Skill",
+ "description": "Increases all of the target's skills by 20 for 20 seconds.",
+ "school": "Creature Enchantment",
+ "family": "660",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "70"
+ },
+ "5754": {
+ "name": "Shroud of Darkness (Magic)",
+ "description": "Decreases the target's Magic Defense skill by half.",
+ "school": "Creature Enchantment",
+ "family": "661",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5755": {
+ "name": "Shroud of Darkness (Melee)",
+ "description": "Decreases the targets's Melee Defense skill by half.",
+ "school": "Creature Enchantment",
+ "family": "662",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5756": {
+ "name": "Shroud of Darkness (Missile)",
+ "description": "Decreases the target's Missile Defense skill by half.",
+ "school": "Creature Enchantment",
+ "family": "663",
+ "difficulty": "1",
+ "duration": "-1",
+ "mana": "70"
+ },
+ "5757": {
+ "name": "Weave of Creature Attunement III",
+ "description": "Increases the target's Assess Creature skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5758": {
+ "name": "Weave of Creature Attunement IV",
+ "description": "Increases the target's Assess Creature skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5759": {
+ "name": "Weave of the Creature Attunement V",
+ "description": "Increases the target's Assess Creature skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5760": {
+ "name": "Weave of Creature Attunement I",
+ "description": "Increases the target's Assess Creature skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5761": {
+ "name": "Weave of Creature Attunement II",
+ "description": "Increases the target's Assess Creature skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5762": {
+ "name": "Rolling Death",
+ "description": "A giant snowball.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "320",
+ "duration": "-1",
+ "mana": "120"
+ },
+ "5763": {
+ "name": "Dirty Fighting Ineptitude Other I",
+ "description": "Decreases the target's Dirty Fighting skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5764": {
+ "name": "Dirty Fighting Ineptitude Other II",
+ "description": "Decreases the target's Dirty Fighting skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5765": {
+ "name": "Dirty Fighting Ineptitude Other III",
+ "description": "Decreases the target's Dirty Fighting skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5766": {
+ "name": "Dirty Fighting Ineptitude Other IV",
+ "description": "Decreases the target's Dirty Fighting skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5767": {
+ "name": "Dirty Fighting Ineptitude Other V",
+ "description": "Decreases the target's Dirty Fighting skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5768": {
+ "name": "Dirty Fighting Ineptitude Other VI",
+ "description": "Decreases the target's Dirty Fighting skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5769": {
+ "name": "Dirty Fighting Ineptitude Other VII",
+ "description": "Decreases the target's Dirty Fighting skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5770": {
+ "name": "Incantation of Dirty Fighting Ineptitude Other",
+ "description": "Decreases the target's Dirty Fighting skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "664",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5771": {
+ "name": "Dirty Fighting Mastery Other I",
+ "description": "Increases the target's Dirty Fighting skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5772": {
+ "name": "Dirty Fighting Mastery Other II",
+ "description": "Increases the target's Dirty Fighting skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5773": {
+ "name": "Dirty Fighting Mastery Other III",
+ "description": "Increases the target's Dirty Fighting skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5774": {
+ "name": "Dirty Fighting Mastery Other IV",
+ "description": "Increases the target's Dirty Fighting skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5775": {
+ "name": "Dirty Fighting Mastery Other V",
+ "description": "Increases the target's Dirty Fighting skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5776": {
+ "name": "Dirty Fighting Mastery Other VI",
+ "description": "Increases the target's Dirty Fighting skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5777": {
+ "name": "Dirty Fighting Mastery Other VII",
+ "description": "Increases the target's Dirty Fighting skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5778": {
+ "name": "Incantation of Dirty Fighting Mastery Other",
+ "description": "Increases the target's Dirty Fighting skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5779": {
+ "name": "Dirty Fighting Mastery Self I",
+ "description": "Increases the caster's Dirty Fighting skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5780": {
+ "name": "Dirty Fighting Mastery Self II",
+ "description": "Increases the caster's Dirty Fighting skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5781": {
+ "name": "Dirty Fighting Mastery Self III",
+ "description": "Increases the caster's Dirty Fighting skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5782": {
+ "name": "Dirty Fighting Mastery Self IV",
+ "description": "Increases the caster's Dirty Fighting skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5783": {
+ "name": "Dirty Fighting Mastery Self V",
+ "description": "Increases the caster's Dirty Fighting skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5784": {
+ "name": "Dirty Fighting Mastery Self VI",
+ "description": "Increases the caster's Dirty Fighting skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5785": {
+ "name": "Dirty Fighting Mastery Self VII",
+ "description": "Increases the caster's Dirty Fighting skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5786": {
+ "name": "Incantation of Dirty Fighting Mastery Self",
+ "description": "Increases the caster's Dirty Fighting skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "665",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5787": {
+ "name": "Dual Wield Ineptitude Other I",
+ "description": "Decreases the target's Dual Wield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5788": {
+ "name": "Dual Wield Ineptitude Other II",
+ "description": "Decreases the target's Dual Wield skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5789": {
+ "name": "Dual Wield Ineptitude Other III",
+ "description": "Decreases the target's Dual Wield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5790": {
+ "name": "Dual Wield Ineptitude Other IV",
+ "description": "Decreases the target's Dual Wield skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5791": {
+ "name": "Dual Wield Ineptitude Other V",
+ "description": "Decreases the target's Dual Wield skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5792": {
+ "name": "Dual Wield Ineptitude Other VI",
+ "description": "Decreases the target's Dual Wield skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5793": {
+ "name": "Dual Wield Ineptitude Other VII",
+ "description": "Decreases the target's Dual Wield skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5794": {
+ "name": "Incantation of Dual Wield Ineptitude Other",
+ "description": "Decreases the target's Dual Wield skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "667",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5795": {
+ "name": "Dual Wield Mastery Other I",
+ "description": "Increases the target's Dual Wield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5796": {
+ "name": "Dual Wield Mastery Other II",
+ "description": "Increases the target's Dual Wield skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5797": {
+ "name": "Dual Wield Mastery Other III",
+ "description": "Increases the target's Dual Wield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5798": {
+ "name": "Dual Wield Mastery Other IV",
+ "description": "Increases the target's Dual Wield skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5799": {
+ "name": "Dual Wield Mastery Other V",
+ "description": "Increases the target's Dual Wield skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5800": {
+ "name": "Dual Wield Mastery Other VI",
+ "description": "Increases the target's Dual Wield skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5801": {
+ "name": "Dual Wield Mastery Other VII",
+ "description": "Increases the target's Dual Wield skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5802": {
+ "name": "Incantation of Dual Wield Mastery Other",
+ "description": "Increases the target's Dual Wield skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5803": {
+ "name": "Dual Wield Mastery Self I",
+ "description": "Increases the caster's Dual Wield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5804": {
+ "name": "Dual Wield Mastery Self II",
+ "description": "Increases the caster's Dual Wield skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5805": {
+ "name": "Dual Wield Mastery Self III",
+ "description": "Increases the caster's Dual Wield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5806": {
+ "name": "Dual Wield Mastery Self IV",
+ "description": "Increases the caster's Dual Wield skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5807": {
+ "name": "Dual Wield Mastery Self V",
+ "description": "Increases the caster's Dual Wield skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5808": {
+ "name": "Dual Wield Mastery Self VI",
+ "description": "Increases the caster's Dual Wield skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5809": {
+ "name": "Dual Wield Mastery Self VII",
+ "description": "Increases the caster's Dual Wield skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5810": {
+ "name": "Incantation of Dual Wield Mastery Self",
+ "description": "Increases the caster's Dual Wield skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "668",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5811": {
+ "name": "Recklessness Ineptitude Other I",
+ "description": "Decreases the target's Recklessness skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5812": {
+ "name": "Recklessness Ineptitude Other II",
+ "description": "Decreases the target's Recklessness skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5813": {
+ "name": "Recklessness Ineptitude Other III",
+ "description": "Decreases the target's Recklessness skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5814": {
+ "name": "Recklessness Ineptitude Other IV",
+ "description": "Decreases the target's Recklessness skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5815": {
+ "name": "Recklessness Ineptitude Other V",
+ "description": "Decreases the target's Recklessness skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5816": {
+ "name": "Recklessness Ineptitude Other VI",
+ "description": "Decreases the target's Recklessness skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5817": {
+ "name": "Recklessness Ineptitude Other VII",
+ "description": "Decreases the target's Recklessness skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5818": {
+ "name": "Incantation of Recklessness Ineptitude Other",
+ "description": "Decreases the target's Recklessness skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "670",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5819": {
+ "name": "Recklessness Mastery Other I",
+ "description": "Increases the target's Recklessness skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5820": {
+ "name": "Recklessness Mastery Other II",
+ "description": "Increases the target's Recklessness skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5821": {
+ "name": "Recklessness Mastery Other III",
+ "description": "Increases the target's Recklessness skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5822": {
+ "name": "Recklessness Mastery Other IV",
+ "description": "Increases the target's Recklessness skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5823": {
+ "name": "Recklessness Mastery Other V",
+ "description": "Increases the target's Recklessness skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5824": {
+ "name": "Recklessness Mastery Other VI",
+ "description": "Increases the target's Recklessness skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5825": {
+ "name": "Recklessness Mastery Other VII",
+ "description": "Increases the target's Recklessness skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5826": {
+ "name": "Incantation of Recklessness Mastery Other",
+ "description": "Increases the target's Recklessness skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5827": {
+ "name": "Recklessness Mastery Self I",
+ "description": "Increases the caster's Recklessness skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5828": {
+ "name": "Recklessness Mastery Self II",
+ "description": "Increases the caster's Recklessness skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5829": {
+ "name": "Recklessness Mastery Self III",
+ "description": "Increases the caster's Recklessness skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5830": {
+ "name": "Recklessness Mastery Self IV",
+ "description": "Increases the caster's Recklessness skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5831": {
+ "name": "Recklessness Mastery Self V",
+ "description": "Increases the caster's Recklessness skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5832": {
+ "name": "Recklessness Mastery Self VI",
+ "description": "Increases the caster's Recklessness skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5833": {
+ "name": "Recklessness Mastery Self VII",
+ "description": "Increases the caster's Recklessness skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5834": {
+ "name": "Incantation of Recklessness Mastery Self",
+ "description": "Increases the caster's Recklessness skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "671",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5835": {
+ "name": "Shield Ineptitude Other I",
+ "description": "Decreases the target's Shield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5836": {
+ "name": "Shield Ineptitude Other II",
+ "description": "Decreases the target's Shield skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5837": {
+ "name": "Shield Ineptitude Other III",
+ "description": "Decreases the target's Shield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5838": {
+ "name": "Shield Ineptitude Other IV",
+ "description": "Decreases the target's Shield skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5839": {
+ "name": "Shield Ineptitude Other V",
+ "description": "Decreases the target's Shield skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5840": {
+ "name": "Shield Ineptitude Other VI",
+ "description": "Decreases the target's Shield skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5841": {
+ "name": "Shield Ineptitude Other VII",
+ "description": "Decreases the target's Shield skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5842": {
+ "name": "Incantation of Shield Ineptitude Other",
+ "description": "Decreases the target's Shield skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "673",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5843": {
+ "name": "Shield Mastery Other I",
+ "description": "Increases the target's Shield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5844": {
+ "name": "Shield Mastery Other II",
+ "description": "Increases the target's Shield skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5845": {
+ "name": "Shield Mastery Other III",
+ "description": "Increases the target's Shield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5846": {
+ "name": "Shield Mastery Other IV",
+ "description": "Increases the target's Shield skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5847": {
+ "name": "Shield Mastery Other V",
+ "description": "Increases the target's Shield skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5848": {
+ "name": "Shield Mastery Other VI",
+ "description": "Increases the target's Shield skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5849": {
+ "name": "Shield Mastery Other VII",
+ "description": "Increases the target's Shield skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5850": {
+ "name": "Incantation of Shield Mastery Other",
+ "description": "Increases the target's Shield skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5851": {
+ "name": "Shield Mastery Self I",
+ "description": "Increases the caster's Shield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5852": {
+ "name": "Shield Mastery Self II",
+ "description": "Increases the caster's Shield skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5853": {
+ "name": "Shield Mastery Self III",
+ "description": "Increases the caster's Shield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5854": {
+ "name": "Shield Mastery Self IV",
+ "description": "Increases the caster's Shield skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5855": {
+ "name": "Shield Mastery Self V",
+ "description": "Increases the caster's Shield skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5856": {
+ "name": "Shield Mastery Self VI",
+ "description": "Increases the caster's Shield skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5857": {
+ "name": "Shield Mastery Self VII",
+ "description": "Increases the caster's Shield skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5858": {
+ "name": "Incantation of Shield Mastery Self",
+ "description": "Increases the caster's Shield skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "674",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5859": {
+ "name": "Sneak Attack Ineptitude Other I",
+ "description": "Decreases the target's Sneak Attack skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5860": {
+ "name": "Sneak Attack Ineptitude Other II",
+ "description": "Decreases the target's Sneak Attack skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "5861": {
+ "name": "Sneak Attack Ineptitude Other III",
+ "description": "Decreases the target's Sneak Attack skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "5862": {
+ "name": "Sneak Attack Ineptitude Other IV",
+ "description": "Decreases the target's Sneak Attack skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "5863": {
+ "name": "Sneak Attack Ineptitude Other V",
+ "description": "Decreases the target's Sneak Attack skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "5864": {
+ "name": "Sneak Attack Ineptitude Other VI",
+ "description": "Decreases the target's Sneak Attack skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "5865": {
+ "name": "Sneak Attack Ineptitude Other VII",
+ "description": "Decreases the target's Sneak Attack skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "5866": {
+ "name": "Incantation of Sneak Attack Ineptitude Other",
+ "description": "Decreases the target's Sneak Attack skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "676",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5867": {
+ "name": "Sneak Attack Mastery Other I",
+ "description": "Increases the target's Sneak Attack skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5868": {
+ "name": "Sneak Attack Mastery Other II",
+ "description": "Increases the target's Sneak Attack skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5869": {
+ "name": "Sneak Attack Mastery Other III",
+ "description": "Increases the target's Sneak Attack skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5870": {
+ "name": "Sneak Attack Mastery Other IV",
+ "description": "Increases the target's Sneak Attack skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5871": {
+ "name": "Sneak Attack Mastery Other V",
+ "description": "Increases the target's Sneak Attack skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5872": {
+ "name": "Sneak Attack Mastery Other VI",
+ "description": "Increases the target's Sneak Attack skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5873": {
+ "name": "Sneak Attack Mastery Other VII",
+ "description": "Increases the target's Sneak Attack skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5874": {
+ "name": "Incantation of Sneak Attack Mastery Other",
+ "description": "Increases the target's Sneak Attack skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5875": {
+ "name": "Sneak Attack Mastery Self I",
+ "description": "Increases the caster's Sneak Attack skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "5876": {
+ "name": "Sneak Attack Mastery Self II",
+ "description": "Increases the caster's Sneak Attack skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5877": {
+ "name": "Sneak Attack Mastery Self III",
+ "description": "Increases the caster's Sneak Attack skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5878": {
+ "name": "Sneak Attack Mastery Self IV",
+ "description": "Increases the caster's Sneak Attack skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5879": {
+ "name": "Sneak Attack Mastery Self V",
+ "description": "Increases the caster's Sneak Attack skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "5880": {
+ "name": "Sneak Attack Mastery Self VI",
+ "description": "Increases the caster's Sneak Attack skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "5881": {
+ "name": "Sneak Attack Mastery Self VII",
+ "description": "Increases the caster's Sneak Attack skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5882": {
+ "name": "Incantation of Sneak Attack Mastery Self",
+ "description": "Increases the caster's Sneak Attack skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "677",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5883": {
+ "name": "Minor Dirty Fighting Prowess",
+ "description": "Increases the target's Dirty Fighting skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "666",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5884": {
+ "name": "Minor Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "669",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5885": {
+ "name": "Minor Recklessness Prowess",
+ "description": "Increases the target's Recklessness skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "672",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5886": {
+ "name": "Minor Shield Aptitude",
+ "description": "Increases the target's Shield skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "675",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5887": {
+ "name": "Minor Sneak Attack Prowess",
+ "description": "Increases the target's Sneak Attack skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "678",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5888": {
+ "name": "Major Dirty Fighting Prowess",
+ "description": "Increases the target's Dirty Fighting skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "666",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5889": {
+ "name": "Major Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "669",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5890": {
+ "name": "Major Recklessness Prowess",
+ "description": "Increases the target's Recklessness skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "672",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5891": {
+ "name": "Major Shield Aptitude",
+ "description": "Increases the target's Shield skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "675",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5892": {
+ "name": "Major Sneak Attack Prowess",
+ "description": "Increases the target's Sneak Attack skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "678",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5893": {
+ "name": "Epic Dirty Fighting Prowess",
+ "description": "Increases the target's Dirty Fighting skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "666",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5894": {
+ "name": "Epic Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "669",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5895": {
+ "name": "Epic Recklessness Prowess",
+ "description": "Increases the target's Recklessness skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "672",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5896": {
+ "name": "Epic Shield Aptitude",
+ "description": "Increases the target's Shield skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "675",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5897": {
+ "name": "Epic Sneak Attack Prowess",
+ "description": "Increases the target's Sneak Attack skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "678",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5898": {
+ "name": "Moderate Dirty Fighting Prowess",
+ "description": "Increases the target's Dirty Fighting skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "666",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5899": {
+ "name": "Moderate Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "669",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5900": {
+ "name": "Moderate Recklessness Prowess",
+ "description": "Increases the target's Recklessness skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "672",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5901": {
+ "name": "Moderate Shield Aptitude",
+ "description": "Increases the target's Shield skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "675",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5902": {
+ "name": "Moderate Sneak Attack Prowess",
+ "description": "Increases the target's Sneak Attack skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "678",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "5903": {
+ "name": "Prodigal Dual Wield Mastery",
+ "description": "Increases the caster's Dual Wield skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "680",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5904": {
+ "name": "Spectral Dual Wield Mastery",
+ "description": "Increases the caster's Dual Wield skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "680",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "5905": {
+ "name": "Prodigal Recklessness Mastery",
+ "description": "Increases the caster's Recklessness skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "681",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5906": {
+ "name": "Spectral Recklessness Mastery",
+ "description": "Increases the caster's Recklessness skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "681",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "5907": {
+ "name": "Prodigal Shield Mastery",
+ "description": "Increases the caster's Shield skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "682",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5908": {
+ "name": "Spectral Shield Mastery",
+ "description": "Increases the caster's Shield skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "682",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "5909": {
+ "name": "Prodigal Sneak Attack Mastery",
+ "description": "Increases the caster's Sneak Attack skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "683",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5910": {
+ "name": "Spectral Sneak Attack Mastery",
+ "description": "Increases the caster's Sneak Attack skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "683",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "5911": {
+ "name": "Prodigal Dirty Fighting Mastery",
+ "description": "Increases the caster's Dirty Fighting skill by 250 points.",
+ "school": "Creature Enchantment",
+ "family": "679",
+ "difficulty": "600",
+ "duration": "900",
+ "mana": "70"
+ },
+ "5912": {
+ "name": "Spectral Dirty Fighting Mastery",
+ "description": "Increases the caster's Dirty Fighting skill by 150 points for 9 minutes.",
+ "school": "Creature Enchantment",
+ "family": "679",
+ "difficulty": "250",
+ "duration": "540",
+ "mana": "70"
+ },
+ "5913": {
+ "name": "Weave of Dirty Fighting I",
+ "description": "Increases the target's Dirty Fighting skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5914": {
+ "name": "Weave of Dirty Fighting II",
+ "description": "Increases the target's Dirty Fighting skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5915": {
+ "name": "Weave of Dirty Fighting III",
+ "description": "Increases the target's Dirty Fighting skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5916": {
+ "name": "Weave of Dirty Fighting IV",
+ "description": "Increases the target's Dirty Fighting skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5917": {
+ "name": "Weave of Dirty Fighting V",
+ "description": "Increases the target's Dirty Fighting skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5918": {
+ "name": "Weave of Dual Wield I",
+ "description": "Increases the target's Dual Wield skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5919": {
+ "name": "Weave of Dual Wield II",
+ "description": "Increases the target's Dual Wield skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5920": {
+ "name": "Weave of Dual Wield III",
+ "description": "Increases the target's Dual Wield skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5921": {
+ "name": "Weave of Dual Wield IV",
+ "description": "Increases the target's Dual Wield skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5922": {
+ "name": "Weave of Dual Wield V",
+ "description": "Increases the target's Dual Wield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5923": {
+ "name": "Weave of Recklessness I",
+ "description": "Increases the target's Recklessness skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5924": {
+ "name": "Weave of Recklessness II",
+ "description": "Increases the target's Recklessness skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5925": {
+ "name": "Weave of Recklessness III",
+ "description": "Increases the target's Recklessness skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5926": {
+ "name": "Weave of Recklessness IV",
+ "description": "Increases the target's Recklessness skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5927": {
+ "name": "Weave of Recklessness V",
+ "description": "Increases the target's Recklessness skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5928": {
+ "name": "Weave of Shield I",
+ "description": "Increases the target's Shield skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5929": {
+ "name": "Weave of Shield II",
+ "description": "Increases the target's Shield skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5930": {
+ "name": "Weave of Shield III",
+ "description": "Increases the target's Shield skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5931": {
+ "name": "Weave of Shield IV",
+ "description": "Increases the target's Shield skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5932": {
+ "name": "Weave of Shield V",
+ "description": "Increases the target's Shield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5933": {
+ "name": "Weave of Sneak Attack I",
+ "description": "Increases the target's Sneak Attack skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5934": {
+ "name": "Weave of Sneak Attack II",
+ "description": "Increases the target's Sneak Attack skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5935": {
+ "name": "Weave of Sneak Attack III",
+ "description": "Increases the target's Sneak Attack skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5936": {
+ "name": "Weave of Sneak Attack IV",
+ "description": "Increases the target's Sneak Attack skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5937": {
+ "name": "Weave of Sneak Attack V",
+ "description": "Increases the target's Sneak Attack skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "5938": {
+ "name": "Blinding Assault",
+ "description": "Decreases all of the target's attack skills by 20 for 20 seconds.",
+ "school": "Creature Enchantment",
+ "family": "684",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "70"
+ },
+ "5939": {
+ "name": "Bleeding Assault",
+ "description": "The target loses 120 points of health over 20 seconds.",
+ "school": "Life Magic",
+ "family": "685",
+ "difficulty": "250",
+ "duration": "20",
+ "mana": "80"
+ },
+ "5940": {
+ "name": "Unbalancing Assault",
+ "description": "Decreases all of the target's defense skills by 20 for 20 seconds.",
+ "school": "Creature Enchantment",
+ "family": "686",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "70"
+ },
+ "5941": {
+ "name": "Traumatic Assault",
+ "description": "Decreases heals cast on the target by a rating of 20 for 20 seconds.",
+ "school": "Creature Enchantment",
+ "family": "687",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "70"
+ },
+ "5942": {
+ "name": "Blinding Blow",
+ "description": "Decreases all of the target's attack skills by 10 for 20 seconds.",
+ "school": "Creature Enchantment",
+ "family": "684",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "70"
+ },
+ "5943": {
+ "name": "Bleeding Blow",
+ "description": "The target loses 60 points of health over 20 seconds.",
+ "school": "Life Magic",
+ "family": "685",
+ "difficulty": "250",
+ "duration": "20",
+ "mana": "80"
+ },
+ "5944": {
+ "name": "Unbalancing Blow",
+ "description": "Decreases all of the target's defense skills by 10 for 20 seconds.",
+ "school": "Creature Enchantment",
+ "family": "686",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "70"
+ },
+ "5945": {
+ "name": "Traumatic Blow",
+ "description": "Decreases heals cast on the target by a rating of 10 for 20 seconds.",
+ "school": "Creature Enchantment",
+ "family": "687",
+ "difficulty": "1",
+ "duration": "20",
+ "mana": "70"
+ },
+ "5946": {
+ "name": "Novice Soldier's Dirty Fighting Aptitude",
+ "description": "Increases the target's Dirty Fighting skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "688",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5947": {
+ "name": "Apprentice Soldier's Dirty Fighting Aptitude",
+ "description": "Increases the target's Dirty Fighting skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "688",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5948": {
+ "name": "Journeyman Soldier's Dirty Fighting Aptitude",
+ "description": "Increases the target's Dirty Fighting skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "688",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5949": {
+ "name": "Master Soldier's Dirty Fighting Aptitude",
+ "description": "Increases the target's Dirty Fighting skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "688",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5950": {
+ "name": "Novice Soldier's Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "689",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5951": {
+ "name": "Apprentice Soldier's Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "689",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5952": {
+ "name": "Journeyman Soldier's Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "689",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5953": {
+ "name": "Master Soldier's Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "689",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5954": {
+ "name": "Novice Soldier's Recklessness Aptitude",
+ "description": "Increases the target's Recklessness skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "690",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5955": {
+ "name": "Apprentice Soldier's Recklessness Aptitude",
+ "description": "Increases the target's Recklessness skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "690",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5956": {
+ "name": "Journeyman Soldier's Recklessness Aptitude",
+ "description": "Increases the target's Recklessness skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "690",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5957": {
+ "name": "Master Soldier's Recklessness Aptitude",
+ "description": "Increases the target's Recklessness skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "690",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5958": {
+ "name": "Novice Soldier's Shield Aptitude",
+ "description": "Increases the target's Shield skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "691",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5959": {
+ "name": "Apprentice Soldier's Shield Aptitude",
+ "description": "Increases the target's Shield skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "691",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5960": {
+ "name": "Journeyman Soldier's Shield Aptitude",
+ "description": "Increases the target's Shield skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "691",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5961": {
+ "name": "Master Soldier's Shield Aptitude",
+ "description": "Increases the target's Shield skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "691",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5962": {
+ "name": "Novice Soldier's Sneak Attack Aptitude",
+ "description": "Increases the target's Sneak Attack skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "692",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5963": {
+ "name": "Apprentice Soldier's Sneak Attack Aptitude",
+ "description": "Increases the target's Sneak Attack skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "692",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5964": {
+ "name": "Journeyman Soldier's Sneak Attack Aptitude",
+ "description": "Increases the target's Sneak Attack skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "692",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5965": {
+ "name": "Master Soldier's Sneak Attack Aptitude",
+ "description": "Increases the target's Sneak Attack skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "692",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5966": {
+ "name": "Vigor of Mhoire",
+ "description": "Increases maximum health by 20 points.",
+ "school": "Life Magic",
+ "family": "693",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5967": {
+ "name": "Galvanic Arc",
+ "description": "Shoots a blue bolt of lighting at the target. The bolt does 200-300 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5968": {
+ "name": "Galvanic Blast",
+ "description": "Shoots five blue bolts of lightning outward from the caster. Each bolt does 50-100 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5969": {
+ "name": "Galvanic Strike",
+ "description": "Shoots a bolt of blue lighting at the target. The bolt does 200-300 points of electrical damage to the target.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "35"
+ },
+ "5970": {
+ "name": "Galvanic Streak",
+ "description": "Sends a bolt of lighting streaking towards the target. The bolt does 50-100 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "246",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5971": {
+ "name": "Galvanic Volley",
+ "description": "Shoots five blue bolts of lightning toward the target. Each bolt does 50-100 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "210",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "5972": {
+ "name": "Galvanic Bomb",
+ "description": "Shoots 12 waves of blue lightning outward from the caster. Each wave does 200-1000 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "5973": {
+ "name": "Protection of Mouf",
+ "description": "Reduces damage the target takes from Cold by 15%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "15",
+ "duration": "5400",
+ "mana": "10"
+ },
+ "5974": {
+ "name": "Rare Armor Damage Boost I",
+ "description": "Your damage rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "694",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5975": {
+ "name": "Rare Armor Damage Boost II",
+ "description": "Your damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "694",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5976": {
+ "name": "Rare Armor Damage Boost III",
+ "description": "Your damage rating is increased by 3.",
+ "school": "Life Magic",
+ "family": "694",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5977": {
+ "name": "Rare Armor Damage Boost IV",
+ "description": "Your damage rating is increased by 4.",
+ "school": "Life Magic",
+ "family": "694",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5978": {
+ "name": "Rare Armor Damage Boost V",
+ "description": "Your damage rating is increased by 5.",
+ "school": "Life Magic",
+ "family": "694",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "5979": {
+ "name": "Blighted Touch",
+ "description": "Sath'tik's blighted touch wracks your body. you are afflicted with his corruption and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "327",
+ "duration": "60",
+ "mana": "10"
+ },
+ "5980": {
+ "name": "Corrupted Touch",
+ "description": "Sath'tik's corruption has seeped into your skin. causing damage over time. The target loses 357 points of health over 30 seconds.",
+ "school": "Life Magic",
+ "family": "618",
+ "difficulty": "350",
+ "duration": "30",
+ "mana": "80"
+ },
+ "5981": {
+ "name": "Sath'tik's Curse",
+ "description": "Your wounds are cursed and don't heal as well.",
+ "school": "Life Magic",
+ "family": "619",
+ "difficulty": "350",
+ "duration": "300",
+ "mana": "80"
+ },
+ "5982": {
+ "name": "Aura of Hermetic Link Other I",
+ "description": "Increases a magic casting implement's mana conversion bonus by 10%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "25",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5983": {
+ "name": "Aura of Hermetic Link Other II",
+ "description": "Increases a magic casting implement's mana conversion bonus by 20%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5984": {
+ "name": "Aura of Hermetic Link Other III",
+ "description": "Increases a magic casting implement's mana conversion bonus by 30%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5985": {
+ "name": "Aura of Hermetic Link Other IV",
+ "description": "Increases a magic casting implement's mana conversion bonus by 40%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5986": {
+ "name": "Aura of Hermetic Link Other V",
+ "description": "Increases a magic casting implement's mana conversion bonus by 50%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5987": {
+ "name": "Aura of Hermetic Link Other VI",
+ "description": "Increases a magic casting implement's mana conversion bonus by 60%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5988": {
+ "name": "Aura of Hermetic Link Other VII",
+ "description": "Increases a magic casting implement's mana conversion bonus by 70%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5989": {
+ "name": "Aura of Incantation of Hermetic Link Other",
+ "description": "Increases a magic casting implement's mana conversion bonus by 80%.",
+ "school": "Item Enchantment",
+ "family": "195",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5990": {
+ "name": "Aura of Blood Drinker Other I",
+ "description": "Increases a weapon's damage value by 2 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "5991": {
+ "name": "Aura of Blood Drinker Other II",
+ "description": "Increases a weapon's damage value by 4 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "5992": {
+ "name": "Aura of Blood Drinker Other III",
+ "description": "Increases a weapon's damage value by 8 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "5993": {
+ "name": "Aura of Blood Drinker Other IV",
+ "description": "Increases a weapon's damage value by 12 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "5994": {
+ "name": "Aura of Blood Drinker Other V",
+ "description": "Increases a weapon's damage value by 16 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "5995": {
+ "name": "Aura of Blood Drinker Other VI",
+ "description": "Increases a weapon's damage value by 20 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "5996": {
+ "name": "Aura of Blood Drinker Other VII",
+ "description": "Increases a weapon's damage value by 22 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "5997": {
+ "name": "Aura of Incantation of Blood Drinker Other",
+ "description": "Increases a weapon's damage value by 24 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5998": {
+ "name": "Aura of Incantation of Blood Drinker Other",
+ "description": "Increases a weapon's damage value by 22 points.",
+ "school": "Item Enchantment",
+ "family": "154",
+ "difficulty": "350",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "5999": {
+ "name": "Aura of Defender Other I",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6000": {
+ "name": "Aura of Defender Other II",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "6001": {
+ "name": "Aura of Defender Other III",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "6002": {
+ "name": "Aura of Defender Other IV",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 10%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "6003": {
+ "name": "Aura of Defender Other V",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 13%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "6004": {
+ "name": "Aura of Defender Other VI",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 15%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "6005": {
+ "name": "Aura of Defender Other VII",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "6006": {
+ "name": "Aura of Incantation of Defender Other",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.",
+ "school": "Item Enchantment",
+ "family": "156",
+ "difficulty": "350",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6007": {
+ "name": "Aura of Heart Seeker Other I",
+ "description": "Increases a weapon's Attack Skill modifier by 2.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6008": {
+ "name": "Aura of Heart Seeker Other II",
+ "description": "Increases a weapon's Attack Skill modifier by 5.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "6009": {
+ "name": "Aura of Heart Seeker Other III",
+ "description": "Increases a weapon's Attack Skill modifier by 7.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "6010": {
+ "name": "Aura of Heart Seeker Other IV",
+ "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "6011": {
+ "name": "Aura of Heart Seeker Other V",
+ "description": "Increases a weapon's Attack Skill modifier by 12.5 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "6012": {
+ "name": "Aura of Heart Seeker Other VI",
+ "description": "Increases a weapon's Attack Skill modifier by 15.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "6013": {
+ "name": "Aura of Heart Seeker Other VII",
+ "description": "Increases a weapon's Attack Skill modifier by 17.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "6014": {
+ "name": "Aura of Incantation of Heart Seeker Other",
+ "description": "Increases a weapon's Attack Skill modifier by 20.0 percentage points.",
+ "school": "Item Enchantment",
+ "family": "152",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6015": {
+ "name": "Aura of Spirit Drinker Other I",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 1%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6016": {
+ "name": "Aura of Spirit Drinker Other II",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 2%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "6017": {
+ "name": "Aura of Spirit Drinker Other III",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 3%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "6018": {
+ "name": "Aura of Spirit Drinker Other IV",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 4%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "6019": {
+ "name": "Aura of Spirit Drinker Other V",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 5%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "6020": {
+ "name": "Aura of Spirit Drinker Other VI",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 6%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "6021": {
+ "name": "Aura of Spirit Drinker Other VII",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "6022": {
+ "name": "Aura of Incantation of Spirit Drinker Other",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6023": {
+ "name": "Aura of Incantation of Spirit Drinker Other",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.",
+ "school": "Item Enchantment",
+ "family": "695",
+ "difficulty": "350",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6024": {
+ "name": "Aura of Swift Killer Other I",
+ "description": "Improves a weapon's speed by 10 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6025": {
+ "name": "Aura of Swift Killer Other II",
+ "description": "Improves a weapon's speed by 20 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "6026": {
+ "name": "Aura of Swift Killer Other III",
+ "description": "Improves a weapon's speed by 30 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "6027": {
+ "name": "Aura of Swift Killer Other IV",
+ "description": "Improves a weapon's speed by 40 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "6028": {
+ "name": "Aura of Swift Killer Other V",
+ "description": "Improves a weapon's speed by 50 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "6029": {
+ "name": "Aura of Swift Killer Other VI",
+ "description": "Improves a weapon's speed by 60 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "6030": {
+ "name": "Aura of Swift Killer Other VII",
+ "description": "Improves a weapon's speed by 70 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "6031": {
+ "name": "Aura of Incantation of Swift Killer Other",
+ "description": "Improves a weapon's speed by 80 points.",
+ "school": "Item Enchantment",
+ "family": "158",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6032": {
+ "name": "Imprisoned",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6033": {
+ "name": "Impudence",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6034": {
+ "name": "Proving Grounds Rolling Death",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6035": {
+ "name": "Spirit of Izexi",
+ "description": "Infuses a magic caster with the spirit of the Dark Falatacot. Izexi. Increases the elemental damage bonus of an elemental magic caster by 1%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "10"
+ },
+ "6036": {
+ "name": "No Escape",
+ "description": "There is no escape! Target's run skill is reduced by 95%.",
+ "school": "Creature Enchantment",
+ "family": "78",
+ "difficulty": "500",
+ "duration": "180",
+ "mana": "10"
+ },
+ "6037": {
+ "name": "Fleeting Will",
+ "description": "The voices in your head command you. This spell decreases the target's Self by 80%.",
+ "school": "Creature Enchantment",
+ "family": "12",
+ "difficulty": "285",
+ "duration": "180",
+ "mana": "10"
+ },
+ "6038": {
+ "name": "Warm and Fuzzy",
+ "description": "The cider makes you feel all warm and fuzzy inside. raising your Stamina by 10% for 1 hour.",
+ "school": "Creature Enchantment",
+ "family": "411",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "10"
+ },
+ "6039": {
+ "name": "Legendary Weapon Tinkering Expertise",
+ "description": "Increases the target's Weapon Tinkering skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "377",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6040": {
+ "name": "Legendary Alchemical Prowess",
+ "description": "Increases the target's Alchemy skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "333",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6041": {
+ "name": "Legendary Arcane Prowess",
+ "description": "Increases the target's Arcane Lore skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "335",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6042": {
+ "name": "Legendary Armor Tinkering Expertise",
+ "description": "Increases the target's Armor Tinkering skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "337",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6043": {
+ "name": "Legendary Light Weapon Aptitude",
+ "description": "Increases the target's Light Weapons skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "311",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6044": {
+ "name": "Legendary Missile Weapon Aptitude",
+ "description": "Increases the target's Missile Weapons skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "331",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6045": {
+ "name": "Legendary Cooking Prowess",
+ "description": "Increases the target's Cooking skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "339",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6046": {
+ "name": "Legendary Creature Enchantment Aptitude",
+ "description": "Increases the target's Creature Enchantment skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "251",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6047": {
+ "name": "Legendary Finesse Weapon Aptitude",
+ "description": "Increases the target's Finesse Weapons skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "313",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6048": {
+ "name": "Legendary Deception Prowess",
+ "description": "Increases the target's Deception skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "343",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6049": {
+ "name": "Legendary Dirty Fighting Prowess",
+ "description": "Increases the target's Dirty Fighting skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "666",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6050": {
+ "name": "Legendary Dual Wield Aptitude",
+ "description": "Increases the target's Dual Wield skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "669",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6051": {
+ "name": "Legendary Fealty",
+ "description": "Increases the target's Loyalty skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "345",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6052": {
+ "name": "Legendary Fletching Prowess",
+ "description": "Increases the target's Fletching skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "347",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6053": {
+ "name": "Legendary Healing Prowess",
+ "description": "Increases the target's Healing skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "349",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6054": {
+ "name": "Legendary Impregnability",
+ "description": "Increases the target's Missile Defense skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "654",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6055": {
+ "name": "Legendary Invulnerability",
+ "description": "Increases the target's Melee Defense skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "351",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6056": {
+ "name": "Legendary Item Enchantment Aptitude",
+ "description": "Increases the target's Item Enchantment skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "253",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6057": {
+ "name": "Legendary Item Tinkering Expertise",
+ "description": "Increases the target's Item Tinkering skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "353",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6058": {
+ "name": "Legendary Jumping Prowess",
+ "description": "Increases the target's Jump skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "355",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6059": {
+ "name": "Legendary Leadership",
+ "description": "Increases the target's Leadership skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "293",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6060": {
+ "name": "Legendary Life Magic Aptitude",
+ "description": "Increases the target's Life Magic skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "357",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6061": {
+ "name": "Legendary Lockpick Prowess",
+ "description": "Increases the target's Lockpick skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "359",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6062": {
+ "name": "Legendary Magic Item Tinkering Expertise",
+ "description": "Increases the target's Magic Item Tinkering skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "361",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6063": {
+ "name": "Legendary Magic Resistance",
+ "description": "Increases the target's Magic Defense skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "299",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6064": {
+ "name": "Legendary Mana Conversion Prowess",
+ "description": "Increases the target's Mana Conversion skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "363",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6065": {
+ "name": "Legendary Monster Attunement",
+ "description": "Increases the target's Assess Creature skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "365",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6066": {
+ "name": "Legendary Person Attunement",
+ "description": "Increases the target's Assess Person skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "367",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6067": {
+ "name": "Legendary Recklessness Prowess",
+ "description": "Increases the target's Recklessness skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "672",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6068": {
+ "name": "Legendary Salvaging Aptitude",
+ "description": "Increases the target's Salvaging skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "437",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6069": {
+ "name": "Legendary Shield Aptitude",
+ "description": "Increases the target's Shield skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "675",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6070": {
+ "name": "Legendary Sneak Attack Prowess",
+ "description": "Increases the target's Sneak Attack skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "678",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6071": {
+ "name": "Legendary Sprint",
+ "description": "Increases the target's Run skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "369",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6072": {
+ "name": "Legendary Heavy Weapon Aptitude",
+ "description": "Increases the target's Heavy Weapons skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "371",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6073": {
+ "name": "Legendary Two Handed Combat Aptitude",
+ "description": "Increases the target's Two Handed Combat skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "595",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6074": {
+ "name": "Legendary Void Magic Aptitude",
+ "description": "Increases the target's Void Magic skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "646",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6075": {
+ "name": "Legendary War Magic Aptitude",
+ "description": "Increases the target's War Magic skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "255",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6076": {
+ "name": "Legendary Stamina Gain",
+ "description": "Increases the rate at which the target regains Stamina by 60%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "407",
+ "difficulty": "60",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6077": {
+ "name": "Legendary Health Gain",
+ "description": "Increases the rate at which the target regains Health by 60%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "257",
+ "difficulty": "60",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6078": {
+ "name": "Legendary Mana Gain",
+ "description": "Increases the rate at which the target regains Mana by 60%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "259",
+ "difficulty": "60",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6079": {
+ "name": "Legendary Storm Ward",
+ "description": "Reduces damage the target takes from Lightning by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "291",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6080": {
+ "name": "Legendary Acid Ward",
+ "description": "Reduces damage the target takes from Acid by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "285",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6081": {
+ "name": "Legendary Bludgeoning Ward",
+ "description": "Reduces damage the target takes from Bludgeoning by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "401",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6082": {
+ "name": "Legendary Flame Ward",
+ "description": "Reduces damage the target takes from Fire by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "287",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6083": {
+ "name": "Legendary Frost Ward",
+ "description": "Reduces damage the target takes from Cold by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "289",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6084": {
+ "name": "Legendary Piercing Ward",
+ "description": "Reduces damage the target takes from Piercing by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "405",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6085": {
+ "name": "Legendary Slashing Ward",
+ "description": "Reduces damage the target takes from Slashing by 25%. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "403",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6086": {
+ "name": "Epic Hermetic Link",
+ "description": "Increases a magic casting implement's mana conversion bonus by 25%.",
+ "school": "Item Enchantment",
+ "family": "425",
+ "difficulty": "25",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6087": {
+ "name": "Legendary Hermetic Link",
+ "description": "Increases a magic casting implement's mana conversion bonus by 30%.",
+ "school": "Item Enchantment",
+ "family": "425",
+ "difficulty": "30",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6088": {
+ "name": "Legendary Acid Bane",
+ "description": "Increases a shield or piece of armor's resistance to Acid damage by 25%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "381",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6089": {
+ "name": "Legendary Blood Thirst",
+ "description": "Increases a weapon's damage value by 10 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6090": {
+ "name": "Legendary Bludgeoning Bane",
+ "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 25%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "383",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6091": {
+ "name": "Legendary Defender",
+ "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 9%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "329",
+ "difficulty": "9",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6092": {
+ "name": "Legendary Flame Bane",
+ "description": "Increases a shield or piece of armor's resistance to Fire damage by 25%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "385",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6093": {
+ "name": "Legendary Frost Bane",
+ "description": "Increases a shield or piece of armor's resistance to Cold damage by 25%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "387",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6094": {
+ "name": "Legendary Heart Thirst",
+ "description": "Increases a weapon's Attack Skill modifier by 9%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "389",
+ "difficulty": "9",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6095": {
+ "name": "Legendary Impenetrability",
+ "description": "Improves a shield or piece of armor's Armor value by 80 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "391",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6096": {
+ "name": "Legendary Piercing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Piercing damage by 25%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "393",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6097": {
+ "name": "Legendary Slashing Bane",
+ "description": "Increases a shield or piece of armor's resistance to Slashing damage by 25%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "395",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6098": {
+ "name": "Legendary Spirit Thirst",
+ "description": "Increases the elemental damage bonus of an elemental magic caster by 7%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "323",
+ "difficulty": "7",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6099": {
+ "name": "Legendary Storm Bane",
+ "description": "Increases a shield or piece of armor's resistance to Electric damage by 25%. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "397",
+ "difficulty": "4",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6100": {
+ "name": "Legendary Swift Hunter",
+ "description": "Improves a weapon's speed by 40 points. Additional spells can be layered over this.",
+ "school": "Item Enchantment",
+ "family": "399",
+ "difficulty": "40",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6101": {
+ "name": "Legendary Willpower",
+ "description": "Increases the target's Self by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "271",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6102": {
+ "name": "Legendary Armor",
+ "description": "Increases the target's natural armor by 80 points. Additional spells can be layered over this.",
+ "school": "Life Magic",
+ "family": "379",
+ "difficulty": "80",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6103": {
+ "name": "Legendary Coordination",
+ "description": "Increases the target's Coordination by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "267",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6104": {
+ "name": "Legendary Endurance",
+ "description": "Increases the target's Endurance by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "263",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6105": {
+ "name": "Legendary Focus",
+ "description": "Increases the target's Focus by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "269",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6106": {
+ "name": "Legendary Quickness",
+ "description": "Increases the target's Quickness by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "265",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6107": {
+ "name": "Legendary Strength",
+ "description": "Increases the target's Strength by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "261",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6108": {
+ "name": "Summoning Mastery Other I",
+ "description": "Increases the target's Summoning skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6109": {
+ "name": "Summoning Mastery Other II",
+ "description": "Increases the target's Summoning skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "20"
+ },
+ "6110": {
+ "name": "Summoning Mastery Other III",
+ "description": "Increases the target's Summoning skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "6111": {
+ "name": "Summoning Mastery Other IV",
+ "description": "Increases the target's Summoning skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "6112": {
+ "name": "Summoning Mastery Other V",
+ "description": "Increases the target's Summoning skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "6113": {
+ "name": "Summoning Mastery Other VI",
+ "description": "Increases the target's Summoning skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "60"
+ },
+ "6114": {
+ "name": "Summoning Mastery Other VII",
+ "description": "Increases the target's Summoning skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "6115": {
+ "name": "Incantation of Summoning Mastery Other",
+ "description": "Increases the target's Summoning skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6116": {
+ "name": "Summoning Mastery Self I",
+ "description": "Increases the caster's Summoning skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "15"
+ },
+ "6117": {
+ "name": "Summoning Mastery Self II",
+ "description": "Increases the caster's Summoning skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "50",
+ "duration": "1800",
+ "mana": "30"
+ },
+ "6118": {
+ "name": "Summoning Mastery Self III",
+ "description": "Increases the caster's Summoning skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "100",
+ "duration": "1800",
+ "mana": "40"
+ },
+ "6119": {
+ "name": "Summoning Mastery Self IV",
+ "description": "Increases the caster's Summoning skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "150",
+ "duration": "1800",
+ "mana": "50"
+ },
+ "6120": {
+ "name": "Summoning Mastery Self V",
+ "description": "Increases the caster's Summoning skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "200",
+ "duration": "1800",
+ "mana": "60"
+ },
+ "6121": {
+ "name": "Summoning Mastery Self VI",
+ "description": "Increases the caster's Summoning skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "250",
+ "duration": "2700",
+ "mana": "70"
+ },
+ "6122": {
+ "name": "Summoning Mastery Self VII",
+ "description": "Increases the caster's Summoning skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "300",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "6123": {
+ "name": "Incantation of Summoning Mastery Self",
+ "description": "Increases the caster's Summoning skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "696",
+ "difficulty": "400",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6124": {
+ "name": "Epic Summoning Prowess",
+ "description": "Increases the target's Summoning skill by 25 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "698",
+ "difficulty": "25",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6125": {
+ "name": "Legendary Summoning Prowess",
+ "description": "Increases the target's Summoning skill by 35 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "698",
+ "difficulty": "35",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6126": {
+ "name": "Major Summoning Prowess",
+ "description": "Increases the target's Summoning skill by 15 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "698",
+ "difficulty": "2",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6127": {
+ "name": "Minor Summoning Prowess",
+ "description": "Increases the target's Summoning skill by 5 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "698",
+ "difficulty": "1",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6128": {
+ "name": "Moderate Summoning Prowess",
+ "description": "Increases the target's Summoning skill by 10 points. Additional spells can be layered over this.",
+ "school": "Creature Enchantment",
+ "family": "698",
+ "difficulty": "10",
+ "duration": "780",
+ "mana": "10"
+ },
+ "6129": {
+ "name": "Summoning Ineptitude Other I",
+ "description": "Decreases the target's Summoning skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "1",
+ "duration": "60",
+ "mana": "10"
+ },
+ "6130": {
+ "name": "Summoning Ineptitude Other II",
+ "description": "Decreases the target's Summoning skill by 15 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "75",
+ "duration": "90",
+ "mana": "20"
+ },
+ "6131": {
+ "name": "Summoning Ineptitude Other III",
+ "description": "Decreases the target's Summoning skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "125",
+ "duration": "120",
+ "mana": "30"
+ },
+ "6132": {
+ "name": "Summoning Ineptitude Other IV",
+ "description": "Decreases the target's Summoning skill by 25 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "175",
+ "duration": "150",
+ "mana": "40"
+ },
+ "6133": {
+ "name": "Summoning Ineptitude Other V",
+ "description": "Decreases the target's Summoning skill by 30 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "225",
+ "duration": "180",
+ "mana": "50"
+ },
+ "6134": {
+ "name": "Summoning Ineptitude Other VI",
+ "description": "Decreases the target's Summoning skill by 35 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "275",
+ "duration": "210",
+ "mana": "60"
+ },
+ "6135": {
+ "name": "Summoning Ineptitude Other VII",
+ "description": "Decreases the target's Summoning skill by 40 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "325",
+ "duration": "240",
+ "mana": "70"
+ },
+ "6136": {
+ "name": "Incantation of Summoning Ineptitude Other",
+ "description": "Decreases the target's Summoning skill by 45 points.",
+ "school": "Creature Enchantment",
+ "family": "697",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "6137": {
+ "name": "Weave of Summoning II",
+ "description": "Increases the target's Summoning skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "4",
+ "duration": "500",
+ "mana": "70"
+ },
+ "6138": {
+ "name": "Weave of Summoning III",
+ "description": "Increases the target's Summoning skill by 6 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "6",
+ "duration": "500",
+ "mana": "70"
+ },
+ "6139": {
+ "name": "Weave of Summoning IV",
+ "description": "Increases the target's Summoning skill by 8 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "8",
+ "duration": "500",
+ "mana": "70"
+ },
+ "6140": {
+ "name": "Weave of Summoning V",
+ "description": "Increases the target's Summoning skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "10",
+ "duration": "500",
+ "mana": "70"
+ },
+ "6141": {
+ "name": "Weave of Summoning I",
+ "description": "Increases the target's Summoning skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "659",
+ "difficulty": "2",
+ "duration": "500",
+ "mana": "70"
+ },
+ "6142": {
+ "name": "Novice Invoker's Summoning Aptitude",
+ "description": "Increases the target's Summoning skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "699",
+ "difficulty": "1",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6143": {
+ "name": "Apprentice Invoker's Summoning Aptitude",
+ "description": "Increases the target's Summoning skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "699",
+ "difficulty": "2",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6144": {
+ "name": "Journeyman Invoker's Summoning Aptitude",
+ "description": "Increases the target's Summoning skill by 10 points.",
+ "school": "Creature Enchantment",
+ "family": "699",
+ "difficulty": "3",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6145": {
+ "name": "Master Invoker's Summoning Aptitude",
+ "description": "Increases the target's Summoning skill by 20 points.",
+ "school": "Creature Enchantment",
+ "family": "699",
+ "difficulty": "4",
+ "duration": "1800",
+ "mana": "10"
+ },
+ "6146": {
+ "name": "Ride The Lightning",
+ "description": "Reduces damage the target takes from Lightning by 70%.",
+ "school": "Life Magic",
+ "family": "107",
+ "difficulty": "425",
+ "duration": "10800",
+ "mana": "80"
+ },
+ "6147": {
+ "name": "Entrance to the Frozen Valley",
+ "description": "Transports target to the Frozen Valley.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6148": {
+ "name": "Begone and Be Afraid",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6149": {
+ "name": "Rynthid Vision",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6150": {
+ "name": "Rynthid Recall",
+ "description": "Transports the caster to the area overrun by the Rynthid.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "225",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "6151": {
+ "name": "Crimson Storm",
+ "description": "Shoots eight waves of lightning outward from the caster. Each wave does 42-84 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6152": {
+ "name": "Rocky Shrapnel",
+ "description": "Shoots 12 waves of boulders outward from the caster. Each wave does 100-400 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6153": {
+ "name": "Tryptophan Coma",
+ "description": "You are soooooo sleepy. reducing your Quickness.",
+ "school": "Creature Enchantment",
+ "family": "6",
+ "difficulty": "400",
+ "duration": "300",
+ "mana": "80"
+ },
+ "6154": {
+ "name": "Entering the Basement",
+ "description": "Entering the Basement",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6155": {
+ "name": "Earthen Stomp",
+ "description": "The stomp of these creatures creates powerful rings of destructive force.",
+ "school": "Life Magic",
+ "family": "223",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6156": {
+ "name": "Viridian Ring",
+ "description": "A powerful emanation that creates a ring of overwhelming life magic.",
+ "school": "Life Magic",
+ "family": "80",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "6157": {
+ "name": "Withering Ring",
+ "description": "A terrible emanation that destroys the victim's ability to heal wounds.",
+ "school": "Life Magic",
+ "family": "643",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "6158": {
+ "name": "Poison Breath",
+ "description": "A deadly cone of poison.",
+ "school": "Life Magic",
+ "family": "530",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6159": {
+ "name": "Thorn Volley",
+ "description": "A cone of thorns and quill like projectiles.",
+ "school": "Life Magic",
+ "family": "136",
+ "difficulty": "600",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6160": {
+ "name": "Thorns",
+ "description": "Shoots a cluster of sharp thorns at the target. The cluster does 142-204 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6161": {
+ "name": "Acidic Thorns",
+ "description": "Shoots a cluster of acidic thorns at the target. The cluster does 142-204 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "117",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6162": {
+ "name": "Thorn Arc",
+ "description": "Shoots a cluster of sharp thorns at the target. The thorns do 142-204 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "122",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6163": {
+ "name": "Ring of Thorns",
+ "description": "Shoots eight clusters of thorns outward from the caster. Each does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6164": {
+ "name": "Deadly Ring of Thorns",
+ "description": "Shoots eight clusters of thorns outward from the caster. Each does 42-84 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6165": {
+ "name": "Deadly Thorn Volley",
+ "description": "A deadly cone of thorns and quill like projectiles.",
+ "school": "Life Magic",
+ "family": "136",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6166": {
+ "name": "Poisoned Wounds",
+ "description": "Your wounds are poisoned and don't heal as well.",
+ "school": "Life Magic",
+ "family": "619",
+ "difficulty": "350",
+ "duration": "30",
+ "mana": "80"
+ },
+ "6167": {
+ "name": "Poisoned Vitality",
+ "description": "Poison flows in your veins reducing your total health by 50%.",
+ "school": "Creature Enchantment",
+ "family": "410",
+ "difficulty": "50",
+ "duration": "30",
+ "mana": "10"
+ },
+ "6168": {
+ "name": "Deadly Ring of Lightning",
+ "description": "The power of storms creates a deadly ring of lightning.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6169": {
+ "name": "Deadly Lightning Volley",
+ "description": "A deadly cone of lightning.",
+ "school": "War Magic",
+ "family": "134",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6170": {
+ "name": "Honeyed Life Mead",
+ "description": "Increases maximum health by 20 points.",
+ "school": "Life Magic",
+ "family": "700",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6171": {
+ "name": "Honeyed Mana Mead",
+ "description": "Increases maximum mana by 50 points.",
+ "school": "Life Magic",
+ "family": "701",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6172": {
+ "name": "Honeyed Vigor Mead",
+ "description": "Increases maximum stamina by 50 points.",
+ "school": "Life Magic",
+ "family": "702",
+ "difficulty": "20",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6173": {
+ "name": "Raging Heart",
+ "description": "Increases maximum health by 65 points for 1 hour.",
+ "school": "Life Magic",
+ "family": "279",
+ "difficulty": "65",
+ "duration": "3600",
+ "mana": "70"
+ },
+ "6174": {
+ "name": "Twisting Wounds",
+ "description": "The Critical Damage Rating of the caster is increased by 10.",
+ "school": "Life Magic",
+ "family": "703",
+ "difficulty": "2",
+ "duration": "1200",
+ "mana": "70"
+ },
+ "6175": {
+ "name": "Increasing Pain",
+ "description": "The damage rating of the caster is increased by 10. This spell does not stack with Luminous Crystal of Surging Strength.",
+ "school": "Life Magic",
+ "family": "650",
+ "difficulty": "2",
+ "duration": "1200",
+ "mana": "70"
+ },
+ "6176": {
+ "name": "Genius",
+ "description": "Increases the caster's Focus by 50 points for a short period of time.",
+ "school": "Creature Enchantment",
+ "family": "15",
+ "difficulty": "250",
+ "duration": "30",
+ "mana": "60"
+ },
+ "6177": {
+ "name": "Gauntlet Item Mastery",
+ "description": "Increases the caster's Item Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.",
+ "school": "Creature Enchantment",
+ "family": "453",
+ "difficulty": "250",
+ "duration": "600",
+ "mana": "70"
+ },
+ "6178": {
+ "name": "Gauntlet Weapon Mastery",
+ "description": "Increases the caster's Weapon Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.",
+ "school": "Creature Enchantment",
+ "family": "455",
+ "difficulty": "250",
+ "duration": "600",
+ "mana": "70"
+ },
+ "6179": {
+ "name": "Gauntlet Magic Item Mastery",
+ "description": "Increases the caster's Magic Item Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.",
+ "school": "Creature Enchantment",
+ "family": "454",
+ "difficulty": "250",
+ "duration": "600",
+ "mana": "70"
+ },
+ "6180": {
+ "name": "Gauntlet Armor Mastery",
+ "description": "Increases the caster's Armor Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.",
+ "school": "Creature Enchantment",
+ "family": "452",
+ "difficulty": "250",
+ "duration": "600",
+ "mana": "70"
+ },
+ "6181": {
+ "name": "Singeing Flames",
+ "description": "Shoots eight waves of flame forward from the caster. Each wave does 150-250 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6182": {
+ "name": "Over-Exerted",
+ "description": "Decreases all of the target's defense skills by 500 for 1 minute.",
+ "school": "Creature Enchantment",
+ "family": "686",
+ "difficulty": "100",
+ "duration": "60",
+ "mana": "70"
+ },
+ "6183": {
+ "name": "Return to the Stronghold",
+ "description": "Transports the target to the Gauntlet.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6184": {
+ "name": "Return to the Stronghold",
+ "description": "Transports the target to the Gauntlet.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6185": {
+ "name": "Return to the Stronghold",
+ "description": "Transports the target to the Gauntlet.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "125",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6186": {
+ "name": "Deafening Wail",
+ "description": "The bark of these creatures creates powerful rings of destructive force.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6187": {
+ "name": "Screeching Howl",
+ "description": "A deafening howl creating deadly shockwaves.",
+ "school": "War Magic",
+ "family": "132",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6188": {
+ "name": "Earthquake",
+ "description": "The stomp of this creature violently shakes the ground.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "1200",
+ "duration": "-1",
+ "mana": "80"
+ },
+ "6189": {
+ "name": "Searing Disc II",
+ "description": "Shoots eight waves of acid outward from the caster. Each wave does 49-96 points of acid damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "222",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6190": {
+ "name": "Horizon's Blades II",
+ "description": "Shoots eight blades outward from the caster. Each blade does 49-98 points of slashing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "228",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6191": {
+ "name": "Cassius' Ring of Fire II",
+ "description": "Shoots eight waves of flame outward from the caster. Each wave does 49-98 points of fire damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "226",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6192": {
+ "name": "Nuhmudira's Spines II",
+ "description": "Shoots eight waves of force outward from the caster. Each wave does 49-98 points of piercing damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "227",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6193": {
+ "name": "Halo of Frost II",
+ "description": "Shoots eight waves of frost outward from the caster. Each wave does 49-98 points of cold damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "224",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6194": {
+ "name": "Eye of the Storm II",
+ "description": "Shoots eight waves of lightning outward from the caster. Each wave does 49-98 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6195": {
+ "name": "Clouded Soul II",
+ "description": "Shoots eight waves of nether outward from the caster. Each wave does 109-172 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "641",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6196": {
+ "name": "Tectonic Rifts II",
+ "description": "Shoots eight shock waves outward from the caster. Each wave does 49-96 points of bludgeoning damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "223",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6197": {
+ "name": "Eye of the Storm II",
+ "description": "Shoots eight waves of lightning outward from the caster. Each wave does 49-98 points of electric damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "225",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6198": {
+ "name": "Incantation of Lightning Bolt",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6199": {
+ "name": "Incantation of Lightning Arc",
+ "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.",
+ "school": "War Magic",
+ "family": "120",
+ "difficulty": "400",
+ "duration": "-1",
+ "mana": "40"
+ },
+ "6200": {
+ "name": "Paragon's Dual Wield Mastery V",
+ "description": "Increases the wielder's Dual Wield skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "708",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6201": {
+ "name": "Paragon's Finesse Weapon Mastery I",
+ "description": "Increases the wielder's Finesse Weapons skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "716",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6202": {
+ "name": "Paragon's Finesse Weapon Mastery II",
+ "description": "Increases the wielder's Finesse Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "716",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6203": {
+ "name": "Paragon's Finesse Weapon Mastery III",
+ "description": "Increases the wielder's Finesse Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "716",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6204": {
+ "name": "Paragon's Finesse Weapon Mastery IV",
+ "description": "Increases the wielder's Finesse Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "716",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6205": {
+ "name": "Paragon's Finesse Weapon Mastery V",
+ "description": "Increases the wielder's Finesse Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "716",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6206": {
+ "name": "Paragon's Heavy Weapon Mastery I",
+ "description": "Increases the wielder's Heavy Weapons skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "717",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6207": {
+ "name": "Paragon's Heavy Weapon Mastery II",
+ "description": "Increases the wielder's Heavy Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "717",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6208": {
+ "name": "Paragon's Heavy Weapon Mastery III",
+ "description": "Increases the wielder's Heavy Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "717",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6209": {
+ "name": "Paragon's Heavy Weapon Mastery IV",
+ "description": "Increases the wielder's Heavy Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "717",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6210": {
+ "name": "Paragon's Heavy Weapon Mastery V",
+ "description": "Increases the wielder's Heavy Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "717",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6211": {
+ "name": "Paragon's Life Magic Mastery I",
+ "description": "Increases the wielder's Life Magic skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "719",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6212": {
+ "name": "Paragon's Life Magic Mastery II",
+ "description": "Increases the wielder's Life Magic skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "719",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6213": {
+ "name": "Paragon's Life Magic Mastery III",
+ "description": "Increases the wielder's Life Magic skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "719",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6214": {
+ "name": "Paragon's Life Magic Mastery IV",
+ "description": "Increases the wielder's Life Magic skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "719",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6215": {
+ "name": "Paragon's Life Magic Mastery V",
+ "description": "Increases the wielder's Life Magic skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "719",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6216": {
+ "name": "Paragon's Light Weapon Mastery I",
+ "description": "Increases the wielder's Light Weapons skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "715",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6217": {
+ "name": "Paragon's Light Weapon Mastery II",
+ "description": "Increases the wielder's Light Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "715",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6218": {
+ "name": "Paragon's Light Weapon Mastery III",
+ "description": "Increases the wielder's Light Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "715",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6219": {
+ "name": "Paragon's Light Weapon Mastery IV",
+ "description": "Increases the wielder's Light Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "715",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6220": {
+ "name": "Paragon's Light Weapon Mastery V",
+ "description": "Increases the wielder's Light Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "715",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6221": {
+ "name": "Paragon's Missile Weapon Mastery I",
+ "description": "Increases the wielder's Missile Weapons skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "721",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6222": {
+ "name": "Paragon's Missile Weapon Mastery II",
+ "description": "Increases the wielder's Missile Weapons skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "721",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6223": {
+ "name": "Paragon's Missile Weapon Mastery III",
+ "description": "Increases the wielder's Missile Weapons skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "721",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6224": {
+ "name": "Paragon's Missile Weapon Mastery IV",
+ "description": "Increases the wielder's Missile Weapons skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "721",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6225": {
+ "name": "Paragon's Missile Weapon Mastery V",
+ "description": "Increases the wielder's Missile Weapons skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "721",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6226": {
+ "name": "Paragon's Recklessness Mastery I",
+ "description": "Increases the wielder's Recklessness skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "709",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6227": {
+ "name": "Paragon's Recklessness Mastery II",
+ "description": "Increases the wielder's Recklessness skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "709",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6228": {
+ "name": "Paragon's Recklessness Mastery III",
+ "description": "Increases the wielder's Recklessness skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "709",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6229": {
+ "name": "Paragon's Recklessness Mastery IV",
+ "description": "Increases the wielder's Recklessness skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "709",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6230": {
+ "name": "Paragon's Recklessness Mastery V",
+ "description": "Increases the wielder's Recklessness skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "709",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6231": {
+ "name": "Paragon's Sneak Attack Mastery I",
+ "description": "Increases the wielder's Sneak Attack skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "710",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6232": {
+ "name": "Paragon's Sneak Attack Mastery II",
+ "description": "Increases the wielder's Sneak Attack skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "710",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6233": {
+ "name": "Paragon's Sneak Attack Mastery III",
+ "description": "Increases the wielder's Sneak Attack skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "710",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6234": {
+ "name": "Paragon's Sneak Attack Mastery IV",
+ "description": "Increases the wielder's Sneak Attack skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "710",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6235": {
+ "name": "Paragon's Sneak Attack Mastery V",
+ "description": "Increases the wielder's Sneak Attack skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "710",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6236": {
+ "name": "Paragon's Two Handed Combat Mastery I",
+ "description": "Increases the wielder's Two Handed Combat skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "727",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6237": {
+ "name": "Paragon's Two Handed Combat Mastery II",
+ "description": "Increases the wielder's Two Handed Combat skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "727",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6238": {
+ "name": "Paragon's Two Handed Combat Mastery III",
+ "description": "Increases the wielder's Two Handed Combat skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "727",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6239": {
+ "name": "Paragon's Two Handed Combat Mastery IV",
+ "description": "Increases the wielder's Two Handed Combat skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "727",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6240": {
+ "name": "Paragon's Two Handed Combat Mastery V",
+ "description": "Increases the wielder's Two Handed Combat skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "727",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6241": {
+ "name": "Paragon's Void Magic Mastery I",
+ "description": "Increases the wielder's Void Magic skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "720",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6242": {
+ "name": "Paragon's Void Magic Mastery II",
+ "description": "Increases the wielder's Void Magic skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "720",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6243": {
+ "name": "Paragon's Void Magic Mastery III",
+ "description": "Increases the wielder's Void Magic skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "720",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6244": {
+ "name": "Paragon's Void Magic Mastery IV",
+ "description": "Increases the wielder's Void Magic skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "720",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6245": {
+ "name": "Paragon's Void Magic Mastery V",
+ "description": "Increases the wielder's Void Magic skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "720",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6246": {
+ "name": "Paragon's War Magic Mastery I",
+ "description": "Increases the wielder's War Magic skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "718",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6247": {
+ "name": "Paragon's War Magic Mastery II",
+ "description": "Increases the wielder's War Magic skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "718",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6248": {
+ "name": "Paragon's War Magic Mastery III",
+ "description": "Increases the wielder's War Magic skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "718",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6249": {
+ "name": "Paragon's War Magic Mastery IV",
+ "description": "Increases the wielder's War Magic skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "718",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6250": {
+ "name": "Paragon's War Magic Mastery V",
+ "description": "Increases the wielder's War Magic skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "718",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6251": {
+ "name": "Paragon's Dirty Fighting Mastery I",
+ "description": "Increases the wielder's Dirty Fighting skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "707",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6252": {
+ "name": "Paragon's Dirty Fighting Mastery II",
+ "description": "Increases the wielder's Dirty Fighting skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "707",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6253": {
+ "name": "Paragon's Dirty Fighting Mastery III",
+ "description": "Increases the wielder's Dirty Fighting skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "707",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6254": {
+ "name": "Paragon's Dirty Fighting Mastery IV",
+ "description": "Increases the wielder's Dirty Fighting skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "707",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6255": {
+ "name": "Paragon's Dirty Fighting Mastery V",
+ "description": "Increases the wielder's Dirty Fighting skill by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "707",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6256": {
+ "name": "Paragon's Dual Wield Mastery I",
+ "description": "Increases the wielder's Dual Wield skill by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "708",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6257": {
+ "name": "Paragon's Dual Wield Mastery II",
+ "description": "Increases the wielder's Dual Wield skill by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "708",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6258": {
+ "name": "Paragon's Dual Wield Mastery III",
+ "description": "Increases the wielder's Dual Wield skill by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "708",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6259": {
+ "name": "Paragon's Dual Wield Mastery IV",
+ "description": "Increases the wielder's Dual Wield skill by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "708",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6260": {
+ "name": "Paragon's Willpower V",
+ "description": "Increases the wielder's Self by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "726",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6261": {
+ "name": "Paragon's Coordination I",
+ "description": "Increases the wielder's Coordination by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "723",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6262": {
+ "name": "Paragon's Coordination II",
+ "description": "Increases the wielder's Coordination by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "723",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6263": {
+ "name": "Paragon's Coordination III",
+ "description": "Increases the wielder's Coordination by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "723",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6264": {
+ "name": "Paragon's Coordination IV",
+ "description": "Increases the wielder's Coordination by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "723",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6265": {
+ "name": "Paragon's Coordination V",
+ "description": "Increases the wielder's Coordination by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "723",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6266": {
+ "name": "Paragon's Endurance I",
+ "description": "Increases the wielder's Endurance by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "704",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6267": {
+ "name": "Paragon's Endurance II",
+ "description": "Increases the wielder's Endurance by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "704",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6268": {
+ "name": "Paragon's Endurance III",
+ "description": "Increases the wielder's Endurance by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "704",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6269": {
+ "name": "Paragon's Endurance IV",
+ "description": "Increases the wielder's Endurance by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "704",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6270": {
+ "name": "Paragon's Endurance V",
+ "description": "Increases the wielder's Endurance by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "704",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6271": {
+ "name": "Paragon's Focus I",
+ "description": "Increases the wielder's Focus by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "725",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6272": {
+ "name": "Paragon's Focus II",
+ "description": "Increases the wielder's Focus by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "725",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6273": {
+ "name": "Paragon's Focus III",
+ "description": "Increases the wielder's Focus by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "725",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6274": {
+ "name": "Paragon's Focus IV",
+ "description": "Increases the wielder's Focus by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "725",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6275": {
+ "name": "Paragon's Focus V",
+ "description": "Increases the wielder's Focus by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "725",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6276": {
+ "name": "Paragon Quickness I",
+ "description": "Increases the wielder's Quickness by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "724",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6277": {
+ "name": "Paragon Quickness II",
+ "description": "Increases the wielder's Quickness by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "724",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6278": {
+ "name": "Paragon Quickness III",
+ "description": "Increases the wielder's Quickness by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "724",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6279": {
+ "name": "Paragon Quickness IV",
+ "description": "Increases the wielder's Quickness by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "724",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6280": {
+ "name": "Paragon Quickness V",
+ "description": "Increases the wielder's Quickness by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "724",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6281": {
+ "name": "Paragon's Strength I",
+ "description": "Increases the wielder's Strength by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "722",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6282": {
+ "name": "Paragon's Strength II",
+ "description": "Increases the wielder's Strength by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "722",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6283": {
+ "name": "Paragon's Strength III",
+ "description": "Increases the wielder's Strength by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "722",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6284": {
+ "name": "Paragon's Strength IV",
+ "description": "Increases the wielder's Strength by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "722",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6285": {
+ "name": "Paragon's Strength V",
+ "description": "Increases the wielder's Strength by 5 points.",
+ "school": "Creature Enchantment",
+ "family": "722",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6286": {
+ "name": "Paragon's Willpower I",
+ "description": "Increases the wielder's Self by 1 point.",
+ "school": "Creature Enchantment",
+ "family": "726",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6287": {
+ "name": "Paragon's Willpower II",
+ "description": "Increases the wielder's Self by 2 points.",
+ "school": "Creature Enchantment",
+ "family": "726",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6288": {
+ "name": "Paragon's Willpower III",
+ "description": "Increases the wielder's Self by 3 points.",
+ "school": "Creature Enchantment",
+ "family": "726",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6289": {
+ "name": "Paragon's Willpower IV",
+ "description": "Increases the wielder's Self by 4 points.",
+ "school": "Creature Enchantment",
+ "family": "726",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "80"
+ },
+ "6290": {
+ "name": "Paragon's Stamina V",
+ "description": "Increases maximum stamina by 10 points.",
+ "school": "Life Magic",
+ "family": "706",
+ "difficulty": "10",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6291": {
+ "name": "Paragon's Critical Boost I",
+ "description": "The critical damage rating of the wielder is increased by 1.",
+ "school": "Life Magic",
+ "family": "713",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6292": {
+ "name": "Paragon's Critical Damage Boost II",
+ "description": "The critical damage rating of the wielder is increased by 2.",
+ "school": "Life Magic",
+ "family": "713",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6293": {
+ "name": "Paragon's Critical Damage Boost III",
+ "description": "The critical damage rating of the wielder is increased by 3.",
+ "school": "Life Magic",
+ "family": "713",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6294": {
+ "name": "Paragon's Critical Damage Boost IV",
+ "description": "The damage rating of the wielder is increased by 4.",
+ "school": "Life Magic",
+ "family": "713",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6295": {
+ "name": "Paragon's Critical Damage Boost V",
+ "description": "The critical damage rating of the wielder is increased by 5.",
+ "school": "Life Magic",
+ "family": "713",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6296": {
+ "name": "Paragon's Critical Damage Reduction I",
+ "description": "The critical damage reduction rating of the wielder is increased by 1.",
+ "school": "Life Magic",
+ "family": "714",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6297": {
+ "name": "Paragon's Critical Damage Reduction II",
+ "description": "The critical damage reduction rating of the wielder is increased by 2.",
+ "school": "Life Magic",
+ "family": "714",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6298": {
+ "name": "Paragon's Critical Damage Reduction III",
+ "description": "The critical damage reduction rating of the wielder is increased by 3.",
+ "school": "Life Magic",
+ "family": "714",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6299": {
+ "name": "Paragon's Critical Damage Reduction IV",
+ "description": "The critical damage reduction rating of the wielder is increased by 4.",
+ "school": "Life Magic",
+ "family": "714",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6300": {
+ "name": "Paragon's Critical Damage Reduction V",
+ "description": "The critical damage reduction rating of the wielder is increased by 5.",
+ "school": "Life Magic",
+ "family": "714",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6301": {
+ "name": "Paragon's Damage Boost I",
+ "description": "The damage rating of the wielder is increased by 1.",
+ "school": "Life Magic",
+ "family": "711",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6302": {
+ "name": "Paragon's Damage Boost II",
+ "description": "The damage rating of the wielder is increased by 2.",
+ "school": "Life Magic",
+ "family": "711",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6303": {
+ "name": "Paragon's Damage Boost III",
+ "description": "The damage rating of the wielder is increased by 3.",
+ "school": "Life Magic",
+ "family": "711",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6304": {
+ "name": "Paragon's Damage Boost IV",
+ "description": "The damage rating of the wielder is increased by 4.",
+ "school": "Life Magic",
+ "family": "711",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6305": {
+ "name": "Paragon's Damage Boost V",
+ "description": "The damage rating of the wielder is increased by 5.",
+ "school": "Life Magic",
+ "family": "711",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6306": {
+ "name": "Paragon's Damage Reduction I",
+ "description": "The damage reduction rating of the wielder is increased by 1.",
+ "school": "Life Magic",
+ "family": "712",
+ "difficulty": "1",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6307": {
+ "name": "Paragon's Damage Reduction II",
+ "description": "The damage reduction rating of the wielder is increased by 2.",
+ "school": "Life Magic",
+ "family": "712",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6308": {
+ "name": "Paragon's Damage Reduction III",
+ "description": "The damage reduction rating of the wielder is increased by 3.",
+ "school": "Life Magic",
+ "family": "712",
+ "difficulty": "3",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6309": {
+ "name": "Paragon's Damage Reduction IV",
+ "description": "The damage reduction rating of the wielder is increased by 4.",
+ "school": "Life Magic",
+ "family": "712",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6310": {
+ "name": "Paragon's Damage Reduction V",
+ "description": "The damage reduction rating of the wielder is increased by 5.",
+ "school": "Life Magic",
+ "family": "712",
+ "difficulty": "5",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6311": {
+ "name": "Paragon's Mana I",
+ "description": "Increases maximum mana by 2 points.",
+ "school": "Life Magic",
+ "family": "705",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6312": {
+ "name": "Paragon's Mana II",
+ "description": "Increases maximum mana by 4 points.",
+ "school": "Life Magic",
+ "family": "705",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6313": {
+ "name": "Paragon's Mana III",
+ "description": "Increases maximum mana by 6 points.",
+ "school": "Life Magic",
+ "family": "705",
+ "difficulty": "6",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6314": {
+ "name": "Paragon's Mana IV",
+ "description": "Increases maximum mana by 8 points.",
+ "school": "Life Magic",
+ "family": "705",
+ "difficulty": "8",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6315": {
+ "name": "Paragon's Mana V",
+ "description": "Increases maximum mana by 10 points.",
+ "school": "Life Magic",
+ "family": "705",
+ "difficulty": "10",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6316": {
+ "name": "Paragon's Stamina I",
+ "description": "Increases maximum stamina by 2 points.",
+ "school": "Life Magic",
+ "family": "706",
+ "difficulty": "2",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6317": {
+ "name": "Paragon's Stamina II",
+ "description": "Increases maximum stamina by 4 points.",
+ "school": "Life Magic",
+ "family": "706",
+ "difficulty": "4",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6318": {
+ "name": "Paragon's Stamina III",
+ "description": "Increases maximum stamina by 6 points.",
+ "school": "Life Magic",
+ "family": "706",
+ "difficulty": "6",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6319": {
+ "name": "Paragon's Stamina IV",
+ "description": "Increases maximum stamina by 8 points.",
+ "school": "Life Magic",
+ "family": "706",
+ "difficulty": "8",
+ "duration": "5400",
+ "mana": "70"
+ },
+ "6320": {
+ "name": "Ring of Skulls II",
+ "description": "Shoots eight nether skulls outward from the caster. Each skull does 109-172 points of nether damage to the first thing it hits.",
+ "school": "Void Magic",
+ "family": "641",
+ "difficulty": "300",
+ "duration": "-1",
+ "mana": "90"
+ },
+ "6321": {
+ "name": "Viridian Rise Recall",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "6322": {
+ "name": "Viridian Rise Great Tree Recall",
+ "description": "Transports the target to the specified destination.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "250",
+ "duration": "-1",
+ "mana": "150"
+ },
+ "6323": {
+ "name": "Gauntlet Imperil Self",
+ "description": "Decreases the caster's natural armor by 300 points.",
+ "school": "Life Magic",
+ "family": "116",
+ "difficulty": "400",
+ "duration": "1800",
+ "mana": "80"
+ },
+ "6324": {
+ "name": "Gauntlet Vulnerability Self",
+ "description": "Increases damage the caster takes from Fire by 210%.",
+ "school": "Life Magic",
+ "family": "110",
+ "difficulty": "400",
+ "duration": "1800",
+ "mana": "80"
+ },
+ "6325": {
+ "name": "Celestial Hand Stronghold Recall",
+ "description": "Sends the caster to the Stronghold of the Celestial Hand.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6326": {
+ "name": "Eldrytch Web Stronghold Recall",
+ "description": "Sends the caster to the Stronghold of the Eldrytch Web.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6327": {
+ "name": "Radiant Blood Stronghold Recall",
+ "description": "Sends the caster to the Stronghold of the Radiant Blood.",
+ "school": "Item Enchantment",
+ "family": "214",
+ "difficulty": "150",
+ "duration": "-1",
+ "mana": "50"
+ },
+ "6328": {
+ "name": "Gauntlet Critical Damage Boost I",
+ "description": "Your critical damage rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "732",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6329": {
+ "name": "Gauntlet Critical Damage Boost II",
+ "description": "Your critical damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "732",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6330": {
+ "name": "Gauntlet Damage Boost I",
+ "description": "Your damage rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "729",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6331": {
+ "name": "Gauntlet Damage Boost II",
+ "description": "Your damage rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "729",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6332": {
+ "name": "Gauntlet Damage Reduction I",
+ "description": "Your damage reduction rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "728",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6333": {
+ "name": "Gauntlet Damage Reduction II",
+ "description": "Your damage reduction rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "728",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6334": {
+ "name": "Gauntlet Critical Damage Reduction I",
+ "description": "Your critical damage reduction rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "733",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6335": {
+ "name": "Gauntlet Critical Damage Reduction II",
+ "description": "Your critical damage reduction rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "733",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6336": {
+ "name": "Gauntlet Healing Boost I",
+ "description": "Your healing rating is increased by 1.",
+ "school": "Life Magic",
+ "family": "730",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6337": {
+ "name": "Gauntlet Healing Boost II",
+ "description": "Your healing rating is increased by 2.",
+ "school": "Life Magic",
+ "family": "730",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6338": {
+ "name": "Gauntlet Vitality I",
+ "description": "Your vitality is increased by 1.",
+ "school": "Life Magic",
+ "family": "731",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6339": {
+ "name": "Gauntlet Vitality II",
+ "description": "Your vitality is increased by 2.",
+ "school": "Life Magic",
+ "family": "731",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ },
+ "6340": {
+ "name": "Gauntlet Vitality III",
+ "description": "Your vitality is increased by 3.",
+ "school": "Life Magic",
+ "family": "731",
+ "difficulty": "1",
+ "duration": "10800",
+ "mana": "70"
+ }
+ }
+}
\ No newline at end of file
diff --git a/main.py b/main.py
index f0b6cae2..a0940816 100644
--- a/main.py
+++ b/main.py
@@ -20,6 +20,7 @@ from fastapi.staticfiles import StaticFiles
from fastapi.encoders import jsonable_encoder
from pydantic import BaseModel
from typing import Optional
+import httpx
# Async database support
from sqlalchemy.dialects.postgresql import insert as pg_insert
@@ -49,6 +50,9 @@ logger = logging.getLogger(__name__)
# Get log level from environment (DEBUG, INFO, WARNING, ERROR)
log_level = os.getenv('LOG_LEVEL', 'INFO').upper()
logger.setLevel(getattr(logging, log_level, logging.INFO))
+
+# Inventory service configuration
+INVENTORY_SERVICE_URL = os.getenv('INVENTORY_SERVICE_URL', 'http://inventory-service:8000')
# In-memory caches for REST endpoints
_cached_live: dict = {"players": []}
_cached_trails: dict = {"trails": []}
@@ -293,29 +297,24 @@ async def get_trails(
# --- GET Inventory Endpoints ---------------------------------
@app.get("/inventory/{character_name}")
async def get_character_inventory(character_name: str):
- """Get the complete inventory for a specific character from the database."""
+ """Get the complete inventory for a specific character - inventory service only."""
try:
- query = """
- SELECT name, icon, object_class, value, burden, has_id_data, item_data, timestamp
- FROM character_inventories
- WHERE character_name = :character_name
- ORDER BY name
- """
- rows = await database.fetch_all(query, {"character_name": character_name})
-
- if not rows:
- raise HTTPException(status_code=404, detail=f"No inventory found for character '{character_name}'")
-
- items = []
- for row in rows:
- item = dict(row)
- items.append(item)
-
- return JSONResponse(content=jsonable_encoder({
- "character_name": character_name,
- "item_count": len(items),
- "items": items
- }))
+ async with httpx.AsyncClient(timeout=10.0) as client:
+ response = await client.get(
+ f"{INVENTORY_SERVICE_URL}/inventory/{character_name}"
+ )
+
+ if response.status_code == 200:
+ return JSONResponse(content=response.json())
+ elif response.status_code == 404:
+ raise HTTPException(status_code=404, detail=f"No inventory found for character '{character_name}'")
+ else:
+ logger.error(f"Inventory service returned {response.status_code} for {character_name}")
+ raise HTTPException(status_code=502, detail="Inventory service error")
+
+ except httpx.RequestError as e:
+ logger.error(f"Could not reach inventory service: {e}")
+ raise HTTPException(status_code=503, detail="Inventory service unavailable")
except HTTPException:
raise
except Exception as e:
@@ -458,18 +457,42 @@ async def _broadcast_to_browser_clients(snapshot: dict):
browser_conns.discard(ws)
-async def _store_inventory(inventory_msg: FullInventoryMessage):
- """Store complete character inventory to database with extracted searchable fields.
-
- Processes each item to extract key fields for indexing while preserving
- complete item data in JSONB format. Uses UPSERT to handle item updates.
- """
+async def _forward_to_inventory_service(inventory_msg: FullInventoryMessage):
+ """Forward inventory data to the inventory microservice for processing."""
try:
- # Create inventory directory if it doesn't exist
+ # Prepare data for inventory service
+ inventory_data = {
+ "character_name": inventory_msg.character_name,
+ "timestamp": inventory_msg.timestamp.isoformat(),
+ "items": inventory_msg.items
+ }
+
+ async with httpx.AsyncClient(timeout=30.0) as client:
+ response = await client.post(
+ f"{INVENTORY_SERVICE_URL}/process-inventory",
+ json=inventory_data
+ )
+
+ if response.status_code == 200:
+ result = response.json()
+ logger.info(f"Inventory service processed {result['processed']} items for {inventory_msg.character_name}")
+ else:
+ logger.error(f"Inventory service error {response.status_code}: {response.text}")
+
+ except Exception as e:
+ logger.error(f"Failed to forward inventory to service: {e}")
+ # Don't raise - this shouldn't block the main storage
+
+async def _store_inventory(inventory_msg: FullInventoryMessage):
+ """Forward inventory data to inventory microservice for processing and storage."""
+ try:
+ # Forward to inventory microservice for enhanced processing and storage
+ await _forward_to_inventory_service(inventory_msg)
+
+ # Optional: Create JSON file for debugging (can be removed in production)
inventory_dir = Path("./inventory")
inventory_dir.mkdir(exist_ok=True)
- # Store as JSON file for backwards compatibility / debugging
file_path = inventory_dir / f"{inventory_msg.character_name}_inventory.json"
inventory_data = {
"character_name": inventory_msg.character_name,
@@ -480,51 +503,9 @@ async def _store_inventory(inventory_msg: FullInventoryMessage):
with open(file_path, 'w') as f:
json.dump(inventory_data, f, indent=2)
-
- # Store items in database
- for item in inventory_msg.items:
- # Extract searchable fields
- item_id = item.get("Id")
- if item_id is None:
- continue # Skip items without ID
-
- name = item.get("Name", "")
- icon = item.get("Icon", 0)
- object_class = item.get("ObjectClass", 0)
- value = item.get("Value", 0)
- burden = item.get("Burden", 0)
- has_id_data = item.get("HasIdData", False)
-
- # UPSERT item into database
- stmt = pg_insert(character_inventories).values(
- character_name=inventory_msg.character_name,
- item_id=item_id,
- timestamp=inventory_msg.timestamp,
- name=name,
- icon=icon,
- object_class=object_class,
- value=value,
- burden=burden,
- has_id_data=has_id_data,
- item_data=item
- ).on_conflict_do_update(
- constraint="uq_char_item",
- set_={
- "timestamp": inventory_msg.timestamp,
- "name": name,
- "icon": icon,
- "object_class": object_class,
- "value": value,
- "burden": burden,
- "has_id_data": has_id_data,
- "item_data": item
- }
- )
-
- await database.execute(stmt)
except Exception as e:
- logger.error(f"Failed to store inventory for {inventory_msg.character_name}: {e}", exc_info=True)
+ logger.error(f"Failed to forward inventory for {inventory_msg.character_name}: {e}", exc_info=True)
raise
@@ -636,13 +617,13 @@ async def ws_receive_snapshots(
logger.debug(f"Updated kills for {snap.character_name}: +{delta} (total from {last} to {snap.kills})")
ws_receive_snapshots._last_kills[key] = snap.kills
except Exception as db_error:
- logger.error(f"Database transaction failed for {snap.character_name}: {db_error}", exc_info=True)
+ logger.error(f"💾 Database transaction failed for {snap.character_name} (session: {snap.session_id[:8]}): {db_error}", exc_info=True)
continue
# Broadcast updated snapshot to all browser clients
await _broadcast_to_browser_clients(snap.dict())
- logger.debug(f"Processed telemetry from {snap.character_name}")
+ logger.debug(f"✅ Processed telemetry from {snap.character_name} (session: {snap.session_id[:8]}, kills: {snap.kills})")
except Exception as e:
- logger.error(f"Failed to process telemetry event: {e}", exc_info=True)
+ logger.error(f"❌ Failed to process telemetry event from {data.get('character_name', 'unknown')}: {e}", exc_info=True)
continue
# --- Rare event: update total and session counters and persist ---
if msg_type == "rare":
@@ -892,6 +873,22 @@ async def get_stats(character_name: str):
raise HTTPException(status_code=500, detail="Internal server error")
# -------------------- static frontend ---------------------------
+# Custom icon handler that prioritizes clean icons over originals
+from fastapi.responses import FileResponse
+
+@app.get("/icons/{icon_filename}")
+async def serve_icon(icon_filename: str):
+ """Serve icons from static/icons directory"""
+
+ # Serve from static/icons directory
+ icon_path = Path("static/icons") / icon_filename
+ if icon_path.exists():
+ return FileResponse(icon_path, media_type="image/png")
+
+ # Icon not found
+ raise HTTPException(status_code=404, detail="Icon not found")
+
+# Icons are now served from static/icons directory
# Serve SPA files (catch-all for frontend routes)
# Mount the single-page application frontend (static assets) at root path
app.mount("/", StaticFiles(directory="static", html=True), name="static")
diff --git a/static/icons/06000133.png b/static/icons/06000133.png
new file mode 100755
index 00000000..b24367a1
Binary files /dev/null and b/static/icons/06000133.png differ
diff --git a/static/icons/0600015D.png b/static/icons/0600015D.png
new file mode 100755
index 00000000..ccd35e1b
Binary files /dev/null and b/static/icons/0600015D.png differ
diff --git a/static/icons/0600015F.png b/static/icons/0600015F.png
new file mode 100755
index 00000000..967ecb6c
Binary files /dev/null and b/static/icons/0600015F.png differ
diff --git a/static/icons/06000160.png b/static/icons/06000160.png
new file mode 100755
index 00000000..97217067
Binary files /dev/null and b/static/icons/06000160.png differ
diff --git a/static/icons/06000162.png b/static/icons/06000162.png
new file mode 100755
index 00000000..f110f9d0
Binary files /dev/null and b/static/icons/06000162.png differ
diff --git a/static/icons/06000163.png b/static/icons/06000163.png
new file mode 100755
index 00000000..f8b2d235
Binary files /dev/null and b/static/icons/06000163.png differ
diff --git a/static/icons/06000164.png b/static/icons/06000164.png
new file mode 100755
index 00000000..2db0addd
Binary files /dev/null and b/static/icons/06000164.png differ
diff --git a/static/icons/06000165.png b/static/icons/06000165.png
new file mode 100755
index 00000000..dfd98909
Binary files /dev/null and b/static/icons/06000165.png differ
diff --git a/static/icons/06000167.png b/static/icons/06000167.png
new file mode 100755
index 00000000..94bb966f
Binary files /dev/null and b/static/icons/06000167.png differ
diff --git a/static/icons/0600016A.png b/static/icons/0600016A.png
new file mode 100755
index 00000000..f709c122
Binary files /dev/null and b/static/icons/0600016A.png differ
diff --git a/static/icons/0600016B.png b/static/icons/0600016B.png
new file mode 100755
index 00000000..1be49b43
Binary files /dev/null and b/static/icons/0600016B.png differ
diff --git a/static/icons/0600016D.png b/static/icons/0600016D.png
new file mode 100755
index 00000000..f81c2bd6
Binary files /dev/null and b/static/icons/0600016D.png differ
diff --git a/static/icons/0600016E.png b/static/icons/0600016E.png
new file mode 100755
index 00000000..ca328d5d
Binary files /dev/null and b/static/icons/0600016E.png differ
diff --git a/static/icons/0600016F.png b/static/icons/0600016F.png
new file mode 100755
index 00000000..b7acd50c
Binary files /dev/null and b/static/icons/0600016F.png differ
diff --git a/static/icons/06000170.png b/static/icons/06000170.png
new file mode 100755
index 00000000..dc1c9516
Binary files /dev/null and b/static/icons/06000170.png differ
diff --git a/static/icons/06000173.png b/static/icons/06000173.png
new file mode 100755
index 00000000..4216f380
Binary files /dev/null and b/static/icons/06000173.png differ
diff --git a/static/icons/06000178.png b/static/icons/06000178.png
new file mode 100755
index 00000000..a4c665b7
Binary files /dev/null and b/static/icons/06000178.png differ
diff --git a/static/icons/0600017B.png b/static/icons/0600017B.png
new file mode 100755
index 00000000..bc7c1efe
Binary files /dev/null and b/static/icons/0600017B.png differ
diff --git a/static/icons/0600017C.png b/static/icons/0600017C.png
new file mode 100755
index 00000000..cd607886
Binary files /dev/null and b/static/icons/0600017C.png differ
diff --git a/static/icons/06000261.png b/static/icons/06000261.png
new file mode 100755
index 00000000..a8ccd9b8
Binary files /dev/null and b/static/icons/06000261.png differ
diff --git a/static/icons/060002C4.png b/static/icons/060002C4.png
new file mode 100755
index 00000000..b8fb21f1
Binary files /dev/null and b/static/icons/060002C4.png differ
diff --git a/static/icons/060002C5.png b/static/icons/060002C5.png
new file mode 100755
index 00000000..6a50bda5
Binary files /dev/null and b/static/icons/060002C5.png differ
diff --git a/static/icons/060002C6.png b/static/icons/060002C6.png
new file mode 100755
index 00000000..ef1f5e27
Binary files /dev/null and b/static/icons/060002C6.png differ
diff --git a/static/icons/060002C7.png b/static/icons/060002C7.png
new file mode 100755
index 00000000..39bb1be9
Binary files /dev/null and b/static/icons/060002C7.png differ
diff --git a/static/icons/060002C8.png b/static/icons/060002C8.png
new file mode 100755
index 00000000..407287b7
Binary files /dev/null and b/static/icons/060002C8.png differ
diff --git a/static/icons/060002C9.png b/static/icons/060002C9.png
new file mode 100755
index 00000000..de47cea3
Binary files /dev/null and b/static/icons/060002C9.png differ
diff --git a/static/icons/060004C6.png b/static/icons/060004C6.png
new file mode 100755
index 00000000..eb60df4d
Binary files /dev/null and b/static/icons/060004C6.png differ
diff --git a/static/icons/060004C8.png b/static/icons/060004C8.png
new file mode 100755
index 00000000..ee847572
Binary files /dev/null and b/static/icons/060004C8.png differ
diff --git a/static/icons/060004CA.png b/static/icons/060004CA.png
new file mode 100755
index 00000000..5d09c369
Binary files /dev/null and b/static/icons/060004CA.png differ
diff --git a/static/icons/060004DA.png b/static/icons/060004DA.png
new file mode 100755
index 00000000..fa695d20
Binary files /dev/null and b/static/icons/060004DA.png differ
diff --git a/static/icons/060004DB.png b/static/icons/060004DB.png
new file mode 100755
index 00000000..38adb513
Binary files /dev/null and b/static/icons/060004DB.png differ
diff --git a/static/icons/06000F50.png b/static/icons/06000F50.png
new file mode 100755
index 00000000..72f9b800
Binary files /dev/null and b/static/icons/06000F50.png differ
diff --git a/static/icons/06000F52.png b/static/icons/06000F52.png
new file mode 100755
index 00000000..8d0e06ad
Binary files /dev/null and b/static/icons/06000F52.png differ
diff --git a/static/icons/06000F53.png b/static/icons/06000F53.png
new file mode 100755
index 00000000..e283c960
Binary files /dev/null and b/static/icons/06000F53.png differ
diff --git a/static/icons/06000F54.png b/static/icons/06000F54.png
new file mode 100755
index 00000000..7a622a72
Binary files /dev/null and b/static/icons/06000F54.png differ
diff --git a/static/icons/06000F5A.png b/static/icons/06000F5A.png
new file mode 100755
index 00000000..ebe46e6e
Binary files /dev/null and b/static/icons/06000F5A.png differ
diff --git a/static/icons/06000F5D.png b/static/icons/06000F5D.png
new file mode 100755
index 00000000..6b87d4f9
Binary files /dev/null and b/static/icons/06000F5D.png differ
diff --git a/static/icons/06000F5E.png b/static/icons/06000F5E.png
new file mode 100755
index 00000000..e39dd67f
Binary files /dev/null and b/static/icons/06000F5E.png differ
diff --git a/static/icons/06000F66.png b/static/icons/06000F66.png
new file mode 100755
index 00000000..845d7f5f
Binary files /dev/null and b/static/icons/06000F66.png differ
diff --git a/static/icons/06000F68.png b/static/icons/06000F68.png
new file mode 100755
index 00000000..86673e81
Binary files /dev/null and b/static/icons/06000F68.png differ
diff --git a/static/icons/06000F6A.png b/static/icons/06000F6A.png
new file mode 100755
index 00000000..6b87d4f9
Binary files /dev/null and b/static/icons/06000F6A.png differ
diff --git a/static/icons/06000F6B.png b/static/icons/06000F6B.png
new file mode 100755
index 00000000..8d9d8602
Binary files /dev/null and b/static/icons/06000F6B.png differ
diff --git a/static/icons/06000F6C.png b/static/icons/06000F6C.png
new file mode 100755
index 00000000..d4214151
Binary files /dev/null and b/static/icons/06000F6C.png differ
diff --git a/static/icons/06000F6E.png b/static/icons/06000F6E.png
new file mode 100755
index 00000000..bf2091bb
Binary files /dev/null and b/static/icons/06000F6E.png differ
diff --git a/static/icons/06000F86.png b/static/icons/06000F86.png
new file mode 100755
index 00000000..30054c42
Binary files /dev/null and b/static/icons/06000F86.png differ
diff --git a/static/icons/06000F89.png b/static/icons/06000F89.png
new file mode 100755
index 00000000..1dff6432
Binary files /dev/null and b/static/icons/06000F89.png differ
diff --git a/static/icons/06000F8A.png b/static/icons/06000F8A.png
new file mode 100755
index 00000000..23ff232e
Binary files /dev/null and b/static/icons/06000F8A.png differ
diff --git a/static/icons/06000F90.png b/static/icons/06000F90.png
new file mode 100755
index 00000000..040e83b3
Binary files /dev/null and b/static/icons/06000F90.png differ
diff --git a/static/icons/06000F93.png b/static/icons/06000F93.png
new file mode 100755
index 00000000..f98ff3ff
Binary files /dev/null and b/static/icons/06000F93.png differ
diff --git a/static/icons/06000F98.png b/static/icons/06000F98.png
new file mode 100755
index 00000000..7a58af26
Binary files /dev/null and b/static/icons/06000F98.png differ
diff --git a/static/icons/06000FAA.png b/static/icons/06000FAA.png
new file mode 100755
index 00000000..b2fa2008
Binary files /dev/null and b/static/icons/06000FAA.png differ
diff --git a/static/icons/06000FAC.png b/static/icons/06000FAC.png
new file mode 100755
index 00000000..0cc35a9a
Binary files /dev/null and b/static/icons/06000FAC.png differ
diff --git a/static/icons/06000FAD.png b/static/icons/06000FAD.png
new file mode 100755
index 00000000..2464a1a8
Binary files /dev/null and b/static/icons/06000FAD.png differ
diff --git a/static/icons/06000FAE.png b/static/icons/06000FAE.png
new file mode 100755
index 00000000..a71ce3f4
Binary files /dev/null and b/static/icons/06000FAE.png differ
diff --git a/static/icons/06000FB1.png b/static/icons/06000FB1.png
new file mode 100755
index 00000000..6e318f0f
Binary files /dev/null and b/static/icons/06000FB1.png differ
diff --git a/static/icons/06000FB5.png b/static/icons/06000FB5.png
new file mode 100755
index 00000000..94ef66a6
Binary files /dev/null and b/static/icons/06000FB5.png differ
diff --git a/static/icons/06000FB7.png b/static/icons/06000FB7.png
new file mode 100755
index 00000000..af8a8616
Binary files /dev/null and b/static/icons/06000FB7.png differ
diff --git a/static/icons/06000FB8.png b/static/icons/06000FB8.png
new file mode 100755
index 00000000..6cd459e2
Binary files /dev/null and b/static/icons/06000FB8.png differ
diff --git a/static/icons/06000FBB.png b/static/icons/06000FBB.png
new file mode 100755
index 00000000..9caf0cbc
Binary files /dev/null and b/static/icons/06000FBB.png differ
diff --git a/static/icons/06000FBC.png b/static/icons/06000FBC.png
new file mode 100755
index 00000000..2277bc7e
Binary files /dev/null and b/static/icons/06000FBC.png differ
diff --git a/static/icons/06000FBD.png b/static/icons/06000FBD.png
new file mode 100755
index 00000000..6b81290a
Binary files /dev/null and b/static/icons/06000FBD.png differ
diff --git a/static/icons/06000FBE.png b/static/icons/06000FBE.png
new file mode 100755
index 00000000..bf6f85a8
Binary files /dev/null and b/static/icons/06000FBE.png differ
diff --git a/static/icons/06000FC2.png b/static/icons/06000FC2.png
new file mode 100755
index 00000000..851bcd47
Binary files /dev/null and b/static/icons/06000FC2.png differ
diff --git a/static/icons/06000FC3.png b/static/icons/06000FC3.png
new file mode 100755
index 00000000..d3474a13
Binary files /dev/null and b/static/icons/06000FC3.png differ
diff --git a/static/icons/06000FC4.png b/static/icons/06000FC4.png
new file mode 100755
index 00000000..0667f0ad
Binary files /dev/null and b/static/icons/06000FC4.png differ
diff --git a/static/icons/06000FC6.png b/static/icons/06000FC6.png
new file mode 100755
index 00000000..404fc911
Binary files /dev/null and b/static/icons/06000FC6.png differ
diff --git a/static/icons/06000FC7.png b/static/icons/06000FC7.png
new file mode 100755
index 00000000..3ef25835
Binary files /dev/null and b/static/icons/06000FC7.png differ
diff --git a/static/icons/06000FCA.png b/static/icons/06000FCA.png
new file mode 100755
index 00000000..986f5a3d
Binary files /dev/null and b/static/icons/06000FCA.png differ
diff --git a/static/icons/06000FCB.png b/static/icons/06000FCB.png
new file mode 100755
index 00000000..82fbd607
Binary files /dev/null and b/static/icons/06000FCB.png differ
diff --git a/static/icons/06000FCC.png b/static/icons/06000FCC.png
new file mode 100755
index 00000000..e0a57423
Binary files /dev/null and b/static/icons/06000FCC.png differ
diff --git a/static/icons/06000FCD.png b/static/icons/06000FCD.png
new file mode 100755
index 00000000..40e05f1d
Binary files /dev/null and b/static/icons/06000FCD.png differ
diff --git a/static/icons/06000FCE.png b/static/icons/06000FCE.png
new file mode 100755
index 00000000..282c6b78
Binary files /dev/null and b/static/icons/06000FCE.png differ
diff --git a/static/icons/06000FCF.png b/static/icons/06000FCF.png
new file mode 100755
index 00000000..8cc90ecc
Binary files /dev/null and b/static/icons/06000FCF.png differ
diff --git a/static/icons/06000FD3.png b/static/icons/06000FD3.png
new file mode 100755
index 00000000..cda04288
Binary files /dev/null and b/static/icons/06000FD3.png differ
diff --git a/static/icons/06000FD5.png b/static/icons/06000FD5.png
new file mode 100755
index 00000000..7baf5b09
Binary files /dev/null and b/static/icons/06000FD5.png differ
diff --git a/static/icons/06000FD6.png b/static/icons/06000FD6.png
new file mode 100755
index 00000000..5b0f7335
Binary files /dev/null and b/static/icons/06000FD6.png differ
diff --git a/static/icons/06000FD7.png b/static/icons/06000FD7.png
new file mode 100755
index 00000000..aaa35033
Binary files /dev/null and b/static/icons/06000FD7.png differ
diff --git a/static/icons/06000FD8.png b/static/icons/06000FD8.png
new file mode 100755
index 00000000..50eb36ad
Binary files /dev/null and b/static/icons/06000FD8.png differ
diff --git a/static/icons/06000FD9.png b/static/icons/06000FD9.png
new file mode 100755
index 00000000..13f71ab8
Binary files /dev/null and b/static/icons/06000FD9.png differ
diff --git a/static/icons/06000FDA.png b/static/icons/06000FDA.png
new file mode 100755
index 00000000..f78794fd
Binary files /dev/null and b/static/icons/06000FDA.png differ
diff --git a/static/icons/06000FDB.png b/static/icons/06000FDB.png
new file mode 100755
index 00000000..fcea2242
Binary files /dev/null and b/static/icons/06000FDB.png differ
diff --git a/static/icons/06000FDC.png b/static/icons/06000FDC.png
new file mode 100755
index 00000000..654e0fc9
Binary files /dev/null and b/static/icons/06000FDC.png differ
diff --git a/static/icons/06000FDD.png b/static/icons/06000FDD.png
new file mode 100755
index 00000000..b541439c
Binary files /dev/null and b/static/icons/06000FDD.png differ
diff --git a/static/icons/06000FDE.png b/static/icons/06000FDE.png
new file mode 100755
index 00000000..92e61d62
Binary files /dev/null and b/static/icons/06000FDE.png differ
diff --git a/static/icons/06000FE0.png b/static/icons/06000FE0.png
new file mode 100755
index 00000000..9962b23c
Binary files /dev/null and b/static/icons/06000FE0.png differ
diff --git a/static/icons/06000FE1.png b/static/icons/06000FE1.png
new file mode 100755
index 00000000..a4e00bc7
Binary files /dev/null and b/static/icons/06000FE1.png differ
diff --git a/static/icons/06000FE2.png b/static/icons/06000FE2.png
new file mode 100755
index 00000000..e2af5d80
Binary files /dev/null and b/static/icons/06000FE2.png differ
diff --git a/static/icons/06000FE4.png b/static/icons/06000FE4.png
new file mode 100755
index 00000000..67df636f
Binary files /dev/null and b/static/icons/06000FE4.png differ
diff --git a/static/icons/06000FE5.png b/static/icons/06000FE5.png
new file mode 100755
index 00000000..97b0767e
Binary files /dev/null and b/static/icons/06000FE5.png differ
diff --git a/static/icons/06000FE6.png b/static/icons/06000FE6.png
new file mode 100755
index 00000000..7a6996a5
Binary files /dev/null and b/static/icons/06000FE6.png differ
diff --git a/static/icons/06000FE7.png b/static/icons/06000FE7.png
new file mode 100755
index 00000000..84a7a62b
Binary files /dev/null and b/static/icons/06000FE7.png differ
diff --git a/static/icons/06000FE8.png b/static/icons/06000FE8.png
new file mode 100755
index 00000000..c500844e
Binary files /dev/null and b/static/icons/06000FE8.png differ
diff --git a/static/icons/06000FE9.png b/static/icons/06000FE9.png
new file mode 100755
index 00000000..9f8270d6
Binary files /dev/null and b/static/icons/06000FE9.png differ
diff --git a/static/icons/06000FEA.png b/static/icons/06000FEA.png
new file mode 100755
index 00000000..2cf8ac72
Binary files /dev/null and b/static/icons/06000FEA.png differ
diff --git a/static/icons/06000FEB.png b/static/icons/06000FEB.png
new file mode 100755
index 00000000..7e31ff16
Binary files /dev/null and b/static/icons/06000FEB.png differ
diff --git a/static/icons/06000FEC.png b/static/icons/06000FEC.png
new file mode 100755
index 00000000..a62a7ff4
Binary files /dev/null and b/static/icons/06000FEC.png differ
diff --git a/static/icons/06000FED.png b/static/icons/06000FED.png
new file mode 100755
index 00000000..8339745e
Binary files /dev/null and b/static/icons/06000FED.png differ
diff --git a/static/icons/06000FEE.png b/static/icons/06000FEE.png
new file mode 100755
index 00000000..c5c7d238
Binary files /dev/null and b/static/icons/06000FEE.png differ
diff --git a/static/icons/06000FEF.png b/static/icons/06000FEF.png
new file mode 100755
index 00000000..8381b92c
Binary files /dev/null and b/static/icons/06000FEF.png differ
diff --git a/static/icons/06000FF0.png b/static/icons/06000FF0.png
new file mode 100755
index 00000000..416daf57
Binary files /dev/null and b/static/icons/06000FF0.png differ
diff --git a/static/icons/06000FF1.png b/static/icons/06000FF1.png
new file mode 100755
index 00000000..1ef3c107
Binary files /dev/null and b/static/icons/06000FF1.png differ
diff --git a/static/icons/06000FF2.png b/static/icons/06000FF2.png
new file mode 100755
index 00000000..54ad1a6f
Binary files /dev/null and b/static/icons/06000FF2.png differ
diff --git a/static/icons/06000FF3.png b/static/icons/06000FF3.png
new file mode 100755
index 00000000..b5704ad2
Binary files /dev/null and b/static/icons/06000FF3.png differ
diff --git a/static/icons/06000FF4.png b/static/icons/06000FF4.png
new file mode 100755
index 00000000..6ab52260
Binary files /dev/null and b/static/icons/06000FF4.png differ
diff --git a/static/icons/06000FF5.png b/static/icons/06000FF5.png
new file mode 100755
index 00000000..918484cb
Binary files /dev/null and b/static/icons/06000FF5.png differ
diff --git a/static/icons/06000FFA.png b/static/icons/06000FFA.png
new file mode 100755
index 00000000..2a904305
Binary files /dev/null and b/static/icons/06000FFA.png differ
diff --git a/static/icons/06000FFC.png b/static/icons/06000FFC.png
new file mode 100755
index 00000000..9c435185
Binary files /dev/null and b/static/icons/06000FFC.png differ
diff --git a/static/icons/06001007.png b/static/icons/06001007.png
new file mode 100755
index 00000000..de96f323
Binary files /dev/null and b/static/icons/06001007.png differ
diff --git a/static/icons/06001010.png b/static/icons/06001010.png
new file mode 100755
index 00000000..180f2a8c
Binary files /dev/null and b/static/icons/06001010.png differ
diff --git a/static/icons/06001011.png b/static/icons/06001011.png
new file mode 100755
index 00000000..0a124401
Binary files /dev/null and b/static/icons/06001011.png differ
diff --git a/static/icons/06001012.png b/static/icons/06001012.png
new file mode 100755
index 00000000..ae3361e2
Binary files /dev/null and b/static/icons/06001012.png differ
diff --git a/static/icons/06001013.png b/static/icons/06001013.png
new file mode 100755
index 00000000..2508c6f1
Binary files /dev/null and b/static/icons/06001013.png differ
diff --git a/static/icons/06001015.png b/static/icons/06001015.png
new file mode 100755
index 00000000..809bb0e4
Binary files /dev/null and b/static/icons/06001015.png differ
diff --git a/static/icons/06001018.png b/static/icons/06001018.png
new file mode 100755
index 00000000..37bd94ee
Binary files /dev/null and b/static/icons/06001018.png differ
diff --git a/static/icons/0600101E.png b/static/icons/0600101E.png
new file mode 100755
index 00000000..af7ee547
Binary files /dev/null and b/static/icons/0600101E.png differ
diff --git a/static/icons/0600101F.png b/static/icons/0600101F.png
new file mode 100755
index 00000000..f6c4bfc1
Binary files /dev/null and b/static/icons/0600101F.png differ
diff --git a/static/icons/06001020.png b/static/icons/06001020.png
new file mode 100755
index 00000000..e878bf5d
Binary files /dev/null and b/static/icons/06001020.png differ
diff --git a/static/icons/06001022.png b/static/icons/06001022.png
new file mode 100755
index 00000000..34c02ef1
Binary files /dev/null and b/static/icons/06001022.png differ
diff --git a/static/icons/06001024.png b/static/icons/06001024.png
new file mode 100755
index 00000000..c75c6b1b
Binary files /dev/null and b/static/icons/06001024.png differ
diff --git a/static/icons/06001026.png b/static/icons/06001026.png
new file mode 100755
index 00000000..de242f9c
Binary files /dev/null and b/static/icons/06001026.png differ
diff --git a/static/icons/06001027.png b/static/icons/06001027.png
new file mode 100755
index 00000000..91161140
Binary files /dev/null and b/static/icons/06001027.png differ
diff --git a/static/icons/06001028.png b/static/icons/06001028.png
new file mode 100755
index 00000000..8a26f31a
Binary files /dev/null and b/static/icons/06001028.png differ
diff --git a/static/icons/0600102C.png b/static/icons/0600102C.png
new file mode 100755
index 00000000..565d6fb4
Binary files /dev/null and b/static/icons/0600102C.png differ
diff --git a/static/icons/06001030.png b/static/icons/06001030.png
new file mode 100755
index 00000000..603b6507
Binary files /dev/null and b/static/icons/06001030.png differ
diff --git a/static/icons/06001031.png b/static/icons/06001031.png
new file mode 100755
index 00000000..5d9a8168
Binary files /dev/null and b/static/icons/06001031.png differ
diff --git a/static/icons/06001032.png b/static/icons/06001032.png
new file mode 100755
index 00000000..330e05fa
Binary files /dev/null and b/static/icons/06001032.png differ
diff --git a/static/icons/06001033.png b/static/icons/06001033.png
new file mode 100755
index 00000000..b193b8ff
Binary files /dev/null and b/static/icons/06001033.png differ
diff --git a/static/icons/06001034.png b/static/icons/06001034.png
new file mode 100755
index 00000000..11167e0a
Binary files /dev/null and b/static/icons/06001034.png differ
diff --git a/static/icons/06001035.png b/static/icons/06001035.png
new file mode 100755
index 00000000..d22eda4b
Binary files /dev/null and b/static/icons/06001035.png differ
diff --git a/static/icons/06001036.png b/static/icons/06001036.png
new file mode 100755
index 00000000..0e59168e
Binary files /dev/null and b/static/icons/06001036.png differ
diff --git a/static/icons/06001037.png b/static/icons/06001037.png
new file mode 100755
index 00000000..e58a2bb5
Binary files /dev/null and b/static/icons/06001037.png differ
diff --git a/static/icons/06001038.png b/static/icons/06001038.png
new file mode 100755
index 00000000..51f8e816
Binary files /dev/null and b/static/icons/06001038.png differ
diff --git a/static/icons/06001039.png b/static/icons/06001039.png
new file mode 100755
index 00000000..be462ba5
Binary files /dev/null and b/static/icons/06001039.png differ
diff --git a/static/icons/0600103A.png b/static/icons/0600103A.png
new file mode 100755
index 00000000..013cb35f
Binary files /dev/null and b/static/icons/0600103A.png differ
diff --git a/static/icons/0600103B.png b/static/icons/0600103B.png
new file mode 100755
index 00000000..79dde46d
Binary files /dev/null and b/static/icons/0600103B.png differ
diff --git a/static/icons/0600103C.png b/static/icons/0600103C.png
new file mode 100755
index 00000000..f8d1b31d
Binary files /dev/null and b/static/icons/0600103C.png differ
diff --git a/static/icons/0600103D.png b/static/icons/0600103D.png
new file mode 100755
index 00000000..104afc19
Binary files /dev/null and b/static/icons/0600103D.png differ
diff --git a/static/icons/0600103F.png b/static/icons/0600103F.png
new file mode 100755
index 00000000..fa9edc08
Binary files /dev/null and b/static/icons/0600103F.png differ
diff --git a/static/icons/06001040.png b/static/icons/06001040.png
new file mode 100755
index 00000000..277af763
Binary files /dev/null and b/static/icons/06001040.png differ
diff --git a/static/icons/06001041.png b/static/icons/06001041.png
new file mode 100755
index 00000000..d34b288b
Binary files /dev/null and b/static/icons/06001041.png differ
diff --git a/static/icons/06001042.png b/static/icons/06001042.png
new file mode 100755
index 00000000..c84e7d4c
Binary files /dev/null and b/static/icons/06001042.png differ
diff --git a/static/icons/06001043.png b/static/icons/06001043.png
new file mode 100755
index 00000000..70701a86
Binary files /dev/null and b/static/icons/06001043.png differ
diff --git a/static/icons/06001044.png b/static/icons/06001044.png
new file mode 100755
index 00000000..653e0fab
Binary files /dev/null and b/static/icons/06001044.png differ
diff --git a/static/icons/06001045.png b/static/icons/06001045.png
new file mode 100755
index 00000000..04247860
Binary files /dev/null and b/static/icons/06001045.png differ
diff --git a/static/icons/06001046.png b/static/icons/06001046.png
new file mode 100755
index 00000000..e1422299
Binary files /dev/null and b/static/icons/06001046.png differ
diff --git a/static/icons/06001048.png b/static/icons/06001048.png
new file mode 100755
index 00000000..daec6b22
Binary files /dev/null and b/static/icons/06001048.png differ
diff --git a/static/icons/06001049.png b/static/icons/06001049.png
new file mode 100755
index 00000000..86990a3f
Binary files /dev/null and b/static/icons/06001049.png differ
diff --git a/static/icons/0600104A.png b/static/icons/0600104A.png
new file mode 100755
index 00000000..2c6a1c07
Binary files /dev/null and b/static/icons/0600104A.png differ
diff --git a/static/icons/0600104C.png b/static/icons/0600104C.png
new file mode 100755
index 00000000..fa6174eb
Binary files /dev/null and b/static/icons/0600104C.png differ
diff --git a/static/icons/0600104D.png b/static/icons/0600104D.png
new file mode 100755
index 00000000..5a1f8732
Binary files /dev/null and b/static/icons/0600104D.png differ
diff --git a/static/icons/0600104E.png b/static/icons/0600104E.png
new file mode 100755
index 00000000..17579bfa
Binary files /dev/null and b/static/icons/0600104E.png differ
diff --git a/static/icons/06001052.png b/static/icons/06001052.png
new file mode 100755
index 00000000..828777a6
Binary files /dev/null and b/static/icons/06001052.png differ
diff --git a/static/icons/06001055.png b/static/icons/06001055.png
new file mode 100755
index 00000000..ea3f7c46
Binary files /dev/null and b/static/icons/06001055.png differ
diff --git a/static/icons/06001056.png b/static/icons/06001056.png
new file mode 100755
index 00000000..38876142
Binary files /dev/null and b/static/icons/06001056.png differ
diff --git a/static/icons/0600105A.png b/static/icons/0600105A.png
new file mode 100755
index 00000000..eb8d466c
Binary files /dev/null and b/static/icons/0600105A.png differ
diff --git a/static/icons/0600105B.png b/static/icons/0600105B.png
new file mode 100755
index 00000000..98273e63
Binary files /dev/null and b/static/icons/0600105B.png differ
diff --git a/static/icons/0600105C.png b/static/icons/0600105C.png
new file mode 100755
index 00000000..e43c73b0
Binary files /dev/null and b/static/icons/0600105C.png differ
diff --git a/static/icons/0600105D.png b/static/icons/0600105D.png
new file mode 100755
index 00000000..4e4783b1
Binary files /dev/null and b/static/icons/0600105D.png differ
diff --git a/static/icons/0600105E.png b/static/icons/0600105E.png
new file mode 100755
index 00000000..87985572
Binary files /dev/null and b/static/icons/0600105E.png differ
diff --git a/static/icons/0600105F.png b/static/icons/0600105F.png
new file mode 100755
index 00000000..0fd5d644
Binary files /dev/null and b/static/icons/0600105F.png differ
diff --git a/static/icons/06001061.png b/static/icons/06001061.png
new file mode 100755
index 00000000..4536f9a5
Binary files /dev/null and b/static/icons/06001061.png differ
diff --git a/static/icons/06001063.png b/static/icons/06001063.png
new file mode 100755
index 00000000..8adb1208
Binary files /dev/null and b/static/icons/06001063.png differ
diff --git a/static/icons/06001065.png b/static/icons/06001065.png
new file mode 100755
index 00000000..08384a2c
Binary files /dev/null and b/static/icons/06001065.png differ
diff --git a/static/icons/06001066.png b/static/icons/06001066.png
new file mode 100755
index 00000000..34fbca80
Binary files /dev/null and b/static/icons/06001066.png differ
diff --git a/static/icons/0600106B.png b/static/icons/0600106B.png
new file mode 100755
index 00000000..e48cc293
Binary files /dev/null and b/static/icons/0600106B.png differ
diff --git a/static/icons/0600106C.png b/static/icons/0600106C.png
new file mode 100755
index 00000000..8530f13f
Binary files /dev/null and b/static/icons/0600106C.png differ
diff --git a/static/icons/0600106E.png b/static/icons/0600106E.png
new file mode 100755
index 00000000..eb4c4273
Binary files /dev/null and b/static/icons/0600106E.png differ
diff --git a/static/icons/0600106F.png b/static/icons/0600106F.png
new file mode 100755
index 00000000..b01435f8
Binary files /dev/null and b/static/icons/0600106F.png differ
diff --git a/static/icons/06001070.png b/static/icons/06001070.png
new file mode 100755
index 00000000..879b5860
Binary files /dev/null and b/static/icons/06001070.png differ
diff --git a/static/icons/06001071.png b/static/icons/06001071.png
new file mode 100755
index 00000000..9cfd7a1b
Binary files /dev/null and b/static/icons/06001071.png differ
diff --git a/static/icons/06001072.png b/static/icons/06001072.png
new file mode 100755
index 00000000..623c3ef7
Binary files /dev/null and b/static/icons/06001072.png differ
diff --git a/static/icons/06001073.png b/static/icons/06001073.png
new file mode 100755
index 00000000..30a8c9fd
Binary files /dev/null and b/static/icons/06001073.png differ
diff --git a/static/icons/06001074.png b/static/icons/06001074.png
new file mode 100755
index 00000000..46e85c16
Binary files /dev/null and b/static/icons/06001074.png differ
diff --git a/static/icons/06001075.png b/static/icons/06001075.png
new file mode 100755
index 00000000..6d84765f
Binary files /dev/null and b/static/icons/06001075.png differ
diff --git a/static/icons/0600107E.png b/static/icons/0600107E.png
new file mode 100755
index 00000000..a112af19
Binary files /dev/null and b/static/icons/0600107E.png differ
diff --git a/static/icons/06001080.png b/static/icons/06001080.png
new file mode 100755
index 00000000..7c9f08c0
Binary files /dev/null and b/static/icons/06001080.png differ
diff --git a/static/icons/0600109A.png b/static/icons/0600109A.png
new file mode 100755
index 00000000..fcc7ffec
Binary files /dev/null and b/static/icons/0600109A.png differ
diff --git a/static/icons/0600109D.png b/static/icons/0600109D.png
new file mode 100755
index 00000000..b82c7895
Binary files /dev/null and b/static/icons/0600109D.png differ
diff --git a/static/icons/0600109E.png b/static/icons/0600109E.png
new file mode 100755
index 00000000..b8f18e1f
Binary files /dev/null and b/static/icons/0600109E.png differ
diff --git a/static/icons/0600109F.png b/static/icons/0600109F.png
new file mode 100755
index 00000000..74dfa29f
Binary files /dev/null and b/static/icons/0600109F.png differ
diff --git a/static/icons/060010A0.png b/static/icons/060010A0.png
new file mode 100755
index 00000000..24f8546d
Binary files /dev/null and b/static/icons/060010A0.png differ
diff --git a/static/icons/060010A1.png b/static/icons/060010A1.png
new file mode 100755
index 00000000..e22eaa1e
Binary files /dev/null and b/static/icons/060010A1.png differ
diff --git a/static/icons/060010A2.png b/static/icons/060010A2.png
new file mode 100755
index 00000000..45a2dffd
Binary files /dev/null and b/static/icons/060010A2.png differ
diff --git a/static/icons/060010A3.png b/static/icons/060010A3.png
new file mode 100755
index 00000000..30cb8a3b
Binary files /dev/null and b/static/icons/060010A3.png differ
diff --git a/static/icons/060010A4.png b/static/icons/060010A4.png
new file mode 100755
index 00000000..a246490f
Binary files /dev/null and b/static/icons/060010A4.png differ
diff --git a/static/icons/060010A5.png b/static/icons/060010A5.png
new file mode 100755
index 00000000..e00c218b
Binary files /dev/null and b/static/icons/060010A5.png differ
diff --git a/static/icons/060010A6.png b/static/icons/060010A6.png
new file mode 100755
index 00000000..6fd497a0
Binary files /dev/null and b/static/icons/060010A6.png differ
diff --git a/static/icons/060010B2.png b/static/icons/060010B2.png
new file mode 100755
index 00000000..73cfc479
Binary files /dev/null and b/static/icons/060010B2.png differ
diff --git a/static/icons/060010B5.png b/static/icons/060010B5.png
new file mode 100755
index 00000000..d7ccd5fe
Binary files /dev/null and b/static/icons/060010B5.png differ
diff --git a/static/icons/060010BB.png b/static/icons/060010BB.png
new file mode 100755
index 00000000..4b194e0c
Binary files /dev/null and b/static/icons/060010BB.png differ
diff --git a/static/icons/060010BC.png b/static/icons/060010BC.png
new file mode 100755
index 00000000..c3644009
Binary files /dev/null and b/static/icons/060010BC.png differ
diff --git a/static/icons/060010BD.png b/static/icons/060010BD.png
new file mode 100755
index 00000000..386c0069
Binary files /dev/null and b/static/icons/060010BD.png differ
diff --git a/static/icons/060010BE.png b/static/icons/060010BE.png
new file mode 100755
index 00000000..bad04201
Binary files /dev/null and b/static/icons/060010BE.png differ
diff --git a/static/icons/060010BF.png b/static/icons/060010BF.png
new file mode 100755
index 00000000..341974a3
Binary files /dev/null and b/static/icons/060010BF.png differ
diff --git a/static/icons/060010C0.png b/static/icons/060010C0.png
new file mode 100755
index 00000000..8574f12f
Binary files /dev/null and b/static/icons/060010C0.png differ
diff --git a/static/icons/060010C3.png b/static/icons/060010C3.png
new file mode 100755
index 00000000..4bea26c9
Binary files /dev/null and b/static/icons/060010C3.png differ
diff --git a/static/icons/060010C4.png b/static/icons/060010C4.png
new file mode 100755
index 00000000..0e5c3f61
Binary files /dev/null and b/static/icons/060010C4.png differ
diff --git a/static/icons/060010C5.png b/static/icons/060010C5.png
new file mode 100755
index 00000000..1eadc08c
Binary files /dev/null and b/static/icons/060010C5.png differ
diff --git a/static/icons/060010C6.png b/static/icons/060010C6.png
new file mode 100755
index 00000000..5ab78b00
Binary files /dev/null and b/static/icons/060010C6.png differ
diff --git a/static/icons/060010C7.png b/static/icons/060010C7.png
new file mode 100755
index 00000000..6d65dea5
Binary files /dev/null and b/static/icons/060010C7.png differ
diff --git a/static/icons/060010C8.png b/static/icons/060010C8.png
new file mode 100755
index 00000000..107e7472
Binary files /dev/null and b/static/icons/060010C8.png differ
diff --git a/static/icons/060010C9.png b/static/icons/060010C9.png
new file mode 100755
index 00000000..bfdd21f3
Binary files /dev/null and b/static/icons/060010C9.png differ
diff --git a/static/icons/060010CA.png b/static/icons/060010CA.png
new file mode 100755
index 00000000..0fb22cce
Binary files /dev/null and b/static/icons/060010CA.png differ
diff --git a/static/icons/060010CB.png b/static/icons/060010CB.png
new file mode 100755
index 00000000..780455b4
Binary files /dev/null and b/static/icons/060010CB.png differ
diff --git a/static/icons/060010CC.png b/static/icons/060010CC.png
new file mode 100755
index 00000000..f24a79a0
Binary files /dev/null and b/static/icons/060010CC.png differ
diff --git a/static/icons/060010CD.png b/static/icons/060010CD.png
new file mode 100755
index 00000000..1bdd2a96
Binary files /dev/null and b/static/icons/060010CD.png differ
diff --git a/static/icons/060010CE.png b/static/icons/060010CE.png
new file mode 100755
index 00000000..416da650
Binary files /dev/null and b/static/icons/060010CE.png differ
diff --git a/static/icons/060010CF.png b/static/icons/060010CF.png
new file mode 100755
index 00000000..b751d01c
Binary files /dev/null and b/static/icons/060010CF.png differ
diff --git a/static/icons/060010D0.png b/static/icons/060010D0.png
new file mode 100755
index 00000000..aaf0175a
Binary files /dev/null and b/static/icons/060010D0.png differ
diff --git a/static/icons/060010D2.png b/static/icons/060010D2.png
new file mode 100755
index 00000000..bb54abe0
Binary files /dev/null and b/static/icons/060010D2.png differ
diff --git a/static/icons/060010D4.png b/static/icons/060010D4.png
new file mode 100755
index 00000000..43c5430e
Binary files /dev/null and b/static/icons/060010D4.png differ
diff --git a/static/icons/060010D5.png b/static/icons/060010D5.png
new file mode 100755
index 00000000..f68d04d1
Binary files /dev/null and b/static/icons/060010D5.png differ
diff --git a/static/icons/060010D6.png b/static/icons/060010D6.png
new file mode 100755
index 00000000..9b25840a
Binary files /dev/null and b/static/icons/060010D6.png differ
diff --git a/static/icons/060010D8.png b/static/icons/060010D8.png
new file mode 100755
index 00000000..2adae671
Binary files /dev/null and b/static/icons/060010D8.png differ
diff --git a/static/icons/060010D9.png b/static/icons/060010D9.png
new file mode 100755
index 00000000..35a5183a
Binary files /dev/null and b/static/icons/060010D9.png differ
diff --git a/static/icons/060010DA.png b/static/icons/060010DA.png
new file mode 100755
index 00000000..e9697444
Binary files /dev/null and b/static/icons/060010DA.png differ
diff --git a/static/icons/060010DD.png b/static/icons/060010DD.png
new file mode 100755
index 00000000..0c2dd733
Binary files /dev/null and b/static/icons/060010DD.png differ
diff --git a/static/icons/060010DE.png b/static/icons/060010DE.png
new file mode 100755
index 00000000..2f37fdea
Binary files /dev/null and b/static/icons/060010DE.png differ
diff --git a/static/icons/060010E2.png b/static/icons/060010E2.png
new file mode 100755
index 00000000..3e3118bd
Binary files /dev/null and b/static/icons/060010E2.png differ
diff --git a/static/icons/060010E3.png b/static/icons/060010E3.png
new file mode 100755
index 00000000..ceb4b73f
Binary files /dev/null and b/static/icons/060010E3.png differ
diff --git a/static/icons/060010E5.png b/static/icons/060010E5.png
new file mode 100755
index 00000000..5004716c
Binary files /dev/null and b/static/icons/060010E5.png differ
diff --git a/static/icons/060010E6.png b/static/icons/060010E6.png
new file mode 100755
index 00000000..a5a9fc8d
Binary files /dev/null and b/static/icons/060010E6.png differ
diff --git a/static/icons/060010E7.png b/static/icons/060010E7.png
new file mode 100755
index 00000000..0c503cc5
Binary files /dev/null and b/static/icons/060010E7.png differ
diff --git a/static/icons/060010E8.png b/static/icons/060010E8.png
new file mode 100755
index 00000000..5175b4bd
Binary files /dev/null and b/static/icons/060010E8.png differ
diff --git a/static/icons/060010F9.png b/static/icons/060010F9.png
new file mode 100755
index 00000000..8594d67b
Binary files /dev/null and b/static/icons/060010F9.png differ
diff --git a/static/icons/060010FA.png b/static/icons/060010FA.png
new file mode 100755
index 00000000..6b75a49e
Binary files /dev/null and b/static/icons/060010FA.png differ
diff --git a/static/icons/060010FB.png b/static/icons/060010FB.png
new file mode 100755
index 00000000..4343e508
Binary files /dev/null and b/static/icons/060010FB.png differ
diff --git a/static/icons/060010FC.png b/static/icons/060010FC.png
new file mode 100755
index 00000000..223f4184
Binary files /dev/null and b/static/icons/060010FC.png differ
diff --git a/static/icons/060010FD.png b/static/icons/060010FD.png
new file mode 100755
index 00000000..983aee97
Binary files /dev/null and b/static/icons/060010FD.png differ
diff --git a/static/icons/060010FE.png b/static/icons/060010FE.png
new file mode 100755
index 00000000..74c2e0a4
Binary files /dev/null and b/static/icons/060010FE.png differ
diff --git a/static/icons/060010FF.png b/static/icons/060010FF.png
new file mode 100755
index 00000000..1ec1194f
Binary files /dev/null and b/static/icons/060010FF.png differ
diff --git a/static/icons/06001100.png b/static/icons/06001100.png
new file mode 100755
index 00000000..5503fd92
Binary files /dev/null and b/static/icons/06001100.png differ
diff --git a/static/icons/06001101.png b/static/icons/06001101.png
new file mode 100755
index 00000000..bb4784f5
Binary files /dev/null and b/static/icons/06001101.png differ
diff --git a/static/icons/06001102.png b/static/icons/06001102.png
new file mode 100755
index 00000000..cdbb04a9
Binary files /dev/null and b/static/icons/06001102.png differ
diff --git a/static/icons/06001103.png b/static/icons/06001103.png
new file mode 100755
index 00000000..caecd38a
Binary files /dev/null and b/static/icons/06001103.png differ
diff --git a/static/icons/06001106.png b/static/icons/06001106.png
new file mode 100755
index 00000000..bdafd388
Binary files /dev/null and b/static/icons/06001106.png differ
diff --git a/static/icons/0600110C.png b/static/icons/0600110C.png
new file mode 100755
index 00000000..800c95f4
Binary files /dev/null and b/static/icons/0600110C.png differ
diff --git a/static/icons/0600110F.png b/static/icons/0600110F.png
new file mode 100755
index 00000000..5ea9637a
Binary files /dev/null and b/static/icons/0600110F.png differ
diff --git a/static/icons/06001111.png b/static/icons/06001111.png
new file mode 100755
index 00000000..5d3eec45
Binary files /dev/null and b/static/icons/06001111.png differ
diff --git a/static/icons/06001115.png b/static/icons/06001115.png
new file mode 100755
index 00000000..71dd72fb
Binary files /dev/null and b/static/icons/06001115.png differ
diff --git a/static/icons/06001116.png b/static/icons/06001116.png
new file mode 100755
index 00000000..4cf11c89
Binary files /dev/null and b/static/icons/06001116.png differ
diff --git a/static/icons/06001118.png b/static/icons/06001118.png
new file mode 100755
index 00000000..170076b2
Binary files /dev/null and b/static/icons/06001118.png differ
diff --git a/static/icons/06001119.png b/static/icons/06001119.png
new file mode 100755
index 00000000..0c027bf5
Binary files /dev/null and b/static/icons/06001119.png differ
diff --git a/static/icons/0600111B.png b/static/icons/0600111B.png
new file mode 100755
index 00000000..62217547
Binary files /dev/null and b/static/icons/0600111B.png differ
diff --git a/static/icons/0600111C.png b/static/icons/0600111C.png
new file mode 100755
index 00000000..40162016
Binary files /dev/null and b/static/icons/0600111C.png differ
diff --git a/static/icons/0600111E.png b/static/icons/0600111E.png
new file mode 100755
index 00000000..1ceff664
Binary files /dev/null and b/static/icons/0600111E.png differ
diff --git a/static/icons/0600111F.png b/static/icons/0600111F.png
new file mode 100755
index 00000000..bd0c1702
Binary files /dev/null and b/static/icons/0600111F.png differ
diff --git a/static/icons/06001121.png b/static/icons/06001121.png
new file mode 100755
index 00000000..acbe88f5
Binary files /dev/null and b/static/icons/06001121.png differ
diff --git a/static/icons/06001122.png b/static/icons/06001122.png
new file mode 100755
index 00000000..e3f18dba
Binary files /dev/null and b/static/icons/06001122.png differ
diff --git a/static/icons/06001124.png b/static/icons/06001124.png
new file mode 100755
index 00000000..3f825791
Binary files /dev/null and b/static/icons/06001124.png differ
diff --git a/static/icons/06001125.png b/static/icons/06001125.png
new file mode 100755
index 00000000..f5632a7a
Binary files /dev/null and b/static/icons/06001125.png differ
diff --git a/static/icons/06001126.png b/static/icons/06001126.png
new file mode 100755
index 00000000..5cc284a7
Binary files /dev/null and b/static/icons/06001126.png differ
diff --git a/static/icons/06001127.png b/static/icons/06001127.png
new file mode 100755
index 00000000..0e12a3f8
Binary files /dev/null and b/static/icons/06001127.png differ
diff --git a/static/icons/06001128.png b/static/icons/06001128.png
new file mode 100755
index 00000000..454fedfe
Binary files /dev/null and b/static/icons/06001128.png differ
diff --git a/static/icons/06001129.png b/static/icons/06001129.png
new file mode 100755
index 00000000..1db9b136
Binary files /dev/null and b/static/icons/06001129.png differ
diff --git a/static/icons/0600112A.png b/static/icons/0600112A.png
new file mode 100755
index 00000000..3c35b052
Binary files /dev/null and b/static/icons/0600112A.png differ
diff --git a/static/icons/0600112B.png b/static/icons/0600112B.png
new file mode 100755
index 00000000..f5d4bfd0
Binary files /dev/null and b/static/icons/0600112B.png differ
diff --git a/static/icons/0600112C.png b/static/icons/0600112C.png
new file mode 100755
index 00000000..14c99f1f
Binary files /dev/null and b/static/icons/0600112C.png differ
diff --git a/static/icons/06001131.png b/static/icons/06001131.png
new file mode 100755
index 00000000..691bee88
Binary files /dev/null and b/static/icons/06001131.png differ
diff --git a/static/icons/06001132.png b/static/icons/06001132.png
new file mode 100755
index 00000000..11a78765
Binary files /dev/null and b/static/icons/06001132.png differ
diff --git a/static/icons/06001133.png b/static/icons/06001133.png
new file mode 100755
index 00000000..46fdc81e
Binary files /dev/null and b/static/icons/06001133.png differ
diff --git a/static/icons/06001134.png b/static/icons/06001134.png
new file mode 100755
index 00000000..9805ee9b
Binary files /dev/null and b/static/icons/06001134.png differ
diff --git a/static/icons/06001135.png b/static/icons/06001135.png
new file mode 100755
index 00000000..4c61687b
Binary files /dev/null and b/static/icons/06001135.png differ
diff --git a/static/icons/06001136.png b/static/icons/06001136.png
new file mode 100755
index 00000000..90a233a9
Binary files /dev/null and b/static/icons/06001136.png differ
diff --git a/static/icons/06001137.png b/static/icons/06001137.png
new file mode 100755
index 00000000..6a1fbcc4
Binary files /dev/null and b/static/icons/06001137.png differ
diff --git a/static/icons/06001138.png b/static/icons/06001138.png
new file mode 100755
index 00000000..f2ca329f
Binary files /dev/null and b/static/icons/06001138.png differ
diff --git a/static/icons/06001139.png b/static/icons/06001139.png
new file mode 100755
index 00000000..62651880
Binary files /dev/null and b/static/icons/06001139.png differ
diff --git a/static/icons/0600113A.png b/static/icons/0600113A.png
new file mode 100755
index 00000000..80bdb958
Binary files /dev/null and b/static/icons/0600113A.png differ
diff --git a/static/icons/0600113F.png b/static/icons/0600113F.png
new file mode 100755
index 00000000..14a4c036
Binary files /dev/null and b/static/icons/0600113F.png differ
diff --git a/static/icons/06001140.png b/static/icons/06001140.png
new file mode 100755
index 00000000..bfdaa599
Binary files /dev/null and b/static/icons/06001140.png differ
diff --git a/static/icons/06001141.png b/static/icons/06001141.png
new file mode 100755
index 00000000..d6489e8f
Binary files /dev/null and b/static/icons/06001141.png differ
diff --git a/static/icons/06001142.png b/static/icons/06001142.png
new file mode 100755
index 00000000..f3a5526a
Binary files /dev/null and b/static/icons/06001142.png differ
diff --git a/static/icons/06001143.png b/static/icons/06001143.png
new file mode 100755
index 00000000..f5e4ed8b
Binary files /dev/null and b/static/icons/06001143.png differ
diff --git a/static/icons/06001144.png b/static/icons/06001144.png
new file mode 100755
index 00000000..6467567f
Binary files /dev/null and b/static/icons/06001144.png differ
diff --git a/static/icons/06001145.png b/static/icons/06001145.png
new file mode 100755
index 00000000..f3d37c9e
Binary files /dev/null and b/static/icons/06001145.png differ
diff --git a/static/icons/06001146.png b/static/icons/06001146.png
new file mode 100755
index 00000000..ca5bc43d
Binary files /dev/null and b/static/icons/06001146.png differ
diff --git a/static/icons/06001147.png b/static/icons/06001147.png
new file mode 100755
index 00000000..f9b92fae
Binary files /dev/null and b/static/icons/06001147.png differ
diff --git a/static/icons/06001148.png b/static/icons/06001148.png
new file mode 100755
index 00000000..191b69a9
Binary files /dev/null and b/static/icons/06001148.png differ
diff --git a/static/icons/06001149.png b/static/icons/06001149.png
new file mode 100755
index 00000000..eaafdb27
Binary files /dev/null and b/static/icons/06001149.png differ
diff --git a/static/icons/0600114A.png b/static/icons/0600114A.png
new file mode 100755
index 00000000..88b1e0f9
Binary files /dev/null and b/static/icons/0600114A.png differ
diff --git a/static/icons/0600114C.png b/static/icons/0600114C.png
new file mode 100755
index 00000000..ed7fd846
Binary files /dev/null and b/static/icons/0600114C.png differ
diff --git a/static/icons/0600114D.png b/static/icons/0600114D.png
new file mode 100755
index 00000000..80f84968
Binary files /dev/null and b/static/icons/0600114D.png differ
diff --git a/static/icons/06001152.png b/static/icons/06001152.png
new file mode 100755
index 00000000..f644fc0e
Binary files /dev/null and b/static/icons/06001152.png differ
diff --git a/static/icons/06001155.png b/static/icons/06001155.png
new file mode 100755
index 00000000..da28c3d4
Binary files /dev/null and b/static/icons/06001155.png differ
diff --git a/static/icons/06001157.png b/static/icons/06001157.png
new file mode 100755
index 00000000..06bf62a5
Binary files /dev/null and b/static/icons/06001157.png differ
diff --git a/static/icons/06001159.png b/static/icons/06001159.png
new file mode 100755
index 00000000..89c67f36
Binary files /dev/null and b/static/icons/06001159.png differ
diff --git a/static/icons/0600115A.png b/static/icons/0600115A.png
new file mode 100755
index 00000000..b7c62f20
Binary files /dev/null and b/static/icons/0600115A.png differ
diff --git a/static/icons/0600115E.png b/static/icons/0600115E.png
new file mode 100755
index 00000000..400df8a8
Binary files /dev/null and b/static/icons/0600115E.png differ
diff --git a/static/icons/0600116D.png b/static/icons/0600116D.png
new file mode 100755
index 00000000..ab31c7b2
Binary files /dev/null and b/static/icons/0600116D.png differ
diff --git a/static/icons/0600116F.png b/static/icons/0600116F.png
new file mode 100755
index 00000000..148fc927
Binary files /dev/null and b/static/icons/0600116F.png differ
diff --git a/static/icons/06001171.png b/static/icons/06001171.png
new file mode 100755
index 00000000..c8826b54
Binary files /dev/null and b/static/icons/06001171.png differ
diff --git a/static/icons/06001172.png b/static/icons/06001172.png
new file mode 100755
index 00000000..00494abc
Binary files /dev/null and b/static/icons/06001172.png differ
diff --git a/static/icons/06001176.png b/static/icons/06001176.png
new file mode 100755
index 00000000..8e8a6123
Binary files /dev/null and b/static/icons/06001176.png differ
diff --git a/static/icons/06001185.png b/static/icons/06001185.png
new file mode 100755
index 00000000..c97d73fb
Binary files /dev/null and b/static/icons/06001185.png differ
diff --git a/static/icons/06001187.png b/static/icons/06001187.png
new file mode 100755
index 00000000..3a6f702d
Binary files /dev/null and b/static/icons/06001187.png differ
diff --git a/static/icons/06001189.png b/static/icons/06001189.png
new file mode 100755
index 00000000..afee9583
Binary files /dev/null and b/static/icons/06001189.png differ
diff --git a/static/icons/0600118A.png b/static/icons/0600118A.png
new file mode 100755
index 00000000..8adde4ef
Binary files /dev/null and b/static/icons/0600118A.png differ
diff --git a/static/icons/0600118B.png b/static/icons/0600118B.png
new file mode 100755
index 00000000..1d43923f
Binary files /dev/null and b/static/icons/0600118B.png differ
diff --git a/static/icons/0600118E.png b/static/icons/0600118E.png
new file mode 100755
index 00000000..70cca047
Binary files /dev/null and b/static/icons/0600118E.png differ
diff --git a/static/icons/060011A5.png b/static/icons/060011A5.png
new file mode 100755
index 00000000..380cd056
Binary files /dev/null and b/static/icons/060011A5.png differ
diff --git a/static/icons/060011A6.png b/static/icons/060011A6.png
new file mode 100755
index 00000000..ae8fac94
Binary files /dev/null and b/static/icons/060011A6.png differ
diff --git a/static/icons/060011AB.png b/static/icons/060011AB.png
new file mode 100755
index 00000000..cb0e97c4
Binary files /dev/null and b/static/icons/060011AB.png differ
diff --git a/static/icons/060011B9.png b/static/icons/060011B9.png
new file mode 100755
index 00000000..f8948a9c
Binary files /dev/null and b/static/icons/060011B9.png differ
diff --git a/static/icons/060011BA.png b/static/icons/060011BA.png
new file mode 100755
index 00000000..d5ca556a
Binary files /dev/null and b/static/icons/060011BA.png differ
diff --git a/static/icons/060011BB.png b/static/icons/060011BB.png
new file mode 100755
index 00000000..d7ab882a
Binary files /dev/null and b/static/icons/060011BB.png differ
diff --git a/static/icons/060011BC.png b/static/icons/060011BC.png
new file mode 100755
index 00000000..83656e38
Binary files /dev/null and b/static/icons/060011BC.png differ
diff --git a/static/icons/060011BD.png b/static/icons/060011BD.png
new file mode 100755
index 00000000..6cb00fe2
Binary files /dev/null and b/static/icons/060011BD.png differ
diff --git a/static/icons/060011C5.png b/static/icons/060011C5.png
new file mode 100755
index 00000000..ca21c619
Binary files /dev/null and b/static/icons/060011C5.png differ
diff --git a/static/icons/060011C6.png b/static/icons/060011C6.png
new file mode 100755
index 00000000..be68bc49
Binary files /dev/null and b/static/icons/060011C6.png differ
diff --git a/static/icons/060011CA.png b/static/icons/060011CA.png
new file mode 100755
index 00000000..3a889129
Binary files /dev/null and b/static/icons/060011CA.png differ
diff --git a/static/icons/060011CB.png b/static/icons/060011CB.png
new file mode 100755
index 00000000..5e6127d7
Binary files /dev/null and b/static/icons/060011CB.png differ
diff --git a/static/icons/060011CC.png b/static/icons/060011CC.png
new file mode 100755
index 00000000..e909a774
Binary files /dev/null and b/static/icons/060011CC.png differ
diff --git a/static/icons/060011CD.png b/static/icons/060011CD.png
new file mode 100755
index 00000000..87a7f7c3
Binary files /dev/null and b/static/icons/060011CD.png differ
diff --git a/static/icons/060011CE.png b/static/icons/060011CE.png
new file mode 100755
index 00000000..f4228ba1
Binary files /dev/null and b/static/icons/060011CE.png differ
diff --git a/static/icons/060011CF.png b/static/icons/060011CF.png
new file mode 100755
index 00000000..fe458485
Binary files /dev/null and b/static/icons/060011CF.png differ
diff --git a/static/icons/060011D0.png b/static/icons/060011D0.png
new file mode 100755
index 00000000..811ad6d7
Binary files /dev/null and b/static/icons/060011D0.png differ
diff --git a/static/icons/060011D1.png b/static/icons/060011D1.png
new file mode 100755
index 00000000..7982bf95
Binary files /dev/null and b/static/icons/060011D1.png differ
diff --git a/static/icons/060011D2.png b/static/icons/060011D2.png
new file mode 100755
index 00000000..5bb6d6ec
Binary files /dev/null and b/static/icons/060011D2.png differ
diff --git a/static/icons/060011D3.png b/static/icons/060011D3.png
new file mode 100755
index 00000000..924d0129
Binary files /dev/null and b/static/icons/060011D3.png differ
diff --git a/static/icons/060011D4.png b/static/icons/060011D4.png
new file mode 100755
index 00000000..4fc9fa7d
Binary files /dev/null and b/static/icons/060011D4.png differ
diff --git a/static/icons/060011D5.png b/static/icons/060011D5.png
new file mode 100755
index 00000000..fccc0a07
Binary files /dev/null and b/static/icons/060011D5.png differ
diff --git a/static/icons/060011F3.png b/static/icons/060011F3.png
new file mode 100755
index 00000000..162eb743
Binary files /dev/null and b/static/icons/060011F3.png differ
diff --git a/static/icons/060011F4.png b/static/icons/060011F4.png
new file mode 100755
index 00000000..1240cf15
Binary files /dev/null and b/static/icons/060011F4.png differ
diff --git a/static/icons/060011F7.png b/static/icons/060011F7.png
new file mode 100755
index 00000000..9539c723
Binary files /dev/null and b/static/icons/060011F7.png differ
diff --git a/static/icons/060011F8.png b/static/icons/060011F8.png
new file mode 100755
index 00000000..41f2bead
Binary files /dev/null and b/static/icons/060011F8.png differ
diff --git a/static/icons/060011F9.png b/static/icons/060011F9.png
new file mode 100755
index 00000000..ea42fbd6
Binary files /dev/null and b/static/icons/060011F9.png differ
diff --git a/static/icons/060011FA.png b/static/icons/060011FA.png
new file mode 100755
index 00000000..86a70e90
Binary files /dev/null and b/static/icons/060011FA.png differ
diff --git a/static/icons/060011FB.png b/static/icons/060011FB.png
new file mode 100755
index 00000000..c8440a2d
Binary files /dev/null and b/static/icons/060011FB.png differ
diff --git a/static/icons/06001200.png b/static/icons/06001200.png
new file mode 100755
index 00000000..180b8ef2
Binary files /dev/null and b/static/icons/06001200.png differ
diff --git a/static/icons/0600120E.png b/static/icons/0600120E.png
new file mode 100755
index 00000000..f6ad9c2b
Binary files /dev/null and b/static/icons/0600120E.png differ
diff --git a/static/icons/0600120F.png b/static/icons/0600120F.png
new file mode 100755
index 00000000..be5bda63
Binary files /dev/null and b/static/icons/0600120F.png differ
diff --git a/static/icons/0600121A.png b/static/icons/0600121A.png
new file mode 100755
index 00000000..df6ece3e
Binary files /dev/null and b/static/icons/0600121A.png differ
diff --git a/static/icons/0600121B.png b/static/icons/0600121B.png
new file mode 100755
index 00000000..aa378941
Binary files /dev/null and b/static/icons/0600121B.png differ
diff --git a/static/icons/0600121C.png b/static/icons/0600121C.png
new file mode 100755
index 00000000..36d9e775
Binary files /dev/null and b/static/icons/0600121C.png differ
diff --git a/static/icons/0600121D.png b/static/icons/0600121D.png
new file mode 100755
index 00000000..6e925b35
Binary files /dev/null and b/static/icons/0600121D.png differ
diff --git a/static/icons/0600121E.png b/static/icons/0600121E.png
new file mode 100755
index 00000000..480db673
Binary files /dev/null and b/static/icons/0600121E.png differ
diff --git a/static/icons/0600121F.png b/static/icons/0600121F.png
new file mode 100755
index 00000000..d5c3a849
Binary files /dev/null and b/static/icons/0600121F.png differ
diff --git a/static/icons/06001220.png b/static/icons/06001220.png
new file mode 100755
index 00000000..85786fc4
Binary files /dev/null and b/static/icons/06001220.png differ
diff --git a/static/icons/06001221.png b/static/icons/06001221.png
new file mode 100755
index 00000000..d11791a6
Binary files /dev/null and b/static/icons/06001221.png differ
diff --git a/static/icons/06001222.png b/static/icons/06001222.png
new file mode 100755
index 00000000..b93e1ff7
Binary files /dev/null and b/static/icons/06001222.png differ
diff --git a/static/icons/06001223.png b/static/icons/06001223.png
new file mode 100755
index 00000000..782d8b57
Binary files /dev/null and b/static/icons/06001223.png differ
diff --git a/static/icons/06001224.png b/static/icons/06001224.png
new file mode 100755
index 00000000..9bd18fcd
Binary files /dev/null and b/static/icons/06001224.png differ
diff --git a/static/icons/06001226.png b/static/icons/06001226.png
new file mode 100755
index 00000000..4ea80222
Binary files /dev/null and b/static/icons/06001226.png differ
diff --git a/static/icons/06001227.png b/static/icons/06001227.png
new file mode 100755
index 00000000..c6d94bdd
Binary files /dev/null and b/static/icons/06001227.png differ
diff --git a/static/icons/06001228.png b/static/icons/06001228.png
new file mode 100755
index 00000000..d5198b47
Binary files /dev/null and b/static/icons/06001228.png differ
diff --git a/static/icons/0600124C.png b/static/icons/0600124C.png
new file mode 100755
index 00000000..fcad2b66
Binary files /dev/null and b/static/icons/0600124C.png differ
diff --git a/static/icons/0600124D.png b/static/icons/0600124D.png
new file mode 100755
index 00000000..ef7ddcb7
Binary files /dev/null and b/static/icons/0600124D.png differ
diff --git a/static/icons/0600124E.png b/static/icons/0600124E.png
new file mode 100755
index 00000000..8a697be0
Binary files /dev/null and b/static/icons/0600124E.png differ
diff --git a/static/icons/06001265.png b/static/icons/06001265.png
new file mode 100755
index 00000000..e1c85d10
Binary files /dev/null and b/static/icons/06001265.png differ
diff --git a/static/icons/06001266.png b/static/icons/06001266.png
new file mode 100755
index 00000000..292daeb4
Binary files /dev/null and b/static/icons/06001266.png differ
diff --git a/static/icons/06001267.png b/static/icons/06001267.png
new file mode 100755
index 00000000..6d87a68a
Binary files /dev/null and b/static/icons/06001267.png differ
diff --git a/static/icons/06001268.png b/static/icons/06001268.png
new file mode 100755
index 00000000..4238c1c8
Binary files /dev/null and b/static/icons/06001268.png differ
diff --git a/static/icons/06001269.png b/static/icons/06001269.png
new file mode 100755
index 00000000..57ef88d7
Binary files /dev/null and b/static/icons/06001269.png differ
diff --git a/static/icons/0600126A.png b/static/icons/0600126A.png
new file mode 100755
index 00000000..9bb906b7
Binary files /dev/null and b/static/icons/0600126A.png differ
diff --git a/static/icons/0600126B.png b/static/icons/0600126B.png
new file mode 100755
index 00000000..e15a5d1f
Binary files /dev/null and b/static/icons/0600126B.png differ
diff --git a/static/icons/0600126C.png b/static/icons/0600126C.png
new file mode 100755
index 00000000..3da68ac4
Binary files /dev/null and b/static/icons/0600126C.png differ
diff --git a/static/icons/0600126D.png b/static/icons/0600126D.png
new file mode 100755
index 00000000..ba77ec57
Binary files /dev/null and b/static/icons/0600126D.png differ
diff --git a/static/icons/0600126E.png b/static/icons/0600126E.png
new file mode 100755
index 00000000..180be394
Binary files /dev/null and b/static/icons/0600126E.png differ
diff --git a/static/icons/0600126F.png b/static/icons/0600126F.png
new file mode 100755
index 00000000..f5191fc1
Binary files /dev/null and b/static/icons/0600126F.png differ
diff --git a/static/icons/06001270.png b/static/icons/06001270.png
new file mode 100755
index 00000000..6c679a00
Binary files /dev/null and b/static/icons/06001270.png differ
diff --git a/static/icons/06001271.png b/static/icons/06001271.png
new file mode 100755
index 00000000..fd35200b
Binary files /dev/null and b/static/icons/06001271.png differ
diff --git a/static/icons/06001272.png b/static/icons/06001272.png
new file mode 100755
index 00000000..1954f9b6
Binary files /dev/null and b/static/icons/06001272.png differ
diff --git a/static/icons/06001273.png b/static/icons/06001273.png
new file mode 100755
index 00000000..98b64d17
Binary files /dev/null and b/static/icons/06001273.png differ
diff --git a/static/icons/06001274.png b/static/icons/06001274.png
new file mode 100755
index 00000000..905a1614
Binary files /dev/null and b/static/icons/06001274.png differ
diff --git a/static/icons/06001275.png b/static/icons/06001275.png
new file mode 100755
index 00000000..bc442c9d
Binary files /dev/null and b/static/icons/06001275.png differ
diff --git a/static/icons/06001276.png b/static/icons/06001276.png
new file mode 100755
index 00000000..84b9f390
Binary files /dev/null and b/static/icons/06001276.png differ
diff --git a/static/icons/06001279.png b/static/icons/06001279.png
new file mode 100755
index 00000000..69390511
Binary files /dev/null and b/static/icons/06001279.png differ
diff --git a/static/icons/0600127A.png b/static/icons/0600127A.png
new file mode 100755
index 00000000..ebdda03c
Binary files /dev/null and b/static/icons/0600127A.png differ
diff --git a/static/icons/0600127D.png b/static/icons/0600127D.png
new file mode 100755
index 00000000..a218bf2f
Binary files /dev/null and b/static/icons/0600127D.png differ
diff --git a/static/icons/0600127E.png b/static/icons/0600127E.png
new file mode 100755
index 00000000..8bdd6bdf
Binary files /dev/null and b/static/icons/0600127E.png differ
diff --git a/static/icons/06001282.png b/static/icons/06001282.png
new file mode 100755
index 00000000..2e5d808a
Binary files /dev/null and b/static/icons/06001282.png differ
diff --git a/static/icons/06001283.png b/static/icons/06001283.png
new file mode 100755
index 00000000..6055a7f4
Binary files /dev/null and b/static/icons/06001283.png differ
diff --git a/static/icons/06001285.png b/static/icons/06001285.png
new file mode 100755
index 00000000..3c5a642b
Binary files /dev/null and b/static/icons/06001285.png differ
diff --git a/static/icons/06001286.png b/static/icons/06001286.png
new file mode 100755
index 00000000..0a6148d1
Binary files /dev/null and b/static/icons/06001286.png differ
diff --git a/static/icons/0600128A.png b/static/icons/0600128A.png
new file mode 100755
index 00000000..256f5100
Binary files /dev/null and b/static/icons/0600128A.png differ
diff --git a/static/icons/0600129C.png b/static/icons/0600129C.png
new file mode 100755
index 00000000..feb5c79b
Binary files /dev/null and b/static/icons/0600129C.png differ
diff --git a/static/icons/0600129D.png b/static/icons/0600129D.png
new file mode 100755
index 00000000..feb5c79b
Binary files /dev/null and b/static/icons/0600129D.png differ
diff --git a/static/icons/0600129E.png b/static/icons/0600129E.png
new file mode 100755
index 00000000..feb5c79b
Binary files /dev/null and b/static/icons/0600129E.png differ
diff --git a/static/icons/060012A8.png b/static/icons/060012A8.png
new file mode 100755
index 00000000..0fbe5e97
Binary files /dev/null and b/static/icons/060012A8.png differ
diff --git a/static/icons/060012A9.png b/static/icons/060012A9.png
new file mode 100755
index 00000000..95882fe3
Binary files /dev/null and b/static/icons/060012A9.png differ
diff --git a/static/icons/060012AA.png b/static/icons/060012AA.png
new file mode 100755
index 00000000..3a2136b1
Binary files /dev/null and b/static/icons/060012AA.png differ
diff --git a/static/icons/060012B1.png b/static/icons/060012B1.png
new file mode 100755
index 00000000..d2a5a5b5
Binary files /dev/null and b/static/icons/060012B1.png differ
diff --git a/static/icons/060012B2.png b/static/icons/060012B2.png
new file mode 100755
index 00000000..6d349877
Binary files /dev/null and b/static/icons/060012B2.png differ
diff --git a/static/icons/060012B3.png b/static/icons/060012B3.png
new file mode 100755
index 00000000..e3be88d6
Binary files /dev/null and b/static/icons/060012B3.png differ
diff --git a/static/icons/060012B4.png b/static/icons/060012B4.png
new file mode 100755
index 00000000..a43d47f8
Binary files /dev/null and b/static/icons/060012B4.png differ
diff --git a/static/icons/060012B8.png b/static/icons/060012B8.png
new file mode 100755
index 00000000..b5ee48a6
Binary files /dev/null and b/static/icons/060012B8.png differ
diff --git a/static/icons/060012B9.png b/static/icons/060012B9.png
new file mode 100755
index 00000000..4b49b26b
Binary files /dev/null and b/static/icons/060012B9.png differ
diff --git a/static/icons/060012BA.png b/static/icons/060012BA.png
new file mode 100755
index 00000000..062400f5
Binary files /dev/null and b/static/icons/060012BA.png differ
diff --git a/static/icons/060012BB.png b/static/icons/060012BB.png
new file mode 100755
index 00000000..8e7a7d38
Binary files /dev/null and b/static/icons/060012BB.png differ
diff --git a/static/icons/060012BC.png b/static/icons/060012BC.png
new file mode 100755
index 00000000..3839e1f9
Binary files /dev/null and b/static/icons/060012BC.png differ
diff --git a/static/icons/060012BD.png b/static/icons/060012BD.png
new file mode 100755
index 00000000..7f9a18e5
Binary files /dev/null and b/static/icons/060012BD.png differ
diff --git a/static/icons/060012C3.png b/static/icons/060012C3.png
new file mode 100755
index 00000000..41f4fb26
Binary files /dev/null and b/static/icons/060012C3.png differ
diff --git a/static/icons/060012C4.png b/static/icons/060012C4.png
new file mode 100755
index 00000000..3660b9dd
Binary files /dev/null and b/static/icons/060012C4.png differ
diff --git a/static/icons/060012C5.png b/static/icons/060012C5.png
new file mode 100755
index 00000000..3bfe7bd6
Binary files /dev/null and b/static/icons/060012C5.png differ
diff --git a/static/icons/060012C6.png b/static/icons/060012C6.png
new file mode 100755
index 00000000..d3fa3dd3
Binary files /dev/null and b/static/icons/060012C6.png differ
diff --git a/static/icons/060012C7.png b/static/icons/060012C7.png
new file mode 100755
index 00000000..8f4fc5a7
Binary files /dev/null and b/static/icons/060012C7.png differ
diff --git a/static/icons/060012C8.png b/static/icons/060012C8.png
new file mode 100755
index 00000000..1e97022d
Binary files /dev/null and b/static/icons/060012C8.png differ
diff --git a/static/icons/060012C9.png b/static/icons/060012C9.png
new file mode 100755
index 00000000..16c55659
Binary files /dev/null and b/static/icons/060012C9.png differ
diff --git a/static/icons/060012CA.png b/static/icons/060012CA.png
new file mode 100755
index 00000000..1670915b
Binary files /dev/null and b/static/icons/060012CA.png differ
diff --git a/static/icons/060012CB.png b/static/icons/060012CB.png
new file mode 100755
index 00000000..74e7997f
Binary files /dev/null and b/static/icons/060012CB.png differ
diff --git a/static/icons/060012CD.png b/static/icons/060012CD.png
new file mode 100755
index 00000000..70f5b43f
Binary files /dev/null and b/static/icons/060012CD.png differ
diff --git a/static/icons/060012CE.png b/static/icons/060012CE.png
new file mode 100755
index 00000000..0405e9fb
Binary files /dev/null and b/static/icons/060012CE.png differ
diff --git a/static/icons/060012CF.png b/static/icons/060012CF.png
new file mode 100755
index 00000000..ea899daa
Binary files /dev/null and b/static/icons/060012CF.png differ
diff --git a/static/icons/060012D0.png b/static/icons/060012D0.png
new file mode 100755
index 00000000..2431ebf1
Binary files /dev/null and b/static/icons/060012D0.png differ
diff --git a/static/icons/060012D1.png b/static/icons/060012D1.png
new file mode 100755
index 00000000..5ed1fc37
Binary files /dev/null and b/static/icons/060012D1.png differ
diff --git a/static/icons/060012D2.png b/static/icons/060012D2.png
new file mode 100755
index 00000000..1329abd6
Binary files /dev/null and b/static/icons/060012D2.png differ
diff --git a/static/icons/060012D3.png b/static/icons/060012D3.png
new file mode 100755
index 00000000..e5b42f0c
Binary files /dev/null and b/static/icons/060012D3.png differ
diff --git a/static/icons/060012D4.png b/static/icons/060012D4.png
new file mode 100755
index 00000000..1f2a2b9d
Binary files /dev/null and b/static/icons/060012D4.png differ
diff --git a/static/icons/060012D5.png b/static/icons/060012D5.png
new file mode 100755
index 00000000..7fa5c418
Binary files /dev/null and b/static/icons/060012D5.png differ
diff --git a/static/icons/060012D7.png b/static/icons/060012D7.png
new file mode 100755
index 00000000..615b557f
Binary files /dev/null and b/static/icons/060012D7.png differ
diff --git a/static/icons/060012D8.png b/static/icons/060012D8.png
new file mode 100755
index 00000000..d1241ec9
Binary files /dev/null and b/static/icons/060012D8.png differ
diff --git a/static/icons/060012D9.png b/static/icons/060012D9.png
new file mode 100755
index 00000000..84b143fa
Binary files /dev/null and b/static/icons/060012D9.png differ
diff --git a/static/icons/060012DA.png b/static/icons/060012DA.png
new file mode 100755
index 00000000..3d37f831
Binary files /dev/null and b/static/icons/060012DA.png differ
diff --git a/static/icons/060012DB.png b/static/icons/060012DB.png
new file mode 100755
index 00000000..1fa5b570
Binary files /dev/null and b/static/icons/060012DB.png differ
diff --git a/static/icons/060012DC.png b/static/icons/060012DC.png
new file mode 100755
index 00000000..e873e796
Binary files /dev/null and b/static/icons/060012DC.png differ
diff --git a/static/icons/060012DD.png b/static/icons/060012DD.png
new file mode 100755
index 00000000..233a7679
Binary files /dev/null and b/static/icons/060012DD.png differ
diff --git a/static/icons/060012DE.png b/static/icons/060012DE.png
new file mode 100755
index 00000000..5fc45f1c
Binary files /dev/null and b/static/icons/060012DE.png differ
diff --git a/static/icons/060012E0.png b/static/icons/060012E0.png
new file mode 100755
index 00000000..83ddb58e
Binary files /dev/null and b/static/icons/060012E0.png differ
diff --git a/static/icons/060012E1.png b/static/icons/060012E1.png
new file mode 100755
index 00000000..1f35cb10
Binary files /dev/null and b/static/icons/060012E1.png differ
diff --git a/static/icons/060012E3.png b/static/icons/060012E3.png
new file mode 100755
index 00000000..ce87c367
Binary files /dev/null and b/static/icons/060012E3.png differ
diff --git a/static/icons/060012EB.png b/static/icons/060012EB.png
new file mode 100755
index 00000000..ad82f957
Binary files /dev/null and b/static/icons/060012EB.png differ
diff --git a/static/icons/060012EC.png b/static/icons/060012EC.png
new file mode 100755
index 00000000..f562235e
Binary files /dev/null and b/static/icons/060012EC.png differ
diff --git a/static/icons/060012ED.png b/static/icons/060012ED.png
new file mode 100755
index 00000000..6347f4cd
Binary files /dev/null and b/static/icons/060012ED.png differ
diff --git a/static/icons/060012EE.png b/static/icons/060012EE.png
new file mode 100755
index 00000000..10f9d45e
Binary files /dev/null and b/static/icons/060012EE.png differ
diff --git a/static/icons/060012EF.png b/static/icons/060012EF.png
new file mode 100755
index 00000000..a08e5812
Binary files /dev/null and b/static/icons/060012EF.png differ
diff --git a/static/icons/060012F0.png b/static/icons/060012F0.png
new file mode 100755
index 00000000..444898a2
Binary files /dev/null and b/static/icons/060012F0.png differ
diff --git a/static/icons/060012F1.png b/static/icons/060012F1.png
new file mode 100755
index 00000000..df1f8cc7
Binary files /dev/null and b/static/icons/060012F1.png differ
diff --git a/static/icons/060012F2.png b/static/icons/060012F2.png
new file mode 100755
index 00000000..4b82ed2a
Binary files /dev/null and b/static/icons/060012F2.png differ
diff --git a/static/icons/060012F3.png b/static/icons/060012F3.png
new file mode 100755
index 00000000..acf94380
Binary files /dev/null and b/static/icons/060012F3.png differ
diff --git a/static/icons/060012F5.png b/static/icons/060012F5.png
new file mode 100755
index 00000000..2b9b613e
Binary files /dev/null and b/static/icons/060012F5.png differ
diff --git a/static/icons/060012F6.png b/static/icons/060012F6.png
new file mode 100755
index 00000000..9d5e3307
Binary files /dev/null and b/static/icons/060012F6.png differ
diff --git a/static/icons/060012F7.png b/static/icons/060012F7.png
new file mode 100755
index 00000000..351aa5fb
Binary files /dev/null and b/static/icons/060012F7.png differ
diff --git a/static/icons/060012F8.png b/static/icons/060012F8.png
new file mode 100755
index 00000000..e963fce4
Binary files /dev/null and b/static/icons/060012F8.png differ
diff --git a/static/icons/060012F9.png b/static/icons/060012F9.png
new file mode 100755
index 00000000..0eea68f9
Binary files /dev/null and b/static/icons/060012F9.png differ
diff --git a/static/icons/060012FB.png b/static/icons/060012FB.png
new file mode 100755
index 00000000..e3284dd5
Binary files /dev/null and b/static/icons/060012FB.png differ
diff --git a/static/icons/060012FC.png b/static/icons/060012FC.png
new file mode 100755
index 00000000..407bc1c9
Binary files /dev/null and b/static/icons/060012FC.png differ
diff --git a/static/icons/060012FE.png b/static/icons/060012FE.png
new file mode 100755
index 00000000..bc314435
Binary files /dev/null and b/static/icons/060012FE.png differ
diff --git a/static/icons/060012FF.png b/static/icons/060012FF.png
new file mode 100755
index 00000000..66d133b1
Binary files /dev/null and b/static/icons/060012FF.png differ
diff --git a/static/icons/06001300.png b/static/icons/06001300.png
new file mode 100755
index 00000000..41fc6dee
Binary files /dev/null and b/static/icons/06001300.png differ
diff --git a/static/icons/06001301.png b/static/icons/06001301.png
new file mode 100755
index 00000000..944b7414
Binary files /dev/null and b/static/icons/06001301.png differ
diff --git a/static/icons/06001302.png b/static/icons/06001302.png
new file mode 100755
index 00000000..deefc5b0
Binary files /dev/null and b/static/icons/06001302.png differ
diff --git a/static/icons/06001304.png b/static/icons/06001304.png
new file mode 100755
index 00000000..be271881
Binary files /dev/null and b/static/icons/06001304.png differ
diff --git a/static/icons/06001305.png b/static/icons/06001305.png
new file mode 100755
index 00000000..1b1528aa
Binary files /dev/null and b/static/icons/06001305.png differ
diff --git a/static/icons/06001306.png b/static/icons/06001306.png
new file mode 100755
index 00000000..64912c07
Binary files /dev/null and b/static/icons/06001306.png differ
diff --git a/static/icons/06001307.png b/static/icons/06001307.png
new file mode 100755
index 00000000..d935efaf
Binary files /dev/null and b/static/icons/06001307.png differ
diff --git a/static/icons/06001308.png b/static/icons/06001308.png
new file mode 100755
index 00000000..0905f0d5
Binary files /dev/null and b/static/icons/06001308.png differ
diff --git a/static/icons/06001309.png b/static/icons/06001309.png
new file mode 100755
index 00000000..9ec8c909
Binary files /dev/null and b/static/icons/06001309.png differ
diff --git a/static/icons/0600130A.png b/static/icons/0600130A.png
new file mode 100755
index 00000000..07113295
Binary files /dev/null and b/static/icons/0600130A.png differ
diff --git a/static/icons/0600130B.png b/static/icons/0600130B.png
new file mode 100755
index 00000000..937a7460
Binary files /dev/null and b/static/icons/0600130B.png differ
diff --git a/static/icons/0600130C.png b/static/icons/0600130C.png
new file mode 100755
index 00000000..f278c797
Binary files /dev/null and b/static/icons/0600130C.png differ
diff --git a/static/icons/0600130D.png b/static/icons/0600130D.png
new file mode 100755
index 00000000..be0f70d5
Binary files /dev/null and b/static/icons/0600130D.png differ
diff --git a/static/icons/0600130E.png b/static/icons/0600130E.png
new file mode 100755
index 00000000..0c78f479
Binary files /dev/null and b/static/icons/0600130E.png differ
diff --git a/static/icons/0600130F.png b/static/icons/0600130F.png
new file mode 100755
index 00000000..51186415
Binary files /dev/null and b/static/icons/0600130F.png differ
diff --git a/static/icons/06001310.png b/static/icons/06001310.png
new file mode 100755
index 00000000..9034770b
Binary files /dev/null and b/static/icons/06001310.png differ
diff --git a/static/icons/06001311.png b/static/icons/06001311.png
new file mode 100755
index 00000000..371dfd50
Binary files /dev/null and b/static/icons/06001311.png differ
diff --git a/static/icons/06001312.png b/static/icons/06001312.png
new file mode 100755
index 00000000..fc1aa4db
Binary files /dev/null and b/static/icons/06001312.png differ
diff --git a/static/icons/06001315.png b/static/icons/06001315.png
new file mode 100755
index 00000000..6347f4cd
Binary files /dev/null and b/static/icons/06001315.png differ
diff --git a/static/icons/06001316.png b/static/icons/06001316.png
new file mode 100755
index 00000000..ec195cbc
Binary files /dev/null and b/static/icons/06001316.png differ
diff --git a/static/icons/06001317.png b/static/icons/06001317.png
new file mode 100755
index 00000000..6d85a27c
Binary files /dev/null and b/static/icons/06001317.png differ
diff --git a/static/icons/06001343.png b/static/icons/06001343.png
new file mode 100755
index 00000000..3b02c55e
Binary files /dev/null and b/static/icons/06001343.png differ
diff --git a/static/icons/06001344.png b/static/icons/06001344.png
new file mode 100755
index 00000000..2b2054fa
Binary files /dev/null and b/static/icons/06001344.png differ
diff --git a/static/icons/0600134A.png b/static/icons/0600134A.png
new file mode 100755
index 00000000..37c7b538
Binary files /dev/null and b/static/icons/0600134A.png differ
diff --git a/static/icons/0600134C.png b/static/icons/0600134C.png
new file mode 100755
index 00000000..41e5e943
Binary files /dev/null and b/static/icons/0600134C.png differ
diff --git a/static/icons/0600134D.png b/static/icons/0600134D.png
new file mode 100755
index 00000000..b8c75ac6
Binary files /dev/null and b/static/icons/0600134D.png differ
diff --git a/static/icons/0600134F.png b/static/icons/0600134F.png
new file mode 100755
index 00000000..16c4dbb1
Binary files /dev/null and b/static/icons/0600134F.png differ
diff --git a/static/icons/06001350.png b/static/icons/06001350.png
new file mode 100755
index 00000000..da3dcbdb
Binary files /dev/null and b/static/icons/06001350.png differ
diff --git a/static/icons/06001351.png b/static/icons/06001351.png
new file mode 100755
index 00000000..43ca4759
Binary files /dev/null and b/static/icons/06001351.png differ
diff --git a/static/icons/06001352.png b/static/icons/06001352.png
new file mode 100755
index 00000000..f6390412
Binary files /dev/null and b/static/icons/06001352.png differ
diff --git a/static/icons/06001353.png b/static/icons/06001353.png
new file mode 100755
index 00000000..bda550f0
Binary files /dev/null and b/static/icons/06001353.png differ
diff --git a/static/icons/06001354.png b/static/icons/06001354.png
new file mode 100755
index 00000000..cb162d5c
Binary files /dev/null and b/static/icons/06001354.png differ
diff --git a/static/icons/06001355.png b/static/icons/06001355.png
new file mode 100755
index 00000000..8e4053cb
Binary files /dev/null and b/static/icons/06001355.png differ
diff --git a/static/icons/06001356.png b/static/icons/06001356.png
new file mode 100755
index 00000000..4e5914a8
Binary files /dev/null and b/static/icons/06001356.png differ
diff --git a/static/icons/06001357.png b/static/icons/06001357.png
new file mode 100755
index 00000000..8f0268ed
Binary files /dev/null and b/static/icons/06001357.png differ
diff --git a/static/icons/0600135B.png b/static/icons/0600135B.png
new file mode 100755
index 00000000..5587153d
Binary files /dev/null and b/static/icons/0600135B.png differ
diff --git a/static/icons/0600135C.png b/static/icons/0600135C.png
new file mode 100755
index 00000000..c31482dd
Binary files /dev/null and b/static/icons/0600135C.png differ
diff --git a/static/icons/06001360.png b/static/icons/06001360.png
new file mode 100755
index 00000000..874897d1
Binary files /dev/null and b/static/icons/06001360.png differ
diff --git a/static/icons/06001361.png b/static/icons/06001361.png
new file mode 100755
index 00000000..40155e64
Binary files /dev/null and b/static/icons/06001361.png differ
diff --git a/static/icons/06001362.png b/static/icons/06001362.png
new file mode 100755
index 00000000..e64e79a0
Binary files /dev/null and b/static/icons/06001362.png differ
diff --git a/static/icons/06001363.png b/static/icons/06001363.png
new file mode 100755
index 00000000..5a2baba4
Binary files /dev/null and b/static/icons/06001363.png differ
diff --git a/static/icons/06001364.png b/static/icons/06001364.png
new file mode 100755
index 00000000..19134eb3
Binary files /dev/null and b/static/icons/06001364.png differ
diff --git a/static/icons/06001365.png b/static/icons/06001365.png
new file mode 100755
index 00000000..ddb8b37d
Binary files /dev/null and b/static/icons/06001365.png differ
diff --git a/static/icons/06001366.png b/static/icons/06001366.png
new file mode 100755
index 00000000..e1c0ea58
Binary files /dev/null and b/static/icons/06001366.png differ
diff --git a/static/icons/06001367.png b/static/icons/06001367.png
new file mode 100755
index 00000000..6f76b985
Binary files /dev/null and b/static/icons/06001367.png differ
diff --git a/static/icons/06001368.png b/static/icons/06001368.png
new file mode 100755
index 00000000..7b36915d
Binary files /dev/null and b/static/icons/06001368.png differ
diff --git a/static/icons/06001369.png b/static/icons/06001369.png
new file mode 100755
index 00000000..c30277e7
Binary files /dev/null and b/static/icons/06001369.png differ
diff --git a/static/icons/0600136A.png b/static/icons/0600136A.png
new file mode 100755
index 00000000..a96cc478
Binary files /dev/null and b/static/icons/0600136A.png differ
diff --git a/static/icons/0600136B.png b/static/icons/0600136B.png
new file mode 100755
index 00000000..1cf24ff2
Binary files /dev/null and b/static/icons/0600136B.png differ
diff --git a/static/icons/0600136C.png b/static/icons/0600136C.png
new file mode 100755
index 00000000..c766d83b
Binary files /dev/null and b/static/icons/0600136C.png differ
diff --git a/static/icons/0600136D.png b/static/icons/0600136D.png
new file mode 100755
index 00000000..b4a3759e
Binary files /dev/null and b/static/icons/0600136D.png differ
diff --git a/static/icons/0600136F.png b/static/icons/0600136F.png
new file mode 100755
index 00000000..98086535
Binary files /dev/null and b/static/icons/0600136F.png differ
diff --git a/static/icons/06001370.png b/static/icons/06001370.png
new file mode 100755
index 00000000..e96886ba
Binary files /dev/null and b/static/icons/06001370.png differ
diff --git a/static/icons/06001371.png b/static/icons/06001371.png
new file mode 100755
index 00000000..6a765549
Binary files /dev/null and b/static/icons/06001371.png differ
diff --git a/static/icons/06001372.png b/static/icons/06001372.png
new file mode 100755
index 00000000..3776572e
Binary files /dev/null and b/static/icons/06001372.png differ
diff --git a/static/icons/06001373.png b/static/icons/06001373.png
new file mode 100755
index 00000000..a111eb7b
Binary files /dev/null and b/static/icons/06001373.png differ
diff --git a/static/icons/06001374.png b/static/icons/06001374.png
new file mode 100755
index 00000000..d8fda528
Binary files /dev/null and b/static/icons/06001374.png differ
diff --git a/static/icons/06001375.png b/static/icons/06001375.png
new file mode 100755
index 00000000..5d56d756
Binary files /dev/null and b/static/icons/06001375.png differ
diff --git a/static/icons/06001377.png b/static/icons/06001377.png
new file mode 100755
index 00000000..536b1903
Binary files /dev/null and b/static/icons/06001377.png differ
diff --git a/static/icons/06001378.png b/static/icons/06001378.png
new file mode 100755
index 00000000..cf0ff7af
Binary files /dev/null and b/static/icons/06001378.png differ
diff --git a/static/icons/06001379.png b/static/icons/06001379.png
new file mode 100755
index 00000000..0ec4f35e
Binary files /dev/null and b/static/icons/06001379.png differ
diff --git a/static/icons/0600137A.png b/static/icons/0600137A.png
new file mode 100755
index 00000000..941c2996
Binary files /dev/null and b/static/icons/0600137A.png differ
diff --git a/static/icons/0600137B.png b/static/icons/0600137B.png
new file mode 100755
index 00000000..b2f888fe
Binary files /dev/null and b/static/icons/0600137B.png differ
diff --git a/static/icons/0600137C.png b/static/icons/0600137C.png
new file mode 100755
index 00000000..b3c4093a
Binary files /dev/null and b/static/icons/0600137C.png differ
diff --git a/static/icons/0600137D.png b/static/icons/0600137D.png
new file mode 100755
index 00000000..fa5ae558
Binary files /dev/null and b/static/icons/0600137D.png differ
diff --git a/static/icons/0600137E.png b/static/icons/0600137E.png
new file mode 100755
index 00000000..c0d1630e
Binary files /dev/null and b/static/icons/0600137E.png differ
diff --git a/static/icons/0600137F.png b/static/icons/0600137F.png
new file mode 100755
index 00000000..b9ccad64
Binary files /dev/null and b/static/icons/0600137F.png differ
diff --git a/static/icons/06001380.png b/static/icons/06001380.png
new file mode 100755
index 00000000..33dab3db
Binary files /dev/null and b/static/icons/06001380.png differ
diff --git a/static/icons/06001382.png b/static/icons/06001382.png
new file mode 100755
index 00000000..f6a6d642
Binary files /dev/null and b/static/icons/06001382.png differ
diff --git a/static/icons/06001383.png b/static/icons/06001383.png
new file mode 100755
index 00000000..4712c2bd
Binary files /dev/null and b/static/icons/06001383.png differ
diff --git a/static/icons/06001384.png b/static/icons/06001384.png
new file mode 100755
index 00000000..d93aecba
Binary files /dev/null and b/static/icons/06001384.png differ
diff --git a/static/icons/06001385.png b/static/icons/06001385.png
new file mode 100755
index 00000000..ddc35ba4
Binary files /dev/null and b/static/icons/06001385.png differ
diff --git a/static/icons/06001386.png b/static/icons/06001386.png
new file mode 100755
index 00000000..4d79bb59
Binary files /dev/null and b/static/icons/06001386.png differ
diff --git a/static/icons/06001387.png b/static/icons/06001387.png
new file mode 100755
index 00000000..49e6aae8
Binary files /dev/null and b/static/icons/06001387.png differ
diff --git a/static/icons/06001388.png b/static/icons/06001388.png
new file mode 100755
index 00000000..ab94db0a
Binary files /dev/null and b/static/icons/06001388.png differ
diff --git a/static/icons/06001389.png b/static/icons/06001389.png
new file mode 100755
index 00000000..fd517f22
Binary files /dev/null and b/static/icons/06001389.png differ
diff --git a/static/icons/0600138A.png b/static/icons/0600138A.png
new file mode 100755
index 00000000..c05b4493
Binary files /dev/null and b/static/icons/0600138A.png differ
diff --git a/static/icons/0600138B.png b/static/icons/0600138B.png
new file mode 100755
index 00000000..83a0de09
Binary files /dev/null and b/static/icons/0600138B.png differ
diff --git a/static/icons/0600138C.png b/static/icons/0600138C.png
new file mode 100755
index 00000000..f846dcf4
Binary files /dev/null and b/static/icons/0600138C.png differ
diff --git a/static/icons/0600138E.png b/static/icons/0600138E.png
new file mode 100755
index 00000000..32bb3efb
Binary files /dev/null and b/static/icons/0600138E.png differ
diff --git a/static/icons/0600138F.png b/static/icons/0600138F.png
new file mode 100755
index 00000000..276ed5c0
Binary files /dev/null and b/static/icons/0600138F.png differ
diff --git a/static/icons/06001392.png b/static/icons/06001392.png
new file mode 100755
index 00000000..08482221
Binary files /dev/null and b/static/icons/06001392.png differ
diff --git a/static/icons/06001393.png b/static/icons/06001393.png
new file mode 100755
index 00000000..6055a7f4
Binary files /dev/null and b/static/icons/06001393.png differ
diff --git a/static/icons/06001394.png b/static/icons/06001394.png
new file mode 100755
index 00000000..2e5d808a
Binary files /dev/null and b/static/icons/06001394.png differ
diff --git a/static/icons/06001395.png b/static/icons/06001395.png
new file mode 100755
index 00000000..3864490a
Binary files /dev/null and b/static/icons/06001395.png differ
diff --git a/static/icons/06001396.png b/static/icons/06001396.png
new file mode 100755
index 00000000..250eb3c1
Binary files /dev/null and b/static/icons/06001396.png differ
diff --git a/static/icons/06001397.png b/static/icons/06001397.png
new file mode 100755
index 00000000..da0a65ae
Binary files /dev/null and b/static/icons/06001397.png differ
diff --git a/static/icons/06001398.png b/static/icons/06001398.png
new file mode 100755
index 00000000..c9b8674a
Binary files /dev/null and b/static/icons/06001398.png differ
diff --git a/static/icons/06001399.png b/static/icons/06001399.png
new file mode 100755
index 00000000..756a5977
Binary files /dev/null and b/static/icons/06001399.png differ
diff --git a/static/icons/0600139E.png b/static/icons/0600139E.png
new file mode 100755
index 00000000..13084cae
Binary files /dev/null and b/static/icons/0600139E.png differ
diff --git a/static/icons/0600139F.png b/static/icons/0600139F.png
new file mode 100755
index 00000000..bc4df470
Binary files /dev/null and b/static/icons/0600139F.png differ
diff --git a/static/icons/060013A0.png b/static/icons/060013A0.png
new file mode 100755
index 00000000..fee74684
Binary files /dev/null and b/static/icons/060013A0.png differ
diff --git a/static/icons/060013A1.png b/static/icons/060013A1.png
new file mode 100755
index 00000000..288db8df
Binary files /dev/null and b/static/icons/060013A1.png differ
diff --git a/static/icons/060013A2.png b/static/icons/060013A2.png
new file mode 100755
index 00000000..1392f9d8
Binary files /dev/null and b/static/icons/060013A2.png differ
diff --git a/static/icons/060013A3.png b/static/icons/060013A3.png
new file mode 100755
index 00000000..092db1bb
Binary files /dev/null and b/static/icons/060013A3.png differ
diff --git a/static/icons/060013A4.png b/static/icons/060013A4.png
new file mode 100755
index 00000000..ad5a10ef
Binary files /dev/null and b/static/icons/060013A4.png differ
diff --git a/static/icons/060013A5.png b/static/icons/060013A5.png
new file mode 100755
index 00000000..a71c31ec
Binary files /dev/null and b/static/icons/060013A5.png differ
diff --git a/static/icons/060013A6.png b/static/icons/060013A6.png
new file mode 100755
index 00000000..6ec912f1
Binary files /dev/null and b/static/icons/060013A6.png differ
diff --git a/static/icons/060013A7.png b/static/icons/060013A7.png
new file mode 100755
index 00000000..a5c19456
Binary files /dev/null and b/static/icons/060013A7.png differ
diff --git a/static/icons/060013A8.png b/static/icons/060013A8.png
new file mode 100755
index 00000000..a17d1ca3
Binary files /dev/null and b/static/icons/060013A8.png differ
diff --git a/static/icons/060013A9.png b/static/icons/060013A9.png
new file mode 100755
index 00000000..9946e2b4
Binary files /dev/null and b/static/icons/060013A9.png differ
diff --git a/static/icons/060013AA.png b/static/icons/060013AA.png
new file mode 100755
index 00000000..c21769ed
Binary files /dev/null and b/static/icons/060013AA.png differ
diff --git a/static/icons/060013AB.png b/static/icons/060013AB.png
new file mode 100755
index 00000000..07e13f17
Binary files /dev/null and b/static/icons/060013AB.png differ
diff --git a/static/icons/060013AD.png b/static/icons/060013AD.png
new file mode 100755
index 00000000..a3b4af2b
Binary files /dev/null and b/static/icons/060013AD.png differ
diff --git a/static/icons/060013AE.png b/static/icons/060013AE.png
new file mode 100755
index 00000000..61c345e0
Binary files /dev/null and b/static/icons/060013AE.png differ
diff --git a/static/icons/060013AF.png b/static/icons/060013AF.png
new file mode 100755
index 00000000..41f9617e
Binary files /dev/null and b/static/icons/060013AF.png differ
diff --git a/static/icons/060013B0.png b/static/icons/060013B0.png
new file mode 100755
index 00000000..5cbd8de4
Binary files /dev/null and b/static/icons/060013B0.png differ
diff --git a/static/icons/060013B1.png b/static/icons/060013B1.png
new file mode 100755
index 00000000..ea4b1039
Binary files /dev/null and b/static/icons/060013B1.png differ
diff --git a/static/icons/060013B2.png b/static/icons/060013B2.png
new file mode 100755
index 00000000..21de91a6
Binary files /dev/null and b/static/icons/060013B2.png differ
diff --git a/static/icons/060013B3.png b/static/icons/060013B3.png
new file mode 100755
index 00000000..8a46fae4
Binary files /dev/null and b/static/icons/060013B3.png differ
diff --git a/static/icons/060013B4.png b/static/icons/060013B4.png
new file mode 100755
index 00000000..c3b94a42
Binary files /dev/null and b/static/icons/060013B4.png differ
diff --git a/static/icons/060013B5.png b/static/icons/060013B5.png
new file mode 100755
index 00000000..7adab8ad
Binary files /dev/null and b/static/icons/060013B5.png differ
diff --git a/static/icons/060013B6.png b/static/icons/060013B6.png
new file mode 100755
index 00000000..4b4215a0
Binary files /dev/null and b/static/icons/060013B6.png differ
diff --git a/static/icons/060013B7.png b/static/icons/060013B7.png
new file mode 100755
index 00000000..a58882ee
Binary files /dev/null and b/static/icons/060013B7.png differ
diff --git a/static/icons/060013B8.png b/static/icons/060013B8.png
new file mode 100755
index 00000000..a70e7bea
Binary files /dev/null and b/static/icons/060013B8.png differ
diff --git a/static/icons/060013B9.png b/static/icons/060013B9.png
new file mode 100755
index 00000000..ce9e6f21
Binary files /dev/null and b/static/icons/060013B9.png differ
diff --git a/static/icons/060013BA.png b/static/icons/060013BA.png
new file mode 100755
index 00000000..ccd167c5
Binary files /dev/null and b/static/icons/060013BA.png differ
diff --git a/static/icons/060013BB.png b/static/icons/060013BB.png
new file mode 100755
index 00000000..6b8d08d6
Binary files /dev/null and b/static/icons/060013BB.png differ
diff --git a/static/icons/060013BC.png b/static/icons/060013BC.png
new file mode 100755
index 00000000..7aa5d781
Binary files /dev/null and b/static/icons/060013BC.png differ
diff --git a/static/icons/060013BD.png b/static/icons/060013BD.png
new file mode 100755
index 00000000..e3166bb8
Binary files /dev/null and b/static/icons/060013BD.png differ
diff --git a/static/icons/060013BE.png b/static/icons/060013BE.png
new file mode 100755
index 00000000..98f1ea2f
Binary files /dev/null and b/static/icons/060013BE.png differ
diff --git a/static/icons/060013BF.png b/static/icons/060013BF.png
new file mode 100755
index 00000000..bb034965
Binary files /dev/null and b/static/icons/060013BF.png differ
diff --git a/static/icons/060013C0.png b/static/icons/060013C0.png
new file mode 100755
index 00000000..9b99237d
Binary files /dev/null and b/static/icons/060013C0.png differ
diff --git a/static/icons/060013C1.png b/static/icons/060013C1.png
new file mode 100755
index 00000000..a9ecdc5b
Binary files /dev/null and b/static/icons/060013C1.png differ
diff --git a/static/icons/060013C2.png b/static/icons/060013C2.png
new file mode 100755
index 00000000..fc98d1f1
Binary files /dev/null and b/static/icons/060013C2.png differ
diff --git a/static/icons/060013C3.png b/static/icons/060013C3.png
new file mode 100755
index 00000000..52e42d37
Binary files /dev/null and b/static/icons/060013C3.png differ
diff --git a/static/icons/060013C5.png b/static/icons/060013C5.png
new file mode 100755
index 00000000..957575c2
Binary files /dev/null and b/static/icons/060013C5.png differ
diff --git a/static/icons/060013C6.png b/static/icons/060013C6.png
new file mode 100755
index 00000000..1bc1e0c7
Binary files /dev/null and b/static/icons/060013C6.png differ
diff --git a/static/icons/060013C7.png b/static/icons/060013C7.png
new file mode 100755
index 00000000..4b8be91b
Binary files /dev/null and b/static/icons/060013C7.png differ
diff --git a/static/icons/060013C8.png b/static/icons/060013C8.png
new file mode 100755
index 00000000..7384c7c8
Binary files /dev/null and b/static/icons/060013C8.png differ
diff --git a/static/icons/060013C9.png b/static/icons/060013C9.png
new file mode 100755
index 00000000..babf3568
Binary files /dev/null and b/static/icons/060013C9.png differ
diff --git a/static/icons/060013CA.png b/static/icons/060013CA.png
new file mode 100755
index 00000000..35ea26bf
Binary files /dev/null and b/static/icons/060013CA.png differ
diff --git a/static/icons/060013CC.png b/static/icons/060013CC.png
new file mode 100755
index 00000000..c978b76b
Binary files /dev/null and b/static/icons/060013CC.png differ
diff --git a/static/icons/060013CD.png b/static/icons/060013CD.png
new file mode 100755
index 00000000..c58ca687
Binary files /dev/null and b/static/icons/060013CD.png differ
diff --git a/static/icons/060013CE.png b/static/icons/060013CE.png
new file mode 100755
index 00000000..40bcb101
Binary files /dev/null and b/static/icons/060013CE.png differ
diff --git a/static/icons/060013CF.png b/static/icons/060013CF.png
new file mode 100755
index 00000000..69d39676
Binary files /dev/null and b/static/icons/060013CF.png differ
diff --git a/static/icons/060013D0.png b/static/icons/060013D0.png
new file mode 100755
index 00000000..3f9ace85
Binary files /dev/null and b/static/icons/060013D0.png differ
diff --git a/static/icons/060013D1.png b/static/icons/060013D1.png
new file mode 100755
index 00000000..ad3032f3
Binary files /dev/null and b/static/icons/060013D1.png differ
diff --git a/static/icons/060013D2.png b/static/icons/060013D2.png
new file mode 100755
index 00000000..48354c45
Binary files /dev/null and b/static/icons/060013D2.png differ
diff --git a/static/icons/060013D3.png b/static/icons/060013D3.png
new file mode 100755
index 00000000..9e3c26e5
Binary files /dev/null and b/static/icons/060013D3.png differ
diff --git a/static/icons/060013D4.png b/static/icons/060013D4.png
new file mode 100755
index 00000000..1c223be7
Binary files /dev/null and b/static/icons/060013D4.png differ
diff --git a/static/icons/060013D5.png b/static/icons/060013D5.png
new file mode 100755
index 00000000..fb1a0343
Binary files /dev/null and b/static/icons/060013D5.png differ
diff --git a/static/icons/060013D6.png b/static/icons/060013D6.png
new file mode 100755
index 00000000..95841273
Binary files /dev/null and b/static/icons/060013D6.png differ
diff --git a/static/icons/060013D7.png b/static/icons/060013D7.png
new file mode 100755
index 00000000..e08d0ee7
Binary files /dev/null and b/static/icons/060013D7.png differ
diff --git a/static/icons/060013D8.png b/static/icons/060013D8.png
new file mode 100755
index 00000000..18bb5848
Binary files /dev/null and b/static/icons/060013D8.png differ
diff --git a/static/icons/060013D9.png b/static/icons/060013D9.png
new file mode 100755
index 00000000..31dcd711
Binary files /dev/null and b/static/icons/060013D9.png differ
diff --git a/static/icons/060013DA.png b/static/icons/060013DA.png
new file mode 100755
index 00000000..16c08058
Binary files /dev/null and b/static/icons/060013DA.png differ
diff --git a/static/icons/060013DB.png b/static/icons/060013DB.png
new file mode 100755
index 00000000..00015f4c
Binary files /dev/null and b/static/icons/060013DB.png differ
diff --git a/static/icons/060013DD.png b/static/icons/060013DD.png
new file mode 100755
index 00000000..f1d66892
Binary files /dev/null and b/static/icons/060013DD.png differ
diff --git a/static/icons/060013DF.png b/static/icons/060013DF.png
new file mode 100755
index 00000000..17274dd0
Binary files /dev/null and b/static/icons/060013DF.png differ
diff --git a/static/icons/060013E1.png b/static/icons/060013E1.png
new file mode 100755
index 00000000..e625e4be
Binary files /dev/null and b/static/icons/060013E1.png differ
diff --git a/static/icons/060013E2.png b/static/icons/060013E2.png
new file mode 100755
index 00000000..a4b06572
Binary files /dev/null and b/static/icons/060013E2.png differ
diff --git a/static/icons/060013E4.png b/static/icons/060013E4.png
new file mode 100755
index 00000000..6484a80e
Binary files /dev/null and b/static/icons/060013E4.png differ
diff --git a/static/icons/060013E5.png b/static/icons/060013E5.png
new file mode 100755
index 00000000..e4300a77
Binary files /dev/null and b/static/icons/060013E5.png differ
diff --git a/static/icons/060013E6.png b/static/icons/060013E6.png
new file mode 100755
index 00000000..101afdd3
Binary files /dev/null and b/static/icons/060013E6.png differ
diff --git a/static/icons/060013E7.png b/static/icons/060013E7.png
new file mode 100755
index 00000000..8499f381
Binary files /dev/null and b/static/icons/060013E7.png differ
diff --git a/static/icons/060013E8.png b/static/icons/060013E8.png
new file mode 100755
index 00000000..976bd3e2
Binary files /dev/null and b/static/icons/060013E8.png differ
diff --git a/static/icons/060013E9.png b/static/icons/060013E9.png
new file mode 100755
index 00000000..abca8c51
Binary files /dev/null and b/static/icons/060013E9.png differ
diff --git a/static/icons/060013EA.png b/static/icons/060013EA.png
new file mode 100755
index 00000000..b7f97dcc
Binary files /dev/null and b/static/icons/060013EA.png differ
diff --git a/static/icons/060013EB.png b/static/icons/060013EB.png
new file mode 100755
index 00000000..2889787e
Binary files /dev/null and b/static/icons/060013EB.png differ
diff --git a/static/icons/060013EC.png b/static/icons/060013EC.png
new file mode 100755
index 00000000..264bfba0
Binary files /dev/null and b/static/icons/060013EC.png differ
diff --git a/static/icons/060013ED.png b/static/icons/060013ED.png
new file mode 100755
index 00000000..26becb6d
Binary files /dev/null and b/static/icons/060013ED.png differ
diff --git a/static/icons/060013EE.png b/static/icons/060013EE.png
new file mode 100755
index 00000000..d5dd3a62
Binary files /dev/null and b/static/icons/060013EE.png differ
diff --git a/static/icons/060013EF.png b/static/icons/060013EF.png
new file mode 100755
index 00000000..c4a8fc55
Binary files /dev/null and b/static/icons/060013EF.png differ
diff --git a/static/icons/060013F0.png b/static/icons/060013F0.png
new file mode 100755
index 00000000..ad7f9092
Binary files /dev/null and b/static/icons/060013F0.png differ
diff --git a/static/icons/060013F1.png b/static/icons/060013F1.png
new file mode 100755
index 00000000..d906a57e
Binary files /dev/null and b/static/icons/060013F1.png differ
diff --git a/static/icons/060013F3.png b/static/icons/060013F3.png
new file mode 100755
index 00000000..8b9164b1
Binary files /dev/null and b/static/icons/060013F3.png differ
diff --git a/static/icons/060013F4.png b/static/icons/060013F4.png
new file mode 100755
index 00000000..7adaadcd
Binary files /dev/null and b/static/icons/060013F4.png differ
diff --git a/static/icons/060013F5.png b/static/icons/060013F5.png
new file mode 100755
index 00000000..d16a130d
Binary files /dev/null and b/static/icons/060013F5.png differ
diff --git a/static/icons/060013F6.png b/static/icons/060013F6.png
new file mode 100755
index 00000000..cb912c61
Binary files /dev/null and b/static/icons/060013F6.png differ
diff --git a/static/icons/060013F7.png b/static/icons/060013F7.png
new file mode 100755
index 00000000..3392ed5e
Binary files /dev/null and b/static/icons/060013F7.png differ
diff --git a/static/icons/060013F8.png b/static/icons/060013F8.png
new file mode 100755
index 00000000..ad8a7962
Binary files /dev/null and b/static/icons/060013F8.png differ
diff --git a/static/icons/060013F9.png b/static/icons/060013F9.png
new file mode 100755
index 00000000..4184ba56
Binary files /dev/null and b/static/icons/060013F9.png differ
diff --git a/static/icons/060013FA.png b/static/icons/060013FA.png
new file mode 100755
index 00000000..bdabb16f
Binary files /dev/null and b/static/icons/060013FA.png differ
diff --git a/static/icons/060013FB.png b/static/icons/060013FB.png
new file mode 100755
index 00000000..d3730fba
Binary files /dev/null and b/static/icons/060013FB.png differ
diff --git a/static/icons/060013FC.png b/static/icons/060013FC.png
new file mode 100755
index 00000000..f71ba094
Binary files /dev/null and b/static/icons/060013FC.png differ
diff --git a/static/icons/060013FD.png b/static/icons/060013FD.png
new file mode 100755
index 00000000..ddaf3ec5
Binary files /dev/null and b/static/icons/060013FD.png differ
diff --git a/static/icons/060013FE.png b/static/icons/060013FE.png
new file mode 100755
index 00000000..5dd399d0
Binary files /dev/null and b/static/icons/060013FE.png differ
diff --git a/static/icons/060013FF.png b/static/icons/060013FF.png
new file mode 100755
index 00000000..bc5f7808
Binary files /dev/null and b/static/icons/060013FF.png differ
diff --git a/static/icons/06001400.png b/static/icons/06001400.png
new file mode 100755
index 00000000..75d16439
Binary files /dev/null and b/static/icons/06001400.png differ
diff --git a/static/icons/06001401.png b/static/icons/06001401.png
new file mode 100755
index 00000000..68ef3749
Binary files /dev/null and b/static/icons/06001401.png differ
diff --git a/static/icons/06001402.png b/static/icons/06001402.png
new file mode 100755
index 00000000..1bb1773e
Binary files /dev/null and b/static/icons/06001402.png differ
diff --git a/static/icons/06001403.png b/static/icons/06001403.png
new file mode 100755
index 00000000..de91bf37
Binary files /dev/null and b/static/icons/06001403.png differ
diff --git a/static/icons/06001404.png b/static/icons/06001404.png
new file mode 100755
index 00000000..ef4c1c47
Binary files /dev/null and b/static/icons/06001404.png differ
diff --git a/static/icons/06001405.png b/static/icons/06001405.png
new file mode 100755
index 00000000..c72f122a
Binary files /dev/null and b/static/icons/06001405.png differ
diff --git a/static/icons/06001406.png b/static/icons/06001406.png
new file mode 100755
index 00000000..1a963d56
Binary files /dev/null and b/static/icons/06001406.png differ
diff --git a/static/icons/06001407.png b/static/icons/06001407.png
new file mode 100755
index 00000000..23cb3e57
Binary files /dev/null and b/static/icons/06001407.png differ
diff --git a/static/icons/06001408.png b/static/icons/06001408.png
new file mode 100755
index 00000000..fdf57726
Binary files /dev/null and b/static/icons/06001408.png differ
diff --git a/static/icons/06001409.png b/static/icons/06001409.png
new file mode 100755
index 00000000..ac4f937d
Binary files /dev/null and b/static/icons/06001409.png differ
diff --git a/static/icons/0600140A.png b/static/icons/0600140A.png
new file mode 100755
index 00000000..f459c59b
Binary files /dev/null and b/static/icons/0600140A.png differ
diff --git a/static/icons/0600140B.png b/static/icons/0600140B.png
new file mode 100755
index 00000000..049bf102
Binary files /dev/null and b/static/icons/0600140B.png differ
diff --git a/static/icons/0600140C.png b/static/icons/0600140C.png
new file mode 100755
index 00000000..a75ab7c8
Binary files /dev/null and b/static/icons/0600140C.png differ
diff --git a/static/icons/0600140D.png b/static/icons/0600140D.png
new file mode 100755
index 00000000..8ea5d678
Binary files /dev/null and b/static/icons/0600140D.png differ
diff --git a/static/icons/0600140E.png b/static/icons/0600140E.png
new file mode 100755
index 00000000..074c2d85
Binary files /dev/null and b/static/icons/0600140E.png differ
diff --git a/static/icons/0600140F.png b/static/icons/0600140F.png
new file mode 100755
index 00000000..4237525a
Binary files /dev/null and b/static/icons/0600140F.png differ
diff --git a/static/icons/06001410.png b/static/icons/06001410.png
new file mode 100755
index 00000000..d3d41a50
Binary files /dev/null and b/static/icons/06001410.png differ
diff --git a/static/icons/06001411.png b/static/icons/06001411.png
new file mode 100755
index 00000000..e6dc7dfa
Binary files /dev/null and b/static/icons/06001411.png differ
diff --git a/static/icons/06001412.png b/static/icons/06001412.png
new file mode 100755
index 00000000..9dcd4349
Binary files /dev/null and b/static/icons/06001412.png differ
diff --git a/static/icons/06001413.png b/static/icons/06001413.png
new file mode 100755
index 00000000..380e45ff
Binary files /dev/null and b/static/icons/06001413.png differ
diff --git a/static/icons/06001414.png b/static/icons/06001414.png
new file mode 100755
index 00000000..7be9cc32
Binary files /dev/null and b/static/icons/06001414.png differ
diff --git a/static/icons/06001415.png b/static/icons/06001415.png
new file mode 100755
index 00000000..a5cc8a42
Binary files /dev/null and b/static/icons/06001415.png differ
diff --git a/static/icons/06001416.png b/static/icons/06001416.png
new file mode 100755
index 00000000..01e9959c
Binary files /dev/null and b/static/icons/06001416.png differ
diff --git a/static/icons/06001417.png b/static/icons/06001417.png
new file mode 100755
index 00000000..48007733
Binary files /dev/null and b/static/icons/06001417.png differ
diff --git a/static/icons/06001418.png b/static/icons/06001418.png
new file mode 100755
index 00000000..e798a2e7
Binary files /dev/null and b/static/icons/06001418.png differ
diff --git a/static/icons/06001419.png b/static/icons/06001419.png
new file mode 100755
index 00000000..be7b2fa7
Binary files /dev/null and b/static/icons/06001419.png differ
diff --git a/static/icons/0600141A.png b/static/icons/0600141A.png
new file mode 100755
index 00000000..e856001e
Binary files /dev/null and b/static/icons/0600141A.png differ
diff --git a/static/icons/0600141B.png b/static/icons/0600141B.png
new file mode 100755
index 00000000..d1c5606d
Binary files /dev/null and b/static/icons/0600141B.png differ
diff --git a/static/icons/0600141D.png b/static/icons/0600141D.png
new file mode 100755
index 00000000..6055a7f4
Binary files /dev/null and b/static/icons/0600141D.png differ
diff --git a/static/icons/0600141E.png b/static/icons/0600141E.png
new file mode 100755
index 00000000..2e5d808a
Binary files /dev/null and b/static/icons/0600141E.png differ
diff --git a/static/icons/06001420.png b/static/icons/06001420.png
new file mode 100755
index 00000000..867ebfc2
Binary files /dev/null and b/static/icons/06001420.png differ
diff --git a/static/icons/06001421.png b/static/icons/06001421.png
new file mode 100755
index 00000000..ee6a26a5
Binary files /dev/null and b/static/icons/06001421.png differ
diff --git a/static/icons/06001423.png b/static/icons/06001423.png
new file mode 100755
index 00000000..87694dd3
Binary files /dev/null and b/static/icons/06001423.png differ
diff --git a/static/icons/06001424.png b/static/icons/06001424.png
new file mode 100755
index 00000000..b502a370
Binary files /dev/null and b/static/icons/06001424.png differ
diff --git a/static/icons/06001425.png b/static/icons/06001425.png
new file mode 100755
index 00000000..84a9119b
Binary files /dev/null and b/static/icons/06001425.png differ
diff --git a/static/icons/06001426.png b/static/icons/06001426.png
new file mode 100755
index 00000000..b502a370
Binary files /dev/null and b/static/icons/06001426.png differ
diff --git a/static/icons/06001427.png b/static/icons/06001427.png
new file mode 100755
index 00000000..ad73fa71
Binary files /dev/null and b/static/icons/06001427.png differ
diff --git a/static/icons/06001428.png b/static/icons/06001428.png
new file mode 100755
index 00000000..b502a370
Binary files /dev/null and b/static/icons/06001428.png differ
diff --git a/static/icons/06001429.png b/static/icons/06001429.png
new file mode 100755
index 00000000..ad73fa71
Binary files /dev/null and b/static/icons/06001429.png differ
diff --git a/static/icons/0600142A.png b/static/icons/0600142A.png
new file mode 100755
index 00000000..b502a370
Binary files /dev/null and b/static/icons/0600142A.png differ
diff --git a/static/icons/0600142B.png b/static/icons/0600142B.png
new file mode 100755
index 00000000..295889fd
Binary files /dev/null and b/static/icons/0600142B.png differ
diff --git a/static/icons/0600142C.png b/static/icons/0600142C.png
new file mode 100755
index 00000000..ad73fa71
Binary files /dev/null and b/static/icons/0600142C.png differ
diff --git a/static/icons/0600142D.png b/static/icons/0600142D.png
new file mode 100755
index 00000000..7503493d
Binary files /dev/null and b/static/icons/0600142D.png differ
diff --git a/static/icons/0600142E.png b/static/icons/0600142E.png
new file mode 100755
index 00000000..3be689b6
Binary files /dev/null and b/static/icons/0600142E.png differ
diff --git a/static/icons/0600142F.png b/static/icons/0600142F.png
new file mode 100755
index 00000000..4ad9bf64
Binary files /dev/null and b/static/icons/0600142F.png differ
diff --git a/static/icons/06001430.png b/static/icons/06001430.png
new file mode 100755
index 00000000..c93c7537
Binary files /dev/null and b/static/icons/06001430.png differ
diff --git a/static/icons/06001431.png b/static/icons/06001431.png
new file mode 100755
index 00000000..760bf981
Binary files /dev/null and b/static/icons/06001431.png differ
diff --git a/static/icons/06001432.png b/static/icons/06001432.png
new file mode 100755
index 00000000..9cc052c5
Binary files /dev/null and b/static/icons/06001432.png differ
diff --git a/static/icons/06001433.png b/static/icons/06001433.png
new file mode 100755
index 00000000..ee11d1fc
Binary files /dev/null and b/static/icons/06001433.png differ
diff --git a/static/icons/06001434.png b/static/icons/06001434.png
new file mode 100755
index 00000000..17eafb03
Binary files /dev/null and b/static/icons/06001434.png differ
diff --git a/static/icons/06001435.png b/static/icons/06001435.png
new file mode 100755
index 00000000..e6a2c16a
Binary files /dev/null and b/static/icons/06001435.png differ
diff --git a/static/icons/06001436.png b/static/icons/06001436.png
new file mode 100755
index 00000000..07ba6585
Binary files /dev/null and b/static/icons/06001436.png differ
diff --git a/static/icons/06001437.png b/static/icons/06001437.png
new file mode 100755
index 00000000..4c2e10ba
Binary files /dev/null and b/static/icons/06001437.png differ
diff --git a/static/icons/06001438.png b/static/icons/06001438.png
new file mode 100755
index 00000000..571600e8
Binary files /dev/null and b/static/icons/06001438.png differ
diff --git a/static/icons/06001439.png b/static/icons/06001439.png
new file mode 100755
index 00000000..34c7e73d
Binary files /dev/null and b/static/icons/06001439.png differ
diff --git a/static/icons/0600143A.png b/static/icons/0600143A.png
new file mode 100755
index 00000000..db401cb0
Binary files /dev/null and b/static/icons/0600143A.png differ
diff --git a/static/icons/0600143B.png b/static/icons/0600143B.png
new file mode 100755
index 00000000..12de956e
Binary files /dev/null and b/static/icons/0600143B.png differ
diff --git a/static/icons/0600143C.png b/static/icons/0600143C.png
new file mode 100755
index 00000000..959c88c4
Binary files /dev/null and b/static/icons/0600143C.png differ
diff --git a/static/icons/0600143D.png b/static/icons/0600143D.png
new file mode 100755
index 00000000..096cc8e1
Binary files /dev/null and b/static/icons/0600143D.png differ
diff --git a/static/icons/0600143E.png b/static/icons/0600143E.png
new file mode 100755
index 00000000..c3a0816b
Binary files /dev/null and b/static/icons/0600143E.png differ
diff --git a/static/icons/0600143F.png b/static/icons/0600143F.png
new file mode 100755
index 00000000..a43a1d99
Binary files /dev/null and b/static/icons/0600143F.png differ
diff --git a/static/icons/06001447.png b/static/icons/06001447.png
new file mode 100755
index 00000000..55c2d883
Binary files /dev/null and b/static/icons/06001447.png differ
diff --git a/static/icons/0600144D.png b/static/icons/0600144D.png
new file mode 100755
index 00000000..990a994f
Binary files /dev/null and b/static/icons/0600144D.png differ
diff --git a/static/icons/0600144E.png b/static/icons/0600144E.png
new file mode 100755
index 00000000..e6a2c16a
Binary files /dev/null and b/static/icons/0600144E.png differ
diff --git a/static/icons/06001450.png b/static/icons/06001450.png
new file mode 100755
index 00000000..e6394bb3
Binary files /dev/null and b/static/icons/06001450.png differ
diff --git a/static/icons/06001451.png b/static/icons/06001451.png
new file mode 100755
index 00000000..48b64a7a
Binary files /dev/null and b/static/icons/06001451.png differ
diff --git a/static/icons/0600147D.png b/static/icons/0600147D.png
new file mode 100755
index 00000000..9c3b1f11
Binary files /dev/null and b/static/icons/0600147D.png differ
diff --git a/static/icons/06001488.png b/static/icons/06001488.png
new file mode 100755
index 00000000..c05ca27a
Binary files /dev/null and b/static/icons/06001488.png differ
diff --git a/static/icons/06001489.png b/static/icons/06001489.png
new file mode 100755
index 00000000..f307ac0c
Binary files /dev/null and b/static/icons/06001489.png differ
diff --git a/static/icons/0600148A.png b/static/icons/0600148A.png
new file mode 100755
index 00000000..3861fcb9
Binary files /dev/null and b/static/icons/0600148A.png differ
diff --git a/static/icons/0600148B.png b/static/icons/0600148B.png
new file mode 100755
index 00000000..36d474c4
Binary files /dev/null and b/static/icons/0600148B.png differ
diff --git a/static/icons/0600148C.png b/static/icons/0600148C.png
new file mode 100755
index 00000000..90200cbd
Binary files /dev/null and b/static/icons/0600148C.png differ
diff --git a/static/icons/0600148D.png b/static/icons/0600148D.png
new file mode 100755
index 00000000..fc4c5e83
Binary files /dev/null and b/static/icons/0600148D.png differ
diff --git a/static/icons/0600148E.png b/static/icons/0600148E.png
new file mode 100755
index 00000000..d508d58b
Binary files /dev/null and b/static/icons/0600148E.png differ
diff --git a/static/icons/0600148F.png b/static/icons/0600148F.png
new file mode 100755
index 00000000..1452a94b
Binary files /dev/null and b/static/icons/0600148F.png differ
diff --git a/static/icons/06001490.png b/static/icons/06001490.png
new file mode 100755
index 00000000..45ddfa9b
Binary files /dev/null and b/static/icons/06001490.png differ
diff --git a/static/icons/06001491.png b/static/icons/06001491.png
new file mode 100755
index 00000000..9ce6d568
Binary files /dev/null and b/static/icons/06001491.png differ
diff --git a/static/icons/06001492.png b/static/icons/06001492.png
new file mode 100755
index 00000000..a21e95c3
Binary files /dev/null and b/static/icons/06001492.png differ
diff --git a/static/icons/06001493.png b/static/icons/06001493.png
new file mode 100755
index 00000000..ee3f69c7
Binary files /dev/null and b/static/icons/06001493.png differ
diff --git a/static/icons/06001494.png b/static/icons/06001494.png
new file mode 100755
index 00000000..56f7520e
Binary files /dev/null and b/static/icons/06001494.png differ
diff --git a/static/icons/06001495.png b/static/icons/06001495.png
new file mode 100755
index 00000000..731e1cc9
Binary files /dev/null and b/static/icons/06001495.png differ
diff --git a/static/icons/06001496.png b/static/icons/06001496.png
new file mode 100755
index 00000000..d6bfe341
Binary files /dev/null and b/static/icons/06001496.png differ
diff --git a/static/icons/06001497.png b/static/icons/06001497.png
new file mode 100755
index 00000000..6563e76c
Binary files /dev/null and b/static/icons/06001497.png differ
diff --git a/static/icons/06001498.png b/static/icons/06001498.png
new file mode 100755
index 00000000..baad6058
Binary files /dev/null and b/static/icons/06001498.png differ
diff --git a/static/icons/06001499.png b/static/icons/06001499.png
new file mode 100755
index 00000000..9a4b311a
Binary files /dev/null and b/static/icons/06001499.png differ
diff --git a/static/icons/0600149A.png b/static/icons/0600149A.png
new file mode 100755
index 00000000..e64042d8
Binary files /dev/null and b/static/icons/0600149A.png differ
diff --git a/static/icons/0600149B.png b/static/icons/0600149B.png
new file mode 100755
index 00000000..186269ca
Binary files /dev/null and b/static/icons/0600149B.png differ
diff --git a/static/icons/0600149C.png b/static/icons/0600149C.png
new file mode 100755
index 00000000..9962b23c
Binary files /dev/null and b/static/icons/0600149C.png differ
diff --git a/static/icons/0600149D.png b/static/icons/0600149D.png
new file mode 100755
index 00000000..4ebe78e9
Binary files /dev/null and b/static/icons/0600149D.png differ
diff --git a/static/icons/0600149E.png b/static/icons/0600149E.png
new file mode 100755
index 00000000..2eea9f9a
Binary files /dev/null and b/static/icons/0600149E.png differ
diff --git a/static/icons/0600149F.png b/static/icons/0600149F.png
new file mode 100755
index 00000000..7e89ee81
Binary files /dev/null and b/static/icons/0600149F.png differ
diff --git a/static/icons/060014A0.png b/static/icons/060014A0.png
new file mode 100755
index 00000000..102933b8
Binary files /dev/null and b/static/icons/060014A0.png differ
diff --git a/static/icons/060014A1.png b/static/icons/060014A1.png
new file mode 100755
index 00000000..9291c8fc
Binary files /dev/null and b/static/icons/060014A1.png differ
diff --git a/static/icons/060014A2.png b/static/icons/060014A2.png
new file mode 100755
index 00000000..113f1112
Binary files /dev/null and b/static/icons/060014A2.png differ
diff --git a/static/icons/060014A3.png b/static/icons/060014A3.png
new file mode 100755
index 00000000..489b602c
Binary files /dev/null and b/static/icons/060014A3.png differ
diff --git a/static/icons/060014A4.png b/static/icons/060014A4.png
new file mode 100755
index 00000000..35dd6c5d
Binary files /dev/null and b/static/icons/060014A4.png differ
diff --git a/static/icons/060014A5.png b/static/icons/060014A5.png
new file mode 100755
index 00000000..299605f1
Binary files /dev/null and b/static/icons/060014A5.png differ
diff --git a/static/icons/060014A6.png b/static/icons/060014A6.png
new file mode 100755
index 00000000..351aa5fb
Binary files /dev/null and b/static/icons/060014A6.png differ
diff --git a/static/icons/060014A7.png b/static/icons/060014A7.png
new file mode 100755
index 00000000..0ccd35c9
Binary files /dev/null and b/static/icons/060014A7.png differ
diff --git a/static/icons/060014A8.png b/static/icons/060014A8.png
new file mode 100755
index 00000000..43327bc0
Binary files /dev/null and b/static/icons/060014A8.png differ
diff --git a/static/icons/060014A9.png b/static/icons/060014A9.png
new file mode 100755
index 00000000..5cb1c3aa
Binary files /dev/null and b/static/icons/060014A9.png differ
diff --git a/static/icons/060014AA.png b/static/icons/060014AA.png
new file mode 100755
index 00000000..fcaeda07
Binary files /dev/null and b/static/icons/060014AA.png differ
diff --git a/static/icons/060014AB.png b/static/icons/060014AB.png
new file mode 100755
index 00000000..6064da64
Binary files /dev/null and b/static/icons/060014AB.png differ
diff --git a/static/icons/060014AC.png b/static/icons/060014AC.png
new file mode 100755
index 00000000..3c48f1b7
Binary files /dev/null and b/static/icons/060014AC.png differ
diff --git a/static/icons/060014AD.png b/static/icons/060014AD.png
new file mode 100755
index 00000000..2bcc2168
Binary files /dev/null and b/static/icons/060014AD.png differ
diff --git a/static/icons/060014AE.png b/static/icons/060014AE.png
new file mode 100755
index 00000000..15bb95de
Binary files /dev/null and b/static/icons/060014AE.png differ
diff --git a/static/icons/060014AF.png b/static/icons/060014AF.png
new file mode 100755
index 00000000..362ae0b4
Binary files /dev/null and b/static/icons/060014AF.png differ
diff --git a/static/icons/060014B0.png b/static/icons/060014B0.png
new file mode 100755
index 00000000..e530d503
Binary files /dev/null and b/static/icons/060014B0.png differ
diff --git a/static/icons/060014B1.png b/static/icons/060014B1.png
new file mode 100755
index 00000000..5b09d6f4
Binary files /dev/null and b/static/icons/060014B1.png differ
diff --git a/static/icons/060014B2.png b/static/icons/060014B2.png
new file mode 100755
index 00000000..ec8b835e
Binary files /dev/null and b/static/icons/060014B2.png differ
diff --git a/static/icons/060014B3.png b/static/icons/060014B3.png
new file mode 100755
index 00000000..c5acaa6f
Binary files /dev/null and b/static/icons/060014B3.png differ
diff --git a/static/icons/060014B4.png b/static/icons/060014B4.png
new file mode 100755
index 00000000..8709752b
Binary files /dev/null and b/static/icons/060014B4.png differ
diff --git a/static/icons/060014B5.png b/static/icons/060014B5.png
new file mode 100755
index 00000000..8e0c4912
Binary files /dev/null and b/static/icons/060014B5.png differ
diff --git a/static/icons/060014B6.png b/static/icons/060014B6.png
new file mode 100755
index 00000000..84ff7a31
Binary files /dev/null and b/static/icons/060014B6.png differ
diff --git a/static/icons/060014B7.png b/static/icons/060014B7.png
new file mode 100755
index 00000000..6851e901
Binary files /dev/null and b/static/icons/060014B7.png differ
diff --git a/static/icons/060014B8.png b/static/icons/060014B8.png
new file mode 100755
index 00000000..59759774
Binary files /dev/null and b/static/icons/060014B8.png differ
diff --git a/static/icons/060014B9.png b/static/icons/060014B9.png
new file mode 100755
index 00000000..ef961405
Binary files /dev/null and b/static/icons/060014B9.png differ
diff --git a/static/icons/060014BA.png b/static/icons/060014BA.png
new file mode 100755
index 00000000..9e217c93
Binary files /dev/null and b/static/icons/060014BA.png differ
diff --git a/static/icons/060014BB.png b/static/icons/060014BB.png
new file mode 100755
index 00000000..53623665
Binary files /dev/null and b/static/icons/060014BB.png differ
diff --git a/static/icons/060014BC.png b/static/icons/060014BC.png
new file mode 100755
index 00000000..5d57f99c
Binary files /dev/null and b/static/icons/060014BC.png differ
diff --git a/static/icons/060014BD.png b/static/icons/060014BD.png
new file mode 100755
index 00000000..c1b77d05
Binary files /dev/null and b/static/icons/060014BD.png differ
diff --git a/static/icons/060014BE.png b/static/icons/060014BE.png
new file mode 100755
index 00000000..510f7bf0
Binary files /dev/null and b/static/icons/060014BE.png differ
diff --git a/static/icons/060014BF.png b/static/icons/060014BF.png
new file mode 100755
index 00000000..7f44c8d7
Binary files /dev/null and b/static/icons/060014BF.png differ
diff --git a/static/icons/060014C0.png b/static/icons/060014C0.png
new file mode 100755
index 00000000..24684222
Binary files /dev/null and b/static/icons/060014C0.png differ
diff --git a/static/icons/060014C1.png b/static/icons/060014C1.png
new file mode 100755
index 00000000..d34575f1
Binary files /dev/null and b/static/icons/060014C1.png differ
diff --git a/static/icons/060014C2.png b/static/icons/060014C2.png
new file mode 100755
index 00000000..0c62e5f9
Binary files /dev/null and b/static/icons/060014C2.png differ
diff --git a/static/icons/060014C3.png b/static/icons/060014C3.png
new file mode 100755
index 00000000..c1e045a6
Binary files /dev/null and b/static/icons/060014C3.png differ
diff --git a/static/icons/060014C4.png b/static/icons/060014C4.png
new file mode 100755
index 00000000..5b5b2fb0
Binary files /dev/null and b/static/icons/060014C4.png differ
diff --git a/static/icons/060014C5.png b/static/icons/060014C5.png
new file mode 100755
index 00000000..b759617c
Binary files /dev/null and b/static/icons/060014C5.png differ
diff --git a/static/icons/060014C6.png b/static/icons/060014C6.png
new file mode 100755
index 00000000..38ff1d57
Binary files /dev/null and b/static/icons/060014C6.png differ
diff --git a/static/icons/060014C7.png b/static/icons/060014C7.png
new file mode 100755
index 00000000..112b8394
Binary files /dev/null and b/static/icons/060014C7.png differ
diff --git a/static/icons/060014C8.png b/static/icons/060014C8.png
new file mode 100755
index 00000000..5a4ae626
Binary files /dev/null and b/static/icons/060014C8.png differ
diff --git a/static/icons/060014C9.png b/static/icons/060014C9.png
new file mode 100755
index 00000000..580a3754
Binary files /dev/null and b/static/icons/060014C9.png differ
diff --git a/static/icons/060014CA.png b/static/icons/060014CA.png
new file mode 100755
index 00000000..06b66ae8
Binary files /dev/null and b/static/icons/060014CA.png differ
diff --git a/static/icons/060014CB.png b/static/icons/060014CB.png
new file mode 100755
index 00000000..e4579111
Binary files /dev/null and b/static/icons/060014CB.png differ
diff --git a/static/icons/060014CC.png b/static/icons/060014CC.png
new file mode 100755
index 00000000..a7ccbd8f
Binary files /dev/null and b/static/icons/060014CC.png differ
diff --git a/static/icons/060014CD.png b/static/icons/060014CD.png
new file mode 100755
index 00000000..3ba4a9a2
Binary files /dev/null and b/static/icons/060014CD.png differ
diff --git a/static/icons/060014CE.png b/static/icons/060014CE.png
new file mode 100755
index 00000000..a3fba57e
Binary files /dev/null and b/static/icons/060014CE.png differ
diff --git a/static/icons/060014CF.png b/static/icons/060014CF.png
new file mode 100755
index 00000000..c2e13bbc
Binary files /dev/null and b/static/icons/060014CF.png differ
diff --git a/static/icons/060014D0.png b/static/icons/060014D0.png
new file mode 100755
index 00000000..d5b4f820
Binary files /dev/null and b/static/icons/060014D0.png differ
diff --git a/static/icons/060014D1.png b/static/icons/060014D1.png
new file mode 100755
index 00000000..b839db7b
Binary files /dev/null and b/static/icons/060014D1.png differ
diff --git a/static/icons/060014D2.png b/static/icons/060014D2.png
new file mode 100755
index 00000000..53005455
Binary files /dev/null and b/static/icons/060014D2.png differ
diff --git a/static/icons/060014D3.png b/static/icons/060014D3.png
new file mode 100755
index 00000000..58f28856
Binary files /dev/null and b/static/icons/060014D3.png differ
diff --git a/static/icons/060014D4.png b/static/icons/060014D4.png
new file mode 100755
index 00000000..1ef9c9cf
Binary files /dev/null and b/static/icons/060014D4.png differ
diff --git a/static/icons/060014D5.png b/static/icons/060014D5.png
new file mode 100755
index 00000000..549622eb
Binary files /dev/null and b/static/icons/060014D5.png differ
diff --git a/static/icons/060014D6.png b/static/icons/060014D6.png
new file mode 100755
index 00000000..0dc1199b
Binary files /dev/null and b/static/icons/060014D6.png differ
diff --git a/static/icons/060014D7.png b/static/icons/060014D7.png
new file mode 100755
index 00000000..fddace19
Binary files /dev/null and b/static/icons/060014D7.png differ
diff --git a/static/icons/060014D8.png b/static/icons/060014D8.png
new file mode 100755
index 00000000..c33cf443
Binary files /dev/null and b/static/icons/060014D8.png differ
diff --git a/static/icons/060014D9.png b/static/icons/060014D9.png
new file mode 100755
index 00000000..aff9eb90
Binary files /dev/null and b/static/icons/060014D9.png differ
diff --git a/static/icons/060014DA.png b/static/icons/060014DA.png
new file mode 100755
index 00000000..549a327f
Binary files /dev/null and b/static/icons/060014DA.png differ
diff --git a/static/icons/060014DB.png b/static/icons/060014DB.png
new file mode 100755
index 00000000..aab11e31
Binary files /dev/null and b/static/icons/060014DB.png differ
diff --git a/static/icons/060014DC.png b/static/icons/060014DC.png
new file mode 100755
index 00000000..f723a79c
Binary files /dev/null and b/static/icons/060014DC.png differ
diff --git a/static/icons/060014DD.png b/static/icons/060014DD.png
new file mode 100755
index 00000000..b0c63fb1
Binary files /dev/null and b/static/icons/060014DD.png differ
diff --git a/static/icons/060014DE.png b/static/icons/060014DE.png
new file mode 100755
index 00000000..5f08a6bb
Binary files /dev/null and b/static/icons/060014DE.png differ
diff --git a/static/icons/060014DF.png b/static/icons/060014DF.png
new file mode 100755
index 00000000..32320ab9
Binary files /dev/null and b/static/icons/060014DF.png differ
diff --git a/static/icons/060014E0.png b/static/icons/060014E0.png
new file mode 100755
index 00000000..4961598f
Binary files /dev/null and b/static/icons/060014E0.png differ
diff --git a/static/icons/060014E1.png b/static/icons/060014E1.png
new file mode 100755
index 00000000..41168f4a
Binary files /dev/null and b/static/icons/060014E1.png differ
diff --git a/static/icons/060014E2.png b/static/icons/060014E2.png
new file mode 100755
index 00000000..c75c6b1b
Binary files /dev/null and b/static/icons/060014E2.png differ
diff --git a/static/icons/060014E3.png b/static/icons/060014E3.png
new file mode 100755
index 00000000..efad5ded
Binary files /dev/null and b/static/icons/060014E3.png differ
diff --git a/static/icons/060014E4.png b/static/icons/060014E4.png
new file mode 100755
index 00000000..8b83fa70
Binary files /dev/null and b/static/icons/060014E4.png differ
diff --git a/static/icons/060014E5.png b/static/icons/060014E5.png
new file mode 100755
index 00000000..52c8aeb6
Binary files /dev/null and b/static/icons/060014E5.png differ
diff --git a/static/icons/060014E6.png b/static/icons/060014E6.png
new file mode 100755
index 00000000..12c0be0f
Binary files /dev/null and b/static/icons/060014E6.png differ
diff --git a/static/icons/060014E7.png b/static/icons/060014E7.png
new file mode 100755
index 00000000..0a1a2315
Binary files /dev/null and b/static/icons/060014E7.png differ
diff --git a/static/icons/060014E8.png b/static/icons/060014E8.png
new file mode 100755
index 00000000..50bcacbe
Binary files /dev/null and b/static/icons/060014E8.png differ
diff --git a/static/icons/060014E9.png b/static/icons/060014E9.png
new file mode 100755
index 00000000..6620dc37
Binary files /dev/null and b/static/icons/060014E9.png differ
diff --git a/static/icons/060014EA.png b/static/icons/060014EA.png
new file mode 100755
index 00000000..46a074fb
Binary files /dev/null and b/static/icons/060014EA.png differ
diff --git a/static/icons/060014EB.png b/static/icons/060014EB.png
new file mode 100755
index 00000000..84dc33f5
Binary files /dev/null and b/static/icons/060014EB.png differ
diff --git a/static/icons/060014EC.png b/static/icons/060014EC.png
new file mode 100755
index 00000000..e72ff5f8
Binary files /dev/null and b/static/icons/060014EC.png differ
diff --git a/static/icons/060014ED.png b/static/icons/060014ED.png
new file mode 100755
index 00000000..af6db645
Binary files /dev/null and b/static/icons/060014ED.png differ
diff --git a/static/icons/060014EE.png b/static/icons/060014EE.png
new file mode 100755
index 00000000..c8b710db
Binary files /dev/null and b/static/icons/060014EE.png differ
diff --git a/static/icons/060014EF.png b/static/icons/060014EF.png
new file mode 100755
index 00000000..c20c1c2a
Binary files /dev/null and b/static/icons/060014EF.png differ
diff --git a/static/icons/060014F0.png b/static/icons/060014F0.png
new file mode 100755
index 00000000..7eef8ca4
Binary files /dev/null and b/static/icons/060014F0.png differ
diff --git a/static/icons/060014F1.png b/static/icons/060014F1.png
new file mode 100755
index 00000000..b394ddf1
Binary files /dev/null and b/static/icons/060014F1.png differ
diff --git a/static/icons/060014F2.png b/static/icons/060014F2.png
new file mode 100755
index 00000000..35782cf0
Binary files /dev/null and b/static/icons/060014F2.png differ
diff --git a/static/icons/060014F3.png b/static/icons/060014F3.png
new file mode 100755
index 00000000..2486e090
Binary files /dev/null and b/static/icons/060014F3.png differ
diff --git a/static/icons/060014F4.png b/static/icons/060014F4.png
new file mode 100755
index 00000000..d269b3fe
Binary files /dev/null and b/static/icons/060014F4.png differ
diff --git a/static/icons/060014F5.png b/static/icons/060014F5.png
new file mode 100755
index 00000000..f9ff1c45
Binary files /dev/null and b/static/icons/060014F5.png differ
diff --git a/static/icons/060014F6.png b/static/icons/060014F6.png
new file mode 100755
index 00000000..94ef66a6
Binary files /dev/null and b/static/icons/060014F6.png differ
diff --git a/static/icons/060014F7.png b/static/icons/060014F7.png
new file mode 100755
index 00000000..354884e8
Binary files /dev/null and b/static/icons/060014F7.png differ
diff --git a/static/icons/060014F8.png b/static/icons/060014F8.png
new file mode 100755
index 00000000..56800632
Binary files /dev/null and b/static/icons/060014F8.png differ
diff --git a/static/icons/060014F9.png b/static/icons/060014F9.png
new file mode 100755
index 00000000..ab647533
Binary files /dev/null and b/static/icons/060014F9.png differ
diff --git a/static/icons/060014FA.png b/static/icons/060014FA.png
new file mode 100755
index 00000000..6c18a730
Binary files /dev/null and b/static/icons/060014FA.png differ
diff --git a/static/icons/060014FB.png b/static/icons/060014FB.png
new file mode 100755
index 00000000..b82cbf6f
Binary files /dev/null and b/static/icons/060014FB.png differ
diff --git a/static/icons/060014FC.png b/static/icons/060014FC.png
new file mode 100755
index 00000000..0373d61c
Binary files /dev/null and b/static/icons/060014FC.png differ
diff --git a/static/icons/060014FD.png b/static/icons/060014FD.png
new file mode 100755
index 00000000..45c94ef3
Binary files /dev/null and b/static/icons/060014FD.png differ
diff --git a/static/icons/060014FE.png b/static/icons/060014FE.png
new file mode 100755
index 00000000..855dfec5
Binary files /dev/null and b/static/icons/060014FE.png differ
diff --git a/static/icons/060014FF.png b/static/icons/060014FF.png
new file mode 100755
index 00000000..e09367f7
Binary files /dev/null and b/static/icons/060014FF.png differ
diff --git a/static/icons/06001500.png b/static/icons/06001500.png
new file mode 100755
index 00000000..de242f9c
Binary files /dev/null and b/static/icons/06001500.png differ
diff --git a/static/icons/06001501.png b/static/icons/06001501.png
new file mode 100755
index 00000000..6e0200f5
Binary files /dev/null and b/static/icons/06001501.png differ
diff --git a/static/icons/06001502.png b/static/icons/06001502.png
new file mode 100755
index 00000000..0d32befe
Binary files /dev/null and b/static/icons/06001502.png differ
diff --git a/static/icons/06001503.png b/static/icons/06001503.png
new file mode 100755
index 00000000..d6d09a27
Binary files /dev/null and b/static/icons/06001503.png differ
diff --git a/static/icons/06001504.png b/static/icons/06001504.png
new file mode 100755
index 00000000..1731dd77
Binary files /dev/null and b/static/icons/06001504.png differ
diff --git a/static/icons/06001505.png b/static/icons/06001505.png
new file mode 100755
index 00000000..02450adf
Binary files /dev/null and b/static/icons/06001505.png differ
diff --git a/static/icons/06001506.png b/static/icons/06001506.png
new file mode 100755
index 00000000..9646ec8b
Binary files /dev/null and b/static/icons/06001506.png differ
diff --git a/static/icons/06001507.png b/static/icons/06001507.png
new file mode 100755
index 00000000..eb6c33fc
Binary files /dev/null and b/static/icons/06001507.png differ
diff --git a/static/icons/06001508.png b/static/icons/06001508.png
new file mode 100755
index 00000000..dbc735aa
Binary files /dev/null and b/static/icons/06001508.png differ
diff --git a/static/icons/06001509.png b/static/icons/06001509.png
new file mode 100755
index 00000000..f1684a07
Binary files /dev/null and b/static/icons/06001509.png differ
diff --git a/static/icons/0600150A.png b/static/icons/0600150A.png
new file mode 100755
index 00000000..de8b2a12
Binary files /dev/null and b/static/icons/0600150A.png differ
diff --git a/static/icons/0600150B.png b/static/icons/0600150B.png
new file mode 100755
index 00000000..ac99be4a
Binary files /dev/null and b/static/icons/0600150B.png differ
diff --git a/static/icons/0600150C.png b/static/icons/0600150C.png
new file mode 100755
index 00000000..b2d175a1
Binary files /dev/null and b/static/icons/0600150C.png differ
diff --git a/static/icons/0600150D.png b/static/icons/0600150D.png
new file mode 100755
index 00000000..b113f425
Binary files /dev/null and b/static/icons/0600150D.png differ
diff --git a/static/icons/0600150E.png b/static/icons/0600150E.png
new file mode 100755
index 00000000..8219e840
Binary files /dev/null and b/static/icons/0600150E.png differ
diff --git a/static/icons/0600150F.png b/static/icons/0600150F.png
new file mode 100755
index 00000000..b184c577
Binary files /dev/null and b/static/icons/0600150F.png differ
diff --git a/static/icons/06001510.png b/static/icons/06001510.png
new file mode 100755
index 00000000..885fc026
Binary files /dev/null and b/static/icons/06001510.png differ
diff --git a/static/icons/06001511.png b/static/icons/06001511.png
new file mode 100755
index 00000000..a62873b9
Binary files /dev/null and b/static/icons/06001511.png differ
diff --git a/static/icons/06001512.png b/static/icons/06001512.png
new file mode 100755
index 00000000..36f7befd
Binary files /dev/null and b/static/icons/06001512.png differ
diff --git a/static/icons/06001513.png b/static/icons/06001513.png
new file mode 100755
index 00000000..2cb6180c
Binary files /dev/null and b/static/icons/06001513.png differ
diff --git a/static/icons/06001514.png b/static/icons/06001514.png
new file mode 100755
index 00000000..51c20c97
Binary files /dev/null and b/static/icons/06001514.png differ
diff --git a/static/icons/06001515.png b/static/icons/06001515.png
new file mode 100755
index 00000000..fdc7d393
Binary files /dev/null and b/static/icons/06001515.png differ
diff --git a/static/icons/06001516.png b/static/icons/06001516.png
new file mode 100755
index 00000000..afeee7f6
Binary files /dev/null and b/static/icons/06001516.png differ
diff --git a/static/icons/06001517.png b/static/icons/06001517.png
new file mode 100755
index 00000000..8aa4fda0
Binary files /dev/null and b/static/icons/06001517.png differ
diff --git a/static/icons/06001518.png b/static/icons/06001518.png
new file mode 100755
index 00000000..e8decd4b
Binary files /dev/null and b/static/icons/06001518.png differ
diff --git a/static/icons/06001519.png b/static/icons/06001519.png
new file mode 100755
index 00000000..8841d6fe
Binary files /dev/null and b/static/icons/06001519.png differ
diff --git a/static/icons/0600151A.png b/static/icons/0600151A.png
new file mode 100755
index 00000000..8c8f1127
Binary files /dev/null and b/static/icons/0600151A.png differ
diff --git a/static/icons/0600151B.png b/static/icons/0600151B.png
new file mode 100755
index 00000000..93568a07
Binary files /dev/null and b/static/icons/0600151B.png differ
diff --git a/static/icons/0600151C.png b/static/icons/0600151C.png
new file mode 100755
index 00000000..ba5fc237
Binary files /dev/null and b/static/icons/0600151C.png differ
diff --git a/static/icons/0600151D.png b/static/icons/0600151D.png
new file mode 100755
index 00000000..62d0192f
Binary files /dev/null and b/static/icons/0600151D.png differ
diff --git a/static/icons/0600151E.png b/static/icons/0600151E.png
new file mode 100755
index 00000000..dbec7016
Binary files /dev/null and b/static/icons/0600151E.png differ
diff --git a/static/icons/06001525.png b/static/icons/06001525.png
new file mode 100755
index 00000000..842c6eab
Binary files /dev/null and b/static/icons/06001525.png differ
diff --git a/static/icons/06001528.png b/static/icons/06001528.png
new file mode 100755
index 00000000..3388907d
Binary files /dev/null and b/static/icons/06001528.png differ
diff --git a/static/icons/06001529.png b/static/icons/06001529.png
new file mode 100755
index 00000000..66cb210b
Binary files /dev/null and b/static/icons/06001529.png differ
diff --git a/static/icons/0600152A.png b/static/icons/0600152A.png
new file mode 100755
index 00000000..5bedd163
Binary files /dev/null and b/static/icons/0600152A.png differ
diff --git a/static/icons/0600152B.png b/static/icons/0600152B.png
new file mode 100755
index 00000000..87095fbf
Binary files /dev/null and b/static/icons/0600152B.png differ
diff --git a/static/icons/0600152C.png b/static/icons/0600152C.png
new file mode 100755
index 00000000..79c29334
Binary files /dev/null and b/static/icons/0600152C.png differ
diff --git a/static/icons/0600152D.png b/static/icons/0600152D.png
new file mode 100755
index 00000000..e05e761f
Binary files /dev/null and b/static/icons/0600152D.png differ
diff --git a/static/icons/0600152E.png b/static/icons/0600152E.png
new file mode 100755
index 00000000..3a27914d
Binary files /dev/null and b/static/icons/0600152E.png differ
diff --git a/static/icons/0600152F.png b/static/icons/0600152F.png
new file mode 100755
index 00000000..1e9bf473
Binary files /dev/null and b/static/icons/0600152F.png differ
diff --git a/static/icons/06001530.png b/static/icons/06001530.png
new file mode 100755
index 00000000..f751d378
Binary files /dev/null and b/static/icons/06001530.png differ
diff --git a/static/icons/06001531.png b/static/icons/06001531.png
new file mode 100755
index 00000000..2b0d4a14
Binary files /dev/null and b/static/icons/06001531.png differ
diff --git a/static/icons/06001532.png b/static/icons/06001532.png
new file mode 100755
index 00000000..1b80d5a8
Binary files /dev/null and b/static/icons/06001532.png differ
diff --git a/static/icons/06001533.png b/static/icons/06001533.png
new file mode 100755
index 00000000..4faf3e01
Binary files /dev/null and b/static/icons/06001533.png differ
diff --git a/static/icons/06001534.png b/static/icons/06001534.png
new file mode 100755
index 00000000..c9720e53
Binary files /dev/null and b/static/icons/06001534.png differ
diff --git a/static/icons/06001535.png b/static/icons/06001535.png
new file mode 100755
index 00000000..54b77820
Binary files /dev/null and b/static/icons/06001535.png differ
diff --git a/static/icons/06001536.png b/static/icons/06001536.png
new file mode 100755
index 00000000..a85f5d24
Binary files /dev/null and b/static/icons/06001536.png differ
diff --git a/static/icons/06001537.png b/static/icons/06001537.png
new file mode 100755
index 00000000..34fbca80
Binary files /dev/null and b/static/icons/06001537.png differ
diff --git a/static/icons/06001538.png b/static/icons/06001538.png
new file mode 100755
index 00000000..225fdd52
Binary files /dev/null and b/static/icons/06001538.png differ
diff --git a/static/icons/06001539.png b/static/icons/06001539.png
new file mode 100755
index 00000000..a71bde80
Binary files /dev/null and b/static/icons/06001539.png differ
diff --git a/static/icons/0600153A.png b/static/icons/0600153A.png
new file mode 100755
index 00000000..70f6d568
Binary files /dev/null and b/static/icons/0600153A.png differ
diff --git a/static/icons/0600153B.png b/static/icons/0600153B.png
new file mode 100755
index 00000000..b3312c37
Binary files /dev/null and b/static/icons/0600153B.png differ
diff --git a/static/icons/0600153C.png b/static/icons/0600153C.png
new file mode 100755
index 00000000..62789b25
Binary files /dev/null and b/static/icons/0600153C.png differ
diff --git a/static/icons/0600153D.png b/static/icons/0600153D.png
new file mode 100755
index 00000000..e4816721
Binary files /dev/null and b/static/icons/0600153D.png differ
diff --git a/static/icons/0600153E.png b/static/icons/0600153E.png
new file mode 100755
index 00000000..883bc935
Binary files /dev/null and b/static/icons/0600153E.png differ
diff --git a/static/icons/0600153F.png b/static/icons/0600153F.png
new file mode 100755
index 00000000..5ad33496
Binary files /dev/null and b/static/icons/0600153F.png differ
diff --git a/static/icons/06001540.png b/static/icons/06001540.png
new file mode 100755
index 00000000..0196ce10
Binary files /dev/null and b/static/icons/06001540.png differ
diff --git a/static/icons/06001541.png b/static/icons/06001541.png
new file mode 100755
index 00000000..d7947fca
Binary files /dev/null and b/static/icons/06001541.png differ
diff --git a/static/icons/06001542.png b/static/icons/06001542.png
new file mode 100755
index 00000000..e135ee5d
Binary files /dev/null and b/static/icons/06001542.png differ
diff --git a/static/icons/06001543.png b/static/icons/06001543.png
new file mode 100755
index 00000000..19ea40af
Binary files /dev/null and b/static/icons/06001543.png differ
diff --git a/static/icons/06001544.png b/static/icons/06001544.png
new file mode 100755
index 00000000..43a6c0c2
Binary files /dev/null and b/static/icons/06001544.png differ
diff --git a/static/icons/06001545.png b/static/icons/06001545.png
new file mode 100755
index 00000000..31a948a4
Binary files /dev/null and b/static/icons/06001545.png differ
diff --git a/static/icons/06001546.png b/static/icons/06001546.png
new file mode 100755
index 00000000..f422b95d
Binary files /dev/null and b/static/icons/06001546.png differ
diff --git a/static/icons/06001547.png b/static/icons/06001547.png
new file mode 100755
index 00000000..57b92e03
Binary files /dev/null and b/static/icons/06001547.png differ
diff --git a/static/icons/06001548.png b/static/icons/06001548.png
new file mode 100755
index 00000000..7cf7f0e5
Binary files /dev/null and b/static/icons/06001548.png differ
diff --git a/static/icons/06001549.png b/static/icons/06001549.png
new file mode 100755
index 00000000..062e2a11
Binary files /dev/null and b/static/icons/06001549.png differ
diff --git a/static/icons/0600154A.png b/static/icons/0600154A.png
new file mode 100755
index 00000000..2727100a
Binary files /dev/null and b/static/icons/0600154A.png differ
diff --git a/static/icons/0600154B.png b/static/icons/0600154B.png
new file mode 100755
index 00000000..cf462105
Binary files /dev/null and b/static/icons/0600154B.png differ
diff --git a/static/icons/0600154C.png b/static/icons/0600154C.png
new file mode 100755
index 00000000..5dc4eaeb
Binary files /dev/null and b/static/icons/0600154C.png differ
diff --git a/static/icons/0600154D.png b/static/icons/0600154D.png
new file mode 100755
index 00000000..19d0b3c1
Binary files /dev/null and b/static/icons/0600154D.png differ
diff --git a/static/icons/0600154E.png b/static/icons/0600154E.png
new file mode 100755
index 00000000..065cd36e
Binary files /dev/null and b/static/icons/0600154E.png differ
diff --git a/static/icons/0600154F.png b/static/icons/0600154F.png
new file mode 100755
index 00000000..d2bdc1eb
Binary files /dev/null and b/static/icons/0600154F.png differ
diff --git a/static/icons/06001550.png b/static/icons/06001550.png
new file mode 100755
index 00000000..8e5ed5b9
Binary files /dev/null and b/static/icons/06001550.png differ
diff --git a/static/icons/06001551.png b/static/icons/06001551.png
new file mode 100755
index 00000000..201e1ea1
Binary files /dev/null and b/static/icons/06001551.png differ
diff --git a/static/icons/06001552.png b/static/icons/06001552.png
new file mode 100755
index 00000000..71c968e3
Binary files /dev/null and b/static/icons/06001552.png differ
diff --git a/static/icons/06001553.png b/static/icons/06001553.png
new file mode 100755
index 00000000..7e777646
Binary files /dev/null and b/static/icons/06001553.png differ
diff --git a/static/icons/06001554.png b/static/icons/06001554.png
new file mode 100755
index 00000000..f3a0bb05
Binary files /dev/null and b/static/icons/06001554.png differ
diff --git a/static/icons/06001555.png b/static/icons/06001555.png
new file mode 100755
index 00000000..07f41f06
Binary files /dev/null and b/static/icons/06001555.png differ
diff --git a/static/icons/06001556.png b/static/icons/06001556.png
new file mode 100755
index 00000000..e5441d3b
Binary files /dev/null and b/static/icons/06001556.png differ
diff --git a/static/icons/06001557.png b/static/icons/06001557.png
new file mode 100755
index 00000000..24c31a0b
Binary files /dev/null and b/static/icons/06001557.png differ
diff --git a/static/icons/06001558.png b/static/icons/06001558.png
new file mode 100755
index 00000000..53cb0f56
Binary files /dev/null and b/static/icons/06001558.png differ
diff --git a/static/icons/06001559.png b/static/icons/06001559.png
new file mode 100755
index 00000000..6342a507
Binary files /dev/null and b/static/icons/06001559.png differ
diff --git a/static/icons/0600155A.png b/static/icons/0600155A.png
new file mode 100755
index 00000000..4199bea3
Binary files /dev/null and b/static/icons/0600155A.png differ
diff --git a/static/icons/0600155B.png b/static/icons/0600155B.png
new file mode 100755
index 00000000..f9e5f21f
Binary files /dev/null and b/static/icons/0600155B.png differ
diff --git a/static/icons/0600155C.png b/static/icons/0600155C.png
new file mode 100755
index 00000000..a8f3f835
Binary files /dev/null and b/static/icons/0600155C.png differ
diff --git a/static/icons/0600155D.png b/static/icons/0600155D.png
new file mode 100755
index 00000000..78b3c392
Binary files /dev/null and b/static/icons/0600155D.png differ
diff --git a/static/icons/0600155E.png b/static/icons/0600155E.png
new file mode 100755
index 00000000..f0c1c3c8
Binary files /dev/null and b/static/icons/0600155E.png differ
diff --git a/static/icons/0600155F.png b/static/icons/0600155F.png
new file mode 100755
index 00000000..c2d1570b
Binary files /dev/null and b/static/icons/0600155F.png differ
diff --git a/static/icons/06001560.png b/static/icons/06001560.png
new file mode 100755
index 00000000..05d22c08
Binary files /dev/null and b/static/icons/06001560.png differ
diff --git a/static/icons/06001561.png b/static/icons/06001561.png
new file mode 100755
index 00000000..20640262
Binary files /dev/null and b/static/icons/06001561.png differ
diff --git a/static/icons/06001562.png b/static/icons/06001562.png
new file mode 100755
index 00000000..8e86f89b
Binary files /dev/null and b/static/icons/06001562.png differ
diff --git a/static/icons/06001563.png b/static/icons/06001563.png
new file mode 100755
index 00000000..7212e1af
Binary files /dev/null and b/static/icons/06001563.png differ
diff --git a/static/icons/06001564.png b/static/icons/06001564.png
new file mode 100755
index 00000000..0eea68f9
Binary files /dev/null and b/static/icons/06001564.png differ
diff --git a/static/icons/06001565.png b/static/icons/06001565.png
new file mode 100755
index 00000000..638f705d
Binary files /dev/null and b/static/icons/06001565.png differ
diff --git a/static/icons/06001566.png b/static/icons/06001566.png
new file mode 100755
index 00000000..e4979ef1
Binary files /dev/null and b/static/icons/06001566.png differ
diff --git a/static/icons/06001567.png b/static/icons/06001567.png
new file mode 100755
index 00000000..e917918d
Binary files /dev/null and b/static/icons/06001567.png differ
diff --git a/static/icons/06001568.png b/static/icons/06001568.png
new file mode 100755
index 00000000..cc69d492
Binary files /dev/null and b/static/icons/06001568.png differ
diff --git a/static/icons/06001569.png b/static/icons/06001569.png
new file mode 100755
index 00000000..91d0a229
Binary files /dev/null and b/static/icons/06001569.png differ
diff --git a/static/icons/0600156A.png b/static/icons/0600156A.png
new file mode 100755
index 00000000..f7e6dd01
Binary files /dev/null and b/static/icons/0600156A.png differ
diff --git a/static/icons/0600156B.png b/static/icons/0600156B.png
new file mode 100755
index 00000000..c8f4616b
Binary files /dev/null and b/static/icons/0600156B.png differ
diff --git a/static/icons/0600156C.png b/static/icons/0600156C.png
new file mode 100755
index 00000000..5ad3d045
Binary files /dev/null and b/static/icons/0600156C.png differ
diff --git a/static/icons/0600156D.png b/static/icons/0600156D.png
new file mode 100755
index 00000000..50b60d6e
Binary files /dev/null and b/static/icons/0600156D.png differ
diff --git a/static/icons/06001578.png b/static/icons/06001578.png
new file mode 100755
index 00000000..fc858477
Binary files /dev/null and b/static/icons/06001578.png differ
diff --git a/static/icons/06001579.png b/static/icons/06001579.png
new file mode 100755
index 00000000..26b6532a
Binary files /dev/null and b/static/icons/06001579.png differ
diff --git a/static/icons/0600157A.png b/static/icons/0600157A.png
new file mode 100755
index 00000000..047cfc7a
Binary files /dev/null and b/static/icons/0600157A.png differ
diff --git a/static/icons/0600157B.png b/static/icons/0600157B.png
new file mode 100755
index 00000000..df096fa8
Binary files /dev/null and b/static/icons/0600157B.png differ
diff --git a/static/icons/0600157C.png b/static/icons/0600157C.png
new file mode 100755
index 00000000..fe9e3e36
Binary files /dev/null and b/static/icons/0600157C.png differ
diff --git a/static/icons/0600157D.png b/static/icons/0600157D.png
new file mode 100755
index 00000000..26ae1ada
Binary files /dev/null and b/static/icons/0600157D.png differ
diff --git a/static/icons/0600157E.png b/static/icons/0600157E.png
new file mode 100755
index 00000000..09d1f710
Binary files /dev/null and b/static/icons/0600157E.png differ
diff --git a/static/icons/0600157F.png b/static/icons/0600157F.png
new file mode 100755
index 00000000..97324e8b
Binary files /dev/null and b/static/icons/0600157F.png differ
diff --git a/static/icons/06001580.png b/static/icons/06001580.png
new file mode 100755
index 00000000..9ff8913f
Binary files /dev/null and b/static/icons/06001580.png differ
diff --git a/static/icons/06001581.png b/static/icons/06001581.png
new file mode 100755
index 00000000..036ee9a7
Binary files /dev/null and b/static/icons/06001581.png differ
diff --git a/static/icons/06001582.png b/static/icons/06001582.png
new file mode 100755
index 00000000..5bde2d8f
Binary files /dev/null and b/static/icons/06001582.png differ
diff --git a/static/icons/06001583.png b/static/icons/06001583.png
new file mode 100755
index 00000000..d13c6758
Binary files /dev/null and b/static/icons/06001583.png differ
diff --git a/static/icons/06001584.png b/static/icons/06001584.png
new file mode 100755
index 00000000..8cde4279
Binary files /dev/null and b/static/icons/06001584.png differ
diff --git a/static/icons/0600158F.png b/static/icons/0600158F.png
new file mode 100755
index 00000000..64f6d814
Binary files /dev/null and b/static/icons/0600158F.png differ
diff --git a/static/icons/06001590.png b/static/icons/06001590.png
new file mode 100755
index 00000000..0b80604c
Binary files /dev/null and b/static/icons/06001590.png differ
diff --git a/static/icons/06001591.png b/static/icons/06001591.png
new file mode 100755
index 00000000..abc590df
Binary files /dev/null and b/static/icons/06001591.png differ
diff --git a/static/icons/06001592.png b/static/icons/06001592.png
new file mode 100755
index 00000000..1052716d
Binary files /dev/null and b/static/icons/06001592.png differ
diff --git a/static/icons/06001593.png b/static/icons/06001593.png
new file mode 100755
index 00000000..7cdc14ca
Binary files /dev/null and b/static/icons/06001593.png differ
diff --git a/static/icons/06001594.png b/static/icons/06001594.png
new file mode 100755
index 00000000..5f6e3e61
Binary files /dev/null and b/static/icons/06001594.png differ
diff --git a/static/icons/06001595.png b/static/icons/06001595.png
new file mode 100755
index 00000000..9884499e
Binary files /dev/null and b/static/icons/06001595.png differ
diff --git a/static/icons/06001596.png b/static/icons/06001596.png
new file mode 100755
index 00000000..77268196
Binary files /dev/null and b/static/icons/06001596.png differ
diff --git a/static/icons/06001597.png b/static/icons/06001597.png
new file mode 100755
index 00000000..1307497c
Binary files /dev/null and b/static/icons/06001597.png differ
diff --git a/static/icons/06001598.png b/static/icons/06001598.png
new file mode 100755
index 00000000..89d1773c
Binary files /dev/null and b/static/icons/06001598.png differ
diff --git a/static/icons/06001599.png b/static/icons/06001599.png
new file mode 100755
index 00000000..209569ce
Binary files /dev/null and b/static/icons/06001599.png differ
diff --git a/static/icons/0600159A.png b/static/icons/0600159A.png
new file mode 100755
index 00000000..1ffee520
Binary files /dev/null and b/static/icons/0600159A.png differ
diff --git a/static/icons/0600159B.png b/static/icons/0600159B.png
new file mode 100755
index 00000000..92cc5051
Binary files /dev/null and b/static/icons/0600159B.png differ
diff --git a/static/icons/0600159C.png b/static/icons/0600159C.png
new file mode 100755
index 00000000..35a10564
Binary files /dev/null and b/static/icons/0600159C.png differ
diff --git a/static/icons/0600159D.png b/static/icons/0600159D.png
new file mode 100755
index 00000000..204aa6ec
Binary files /dev/null and b/static/icons/0600159D.png differ
diff --git a/static/icons/0600159E.png b/static/icons/0600159E.png
new file mode 100755
index 00000000..695b9beb
Binary files /dev/null and b/static/icons/0600159E.png differ
diff --git a/static/icons/0600159F.png b/static/icons/0600159F.png
new file mode 100755
index 00000000..48091ec8
Binary files /dev/null and b/static/icons/0600159F.png differ
diff --git a/static/icons/060015A0.png b/static/icons/060015A0.png
new file mode 100755
index 00000000..633c344c
Binary files /dev/null and b/static/icons/060015A0.png differ
diff --git a/static/icons/060015A1.png b/static/icons/060015A1.png
new file mode 100755
index 00000000..2648e366
Binary files /dev/null and b/static/icons/060015A1.png differ
diff --git a/static/icons/060015A2.png b/static/icons/060015A2.png
new file mode 100755
index 00000000..7a5f56e8
Binary files /dev/null and b/static/icons/060015A2.png differ
diff --git a/static/icons/060015A3.png b/static/icons/060015A3.png
new file mode 100755
index 00000000..12685b9b
Binary files /dev/null and b/static/icons/060015A3.png differ
diff --git a/static/icons/060015A4.png b/static/icons/060015A4.png
new file mode 100755
index 00000000..79fc47da
Binary files /dev/null and b/static/icons/060015A4.png differ
diff --git a/static/icons/060015A5.png b/static/icons/060015A5.png
new file mode 100755
index 00000000..62eb45bd
Binary files /dev/null and b/static/icons/060015A5.png differ
diff --git a/static/icons/060015A6.png b/static/icons/060015A6.png
new file mode 100755
index 00000000..084e98f4
Binary files /dev/null and b/static/icons/060015A6.png differ
diff --git a/static/icons/060015A7.png b/static/icons/060015A7.png
new file mode 100755
index 00000000..8c23cc4d
Binary files /dev/null and b/static/icons/060015A7.png differ
diff --git a/static/icons/060015A8.png b/static/icons/060015A8.png
new file mode 100755
index 00000000..94e59d32
Binary files /dev/null and b/static/icons/060015A8.png differ
diff --git a/static/icons/060015A9.png b/static/icons/060015A9.png
new file mode 100755
index 00000000..c04d296b
Binary files /dev/null and b/static/icons/060015A9.png differ
diff --git a/static/icons/060015AA.png b/static/icons/060015AA.png
new file mode 100755
index 00000000..da619341
Binary files /dev/null and b/static/icons/060015AA.png differ
diff --git a/static/icons/060015AB.png b/static/icons/060015AB.png
new file mode 100755
index 00000000..df3630ab
Binary files /dev/null and b/static/icons/060015AB.png differ
diff --git a/static/icons/060015AC.png b/static/icons/060015AC.png
new file mode 100755
index 00000000..ea82a944
Binary files /dev/null and b/static/icons/060015AC.png differ
diff --git a/static/icons/060015AD.png b/static/icons/060015AD.png
new file mode 100755
index 00000000..92257e33
Binary files /dev/null and b/static/icons/060015AD.png differ
diff --git a/static/icons/060015AE.png b/static/icons/060015AE.png
new file mode 100755
index 00000000..61627fef
Binary files /dev/null and b/static/icons/060015AE.png differ
diff --git a/static/icons/060015AF.png b/static/icons/060015AF.png
new file mode 100755
index 00000000..045a4229
Binary files /dev/null and b/static/icons/060015AF.png differ
diff --git a/static/icons/060015B0.png b/static/icons/060015B0.png
new file mode 100755
index 00000000..3a5f3100
Binary files /dev/null and b/static/icons/060015B0.png differ
diff --git a/static/icons/060015B1.png b/static/icons/060015B1.png
new file mode 100755
index 00000000..fb0f0679
Binary files /dev/null and b/static/icons/060015B1.png differ
diff --git a/static/icons/060015B2.png b/static/icons/060015B2.png
new file mode 100755
index 00000000..1ca01c91
Binary files /dev/null and b/static/icons/060015B2.png differ
diff --git a/static/icons/060015B3.png b/static/icons/060015B3.png
new file mode 100755
index 00000000..864342fc
Binary files /dev/null and b/static/icons/060015B3.png differ
diff --git a/static/icons/060015B4.png b/static/icons/060015B4.png
new file mode 100755
index 00000000..19b12b9f
Binary files /dev/null and b/static/icons/060015B4.png differ
diff --git a/static/icons/060015B5.png b/static/icons/060015B5.png
new file mode 100755
index 00000000..fbeece67
Binary files /dev/null and b/static/icons/060015B5.png differ
diff --git a/static/icons/060015B6.png b/static/icons/060015B6.png
new file mode 100755
index 00000000..53ee42da
Binary files /dev/null and b/static/icons/060015B6.png differ
diff --git a/static/icons/060015B7.png b/static/icons/060015B7.png
new file mode 100755
index 00000000..a598fbd4
Binary files /dev/null and b/static/icons/060015B7.png differ
diff --git a/static/icons/060015C1.png b/static/icons/060015C1.png
new file mode 100755
index 00000000..8ac5a21a
Binary files /dev/null and b/static/icons/060015C1.png differ
diff --git a/static/icons/060015C2.png b/static/icons/060015C2.png
new file mode 100755
index 00000000..4bcb7663
Binary files /dev/null and b/static/icons/060015C2.png differ
diff --git a/static/icons/060015C3.png b/static/icons/060015C3.png
new file mode 100755
index 00000000..eddae2e9
Binary files /dev/null and b/static/icons/060015C3.png differ
diff --git a/static/icons/060015C4.png b/static/icons/060015C4.png
new file mode 100755
index 00000000..767ade4b
Binary files /dev/null and b/static/icons/060015C4.png differ
diff --git a/static/icons/060015C5.png b/static/icons/060015C5.png
new file mode 100755
index 00000000..4c37c3cd
Binary files /dev/null and b/static/icons/060015C5.png differ
diff --git a/static/icons/060015C6.png b/static/icons/060015C6.png
new file mode 100755
index 00000000..4ea1aa54
Binary files /dev/null and b/static/icons/060015C6.png differ
diff --git a/static/icons/060015C7.png b/static/icons/060015C7.png
new file mode 100755
index 00000000..dd56d2eb
Binary files /dev/null and b/static/icons/060015C7.png differ
diff --git a/static/icons/060015C8.png b/static/icons/060015C8.png
new file mode 100755
index 00000000..f982f429
Binary files /dev/null and b/static/icons/060015C8.png differ
diff --git a/static/icons/060015C9.png b/static/icons/060015C9.png
new file mode 100755
index 00000000..723cfddd
Binary files /dev/null and b/static/icons/060015C9.png differ
diff --git a/static/icons/060015CA.png b/static/icons/060015CA.png
new file mode 100755
index 00000000..f7392d2c
Binary files /dev/null and b/static/icons/060015CA.png differ
diff --git a/static/icons/060015CB.png b/static/icons/060015CB.png
new file mode 100755
index 00000000..84d08591
Binary files /dev/null and b/static/icons/060015CB.png differ
diff --git a/static/icons/060015CC.png b/static/icons/060015CC.png
new file mode 100755
index 00000000..2f21a559
Binary files /dev/null and b/static/icons/060015CC.png differ
diff --git a/static/icons/060015CD.png b/static/icons/060015CD.png
new file mode 100755
index 00000000..6db6f54f
Binary files /dev/null and b/static/icons/060015CD.png differ
diff --git a/static/icons/060015CE.png b/static/icons/060015CE.png
new file mode 100755
index 00000000..9ee9470f
Binary files /dev/null and b/static/icons/060015CE.png differ
diff --git a/static/icons/060015CF.png b/static/icons/060015CF.png
new file mode 100755
index 00000000..472a5c84
Binary files /dev/null and b/static/icons/060015CF.png differ
diff --git a/static/icons/060015D0.png b/static/icons/060015D0.png
new file mode 100755
index 00000000..7167a9d8
Binary files /dev/null and b/static/icons/060015D0.png differ
diff --git a/static/icons/060015D1.png b/static/icons/060015D1.png
new file mode 100755
index 00000000..3ca48b25
Binary files /dev/null and b/static/icons/060015D1.png differ
diff --git a/static/icons/060015D2.png b/static/icons/060015D2.png
new file mode 100755
index 00000000..6e0689fc
Binary files /dev/null and b/static/icons/060015D2.png differ
diff --git a/static/icons/060015D3.png b/static/icons/060015D3.png
new file mode 100755
index 00000000..26412bf8
Binary files /dev/null and b/static/icons/060015D3.png differ
diff --git a/static/icons/060015D4.png b/static/icons/060015D4.png
new file mode 100755
index 00000000..89d62cf2
Binary files /dev/null and b/static/icons/060015D4.png differ
diff --git a/static/icons/060015D5.png b/static/icons/060015D5.png
new file mode 100755
index 00000000..e2da13e4
Binary files /dev/null and b/static/icons/060015D5.png differ
diff --git a/static/icons/060015D6.png b/static/icons/060015D6.png
new file mode 100755
index 00000000..5fe248e7
Binary files /dev/null and b/static/icons/060015D6.png differ
diff --git a/static/icons/060015D7.png b/static/icons/060015D7.png
new file mode 100755
index 00000000..f4005696
Binary files /dev/null and b/static/icons/060015D7.png differ
diff --git a/static/icons/060015D8.png b/static/icons/060015D8.png
new file mode 100755
index 00000000..72ca469d
Binary files /dev/null and b/static/icons/060015D8.png differ
diff --git a/static/icons/060015D9.png b/static/icons/060015D9.png
new file mode 100755
index 00000000..cc96b0d7
Binary files /dev/null and b/static/icons/060015D9.png differ
diff --git a/static/icons/060015DA.png b/static/icons/060015DA.png
new file mode 100755
index 00000000..193ef229
Binary files /dev/null and b/static/icons/060015DA.png differ
diff --git a/static/icons/060015DB.png b/static/icons/060015DB.png
new file mode 100755
index 00000000..e2a07a83
Binary files /dev/null and b/static/icons/060015DB.png differ
diff --git a/static/icons/060015DC.png b/static/icons/060015DC.png
new file mode 100755
index 00000000..aa81898f
Binary files /dev/null and b/static/icons/060015DC.png differ
diff --git a/static/icons/060015DD.png b/static/icons/060015DD.png
new file mode 100755
index 00000000..53d07878
Binary files /dev/null and b/static/icons/060015DD.png differ
diff --git a/static/icons/060015DE.png b/static/icons/060015DE.png
new file mode 100755
index 00000000..ce93dc9f
Binary files /dev/null and b/static/icons/060015DE.png differ
diff --git a/static/icons/060015DF.png b/static/icons/060015DF.png
new file mode 100755
index 00000000..60c952a2
Binary files /dev/null and b/static/icons/060015DF.png differ
diff --git a/static/icons/060015E0.png b/static/icons/060015E0.png
new file mode 100755
index 00000000..b615eb94
Binary files /dev/null and b/static/icons/060015E0.png differ
diff --git a/static/icons/060015E1.png b/static/icons/060015E1.png
new file mode 100755
index 00000000..827b8a8f
Binary files /dev/null and b/static/icons/060015E1.png differ
diff --git a/static/icons/060015E2.png b/static/icons/060015E2.png
new file mode 100755
index 00000000..2efce6e5
Binary files /dev/null and b/static/icons/060015E2.png differ
diff --git a/static/icons/060015E3.png b/static/icons/060015E3.png
new file mode 100755
index 00000000..d84c0ff8
Binary files /dev/null and b/static/icons/060015E3.png differ
diff --git a/static/icons/060015E4.png b/static/icons/060015E4.png
new file mode 100755
index 00000000..a6977a16
Binary files /dev/null and b/static/icons/060015E4.png differ
diff --git a/static/icons/060015E5.png b/static/icons/060015E5.png
new file mode 100755
index 00000000..52c47ba0
Binary files /dev/null and b/static/icons/060015E5.png differ
diff --git a/static/icons/060015E6.png b/static/icons/060015E6.png
new file mode 100755
index 00000000..a8247f79
Binary files /dev/null and b/static/icons/060015E6.png differ
diff --git a/static/icons/060015E7.png b/static/icons/060015E7.png
new file mode 100755
index 00000000..c2b80c1b
Binary files /dev/null and b/static/icons/060015E7.png differ
diff --git a/static/icons/060015E8.png b/static/icons/060015E8.png
new file mode 100755
index 00000000..a69784a7
Binary files /dev/null and b/static/icons/060015E8.png differ
diff --git a/static/icons/060015E9.png b/static/icons/060015E9.png
new file mode 100755
index 00000000..6678c663
Binary files /dev/null and b/static/icons/060015E9.png differ
diff --git a/static/icons/060015EA.png b/static/icons/060015EA.png
new file mode 100755
index 00000000..1ed69131
Binary files /dev/null and b/static/icons/060015EA.png differ
diff --git a/static/icons/060015EB.png b/static/icons/060015EB.png
new file mode 100755
index 00000000..395ea81f
Binary files /dev/null and b/static/icons/060015EB.png differ
diff --git a/static/icons/060015EC.png b/static/icons/060015EC.png
new file mode 100755
index 00000000..a610de2a
Binary files /dev/null and b/static/icons/060015EC.png differ
diff --git a/static/icons/060015ED.png b/static/icons/060015ED.png
new file mode 100755
index 00000000..989cafb1
Binary files /dev/null and b/static/icons/060015ED.png differ
diff --git a/static/icons/060015EE.png b/static/icons/060015EE.png
new file mode 100755
index 00000000..9b8ddb60
Binary files /dev/null and b/static/icons/060015EE.png differ
diff --git a/static/icons/060015EF.png b/static/icons/060015EF.png
new file mode 100755
index 00000000..5d3a9ea4
Binary files /dev/null and b/static/icons/060015EF.png differ
diff --git a/static/icons/060015F0.png b/static/icons/060015F0.png
new file mode 100755
index 00000000..6fc57ab0
Binary files /dev/null and b/static/icons/060015F0.png differ
diff --git a/static/icons/060015F1.png b/static/icons/060015F1.png
new file mode 100755
index 00000000..516eaa34
Binary files /dev/null and b/static/icons/060015F1.png differ
diff --git a/static/icons/060015F2.png b/static/icons/060015F2.png
new file mode 100755
index 00000000..dd759b71
Binary files /dev/null and b/static/icons/060015F2.png differ
diff --git a/static/icons/060015F3.png b/static/icons/060015F3.png
new file mode 100755
index 00000000..86aac84e
Binary files /dev/null and b/static/icons/060015F3.png differ
diff --git a/static/icons/060015F4.png b/static/icons/060015F4.png
new file mode 100755
index 00000000..16f45a75
Binary files /dev/null and b/static/icons/060015F4.png differ
diff --git a/static/icons/060015F5.png b/static/icons/060015F5.png
new file mode 100755
index 00000000..c29c5933
Binary files /dev/null and b/static/icons/060015F5.png differ
diff --git a/static/icons/060015F6.png b/static/icons/060015F6.png
new file mode 100755
index 00000000..8263dcd6
Binary files /dev/null and b/static/icons/060015F6.png differ
diff --git a/static/icons/060015F7.png b/static/icons/060015F7.png
new file mode 100755
index 00000000..edd8a86f
Binary files /dev/null and b/static/icons/060015F7.png differ
diff --git a/static/icons/060015F8.png b/static/icons/060015F8.png
new file mode 100755
index 00000000..a9706ddb
Binary files /dev/null and b/static/icons/060015F8.png differ
diff --git a/static/icons/060015F9.png b/static/icons/060015F9.png
new file mode 100755
index 00000000..de023705
Binary files /dev/null and b/static/icons/060015F9.png differ
diff --git a/static/icons/060015FA.png b/static/icons/060015FA.png
new file mode 100755
index 00000000..9999c6ed
Binary files /dev/null and b/static/icons/060015FA.png differ
diff --git a/static/icons/060015FB.png b/static/icons/060015FB.png
new file mode 100755
index 00000000..c58b281e
Binary files /dev/null and b/static/icons/060015FB.png differ
diff --git a/static/icons/060015FC.png b/static/icons/060015FC.png
new file mode 100755
index 00000000..ed1cfb0e
Binary files /dev/null and b/static/icons/060015FC.png differ
diff --git a/static/icons/060015FD.png b/static/icons/060015FD.png
new file mode 100755
index 00000000..55e53d7f
Binary files /dev/null and b/static/icons/060015FD.png differ
diff --git a/static/icons/060015FE.png b/static/icons/060015FE.png
new file mode 100755
index 00000000..3eb6ea69
Binary files /dev/null and b/static/icons/060015FE.png differ
diff --git a/static/icons/060015FF.png b/static/icons/060015FF.png
new file mode 100755
index 00000000..25ee786e
Binary files /dev/null and b/static/icons/060015FF.png differ
diff --git a/static/icons/06001600.png b/static/icons/06001600.png
new file mode 100755
index 00000000..2406ad77
Binary files /dev/null and b/static/icons/06001600.png differ
diff --git a/static/icons/06001601.png b/static/icons/06001601.png
new file mode 100755
index 00000000..f8ba4d63
Binary files /dev/null and b/static/icons/06001601.png differ
diff --git a/static/icons/06001602.png b/static/icons/06001602.png
new file mode 100755
index 00000000..deda290d
Binary files /dev/null and b/static/icons/06001602.png differ
diff --git a/static/icons/06001603.png b/static/icons/06001603.png
new file mode 100755
index 00000000..623b9847
Binary files /dev/null and b/static/icons/06001603.png differ
diff --git a/static/icons/06001604.png b/static/icons/06001604.png
new file mode 100755
index 00000000..4e19f274
Binary files /dev/null and b/static/icons/06001604.png differ
diff --git a/static/icons/06001605.png b/static/icons/06001605.png
new file mode 100755
index 00000000..5f2142f8
Binary files /dev/null and b/static/icons/06001605.png differ
diff --git a/static/icons/06001606.png b/static/icons/06001606.png
new file mode 100755
index 00000000..2e593c2f
Binary files /dev/null and b/static/icons/06001606.png differ
diff --git a/static/icons/06001607.png b/static/icons/06001607.png
new file mode 100755
index 00000000..6415bc29
Binary files /dev/null and b/static/icons/06001607.png differ
diff --git a/static/icons/06001608.png b/static/icons/06001608.png
new file mode 100755
index 00000000..739ce9ac
Binary files /dev/null and b/static/icons/06001608.png differ
diff --git a/static/icons/06001609.png b/static/icons/06001609.png
new file mode 100755
index 00000000..bb8c92fe
Binary files /dev/null and b/static/icons/06001609.png differ
diff --git a/static/icons/0600160A.png b/static/icons/0600160A.png
new file mode 100755
index 00000000..54d214ca
Binary files /dev/null and b/static/icons/0600160A.png differ
diff --git a/static/icons/0600160B.png b/static/icons/0600160B.png
new file mode 100755
index 00000000..80e2cbd3
Binary files /dev/null and b/static/icons/0600160B.png differ
diff --git a/static/icons/0600160C.png b/static/icons/0600160C.png
new file mode 100755
index 00000000..008e3460
Binary files /dev/null and b/static/icons/0600160C.png differ
diff --git a/static/icons/0600160D.png b/static/icons/0600160D.png
new file mode 100755
index 00000000..9809762f
Binary files /dev/null and b/static/icons/0600160D.png differ
diff --git a/static/icons/0600160E.png b/static/icons/0600160E.png
new file mode 100755
index 00000000..e50d68f5
Binary files /dev/null and b/static/icons/0600160E.png differ
diff --git a/static/icons/0600160F.png b/static/icons/0600160F.png
new file mode 100755
index 00000000..4118d836
Binary files /dev/null and b/static/icons/0600160F.png differ
diff --git a/static/icons/06001610.png b/static/icons/06001610.png
new file mode 100755
index 00000000..962748d9
Binary files /dev/null and b/static/icons/06001610.png differ
diff --git a/static/icons/06001611.png b/static/icons/06001611.png
new file mode 100755
index 00000000..67b9a3e8
Binary files /dev/null and b/static/icons/06001611.png differ
diff --git a/static/icons/06001612.png b/static/icons/06001612.png
new file mode 100755
index 00000000..058fa74c
Binary files /dev/null and b/static/icons/06001612.png differ
diff --git a/static/icons/06001613.png b/static/icons/06001613.png
new file mode 100755
index 00000000..61b1f1e9
Binary files /dev/null and b/static/icons/06001613.png differ
diff --git a/static/icons/06001614.png b/static/icons/06001614.png
new file mode 100755
index 00000000..4725b72f
Binary files /dev/null and b/static/icons/06001614.png differ
diff --git a/static/icons/06001615.png b/static/icons/06001615.png
new file mode 100755
index 00000000..ba12b06e
Binary files /dev/null and b/static/icons/06001615.png differ
diff --git a/static/icons/06001616.png b/static/icons/06001616.png
new file mode 100755
index 00000000..176ec00e
Binary files /dev/null and b/static/icons/06001616.png differ
diff --git a/static/icons/06001617.png b/static/icons/06001617.png
new file mode 100755
index 00000000..4387b033
Binary files /dev/null and b/static/icons/06001617.png differ
diff --git a/static/icons/06001618.png b/static/icons/06001618.png
new file mode 100755
index 00000000..ec4d32dc
Binary files /dev/null and b/static/icons/06001618.png differ
diff --git a/static/icons/06001619.png b/static/icons/06001619.png
new file mode 100755
index 00000000..8c2c852c
Binary files /dev/null and b/static/icons/06001619.png differ
diff --git a/static/icons/0600161A.png b/static/icons/0600161A.png
new file mode 100755
index 00000000..416da650
Binary files /dev/null and b/static/icons/0600161A.png differ
diff --git a/static/icons/0600161B.png b/static/icons/0600161B.png
new file mode 100755
index 00000000..e09cd5ff
Binary files /dev/null and b/static/icons/0600161B.png differ
diff --git a/static/icons/0600161C.png b/static/icons/0600161C.png
new file mode 100755
index 00000000..68c0fad5
Binary files /dev/null and b/static/icons/0600161C.png differ
diff --git a/static/icons/0600161D.png b/static/icons/0600161D.png
new file mode 100755
index 00000000..3cd49972
Binary files /dev/null and b/static/icons/0600161D.png differ
diff --git a/static/icons/0600161E.png b/static/icons/0600161E.png
new file mode 100755
index 00000000..cc652234
Binary files /dev/null and b/static/icons/0600161E.png differ
diff --git a/static/icons/0600161F.png b/static/icons/0600161F.png
new file mode 100755
index 00000000..01843566
Binary files /dev/null and b/static/icons/0600161F.png differ
diff --git a/static/icons/06001620.png b/static/icons/06001620.png
new file mode 100755
index 00000000..f63c579c
Binary files /dev/null and b/static/icons/06001620.png differ
diff --git a/static/icons/06001621.png b/static/icons/06001621.png
new file mode 100755
index 00000000..cefd9937
Binary files /dev/null and b/static/icons/06001621.png differ
diff --git a/static/icons/06001622.png b/static/icons/06001622.png
new file mode 100755
index 00000000..fbc2a5b6
Binary files /dev/null and b/static/icons/06001622.png differ
diff --git a/static/icons/06001623.png b/static/icons/06001623.png
new file mode 100755
index 00000000..7617ac8e
Binary files /dev/null and b/static/icons/06001623.png differ
diff --git a/static/icons/06001624.png b/static/icons/06001624.png
new file mode 100755
index 00000000..c4f3bccb
Binary files /dev/null and b/static/icons/06001624.png differ
diff --git a/static/icons/06001625.png b/static/icons/06001625.png
new file mode 100755
index 00000000..eb91be59
Binary files /dev/null and b/static/icons/06001625.png differ
diff --git a/static/icons/06001626.png b/static/icons/06001626.png
new file mode 100755
index 00000000..e3f595d4
Binary files /dev/null and b/static/icons/06001626.png differ
diff --git a/static/icons/06001627.png b/static/icons/06001627.png
new file mode 100755
index 00000000..27f00057
Binary files /dev/null and b/static/icons/06001627.png differ
diff --git a/static/icons/06001628.png b/static/icons/06001628.png
new file mode 100755
index 00000000..e191be20
Binary files /dev/null and b/static/icons/06001628.png differ
diff --git a/static/icons/06001629.png b/static/icons/06001629.png
new file mode 100755
index 00000000..d0f6f0ec
Binary files /dev/null and b/static/icons/06001629.png differ
diff --git a/static/icons/0600162A.png b/static/icons/0600162A.png
new file mode 100755
index 00000000..34d1423b
Binary files /dev/null and b/static/icons/0600162A.png differ
diff --git a/static/icons/0600162B.png b/static/icons/0600162B.png
new file mode 100755
index 00000000..4879e93f
Binary files /dev/null and b/static/icons/0600162B.png differ
diff --git a/static/icons/0600162C.png b/static/icons/0600162C.png
new file mode 100755
index 00000000..eec3138e
Binary files /dev/null and b/static/icons/0600162C.png differ
diff --git a/static/icons/0600162D.png b/static/icons/0600162D.png
new file mode 100755
index 00000000..e6167955
Binary files /dev/null and b/static/icons/0600162D.png differ
diff --git a/static/icons/0600162E.png b/static/icons/0600162E.png
new file mode 100755
index 00000000..7c652705
Binary files /dev/null and b/static/icons/0600162E.png differ
diff --git a/static/icons/0600162F.png b/static/icons/0600162F.png
new file mode 100755
index 00000000..a6b905a1
Binary files /dev/null and b/static/icons/0600162F.png differ
diff --git a/static/icons/06001630.png b/static/icons/06001630.png
new file mode 100755
index 00000000..79a0b863
Binary files /dev/null and b/static/icons/06001630.png differ
diff --git a/static/icons/06001631.png b/static/icons/06001631.png
new file mode 100755
index 00000000..739227b6
Binary files /dev/null and b/static/icons/06001631.png differ
diff --git a/static/icons/06001632.png b/static/icons/06001632.png
new file mode 100755
index 00000000..9ccbc29a
Binary files /dev/null and b/static/icons/06001632.png differ
diff --git a/static/icons/06001633.png b/static/icons/06001633.png
new file mode 100755
index 00000000..0f55b84c
Binary files /dev/null and b/static/icons/06001633.png differ
diff --git a/static/icons/06001634.png b/static/icons/06001634.png
new file mode 100755
index 00000000..6fcc8576
Binary files /dev/null and b/static/icons/06001634.png differ
diff --git a/static/icons/06001635.png b/static/icons/06001635.png
new file mode 100755
index 00000000..586b1b19
Binary files /dev/null and b/static/icons/06001635.png differ
diff --git a/static/icons/06001636.png b/static/icons/06001636.png
new file mode 100755
index 00000000..843ac2c7
Binary files /dev/null and b/static/icons/06001636.png differ
diff --git a/static/icons/06001637.png b/static/icons/06001637.png
new file mode 100755
index 00000000..5052f527
Binary files /dev/null and b/static/icons/06001637.png differ
diff --git a/static/icons/06001638.png b/static/icons/06001638.png
new file mode 100755
index 00000000..c372aee8
Binary files /dev/null and b/static/icons/06001638.png differ
diff --git a/static/icons/06001639.png b/static/icons/06001639.png
new file mode 100755
index 00000000..663d48d5
Binary files /dev/null and b/static/icons/06001639.png differ
diff --git a/static/icons/0600163A.png b/static/icons/0600163A.png
new file mode 100755
index 00000000..85d8ed7b
Binary files /dev/null and b/static/icons/0600163A.png differ
diff --git a/static/icons/0600163B.png b/static/icons/0600163B.png
new file mode 100755
index 00000000..5fdb149b
Binary files /dev/null and b/static/icons/0600163B.png differ
diff --git a/static/icons/0600163C.png b/static/icons/0600163C.png
new file mode 100755
index 00000000..1a8d5733
Binary files /dev/null and b/static/icons/0600163C.png differ
diff --git a/static/icons/0600163D.png b/static/icons/0600163D.png
new file mode 100755
index 00000000..4700c936
Binary files /dev/null and b/static/icons/0600163D.png differ
diff --git a/static/icons/0600163E.png b/static/icons/0600163E.png
new file mode 100755
index 00000000..61c6cd97
Binary files /dev/null and b/static/icons/0600163E.png differ
diff --git a/static/icons/0600163F.png b/static/icons/0600163F.png
new file mode 100755
index 00000000..7197a97b
Binary files /dev/null and b/static/icons/0600163F.png differ
diff --git a/static/icons/06001640.png b/static/icons/06001640.png
new file mode 100755
index 00000000..7b6f4213
Binary files /dev/null and b/static/icons/06001640.png differ
diff --git a/static/icons/06001641.png b/static/icons/06001641.png
new file mode 100755
index 00000000..86793797
Binary files /dev/null and b/static/icons/06001641.png differ
diff --git a/static/icons/06001642.png b/static/icons/06001642.png
new file mode 100755
index 00000000..895ff2ff
Binary files /dev/null and b/static/icons/06001642.png differ
diff --git a/static/icons/06001643.png b/static/icons/06001643.png
new file mode 100755
index 00000000..36937073
Binary files /dev/null and b/static/icons/06001643.png differ
diff --git a/static/icons/06001644.png b/static/icons/06001644.png
new file mode 100755
index 00000000..4407e747
Binary files /dev/null and b/static/icons/06001644.png differ
diff --git a/static/icons/06001645.png b/static/icons/06001645.png
new file mode 100755
index 00000000..50ba8df7
Binary files /dev/null and b/static/icons/06001645.png differ
diff --git a/static/icons/06001646.png b/static/icons/06001646.png
new file mode 100755
index 00000000..f49c75ac
Binary files /dev/null and b/static/icons/06001646.png differ
diff --git a/static/icons/06001647.png b/static/icons/06001647.png
new file mode 100755
index 00000000..e51ce6cc
Binary files /dev/null and b/static/icons/06001647.png differ
diff --git a/static/icons/06001648.png b/static/icons/06001648.png
new file mode 100755
index 00000000..c0d23a79
Binary files /dev/null and b/static/icons/06001648.png differ
diff --git a/static/icons/06001649.png b/static/icons/06001649.png
new file mode 100755
index 00000000..0c599923
Binary files /dev/null and b/static/icons/06001649.png differ
diff --git a/static/icons/0600164A.png b/static/icons/0600164A.png
new file mode 100755
index 00000000..4315206a
Binary files /dev/null and b/static/icons/0600164A.png differ
diff --git a/static/icons/0600164B.png b/static/icons/0600164B.png
new file mode 100755
index 00000000..ceb3ff65
Binary files /dev/null and b/static/icons/0600164B.png differ
diff --git a/static/icons/0600164C.png b/static/icons/0600164C.png
new file mode 100755
index 00000000..61e11ff1
Binary files /dev/null and b/static/icons/0600164C.png differ
diff --git a/static/icons/0600164D.png b/static/icons/0600164D.png
new file mode 100755
index 00000000..35a5183a
Binary files /dev/null and b/static/icons/0600164D.png differ
diff --git a/static/icons/0600164E.png b/static/icons/0600164E.png
new file mode 100755
index 00000000..b69afe2d
Binary files /dev/null and b/static/icons/0600164E.png differ
diff --git a/static/icons/0600164F.png b/static/icons/0600164F.png
new file mode 100755
index 00000000..6e25a4c8
Binary files /dev/null and b/static/icons/0600164F.png differ
diff --git a/static/icons/06001650.png b/static/icons/06001650.png
new file mode 100755
index 00000000..f8998a60
Binary files /dev/null and b/static/icons/06001650.png differ
diff --git a/static/icons/06001651.png b/static/icons/06001651.png
new file mode 100755
index 00000000..30dd861f
Binary files /dev/null and b/static/icons/06001651.png differ
diff --git a/static/icons/06001652.png b/static/icons/06001652.png
new file mode 100755
index 00000000..3df01b8f
Binary files /dev/null and b/static/icons/06001652.png differ
diff --git a/static/icons/06001653.png b/static/icons/06001653.png
new file mode 100755
index 00000000..06af92a0
Binary files /dev/null and b/static/icons/06001653.png differ
diff --git a/static/icons/06001654.png b/static/icons/06001654.png
new file mode 100755
index 00000000..50ef379f
Binary files /dev/null and b/static/icons/06001654.png differ
diff --git a/static/icons/06001655.png b/static/icons/06001655.png
new file mode 100755
index 00000000..38a60112
Binary files /dev/null and b/static/icons/06001655.png differ
diff --git a/static/icons/06001656.png b/static/icons/06001656.png
new file mode 100755
index 00000000..1755643d
Binary files /dev/null and b/static/icons/06001656.png differ
diff --git a/static/icons/06001657.png b/static/icons/06001657.png
new file mode 100755
index 00000000..99f7b511
Binary files /dev/null and b/static/icons/06001657.png differ
diff --git a/static/icons/06001658.png b/static/icons/06001658.png
new file mode 100755
index 00000000..bf660971
Binary files /dev/null and b/static/icons/06001658.png differ
diff --git a/static/icons/06001659.png b/static/icons/06001659.png
new file mode 100755
index 00000000..d054ae01
Binary files /dev/null and b/static/icons/06001659.png differ
diff --git a/static/icons/0600165A.png b/static/icons/0600165A.png
new file mode 100755
index 00000000..6dcf24f8
Binary files /dev/null and b/static/icons/0600165A.png differ
diff --git a/static/icons/0600165B.png b/static/icons/0600165B.png
new file mode 100755
index 00000000..d1610fb7
Binary files /dev/null and b/static/icons/0600165B.png differ
diff --git a/static/icons/0600165C.png b/static/icons/0600165C.png
new file mode 100755
index 00000000..faa7d7df
Binary files /dev/null and b/static/icons/0600165C.png differ
diff --git a/static/icons/0600165D.png b/static/icons/0600165D.png
new file mode 100755
index 00000000..e9be1c69
Binary files /dev/null and b/static/icons/0600165D.png differ
diff --git a/static/icons/0600165E.png b/static/icons/0600165E.png
new file mode 100755
index 00000000..f0d7c97c
Binary files /dev/null and b/static/icons/0600165E.png differ
diff --git a/static/icons/0600165F.png b/static/icons/0600165F.png
new file mode 100755
index 00000000..78ca5a7b
Binary files /dev/null and b/static/icons/0600165F.png differ
diff --git a/static/icons/06001660.png b/static/icons/06001660.png
new file mode 100755
index 00000000..50759394
Binary files /dev/null and b/static/icons/06001660.png differ
diff --git a/static/icons/06001661.png b/static/icons/06001661.png
new file mode 100755
index 00000000..67db98a2
Binary files /dev/null and b/static/icons/06001661.png differ
diff --git a/static/icons/06001662.png b/static/icons/06001662.png
new file mode 100755
index 00000000..7992d47a
Binary files /dev/null and b/static/icons/06001662.png differ
diff --git a/static/icons/06001663.png b/static/icons/06001663.png
new file mode 100755
index 00000000..40e5abee
Binary files /dev/null and b/static/icons/06001663.png differ
diff --git a/static/icons/06001664.png b/static/icons/06001664.png
new file mode 100755
index 00000000..d0b374aa
Binary files /dev/null and b/static/icons/06001664.png differ
diff --git a/static/icons/06001665.png b/static/icons/06001665.png
new file mode 100755
index 00000000..34ccd3ef
Binary files /dev/null and b/static/icons/06001665.png differ
diff --git a/static/icons/06001666.png b/static/icons/06001666.png
new file mode 100755
index 00000000..557661f5
Binary files /dev/null and b/static/icons/06001666.png differ
diff --git a/static/icons/06001667.png b/static/icons/06001667.png
new file mode 100755
index 00000000..ad967c28
Binary files /dev/null and b/static/icons/06001667.png differ
diff --git a/static/icons/06001668.png b/static/icons/06001668.png
new file mode 100755
index 00000000..1a2f4822
Binary files /dev/null and b/static/icons/06001668.png differ
diff --git a/static/icons/06001669.png b/static/icons/06001669.png
new file mode 100755
index 00000000..f9035054
Binary files /dev/null and b/static/icons/06001669.png differ
diff --git a/static/icons/0600166A.png b/static/icons/0600166A.png
new file mode 100755
index 00000000..eec068a2
Binary files /dev/null and b/static/icons/0600166A.png differ
diff --git a/static/icons/0600166B.png b/static/icons/0600166B.png
new file mode 100755
index 00000000..6008d20b
Binary files /dev/null and b/static/icons/0600166B.png differ
diff --git a/static/icons/0600166C.png b/static/icons/0600166C.png
new file mode 100755
index 00000000..986f07d9
Binary files /dev/null and b/static/icons/0600166C.png differ
diff --git a/static/icons/0600166D.png b/static/icons/0600166D.png
new file mode 100755
index 00000000..cf618c71
Binary files /dev/null and b/static/icons/0600166D.png differ
diff --git a/static/icons/0600166E.png b/static/icons/0600166E.png
new file mode 100755
index 00000000..bd8230c8
Binary files /dev/null and b/static/icons/0600166E.png differ
diff --git a/static/icons/0600166F.png b/static/icons/0600166F.png
new file mode 100755
index 00000000..76a64614
Binary files /dev/null and b/static/icons/0600166F.png differ
diff --git a/static/icons/06001670.png b/static/icons/06001670.png
new file mode 100755
index 00000000..f2deebaf
Binary files /dev/null and b/static/icons/06001670.png differ
diff --git a/static/icons/06001671.png b/static/icons/06001671.png
new file mode 100755
index 00000000..2cd210b1
Binary files /dev/null and b/static/icons/06001671.png differ
diff --git a/static/icons/06001672.png b/static/icons/06001672.png
new file mode 100755
index 00000000..96abd9c1
Binary files /dev/null and b/static/icons/06001672.png differ
diff --git a/static/icons/06001673.png b/static/icons/06001673.png
new file mode 100755
index 00000000..ad8fcfa4
Binary files /dev/null and b/static/icons/06001673.png differ
diff --git a/static/icons/06001674.png b/static/icons/06001674.png
new file mode 100755
index 00000000..2bc76bf2
Binary files /dev/null and b/static/icons/06001674.png differ
diff --git a/static/icons/06001675.png b/static/icons/06001675.png
new file mode 100755
index 00000000..8a2d1654
Binary files /dev/null and b/static/icons/06001675.png differ
diff --git a/static/icons/06001676.png b/static/icons/06001676.png
new file mode 100755
index 00000000..4451700a
Binary files /dev/null and b/static/icons/06001676.png differ
diff --git a/static/icons/06001677.png b/static/icons/06001677.png
new file mode 100755
index 00000000..88ded4e0
Binary files /dev/null and b/static/icons/06001677.png differ
diff --git a/static/icons/06001678.png b/static/icons/06001678.png
new file mode 100755
index 00000000..925470a7
Binary files /dev/null and b/static/icons/06001678.png differ
diff --git a/static/icons/06001679.png b/static/icons/06001679.png
new file mode 100755
index 00000000..31131645
Binary files /dev/null and b/static/icons/06001679.png differ
diff --git a/static/icons/0600167A.png b/static/icons/0600167A.png
new file mode 100755
index 00000000..a159b931
Binary files /dev/null and b/static/icons/0600167A.png differ
diff --git a/static/icons/0600167B.png b/static/icons/0600167B.png
new file mode 100755
index 00000000..13bc5d77
Binary files /dev/null and b/static/icons/0600167B.png differ
diff --git a/static/icons/0600167C.png b/static/icons/0600167C.png
new file mode 100755
index 00000000..ee0b9f3d
Binary files /dev/null and b/static/icons/0600167C.png differ
diff --git a/static/icons/0600167D.png b/static/icons/0600167D.png
new file mode 100755
index 00000000..882f9153
Binary files /dev/null and b/static/icons/0600167D.png differ
diff --git a/static/icons/0600167E.png b/static/icons/0600167E.png
new file mode 100755
index 00000000..868da98d
Binary files /dev/null and b/static/icons/0600167E.png differ
diff --git a/static/icons/0600167F.png b/static/icons/0600167F.png
new file mode 100755
index 00000000..5326a743
Binary files /dev/null and b/static/icons/0600167F.png differ
diff --git a/static/icons/06001680.png b/static/icons/06001680.png
new file mode 100755
index 00000000..129a94bc
Binary files /dev/null and b/static/icons/06001680.png differ
diff --git a/static/icons/06001681.png b/static/icons/06001681.png
new file mode 100755
index 00000000..2ff5fae3
Binary files /dev/null and b/static/icons/06001681.png differ
diff --git a/static/icons/06001682.png b/static/icons/06001682.png
new file mode 100755
index 00000000..92f0dad4
Binary files /dev/null and b/static/icons/06001682.png differ
diff --git a/static/icons/06001683.png b/static/icons/06001683.png
new file mode 100755
index 00000000..6c016218
Binary files /dev/null and b/static/icons/06001683.png differ
diff --git a/static/icons/06001684.png b/static/icons/06001684.png
new file mode 100755
index 00000000..332babaf
Binary files /dev/null and b/static/icons/06001684.png differ
diff --git a/static/icons/06001685.png b/static/icons/06001685.png
new file mode 100755
index 00000000..c5928e87
Binary files /dev/null and b/static/icons/06001685.png differ
diff --git a/static/icons/06001686.png b/static/icons/06001686.png
new file mode 100755
index 00000000..1004c2e1
Binary files /dev/null and b/static/icons/06001686.png differ
diff --git a/static/icons/06001687.png b/static/icons/06001687.png
new file mode 100755
index 00000000..40caa4b5
Binary files /dev/null and b/static/icons/06001687.png differ
diff --git a/static/icons/06001688.png b/static/icons/06001688.png
new file mode 100755
index 00000000..59144503
Binary files /dev/null and b/static/icons/06001688.png differ
diff --git a/static/icons/06001689.png b/static/icons/06001689.png
new file mode 100755
index 00000000..43f84031
Binary files /dev/null and b/static/icons/06001689.png differ
diff --git a/static/icons/0600168A.png b/static/icons/0600168A.png
new file mode 100755
index 00000000..98857a80
Binary files /dev/null and b/static/icons/0600168A.png differ
diff --git a/static/icons/0600168B.png b/static/icons/0600168B.png
new file mode 100755
index 00000000..3a6f139c
Binary files /dev/null and b/static/icons/0600168B.png differ
diff --git a/static/icons/0600168C.png b/static/icons/0600168C.png
new file mode 100755
index 00000000..71153995
Binary files /dev/null and b/static/icons/0600168C.png differ
diff --git a/static/icons/0600168D.png b/static/icons/0600168D.png
new file mode 100755
index 00000000..6135a590
Binary files /dev/null and b/static/icons/0600168D.png differ
diff --git a/static/icons/0600168E.png b/static/icons/0600168E.png
new file mode 100755
index 00000000..a31221a1
Binary files /dev/null and b/static/icons/0600168E.png differ
diff --git a/static/icons/0600168F.png b/static/icons/0600168F.png
new file mode 100755
index 00000000..c2684ecb
Binary files /dev/null and b/static/icons/0600168F.png differ
diff --git a/static/icons/06001690.png b/static/icons/06001690.png
new file mode 100755
index 00000000..6c99ddbe
Binary files /dev/null and b/static/icons/06001690.png differ
diff --git a/static/icons/06001691.png b/static/icons/06001691.png
new file mode 100755
index 00000000..f005cdba
Binary files /dev/null and b/static/icons/06001691.png differ
diff --git a/static/icons/06001692.png b/static/icons/06001692.png
new file mode 100755
index 00000000..f57b6e03
Binary files /dev/null and b/static/icons/06001692.png differ
diff --git a/static/icons/06001693.png b/static/icons/06001693.png
new file mode 100755
index 00000000..44e0d45e
Binary files /dev/null and b/static/icons/06001693.png differ
diff --git a/static/icons/06001694.png b/static/icons/06001694.png
new file mode 100755
index 00000000..7e0ae212
Binary files /dev/null and b/static/icons/06001694.png differ
diff --git a/static/icons/06001695.png b/static/icons/06001695.png
new file mode 100755
index 00000000..00b12c7a
Binary files /dev/null and b/static/icons/06001695.png differ
diff --git a/static/icons/06001696.png b/static/icons/06001696.png
new file mode 100755
index 00000000..c1438708
Binary files /dev/null and b/static/icons/06001696.png differ
diff --git a/static/icons/06001697.png b/static/icons/06001697.png
new file mode 100755
index 00000000..64f844a0
Binary files /dev/null and b/static/icons/06001697.png differ
diff --git a/static/icons/06001698.png b/static/icons/06001698.png
new file mode 100755
index 00000000..365ea85a
Binary files /dev/null and b/static/icons/06001698.png differ
diff --git a/static/icons/06001699.png b/static/icons/06001699.png
new file mode 100755
index 00000000..7950ed33
Binary files /dev/null and b/static/icons/06001699.png differ
diff --git a/static/icons/0600169A.png b/static/icons/0600169A.png
new file mode 100755
index 00000000..fcadd4f8
Binary files /dev/null and b/static/icons/0600169A.png differ
diff --git a/static/icons/0600169B.png b/static/icons/0600169B.png
new file mode 100755
index 00000000..71c504c3
Binary files /dev/null and b/static/icons/0600169B.png differ
diff --git a/static/icons/0600169C.png b/static/icons/0600169C.png
new file mode 100755
index 00000000..375877e4
Binary files /dev/null and b/static/icons/0600169C.png differ
diff --git a/static/icons/0600169D.png b/static/icons/0600169D.png
new file mode 100755
index 00000000..b448bfc0
Binary files /dev/null and b/static/icons/0600169D.png differ
diff --git a/static/icons/0600169E.png b/static/icons/0600169E.png
new file mode 100755
index 00000000..a1d39b3f
Binary files /dev/null and b/static/icons/0600169E.png differ
diff --git a/static/icons/0600169F.png b/static/icons/0600169F.png
new file mode 100755
index 00000000..661fc2b2
Binary files /dev/null and b/static/icons/0600169F.png differ
diff --git a/static/icons/060016A0.png b/static/icons/060016A0.png
new file mode 100755
index 00000000..75cf51ac
Binary files /dev/null and b/static/icons/060016A0.png differ
diff --git a/static/icons/060016A1.png b/static/icons/060016A1.png
new file mode 100755
index 00000000..b9ad7fb3
Binary files /dev/null and b/static/icons/060016A1.png differ
diff --git a/static/icons/060016A2.png b/static/icons/060016A2.png
new file mode 100755
index 00000000..56eba477
Binary files /dev/null and b/static/icons/060016A2.png differ
diff --git a/static/icons/060016A3.png b/static/icons/060016A3.png
new file mode 100755
index 00000000..467cb6b8
Binary files /dev/null and b/static/icons/060016A3.png differ
diff --git a/static/icons/060016A4.png b/static/icons/060016A4.png
new file mode 100755
index 00000000..f1b24318
Binary files /dev/null and b/static/icons/060016A4.png differ
diff --git a/static/icons/060016A5.png b/static/icons/060016A5.png
new file mode 100755
index 00000000..5ff3d291
Binary files /dev/null and b/static/icons/060016A5.png differ
diff --git a/static/icons/060016A6.png b/static/icons/060016A6.png
new file mode 100755
index 00000000..2dcd1f59
Binary files /dev/null and b/static/icons/060016A6.png differ
diff --git a/static/icons/060016A7.png b/static/icons/060016A7.png
new file mode 100755
index 00000000..a4491188
Binary files /dev/null and b/static/icons/060016A7.png differ
diff --git a/static/icons/060016A8.png b/static/icons/060016A8.png
new file mode 100755
index 00000000..03aa9e80
Binary files /dev/null and b/static/icons/060016A8.png differ
diff --git a/static/icons/060016A9.png b/static/icons/060016A9.png
new file mode 100755
index 00000000..eb46c158
Binary files /dev/null and b/static/icons/060016A9.png differ
diff --git a/static/icons/060016AA.png b/static/icons/060016AA.png
new file mode 100755
index 00000000..265a591b
Binary files /dev/null and b/static/icons/060016AA.png differ
diff --git a/static/icons/060016AB.png b/static/icons/060016AB.png
new file mode 100755
index 00000000..1795e549
Binary files /dev/null and b/static/icons/060016AB.png differ
diff --git a/static/icons/060016AC.png b/static/icons/060016AC.png
new file mode 100755
index 00000000..f2271e33
Binary files /dev/null and b/static/icons/060016AC.png differ
diff --git a/static/icons/060016AD.png b/static/icons/060016AD.png
new file mode 100755
index 00000000..9a211ee6
Binary files /dev/null and b/static/icons/060016AD.png differ
diff --git a/static/icons/060016AE.png b/static/icons/060016AE.png
new file mode 100755
index 00000000..eebefa3f
Binary files /dev/null and b/static/icons/060016AE.png differ
diff --git a/static/icons/060016AF.png b/static/icons/060016AF.png
new file mode 100755
index 00000000..f19dba4e
Binary files /dev/null and b/static/icons/060016AF.png differ
diff --git a/static/icons/060016B0.png b/static/icons/060016B0.png
new file mode 100755
index 00000000..4592a0ba
Binary files /dev/null and b/static/icons/060016B0.png differ
diff --git a/static/icons/060016B1.png b/static/icons/060016B1.png
new file mode 100755
index 00000000..1cf1e96f
Binary files /dev/null and b/static/icons/060016B1.png differ
diff --git a/static/icons/060016B2.png b/static/icons/060016B2.png
new file mode 100755
index 00000000..eb32e55e
Binary files /dev/null and b/static/icons/060016B2.png differ
diff --git a/static/icons/060016B3.png b/static/icons/060016B3.png
new file mode 100755
index 00000000..818a0e04
Binary files /dev/null and b/static/icons/060016B3.png differ
diff --git a/static/icons/060016B4.png b/static/icons/060016B4.png
new file mode 100755
index 00000000..b944e443
Binary files /dev/null and b/static/icons/060016B4.png differ
diff --git a/static/icons/060016B5.png b/static/icons/060016B5.png
new file mode 100755
index 00000000..64111991
Binary files /dev/null and b/static/icons/060016B5.png differ
diff --git a/static/icons/060016B6.png b/static/icons/060016B6.png
new file mode 100755
index 00000000..bba96340
Binary files /dev/null and b/static/icons/060016B6.png differ
diff --git a/static/icons/060016B7.png b/static/icons/060016B7.png
new file mode 100755
index 00000000..1d3447ba
Binary files /dev/null and b/static/icons/060016B7.png differ
diff --git a/static/icons/060016B8.png b/static/icons/060016B8.png
new file mode 100755
index 00000000..e3ad6df0
Binary files /dev/null and b/static/icons/060016B8.png differ
diff --git a/static/icons/060016B9.png b/static/icons/060016B9.png
new file mode 100755
index 00000000..269908de
Binary files /dev/null and b/static/icons/060016B9.png differ
diff --git a/static/icons/060016BA.png b/static/icons/060016BA.png
new file mode 100755
index 00000000..ad436d19
Binary files /dev/null and b/static/icons/060016BA.png differ
diff --git a/static/icons/060016BB.png b/static/icons/060016BB.png
new file mode 100755
index 00000000..e9b21ac2
Binary files /dev/null and b/static/icons/060016BB.png differ
diff --git a/static/icons/060016BC.png b/static/icons/060016BC.png
new file mode 100755
index 00000000..afa06058
Binary files /dev/null and b/static/icons/060016BC.png differ
diff --git a/static/icons/060016BD.png b/static/icons/060016BD.png
new file mode 100755
index 00000000..7bbc77c3
Binary files /dev/null and b/static/icons/060016BD.png differ
diff --git a/static/icons/060016BF.png b/static/icons/060016BF.png
new file mode 100755
index 00000000..1fdc28c4
Binary files /dev/null and b/static/icons/060016BF.png differ
diff --git a/static/icons/060016C0.png b/static/icons/060016C0.png
new file mode 100755
index 00000000..ab360508
Binary files /dev/null and b/static/icons/060016C0.png differ
diff --git a/static/icons/060016C1.png b/static/icons/060016C1.png
new file mode 100755
index 00000000..7528dc98
Binary files /dev/null and b/static/icons/060016C1.png differ
diff --git a/static/icons/060016C2.png b/static/icons/060016C2.png
new file mode 100755
index 00000000..0ea9f441
Binary files /dev/null and b/static/icons/060016C2.png differ
diff --git a/static/icons/060016C3.png b/static/icons/060016C3.png
new file mode 100755
index 00000000..f2ca158e
Binary files /dev/null and b/static/icons/060016C3.png differ
diff --git a/static/icons/060016C4.png b/static/icons/060016C4.png
new file mode 100755
index 00000000..c0ab5a5a
Binary files /dev/null and b/static/icons/060016C4.png differ
diff --git a/static/icons/060016C5.png b/static/icons/060016C5.png
new file mode 100755
index 00000000..a58a9d5f
Binary files /dev/null and b/static/icons/060016C5.png differ
diff --git a/static/icons/060016C6.png b/static/icons/060016C6.png
new file mode 100755
index 00000000..607d43af
Binary files /dev/null and b/static/icons/060016C6.png differ
diff --git a/static/icons/060016C9.png b/static/icons/060016C9.png
new file mode 100755
index 00000000..f086972e
Binary files /dev/null and b/static/icons/060016C9.png differ
diff --git a/static/icons/060016CA.png b/static/icons/060016CA.png
new file mode 100755
index 00000000..94c2ed19
Binary files /dev/null and b/static/icons/060016CA.png differ
diff --git a/static/icons/060016CB.png b/static/icons/060016CB.png
new file mode 100755
index 00000000..57817485
Binary files /dev/null and b/static/icons/060016CB.png differ
diff --git a/static/icons/060016CC.png b/static/icons/060016CC.png
new file mode 100755
index 00000000..07b9e366
Binary files /dev/null and b/static/icons/060016CC.png differ
diff --git a/static/icons/060016CD.png b/static/icons/060016CD.png
new file mode 100755
index 00000000..772f9d8a
Binary files /dev/null and b/static/icons/060016CD.png differ
diff --git a/static/icons/060016CE.png b/static/icons/060016CE.png
new file mode 100755
index 00000000..84e872d6
Binary files /dev/null and b/static/icons/060016CE.png differ
diff --git a/static/icons/060016CF.png b/static/icons/060016CF.png
new file mode 100755
index 00000000..04e8dc02
Binary files /dev/null and b/static/icons/060016CF.png differ
diff --git a/static/icons/060016D0.png b/static/icons/060016D0.png
new file mode 100755
index 00000000..73260075
Binary files /dev/null and b/static/icons/060016D0.png differ
diff --git a/static/icons/060016D1.png b/static/icons/060016D1.png
new file mode 100755
index 00000000..ea36641f
Binary files /dev/null and b/static/icons/060016D1.png differ
diff --git a/static/icons/060016D2.png b/static/icons/060016D2.png
new file mode 100755
index 00000000..7f434c0f
Binary files /dev/null and b/static/icons/060016D2.png differ
diff --git a/static/icons/060016D3.png b/static/icons/060016D3.png
new file mode 100755
index 00000000..ad3a2aff
Binary files /dev/null and b/static/icons/060016D3.png differ
diff --git a/static/icons/060016D4.png b/static/icons/060016D4.png
new file mode 100755
index 00000000..ef2ea100
Binary files /dev/null and b/static/icons/060016D4.png differ
diff --git a/static/icons/060016D5.png b/static/icons/060016D5.png
new file mode 100755
index 00000000..a6b03218
Binary files /dev/null and b/static/icons/060016D5.png differ
diff --git a/static/icons/060016D6.png b/static/icons/060016D6.png
new file mode 100755
index 00000000..7095306d
Binary files /dev/null and b/static/icons/060016D6.png differ
diff --git a/static/icons/060016D7.png b/static/icons/060016D7.png
new file mode 100755
index 00000000..d4347f52
Binary files /dev/null and b/static/icons/060016D7.png differ
diff --git a/static/icons/060016D8.png b/static/icons/060016D8.png
new file mode 100755
index 00000000..83a94683
Binary files /dev/null and b/static/icons/060016D8.png differ
diff --git a/static/icons/060016E0.png b/static/icons/060016E0.png
new file mode 100755
index 00000000..073456cc
Binary files /dev/null and b/static/icons/060016E0.png differ
diff --git a/static/icons/060016E1.png b/static/icons/060016E1.png
new file mode 100755
index 00000000..79903a26
Binary files /dev/null and b/static/icons/060016E1.png differ
diff --git a/static/icons/060016E2.png b/static/icons/060016E2.png
new file mode 100755
index 00000000..78e20dd0
Binary files /dev/null and b/static/icons/060016E2.png differ
diff --git a/static/icons/060016E3.png b/static/icons/060016E3.png
new file mode 100755
index 00000000..9a577333
Binary files /dev/null and b/static/icons/060016E3.png differ
diff --git a/static/icons/060016E4.png b/static/icons/060016E4.png
new file mode 100755
index 00000000..e4520fd1
Binary files /dev/null and b/static/icons/060016E4.png differ
diff --git a/static/icons/060016E5.png b/static/icons/060016E5.png
new file mode 100755
index 00000000..9c177bc5
Binary files /dev/null and b/static/icons/060016E5.png differ
diff --git a/static/icons/060016E6.png b/static/icons/060016E6.png
new file mode 100755
index 00000000..394d0ea7
Binary files /dev/null and b/static/icons/060016E6.png differ
diff --git a/static/icons/060016E7.png b/static/icons/060016E7.png
new file mode 100755
index 00000000..39d133ea
Binary files /dev/null and b/static/icons/060016E7.png differ
diff --git a/static/icons/060016E8.png b/static/icons/060016E8.png
new file mode 100755
index 00000000..07f16414
Binary files /dev/null and b/static/icons/060016E8.png differ
diff --git a/static/icons/060016E9.png b/static/icons/060016E9.png
new file mode 100755
index 00000000..d30cc585
Binary files /dev/null and b/static/icons/060016E9.png differ
diff --git a/static/icons/060016EA.png b/static/icons/060016EA.png
new file mode 100755
index 00000000..2a2c6054
Binary files /dev/null and b/static/icons/060016EA.png differ
diff --git a/static/icons/060016EB.png b/static/icons/060016EB.png
new file mode 100755
index 00000000..7ae4b300
Binary files /dev/null and b/static/icons/060016EB.png differ
diff --git a/static/icons/060016EC.png b/static/icons/060016EC.png
new file mode 100755
index 00000000..56ce7caf
Binary files /dev/null and b/static/icons/060016EC.png differ
diff --git a/static/icons/060016ED.png b/static/icons/060016ED.png
new file mode 100755
index 00000000..19890441
Binary files /dev/null and b/static/icons/060016ED.png differ
diff --git a/static/icons/060016EE.png b/static/icons/060016EE.png
new file mode 100755
index 00000000..00d21ca6
Binary files /dev/null and b/static/icons/060016EE.png differ
diff --git a/static/icons/060016EF.png b/static/icons/060016EF.png
new file mode 100755
index 00000000..25615143
Binary files /dev/null and b/static/icons/060016EF.png differ
diff --git a/static/icons/060016F0.png b/static/icons/060016F0.png
new file mode 100755
index 00000000..f949271a
Binary files /dev/null and b/static/icons/060016F0.png differ
diff --git a/static/icons/060016F1.png b/static/icons/060016F1.png
new file mode 100755
index 00000000..74cff7e5
Binary files /dev/null and b/static/icons/060016F1.png differ
diff --git a/static/icons/060016F2.png b/static/icons/060016F2.png
new file mode 100755
index 00000000..3ba71a35
Binary files /dev/null and b/static/icons/060016F2.png differ
diff --git a/static/icons/060016F3.png b/static/icons/060016F3.png
new file mode 100755
index 00000000..ee5849db
Binary files /dev/null and b/static/icons/060016F3.png differ
diff --git a/static/icons/060016FB.png b/static/icons/060016FB.png
new file mode 100755
index 00000000..f2664004
Binary files /dev/null and b/static/icons/060016FB.png differ
diff --git a/static/icons/060016FC.png b/static/icons/060016FC.png
new file mode 100755
index 00000000..6a6134db
Binary files /dev/null and b/static/icons/060016FC.png differ
diff --git a/static/icons/060016FD.png b/static/icons/060016FD.png
new file mode 100755
index 00000000..9daef060
Binary files /dev/null and b/static/icons/060016FD.png differ
diff --git a/static/icons/060016FE.png b/static/icons/060016FE.png
new file mode 100755
index 00000000..9af9206d
Binary files /dev/null and b/static/icons/060016FE.png differ
diff --git a/static/icons/060016FF.png b/static/icons/060016FF.png
new file mode 100755
index 00000000..b352294d
Binary files /dev/null and b/static/icons/060016FF.png differ
diff --git a/static/icons/06001700.png b/static/icons/06001700.png
new file mode 100755
index 00000000..16da3164
Binary files /dev/null and b/static/icons/06001700.png differ
diff --git a/static/icons/06001701.png b/static/icons/06001701.png
new file mode 100755
index 00000000..0734668d
Binary files /dev/null and b/static/icons/06001701.png differ
diff --git a/static/icons/06001702.png b/static/icons/06001702.png
new file mode 100755
index 00000000..29fd5466
Binary files /dev/null and b/static/icons/06001702.png differ
diff --git a/static/icons/06001703.png b/static/icons/06001703.png
new file mode 100755
index 00000000..21f3a802
Binary files /dev/null and b/static/icons/06001703.png differ
diff --git a/static/icons/06001704.png b/static/icons/06001704.png
new file mode 100755
index 00000000..8871ae74
Binary files /dev/null and b/static/icons/06001704.png differ
diff --git a/static/icons/06001705.png b/static/icons/06001705.png
new file mode 100755
index 00000000..08dfe298
Binary files /dev/null and b/static/icons/06001705.png differ
diff --git a/static/icons/06001706.png b/static/icons/06001706.png
new file mode 100755
index 00000000..abf5ce56
Binary files /dev/null and b/static/icons/06001706.png differ
diff --git a/static/icons/06001707.png b/static/icons/06001707.png
new file mode 100755
index 00000000..611488a6
Binary files /dev/null and b/static/icons/06001707.png differ
diff --git a/static/icons/06001708.png b/static/icons/06001708.png
new file mode 100755
index 00000000..a30be12c
Binary files /dev/null and b/static/icons/06001708.png differ
diff --git a/static/icons/06001709.png b/static/icons/06001709.png
new file mode 100755
index 00000000..9b524b5a
Binary files /dev/null and b/static/icons/06001709.png differ
diff --git a/static/icons/0600170A.png b/static/icons/0600170A.png
new file mode 100755
index 00000000..cee66c3f
Binary files /dev/null and b/static/icons/0600170A.png differ
diff --git a/static/icons/0600170B.png b/static/icons/0600170B.png
new file mode 100755
index 00000000..aa79092f
Binary files /dev/null and b/static/icons/0600170B.png differ
diff --git a/static/icons/0600170C.png b/static/icons/0600170C.png
new file mode 100755
index 00000000..7c72462d
Binary files /dev/null and b/static/icons/0600170C.png differ
diff --git a/static/icons/0600170D.png b/static/icons/0600170D.png
new file mode 100755
index 00000000..b97988a2
Binary files /dev/null and b/static/icons/0600170D.png differ
diff --git a/static/icons/0600170E.png b/static/icons/0600170E.png
new file mode 100755
index 00000000..9fe33919
Binary files /dev/null and b/static/icons/0600170E.png differ
diff --git a/static/icons/0600170F.png b/static/icons/0600170F.png
new file mode 100755
index 00000000..9ce405d0
Binary files /dev/null and b/static/icons/0600170F.png differ
diff --git a/static/icons/06001710.png b/static/icons/06001710.png
new file mode 100755
index 00000000..f398a39e
Binary files /dev/null and b/static/icons/06001710.png differ
diff --git a/static/icons/06001711.png b/static/icons/06001711.png
new file mode 100755
index 00000000..747e2718
Binary files /dev/null and b/static/icons/06001711.png differ
diff --git a/static/icons/06001712.png b/static/icons/06001712.png
new file mode 100755
index 00000000..9d106489
Binary files /dev/null and b/static/icons/06001712.png differ
diff --git a/static/icons/06001713.png b/static/icons/06001713.png
new file mode 100755
index 00000000..e427a752
Binary files /dev/null and b/static/icons/06001713.png differ
diff --git a/static/icons/06001714.png b/static/icons/06001714.png
new file mode 100755
index 00000000..82c57733
Binary files /dev/null and b/static/icons/06001714.png differ
diff --git a/static/icons/06001715.png b/static/icons/06001715.png
new file mode 100755
index 00000000..49be18cd
Binary files /dev/null and b/static/icons/06001715.png differ
diff --git a/static/icons/06001716.png b/static/icons/06001716.png
new file mode 100755
index 00000000..beeccda5
Binary files /dev/null and b/static/icons/06001716.png differ
diff --git a/static/icons/06001717.png b/static/icons/06001717.png
new file mode 100755
index 00000000..210333ba
Binary files /dev/null and b/static/icons/06001717.png differ
diff --git a/static/icons/06001718.png b/static/icons/06001718.png
new file mode 100755
index 00000000..703017f2
Binary files /dev/null and b/static/icons/06001718.png differ
diff --git a/static/icons/06001719.png b/static/icons/06001719.png
new file mode 100755
index 00000000..4dbd9a14
Binary files /dev/null and b/static/icons/06001719.png differ
diff --git a/static/icons/0600171A.png b/static/icons/0600171A.png
new file mode 100755
index 00000000..2a05a771
Binary files /dev/null and b/static/icons/0600171A.png differ
diff --git a/static/icons/0600171B.png b/static/icons/0600171B.png
new file mode 100755
index 00000000..09db4455
Binary files /dev/null and b/static/icons/0600171B.png differ
diff --git a/static/icons/0600171C.png b/static/icons/0600171C.png
new file mode 100755
index 00000000..0feb9ebe
Binary files /dev/null and b/static/icons/0600171C.png differ
diff --git a/static/icons/0600171D.png b/static/icons/0600171D.png
new file mode 100755
index 00000000..a6820811
Binary files /dev/null and b/static/icons/0600171D.png differ
diff --git a/static/icons/0600171E.png b/static/icons/0600171E.png
new file mode 100755
index 00000000..7b4270d1
Binary files /dev/null and b/static/icons/0600171E.png differ
diff --git a/static/icons/0600171F.png b/static/icons/0600171F.png
new file mode 100755
index 00000000..3261e2f0
Binary files /dev/null and b/static/icons/0600171F.png differ
diff --git a/static/icons/06001720.png b/static/icons/06001720.png
new file mode 100755
index 00000000..278e9ee2
Binary files /dev/null and b/static/icons/06001720.png differ
diff --git a/static/icons/06001721.png b/static/icons/06001721.png
new file mode 100755
index 00000000..7eae00d1
Binary files /dev/null and b/static/icons/06001721.png differ
diff --git a/static/icons/06001722.png b/static/icons/06001722.png
new file mode 100755
index 00000000..7c7d32fa
Binary files /dev/null and b/static/icons/06001722.png differ
diff --git a/static/icons/06001723.png b/static/icons/06001723.png
new file mode 100755
index 00000000..8e76fccc
Binary files /dev/null and b/static/icons/06001723.png differ
diff --git a/static/icons/06001724.png b/static/icons/06001724.png
new file mode 100755
index 00000000..2d052c2b
Binary files /dev/null and b/static/icons/06001724.png differ
diff --git a/static/icons/06001725.png b/static/icons/06001725.png
new file mode 100755
index 00000000..7f89b824
Binary files /dev/null and b/static/icons/06001725.png differ
diff --git a/static/icons/06001726.png b/static/icons/06001726.png
new file mode 100755
index 00000000..24b3a9f1
Binary files /dev/null and b/static/icons/06001726.png differ
diff --git a/static/icons/06001727.png b/static/icons/06001727.png
new file mode 100755
index 00000000..8111a362
Binary files /dev/null and b/static/icons/06001727.png differ
diff --git a/static/icons/06001728.png b/static/icons/06001728.png
new file mode 100755
index 00000000..727fee27
Binary files /dev/null and b/static/icons/06001728.png differ
diff --git a/static/icons/06001729.png b/static/icons/06001729.png
new file mode 100755
index 00000000..6031036f
Binary files /dev/null and b/static/icons/06001729.png differ
diff --git a/static/icons/0600172A.png b/static/icons/0600172A.png
new file mode 100755
index 00000000..e8b0dbb9
Binary files /dev/null and b/static/icons/0600172A.png differ
diff --git a/static/icons/0600172B.png b/static/icons/0600172B.png
new file mode 100755
index 00000000..54af096b
Binary files /dev/null and b/static/icons/0600172B.png differ
diff --git a/static/icons/0600172D.png b/static/icons/0600172D.png
new file mode 100755
index 00000000..a8ea0482
Binary files /dev/null and b/static/icons/0600172D.png differ
diff --git a/static/icons/0600172E.png b/static/icons/0600172E.png
new file mode 100755
index 00000000..8c6da7d5
Binary files /dev/null and b/static/icons/0600172E.png differ
diff --git a/static/icons/0600172F.png b/static/icons/0600172F.png
new file mode 100755
index 00000000..bd0f9071
Binary files /dev/null and b/static/icons/0600172F.png differ
diff --git a/static/icons/06001730.png b/static/icons/06001730.png
new file mode 100755
index 00000000..694ef1fd
Binary files /dev/null and b/static/icons/06001730.png differ
diff --git a/static/icons/06001731.png b/static/icons/06001731.png
new file mode 100755
index 00000000..844785ed
Binary files /dev/null and b/static/icons/06001731.png differ
diff --git a/static/icons/06001732.png b/static/icons/06001732.png
new file mode 100755
index 00000000..a198c670
Binary files /dev/null and b/static/icons/06001732.png differ
diff --git a/static/icons/06001733.png b/static/icons/06001733.png
new file mode 100755
index 00000000..c20f007a
Binary files /dev/null and b/static/icons/06001733.png differ
diff --git a/static/icons/06001734.png b/static/icons/06001734.png
new file mode 100755
index 00000000..fcd00698
Binary files /dev/null and b/static/icons/06001734.png differ
diff --git a/static/icons/06001735.png b/static/icons/06001735.png
new file mode 100755
index 00000000..7700e12e
Binary files /dev/null and b/static/icons/06001735.png differ
diff --git a/static/icons/06001736.png b/static/icons/06001736.png
new file mode 100755
index 00000000..181c5a7f
Binary files /dev/null and b/static/icons/06001736.png differ
diff --git a/static/icons/06001737.png b/static/icons/06001737.png
new file mode 100755
index 00000000..8ddd2f6c
Binary files /dev/null and b/static/icons/06001737.png differ
diff --git a/static/icons/06001738.png b/static/icons/06001738.png
new file mode 100755
index 00000000..542a7e39
Binary files /dev/null and b/static/icons/06001738.png differ
diff --git a/static/icons/06001739.png b/static/icons/06001739.png
new file mode 100755
index 00000000..b9bb1b7d
Binary files /dev/null and b/static/icons/06001739.png differ
diff --git a/static/icons/0600173A.png b/static/icons/0600173A.png
new file mode 100755
index 00000000..7f78c974
Binary files /dev/null and b/static/icons/0600173A.png differ
diff --git a/static/icons/0600173B.png b/static/icons/0600173B.png
new file mode 100755
index 00000000..1856b6f6
Binary files /dev/null and b/static/icons/0600173B.png differ
diff --git a/static/icons/0600173C.png b/static/icons/0600173C.png
new file mode 100755
index 00000000..d7895188
Binary files /dev/null and b/static/icons/0600173C.png differ
diff --git a/static/icons/0600173D.png b/static/icons/0600173D.png
new file mode 100755
index 00000000..3e84e887
Binary files /dev/null and b/static/icons/0600173D.png differ
diff --git a/static/icons/0600173E.png b/static/icons/0600173E.png
new file mode 100755
index 00000000..8a84fcac
Binary files /dev/null and b/static/icons/0600173E.png differ
diff --git a/static/icons/0600173F.png b/static/icons/0600173F.png
new file mode 100755
index 00000000..76aa4238
Binary files /dev/null and b/static/icons/0600173F.png differ
diff --git a/static/icons/06001740.png b/static/icons/06001740.png
new file mode 100755
index 00000000..3b575d5c
Binary files /dev/null and b/static/icons/06001740.png differ
diff --git a/static/icons/06001741.png b/static/icons/06001741.png
new file mode 100755
index 00000000..1135966c
Binary files /dev/null and b/static/icons/06001741.png differ
diff --git a/static/icons/06001742.png b/static/icons/06001742.png
new file mode 100755
index 00000000..2c0eb65a
Binary files /dev/null and b/static/icons/06001742.png differ
diff --git a/static/icons/06001743.png b/static/icons/06001743.png
new file mode 100755
index 00000000..f41d2387
Binary files /dev/null and b/static/icons/06001743.png differ
diff --git a/static/icons/06001744.png b/static/icons/06001744.png
new file mode 100755
index 00000000..efade1aa
Binary files /dev/null and b/static/icons/06001744.png differ
diff --git a/static/icons/06001745.png b/static/icons/06001745.png
new file mode 100755
index 00000000..fef11703
Binary files /dev/null and b/static/icons/06001745.png differ
diff --git a/static/icons/06001746.png b/static/icons/06001746.png
new file mode 100755
index 00000000..1a9dfb6d
Binary files /dev/null and b/static/icons/06001746.png differ
diff --git a/static/icons/06001747.png b/static/icons/06001747.png
new file mode 100755
index 00000000..58bd21e6
Binary files /dev/null and b/static/icons/06001747.png differ
diff --git a/static/icons/06001748.png b/static/icons/06001748.png
new file mode 100755
index 00000000..3e891717
Binary files /dev/null and b/static/icons/06001748.png differ
diff --git a/static/icons/06001749.png b/static/icons/06001749.png
new file mode 100755
index 00000000..9d056425
Binary files /dev/null and b/static/icons/06001749.png differ
diff --git a/static/icons/0600174A.png b/static/icons/0600174A.png
new file mode 100755
index 00000000..74358a11
Binary files /dev/null and b/static/icons/0600174A.png differ
diff --git a/static/icons/0600174B.png b/static/icons/0600174B.png
new file mode 100755
index 00000000..b46298a0
Binary files /dev/null and b/static/icons/0600174B.png differ
diff --git a/static/icons/0600174C.png b/static/icons/0600174C.png
new file mode 100755
index 00000000..8aff6f55
Binary files /dev/null and b/static/icons/0600174C.png differ
diff --git a/static/icons/0600174D.png b/static/icons/0600174D.png
new file mode 100755
index 00000000..0086d95f
Binary files /dev/null and b/static/icons/0600174D.png differ
diff --git a/static/icons/06001755.png b/static/icons/06001755.png
new file mode 100755
index 00000000..388f58a1
Binary files /dev/null and b/static/icons/06001755.png differ
diff --git a/static/icons/06001756.png b/static/icons/06001756.png
new file mode 100755
index 00000000..be2f4e38
Binary files /dev/null and b/static/icons/06001756.png differ
diff --git a/static/icons/06001757.png b/static/icons/06001757.png
new file mode 100755
index 00000000..fd9b4527
Binary files /dev/null and b/static/icons/06001757.png differ
diff --git a/static/icons/06001758.png b/static/icons/06001758.png
new file mode 100755
index 00000000..745c0efe
Binary files /dev/null and b/static/icons/06001758.png differ
diff --git a/static/icons/06001759.png b/static/icons/06001759.png
new file mode 100755
index 00000000..d2b20122
Binary files /dev/null and b/static/icons/06001759.png differ
diff --git a/static/icons/0600175A.png b/static/icons/0600175A.png
new file mode 100755
index 00000000..b63dbd36
Binary files /dev/null and b/static/icons/0600175A.png differ
diff --git a/static/icons/0600175B.png b/static/icons/0600175B.png
new file mode 100755
index 00000000..81cc9d49
Binary files /dev/null and b/static/icons/0600175B.png differ
diff --git a/static/icons/0600175C.png b/static/icons/0600175C.png
new file mode 100755
index 00000000..c56b7612
Binary files /dev/null and b/static/icons/0600175C.png differ
diff --git a/static/icons/0600175D.png b/static/icons/0600175D.png
new file mode 100755
index 00000000..01352bcf
Binary files /dev/null and b/static/icons/0600175D.png differ
diff --git a/static/icons/0600175E.png b/static/icons/0600175E.png
new file mode 100755
index 00000000..c6e9df06
Binary files /dev/null and b/static/icons/0600175E.png differ
diff --git a/static/icons/0600175F.png b/static/icons/0600175F.png
new file mode 100755
index 00000000..5dce605c
Binary files /dev/null and b/static/icons/0600175F.png differ
diff --git a/static/icons/06001760.png b/static/icons/06001760.png
new file mode 100755
index 00000000..041ec986
Binary files /dev/null and b/static/icons/06001760.png differ
diff --git a/static/icons/06001761.png b/static/icons/06001761.png
new file mode 100755
index 00000000..0e5d543d
Binary files /dev/null and b/static/icons/06001761.png differ
diff --git a/static/icons/06001762.png b/static/icons/06001762.png
new file mode 100755
index 00000000..4a24dd28
Binary files /dev/null and b/static/icons/06001762.png differ
diff --git a/static/icons/06001764.png b/static/icons/06001764.png
new file mode 100755
index 00000000..da94437c
Binary files /dev/null and b/static/icons/06001764.png differ
diff --git a/static/icons/06001765.png b/static/icons/06001765.png
new file mode 100755
index 00000000..25cbf8ca
Binary files /dev/null and b/static/icons/06001765.png differ
diff --git a/static/icons/06001766.png b/static/icons/06001766.png
new file mode 100755
index 00000000..8dda9fe6
Binary files /dev/null and b/static/icons/06001766.png differ
diff --git a/static/icons/06001767.png b/static/icons/06001767.png
new file mode 100755
index 00000000..946527b6
Binary files /dev/null and b/static/icons/06001767.png differ
diff --git a/static/icons/06001768.png b/static/icons/06001768.png
new file mode 100755
index 00000000..a06ad1e2
Binary files /dev/null and b/static/icons/06001768.png differ
diff --git a/static/icons/06001769.png b/static/icons/06001769.png
new file mode 100755
index 00000000..7766a47d
Binary files /dev/null and b/static/icons/06001769.png differ
diff --git a/static/icons/0600176A.png b/static/icons/0600176A.png
new file mode 100755
index 00000000..cc0ebc15
Binary files /dev/null and b/static/icons/0600176A.png differ
diff --git a/static/icons/0600176B.png b/static/icons/0600176B.png
new file mode 100755
index 00000000..0999a263
Binary files /dev/null and b/static/icons/0600176B.png differ
diff --git a/static/icons/0600176C.png b/static/icons/0600176C.png
new file mode 100755
index 00000000..4fdb9bb7
Binary files /dev/null and b/static/icons/0600176C.png differ
diff --git a/static/icons/0600176D.png b/static/icons/0600176D.png
new file mode 100755
index 00000000..490d5696
Binary files /dev/null and b/static/icons/0600176D.png differ
diff --git a/static/icons/0600176E.png b/static/icons/0600176E.png
new file mode 100755
index 00000000..64b28db5
Binary files /dev/null and b/static/icons/0600176E.png differ
diff --git a/static/icons/0600176F.png b/static/icons/0600176F.png
new file mode 100755
index 00000000..d1b6ecb5
Binary files /dev/null and b/static/icons/0600176F.png differ
diff --git a/static/icons/06001770.png b/static/icons/06001770.png
new file mode 100755
index 00000000..0b467ce9
Binary files /dev/null and b/static/icons/06001770.png differ
diff --git a/static/icons/06001778.png b/static/icons/06001778.png
new file mode 100755
index 00000000..68eb94ea
Binary files /dev/null and b/static/icons/06001778.png differ
diff --git a/static/icons/06001779.png b/static/icons/06001779.png
new file mode 100755
index 00000000..0c2bc02b
Binary files /dev/null and b/static/icons/06001779.png differ
diff --git a/static/icons/0600177A.png b/static/icons/0600177A.png
new file mode 100755
index 00000000..67a26e23
Binary files /dev/null and b/static/icons/0600177A.png differ
diff --git a/static/icons/0600177B.png b/static/icons/0600177B.png
new file mode 100755
index 00000000..5ba44d94
Binary files /dev/null and b/static/icons/0600177B.png differ
diff --git a/static/icons/0600177C.png b/static/icons/0600177C.png
new file mode 100755
index 00000000..179123c5
Binary files /dev/null and b/static/icons/0600177C.png differ
diff --git a/static/icons/0600177D.png b/static/icons/0600177D.png
new file mode 100755
index 00000000..9a3d01f7
Binary files /dev/null and b/static/icons/0600177D.png differ
diff --git a/static/icons/0600177E.png b/static/icons/0600177E.png
new file mode 100755
index 00000000..dfe309f1
Binary files /dev/null and b/static/icons/0600177E.png differ
diff --git a/static/icons/0600177F.png b/static/icons/0600177F.png
new file mode 100755
index 00000000..07e8eb0e
Binary files /dev/null and b/static/icons/0600177F.png differ
diff --git a/static/icons/06001780.png b/static/icons/06001780.png
new file mode 100755
index 00000000..68b79bff
Binary files /dev/null and b/static/icons/06001780.png differ
diff --git a/static/icons/06001781.png b/static/icons/06001781.png
new file mode 100755
index 00000000..67f2535c
Binary files /dev/null and b/static/icons/06001781.png differ
diff --git a/static/icons/06001782.png b/static/icons/06001782.png
new file mode 100755
index 00000000..7e179c30
Binary files /dev/null and b/static/icons/06001782.png differ
diff --git a/static/icons/06001783.png b/static/icons/06001783.png
new file mode 100755
index 00000000..512500d1
Binary files /dev/null and b/static/icons/06001783.png differ
diff --git a/static/icons/06001784.png b/static/icons/06001784.png
new file mode 100755
index 00000000..83bdd2bf
Binary files /dev/null and b/static/icons/06001784.png differ
diff --git a/static/icons/06001785.png b/static/icons/06001785.png
new file mode 100755
index 00000000..fc2aad43
Binary files /dev/null and b/static/icons/06001785.png differ
diff --git a/static/icons/06001786.png b/static/icons/06001786.png
new file mode 100755
index 00000000..83c38f52
Binary files /dev/null and b/static/icons/06001786.png differ
diff --git a/static/icons/06001787.png b/static/icons/06001787.png
new file mode 100755
index 00000000..3b2c86c7
Binary files /dev/null and b/static/icons/06001787.png differ
diff --git a/static/icons/06001788.png b/static/icons/06001788.png
new file mode 100755
index 00000000..bc18bd68
Binary files /dev/null and b/static/icons/06001788.png differ
diff --git a/static/icons/06001789.png b/static/icons/06001789.png
new file mode 100755
index 00000000..047e4013
Binary files /dev/null and b/static/icons/06001789.png differ
diff --git a/static/icons/0600178A.png b/static/icons/0600178A.png
new file mode 100755
index 00000000..682e55c1
Binary files /dev/null and b/static/icons/0600178A.png differ
diff --git a/static/icons/0600178B.png b/static/icons/0600178B.png
new file mode 100755
index 00000000..a75eb18e
Binary files /dev/null and b/static/icons/0600178B.png differ
diff --git a/static/icons/0600178C.png b/static/icons/0600178C.png
new file mode 100755
index 00000000..3d52b48c
Binary files /dev/null and b/static/icons/0600178C.png differ
diff --git a/static/icons/0600178D.png b/static/icons/0600178D.png
new file mode 100755
index 00000000..cb236a2d
Binary files /dev/null and b/static/icons/0600178D.png differ
diff --git a/static/icons/0600178E.png b/static/icons/0600178E.png
new file mode 100755
index 00000000..8553fcde
Binary files /dev/null and b/static/icons/0600178E.png differ
diff --git a/static/icons/0600178F.png b/static/icons/0600178F.png
new file mode 100755
index 00000000..f2983f06
Binary files /dev/null and b/static/icons/0600178F.png differ
diff --git a/static/icons/06001790.png b/static/icons/06001790.png
new file mode 100755
index 00000000..bd81434c
Binary files /dev/null and b/static/icons/06001790.png differ
diff --git a/static/icons/06001791.png b/static/icons/06001791.png
new file mode 100755
index 00000000..cf1d7715
Binary files /dev/null and b/static/icons/06001791.png differ
diff --git a/static/icons/06001792.png b/static/icons/06001792.png
new file mode 100755
index 00000000..27d905c3
Binary files /dev/null and b/static/icons/06001792.png differ
diff --git a/static/icons/06001793.png b/static/icons/06001793.png
new file mode 100755
index 00000000..531844ec
Binary files /dev/null and b/static/icons/06001793.png differ
diff --git a/static/icons/06001794.png b/static/icons/06001794.png
new file mode 100755
index 00000000..932f881b
Binary files /dev/null and b/static/icons/06001794.png differ
diff --git a/static/icons/06001795.png b/static/icons/06001795.png
new file mode 100755
index 00000000..8d3be8a5
Binary files /dev/null and b/static/icons/06001795.png differ
diff --git a/static/icons/06001796.png b/static/icons/06001796.png
new file mode 100755
index 00000000..306825b0
Binary files /dev/null and b/static/icons/06001796.png differ
diff --git a/static/icons/06001797.png b/static/icons/06001797.png
new file mode 100755
index 00000000..6613e201
Binary files /dev/null and b/static/icons/06001797.png differ
diff --git a/static/icons/06001798.png b/static/icons/06001798.png
new file mode 100755
index 00000000..9494b101
Binary files /dev/null and b/static/icons/06001798.png differ
diff --git a/static/icons/06001799.png b/static/icons/06001799.png
new file mode 100755
index 00000000..26aac7ee
Binary files /dev/null and b/static/icons/06001799.png differ
diff --git a/static/icons/0600179A.png b/static/icons/0600179A.png
new file mode 100755
index 00000000..9bf7c3b6
Binary files /dev/null and b/static/icons/0600179A.png differ
diff --git a/static/icons/0600179B.png b/static/icons/0600179B.png
new file mode 100755
index 00000000..6dd7576f
Binary files /dev/null and b/static/icons/0600179B.png differ
diff --git a/static/icons/0600179C.png b/static/icons/0600179C.png
new file mode 100755
index 00000000..82a66d93
Binary files /dev/null and b/static/icons/0600179C.png differ
diff --git a/static/icons/0600179D.png b/static/icons/0600179D.png
new file mode 100755
index 00000000..e2638f08
Binary files /dev/null and b/static/icons/0600179D.png differ
diff --git a/static/icons/0600179E.png b/static/icons/0600179E.png
new file mode 100755
index 00000000..42627516
Binary files /dev/null and b/static/icons/0600179E.png differ
diff --git a/static/icons/0600179F.png b/static/icons/0600179F.png
new file mode 100755
index 00000000..ddc27f2a
Binary files /dev/null and b/static/icons/0600179F.png differ
diff --git a/static/icons/060017A0.png b/static/icons/060017A0.png
new file mode 100755
index 00000000..02ae9f77
Binary files /dev/null and b/static/icons/060017A0.png differ
diff --git a/static/icons/060017A1.png b/static/icons/060017A1.png
new file mode 100755
index 00000000..e65ed5c0
Binary files /dev/null and b/static/icons/060017A1.png differ
diff --git a/static/icons/060017A2.png b/static/icons/060017A2.png
new file mode 100755
index 00000000..1084be4e
Binary files /dev/null and b/static/icons/060017A2.png differ
diff --git a/static/icons/060017A3.png b/static/icons/060017A3.png
new file mode 100755
index 00000000..855eb780
Binary files /dev/null and b/static/icons/060017A3.png differ
diff --git a/static/icons/060017A4.png b/static/icons/060017A4.png
new file mode 100755
index 00000000..290ef39b
Binary files /dev/null and b/static/icons/060017A4.png differ
diff --git a/static/icons/060017A5.png b/static/icons/060017A5.png
new file mode 100755
index 00000000..9cbfd261
Binary files /dev/null and b/static/icons/060017A5.png differ
diff --git a/static/icons/060017A6.png b/static/icons/060017A6.png
new file mode 100755
index 00000000..f447329d
Binary files /dev/null and b/static/icons/060017A6.png differ
diff --git a/static/icons/060017A7.png b/static/icons/060017A7.png
new file mode 100755
index 00000000..4ee405e6
Binary files /dev/null and b/static/icons/060017A7.png differ
diff --git a/static/icons/060017A8.png b/static/icons/060017A8.png
new file mode 100755
index 00000000..5363e731
Binary files /dev/null and b/static/icons/060017A8.png differ
diff --git a/static/icons/060017A9.png b/static/icons/060017A9.png
new file mode 100755
index 00000000..7bbcbf43
Binary files /dev/null and b/static/icons/060017A9.png differ
diff --git a/static/icons/060017AA.png b/static/icons/060017AA.png
new file mode 100755
index 00000000..fe845831
Binary files /dev/null and b/static/icons/060017AA.png differ
diff --git a/static/icons/060017AB.png b/static/icons/060017AB.png
new file mode 100755
index 00000000..36ca6f6f
Binary files /dev/null and b/static/icons/060017AB.png differ
diff --git a/static/icons/060017AC.png b/static/icons/060017AC.png
new file mode 100755
index 00000000..8cfc8a08
Binary files /dev/null and b/static/icons/060017AC.png differ
diff --git a/static/icons/060017AD.png b/static/icons/060017AD.png
new file mode 100755
index 00000000..1fcf389d
Binary files /dev/null and b/static/icons/060017AD.png differ
diff --git a/static/icons/060017AE.png b/static/icons/060017AE.png
new file mode 100755
index 00000000..98da7e37
Binary files /dev/null and b/static/icons/060017AE.png differ
diff --git a/static/icons/060017AF.png b/static/icons/060017AF.png
new file mode 100755
index 00000000..d740370e
Binary files /dev/null and b/static/icons/060017AF.png differ
diff --git a/static/icons/060017B0.png b/static/icons/060017B0.png
new file mode 100755
index 00000000..882cfc20
Binary files /dev/null and b/static/icons/060017B0.png differ
diff --git a/static/icons/060017B1.png b/static/icons/060017B1.png
new file mode 100755
index 00000000..9062d9f0
Binary files /dev/null and b/static/icons/060017B1.png differ
diff --git a/static/icons/060017B2.png b/static/icons/060017B2.png
new file mode 100755
index 00000000..acf71f26
Binary files /dev/null and b/static/icons/060017B2.png differ
diff --git a/static/icons/060017B3.png b/static/icons/060017B3.png
new file mode 100755
index 00000000..193e66c9
Binary files /dev/null and b/static/icons/060017B3.png differ
diff --git a/static/icons/060017B4.png b/static/icons/060017B4.png
new file mode 100755
index 00000000..badf1cde
Binary files /dev/null and b/static/icons/060017B4.png differ
diff --git a/static/icons/060017B5.png b/static/icons/060017B5.png
new file mode 100755
index 00000000..53d65a12
Binary files /dev/null and b/static/icons/060017B5.png differ
diff --git a/static/icons/060017B6.png b/static/icons/060017B6.png
new file mode 100755
index 00000000..c52fe301
Binary files /dev/null and b/static/icons/060017B6.png differ
diff --git a/static/icons/060017B7.png b/static/icons/060017B7.png
new file mode 100755
index 00000000..23e7aa29
Binary files /dev/null and b/static/icons/060017B7.png differ
diff --git a/static/icons/060017B8.png b/static/icons/060017B8.png
new file mode 100755
index 00000000..3d27cfe0
Binary files /dev/null and b/static/icons/060017B8.png differ
diff --git a/static/icons/060017B9.png b/static/icons/060017B9.png
new file mode 100755
index 00000000..f9f54aa6
Binary files /dev/null and b/static/icons/060017B9.png differ
diff --git a/static/icons/060017BA.png b/static/icons/060017BA.png
new file mode 100755
index 00000000..0a925d3f
Binary files /dev/null and b/static/icons/060017BA.png differ
diff --git a/static/icons/060017BB.png b/static/icons/060017BB.png
new file mode 100755
index 00000000..5d9dd489
Binary files /dev/null and b/static/icons/060017BB.png differ
diff --git a/static/icons/060017BC.png b/static/icons/060017BC.png
new file mode 100755
index 00000000..2dcadc41
Binary files /dev/null and b/static/icons/060017BC.png differ
diff --git a/static/icons/060017BD.png b/static/icons/060017BD.png
new file mode 100755
index 00000000..ea8304a3
Binary files /dev/null and b/static/icons/060017BD.png differ
diff --git a/static/icons/060017BE.png b/static/icons/060017BE.png
new file mode 100755
index 00000000..aec45fd0
Binary files /dev/null and b/static/icons/060017BE.png differ
diff --git a/static/icons/060017BF.png b/static/icons/060017BF.png
new file mode 100755
index 00000000..22bf831e
Binary files /dev/null and b/static/icons/060017BF.png differ
diff --git a/static/icons/060017C0.png b/static/icons/060017C0.png
new file mode 100755
index 00000000..3a5cb536
Binary files /dev/null and b/static/icons/060017C0.png differ
diff --git a/static/icons/060017C1.png b/static/icons/060017C1.png
new file mode 100755
index 00000000..80ae7255
Binary files /dev/null and b/static/icons/060017C1.png differ
diff --git a/static/icons/060017C2.png b/static/icons/060017C2.png
new file mode 100755
index 00000000..151308e6
Binary files /dev/null and b/static/icons/060017C2.png differ
diff --git a/static/icons/060017CA.png b/static/icons/060017CA.png
new file mode 100755
index 00000000..58806a10
Binary files /dev/null and b/static/icons/060017CA.png differ
diff --git a/static/icons/060017CB.png b/static/icons/060017CB.png
new file mode 100755
index 00000000..e88ff47f
Binary files /dev/null and b/static/icons/060017CB.png differ
diff --git a/static/icons/060017CC.png b/static/icons/060017CC.png
new file mode 100755
index 00000000..c9738c1e
Binary files /dev/null and b/static/icons/060017CC.png differ
diff --git a/static/icons/060017CD.png b/static/icons/060017CD.png
new file mode 100755
index 00000000..fbd2a011
Binary files /dev/null and b/static/icons/060017CD.png differ
diff --git a/static/icons/060017CE.png b/static/icons/060017CE.png
new file mode 100755
index 00000000..bd8c0de0
Binary files /dev/null and b/static/icons/060017CE.png differ
diff --git a/static/icons/060017CF.png b/static/icons/060017CF.png
new file mode 100755
index 00000000..4a218cfa
Binary files /dev/null and b/static/icons/060017CF.png differ
diff --git a/static/icons/060017D0.png b/static/icons/060017D0.png
new file mode 100755
index 00000000..29e03a70
Binary files /dev/null and b/static/icons/060017D0.png differ
diff --git a/static/icons/060017D1.png b/static/icons/060017D1.png
new file mode 100755
index 00000000..614e7e71
Binary files /dev/null and b/static/icons/060017D1.png differ
diff --git a/static/icons/060017D2.png b/static/icons/060017D2.png
new file mode 100755
index 00000000..dcf73196
Binary files /dev/null and b/static/icons/060017D2.png differ
diff --git a/static/icons/060017D3.png b/static/icons/060017D3.png
new file mode 100755
index 00000000..8e36499a
Binary files /dev/null and b/static/icons/060017D3.png differ
diff --git a/static/icons/060017D4.png b/static/icons/060017D4.png
new file mode 100755
index 00000000..855123ee
Binary files /dev/null and b/static/icons/060017D4.png differ
diff --git a/static/icons/060017D5.png b/static/icons/060017D5.png
new file mode 100755
index 00000000..3ad68128
Binary files /dev/null and b/static/icons/060017D5.png differ
diff --git a/static/icons/060017D6.png b/static/icons/060017D6.png
new file mode 100755
index 00000000..e81aadc8
Binary files /dev/null and b/static/icons/060017D6.png differ
diff --git a/static/icons/060017D7.png b/static/icons/060017D7.png
new file mode 100755
index 00000000..a62d5024
Binary files /dev/null and b/static/icons/060017D7.png differ
diff --git a/static/icons/060017D8.png b/static/icons/060017D8.png
new file mode 100755
index 00000000..efa0aa17
Binary files /dev/null and b/static/icons/060017D8.png differ
diff --git a/static/icons/060017D9.png b/static/icons/060017D9.png
new file mode 100755
index 00000000..00c02d80
Binary files /dev/null and b/static/icons/060017D9.png differ
diff --git a/static/icons/060017DA.png b/static/icons/060017DA.png
new file mode 100755
index 00000000..ba29e17f
Binary files /dev/null and b/static/icons/060017DA.png differ
diff --git a/static/icons/060017DB.png b/static/icons/060017DB.png
new file mode 100755
index 00000000..2e355af8
Binary files /dev/null and b/static/icons/060017DB.png differ
diff --git a/static/icons/060017DC.png b/static/icons/060017DC.png
new file mode 100755
index 00000000..ca36956d
Binary files /dev/null and b/static/icons/060017DC.png differ
diff --git a/static/icons/060017DD.png b/static/icons/060017DD.png
new file mode 100755
index 00000000..8c1e5df3
Binary files /dev/null and b/static/icons/060017DD.png differ
diff --git a/static/icons/060017DE.png b/static/icons/060017DE.png
new file mode 100755
index 00000000..39bc2c7f
Binary files /dev/null and b/static/icons/060017DE.png differ
diff --git a/static/icons/060017DF.png b/static/icons/060017DF.png
new file mode 100755
index 00000000..ba546b3d
Binary files /dev/null and b/static/icons/060017DF.png differ
diff --git a/static/icons/060017E0.png b/static/icons/060017E0.png
new file mode 100755
index 00000000..528b3219
Binary files /dev/null and b/static/icons/060017E0.png differ
diff --git a/static/icons/060017E1.png b/static/icons/060017E1.png
new file mode 100755
index 00000000..89fe7e7d
Binary files /dev/null and b/static/icons/060017E1.png differ
diff --git a/static/icons/060017E2.png b/static/icons/060017E2.png
new file mode 100755
index 00000000..6ec9a993
Binary files /dev/null and b/static/icons/060017E2.png differ
diff --git a/static/icons/060017E3.png b/static/icons/060017E3.png
new file mode 100755
index 00000000..5eabb4d9
Binary files /dev/null and b/static/icons/060017E3.png differ
diff --git a/static/icons/060017E4.png b/static/icons/060017E4.png
new file mode 100755
index 00000000..ac18cc3e
Binary files /dev/null and b/static/icons/060017E4.png differ
diff --git a/static/icons/060017E5.png b/static/icons/060017E5.png
new file mode 100755
index 00000000..1be39b71
Binary files /dev/null and b/static/icons/060017E5.png differ
diff --git a/static/icons/060017E6.png b/static/icons/060017E6.png
new file mode 100755
index 00000000..9246059a
Binary files /dev/null and b/static/icons/060017E6.png differ
diff --git a/static/icons/060017E7.png b/static/icons/060017E7.png
new file mode 100755
index 00000000..ecdaf903
Binary files /dev/null and b/static/icons/060017E7.png differ
diff --git a/static/icons/060017E8.png b/static/icons/060017E8.png
new file mode 100755
index 00000000..6b270b73
Binary files /dev/null and b/static/icons/060017E8.png differ
diff --git a/static/icons/060017E9.png b/static/icons/060017E9.png
new file mode 100755
index 00000000..a2fcdc85
Binary files /dev/null and b/static/icons/060017E9.png differ
diff --git a/static/icons/060017EA.png b/static/icons/060017EA.png
new file mode 100755
index 00000000..81d264ee
Binary files /dev/null and b/static/icons/060017EA.png differ
diff --git a/static/icons/060017EB.png b/static/icons/060017EB.png
new file mode 100755
index 00000000..1c91a51e
Binary files /dev/null and b/static/icons/060017EB.png differ
diff --git a/static/icons/060017EC.png b/static/icons/060017EC.png
new file mode 100755
index 00000000..47fb3c7f
Binary files /dev/null and b/static/icons/060017EC.png differ
diff --git a/static/icons/060017ED.png b/static/icons/060017ED.png
new file mode 100755
index 00000000..86a05b50
Binary files /dev/null and b/static/icons/060017ED.png differ
diff --git a/static/icons/060017FC.png b/static/icons/060017FC.png
new file mode 100755
index 00000000..b37982b1
Binary files /dev/null and b/static/icons/060017FC.png differ
diff --git a/static/icons/060017FD.png b/static/icons/060017FD.png
new file mode 100755
index 00000000..d493a0d1
Binary files /dev/null and b/static/icons/060017FD.png differ
diff --git a/static/icons/060017FE.png b/static/icons/060017FE.png
new file mode 100755
index 00000000..c78c73ba
Binary files /dev/null and b/static/icons/060017FE.png differ
diff --git a/static/icons/060017FF.png b/static/icons/060017FF.png
new file mode 100755
index 00000000..d46b6d30
Binary files /dev/null and b/static/icons/060017FF.png differ
diff --git a/static/icons/06001800.png b/static/icons/06001800.png
new file mode 100755
index 00000000..2f189f2e
Binary files /dev/null and b/static/icons/06001800.png differ
diff --git a/static/icons/06001801.png b/static/icons/06001801.png
new file mode 100755
index 00000000..98ae4765
Binary files /dev/null and b/static/icons/06001801.png differ
diff --git a/static/icons/06001802.png b/static/icons/06001802.png
new file mode 100755
index 00000000..edabb910
Binary files /dev/null and b/static/icons/06001802.png differ
diff --git a/static/icons/06001803.png b/static/icons/06001803.png
new file mode 100755
index 00000000..830ac928
Binary files /dev/null and b/static/icons/06001803.png differ
diff --git a/static/icons/06001804.png b/static/icons/06001804.png
new file mode 100755
index 00000000..18f5afa4
Binary files /dev/null and b/static/icons/06001804.png differ
diff --git a/static/icons/06001805.png b/static/icons/06001805.png
new file mode 100755
index 00000000..fe2e55ca
Binary files /dev/null and b/static/icons/06001805.png differ
diff --git a/static/icons/06001806.png b/static/icons/06001806.png
new file mode 100755
index 00000000..eecbc40c
Binary files /dev/null and b/static/icons/06001806.png differ
diff --git a/static/icons/06001807.png b/static/icons/06001807.png
new file mode 100755
index 00000000..e5012cab
Binary files /dev/null and b/static/icons/06001807.png differ
diff --git a/static/icons/06001808.png b/static/icons/06001808.png
new file mode 100755
index 00000000..ff608fe5
Binary files /dev/null and b/static/icons/06001808.png differ
diff --git a/static/icons/06001809.png b/static/icons/06001809.png
new file mode 100755
index 00000000..1ea499f1
Binary files /dev/null and b/static/icons/06001809.png differ
diff --git a/static/icons/0600180A.png b/static/icons/0600180A.png
new file mode 100755
index 00000000..6087f870
Binary files /dev/null and b/static/icons/0600180A.png differ
diff --git a/static/icons/0600180B.png b/static/icons/0600180B.png
new file mode 100755
index 00000000..ec8e0e7e
Binary files /dev/null and b/static/icons/0600180B.png differ
diff --git a/static/icons/0600180C.png b/static/icons/0600180C.png
new file mode 100755
index 00000000..9c302eed
Binary files /dev/null and b/static/icons/0600180C.png differ
diff --git a/static/icons/0600180D.png b/static/icons/0600180D.png
new file mode 100755
index 00000000..688fa252
Binary files /dev/null and b/static/icons/0600180D.png differ
diff --git a/static/icons/0600180E.png b/static/icons/0600180E.png
new file mode 100755
index 00000000..9dadc3e1
Binary files /dev/null and b/static/icons/0600180E.png differ
diff --git a/static/icons/0600180F.png b/static/icons/0600180F.png
new file mode 100755
index 00000000..a623103a
Binary files /dev/null and b/static/icons/0600180F.png differ
diff --git a/static/icons/06001810.png b/static/icons/06001810.png
new file mode 100755
index 00000000..cf92d78c
Binary files /dev/null and b/static/icons/06001810.png differ
diff --git a/static/icons/0600181E.png b/static/icons/0600181E.png
new file mode 100755
index 00000000..d5c3d411
Binary files /dev/null and b/static/icons/0600181E.png differ
diff --git a/static/icons/06001820.png b/static/icons/06001820.png
new file mode 100755
index 00000000..b3cfb49b
Binary files /dev/null and b/static/icons/06001820.png differ
diff --git a/static/icons/06001821.png b/static/icons/06001821.png
new file mode 100755
index 00000000..a229fd51
Binary files /dev/null and b/static/icons/06001821.png differ
diff --git a/static/icons/06001822.png b/static/icons/06001822.png
new file mode 100755
index 00000000..2c0446f9
Binary files /dev/null and b/static/icons/06001822.png differ
diff --git a/static/icons/06001823.png b/static/icons/06001823.png
new file mode 100755
index 00000000..f5c3cc8f
Binary files /dev/null and b/static/icons/06001823.png differ
diff --git a/static/icons/06001824.png b/static/icons/06001824.png
new file mode 100755
index 00000000..57621dce
Binary files /dev/null and b/static/icons/06001824.png differ
diff --git a/static/icons/06001825.png b/static/icons/06001825.png
new file mode 100755
index 00000000..9dbf1b47
Binary files /dev/null and b/static/icons/06001825.png differ
diff --git a/static/icons/06001826.png b/static/icons/06001826.png
new file mode 100755
index 00000000..8ac55144
Binary files /dev/null and b/static/icons/06001826.png differ
diff --git a/static/icons/06001827.png b/static/icons/06001827.png
new file mode 100755
index 00000000..0e193291
Binary files /dev/null and b/static/icons/06001827.png differ
diff --git a/static/icons/06001828.png b/static/icons/06001828.png
new file mode 100755
index 00000000..62b9d68d
Binary files /dev/null and b/static/icons/06001828.png differ
diff --git a/static/icons/06001829.png b/static/icons/06001829.png
new file mode 100755
index 00000000..8a40f086
Binary files /dev/null and b/static/icons/06001829.png differ
diff --git a/static/icons/0600182A.png b/static/icons/0600182A.png
new file mode 100755
index 00000000..a8ee49ff
Binary files /dev/null and b/static/icons/0600182A.png differ
diff --git a/static/icons/0600182B.png b/static/icons/0600182B.png
new file mode 100755
index 00000000..001a4d33
Binary files /dev/null and b/static/icons/0600182B.png differ
diff --git a/static/icons/0600182C.png b/static/icons/0600182C.png
new file mode 100755
index 00000000..4ecaa693
Binary files /dev/null and b/static/icons/0600182C.png differ
diff --git a/static/icons/0600182D.png b/static/icons/0600182D.png
new file mode 100755
index 00000000..941ac7c5
Binary files /dev/null and b/static/icons/0600182D.png differ
diff --git a/static/icons/0600182E.png b/static/icons/0600182E.png
new file mode 100755
index 00000000..e450ee06
Binary files /dev/null and b/static/icons/0600182E.png differ
diff --git a/static/icons/0600182F.png b/static/icons/0600182F.png
new file mode 100755
index 00000000..ff76c273
Binary files /dev/null and b/static/icons/0600182F.png differ
diff --git a/static/icons/06001830.png b/static/icons/06001830.png
new file mode 100755
index 00000000..597ff6a3
Binary files /dev/null and b/static/icons/06001830.png differ
diff --git a/static/icons/06001831.png b/static/icons/06001831.png
new file mode 100755
index 00000000..07405f1f
Binary files /dev/null and b/static/icons/06001831.png differ
diff --git a/static/icons/06001832.png b/static/icons/06001832.png
new file mode 100755
index 00000000..082d03c4
Binary files /dev/null and b/static/icons/06001832.png differ
diff --git a/static/icons/06001833.png b/static/icons/06001833.png
new file mode 100755
index 00000000..e04893c0
Binary files /dev/null and b/static/icons/06001833.png differ
diff --git a/static/icons/06001834.png b/static/icons/06001834.png
new file mode 100755
index 00000000..9d3b2ed0
Binary files /dev/null and b/static/icons/06001834.png differ
diff --git a/static/icons/06001835.png b/static/icons/06001835.png
new file mode 100755
index 00000000..709477cc
Binary files /dev/null and b/static/icons/06001835.png differ
diff --git a/static/icons/06001836.png b/static/icons/06001836.png
new file mode 100755
index 00000000..12a9a8d5
Binary files /dev/null and b/static/icons/06001836.png differ
diff --git a/static/icons/06001837.png b/static/icons/06001837.png
new file mode 100755
index 00000000..98c096ce
Binary files /dev/null and b/static/icons/06001837.png differ
diff --git a/static/icons/06001838.png b/static/icons/06001838.png
new file mode 100755
index 00000000..a5980df0
Binary files /dev/null and b/static/icons/06001838.png differ
diff --git a/static/icons/06001839.png b/static/icons/06001839.png
new file mode 100755
index 00000000..6f25b8e2
Binary files /dev/null and b/static/icons/06001839.png differ
diff --git a/static/icons/0600183A.png b/static/icons/0600183A.png
new file mode 100755
index 00000000..e7342267
Binary files /dev/null and b/static/icons/0600183A.png differ
diff --git a/static/icons/0600183B.png b/static/icons/0600183B.png
new file mode 100755
index 00000000..e46dc6ff
Binary files /dev/null and b/static/icons/0600183B.png differ
diff --git a/static/icons/0600183C.png b/static/icons/0600183C.png
new file mode 100755
index 00000000..765e13c6
Binary files /dev/null and b/static/icons/0600183C.png differ
diff --git a/static/icons/0600183D.png b/static/icons/0600183D.png
new file mode 100755
index 00000000..08e08859
Binary files /dev/null and b/static/icons/0600183D.png differ
diff --git a/static/icons/0600183E.png b/static/icons/0600183E.png
new file mode 100755
index 00000000..8b78d2a4
Binary files /dev/null and b/static/icons/0600183E.png differ
diff --git a/static/icons/06001840.png b/static/icons/06001840.png
new file mode 100755
index 00000000..9705331a
Binary files /dev/null and b/static/icons/06001840.png differ
diff --git a/static/icons/06001841.png b/static/icons/06001841.png
new file mode 100755
index 00000000..e0bf67ca
Binary files /dev/null and b/static/icons/06001841.png differ
diff --git a/static/icons/06001842.png b/static/icons/06001842.png
new file mode 100755
index 00000000..094f442f
Binary files /dev/null and b/static/icons/06001842.png differ
diff --git a/static/icons/06001843.png b/static/icons/06001843.png
new file mode 100755
index 00000000..f89d04bc
Binary files /dev/null and b/static/icons/06001843.png differ
diff --git a/static/icons/06001844.png b/static/icons/06001844.png
new file mode 100755
index 00000000..a4deada7
Binary files /dev/null and b/static/icons/06001844.png differ
diff --git a/static/icons/06001845.png b/static/icons/06001845.png
new file mode 100755
index 00000000..855d9220
Binary files /dev/null and b/static/icons/06001845.png differ
diff --git a/static/icons/06001846.png b/static/icons/06001846.png
new file mode 100755
index 00000000..5bc7d415
Binary files /dev/null and b/static/icons/06001846.png differ
diff --git a/static/icons/06001847.png b/static/icons/06001847.png
new file mode 100755
index 00000000..af839ffe
Binary files /dev/null and b/static/icons/06001847.png differ
diff --git a/static/icons/06001848.png b/static/icons/06001848.png
new file mode 100755
index 00000000..73c96bde
Binary files /dev/null and b/static/icons/06001848.png differ
diff --git a/static/icons/06001849.png b/static/icons/06001849.png
new file mode 100755
index 00000000..3ed52d45
Binary files /dev/null and b/static/icons/06001849.png differ
diff --git a/static/icons/0600184A.png b/static/icons/0600184A.png
new file mode 100755
index 00000000..f886f5eb
Binary files /dev/null and b/static/icons/0600184A.png differ
diff --git a/static/icons/0600184B.png b/static/icons/0600184B.png
new file mode 100755
index 00000000..8b03b791
Binary files /dev/null and b/static/icons/0600184B.png differ
diff --git a/static/icons/0600184C.png b/static/icons/0600184C.png
new file mode 100755
index 00000000..93613359
Binary files /dev/null and b/static/icons/0600184C.png differ
diff --git a/static/icons/06001854.png b/static/icons/06001854.png
new file mode 100755
index 00000000..c9e56239
Binary files /dev/null and b/static/icons/06001854.png differ
diff --git a/static/icons/06001855.png b/static/icons/06001855.png
new file mode 100755
index 00000000..42b93d9c
Binary files /dev/null and b/static/icons/06001855.png differ
diff --git a/static/icons/06001856.png b/static/icons/06001856.png
new file mode 100755
index 00000000..81dbb604
Binary files /dev/null and b/static/icons/06001856.png differ
diff --git a/static/icons/06001857.png b/static/icons/06001857.png
new file mode 100755
index 00000000..f4db6de9
Binary files /dev/null and b/static/icons/06001857.png differ
diff --git a/static/icons/06001858.png b/static/icons/06001858.png
new file mode 100755
index 00000000..f9b1e5c3
Binary files /dev/null and b/static/icons/06001858.png differ
diff --git a/static/icons/06001859.png b/static/icons/06001859.png
new file mode 100755
index 00000000..5f30bd50
Binary files /dev/null and b/static/icons/06001859.png differ
diff --git a/static/icons/0600185A.png b/static/icons/0600185A.png
new file mode 100755
index 00000000..06ac8668
Binary files /dev/null and b/static/icons/0600185A.png differ
diff --git a/static/icons/0600185B.png b/static/icons/0600185B.png
new file mode 100755
index 00000000..a094b3b3
Binary files /dev/null and b/static/icons/0600185B.png differ
diff --git a/static/icons/0600185C.png b/static/icons/0600185C.png
new file mode 100755
index 00000000..826c818b
Binary files /dev/null and b/static/icons/0600185C.png differ
diff --git a/static/icons/0600185D.png b/static/icons/0600185D.png
new file mode 100755
index 00000000..3a4c2828
Binary files /dev/null and b/static/icons/0600185D.png differ
diff --git a/static/icons/0600185E.png b/static/icons/0600185E.png
new file mode 100755
index 00000000..5641805a
Binary files /dev/null and b/static/icons/0600185E.png differ
diff --git a/static/icons/0600185F.png b/static/icons/0600185F.png
new file mode 100755
index 00000000..fec29f29
Binary files /dev/null and b/static/icons/0600185F.png differ
diff --git a/static/icons/06001860.png b/static/icons/06001860.png
new file mode 100755
index 00000000..1d5af1b3
Binary files /dev/null and b/static/icons/06001860.png differ
diff --git a/static/icons/06001861.png b/static/icons/06001861.png
new file mode 100755
index 00000000..2b96415f
Binary files /dev/null and b/static/icons/06001861.png differ
diff --git a/static/icons/06001862.png b/static/icons/06001862.png
new file mode 100755
index 00000000..6360294c
Binary files /dev/null and b/static/icons/06001862.png differ
diff --git a/static/icons/06001863.png b/static/icons/06001863.png
new file mode 100755
index 00000000..fdee21e3
Binary files /dev/null and b/static/icons/06001863.png differ
diff --git a/static/icons/06001864.png b/static/icons/06001864.png
new file mode 100755
index 00000000..a1002536
Binary files /dev/null and b/static/icons/06001864.png differ
diff --git a/static/icons/06001865.png b/static/icons/06001865.png
new file mode 100755
index 00000000..7468ddce
Binary files /dev/null and b/static/icons/06001865.png differ
diff --git a/static/icons/06001866.png b/static/icons/06001866.png
new file mode 100755
index 00000000..d9838158
Binary files /dev/null and b/static/icons/06001866.png differ
diff --git a/static/icons/06001867.png b/static/icons/06001867.png
new file mode 100755
index 00000000..779c856c
Binary files /dev/null and b/static/icons/06001867.png differ
diff --git a/static/icons/06001868.png b/static/icons/06001868.png
new file mode 100755
index 00000000..8327beac
Binary files /dev/null and b/static/icons/06001868.png differ
diff --git a/static/icons/06001869.png b/static/icons/06001869.png
new file mode 100755
index 00000000..222a0921
Binary files /dev/null and b/static/icons/06001869.png differ
diff --git a/static/icons/0600186A.png b/static/icons/0600186A.png
new file mode 100755
index 00000000..9be59b76
Binary files /dev/null and b/static/icons/0600186A.png differ
diff --git a/static/icons/0600186B.png b/static/icons/0600186B.png
new file mode 100755
index 00000000..379e2955
Binary files /dev/null and b/static/icons/0600186B.png differ
diff --git a/static/icons/0600186C.png b/static/icons/0600186C.png
new file mode 100755
index 00000000..c901ef11
Binary files /dev/null and b/static/icons/0600186C.png differ
diff --git a/static/icons/0600186D.png b/static/icons/0600186D.png
new file mode 100755
index 00000000..5b63fb15
Binary files /dev/null and b/static/icons/0600186D.png differ
diff --git a/static/icons/0600186E.png b/static/icons/0600186E.png
new file mode 100755
index 00000000..5c158f1a
Binary files /dev/null and b/static/icons/0600186E.png differ
diff --git a/static/icons/0600186F.png b/static/icons/0600186F.png
new file mode 100755
index 00000000..a81381a8
Binary files /dev/null and b/static/icons/0600186F.png differ
diff --git a/static/icons/06001870.png b/static/icons/06001870.png
new file mode 100755
index 00000000..e042b330
Binary files /dev/null and b/static/icons/06001870.png differ
diff --git a/static/icons/06001871.png b/static/icons/06001871.png
new file mode 100755
index 00000000..76ed65ab
Binary files /dev/null and b/static/icons/06001871.png differ
diff --git a/static/icons/06001872.png b/static/icons/06001872.png
new file mode 100755
index 00000000..0c6f8922
Binary files /dev/null and b/static/icons/06001872.png differ
diff --git a/static/icons/06001873.png b/static/icons/06001873.png
new file mode 100755
index 00000000..35c3a3f5
Binary files /dev/null and b/static/icons/06001873.png differ
diff --git a/static/icons/06001874.png b/static/icons/06001874.png
new file mode 100755
index 00000000..abf12255
Binary files /dev/null and b/static/icons/06001874.png differ
diff --git a/static/icons/06001875.png b/static/icons/06001875.png
new file mode 100755
index 00000000..8659bb50
Binary files /dev/null and b/static/icons/06001875.png differ
diff --git a/static/icons/06001876.png b/static/icons/06001876.png
new file mode 100755
index 00000000..a83683c4
Binary files /dev/null and b/static/icons/06001876.png differ
diff --git a/static/icons/06001877.png b/static/icons/06001877.png
new file mode 100755
index 00000000..60d49640
Binary files /dev/null and b/static/icons/06001877.png differ
diff --git a/static/icons/06001878.png b/static/icons/06001878.png
new file mode 100755
index 00000000..5ec95cab
Binary files /dev/null and b/static/icons/06001878.png differ
diff --git a/static/icons/06001879.png b/static/icons/06001879.png
new file mode 100755
index 00000000..1679d8e9
Binary files /dev/null and b/static/icons/06001879.png differ
diff --git a/static/icons/0600187A.png b/static/icons/0600187A.png
new file mode 100755
index 00000000..fdd5d9eb
Binary files /dev/null and b/static/icons/0600187A.png differ
diff --git a/static/icons/0600187B.png b/static/icons/0600187B.png
new file mode 100755
index 00000000..2dfee564
Binary files /dev/null and b/static/icons/0600187B.png differ
diff --git a/static/icons/0600187C.png b/static/icons/0600187C.png
new file mode 100755
index 00000000..f4a59854
Binary files /dev/null and b/static/icons/0600187C.png differ
diff --git a/static/icons/0600187D.png b/static/icons/0600187D.png
new file mode 100755
index 00000000..6f1bcea1
Binary files /dev/null and b/static/icons/0600187D.png differ
diff --git a/static/icons/0600187E.png b/static/icons/0600187E.png
new file mode 100755
index 00000000..4960430a
Binary files /dev/null and b/static/icons/0600187E.png differ
diff --git a/static/icons/0600187F.png b/static/icons/0600187F.png
new file mode 100755
index 00000000..b10e03eb
Binary files /dev/null and b/static/icons/0600187F.png differ
diff --git a/static/icons/06001880.png b/static/icons/06001880.png
new file mode 100755
index 00000000..c3bed291
Binary files /dev/null and b/static/icons/06001880.png differ
diff --git a/static/icons/06001881.png b/static/icons/06001881.png
new file mode 100755
index 00000000..cd3e18ad
Binary files /dev/null and b/static/icons/06001881.png differ
diff --git a/static/icons/06001882.png b/static/icons/06001882.png
new file mode 100755
index 00000000..1b84ff74
Binary files /dev/null and b/static/icons/06001882.png differ
diff --git a/static/icons/06001883.png b/static/icons/06001883.png
new file mode 100755
index 00000000..e6944b1b
Binary files /dev/null and b/static/icons/06001883.png differ
diff --git a/static/icons/06001884.png b/static/icons/06001884.png
new file mode 100755
index 00000000..4c205635
Binary files /dev/null and b/static/icons/06001884.png differ
diff --git a/static/icons/06001885.png b/static/icons/06001885.png
new file mode 100755
index 00000000..bceea260
Binary files /dev/null and b/static/icons/06001885.png differ
diff --git a/static/icons/06001886.png b/static/icons/06001886.png
new file mode 100755
index 00000000..10852c80
Binary files /dev/null and b/static/icons/06001886.png differ
diff --git a/static/icons/06001887.png b/static/icons/06001887.png
new file mode 100755
index 00000000..21e7c3c8
Binary files /dev/null and b/static/icons/06001887.png differ
diff --git a/static/icons/06001888.png b/static/icons/06001888.png
new file mode 100755
index 00000000..2f945682
Binary files /dev/null and b/static/icons/06001888.png differ
diff --git a/static/icons/06001889.png b/static/icons/06001889.png
new file mode 100755
index 00000000..901e80e6
Binary files /dev/null and b/static/icons/06001889.png differ
diff --git a/static/icons/0600188A.png b/static/icons/0600188A.png
new file mode 100755
index 00000000..ac35c425
Binary files /dev/null and b/static/icons/0600188A.png differ
diff --git a/static/icons/0600188B.png b/static/icons/0600188B.png
new file mode 100755
index 00000000..6de2d605
Binary files /dev/null and b/static/icons/0600188B.png differ
diff --git a/static/icons/0600188C.png b/static/icons/0600188C.png
new file mode 100755
index 00000000..acab9dc3
Binary files /dev/null and b/static/icons/0600188C.png differ
diff --git a/static/icons/0600188D.png b/static/icons/0600188D.png
new file mode 100755
index 00000000..5dddd1a7
Binary files /dev/null and b/static/icons/0600188D.png differ
diff --git a/static/icons/0600188E.png b/static/icons/0600188E.png
new file mode 100755
index 00000000..a47d9862
Binary files /dev/null and b/static/icons/0600188E.png differ
diff --git a/static/icons/0600188F.png b/static/icons/0600188F.png
new file mode 100755
index 00000000..a18eac68
Binary files /dev/null and b/static/icons/0600188F.png differ
diff --git a/static/icons/06001890.png b/static/icons/06001890.png
new file mode 100755
index 00000000..965ac440
Binary files /dev/null and b/static/icons/06001890.png differ
diff --git a/static/icons/06001891.png b/static/icons/06001891.png
new file mode 100755
index 00000000..e99e5978
Binary files /dev/null and b/static/icons/06001891.png differ
diff --git a/static/icons/06001892.png b/static/icons/06001892.png
new file mode 100755
index 00000000..cd5996ce
Binary files /dev/null and b/static/icons/06001892.png differ
diff --git a/static/icons/06001893.png b/static/icons/06001893.png
new file mode 100755
index 00000000..7bc60d3b
Binary files /dev/null and b/static/icons/06001893.png differ
diff --git a/static/icons/06001894.png b/static/icons/06001894.png
new file mode 100755
index 00000000..72842d6e
Binary files /dev/null and b/static/icons/06001894.png differ
diff --git a/static/icons/06001895.png b/static/icons/06001895.png
new file mode 100755
index 00000000..bd37c6f6
Binary files /dev/null and b/static/icons/06001895.png differ
diff --git a/static/icons/06001896.png b/static/icons/06001896.png
new file mode 100755
index 00000000..fe504d48
Binary files /dev/null and b/static/icons/06001896.png differ
diff --git a/static/icons/06001897.png b/static/icons/06001897.png
new file mode 100755
index 00000000..02f36c56
Binary files /dev/null and b/static/icons/06001897.png differ
diff --git a/static/icons/06001898.png b/static/icons/06001898.png
new file mode 100755
index 00000000..417456f4
Binary files /dev/null and b/static/icons/06001898.png differ
diff --git a/static/icons/06001899.png b/static/icons/06001899.png
new file mode 100755
index 00000000..cb09aa62
Binary files /dev/null and b/static/icons/06001899.png differ
diff --git a/static/icons/0600189A.png b/static/icons/0600189A.png
new file mode 100755
index 00000000..4bf288f0
Binary files /dev/null and b/static/icons/0600189A.png differ
diff --git a/static/icons/0600189B.png b/static/icons/0600189B.png
new file mode 100755
index 00000000..2a690322
Binary files /dev/null and b/static/icons/0600189B.png differ
diff --git a/static/icons/0600189C.png b/static/icons/0600189C.png
new file mode 100755
index 00000000..3842f4f3
Binary files /dev/null and b/static/icons/0600189C.png differ
diff --git a/static/icons/0600189D.png b/static/icons/0600189D.png
new file mode 100755
index 00000000..305c8b72
Binary files /dev/null and b/static/icons/0600189D.png differ
diff --git a/static/icons/0600189E.png b/static/icons/0600189E.png
new file mode 100755
index 00000000..678efe66
Binary files /dev/null and b/static/icons/0600189E.png differ
diff --git a/static/icons/0600189F.png b/static/icons/0600189F.png
new file mode 100755
index 00000000..7c9b8c22
Binary files /dev/null and b/static/icons/0600189F.png differ
diff --git a/static/icons/060018A0.png b/static/icons/060018A0.png
new file mode 100755
index 00000000..c9d1507a
Binary files /dev/null and b/static/icons/060018A0.png differ
diff --git a/static/icons/060018A1.png b/static/icons/060018A1.png
new file mode 100755
index 00000000..87bc3dec
Binary files /dev/null and b/static/icons/060018A1.png differ
diff --git a/static/icons/060018A2.png b/static/icons/060018A2.png
new file mode 100755
index 00000000..5b128c73
Binary files /dev/null and b/static/icons/060018A2.png differ
diff --git a/static/icons/060018A3.png b/static/icons/060018A3.png
new file mode 100755
index 00000000..8a324528
Binary files /dev/null and b/static/icons/060018A3.png differ
diff --git a/static/icons/060018A4.png b/static/icons/060018A4.png
new file mode 100755
index 00000000..e49b65a6
Binary files /dev/null and b/static/icons/060018A4.png differ
diff --git a/static/icons/060018A5.png b/static/icons/060018A5.png
new file mode 100755
index 00000000..c00a63b1
Binary files /dev/null and b/static/icons/060018A5.png differ
diff --git a/static/icons/060018A6.png b/static/icons/060018A6.png
new file mode 100755
index 00000000..78f8bcc7
Binary files /dev/null and b/static/icons/060018A6.png differ
diff --git a/static/icons/060018A7.png b/static/icons/060018A7.png
new file mode 100755
index 00000000..3e7c8224
Binary files /dev/null and b/static/icons/060018A7.png differ
diff --git a/static/icons/060018A8.png b/static/icons/060018A8.png
new file mode 100755
index 00000000..79e06e4a
Binary files /dev/null and b/static/icons/060018A8.png differ
diff --git a/static/icons/060018A9.png b/static/icons/060018A9.png
new file mode 100755
index 00000000..e7a1322e
Binary files /dev/null and b/static/icons/060018A9.png differ
diff --git a/static/icons/060018AA.png b/static/icons/060018AA.png
new file mode 100755
index 00000000..7e557d52
Binary files /dev/null and b/static/icons/060018AA.png differ
diff --git a/static/icons/060018AB.png b/static/icons/060018AB.png
new file mode 100755
index 00000000..e34eaaec
Binary files /dev/null and b/static/icons/060018AB.png differ
diff --git a/static/icons/060018AC.png b/static/icons/060018AC.png
new file mode 100755
index 00000000..118aae79
Binary files /dev/null and b/static/icons/060018AC.png differ
diff --git a/static/icons/060018AD.png b/static/icons/060018AD.png
new file mode 100755
index 00000000..11b1d90b
Binary files /dev/null and b/static/icons/060018AD.png differ
diff --git a/static/icons/060018AE.png b/static/icons/060018AE.png
new file mode 100755
index 00000000..341f68b2
Binary files /dev/null and b/static/icons/060018AE.png differ
diff --git a/static/icons/060018AF.png b/static/icons/060018AF.png
new file mode 100755
index 00000000..a7cc44cc
Binary files /dev/null and b/static/icons/060018AF.png differ
diff --git a/static/icons/060018B0.png b/static/icons/060018B0.png
new file mode 100755
index 00000000..01ece5ef
Binary files /dev/null and b/static/icons/060018B0.png differ
diff --git a/static/icons/060018B1.png b/static/icons/060018B1.png
new file mode 100755
index 00000000..55cb4637
Binary files /dev/null and b/static/icons/060018B1.png differ
diff --git a/static/icons/060018B2.png b/static/icons/060018B2.png
new file mode 100755
index 00000000..287b88c9
Binary files /dev/null and b/static/icons/060018B2.png differ
diff --git a/static/icons/060018B3.png b/static/icons/060018B3.png
new file mode 100755
index 00000000..66d9ae43
Binary files /dev/null and b/static/icons/060018B3.png differ
diff --git a/static/icons/060018B4.png b/static/icons/060018B4.png
new file mode 100755
index 00000000..13166515
Binary files /dev/null and b/static/icons/060018B4.png differ
diff --git a/static/icons/060018B5.png b/static/icons/060018B5.png
new file mode 100755
index 00000000..1d2fc2ee
Binary files /dev/null and b/static/icons/060018B5.png differ
diff --git a/static/icons/060018B6.png b/static/icons/060018B6.png
new file mode 100755
index 00000000..456db6c9
Binary files /dev/null and b/static/icons/060018B6.png differ
diff --git a/static/icons/060018B7.png b/static/icons/060018B7.png
new file mode 100755
index 00000000..3f21f47b
Binary files /dev/null and b/static/icons/060018B7.png differ
diff --git a/static/icons/060018B8.png b/static/icons/060018B8.png
new file mode 100755
index 00000000..b7c94ad9
Binary files /dev/null and b/static/icons/060018B8.png differ
diff --git a/static/icons/060018B9.png b/static/icons/060018B9.png
new file mode 100755
index 00000000..e02de033
Binary files /dev/null and b/static/icons/060018B9.png differ
diff --git a/static/icons/060018BA.png b/static/icons/060018BA.png
new file mode 100755
index 00000000..9292f543
Binary files /dev/null and b/static/icons/060018BA.png differ
diff --git a/static/icons/060018BB.png b/static/icons/060018BB.png
new file mode 100755
index 00000000..047e71a9
Binary files /dev/null and b/static/icons/060018BB.png differ
diff --git a/static/icons/060018BC.png b/static/icons/060018BC.png
new file mode 100755
index 00000000..2ae0329d
Binary files /dev/null and b/static/icons/060018BC.png differ
diff --git a/static/icons/060018BD.png b/static/icons/060018BD.png
new file mode 100755
index 00000000..b3de2e56
Binary files /dev/null and b/static/icons/060018BD.png differ
diff --git a/static/icons/060018BE.png b/static/icons/060018BE.png
new file mode 100755
index 00000000..e00375f8
Binary files /dev/null and b/static/icons/060018BE.png differ
diff --git a/static/icons/060018BF.png b/static/icons/060018BF.png
new file mode 100755
index 00000000..69829eb1
Binary files /dev/null and b/static/icons/060018BF.png differ
diff --git a/static/icons/060018C0.png b/static/icons/060018C0.png
new file mode 100755
index 00000000..217d71af
Binary files /dev/null and b/static/icons/060018C0.png differ
diff --git a/static/icons/060018C1.png b/static/icons/060018C1.png
new file mode 100755
index 00000000..a6359ef2
Binary files /dev/null and b/static/icons/060018C1.png differ
diff --git a/static/icons/060018C2.png b/static/icons/060018C2.png
new file mode 100755
index 00000000..6dd43adf
Binary files /dev/null and b/static/icons/060018C2.png differ
diff --git a/static/icons/060018C3.png b/static/icons/060018C3.png
new file mode 100755
index 00000000..2e4d4524
Binary files /dev/null and b/static/icons/060018C3.png differ
diff --git a/static/icons/060018C4.png b/static/icons/060018C4.png
new file mode 100755
index 00000000..df94d4b0
Binary files /dev/null and b/static/icons/060018C4.png differ
diff --git a/static/icons/060018C5.png b/static/icons/060018C5.png
new file mode 100755
index 00000000..5af9c37e
Binary files /dev/null and b/static/icons/060018C5.png differ
diff --git a/static/icons/060018C6.png b/static/icons/060018C6.png
new file mode 100755
index 00000000..59795207
Binary files /dev/null and b/static/icons/060018C6.png differ
diff --git a/static/icons/060018C7.png b/static/icons/060018C7.png
new file mode 100755
index 00000000..1d48d830
Binary files /dev/null and b/static/icons/060018C7.png differ
diff --git a/static/icons/060018C8.png b/static/icons/060018C8.png
new file mode 100755
index 00000000..72238ffd
Binary files /dev/null and b/static/icons/060018C8.png differ
diff --git a/static/icons/060018C9.png b/static/icons/060018C9.png
new file mode 100755
index 00000000..87c67ef3
Binary files /dev/null and b/static/icons/060018C9.png differ
diff --git a/static/icons/060018CA.png b/static/icons/060018CA.png
new file mode 100755
index 00000000..77389ad5
Binary files /dev/null and b/static/icons/060018CA.png differ
diff --git a/static/icons/060018CB.png b/static/icons/060018CB.png
new file mode 100755
index 00000000..9465a2d7
Binary files /dev/null and b/static/icons/060018CB.png differ
diff --git a/static/icons/060018CC.png b/static/icons/060018CC.png
new file mode 100755
index 00000000..1fbcbb65
Binary files /dev/null and b/static/icons/060018CC.png differ
diff --git a/static/icons/060018CD.png b/static/icons/060018CD.png
new file mode 100755
index 00000000..67326b19
Binary files /dev/null and b/static/icons/060018CD.png differ
diff --git a/static/icons/060018CE.png b/static/icons/060018CE.png
new file mode 100755
index 00000000..b6ca7af5
Binary files /dev/null and b/static/icons/060018CE.png differ
diff --git a/static/icons/060018CF.png b/static/icons/060018CF.png
new file mode 100755
index 00000000..a4961490
Binary files /dev/null and b/static/icons/060018CF.png differ
diff --git a/static/icons/060018D0.png b/static/icons/060018D0.png
new file mode 100755
index 00000000..c6280c46
Binary files /dev/null and b/static/icons/060018D0.png differ
diff --git a/static/icons/060018D1.png b/static/icons/060018D1.png
new file mode 100755
index 00000000..3e7a7944
Binary files /dev/null and b/static/icons/060018D1.png differ
diff --git a/static/icons/060018D2.png b/static/icons/060018D2.png
new file mode 100755
index 00000000..31e0d8ae
Binary files /dev/null and b/static/icons/060018D2.png differ
diff --git a/static/icons/060018D3.png b/static/icons/060018D3.png
new file mode 100755
index 00000000..5951b27c
Binary files /dev/null and b/static/icons/060018D3.png differ
diff --git a/static/icons/060018D4.png b/static/icons/060018D4.png
new file mode 100755
index 00000000..5be744f4
Binary files /dev/null and b/static/icons/060018D4.png differ
diff --git a/static/icons/060018D5.png b/static/icons/060018D5.png
new file mode 100755
index 00000000..55556c3d
Binary files /dev/null and b/static/icons/060018D5.png differ
diff --git a/static/icons/060018D6.png b/static/icons/060018D6.png
new file mode 100755
index 00000000..6665c403
Binary files /dev/null and b/static/icons/060018D6.png differ
diff --git a/static/icons/060018D7.png b/static/icons/060018D7.png
new file mode 100755
index 00000000..e96f4da9
Binary files /dev/null and b/static/icons/060018D7.png differ
diff --git a/static/icons/060018D8.png b/static/icons/060018D8.png
new file mode 100755
index 00000000..9d1c5edb
Binary files /dev/null and b/static/icons/060018D8.png differ
diff --git a/static/icons/060018D9.png b/static/icons/060018D9.png
new file mode 100755
index 00000000..3f5e1010
Binary files /dev/null and b/static/icons/060018D9.png differ
diff --git a/static/icons/060018DA.png b/static/icons/060018DA.png
new file mode 100755
index 00000000..371f94e3
Binary files /dev/null and b/static/icons/060018DA.png differ
diff --git a/static/icons/060018DB.png b/static/icons/060018DB.png
new file mode 100755
index 00000000..66addefd
Binary files /dev/null and b/static/icons/060018DB.png differ
diff --git a/static/icons/060018DC.png b/static/icons/060018DC.png
new file mode 100755
index 00000000..b07e31db
Binary files /dev/null and b/static/icons/060018DC.png differ
diff --git a/static/icons/060018DD.png b/static/icons/060018DD.png
new file mode 100755
index 00000000..e3382bbb
Binary files /dev/null and b/static/icons/060018DD.png differ
diff --git a/static/icons/060018DE.png b/static/icons/060018DE.png
new file mode 100755
index 00000000..384776f6
Binary files /dev/null and b/static/icons/060018DE.png differ
diff --git a/static/icons/060018DF.png b/static/icons/060018DF.png
new file mode 100755
index 00000000..8531e51f
Binary files /dev/null and b/static/icons/060018DF.png differ
diff --git a/static/icons/060018E5.png b/static/icons/060018E5.png
new file mode 100755
index 00000000..50e02a90
Binary files /dev/null and b/static/icons/060018E5.png differ
diff --git a/static/icons/060018E6.png b/static/icons/060018E6.png
new file mode 100755
index 00000000..98ab3892
Binary files /dev/null and b/static/icons/060018E6.png differ
diff --git a/static/icons/060018E7.png b/static/icons/060018E7.png
new file mode 100755
index 00000000..cb2daea2
Binary files /dev/null and b/static/icons/060018E7.png differ
diff --git a/static/icons/060018E8.png b/static/icons/060018E8.png
new file mode 100755
index 00000000..38cfdc37
Binary files /dev/null and b/static/icons/060018E8.png differ
diff --git a/static/icons/060018E9.png b/static/icons/060018E9.png
new file mode 100755
index 00000000..afc07f3c
Binary files /dev/null and b/static/icons/060018E9.png differ
diff --git a/static/icons/060018EA.png b/static/icons/060018EA.png
new file mode 100755
index 00000000..1c3a857c
Binary files /dev/null and b/static/icons/060018EA.png differ
diff --git a/static/icons/060018EB.png b/static/icons/060018EB.png
new file mode 100755
index 00000000..50db277f
Binary files /dev/null and b/static/icons/060018EB.png differ
diff --git a/static/icons/060018EC.png b/static/icons/060018EC.png
new file mode 100755
index 00000000..b76ccd5b
Binary files /dev/null and b/static/icons/060018EC.png differ
diff --git a/static/icons/060018ED.png b/static/icons/060018ED.png
new file mode 100755
index 00000000..8387c7c0
Binary files /dev/null and b/static/icons/060018ED.png differ
diff --git a/static/icons/060018EE.png b/static/icons/060018EE.png
new file mode 100755
index 00000000..8434be99
Binary files /dev/null and b/static/icons/060018EE.png differ
diff --git a/static/icons/060018EF.png b/static/icons/060018EF.png
new file mode 100755
index 00000000..9fda40e5
Binary files /dev/null and b/static/icons/060018EF.png differ
diff --git a/static/icons/060018F0.png b/static/icons/060018F0.png
new file mode 100755
index 00000000..caede515
Binary files /dev/null and b/static/icons/060018F0.png differ
diff --git a/static/icons/060018F1.png b/static/icons/060018F1.png
new file mode 100755
index 00000000..d9e2f5e5
Binary files /dev/null and b/static/icons/060018F1.png differ
diff --git a/static/icons/060018F2.png b/static/icons/060018F2.png
new file mode 100755
index 00000000..4f4d0893
Binary files /dev/null and b/static/icons/060018F2.png differ
diff --git a/static/icons/060018F3.png b/static/icons/060018F3.png
new file mode 100755
index 00000000..ba416f8a
Binary files /dev/null and b/static/icons/060018F3.png differ
diff --git a/static/icons/060018F4.png b/static/icons/060018F4.png
new file mode 100755
index 00000000..8ea55157
Binary files /dev/null and b/static/icons/060018F4.png differ
diff --git a/static/icons/060018F5.png b/static/icons/060018F5.png
new file mode 100755
index 00000000..c90b856e
Binary files /dev/null and b/static/icons/060018F5.png differ
diff --git a/static/icons/060018F6.png b/static/icons/060018F6.png
new file mode 100755
index 00000000..afeed39d
Binary files /dev/null and b/static/icons/060018F6.png differ
diff --git a/static/icons/060018F7.png b/static/icons/060018F7.png
new file mode 100755
index 00000000..f2e368d0
Binary files /dev/null and b/static/icons/060018F7.png differ
diff --git a/static/icons/060018F8.png b/static/icons/060018F8.png
new file mode 100755
index 00000000..2f05d36f
Binary files /dev/null and b/static/icons/060018F8.png differ
diff --git a/static/icons/060018F9.png b/static/icons/060018F9.png
new file mode 100755
index 00000000..e0f3670f
Binary files /dev/null and b/static/icons/060018F9.png differ
diff --git a/static/icons/060018FA.png b/static/icons/060018FA.png
new file mode 100755
index 00000000..6d963cec
Binary files /dev/null and b/static/icons/060018FA.png differ
diff --git a/static/icons/060018FB.png b/static/icons/060018FB.png
new file mode 100755
index 00000000..8da23b43
Binary files /dev/null and b/static/icons/060018FB.png differ
diff --git a/static/icons/060018FC.png b/static/icons/060018FC.png
new file mode 100755
index 00000000..340e73d4
Binary files /dev/null and b/static/icons/060018FC.png differ
diff --git a/static/icons/060018FE.png b/static/icons/060018FE.png
new file mode 100755
index 00000000..a8f32940
Binary files /dev/null and b/static/icons/060018FE.png differ
diff --git a/static/icons/060018FF.png b/static/icons/060018FF.png
new file mode 100755
index 00000000..ea684fd5
Binary files /dev/null and b/static/icons/060018FF.png differ
diff --git a/static/icons/06001900.png b/static/icons/06001900.png
new file mode 100755
index 00000000..9dfd0edf
Binary files /dev/null and b/static/icons/06001900.png differ
diff --git a/static/icons/06001901.png b/static/icons/06001901.png
new file mode 100755
index 00000000..da95c182
Binary files /dev/null and b/static/icons/06001901.png differ
diff --git a/static/icons/06001902.png b/static/icons/06001902.png
new file mode 100755
index 00000000..a9ffba91
Binary files /dev/null and b/static/icons/06001902.png differ
diff --git a/static/icons/06001903.png b/static/icons/06001903.png
new file mode 100755
index 00000000..6ab17c6b
Binary files /dev/null and b/static/icons/06001903.png differ
diff --git a/static/icons/06001904.png b/static/icons/06001904.png
new file mode 100755
index 00000000..0bd302d8
Binary files /dev/null and b/static/icons/06001904.png differ
diff --git a/static/icons/06001905.png b/static/icons/06001905.png
new file mode 100755
index 00000000..a14469c6
Binary files /dev/null and b/static/icons/06001905.png differ
diff --git a/static/icons/06001906.png b/static/icons/06001906.png
new file mode 100755
index 00000000..92d55b1d
Binary files /dev/null and b/static/icons/06001906.png differ
diff --git a/static/icons/06001907.png b/static/icons/06001907.png
new file mode 100755
index 00000000..6d021dfa
Binary files /dev/null and b/static/icons/06001907.png differ
diff --git a/static/icons/06001908.png b/static/icons/06001908.png
new file mode 100755
index 00000000..1b6894ef
Binary files /dev/null and b/static/icons/06001908.png differ
diff --git a/static/icons/06001909.png b/static/icons/06001909.png
new file mode 100755
index 00000000..d4a83253
Binary files /dev/null and b/static/icons/06001909.png differ
diff --git a/static/icons/0600190A.png b/static/icons/0600190A.png
new file mode 100755
index 00000000..8f919225
Binary files /dev/null and b/static/icons/0600190A.png differ
diff --git a/static/icons/0600190B.png b/static/icons/0600190B.png
new file mode 100755
index 00000000..abaed422
Binary files /dev/null and b/static/icons/0600190B.png differ
diff --git a/static/icons/0600190C.png b/static/icons/0600190C.png
new file mode 100755
index 00000000..7a894cf2
Binary files /dev/null and b/static/icons/0600190C.png differ
diff --git a/static/icons/0600190D.png b/static/icons/0600190D.png
new file mode 100755
index 00000000..55a5ee13
Binary files /dev/null and b/static/icons/0600190D.png differ
diff --git a/static/icons/0600190E.png b/static/icons/0600190E.png
new file mode 100755
index 00000000..54f6f7be
Binary files /dev/null and b/static/icons/0600190E.png differ
diff --git a/static/icons/0600190F.png b/static/icons/0600190F.png
new file mode 100755
index 00000000..7ac2dc5d
Binary files /dev/null and b/static/icons/0600190F.png differ
diff --git a/static/icons/06001910.png b/static/icons/06001910.png
new file mode 100755
index 00000000..b25e4273
Binary files /dev/null and b/static/icons/06001910.png differ
diff --git a/static/icons/06001911.png b/static/icons/06001911.png
new file mode 100755
index 00000000..759d9f72
Binary files /dev/null and b/static/icons/06001911.png differ
diff --git a/static/icons/06001912.png b/static/icons/06001912.png
new file mode 100755
index 00000000..20fd5ea9
Binary files /dev/null and b/static/icons/06001912.png differ
diff --git a/static/icons/06001915.png b/static/icons/06001915.png
new file mode 100755
index 00000000..11b12f7c
Binary files /dev/null and b/static/icons/06001915.png differ
diff --git a/static/icons/06001916.png b/static/icons/06001916.png
new file mode 100755
index 00000000..92d11ca5
Binary files /dev/null and b/static/icons/06001916.png differ
diff --git a/static/icons/06001918.png b/static/icons/06001918.png
new file mode 100755
index 00000000..f66a109f
Binary files /dev/null and b/static/icons/06001918.png differ
diff --git a/static/icons/06001919.png b/static/icons/06001919.png
new file mode 100755
index 00000000..2c0662fc
Binary files /dev/null and b/static/icons/06001919.png differ
diff --git a/static/icons/0600191A.png b/static/icons/0600191A.png
new file mode 100755
index 00000000..1f678b22
Binary files /dev/null and b/static/icons/0600191A.png differ
diff --git a/static/icons/0600191F.png b/static/icons/0600191F.png
new file mode 100755
index 00000000..17fd76c3
Binary files /dev/null and b/static/icons/0600191F.png differ
diff --git a/static/icons/06001920.png b/static/icons/06001920.png
new file mode 100755
index 00000000..9095bbc7
Binary files /dev/null and b/static/icons/06001920.png differ
diff --git a/static/icons/06001921.png b/static/icons/06001921.png
new file mode 100755
index 00000000..e41099dc
Binary files /dev/null and b/static/icons/06001921.png differ
diff --git a/static/icons/06001922.png b/static/icons/06001922.png
new file mode 100755
index 00000000..98a67fe9
Binary files /dev/null and b/static/icons/06001922.png differ
diff --git a/static/icons/06001923.png b/static/icons/06001923.png
new file mode 100755
index 00000000..b174b470
Binary files /dev/null and b/static/icons/06001923.png differ
diff --git a/static/icons/06001927.png b/static/icons/06001927.png
new file mode 100755
index 00000000..df2c3a02
Binary files /dev/null and b/static/icons/06001927.png differ
diff --git a/static/icons/06001928.png b/static/icons/06001928.png
new file mode 100755
index 00000000..41d9854a
Binary files /dev/null and b/static/icons/06001928.png differ
diff --git a/static/icons/06001929.png b/static/icons/06001929.png
new file mode 100755
index 00000000..379d004e
Binary files /dev/null and b/static/icons/06001929.png differ
diff --git a/static/icons/0600192A.png b/static/icons/0600192A.png
new file mode 100755
index 00000000..7facc27d
Binary files /dev/null and b/static/icons/0600192A.png differ
diff --git a/static/icons/0600192B.png b/static/icons/0600192B.png
new file mode 100755
index 00000000..a02161ba
Binary files /dev/null and b/static/icons/0600192B.png differ
diff --git a/static/icons/0600192F.png b/static/icons/0600192F.png
new file mode 100755
index 00000000..68921784
Binary files /dev/null and b/static/icons/0600192F.png differ
diff --git a/static/icons/06001932.png b/static/icons/06001932.png
new file mode 100755
index 00000000..eaa8a1fd
Binary files /dev/null and b/static/icons/06001932.png differ
diff --git a/static/icons/06001933.png b/static/icons/06001933.png
new file mode 100755
index 00000000..f8ab0c78
Binary files /dev/null and b/static/icons/06001933.png differ
diff --git a/static/icons/06001934.png b/static/icons/06001934.png
new file mode 100755
index 00000000..2b62aedd
Binary files /dev/null and b/static/icons/06001934.png differ
diff --git a/static/icons/06001935.png b/static/icons/06001935.png
new file mode 100755
index 00000000..bbb517e8
Binary files /dev/null and b/static/icons/06001935.png differ
diff --git a/static/icons/06001937.png b/static/icons/06001937.png
new file mode 100755
index 00000000..bb84415a
Binary files /dev/null and b/static/icons/06001937.png differ
diff --git a/static/icons/06001938.png b/static/icons/06001938.png
new file mode 100755
index 00000000..34463dc7
Binary files /dev/null and b/static/icons/06001938.png differ
diff --git a/static/icons/0600193A.png b/static/icons/0600193A.png
new file mode 100755
index 00000000..f69450f9
Binary files /dev/null and b/static/icons/0600193A.png differ
diff --git a/static/icons/0600193C.png b/static/icons/0600193C.png
new file mode 100755
index 00000000..63443f29
Binary files /dev/null and b/static/icons/0600193C.png differ
diff --git a/static/icons/0600193E.png b/static/icons/0600193E.png
new file mode 100755
index 00000000..1f8a7509
Binary files /dev/null and b/static/icons/0600193E.png differ
diff --git a/static/icons/0600193F.png b/static/icons/0600193F.png
new file mode 100755
index 00000000..d9211959
Binary files /dev/null and b/static/icons/0600193F.png differ
diff --git a/static/icons/06001942.png b/static/icons/06001942.png
new file mode 100755
index 00000000..e00af279
Binary files /dev/null and b/static/icons/06001942.png differ
diff --git a/static/icons/0600194C.png b/static/icons/0600194C.png
new file mode 100755
index 00000000..9af61e15
Binary files /dev/null and b/static/icons/0600194C.png differ
diff --git a/static/icons/06001953.png b/static/icons/06001953.png
new file mode 100755
index 00000000..410e57c7
Binary files /dev/null and b/static/icons/06001953.png differ
diff --git a/static/icons/0600195B.png b/static/icons/0600195B.png
new file mode 100755
index 00000000..c136de33
Binary files /dev/null and b/static/icons/0600195B.png differ
diff --git a/static/icons/0600195C.png b/static/icons/0600195C.png
new file mode 100755
index 00000000..004716c6
Binary files /dev/null and b/static/icons/0600195C.png differ
diff --git a/static/icons/0600195D.png b/static/icons/0600195D.png
new file mode 100755
index 00000000..4f210e08
Binary files /dev/null and b/static/icons/0600195D.png differ
diff --git a/static/icons/0600195E.png b/static/icons/0600195E.png
new file mode 100755
index 00000000..11b00c06
Binary files /dev/null and b/static/icons/0600195E.png differ
diff --git a/static/icons/0600195F.png b/static/icons/0600195F.png
new file mode 100755
index 00000000..8965a394
Binary files /dev/null and b/static/icons/0600195F.png differ
diff --git a/static/icons/06001960.png b/static/icons/06001960.png
new file mode 100755
index 00000000..3add35ed
Binary files /dev/null and b/static/icons/06001960.png differ
diff --git a/static/icons/06001961.png b/static/icons/06001961.png
new file mode 100755
index 00000000..7be05eda
Binary files /dev/null and b/static/icons/06001961.png differ
diff --git a/static/icons/06001962.png b/static/icons/06001962.png
new file mode 100755
index 00000000..78c09eeb
Binary files /dev/null and b/static/icons/06001962.png differ
diff --git a/static/icons/06001963.png b/static/icons/06001963.png
new file mode 100755
index 00000000..0af68750
Binary files /dev/null and b/static/icons/06001963.png differ
diff --git a/static/icons/06001964.png b/static/icons/06001964.png
new file mode 100755
index 00000000..5ef1f39e
Binary files /dev/null and b/static/icons/06001964.png differ
diff --git a/static/icons/06001965.png b/static/icons/06001965.png
new file mode 100755
index 00000000..e21aa3e1
Binary files /dev/null and b/static/icons/06001965.png differ
diff --git a/static/icons/06001966.png b/static/icons/06001966.png
new file mode 100755
index 00000000..ff089a2b
Binary files /dev/null and b/static/icons/06001966.png differ
diff --git a/static/icons/06001967.png b/static/icons/06001967.png
new file mode 100755
index 00000000..2c469564
Binary files /dev/null and b/static/icons/06001967.png differ
diff --git a/static/icons/06001968.png b/static/icons/06001968.png
new file mode 100755
index 00000000..799911e7
Binary files /dev/null and b/static/icons/06001968.png differ
diff --git a/static/icons/06001969.png b/static/icons/06001969.png
new file mode 100755
index 00000000..8dea6234
Binary files /dev/null and b/static/icons/06001969.png differ
diff --git a/static/icons/0600196A.png b/static/icons/0600196A.png
new file mode 100755
index 00000000..70bc7cfb
Binary files /dev/null and b/static/icons/0600196A.png differ
diff --git a/static/icons/0600196B.png b/static/icons/0600196B.png
new file mode 100755
index 00000000..a57c4a41
Binary files /dev/null and b/static/icons/0600196B.png differ
diff --git a/static/icons/0600196C.png b/static/icons/0600196C.png
new file mode 100755
index 00000000..169b1b3a
Binary files /dev/null and b/static/icons/0600196C.png differ
diff --git a/static/icons/0600196D.png b/static/icons/0600196D.png
new file mode 100755
index 00000000..4e3afc33
Binary files /dev/null and b/static/icons/0600196D.png differ
diff --git a/static/icons/0600196E.png b/static/icons/0600196E.png
new file mode 100755
index 00000000..3a3ce445
Binary files /dev/null and b/static/icons/0600196E.png differ
diff --git a/static/icons/0600196F.png b/static/icons/0600196F.png
new file mode 100755
index 00000000..282cd209
Binary files /dev/null and b/static/icons/0600196F.png differ
diff --git a/static/icons/06001970.png b/static/icons/06001970.png
new file mode 100755
index 00000000..031e31a4
Binary files /dev/null and b/static/icons/06001970.png differ
diff --git a/static/icons/06001971.png b/static/icons/06001971.png
new file mode 100755
index 00000000..8d6eba42
Binary files /dev/null and b/static/icons/06001971.png differ
diff --git a/static/icons/06001972.png b/static/icons/06001972.png
new file mode 100755
index 00000000..9377b552
Binary files /dev/null and b/static/icons/06001972.png differ
diff --git a/static/icons/06001973.png b/static/icons/06001973.png
new file mode 100755
index 00000000..948743ab
Binary files /dev/null and b/static/icons/06001973.png differ
diff --git a/static/icons/06001974.png b/static/icons/06001974.png
new file mode 100755
index 00000000..6973c372
Binary files /dev/null and b/static/icons/06001974.png differ
diff --git a/static/icons/06001975.png b/static/icons/06001975.png
new file mode 100755
index 00000000..acd91faa
Binary files /dev/null and b/static/icons/06001975.png differ
diff --git a/static/icons/06001976.png b/static/icons/06001976.png
new file mode 100755
index 00000000..51fa8b0c
Binary files /dev/null and b/static/icons/06001976.png differ
diff --git a/static/icons/06001977.png b/static/icons/06001977.png
new file mode 100755
index 00000000..df73a64d
Binary files /dev/null and b/static/icons/06001977.png differ
diff --git a/static/icons/06001978.png b/static/icons/06001978.png
new file mode 100755
index 00000000..901c5d73
Binary files /dev/null and b/static/icons/06001978.png differ
diff --git a/static/icons/06001979.png b/static/icons/06001979.png
new file mode 100755
index 00000000..205f9a98
Binary files /dev/null and b/static/icons/06001979.png differ
diff --git a/static/icons/0600198B.png b/static/icons/0600198B.png
new file mode 100755
index 00000000..38135c79
Binary files /dev/null and b/static/icons/0600198B.png differ
diff --git a/static/icons/0600198C.png b/static/icons/0600198C.png
new file mode 100755
index 00000000..b1cc511b
Binary files /dev/null and b/static/icons/0600198C.png differ
diff --git a/static/icons/060019B1.png b/static/icons/060019B1.png
new file mode 100755
index 00000000..46bf79b3
Binary files /dev/null and b/static/icons/060019B1.png differ
diff --git a/static/icons/060019B2.png b/static/icons/060019B2.png
new file mode 100755
index 00000000..2bf419c1
Binary files /dev/null and b/static/icons/060019B2.png differ
diff --git a/static/icons/060019B4.png b/static/icons/060019B4.png
new file mode 100755
index 00000000..d4ddbfb5
Binary files /dev/null and b/static/icons/060019B4.png differ
diff --git a/static/icons/060019B5.png b/static/icons/060019B5.png
new file mode 100755
index 00000000..2ae6775c
Binary files /dev/null and b/static/icons/060019B5.png differ
diff --git a/static/icons/060019E4.png b/static/icons/060019E4.png
new file mode 100755
index 00000000..138584b5
Binary files /dev/null and b/static/icons/060019E4.png differ
diff --git a/static/icons/060019EC.png b/static/icons/060019EC.png
new file mode 100755
index 00000000..f0f6887f
Binary files /dev/null and b/static/icons/060019EC.png differ
diff --git a/static/icons/060019ED.png b/static/icons/060019ED.png
new file mode 100755
index 00000000..a65f6517
Binary files /dev/null and b/static/icons/060019ED.png differ
diff --git a/static/icons/060019EE.png b/static/icons/060019EE.png
new file mode 100755
index 00000000..a491aa51
Binary files /dev/null and b/static/icons/060019EE.png differ
diff --git a/static/icons/060019EF.png b/static/icons/060019EF.png
new file mode 100755
index 00000000..e1801e3d
Binary files /dev/null and b/static/icons/060019EF.png differ
diff --git a/static/icons/060019F0.png b/static/icons/060019F0.png
new file mode 100755
index 00000000..cfa30cd3
Binary files /dev/null and b/static/icons/060019F0.png differ
diff --git a/static/icons/060019F1.png b/static/icons/060019F1.png
new file mode 100755
index 00000000..cbec6577
Binary files /dev/null and b/static/icons/060019F1.png differ
diff --git a/static/icons/060019F2.png b/static/icons/060019F2.png
new file mode 100755
index 00000000..358cfbfb
Binary files /dev/null and b/static/icons/060019F2.png differ
diff --git a/static/icons/060019F3.png b/static/icons/060019F3.png
new file mode 100755
index 00000000..cfbdad1f
Binary files /dev/null and b/static/icons/060019F3.png differ
diff --git a/static/icons/060019F4.png b/static/icons/060019F4.png
new file mode 100755
index 00000000..6ac39dcd
Binary files /dev/null and b/static/icons/060019F4.png differ
diff --git a/static/icons/060019F5.png b/static/icons/060019F5.png
new file mode 100755
index 00000000..89e6912f
Binary files /dev/null and b/static/icons/060019F5.png differ
diff --git a/static/icons/060019F6.png b/static/icons/060019F6.png
new file mode 100755
index 00000000..a5ae20f9
Binary files /dev/null and b/static/icons/060019F6.png differ
diff --git a/static/icons/060019F7.png b/static/icons/060019F7.png
new file mode 100755
index 00000000..2a5aa1c4
Binary files /dev/null and b/static/icons/060019F7.png differ
diff --git a/static/icons/060019F8.png b/static/icons/060019F8.png
new file mode 100755
index 00000000..bad7b488
Binary files /dev/null and b/static/icons/060019F8.png differ
diff --git a/static/icons/060019F9.png b/static/icons/060019F9.png
new file mode 100755
index 00000000..00eb74f8
Binary files /dev/null and b/static/icons/060019F9.png differ
diff --git a/static/icons/060019FA.png b/static/icons/060019FA.png
new file mode 100755
index 00000000..9ef74782
Binary files /dev/null and b/static/icons/060019FA.png differ
diff --git a/static/icons/060019FB.png b/static/icons/060019FB.png
new file mode 100755
index 00000000..d8c72454
Binary files /dev/null and b/static/icons/060019FB.png differ
diff --git a/static/icons/060019FC.png b/static/icons/060019FC.png
new file mode 100755
index 00000000..2eb3c196
Binary files /dev/null and b/static/icons/060019FC.png differ
diff --git a/static/icons/060019FD.png b/static/icons/060019FD.png
new file mode 100755
index 00000000..86259181
Binary files /dev/null and b/static/icons/060019FD.png differ
diff --git a/static/icons/060019FE.png b/static/icons/060019FE.png
new file mode 100755
index 00000000..f92c3c3b
Binary files /dev/null and b/static/icons/060019FE.png differ
diff --git a/static/icons/060019FF.png b/static/icons/060019FF.png
new file mode 100755
index 00000000..1038b22b
Binary files /dev/null and b/static/icons/060019FF.png differ
diff --git a/static/icons/06001A00.png b/static/icons/06001A00.png
new file mode 100755
index 00000000..2acf1ed4
Binary files /dev/null and b/static/icons/06001A00.png differ
diff --git a/static/icons/06001A01.png b/static/icons/06001A01.png
new file mode 100755
index 00000000..b0e54426
Binary files /dev/null and b/static/icons/06001A01.png differ
diff --git a/static/icons/06001A02.png b/static/icons/06001A02.png
new file mode 100755
index 00000000..b4d2ce9a
Binary files /dev/null and b/static/icons/06001A02.png differ
diff --git a/static/icons/06001A03.png b/static/icons/06001A03.png
new file mode 100755
index 00000000..75a286bc
Binary files /dev/null and b/static/icons/06001A03.png differ
diff --git a/static/icons/06001A04.png b/static/icons/06001A04.png
new file mode 100755
index 00000000..e173b7d7
Binary files /dev/null and b/static/icons/06001A04.png differ
diff --git a/static/icons/06001A05.png b/static/icons/06001A05.png
new file mode 100755
index 00000000..d885fa24
Binary files /dev/null and b/static/icons/06001A05.png differ
diff --git a/static/icons/06001A06.png b/static/icons/06001A06.png
new file mode 100755
index 00000000..0e2e183f
Binary files /dev/null and b/static/icons/06001A06.png differ
diff --git a/static/icons/06001A07.png b/static/icons/06001A07.png
new file mode 100755
index 00000000..3803922c
Binary files /dev/null and b/static/icons/06001A07.png differ
diff --git a/static/icons/06001A08.png b/static/icons/06001A08.png
new file mode 100755
index 00000000..eb20febc
Binary files /dev/null and b/static/icons/06001A08.png differ
diff --git a/static/icons/06001A09.png b/static/icons/06001A09.png
new file mode 100755
index 00000000..796793ed
Binary files /dev/null and b/static/icons/06001A09.png differ
diff --git a/static/icons/06001A0B.png b/static/icons/06001A0B.png
new file mode 100755
index 00000000..7304747b
Binary files /dev/null and b/static/icons/06001A0B.png differ
diff --git a/static/icons/06001A0C.png b/static/icons/06001A0C.png
new file mode 100755
index 00000000..d26d62f1
Binary files /dev/null and b/static/icons/06001A0C.png differ
diff --git a/static/icons/06001A0D.png b/static/icons/06001A0D.png
new file mode 100755
index 00000000..d0308348
Binary files /dev/null and b/static/icons/06001A0D.png differ
diff --git a/static/icons/06001A0E.png b/static/icons/06001A0E.png
new file mode 100755
index 00000000..a58e9750
Binary files /dev/null and b/static/icons/06001A0E.png differ
diff --git a/static/icons/06001A0F.png b/static/icons/06001A0F.png
new file mode 100755
index 00000000..2fa106e7
Binary files /dev/null and b/static/icons/06001A0F.png differ
diff --git a/static/icons/06001A10.png b/static/icons/06001A10.png
new file mode 100755
index 00000000..412fb91e
Binary files /dev/null and b/static/icons/06001A10.png differ
diff --git a/static/icons/06001A11.png b/static/icons/06001A11.png
new file mode 100755
index 00000000..665372ab
Binary files /dev/null and b/static/icons/06001A11.png differ
diff --git a/static/icons/06001A12.png b/static/icons/06001A12.png
new file mode 100755
index 00000000..f9e4a7bc
Binary files /dev/null and b/static/icons/06001A12.png differ
diff --git a/static/icons/06001A13.png b/static/icons/06001A13.png
new file mode 100755
index 00000000..a06ad464
Binary files /dev/null and b/static/icons/06001A13.png differ
diff --git a/static/icons/06001A14.png b/static/icons/06001A14.png
new file mode 100755
index 00000000..2ce09712
Binary files /dev/null and b/static/icons/06001A14.png differ
diff --git a/static/icons/06001A26.png b/static/icons/06001A26.png
new file mode 100755
index 00000000..86dc1de8
Binary files /dev/null and b/static/icons/06001A26.png differ
diff --git a/static/icons/06001A27.png b/static/icons/06001A27.png
new file mode 100755
index 00000000..abc68723
Binary files /dev/null and b/static/icons/06001A27.png differ
diff --git a/static/icons/06001A28.png b/static/icons/06001A28.png
new file mode 100755
index 00000000..11a7f23a
Binary files /dev/null and b/static/icons/06001A28.png differ
diff --git a/static/icons/06001A29.png b/static/icons/06001A29.png
new file mode 100755
index 00000000..787bdf52
Binary files /dev/null and b/static/icons/06001A29.png differ
diff --git a/static/icons/06001A2A.png b/static/icons/06001A2A.png
new file mode 100755
index 00000000..d30d420d
Binary files /dev/null and b/static/icons/06001A2A.png differ
diff --git a/static/icons/06001A2B.png b/static/icons/06001A2B.png
new file mode 100755
index 00000000..5bc39e1e
Binary files /dev/null and b/static/icons/06001A2B.png differ
diff --git a/static/icons/06001A2C.png b/static/icons/06001A2C.png
new file mode 100755
index 00000000..7d6e9ff5
Binary files /dev/null and b/static/icons/06001A2C.png differ
diff --git a/static/icons/06001A2D.png b/static/icons/06001A2D.png
new file mode 100755
index 00000000..24b8191a
Binary files /dev/null and b/static/icons/06001A2D.png differ
diff --git a/static/icons/06001A2E.png b/static/icons/06001A2E.png
new file mode 100755
index 00000000..611a80c3
Binary files /dev/null and b/static/icons/06001A2E.png differ
diff --git a/static/icons/06001A2F.png b/static/icons/06001A2F.png
new file mode 100755
index 00000000..c4cf0eab
Binary files /dev/null and b/static/icons/06001A2F.png differ
diff --git a/static/icons/06001A30.png b/static/icons/06001A30.png
new file mode 100755
index 00000000..18b3a2be
Binary files /dev/null and b/static/icons/06001A30.png differ
diff --git a/static/icons/06001A31.png b/static/icons/06001A31.png
new file mode 100755
index 00000000..b5f9c306
Binary files /dev/null and b/static/icons/06001A31.png differ
diff --git a/static/icons/06001A32.png b/static/icons/06001A32.png
new file mode 100755
index 00000000..b1389855
Binary files /dev/null and b/static/icons/06001A32.png differ
diff --git a/static/icons/06001A33.png b/static/icons/06001A33.png
new file mode 100755
index 00000000..14a780ba
Binary files /dev/null and b/static/icons/06001A33.png differ
diff --git a/static/icons/06001A34.png b/static/icons/06001A34.png
new file mode 100755
index 00000000..5606b4af
Binary files /dev/null and b/static/icons/06001A34.png differ
diff --git a/static/icons/06001A35.png b/static/icons/06001A35.png
new file mode 100755
index 00000000..045008dd
Binary files /dev/null and b/static/icons/06001A35.png differ
diff --git a/static/icons/06001A36.png b/static/icons/06001A36.png
new file mode 100755
index 00000000..d29cc210
Binary files /dev/null and b/static/icons/06001A36.png differ
diff --git a/static/icons/06001A37.png b/static/icons/06001A37.png
new file mode 100755
index 00000000..5e7f3579
Binary files /dev/null and b/static/icons/06001A37.png differ
diff --git a/static/icons/06001A38.png b/static/icons/06001A38.png
new file mode 100755
index 00000000..98167bae
Binary files /dev/null and b/static/icons/06001A38.png differ
diff --git a/static/icons/06001A39.png b/static/icons/06001A39.png
new file mode 100755
index 00000000..9dd3880c
Binary files /dev/null and b/static/icons/06001A39.png differ
diff --git a/static/icons/06001A3A.png b/static/icons/06001A3A.png
new file mode 100755
index 00000000..fa5d614f
Binary files /dev/null and b/static/icons/06001A3A.png differ
diff --git a/static/icons/06001A3B.png b/static/icons/06001A3B.png
new file mode 100755
index 00000000..667b4323
Binary files /dev/null and b/static/icons/06001A3B.png differ
diff --git a/static/icons/06001A3C.png b/static/icons/06001A3C.png
new file mode 100755
index 00000000..189d7215
Binary files /dev/null and b/static/icons/06001A3C.png differ
diff --git a/static/icons/06001A3D.png b/static/icons/06001A3D.png
new file mode 100755
index 00000000..1f3d4006
Binary files /dev/null and b/static/icons/06001A3D.png differ
diff --git a/static/icons/06001A3E.png b/static/icons/06001A3E.png
new file mode 100755
index 00000000..b0b47220
Binary files /dev/null and b/static/icons/06001A3E.png differ
diff --git a/static/icons/06001A3F.png b/static/icons/06001A3F.png
new file mode 100755
index 00000000..c9d8c54d
Binary files /dev/null and b/static/icons/06001A3F.png differ
diff --git a/static/icons/06001A40.png b/static/icons/06001A40.png
new file mode 100755
index 00000000..435c7f24
Binary files /dev/null and b/static/icons/06001A40.png differ
diff --git a/static/icons/06001A41.png b/static/icons/06001A41.png
new file mode 100755
index 00000000..ff47ad58
Binary files /dev/null and b/static/icons/06001A41.png differ
diff --git a/static/icons/06001A42.png b/static/icons/06001A42.png
new file mode 100755
index 00000000..b7023714
Binary files /dev/null and b/static/icons/06001A42.png differ
diff --git a/static/icons/06001A43.png b/static/icons/06001A43.png
new file mode 100755
index 00000000..f562cac0
Binary files /dev/null and b/static/icons/06001A43.png differ
diff --git a/static/icons/06001A44.png b/static/icons/06001A44.png
new file mode 100755
index 00000000..934a779b
Binary files /dev/null and b/static/icons/06001A44.png differ
diff --git a/static/icons/06001A45.png b/static/icons/06001A45.png
new file mode 100755
index 00000000..e51e7b3f
Binary files /dev/null and b/static/icons/06001A45.png differ
diff --git a/static/icons/06001A46.png b/static/icons/06001A46.png
new file mode 100755
index 00000000..5a9c1b2d
Binary files /dev/null and b/static/icons/06001A46.png differ
diff --git a/static/icons/06001A47.png b/static/icons/06001A47.png
new file mode 100755
index 00000000..2b111cf6
Binary files /dev/null and b/static/icons/06001A47.png differ
diff --git a/static/icons/06001A48.png b/static/icons/06001A48.png
new file mode 100755
index 00000000..bbc54dc6
Binary files /dev/null and b/static/icons/06001A48.png differ
diff --git a/static/icons/06001A49.png b/static/icons/06001A49.png
new file mode 100755
index 00000000..03b254ce
Binary files /dev/null and b/static/icons/06001A49.png differ
diff --git a/static/icons/06001A4A.png b/static/icons/06001A4A.png
new file mode 100755
index 00000000..38cdfa8b
Binary files /dev/null and b/static/icons/06001A4A.png differ
diff --git a/static/icons/06001A4B.png b/static/icons/06001A4B.png
new file mode 100755
index 00000000..b451e60b
Binary files /dev/null and b/static/icons/06001A4B.png differ
diff --git a/static/icons/06001A4C.png b/static/icons/06001A4C.png
new file mode 100755
index 00000000..e1406aac
Binary files /dev/null and b/static/icons/06001A4C.png differ
diff --git a/static/icons/06001A4D.png b/static/icons/06001A4D.png
new file mode 100755
index 00000000..9ad04f09
Binary files /dev/null and b/static/icons/06001A4D.png differ
diff --git a/static/icons/06001A4E.png b/static/icons/06001A4E.png
new file mode 100755
index 00000000..1aabb503
Binary files /dev/null and b/static/icons/06001A4E.png differ
diff --git a/static/icons/06001A4F.png b/static/icons/06001A4F.png
new file mode 100755
index 00000000..7d9f9f8d
Binary files /dev/null and b/static/icons/06001A4F.png differ
diff --git a/static/icons/06001A50.png b/static/icons/06001A50.png
new file mode 100755
index 00000000..9b9bea97
Binary files /dev/null and b/static/icons/06001A50.png differ
diff --git a/static/icons/06001A51.png b/static/icons/06001A51.png
new file mode 100755
index 00000000..fa0294e2
Binary files /dev/null and b/static/icons/06001A51.png differ
diff --git a/static/icons/06001A52.png b/static/icons/06001A52.png
new file mode 100755
index 00000000..f448c276
Binary files /dev/null and b/static/icons/06001A52.png differ
diff --git a/static/icons/06001A53.png b/static/icons/06001A53.png
new file mode 100755
index 00000000..7bbcf3d7
Binary files /dev/null and b/static/icons/06001A53.png differ
diff --git a/static/icons/06001A54.png b/static/icons/06001A54.png
new file mode 100755
index 00000000..4f7f12a1
Binary files /dev/null and b/static/icons/06001A54.png differ
diff --git a/static/icons/06001A55.png b/static/icons/06001A55.png
new file mode 100755
index 00000000..d4f6878e
Binary files /dev/null and b/static/icons/06001A55.png differ
diff --git a/static/icons/06001A56.png b/static/icons/06001A56.png
new file mode 100755
index 00000000..1ca92dee
Binary files /dev/null and b/static/icons/06001A56.png differ
diff --git a/static/icons/06001A57.png b/static/icons/06001A57.png
new file mode 100755
index 00000000..43a8045f
Binary files /dev/null and b/static/icons/06001A57.png differ
diff --git a/static/icons/06001A58.png b/static/icons/06001A58.png
new file mode 100755
index 00000000..a6b64909
Binary files /dev/null and b/static/icons/06001A58.png differ
diff --git a/static/icons/06001A59.png b/static/icons/06001A59.png
new file mode 100755
index 00000000..9b97fcd5
Binary files /dev/null and b/static/icons/06001A59.png differ
diff --git a/static/icons/06001A5A.png b/static/icons/06001A5A.png
new file mode 100755
index 00000000..b18270b3
Binary files /dev/null and b/static/icons/06001A5A.png differ
diff --git a/static/icons/06001A5B.png b/static/icons/06001A5B.png
new file mode 100755
index 00000000..d14439c4
Binary files /dev/null and b/static/icons/06001A5B.png differ
diff --git a/static/icons/06001A5C.png b/static/icons/06001A5C.png
new file mode 100755
index 00000000..8c2dca4c
Binary files /dev/null and b/static/icons/06001A5C.png differ
diff --git a/static/icons/06001A5D.png b/static/icons/06001A5D.png
new file mode 100755
index 00000000..c98ec3ff
Binary files /dev/null and b/static/icons/06001A5D.png differ
diff --git a/static/icons/06001A5E.png b/static/icons/06001A5E.png
new file mode 100755
index 00000000..a1c0e08f
Binary files /dev/null and b/static/icons/06001A5E.png differ
diff --git a/static/icons/06001A5F.png b/static/icons/06001A5F.png
new file mode 100755
index 00000000..089f92ea
Binary files /dev/null and b/static/icons/06001A5F.png differ
diff --git a/static/icons/06001A63.png b/static/icons/06001A63.png
new file mode 100755
index 00000000..186e6b50
Binary files /dev/null and b/static/icons/06001A63.png differ
diff --git a/static/icons/06001A64.png b/static/icons/06001A64.png
new file mode 100755
index 00000000..7604c463
Binary files /dev/null and b/static/icons/06001A64.png differ
diff --git a/static/icons/06001A65.png b/static/icons/06001A65.png
new file mode 100755
index 00000000..64503f88
Binary files /dev/null and b/static/icons/06001A65.png differ
diff --git a/static/icons/06001A66.png b/static/icons/06001A66.png
new file mode 100755
index 00000000..673ecd1d
Binary files /dev/null and b/static/icons/06001A66.png differ
diff --git a/static/icons/06001A67.png b/static/icons/06001A67.png
new file mode 100755
index 00000000..eed1b515
Binary files /dev/null and b/static/icons/06001A67.png differ
diff --git a/static/icons/06001A68.png b/static/icons/06001A68.png
new file mode 100755
index 00000000..03db4449
Binary files /dev/null and b/static/icons/06001A68.png differ
diff --git a/static/icons/06001A69.png b/static/icons/06001A69.png
new file mode 100755
index 00000000..6e21d857
Binary files /dev/null and b/static/icons/06001A69.png differ
diff --git a/static/icons/06001A6A.png b/static/icons/06001A6A.png
new file mode 100755
index 00000000..6e6c0f9c
Binary files /dev/null and b/static/icons/06001A6A.png differ
diff --git a/static/icons/06001A6B.png b/static/icons/06001A6B.png
new file mode 100755
index 00000000..b9eb6599
Binary files /dev/null and b/static/icons/06001A6B.png differ
diff --git a/static/icons/06001A6C.png b/static/icons/06001A6C.png
new file mode 100755
index 00000000..e16915cd
Binary files /dev/null and b/static/icons/06001A6C.png differ
diff --git a/static/icons/06001A6D.png b/static/icons/06001A6D.png
new file mode 100755
index 00000000..b617453f
Binary files /dev/null and b/static/icons/06001A6D.png differ
diff --git a/static/icons/06001A6E.png b/static/icons/06001A6E.png
new file mode 100755
index 00000000..a93847ce
Binary files /dev/null and b/static/icons/06001A6E.png differ
diff --git a/static/icons/06001A6F.png b/static/icons/06001A6F.png
new file mode 100755
index 00000000..d2d0b739
Binary files /dev/null and b/static/icons/06001A6F.png differ
diff --git a/static/icons/06001A70.png b/static/icons/06001A70.png
new file mode 100755
index 00000000..0bc070a2
Binary files /dev/null and b/static/icons/06001A70.png differ
diff --git a/static/icons/06001A71.png b/static/icons/06001A71.png
new file mode 100755
index 00000000..60467f39
Binary files /dev/null and b/static/icons/06001A71.png differ
diff --git a/static/icons/06001A72.png b/static/icons/06001A72.png
new file mode 100755
index 00000000..c618b929
Binary files /dev/null and b/static/icons/06001A72.png differ
diff --git a/static/icons/06001A73.png b/static/icons/06001A73.png
new file mode 100755
index 00000000..607c9f74
Binary files /dev/null and b/static/icons/06001A73.png differ
diff --git a/static/icons/06001A74.png b/static/icons/06001A74.png
new file mode 100755
index 00000000..315ede67
Binary files /dev/null and b/static/icons/06001A74.png differ
diff --git a/static/icons/06001A75.png b/static/icons/06001A75.png
new file mode 100755
index 00000000..2213a304
Binary files /dev/null and b/static/icons/06001A75.png differ
diff --git a/static/icons/06001A76.png b/static/icons/06001A76.png
new file mode 100755
index 00000000..5a92217a
Binary files /dev/null and b/static/icons/06001A76.png differ
diff --git a/static/icons/06001A77.png b/static/icons/06001A77.png
new file mode 100755
index 00000000..ab28e025
Binary files /dev/null and b/static/icons/06001A77.png differ
diff --git a/static/icons/06001A78.png b/static/icons/06001A78.png
new file mode 100755
index 00000000..a3726095
Binary files /dev/null and b/static/icons/06001A78.png differ
diff --git a/static/icons/06001A79.png b/static/icons/06001A79.png
new file mode 100755
index 00000000..638b24a0
Binary files /dev/null and b/static/icons/06001A79.png differ
diff --git a/static/icons/06001A7A.png b/static/icons/06001A7A.png
new file mode 100755
index 00000000..42a7862c
Binary files /dev/null and b/static/icons/06001A7A.png differ
diff --git a/static/icons/06001A7E.png b/static/icons/06001A7E.png
new file mode 100755
index 00000000..f1ec6642
Binary files /dev/null and b/static/icons/06001A7E.png differ
diff --git a/static/icons/06001A7F.png b/static/icons/06001A7F.png
new file mode 100755
index 00000000..f11c438d
Binary files /dev/null and b/static/icons/06001A7F.png differ
diff --git a/static/icons/06001A80.png b/static/icons/06001A80.png
new file mode 100755
index 00000000..0d932467
Binary files /dev/null and b/static/icons/06001A80.png differ
diff --git a/static/icons/06001A81.png b/static/icons/06001A81.png
new file mode 100755
index 00000000..ece3c632
Binary files /dev/null and b/static/icons/06001A81.png differ
diff --git a/static/icons/06001A82.png b/static/icons/06001A82.png
new file mode 100755
index 00000000..d8550754
Binary files /dev/null and b/static/icons/06001A82.png differ
diff --git a/static/icons/06001A83.png b/static/icons/06001A83.png
new file mode 100755
index 00000000..b973855a
Binary files /dev/null and b/static/icons/06001A83.png differ
diff --git a/static/icons/06001A84.png b/static/icons/06001A84.png
new file mode 100755
index 00000000..29f37dc6
Binary files /dev/null and b/static/icons/06001A84.png differ
diff --git a/static/icons/06001A85.png b/static/icons/06001A85.png
new file mode 100755
index 00000000..a51b2db6
Binary files /dev/null and b/static/icons/06001A85.png differ
diff --git a/static/icons/06001A86.png b/static/icons/06001A86.png
new file mode 100755
index 00000000..06dcb583
Binary files /dev/null and b/static/icons/06001A86.png differ
diff --git a/static/icons/06001A87.png b/static/icons/06001A87.png
new file mode 100755
index 00000000..df43e435
Binary files /dev/null and b/static/icons/06001A87.png differ
diff --git a/static/icons/06001A88.png b/static/icons/06001A88.png
new file mode 100755
index 00000000..4ee6296a
Binary files /dev/null and b/static/icons/06001A88.png differ
diff --git a/static/icons/06001A89.png b/static/icons/06001A89.png
new file mode 100755
index 00000000..f46c7059
Binary files /dev/null and b/static/icons/06001A89.png differ
diff --git a/static/icons/06001A8A.png b/static/icons/06001A8A.png
new file mode 100755
index 00000000..e64d047d
Binary files /dev/null and b/static/icons/06001A8A.png differ
diff --git a/static/icons/06001A8B.png b/static/icons/06001A8B.png
new file mode 100755
index 00000000..c217a305
Binary files /dev/null and b/static/icons/06001A8B.png differ
diff --git a/static/icons/06001A97.png b/static/icons/06001A97.png
new file mode 100755
index 00000000..e390bbb8
Binary files /dev/null and b/static/icons/06001A97.png differ
diff --git a/static/icons/06001AA4.png b/static/icons/06001AA4.png
new file mode 100755
index 00000000..75a1b173
Binary files /dev/null and b/static/icons/06001AA4.png differ
diff --git a/static/icons/06001AAF.png b/static/icons/06001AAF.png
new file mode 100755
index 00000000..5c62f4f0
Binary files /dev/null and b/static/icons/06001AAF.png differ
diff --git a/static/icons/06001AB0.png b/static/icons/06001AB0.png
new file mode 100755
index 00000000..c21acdc4
Binary files /dev/null and b/static/icons/06001AB0.png differ
diff --git a/static/icons/06001AB1.png b/static/icons/06001AB1.png
new file mode 100755
index 00000000..b71d745b
Binary files /dev/null and b/static/icons/06001AB1.png differ
diff --git a/static/icons/06001AB2.png b/static/icons/06001AB2.png
new file mode 100755
index 00000000..99737733
Binary files /dev/null and b/static/icons/06001AB2.png differ
diff --git a/static/icons/06001AB3.png b/static/icons/06001AB3.png
new file mode 100755
index 00000000..3e32725b
Binary files /dev/null and b/static/icons/06001AB3.png differ
diff --git a/static/icons/06001AB4.png b/static/icons/06001AB4.png
new file mode 100755
index 00000000..994b02e9
Binary files /dev/null and b/static/icons/06001AB4.png differ
diff --git a/static/icons/06001AB5.png b/static/icons/06001AB5.png
new file mode 100755
index 00000000..eaba6206
Binary files /dev/null and b/static/icons/06001AB5.png differ
diff --git a/static/icons/06001AB7.png b/static/icons/06001AB7.png
new file mode 100755
index 00000000..b3895776
Binary files /dev/null and b/static/icons/06001AB7.png differ
diff --git a/static/icons/06001AB8.png b/static/icons/06001AB8.png
new file mode 100755
index 00000000..9095784a
Binary files /dev/null and b/static/icons/06001AB8.png differ
diff --git a/static/icons/06001AB9.png b/static/icons/06001AB9.png
new file mode 100755
index 00000000..787299ef
Binary files /dev/null and b/static/icons/06001AB9.png differ
diff --git a/static/icons/06001ABA.png b/static/icons/06001ABA.png
new file mode 100755
index 00000000..7ebc1d83
Binary files /dev/null and b/static/icons/06001ABA.png differ
diff --git a/static/icons/06001ABB.png b/static/icons/06001ABB.png
new file mode 100755
index 00000000..f5ca7520
Binary files /dev/null and b/static/icons/06001ABB.png differ
diff --git a/static/icons/06001ABC.png b/static/icons/06001ABC.png
new file mode 100755
index 00000000..01f940ee
Binary files /dev/null and b/static/icons/06001ABC.png differ
diff --git a/static/icons/06001ABD.png b/static/icons/06001ABD.png
new file mode 100755
index 00000000..060a42b7
Binary files /dev/null and b/static/icons/06001ABD.png differ
diff --git a/static/icons/06001ABE.png b/static/icons/06001ABE.png
new file mode 100755
index 00000000..39a6a7ba
Binary files /dev/null and b/static/icons/06001ABE.png differ
diff --git a/static/icons/06001ABF.png b/static/icons/06001ABF.png
new file mode 100755
index 00000000..425a7f87
Binary files /dev/null and b/static/icons/06001ABF.png differ
diff --git a/static/icons/06001AC0.png b/static/icons/06001AC0.png
new file mode 100755
index 00000000..44fba526
Binary files /dev/null and b/static/icons/06001AC0.png differ
diff --git a/static/icons/06001AC1.png b/static/icons/06001AC1.png
new file mode 100755
index 00000000..7027937f
Binary files /dev/null and b/static/icons/06001AC1.png differ
diff --git a/static/icons/06001AC2.png b/static/icons/06001AC2.png
new file mode 100755
index 00000000..cc1d182c
Binary files /dev/null and b/static/icons/06001AC2.png differ
diff --git a/static/icons/06001AC3.png b/static/icons/06001AC3.png
new file mode 100755
index 00000000..9367602e
Binary files /dev/null and b/static/icons/06001AC3.png differ
diff --git a/static/icons/06001AC4.png b/static/icons/06001AC4.png
new file mode 100755
index 00000000..07d63dee
Binary files /dev/null and b/static/icons/06001AC4.png differ
diff --git a/static/icons/06001AC5.png b/static/icons/06001AC5.png
new file mode 100755
index 00000000..3dd1cdc7
Binary files /dev/null and b/static/icons/06001AC5.png differ
diff --git a/static/icons/06001AC6.png b/static/icons/06001AC6.png
new file mode 100755
index 00000000..0fbddc0b
Binary files /dev/null and b/static/icons/06001AC6.png differ
diff --git a/static/icons/06001AC7.png b/static/icons/06001AC7.png
new file mode 100755
index 00000000..a66c5051
Binary files /dev/null and b/static/icons/06001AC7.png differ
diff --git a/static/icons/06001AC8.png b/static/icons/06001AC8.png
new file mode 100755
index 00000000..a2a8b569
Binary files /dev/null and b/static/icons/06001AC8.png differ
diff --git a/static/icons/06001AC9.png b/static/icons/06001AC9.png
new file mode 100755
index 00000000..3a99323f
Binary files /dev/null and b/static/icons/06001AC9.png differ
diff --git a/static/icons/06001ACA.png b/static/icons/06001ACA.png
new file mode 100755
index 00000000..e8757982
Binary files /dev/null and b/static/icons/06001ACA.png differ
diff --git a/static/icons/06001ACC.png b/static/icons/06001ACC.png
new file mode 100755
index 00000000..b810719a
Binary files /dev/null and b/static/icons/06001ACC.png differ
diff --git a/static/icons/06001ACD.png b/static/icons/06001ACD.png
new file mode 100755
index 00000000..347898f0
Binary files /dev/null and b/static/icons/06001ACD.png differ
diff --git a/static/icons/06001ACE.png b/static/icons/06001ACE.png
new file mode 100755
index 00000000..7f3cf996
Binary files /dev/null and b/static/icons/06001ACE.png differ
diff --git a/static/icons/06001ACF.png b/static/icons/06001ACF.png
new file mode 100755
index 00000000..a5f0e389
Binary files /dev/null and b/static/icons/06001ACF.png differ
diff --git a/static/icons/06001AD0.png b/static/icons/06001AD0.png
new file mode 100755
index 00000000..78521f19
Binary files /dev/null and b/static/icons/06001AD0.png differ
diff --git a/static/icons/06001AD1.png b/static/icons/06001AD1.png
new file mode 100755
index 00000000..ad66aeb2
Binary files /dev/null and b/static/icons/06001AD1.png differ
diff --git a/static/icons/06001AD2.png b/static/icons/06001AD2.png
new file mode 100755
index 00000000..d101bdc3
Binary files /dev/null and b/static/icons/06001AD2.png differ
diff --git a/static/icons/06001AD3.png b/static/icons/06001AD3.png
new file mode 100755
index 00000000..e42c4ad7
Binary files /dev/null and b/static/icons/06001AD3.png differ
diff --git a/static/icons/06001AD4.png b/static/icons/06001AD4.png
new file mode 100755
index 00000000..5379b15f
Binary files /dev/null and b/static/icons/06001AD4.png differ
diff --git a/static/icons/06001AD5.png b/static/icons/06001AD5.png
new file mode 100755
index 00000000..4b493556
Binary files /dev/null and b/static/icons/06001AD5.png differ
diff --git a/static/icons/06001AD6.png b/static/icons/06001AD6.png
new file mode 100755
index 00000000..eb3b8456
Binary files /dev/null and b/static/icons/06001AD6.png differ
diff --git a/static/icons/06001AD7.png b/static/icons/06001AD7.png
new file mode 100755
index 00000000..3c37b930
Binary files /dev/null and b/static/icons/06001AD7.png differ
diff --git a/static/icons/06001AD8.png b/static/icons/06001AD8.png
new file mode 100755
index 00000000..4808d0e6
Binary files /dev/null and b/static/icons/06001AD8.png differ
diff --git a/static/icons/06001AD9.png b/static/icons/06001AD9.png
new file mode 100755
index 00000000..88f439e5
Binary files /dev/null and b/static/icons/06001AD9.png differ
diff --git a/static/icons/06001ADA.png b/static/icons/06001ADA.png
new file mode 100755
index 00000000..dcdf0faa
Binary files /dev/null and b/static/icons/06001ADA.png differ
diff --git a/static/icons/06001ADB.png b/static/icons/06001ADB.png
new file mode 100755
index 00000000..9dad8a75
Binary files /dev/null and b/static/icons/06001ADB.png differ
diff --git a/static/icons/06001ADC.png b/static/icons/06001ADC.png
new file mode 100755
index 00000000..b69f54b6
Binary files /dev/null and b/static/icons/06001ADC.png differ
diff --git a/static/icons/06001ADD.png b/static/icons/06001ADD.png
new file mode 100755
index 00000000..3978ce92
Binary files /dev/null and b/static/icons/06001ADD.png differ
diff --git a/static/icons/06001ADE.png b/static/icons/06001ADE.png
new file mode 100755
index 00000000..e1682eda
Binary files /dev/null and b/static/icons/06001ADE.png differ
diff --git a/static/icons/06001ADF.png b/static/icons/06001ADF.png
new file mode 100755
index 00000000..daa2084c
Binary files /dev/null and b/static/icons/06001ADF.png differ
diff --git a/static/icons/06001AE0.png b/static/icons/06001AE0.png
new file mode 100755
index 00000000..2c34bf0b
Binary files /dev/null and b/static/icons/06001AE0.png differ
diff --git a/static/icons/06001AE1.png b/static/icons/06001AE1.png
new file mode 100755
index 00000000..d425dec4
Binary files /dev/null and b/static/icons/06001AE1.png differ
diff --git a/static/icons/06001AE2.png b/static/icons/06001AE2.png
new file mode 100755
index 00000000..1e4dceea
Binary files /dev/null and b/static/icons/06001AE2.png differ
diff --git a/static/icons/06001AE3.png b/static/icons/06001AE3.png
new file mode 100755
index 00000000..823dc137
Binary files /dev/null and b/static/icons/06001AE3.png differ
diff --git a/static/icons/06001AE4.png b/static/icons/06001AE4.png
new file mode 100755
index 00000000..138684cd
Binary files /dev/null and b/static/icons/06001AE4.png differ
diff --git a/static/icons/06001AE5.png b/static/icons/06001AE5.png
new file mode 100755
index 00000000..4873d849
Binary files /dev/null and b/static/icons/06001AE5.png differ
diff --git a/static/icons/06001AE6.png b/static/icons/06001AE6.png
new file mode 100755
index 00000000..d6e7b2a9
Binary files /dev/null and b/static/icons/06001AE6.png differ
diff --git a/static/icons/06001AE7.png b/static/icons/06001AE7.png
new file mode 100755
index 00000000..3222b027
Binary files /dev/null and b/static/icons/06001AE7.png differ
diff --git a/static/icons/06001AE8.png b/static/icons/06001AE8.png
new file mode 100755
index 00000000..a71aeabc
Binary files /dev/null and b/static/icons/06001AE8.png differ
diff --git a/static/icons/06001AE9.png b/static/icons/06001AE9.png
new file mode 100755
index 00000000..07dcd980
Binary files /dev/null and b/static/icons/06001AE9.png differ
diff --git a/static/icons/06001AEA.png b/static/icons/06001AEA.png
new file mode 100755
index 00000000..c207af0b
Binary files /dev/null and b/static/icons/06001AEA.png differ
diff --git a/static/icons/06001AEB.png b/static/icons/06001AEB.png
new file mode 100755
index 00000000..b00f3346
Binary files /dev/null and b/static/icons/06001AEB.png differ
diff --git a/static/icons/06001AEC.png b/static/icons/06001AEC.png
new file mode 100755
index 00000000..278ecf6e
Binary files /dev/null and b/static/icons/06001AEC.png differ
diff --git a/static/icons/06001AED.png b/static/icons/06001AED.png
new file mode 100755
index 00000000..8e989266
Binary files /dev/null and b/static/icons/06001AED.png differ
diff --git a/static/icons/06001AEE.png b/static/icons/06001AEE.png
new file mode 100755
index 00000000..66cbaf11
Binary files /dev/null and b/static/icons/06001AEE.png differ
diff --git a/static/icons/06001AEF.png b/static/icons/06001AEF.png
new file mode 100755
index 00000000..5b3f10af
Binary files /dev/null and b/static/icons/06001AEF.png differ
diff --git a/static/icons/06001AF0.png b/static/icons/06001AF0.png
new file mode 100755
index 00000000..d17ecd9c
Binary files /dev/null and b/static/icons/06001AF0.png differ
diff --git a/static/icons/06001AF1.png b/static/icons/06001AF1.png
new file mode 100755
index 00000000..5ea54fff
Binary files /dev/null and b/static/icons/06001AF1.png differ
diff --git a/static/icons/06001AF2.png b/static/icons/06001AF2.png
new file mode 100755
index 00000000..42c8dd3f
Binary files /dev/null and b/static/icons/06001AF2.png differ
diff --git a/static/icons/06001AF3.png b/static/icons/06001AF3.png
new file mode 100755
index 00000000..cdf815b6
Binary files /dev/null and b/static/icons/06001AF3.png differ
diff --git a/static/icons/06001AF4.png b/static/icons/06001AF4.png
new file mode 100755
index 00000000..8fb120b7
Binary files /dev/null and b/static/icons/06001AF4.png differ
diff --git a/static/icons/06001AF5.png b/static/icons/06001AF5.png
new file mode 100755
index 00000000..91733562
Binary files /dev/null and b/static/icons/06001AF5.png differ
diff --git a/static/icons/06001AF6.png b/static/icons/06001AF6.png
new file mode 100755
index 00000000..96b0c08c
Binary files /dev/null and b/static/icons/06001AF6.png differ
diff --git a/static/icons/06001AF7.png b/static/icons/06001AF7.png
new file mode 100755
index 00000000..be9f20e9
Binary files /dev/null and b/static/icons/06001AF7.png differ
diff --git a/static/icons/06001AF8.png b/static/icons/06001AF8.png
new file mode 100755
index 00000000..b4309a00
Binary files /dev/null and b/static/icons/06001AF8.png differ
diff --git a/static/icons/06001AF9.png b/static/icons/06001AF9.png
new file mode 100755
index 00000000..434ced34
Binary files /dev/null and b/static/icons/06001AF9.png differ
diff --git a/static/icons/06001AFA.png b/static/icons/06001AFA.png
new file mode 100755
index 00000000..eac59538
Binary files /dev/null and b/static/icons/06001AFA.png differ
diff --git a/static/icons/06001AFB.png b/static/icons/06001AFB.png
new file mode 100755
index 00000000..65c291b2
Binary files /dev/null and b/static/icons/06001AFB.png differ
diff --git a/static/icons/06001AFC.png b/static/icons/06001AFC.png
new file mode 100755
index 00000000..36a0ceef
Binary files /dev/null and b/static/icons/06001AFC.png differ
diff --git a/static/icons/06001AFE.png b/static/icons/06001AFE.png
new file mode 100755
index 00000000..c95cea9c
Binary files /dev/null and b/static/icons/06001AFE.png differ
diff --git a/static/icons/06001B00.png b/static/icons/06001B00.png
new file mode 100755
index 00000000..1ac11626
Binary files /dev/null and b/static/icons/06001B00.png differ
diff --git a/static/icons/06001B01.png b/static/icons/06001B01.png
new file mode 100755
index 00000000..f3b5c9ae
Binary files /dev/null and b/static/icons/06001B01.png differ
diff --git a/static/icons/06001B02.png b/static/icons/06001B02.png
new file mode 100755
index 00000000..fb90dbe6
Binary files /dev/null and b/static/icons/06001B02.png differ
diff --git a/static/icons/06001B03.png b/static/icons/06001B03.png
new file mode 100755
index 00000000..770518de
Binary files /dev/null and b/static/icons/06001B03.png differ
diff --git a/static/icons/06001B04.png b/static/icons/06001B04.png
new file mode 100755
index 00000000..1006b90b
Binary files /dev/null and b/static/icons/06001B04.png differ
diff --git a/static/icons/06001B05.png b/static/icons/06001B05.png
new file mode 100755
index 00000000..de019b01
Binary files /dev/null and b/static/icons/06001B05.png differ
diff --git a/static/icons/06001B06.png b/static/icons/06001B06.png
new file mode 100755
index 00000000..1ca22b09
Binary files /dev/null and b/static/icons/06001B06.png differ
diff --git a/static/icons/06001B08.png b/static/icons/06001B08.png
new file mode 100755
index 00000000..d6213555
Binary files /dev/null and b/static/icons/06001B08.png differ
diff --git a/static/icons/06001B09.png b/static/icons/06001B09.png
new file mode 100755
index 00000000..5830641f
Binary files /dev/null and b/static/icons/06001B09.png differ
diff --git a/static/icons/06001B0A.png b/static/icons/06001B0A.png
new file mode 100755
index 00000000..bfbfd5be
Binary files /dev/null and b/static/icons/06001B0A.png differ
diff --git a/static/icons/06001B0B.png b/static/icons/06001B0B.png
new file mode 100755
index 00000000..a4c59650
Binary files /dev/null and b/static/icons/06001B0B.png differ
diff --git a/static/icons/06001B0C.png b/static/icons/06001B0C.png
new file mode 100755
index 00000000..52605772
Binary files /dev/null and b/static/icons/06001B0C.png differ
diff --git a/static/icons/06001B0D.png b/static/icons/06001B0D.png
new file mode 100755
index 00000000..17131fab
Binary files /dev/null and b/static/icons/06001B0D.png differ
diff --git a/static/icons/06001B0E.png b/static/icons/06001B0E.png
new file mode 100755
index 00000000..6767b181
Binary files /dev/null and b/static/icons/06001B0E.png differ
diff --git a/static/icons/06001B0F.png b/static/icons/06001B0F.png
new file mode 100755
index 00000000..cb07a54e
Binary files /dev/null and b/static/icons/06001B0F.png differ
diff --git a/static/icons/06001B10.png b/static/icons/06001B10.png
new file mode 100755
index 00000000..21d59a15
Binary files /dev/null and b/static/icons/06001B10.png differ
diff --git a/static/icons/06001B11.png b/static/icons/06001B11.png
new file mode 100755
index 00000000..57692383
Binary files /dev/null and b/static/icons/06001B11.png differ
diff --git a/static/icons/06001B12.png b/static/icons/06001B12.png
new file mode 100755
index 00000000..4248a204
Binary files /dev/null and b/static/icons/06001B12.png differ
diff --git a/static/icons/06001B13.png b/static/icons/06001B13.png
new file mode 100755
index 00000000..8eeeddfc
Binary files /dev/null and b/static/icons/06001B13.png differ
diff --git a/static/icons/06001B14.png b/static/icons/06001B14.png
new file mode 100755
index 00000000..3aced278
Binary files /dev/null and b/static/icons/06001B14.png differ
diff --git a/static/icons/06001B15.png b/static/icons/06001B15.png
new file mode 100755
index 00000000..71df18b7
Binary files /dev/null and b/static/icons/06001B15.png differ
diff --git a/static/icons/06001B19.png b/static/icons/06001B19.png
new file mode 100755
index 00000000..6e7093b1
Binary files /dev/null and b/static/icons/06001B19.png differ
diff --git a/static/icons/06001B1A.png b/static/icons/06001B1A.png
new file mode 100755
index 00000000..1b729235
Binary files /dev/null and b/static/icons/06001B1A.png differ
diff --git a/static/icons/06001B1B.png b/static/icons/06001B1B.png
new file mode 100755
index 00000000..6c554745
Binary files /dev/null and b/static/icons/06001B1B.png differ
diff --git a/static/icons/06001B1C.png b/static/icons/06001B1C.png
new file mode 100755
index 00000000..55f7ee89
Binary files /dev/null and b/static/icons/06001B1C.png differ
diff --git a/static/icons/06001B1D.png b/static/icons/06001B1D.png
new file mode 100755
index 00000000..fe61b879
Binary files /dev/null and b/static/icons/06001B1D.png differ
diff --git a/static/icons/06001B1E.png b/static/icons/06001B1E.png
new file mode 100755
index 00000000..2551e23f
Binary files /dev/null and b/static/icons/06001B1E.png differ
diff --git a/static/icons/06001B1F.png b/static/icons/06001B1F.png
new file mode 100755
index 00000000..fefcc2eb
Binary files /dev/null and b/static/icons/06001B1F.png differ
diff --git a/static/icons/06001B20.png b/static/icons/06001B20.png
new file mode 100755
index 00000000..016765c9
Binary files /dev/null and b/static/icons/06001B20.png differ
diff --git a/static/icons/06001B21.png b/static/icons/06001B21.png
new file mode 100755
index 00000000..0718711d
Binary files /dev/null and b/static/icons/06001B21.png differ
diff --git a/static/icons/06001B22.png b/static/icons/06001B22.png
new file mode 100755
index 00000000..eabe18bf
Binary files /dev/null and b/static/icons/06001B22.png differ
diff --git a/static/icons/06001B23.png b/static/icons/06001B23.png
new file mode 100755
index 00000000..3c1ef414
Binary files /dev/null and b/static/icons/06001B23.png differ
diff --git a/static/icons/06001B24.png b/static/icons/06001B24.png
new file mode 100755
index 00000000..f66547f1
Binary files /dev/null and b/static/icons/06001B24.png differ
diff --git a/static/icons/06001B25.png b/static/icons/06001B25.png
new file mode 100755
index 00000000..91139955
Binary files /dev/null and b/static/icons/06001B25.png differ
diff --git a/static/icons/06001B26.png b/static/icons/06001B26.png
new file mode 100755
index 00000000..0840b549
Binary files /dev/null and b/static/icons/06001B26.png differ
diff --git a/static/icons/06001B27.png b/static/icons/06001B27.png
new file mode 100755
index 00000000..05e73327
Binary files /dev/null and b/static/icons/06001B27.png differ
diff --git a/static/icons/06001B28.png b/static/icons/06001B28.png
new file mode 100755
index 00000000..cad726d0
Binary files /dev/null and b/static/icons/06001B28.png differ
diff --git a/static/icons/06001B2A.png b/static/icons/06001B2A.png
new file mode 100755
index 00000000..9291b850
Binary files /dev/null and b/static/icons/06001B2A.png differ
diff --git a/static/icons/06001B2B.png b/static/icons/06001B2B.png
new file mode 100755
index 00000000..576733b3
Binary files /dev/null and b/static/icons/06001B2B.png differ
diff --git a/static/icons/06001B2C.png b/static/icons/06001B2C.png
new file mode 100755
index 00000000..348f0698
Binary files /dev/null and b/static/icons/06001B2C.png differ
diff --git a/static/icons/06001B2D.png b/static/icons/06001B2D.png
new file mode 100755
index 00000000..a669f69c
Binary files /dev/null and b/static/icons/06001B2D.png differ
diff --git a/static/icons/06001B2E.png b/static/icons/06001B2E.png
new file mode 100755
index 00000000..c3739dab
Binary files /dev/null and b/static/icons/06001B2E.png differ
diff --git a/static/icons/06001B2F.png b/static/icons/06001B2F.png
new file mode 100755
index 00000000..c585dfb6
Binary files /dev/null and b/static/icons/06001B2F.png differ
diff --git a/static/icons/06001B30.png b/static/icons/06001B30.png
new file mode 100755
index 00000000..4f57666d
Binary files /dev/null and b/static/icons/06001B30.png differ
diff --git a/static/icons/06001B31.png b/static/icons/06001B31.png
new file mode 100755
index 00000000..5805e272
Binary files /dev/null and b/static/icons/06001B31.png differ
diff --git a/static/icons/06001B32.png b/static/icons/06001B32.png
new file mode 100755
index 00000000..150f52f6
Binary files /dev/null and b/static/icons/06001B32.png differ
diff --git a/static/icons/06001B33.png b/static/icons/06001B33.png
new file mode 100755
index 00000000..cb35d1d1
Binary files /dev/null and b/static/icons/06001B33.png differ
diff --git a/static/icons/06001B34.png b/static/icons/06001B34.png
new file mode 100755
index 00000000..a5a3f5ad
Binary files /dev/null and b/static/icons/06001B34.png differ
diff --git a/static/icons/06001B35.png b/static/icons/06001B35.png
new file mode 100755
index 00000000..f69d35e9
Binary files /dev/null and b/static/icons/06001B35.png differ
diff --git a/static/icons/06001B36.png b/static/icons/06001B36.png
new file mode 100755
index 00000000..0c834203
Binary files /dev/null and b/static/icons/06001B36.png differ
diff --git a/static/icons/06001B37.png b/static/icons/06001B37.png
new file mode 100755
index 00000000..33a29ad2
Binary files /dev/null and b/static/icons/06001B37.png differ
diff --git a/static/icons/06001B38.png b/static/icons/06001B38.png
new file mode 100755
index 00000000..b3b8b484
Binary files /dev/null and b/static/icons/06001B38.png differ
diff --git a/static/icons/06001B39.png b/static/icons/06001B39.png
new file mode 100755
index 00000000..2bb55435
Binary files /dev/null and b/static/icons/06001B39.png differ
diff --git a/static/icons/06001B3A.png b/static/icons/06001B3A.png
new file mode 100755
index 00000000..d601feb1
Binary files /dev/null and b/static/icons/06001B3A.png differ
diff --git a/static/icons/06001B3B.png b/static/icons/06001B3B.png
new file mode 100755
index 00000000..7469a5c6
Binary files /dev/null and b/static/icons/06001B3B.png differ
diff --git a/static/icons/06001B3C.png b/static/icons/06001B3C.png
new file mode 100755
index 00000000..984576bd
Binary files /dev/null and b/static/icons/06001B3C.png differ
diff --git a/static/icons/06001B3D.png b/static/icons/06001B3D.png
new file mode 100755
index 00000000..fdefd68b
Binary files /dev/null and b/static/icons/06001B3D.png differ
diff --git a/static/icons/06001B3E.png b/static/icons/06001B3E.png
new file mode 100755
index 00000000..a5630992
Binary files /dev/null and b/static/icons/06001B3E.png differ
diff --git a/static/icons/06001B3F.png b/static/icons/06001B3F.png
new file mode 100755
index 00000000..d9e224ae
Binary files /dev/null and b/static/icons/06001B3F.png differ
diff --git a/static/icons/06001B40.png b/static/icons/06001B40.png
new file mode 100755
index 00000000..fa0ee042
Binary files /dev/null and b/static/icons/06001B40.png differ
diff --git a/static/icons/06001B41.png b/static/icons/06001B41.png
new file mode 100755
index 00000000..f01b8ae0
Binary files /dev/null and b/static/icons/06001B41.png differ
diff --git a/static/icons/06001B42.png b/static/icons/06001B42.png
new file mode 100755
index 00000000..5fa5a4a2
Binary files /dev/null and b/static/icons/06001B42.png differ
diff --git a/static/icons/06001B43.png b/static/icons/06001B43.png
new file mode 100755
index 00000000..9ddd3474
Binary files /dev/null and b/static/icons/06001B43.png differ
diff --git a/static/icons/06001B44.png b/static/icons/06001B44.png
new file mode 100755
index 00000000..3c3fc6e1
Binary files /dev/null and b/static/icons/06001B44.png differ
diff --git a/static/icons/06001B45.png b/static/icons/06001B45.png
new file mode 100755
index 00000000..93fb9cd5
Binary files /dev/null and b/static/icons/06001B45.png differ
diff --git a/static/icons/06001B47.png b/static/icons/06001B47.png
new file mode 100755
index 00000000..00cecd1e
Binary files /dev/null and b/static/icons/06001B47.png differ
diff --git a/static/icons/06001B49.png b/static/icons/06001B49.png
new file mode 100755
index 00000000..3e994c56
Binary files /dev/null and b/static/icons/06001B49.png differ
diff --git a/static/icons/06001B4A.png b/static/icons/06001B4A.png
new file mode 100755
index 00000000..bc118b2a
Binary files /dev/null and b/static/icons/06001B4A.png differ
diff --git a/static/icons/06001B4B.png b/static/icons/06001B4B.png
new file mode 100755
index 00000000..fad5a08d
Binary files /dev/null and b/static/icons/06001B4B.png differ
diff --git a/static/icons/06001B4D.png b/static/icons/06001B4D.png
new file mode 100755
index 00000000..c7a2714a
Binary files /dev/null and b/static/icons/06001B4D.png differ
diff --git a/static/icons/06001B4E.png b/static/icons/06001B4E.png
new file mode 100755
index 00000000..54f5f66d
Binary files /dev/null and b/static/icons/06001B4E.png differ
diff --git a/static/icons/06001B51.png b/static/icons/06001B51.png
new file mode 100755
index 00000000..2caaa9c6
Binary files /dev/null and b/static/icons/06001B51.png differ
diff --git a/static/icons/06001B52.png b/static/icons/06001B52.png
new file mode 100755
index 00000000..36d59b56
Binary files /dev/null and b/static/icons/06001B52.png differ
diff --git a/static/icons/06001B53.png b/static/icons/06001B53.png
new file mode 100755
index 00000000..27ecbeed
Binary files /dev/null and b/static/icons/06001B53.png differ
diff --git a/static/icons/06001B54.png b/static/icons/06001B54.png
new file mode 100755
index 00000000..0191c002
Binary files /dev/null and b/static/icons/06001B54.png differ
diff --git a/static/icons/06001B55.png b/static/icons/06001B55.png
new file mode 100755
index 00000000..c5708604
Binary files /dev/null and b/static/icons/06001B55.png differ
diff --git a/static/icons/06001B56.png b/static/icons/06001B56.png
new file mode 100755
index 00000000..d73885be
Binary files /dev/null and b/static/icons/06001B56.png differ
diff --git a/static/icons/06001B57.png b/static/icons/06001B57.png
new file mode 100755
index 00000000..b5a7fb84
Binary files /dev/null and b/static/icons/06001B57.png differ
diff --git a/static/icons/06001B58.png b/static/icons/06001B58.png
new file mode 100755
index 00000000..4e3b1cfc
Binary files /dev/null and b/static/icons/06001B58.png differ
diff --git a/static/icons/06001B59.png b/static/icons/06001B59.png
new file mode 100755
index 00000000..e688fcbc
Binary files /dev/null and b/static/icons/06001B59.png differ
diff --git a/static/icons/06001B5A.png b/static/icons/06001B5A.png
new file mode 100755
index 00000000..5010339f
Binary files /dev/null and b/static/icons/06001B5A.png differ
diff --git a/static/icons/06001B5B.png b/static/icons/06001B5B.png
new file mode 100755
index 00000000..7086c476
Binary files /dev/null and b/static/icons/06001B5B.png differ
diff --git a/static/icons/06001B5C.png b/static/icons/06001B5C.png
new file mode 100755
index 00000000..20cf4599
Binary files /dev/null and b/static/icons/06001B5C.png differ
diff --git a/static/icons/06001B5D.png b/static/icons/06001B5D.png
new file mode 100755
index 00000000..f8423d2e
Binary files /dev/null and b/static/icons/06001B5D.png differ
diff --git a/static/icons/06001B5F.png b/static/icons/06001B5F.png
new file mode 100755
index 00000000..491e4efa
Binary files /dev/null and b/static/icons/06001B5F.png differ
diff --git a/static/icons/06001B60.png b/static/icons/06001B60.png
new file mode 100755
index 00000000..adc1b74e
Binary files /dev/null and b/static/icons/06001B60.png differ
diff --git a/static/icons/06001B61.png b/static/icons/06001B61.png
new file mode 100755
index 00000000..94af73a7
Binary files /dev/null and b/static/icons/06001B61.png differ
diff --git a/static/icons/06001B62.png b/static/icons/06001B62.png
new file mode 100755
index 00000000..c96039e3
Binary files /dev/null and b/static/icons/06001B62.png differ
diff --git a/static/icons/06001B64.png b/static/icons/06001B64.png
new file mode 100755
index 00000000..76cd960c
Binary files /dev/null and b/static/icons/06001B64.png differ
diff --git a/static/icons/06001B65.png b/static/icons/06001B65.png
new file mode 100755
index 00000000..b12bf9db
Binary files /dev/null and b/static/icons/06001B65.png differ
diff --git a/static/icons/06001B66.png b/static/icons/06001B66.png
new file mode 100755
index 00000000..7f4f8351
Binary files /dev/null and b/static/icons/06001B66.png differ
diff --git a/static/icons/06001B67.png b/static/icons/06001B67.png
new file mode 100755
index 00000000..5e5480d8
Binary files /dev/null and b/static/icons/06001B67.png differ
diff --git a/static/icons/06001B68.png b/static/icons/06001B68.png
new file mode 100755
index 00000000..8c5919bf
Binary files /dev/null and b/static/icons/06001B68.png differ
diff --git a/static/icons/06001B69.png b/static/icons/06001B69.png
new file mode 100755
index 00000000..e2e41df0
Binary files /dev/null and b/static/icons/06001B69.png differ
diff --git a/static/icons/06001B6A.png b/static/icons/06001B6A.png
new file mode 100755
index 00000000..efacbfa2
Binary files /dev/null and b/static/icons/06001B6A.png differ
diff --git a/static/icons/06001B6B.png b/static/icons/06001B6B.png
new file mode 100755
index 00000000..3e7af420
Binary files /dev/null and b/static/icons/06001B6B.png differ
diff --git a/static/icons/06001B6C.png b/static/icons/06001B6C.png
new file mode 100755
index 00000000..63e99d29
Binary files /dev/null and b/static/icons/06001B6C.png differ
diff --git a/static/icons/06001B6D.png b/static/icons/06001B6D.png
new file mode 100755
index 00000000..9f08962a
Binary files /dev/null and b/static/icons/06001B6D.png differ
diff --git a/static/icons/06001B6F.png b/static/icons/06001B6F.png
new file mode 100755
index 00000000..a35ab7db
Binary files /dev/null and b/static/icons/06001B6F.png differ
diff --git a/static/icons/06001B70.png b/static/icons/06001B70.png
new file mode 100755
index 00000000..93155dd7
Binary files /dev/null and b/static/icons/06001B70.png differ
diff --git a/static/icons/06001B71.png b/static/icons/06001B71.png
new file mode 100755
index 00000000..ba686a1f
Binary files /dev/null and b/static/icons/06001B71.png differ
diff --git a/static/icons/06001B72.png b/static/icons/06001B72.png
new file mode 100755
index 00000000..b89e9f9a
Binary files /dev/null and b/static/icons/06001B72.png differ
diff --git a/static/icons/06001B73.png b/static/icons/06001B73.png
new file mode 100755
index 00000000..0352eb12
Binary files /dev/null and b/static/icons/06001B73.png differ
diff --git a/static/icons/06001B74.png b/static/icons/06001B74.png
new file mode 100755
index 00000000..7e8ae855
Binary files /dev/null and b/static/icons/06001B74.png differ
diff --git a/static/icons/06001B75.png b/static/icons/06001B75.png
new file mode 100755
index 00000000..129007bd
Binary files /dev/null and b/static/icons/06001B75.png differ
diff --git a/static/icons/06001B76.png b/static/icons/06001B76.png
new file mode 100755
index 00000000..7888dabd
Binary files /dev/null and b/static/icons/06001B76.png differ
diff --git a/static/icons/06001B77.png b/static/icons/06001B77.png
new file mode 100755
index 00000000..5938e762
Binary files /dev/null and b/static/icons/06001B77.png differ
diff --git a/static/icons/06001B78.png b/static/icons/06001B78.png
new file mode 100755
index 00000000..b27d04f6
Binary files /dev/null and b/static/icons/06001B78.png differ
diff --git a/static/icons/06001B79.png b/static/icons/06001B79.png
new file mode 100755
index 00000000..476fae6f
Binary files /dev/null and b/static/icons/06001B79.png differ
diff --git a/static/icons/06001B7A.png b/static/icons/06001B7A.png
new file mode 100755
index 00000000..0102d01e
Binary files /dev/null and b/static/icons/06001B7A.png differ
diff --git a/static/icons/06001B7B.png b/static/icons/06001B7B.png
new file mode 100755
index 00000000..17793de5
Binary files /dev/null and b/static/icons/06001B7B.png differ
diff --git a/static/icons/06001B7C.png b/static/icons/06001B7C.png
new file mode 100755
index 00000000..00ae3774
Binary files /dev/null and b/static/icons/06001B7C.png differ
diff --git a/static/icons/06001B7D.png b/static/icons/06001B7D.png
new file mode 100755
index 00000000..9d5c23cb
Binary files /dev/null and b/static/icons/06001B7D.png differ
diff --git a/static/icons/06001B7E.png b/static/icons/06001B7E.png
new file mode 100755
index 00000000..d6a752bd
Binary files /dev/null and b/static/icons/06001B7E.png differ
diff --git a/static/icons/06001B7F.png b/static/icons/06001B7F.png
new file mode 100755
index 00000000..a1670453
Binary files /dev/null and b/static/icons/06001B7F.png differ
diff --git a/static/icons/06001B80.png b/static/icons/06001B80.png
new file mode 100755
index 00000000..552e32ec
Binary files /dev/null and b/static/icons/06001B80.png differ
diff --git a/static/icons/06001B81.png b/static/icons/06001B81.png
new file mode 100755
index 00000000..4baf0319
Binary files /dev/null and b/static/icons/06001B81.png differ
diff --git a/static/icons/06001B82.png b/static/icons/06001B82.png
new file mode 100755
index 00000000..fb557b7f
Binary files /dev/null and b/static/icons/06001B82.png differ
diff --git a/static/icons/06001B83.png b/static/icons/06001B83.png
new file mode 100755
index 00000000..c69fb962
Binary files /dev/null and b/static/icons/06001B83.png differ
diff --git a/static/icons/06001B84.png b/static/icons/06001B84.png
new file mode 100755
index 00000000..b268a8f0
Binary files /dev/null and b/static/icons/06001B84.png differ
diff --git a/static/icons/06001B85.png b/static/icons/06001B85.png
new file mode 100755
index 00000000..bf27b476
Binary files /dev/null and b/static/icons/06001B85.png differ
diff --git a/static/icons/06001B86.png b/static/icons/06001B86.png
new file mode 100755
index 00000000..69c8b248
Binary files /dev/null and b/static/icons/06001B86.png differ
diff --git a/static/icons/06001B87.png b/static/icons/06001B87.png
new file mode 100755
index 00000000..b754d923
Binary files /dev/null and b/static/icons/06001B87.png differ
diff --git a/static/icons/06001B88.png b/static/icons/06001B88.png
new file mode 100755
index 00000000..fc24bb54
Binary files /dev/null and b/static/icons/06001B88.png differ
diff --git a/static/icons/06001B89.png b/static/icons/06001B89.png
new file mode 100755
index 00000000..3bba8a00
Binary files /dev/null and b/static/icons/06001B89.png differ
diff --git a/static/icons/06001B8A.png b/static/icons/06001B8A.png
new file mode 100755
index 00000000..774b36da
Binary files /dev/null and b/static/icons/06001B8A.png differ
diff --git a/static/icons/06001B8B.png b/static/icons/06001B8B.png
new file mode 100755
index 00000000..cac7d08b
Binary files /dev/null and b/static/icons/06001B8B.png differ
diff --git a/static/icons/06001B8C.png b/static/icons/06001B8C.png
new file mode 100755
index 00000000..698b498e
Binary files /dev/null and b/static/icons/06001B8C.png differ
diff --git a/static/icons/06001B8D.png b/static/icons/06001B8D.png
new file mode 100755
index 00000000..6ac578af
Binary files /dev/null and b/static/icons/06001B8D.png differ
diff --git a/static/icons/06001B8E.png b/static/icons/06001B8E.png
new file mode 100755
index 00000000..a3a7e1d6
Binary files /dev/null and b/static/icons/06001B8E.png differ
diff --git a/static/icons/06001B8F.png b/static/icons/06001B8F.png
new file mode 100755
index 00000000..244ce281
Binary files /dev/null and b/static/icons/06001B8F.png differ
diff --git a/static/icons/06001B90.png b/static/icons/06001B90.png
new file mode 100755
index 00000000..98b81a05
Binary files /dev/null and b/static/icons/06001B90.png differ
diff --git a/static/icons/06001B91.png b/static/icons/06001B91.png
new file mode 100755
index 00000000..e530b026
Binary files /dev/null and b/static/icons/06001B91.png differ
diff --git a/static/icons/06001B92.png b/static/icons/06001B92.png
new file mode 100755
index 00000000..d0d481ef
Binary files /dev/null and b/static/icons/06001B92.png differ
diff --git a/static/icons/06001B93.png b/static/icons/06001B93.png
new file mode 100755
index 00000000..2b59f4ef
Binary files /dev/null and b/static/icons/06001B93.png differ
diff --git a/static/icons/06001B94.png b/static/icons/06001B94.png
new file mode 100755
index 00000000..fa5abda2
Binary files /dev/null and b/static/icons/06001B94.png differ
diff --git a/static/icons/06001B95.png b/static/icons/06001B95.png
new file mode 100755
index 00000000..ac42e471
Binary files /dev/null and b/static/icons/06001B95.png differ
diff --git a/static/icons/06001B96.png b/static/icons/06001B96.png
new file mode 100755
index 00000000..87174a87
Binary files /dev/null and b/static/icons/06001B96.png differ
diff --git a/static/icons/06001B98.png b/static/icons/06001B98.png
new file mode 100755
index 00000000..ea9ddf6c
Binary files /dev/null and b/static/icons/06001B98.png differ
diff --git a/static/icons/06001B99.png b/static/icons/06001B99.png
new file mode 100755
index 00000000..754c02a1
Binary files /dev/null and b/static/icons/06001B99.png differ
diff --git a/static/icons/06001B9A.png b/static/icons/06001B9A.png
new file mode 100755
index 00000000..1e2f1b09
Binary files /dev/null and b/static/icons/06001B9A.png differ
diff --git a/static/icons/06001B9B.png b/static/icons/06001B9B.png
new file mode 100755
index 00000000..e0d5edb8
Binary files /dev/null and b/static/icons/06001B9B.png differ
diff --git a/static/icons/06001B9C.png b/static/icons/06001B9C.png
new file mode 100755
index 00000000..be01a1a0
Binary files /dev/null and b/static/icons/06001B9C.png differ
diff --git a/static/icons/06001B9D.png b/static/icons/06001B9D.png
new file mode 100755
index 00000000..ca65454c
Binary files /dev/null and b/static/icons/06001B9D.png differ
diff --git a/static/icons/06001B9E.png b/static/icons/06001B9E.png
new file mode 100755
index 00000000..ce5e2aeb
Binary files /dev/null and b/static/icons/06001B9E.png differ
diff --git a/static/icons/06001B9F.png b/static/icons/06001B9F.png
new file mode 100755
index 00000000..743d6a6f
Binary files /dev/null and b/static/icons/06001B9F.png differ
diff --git a/static/icons/06001BA0.png b/static/icons/06001BA0.png
new file mode 100755
index 00000000..329262f2
Binary files /dev/null and b/static/icons/06001BA0.png differ
diff --git a/static/icons/06001BA1.png b/static/icons/06001BA1.png
new file mode 100755
index 00000000..8b1c42a7
Binary files /dev/null and b/static/icons/06001BA1.png differ
diff --git a/static/icons/06001BA2.png b/static/icons/06001BA2.png
new file mode 100755
index 00000000..dc448c07
Binary files /dev/null and b/static/icons/06001BA2.png differ
diff --git a/static/icons/06001BA3.png b/static/icons/06001BA3.png
new file mode 100755
index 00000000..e94c277b
Binary files /dev/null and b/static/icons/06001BA3.png differ
diff --git a/static/icons/06001BA5.png b/static/icons/06001BA5.png
new file mode 100755
index 00000000..837d1394
Binary files /dev/null and b/static/icons/06001BA5.png differ
diff --git a/static/icons/06001BA6.png b/static/icons/06001BA6.png
new file mode 100755
index 00000000..7fc0202c
Binary files /dev/null and b/static/icons/06001BA6.png differ
diff --git a/static/icons/06001BA7.png b/static/icons/06001BA7.png
new file mode 100755
index 00000000..1b39a444
Binary files /dev/null and b/static/icons/06001BA7.png differ
diff --git a/static/icons/06001BA8.png b/static/icons/06001BA8.png
new file mode 100755
index 00000000..8e81af74
Binary files /dev/null and b/static/icons/06001BA8.png differ
diff --git a/static/icons/06001BA9.png b/static/icons/06001BA9.png
new file mode 100755
index 00000000..413bae73
Binary files /dev/null and b/static/icons/06001BA9.png differ
diff --git a/static/icons/06001BAA.png b/static/icons/06001BAA.png
new file mode 100755
index 00000000..1c507f1b
Binary files /dev/null and b/static/icons/06001BAA.png differ
diff --git a/static/icons/06001BAB.png b/static/icons/06001BAB.png
new file mode 100755
index 00000000..a5a5ce98
Binary files /dev/null and b/static/icons/06001BAB.png differ
diff --git a/static/icons/06001BAC.png b/static/icons/06001BAC.png
new file mode 100755
index 00000000..cc3e9ea1
Binary files /dev/null and b/static/icons/06001BAC.png differ
diff --git a/static/icons/06001BAE.png b/static/icons/06001BAE.png
new file mode 100755
index 00000000..cb94ad6f
Binary files /dev/null and b/static/icons/06001BAE.png differ
diff --git a/static/icons/06001BAF.png b/static/icons/06001BAF.png
new file mode 100755
index 00000000..127a7044
Binary files /dev/null and b/static/icons/06001BAF.png differ
diff --git a/static/icons/06001BB0.png b/static/icons/06001BB0.png
new file mode 100755
index 00000000..d0a2e039
Binary files /dev/null and b/static/icons/06001BB0.png differ
diff --git a/static/icons/06001BB1.png b/static/icons/06001BB1.png
new file mode 100755
index 00000000..c5032e44
Binary files /dev/null and b/static/icons/06001BB1.png differ
diff --git a/static/icons/06001BB2.png b/static/icons/06001BB2.png
new file mode 100755
index 00000000..d0710d6f
Binary files /dev/null and b/static/icons/06001BB2.png differ
diff --git a/static/icons/06001BB3.png b/static/icons/06001BB3.png
new file mode 100755
index 00000000..e34ce59d
Binary files /dev/null and b/static/icons/06001BB3.png differ
diff --git a/static/icons/06001BB4.png b/static/icons/06001BB4.png
new file mode 100755
index 00000000..d239de99
Binary files /dev/null and b/static/icons/06001BB4.png differ
diff --git a/static/icons/06001BB5.png b/static/icons/06001BB5.png
new file mode 100755
index 00000000..53706f9c
Binary files /dev/null and b/static/icons/06001BB5.png differ
diff --git a/static/icons/06001BB6.png b/static/icons/06001BB6.png
new file mode 100755
index 00000000..cd788273
Binary files /dev/null and b/static/icons/06001BB6.png differ
diff --git a/static/icons/06001BB7.png b/static/icons/06001BB7.png
new file mode 100755
index 00000000..1b93d2e4
Binary files /dev/null and b/static/icons/06001BB7.png differ
diff --git a/static/icons/06001BB8.png b/static/icons/06001BB8.png
new file mode 100755
index 00000000..de187bfb
Binary files /dev/null and b/static/icons/06001BB8.png differ
diff --git a/static/icons/06001BB9.png b/static/icons/06001BB9.png
new file mode 100755
index 00000000..1c7843a8
Binary files /dev/null and b/static/icons/06001BB9.png differ
diff --git a/static/icons/06001BBA.png b/static/icons/06001BBA.png
new file mode 100755
index 00000000..5534a9c3
Binary files /dev/null and b/static/icons/06001BBA.png differ
diff --git a/static/icons/06001BBB.png b/static/icons/06001BBB.png
new file mode 100755
index 00000000..f99147e5
Binary files /dev/null and b/static/icons/06001BBB.png differ
diff --git a/static/icons/06001BBC.png b/static/icons/06001BBC.png
new file mode 100755
index 00000000..2d09b70f
Binary files /dev/null and b/static/icons/06001BBC.png differ
diff --git a/static/icons/06001BBD.png b/static/icons/06001BBD.png
new file mode 100755
index 00000000..fa6055bc
Binary files /dev/null and b/static/icons/06001BBD.png differ
diff --git a/static/icons/06001BBE.png b/static/icons/06001BBE.png
new file mode 100755
index 00000000..279cd150
Binary files /dev/null and b/static/icons/06001BBE.png differ
diff --git a/static/icons/06001BBF.png b/static/icons/06001BBF.png
new file mode 100755
index 00000000..06a09730
Binary files /dev/null and b/static/icons/06001BBF.png differ
diff --git a/static/icons/06001BC0.png b/static/icons/06001BC0.png
new file mode 100755
index 00000000..0f4d417a
Binary files /dev/null and b/static/icons/06001BC0.png differ
diff --git a/static/icons/06001BC1.png b/static/icons/06001BC1.png
new file mode 100755
index 00000000..f743519a
Binary files /dev/null and b/static/icons/06001BC1.png differ
diff --git a/static/icons/06001BC2.png b/static/icons/06001BC2.png
new file mode 100755
index 00000000..a49f8e88
Binary files /dev/null and b/static/icons/06001BC2.png differ
diff --git a/static/icons/06001BC3.png b/static/icons/06001BC3.png
new file mode 100755
index 00000000..c18f86f8
Binary files /dev/null and b/static/icons/06001BC3.png differ
diff --git a/static/icons/06001BC4.png b/static/icons/06001BC4.png
new file mode 100755
index 00000000..8caff831
Binary files /dev/null and b/static/icons/06001BC4.png differ
diff --git a/static/icons/06001BC5.png b/static/icons/06001BC5.png
new file mode 100755
index 00000000..f22e4038
Binary files /dev/null and b/static/icons/06001BC5.png differ
diff --git a/static/icons/06001BC6.png b/static/icons/06001BC6.png
new file mode 100755
index 00000000..390ba9ba
Binary files /dev/null and b/static/icons/06001BC6.png differ
diff --git a/static/icons/06001BC7.png b/static/icons/06001BC7.png
new file mode 100755
index 00000000..4d5e557a
Binary files /dev/null and b/static/icons/06001BC7.png differ
diff --git a/static/icons/06001BC8.png b/static/icons/06001BC8.png
new file mode 100755
index 00000000..7c8a0af7
Binary files /dev/null and b/static/icons/06001BC8.png differ
diff --git a/static/icons/06001BC9.png b/static/icons/06001BC9.png
new file mode 100755
index 00000000..67aa7c4a
Binary files /dev/null and b/static/icons/06001BC9.png differ
diff --git a/static/icons/06001BCA.png b/static/icons/06001BCA.png
new file mode 100755
index 00000000..94035fd7
Binary files /dev/null and b/static/icons/06001BCA.png differ
diff --git a/static/icons/06001BCB.png b/static/icons/06001BCB.png
new file mode 100755
index 00000000..bab5b403
Binary files /dev/null and b/static/icons/06001BCB.png differ
diff --git a/static/icons/06001BCC.png b/static/icons/06001BCC.png
new file mode 100755
index 00000000..43e06aef
Binary files /dev/null and b/static/icons/06001BCC.png differ
diff --git a/static/icons/06001BCD.png b/static/icons/06001BCD.png
new file mode 100755
index 00000000..83407449
Binary files /dev/null and b/static/icons/06001BCD.png differ
diff --git a/static/icons/06001BCE.png b/static/icons/06001BCE.png
new file mode 100755
index 00000000..ccbe0bee
Binary files /dev/null and b/static/icons/06001BCE.png differ
diff --git a/static/icons/06001BCF.png b/static/icons/06001BCF.png
new file mode 100755
index 00000000..2512c854
Binary files /dev/null and b/static/icons/06001BCF.png differ
diff --git a/static/icons/06001BD0.png b/static/icons/06001BD0.png
new file mode 100755
index 00000000..4515a206
Binary files /dev/null and b/static/icons/06001BD0.png differ
diff --git a/static/icons/06001BD1.png b/static/icons/06001BD1.png
new file mode 100755
index 00000000..32d41473
Binary files /dev/null and b/static/icons/06001BD1.png differ
diff --git a/static/icons/06001BD2.png b/static/icons/06001BD2.png
new file mode 100755
index 00000000..0638a9f2
Binary files /dev/null and b/static/icons/06001BD2.png differ
diff --git a/static/icons/06001BD3.png b/static/icons/06001BD3.png
new file mode 100755
index 00000000..26cc79b0
Binary files /dev/null and b/static/icons/06001BD3.png differ
diff --git a/static/icons/06001BD4.png b/static/icons/06001BD4.png
new file mode 100755
index 00000000..9936a0fd
Binary files /dev/null and b/static/icons/06001BD4.png differ
diff --git a/static/icons/06001BD5.png b/static/icons/06001BD5.png
new file mode 100755
index 00000000..0bb8ae1d
Binary files /dev/null and b/static/icons/06001BD5.png differ
diff --git a/static/icons/06001BD6.png b/static/icons/06001BD6.png
new file mode 100755
index 00000000..fd46586a
Binary files /dev/null and b/static/icons/06001BD6.png differ
diff --git a/static/icons/06001BD7.png b/static/icons/06001BD7.png
new file mode 100755
index 00000000..128f4d98
Binary files /dev/null and b/static/icons/06001BD7.png differ
diff --git a/static/icons/06001BD8.png b/static/icons/06001BD8.png
new file mode 100755
index 00000000..b68086bd
Binary files /dev/null and b/static/icons/06001BD8.png differ
diff --git a/static/icons/06001BD9.png b/static/icons/06001BD9.png
new file mode 100755
index 00000000..14d7c8fb
Binary files /dev/null and b/static/icons/06001BD9.png differ
diff --git a/static/icons/06001BDA.png b/static/icons/06001BDA.png
new file mode 100755
index 00000000..f1c45648
Binary files /dev/null and b/static/icons/06001BDA.png differ
diff --git a/static/icons/06001BDB.png b/static/icons/06001BDB.png
new file mode 100755
index 00000000..6a97eab4
Binary files /dev/null and b/static/icons/06001BDB.png differ
diff --git a/static/icons/06001BDC.png b/static/icons/06001BDC.png
new file mode 100755
index 00000000..593d65d6
Binary files /dev/null and b/static/icons/06001BDC.png differ
diff --git a/static/icons/06001BDD.png b/static/icons/06001BDD.png
new file mode 100755
index 00000000..400b81d8
Binary files /dev/null and b/static/icons/06001BDD.png differ
diff --git a/static/icons/06001BDE.png b/static/icons/06001BDE.png
new file mode 100755
index 00000000..c757f3f1
Binary files /dev/null and b/static/icons/06001BDE.png differ
diff --git a/static/icons/06001BDF.png b/static/icons/06001BDF.png
new file mode 100755
index 00000000..b07bad6e
Binary files /dev/null and b/static/icons/06001BDF.png differ
diff --git a/static/icons/06001BE0.png b/static/icons/06001BE0.png
new file mode 100755
index 00000000..88892dfc
Binary files /dev/null and b/static/icons/06001BE0.png differ
diff --git a/static/icons/06001BE1.png b/static/icons/06001BE1.png
new file mode 100755
index 00000000..c7ccc4b2
Binary files /dev/null and b/static/icons/06001BE1.png differ
diff --git a/static/icons/06001BE2.png b/static/icons/06001BE2.png
new file mode 100755
index 00000000..7e6dd4ad
Binary files /dev/null and b/static/icons/06001BE2.png differ
diff --git a/static/icons/06001BE3.png b/static/icons/06001BE3.png
new file mode 100755
index 00000000..d72c0962
Binary files /dev/null and b/static/icons/06001BE3.png differ
diff --git a/static/icons/06001BE4.png b/static/icons/06001BE4.png
new file mode 100755
index 00000000..da1da32f
Binary files /dev/null and b/static/icons/06001BE4.png differ
diff --git a/static/icons/06001BE5.png b/static/icons/06001BE5.png
new file mode 100755
index 00000000..1be11f98
Binary files /dev/null and b/static/icons/06001BE5.png differ
diff --git a/static/icons/06001BE6.png b/static/icons/06001BE6.png
new file mode 100755
index 00000000..2e5f535b
Binary files /dev/null and b/static/icons/06001BE6.png differ
diff --git a/static/icons/06001BE7.png b/static/icons/06001BE7.png
new file mode 100755
index 00000000..71b99b61
Binary files /dev/null and b/static/icons/06001BE7.png differ
diff --git a/static/icons/06001BE8.png b/static/icons/06001BE8.png
new file mode 100755
index 00000000..0944c9f2
Binary files /dev/null and b/static/icons/06001BE8.png differ
diff --git a/static/icons/06001BE9.png b/static/icons/06001BE9.png
new file mode 100755
index 00000000..b760954a
Binary files /dev/null and b/static/icons/06001BE9.png differ
diff --git a/static/icons/06001BEA.png b/static/icons/06001BEA.png
new file mode 100755
index 00000000..02d66c22
Binary files /dev/null and b/static/icons/06001BEA.png differ
diff --git a/static/icons/06001BEB.png b/static/icons/06001BEB.png
new file mode 100755
index 00000000..cc8d7d1a
Binary files /dev/null and b/static/icons/06001BEB.png differ
diff --git a/static/icons/06001BEC.png b/static/icons/06001BEC.png
new file mode 100755
index 00000000..4cda4839
Binary files /dev/null and b/static/icons/06001BEC.png differ
diff --git a/static/icons/06001BED.png b/static/icons/06001BED.png
new file mode 100755
index 00000000..d819d3ca
Binary files /dev/null and b/static/icons/06001BED.png differ
diff --git a/static/icons/06001BEE.png b/static/icons/06001BEE.png
new file mode 100755
index 00000000..2ba566bc
Binary files /dev/null and b/static/icons/06001BEE.png differ
diff --git a/static/icons/06001BEF.png b/static/icons/06001BEF.png
new file mode 100755
index 00000000..e41ec07d
Binary files /dev/null and b/static/icons/06001BEF.png differ
diff --git a/static/icons/06001BF0.png b/static/icons/06001BF0.png
new file mode 100755
index 00000000..8a5c7177
Binary files /dev/null and b/static/icons/06001BF0.png differ
diff --git a/static/icons/06001BF1.png b/static/icons/06001BF1.png
new file mode 100755
index 00000000..91652ed7
Binary files /dev/null and b/static/icons/06001BF1.png differ
diff --git a/static/icons/06001BF2.png b/static/icons/06001BF2.png
new file mode 100755
index 00000000..9c8b9fad
Binary files /dev/null and b/static/icons/06001BF2.png differ
diff --git a/static/icons/06001BF3.png b/static/icons/06001BF3.png
new file mode 100755
index 00000000..9488b433
Binary files /dev/null and b/static/icons/06001BF3.png differ
diff --git a/static/icons/06001BF4.png b/static/icons/06001BF4.png
new file mode 100755
index 00000000..4ad3b7dd
Binary files /dev/null and b/static/icons/06001BF4.png differ
diff --git a/static/icons/06001BF5.png b/static/icons/06001BF5.png
new file mode 100755
index 00000000..448fd9cd
Binary files /dev/null and b/static/icons/06001BF5.png differ
diff --git a/static/icons/06001BF6.png b/static/icons/06001BF6.png
new file mode 100755
index 00000000..ae114819
Binary files /dev/null and b/static/icons/06001BF6.png differ
diff --git a/static/icons/06001BF7.png b/static/icons/06001BF7.png
new file mode 100755
index 00000000..2c2acffd
Binary files /dev/null and b/static/icons/06001BF7.png differ
diff --git a/static/icons/06001BF8.png b/static/icons/06001BF8.png
new file mode 100755
index 00000000..fe87d2f8
Binary files /dev/null and b/static/icons/06001BF8.png differ
diff --git a/static/icons/06001BFA.png b/static/icons/06001BFA.png
new file mode 100755
index 00000000..d941804b
Binary files /dev/null and b/static/icons/06001BFA.png differ
diff --git a/static/icons/06001BFB.png b/static/icons/06001BFB.png
new file mode 100755
index 00000000..7944f82d
Binary files /dev/null and b/static/icons/06001BFB.png differ
diff --git a/static/icons/06001BFC.png b/static/icons/06001BFC.png
new file mode 100755
index 00000000..6bc0ac03
Binary files /dev/null and b/static/icons/06001BFC.png differ
diff --git a/static/icons/06001BFD.png b/static/icons/06001BFD.png
new file mode 100755
index 00000000..c5c0eab1
Binary files /dev/null and b/static/icons/06001BFD.png differ
diff --git a/static/icons/06001BFE.png b/static/icons/06001BFE.png
new file mode 100755
index 00000000..b61b2d6a
Binary files /dev/null and b/static/icons/06001BFE.png differ
diff --git a/static/icons/06001BFF.png b/static/icons/06001BFF.png
new file mode 100755
index 00000000..708348c9
Binary files /dev/null and b/static/icons/06001BFF.png differ
diff --git a/static/icons/06001C00.png b/static/icons/06001C00.png
new file mode 100755
index 00000000..452b008d
Binary files /dev/null and b/static/icons/06001C00.png differ
diff --git a/static/icons/06001C01.png b/static/icons/06001C01.png
new file mode 100755
index 00000000..5021aab4
Binary files /dev/null and b/static/icons/06001C01.png differ
diff --git a/static/icons/06001C02.png b/static/icons/06001C02.png
new file mode 100755
index 00000000..ab419d96
Binary files /dev/null and b/static/icons/06001C02.png differ
diff --git a/static/icons/06001C03.png b/static/icons/06001C03.png
new file mode 100755
index 00000000..7fe5cddf
Binary files /dev/null and b/static/icons/06001C03.png differ
diff --git a/static/icons/06001C04.png b/static/icons/06001C04.png
new file mode 100755
index 00000000..8926966c
Binary files /dev/null and b/static/icons/06001C04.png differ
diff --git a/static/icons/06001C05.png b/static/icons/06001C05.png
new file mode 100755
index 00000000..275a5d2e
Binary files /dev/null and b/static/icons/06001C05.png differ
diff --git a/static/icons/06001C06.png b/static/icons/06001C06.png
new file mode 100755
index 00000000..61d8a868
Binary files /dev/null and b/static/icons/06001C06.png differ
diff --git a/static/icons/06001C09.png b/static/icons/06001C09.png
new file mode 100755
index 00000000..99f79cf2
Binary files /dev/null and b/static/icons/06001C09.png differ
diff --git a/static/icons/06001C0A.png b/static/icons/06001C0A.png
new file mode 100755
index 00000000..e9aa1246
Binary files /dev/null and b/static/icons/06001C0A.png differ
diff --git a/static/icons/06001C0B.png b/static/icons/06001C0B.png
new file mode 100755
index 00000000..995c1b3c
Binary files /dev/null and b/static/icons/06001C0B.png differ
diff --git a/static/icons/06001C0C.png b/static/icons/06001C0C.png
new file mode 100755
index 00000000..d90eab32
Binary files /dev/null and b/static/icons/06001C0C.png differ
diff --git a/static/icons/06001C0D.png b/static/icons/06001C0D.png
new file mode 100755
index 00000000..1c69fbd4
Binary files /dev/null and b/static/icons/06001C0D.png differ
diff --git a/static/icons/06001C0E.png b/static/icons/06001C0E.png
new file mode 100755
index 00000000..1b465bee
Binary files /dev/null and b/static/icons/06001C0E.png differ
diff --git a/static/icons/06001C0F.png b/static/icons/06001C0F.png
new file mode 100755
index 00000000..5b1e127c
Binary files /dev/null and b/static/icons/06001C0F.png differ
diff --git a/static/icons/06001C10.png b/static/icons/06001C10.png
new file mode 100755
index 00000000..7a6c5901
Binary files /dev/null and b/static/icons/06001C10.png differ
diff --git a/static/icons/06001C11.png b/static/icons/06001C11.png
new file mode 100755
index 00000000..866bac0f
Binary files /dev/null and b/static/icons/06001C11.png differ
diff --git a/static/icons/06001C12.png b/static/icons/06001C12.png
new file mode 100755
index 00000000..ded5ce2b
Binary files /dev/null and b/static/icons/06001C12.png differ
diff --git a/static/icons/06001C15.png b/static/icons/06001C15.png
new file mode 100755
index 00000000..26c5dcb2
Binary files /dev/null and b/static/icons/06001C15.png differ
diff --git a/static/icons/06001C18.png b/static/icons/06001C18.png
new file mode 100755
index 00000000..01b5b2b0
Binary files /dev/null and b/static/icons/06001C18.png differ
diff --git a/static/icons/06001C19.png b/static/icons/06001C19.png
new file mode 100755
index 00000000..e22a5de1
Binary files /dev/null and b/static/icons/06001C19.png differ
diff --git a/static/icons/06001C1C.png b/static/icons/06001C1C.png
new file mode 100755
index 00000000..1813acf3
Binary files /dev/null and b/static/icons/06001C1C.png differ
diff --git a/static/icons/06001C1E.png b/static/icons/06001C1E.png
new file mode 100755
index 00000000..e0416a50
Binary files /dev/null and b/static/icons/06001C1E.png differ
diff --git a/static/icons/06001C1F.png b/static/icons/06001C1F.png
new file mode 100755
index 00000000..0b48caf6
Binary files /dev/null and b/static/icons/06001C1F.png differ
diff --git a/static/icons/06001C20.png b/static/icons/06001C20.png
new file mode 100755
index 00000000..ab706dc2
Binary files /dev/null and b/static/icons/06001C20.png differ
diff --git a/static/icons/06001C23.png b/static/icons/06001C23.png
new file mode 100755
index 00000000..eb3f5115
Binary files /dev/null and b/static/icons/06001C23.png differ
diff --git a/static/icons/06001C24.png b/static/icons/06001C24.png
new file mode 100755
index 00000000..c7091680
Binary files /dev/null and b/static/icons/06001C24.png differ
diff --git a/static/icons/06001C25.png b/static/icons/06001C25.png
new file mode 100755
index 00000000..8cc26576
Binary files /dev/null and b/static/icons/06001C25.png differ
diff --git a/static/icons/06001C28.png b/static/icons/06001C28.png
new file mode 100755
index 00000000..ae1b5ad8
Binary files /dev/null and b/static/icons/06001C28.png differ
diff --git a/static/icons/06001C2B.png b/static/icons/06001C2B.png
new file mode 100755
index 00000000..be8cba02
Binary files /dev/null and b/static/icons/06001C2B.png differ
diff --git a/static/icons/06001C2C.png b/static/icons/06001C2C.png
new file mode 100755
index 00000000..1ac8c8fc
Binary files /dev/null and b/static/icons/06001C2C.png differ
diff --git a/static/icons/06001C2D.png b/static/icons/06001C2D.png
new file mode 100755
index 00000000..2bab77b6
Binary files /dev/null and b/static/icons/06001C2D.png differ
diff --git a/static/icons/06001C2F.png b/static/icons/06001C2F.png
new file mode 100755
index 00000000..9081f633
Binary files /dev/null and b/static/icons/06001C2F.png differ
diff --git a/static/icons/06001C31.png b/static/icons/06001C31.png
new file mode 100755
index 00000000..0cbdcf51
Binary files /dev/null and b/static/icons/06001C31.png differ
diff --git a/static/icons/06001C32.png b/static/icons/06001C32.png
new file mode 100755
index 00000000..718e36c3
Binary files /dev/null and b/static/icons/06001C32.png differ
diff --git a/static/icons/06001C33.png b/static/icons/06001C33.png
new file mode 100755
index 00000000..fb041a6e
Binary files /dev/null and b/static/icons/06001C33.png differ
diff --git a/static/icons/06001C36.png b/static/icons/06001C36.png
new file mode 100755
index 00000000..ab4a3cd3
Binary files /dev/null and b/static/icons/06001C36.png differ
diff --git a/static/icons/06001C37.png b/static/icons/06001C37.png
new file mode 100755
index 00000000..e77ca27d
Binary files /dev/null and b/static/icons/06001C37.png differ
diff --git a/static/icons/06001C39.png b/static/icons/06001C39.png
new file mode 100755
index 00000000..12cb35fd
Binary files /dev/null and b/static/icons/06001C39.png differ
diff --git a/static/icons/06001C3B.png b/static/icons/06001C3B.png
new file mode 100755
index 00000000..1b447bb2
Binary files /dev/null and b/static/icons/06001C3B.png differ
diff --git a/static/icons/06001C3C.png b/static/icons/06001C3C.png
new file mode 100755
index 00000000..2510ddc1
Binary files /dev/null and b/static/icons/06001C3C.png differ
diff --git a/static/icons/06001C3D.png b/static/icons/06001C3D.png
new file mode 100755
index 00000000..b2d08b23
Binary files /dev/null and b/static/icons/06001C3D.png differ
diff --git a/static/icons/06001C40.png b/static/icons/06001C40.png
new file mode 100755
index 00000000..3cca8a12
Binary files /dev/null and b/static/icons/06001C40.png differ
diff --git a/static/icons/06001C41.png b/static/icons/06001C41.png
new file mode 100755
index 00000000..19d48eba
Binary files /dev/null and b/static/icons/06001C41.png differ
diff --git a/static/icons/06001C43.png b/static/icons/06001C43.png
new file mode 100755
index 00000000..a6b504cf
Binary files /dev/null and b/static/icons/06001C43.png differ
diff --git a/static/icons/06001C45.png b/static/icons/06001C45.png
new file mode 100755
index 00000000..cea1d092
Binary files /dev/null and b/static/icons/06001C45.png differ
diff --git a/static/icons/06001C46.png b/static/icons/06001C46.png
new file mode 100755
index 00000000..b3113e5d
Binary files /dev/null and b/static/icons/06001C46.png differ
diff --git a/static/icons/06001C47.png b/static/icons/06001C47.png
new file mode 100755
index 00000000..8028c1de
Binary files /dev/null and b/static/icons/06001C47.png differ
diff --git a/static/icons/06001C4A.png b/static/icons/06001C4A.png
new file mode 100755
index 00000000..0eebae9b
Binary files /dev/null and b/static/icons/06001C4A.png differ
diff --git a/static/icons/06001C4B.png b/static/icons/06001C4B.png
new file mode 100755
index 00000000..e5c07e18
Binary files /dev/null and b/static/icons/06001C4B.png differ
diff --git a/static/icons/06001C4D.png b/static/icons/06001C4D.png
new file mode 100755
index 00000000..4bfc6f16
Binary files /dev/null and b/static/icons/06001C4D.png differ
diff --git a/static/icons/06001C4F.png b/static/icons/06001C4F.png
new file mode 100755
index 00000000..9ba83de2
Binary files /dev/null and b/static/icons/06001C4F.png differ
diff --git a/static/icons/06001C50.png b/static/icons/06001C50.png
new file mode 100755
index 00000000..208dc504
Binary files /dev/null and b/static/icons/06001C50.png differ
diff --git a/static/icons/06001C51.png b/static/icons/06001C51.png
new file mode 100755
index 00000000..3c76e8b6
Binary files /dev/null and b/static/icons/06001C51.png differ
diff --git a/static/icons/06001C54.png b/static/icons/06001C54.png
new file mode 100755
index 00000000..11bd86e5
Binary files /dev/null and b/static/icons/06001C54.png differ
diff --git a/static/icons/06001C55.png b/static/icons/06001C55.png
new file mode 100755
index 00000000..609aecfe
Binary files /dev/null and b/static/icons/06001C55.png differ
diff --git a/static/icons/06001C57.png b/static/icons/06001C57.png
new file mode 100755
index 00000000..54091a76
Binary files /dev/null and b/static/icons/06001C57.png differ
diff --git a/static/icons/06001C59.png b/static/icons/06001C59.png
new file mode 100755
index 00000000..664a278a
Binary files /dev/null and b/static/icons/06001C59.png differ
diff --git a/static/icons/06001C5A.png b/static/icons/06001C5A.png
new file mode 100755
index 00000000..2f425b78
Binary files /dev/null and b/static/icons/06001C5A.png differ
diff --git a/static/icons/06001C5B.png b/static/icons/06001C5B.png
new file mode 100755
index 00000000..05dd62d3
Binary files /dev/null and b/static/icons/06001C5B.png differ
diff --git a/static/icons/06001C5E.png b/static/icons/06001C5E.png
new file mode 100755
index 00000000..07376898
Binary files /dev/null and b/static/icons/06001C5E.png differ
diff --git a/static/icons/06001C5F.png b/static/icons/06001C5F.png
new file mode 100755
index 00000000..3c9be3a4
Binary files /dev/null and b/static/icons/06001C5F.png differ
diff --git a/static/icons/06001C61.png b/static/icons/06001C61.png
new file mode 100755
index 00000000..35cda67f
Binary files /dev/null and b/static/icons/06001C61.png differ
diff --git a/static/icons/06001C63.png b/static/icons/06001C63.png
new file mode 100755
index 00000000..1c826e6c
Binary files /dev/null and b/static/icons/06001C63.png differ
diff --git a/static/icons/06001C64.png b/static/icons/06001C64.png
new file mode 100755
index 00000000..0a651078
Binary files /dev/null and b/static/icons/06001C64.png differ
diff --git a/static/icons/06001C65.png b/static/icons/06001C65.png
new file mode 100755
index 00000000..ac1c9e96
Binary files /dev/null and b/static/icons/06001C65.png differ
diff --git a/static/icons/06001C68.png b/static/icons/06001C68.png
new file mode 100755
index 00000000..3621de95
Binary files /dev/null and b/static/icons/06001C68.png differ
diff --git a/static/icons/06001C69.png b/static/icons/06001C69.png
new file mode 100755
index 00000000..1affff89
Binary files /dev/null and b/static/icons/06001C69.png differ
diff --git a/static/icons/06001C6B.png b/static/icons/06001C6B.png
new file mode 100755
index 00000000..96227b3e
Binary files /dev/null and b/static/icons/06001C6B.png differ
diff --git a/static/icons/06001C6D.png b/static/icons/06001C6D.png
new file mode 100755
index 00000000..c31b19e6
Binary files /dev/null and b/static/icons/06001C6D.png differ
diff --git a/static/icons/06001C6E.png b/static/icons/06001C6E.png
new file mode 100755
index 00000000..310f5afe
Binary files /dev/null and b/static/icons/06001C6E.png differ
diff --git a/static/icons/06001C6F.png b/static/icons/06001C6F.png
new file mode 100755
index 00000000..4b127358
Binary files /dev/null and b/static/icons/06001C6F.png differ
diff --git a/static/icons/06001C72.png b/static/icons/06001C72.png
new file mode 100755
index 00000000..279663e2
Binary files /dev/null and b/static/icons/06001C72.png differ
diff --git a/static/icons/06001C73.png b/static/icons/06001C73.png
new file mode 100755
index 00000000..9318a6e2
Binary files /dev/null and b/static/icons/06001C73.png differ
diff --git a/static/icons/06001C74.png b/static/icons/06001C74.png
new file mode 100755
index 00000000..c8e4c405
Binary files /dev/null and b/static/icons/06001C74.png differ
diff --git a/static/icons/06001C75.png b/static/icons/06001C75.png
new file mode 100755
index 00000000..7a479ef5
Binary files /dev/null and b/static/icons/06001C75.png differ
diff --git a/static/icons/06001C76.png b/static/icons/06001C76.png
new file mode 100755
index 00000000..2a6e3404
Binary files /dev/null and b/static/icons/06001C76.png differ
diff --git a/static/icons/06001C77.png b/static/icons/06001C77.png
new file mode 100755
index 00000000..c912b0fe
Binary files /dev/null and b/static/icons/06001C77.png differ
diff --git a/static/icons/06001C78.png b/static/icons/06001C78.png
new file mode 100755
index 00000000..1467215d
Binary files /dev/null and b/static/icons/06001C78.png differ
diff --git a/static/icons/06001C79.png b/static/icons/06001C79.png
new file mode 100755
index 00000000..7b4ee8a8
Binary files /dev/null and b/static/icons/06001C79.png differ
diff --git a/static/icons/06001C7A.png b/static/icons/06001C7A.png
new file mode 100755
index 00000000..25a9468a
Binary files /dev/null and b/static/icons/06001C7A.png differ
diff --git a/static/icons/06001C7B.png b/static/icons/06001C7B.png
new file mode 100755
index 00000000..be762fe7
Binary files /dev/null and b/static/icons/06001C7B.png differ
diff --git a/static/icons/06001C7C.png b/static/icons/06001C7C.png
new file mode 100755
index 00000000..40ed0b02
Binary files /dev/null and b/static/icons/06001C7C.png differ
diff --git a/static/icons/06001C7F.png b/static/icons/06001C7F.png
new file mode 100755
index 00000000..21745388
Binary files /dev/null and b/static/icons/06001C7F.png differ
diff --git a/static/icons/06001C80.png b/static/icons/06001C80.png
new file mode 100755
index 00000000..09e67c73
Binary files /dev/null and b/static/icons/06001C80.png differ
diff --git a/static/icons/06001C81.png b/static/icons/06001C81.png
new file mode 100755
index 00000000..836b6325
Binary files /dev/null and b/static/icons/06001C81.png differ
diff --git a/static/icons/06001C82.png b/static/icons/06001C82.png
new file mode 100755
index 00000000..8f5441e2
Binary files /dev/null and b/static/icons/06001C82.png differ
diff --git a/static/icons/06001C83.png b/static/icons/06001C83.png
new file mode 100755
index 00000000..7b28160f
Binary files /dev/null and b/static/icons/06001C83.png differ
diff --git a/static/icons/06001C84.png b/static/icons/06001C84.png
new file mode 100755
index 00000000..8d77516a
Binary files /dev/null and b/static/icons/06001C84.png differ
diff --git a/static/icons/06001C85.png b/static/icons/06001C85.png
new file mode 100755
index 00000000..69f9ae63
Binary files /dev/null and b/static/icons/06001C85.png differ
diff --git a/static/icons/06001C86.png b/static/icons/06001C86.png
new file mode 100755
index 00000000..743403b5
Binary files /dev/null and b/static/icons/06001C86.png differ
diff --git a/static/icons/06001C87.png b/static/icons/06001C87.png
new file mode 100755
index 00000000..129c73ba
Binary files /dev/null and b/static/icons/06001C87.png differ
diff --git a/static/icons/06001C88.png b/static/icons/06001C88.png
new file mode 100755
index 00000000..7eccf904
Binary files /dev/null and b/static/icons/06001C88.png differ
diff --git a/static/icons/06001C89.png b/static/icons/06001C89.png
new file mode 100755
index 00000000..0f9b372e
Binary files /dev/null and b/static/icons/06001C89.png differ
diff --git a/static/icons/06001C8A.png b/static/icons/06001C8A.png
new file mode 100755
index 00000000..4e524719
Binary files /dev/null and b/static/icons/06001C8A.png differ
diff --git a/static/icons/06001C8B.png b/static/icons/06001C8B.png
new file mode 100755
index 00000000..1dc138df
Binary files /dev/null and b/static/icons/06001C8B.png differ
diff --git a/static/icons/06001C8C.png b/static/icons/06001C8C.png
new file mode 100755
index 00000000..46a16a40
Binary files /dev/null and b/static/icons/06001C8C.png differ
diff --git a/static/icons/06001C8D.png b/static/icons/06001C8D.png
new file mode 100755
index 00000000..d4dda705
Binary files /dev/null and b/static/icons/06001C8D.png differ
diff --git a/static/icons/06001C8E.png b/static/icons/06001C8E.png
new file mode 100755
index 00000000..1655b317
Binary files /dev/null and b/static/icons/06001C8E.png differ
diff --git a/static/icons/06001C8F.png b/static/icons/06001C8F.png
new file mode 100755
index 00000000..0d2b67ff
Binary files /dev/null and b/static/icons/06001C8F.png differ
diff --git a/static/icons/06001C90.png b/static/icons/06001C90.png
new file mode 100755
index 00000000..e0f9f25f
Binary files /dev/null and b/static/icons/06001C90.png differ
diff --git a/static/icons/06001C91.png b/static/icons/06001C91.png
new file mode 100755
index 00000000..c61df1d2
Binary files /dev/null and b/static/icons/06001C91.png differ
diff --git a/static/icons/06001C92.png b/static/icons/06001C92.png
new file mode 100755
index 00000000..94f86f17
Binary files /dev/null and b/static/icons/06001C92.png differ
diff --git a/static/icons/06001C93.png b/static/icons/06001C93.png
new file mode 100755
index 00000000..cce32434
Binary files /dev/null and b/static/icons/06001C93.png differ
diff --git a/static/icons/06001C94.png b/static/icons/06001C94.png
new file mode 100755
index 00000000..9cdf0171
Binary files /dev/null and b/static/icons/06001C94.png differ
diff --git a/static/icons/06001C95.png b/static/icons/06001C95.png
new file mode 100755
index 00000000..d5d70bb3
Binary files /dev/null and b/static/icons/06001C95.png differ
diff --git a/static/icons/06001C96.png b/static/icons/06001C96.png
new file mode 100755
index 00000000..a5799122
Binary files /dev/null and b/static/icons/06001C96.png differ
diff --git a/static/icons/06001C97.png b/static/icons/06001C97.png
new file mode 100755
index 00000000..01730041
Binary files /dev/null and b/static/icons/06001C97.png differ
diff --git a/static/icons/06001C98.png b/static/icons/06001C98.png
new file mode 100755
index 00000000..158e090c
Binary files /dev/null and b/static/icons/06001C98.png differ
diff --git a/static/icons/06001C99.png b/static/icons/06001C99.png
new file mode 100755
index 00000000..3410d217
Binary files /dev/null and b/static/icons/06001C99.png differ
diff --git a/static/icons/06001C9A.png b/static/icons/06001C9A.png
new file mode 100755
index 00000000..f05eef84
Binary files /dev/null and b/static/icons/06001C9A.png differ
diff --git a/static/icons/06001C9B.png b/static/icons/06001C9B.png
new file mode 100755
index 00000000..4f7af71b
Binary files /dev/null and b/static/icons/06001C9B.png differ
diff --git a/static/icons/06001C9C.png b/static/icons/06001C9C.png
new file mode 100755
index 00000000..3b465288
Binary files /dev/null and b/static/icons/06001C9C.png differ
diff --git a/static/icons/06001C9D.png b/static/icons/06001C9D.png
new file mode 100755
index 00000000..b1dcd4f1
Binary files /dev/null and b/static/icons/06001C9D.png differ
diff --git a/static/icons/06001C9E.png b/static/icons/06001C9E.png
new file mode 100755
index 00000000..f8589c92
Binary files /dev/null and b/static/icons/06001C9E.png differ
diff --git a/static/icons/06001C9F.png b/static/icons/06001C9F.png
new file mode 100755
index 00000000..e181204c
Binary files /dev/null and b/static/icons/06001C9F.png differ
diff --git a/static/icons/06001CA0.png b/static/icons/06001CA0.png
new file mode 100755
index 00000000..1e89319a
Binary files /dev/null and b/static/icons/06001CA0.png differ
diff --git a/static/icons/06001CA1.png b/static/icons/06001CA1.png
new file mode 100755
index 00000000..13b7623f
Binary files /dev/null and b/static/icons/06001CA1.png differ
diff --git a/static/icons/06001CA2.png b/static/icons/06001CA2.png
new file mode 100755
index 00000000..7758e950
Binary files /dev/null and b/static/icons/06001CA2.png differ
diff --git a/static/icons/06001CA3.png b/static/icons/06001CA3.png
new file mode 100755
index 00000000..45932058
Binary files /dev/null and b/static/icons/06001CA3.png differ
diff --git a/static/icons/06001CA4.png b/static/icons/06001CA4.png
new file mode 100755
index 00000000..9ed61fed
Binary files /dev/null and b/static/icons/06001CA4.png differ
diff --git a/static/icons/06001CA5.png b/static/icons/06001CA5.png
new file mode 100755
index 00000000..76310a1a
Binary files /dev/null and b/static/icons/06001CA5.png differ
diff --git a/static/icons/06001CA6.png b/static/icons/06001CA6.png
new file mode 100755
index 00000000..e3ceb4ae
Binary files /dev/null and b/static/icons/06001CA6.png differ
diff --git a/static/icons/06001CA7.png b/static/icons/06001CA7.png
new file mode 100755
index 00000000..e86c1280
Binary files /dev/null and b/static/icons/06001CA7.png differ
diff --git a/static/icons/06001CA8.png b/static/icons/06001CA8.png
new file mode 100755
index 00000000..1dad10d5
Binary files /dev/null and b/static/icons/06001CA8.png differ
diff --git a/static/icons/06001CA9.png b/static/icons/06001CA9.png
new file mode 100755
index 00000000..9d29b0b0
Binary files /dev/null and b/static/icons/06001CA9.png differ
diff --git a/static/icons/06001CAA.png b/static/icons/06001CAA.png
new file mode 100755
index 00000000..4a14bbef
Binary files /dev/null and b/static/icons/06001CAA.png differ
diff --git a/static/icons/06001CAB.png b/static/icons/06001CAB.png
new file mode 100755
index 00000000..5044f993
Binary files /dev/null and b/static/icons/06001CAB.png differ
diff --git a/static/icons/06001CAC.png b/static/icons/06001CAC.png
new file mode 100755
index 00000000..4bb6920a
Binary files /dev/null and b/static/icons/06001CAC.png differ
diff --git a/static/icons/06001CAD.png b/static/icons/06001CAD.png
new file mode 100755
index 00000000..da485084
Binary files /dev/null and b/static/icons/06001CAD.png differ
diff --git a/static/icons/06001CAE.png b/static/icons/06001CAE.png
new file mode 100755
index 00000000..592ec8f3
Binary files /dev/null and b/static/icons/06001CAE.png differ
diff --git a/static/icons/06001CAF.png b/static/icons/06001CAF.png
new file mode 100755
index 00000000..06a4ec24
Binary files /dev/null and b/static/icons/06001CAF.png differ
diff --git a/static/icons/06001CB0.png b/static/icons/06001CB0.png
new file mode 100755
index 00000000..7f6428ee
Binary files /dev/null and b/static/icons/06001CB0.png differ
diff --git a/static/icons/06001CB1.png b/static/icons/06001CB1.png
new file mode 100755
index 00000000..4fbacd4c
Binary files /dev/null and b/static/icons/06001CB1.png differ
diff --git a/static/icons/06001CB2.png b/static/icons/06001CB2.png
new file mode 100755
index 00000000..8d424792
Binary files /dev/null and b/static/icons/06001CB2.png differ
diff --git a/static/icons/06001CB3.png b/static/icons/06001CB3.png
new file mode 100755
index 00000000..366676a1
Binary files /dev/null and b/static/icons/06001CB3.png differ
diff --git a/static/icons/06001CB4.png b/static/icons/06001CB4.png
new file mode 100755
index 00000000..e2332fe8
Binary files /dev/null and b/static/icons/06001CB4.png differ
diff --git a/static/icons/06001CC0.png b/static/icons/06001CC0.png
new file mode 100755
index 00000000..6d3acebe
Binary files /dev/null and b/static/icons/06001CC0.png differ
diff --git a/static/icons/06001CC1.png b/static/icons/06001CC1.png
new file mode 100755
index 00000000..0a129c26
Binary files /dev/null and b/static/icons/06001CC1.png differ
diff --git a/static/icons/06001CC2.png b/static/icons/06001CC2.png
new file mode 100755
index 00000000..e0bc9fc9
Binary files /dev/null and b/static/icons/06001CC2.png differ
diff --git a/static/icons/06001CC3.png b/static/icons/06001CC3.png
new file mode 100755
index 00000000..e0314bb4
Binary files /dev/null and b/static/icons/06001CC3.png differ
diff --git a/static/icons/06001CC4.png b/static/icons/06001CC4.png
new file mode 100755
index 00000000..714552de
Binary files /dev/null and b/static/icons/06001CC4.png differ
diff --git a/static/icons/06001CC5.png b/static/icons/06001CC5.png
new file mode 100755
index 00000000..d393bbf6
Binary files /dev/null and b/static/icons/06001CC5.png differ
diff --git a/static/icons/06001CC6.png b/static/icons/06001CC6.png
new file mode 100755
index 00000000..ddf5a009
Binary files /dev/null and b/static/icons/06001CC6.png differ
diff --git a/static/icons/06001CC7.png b/static/icons/06001CC7.png
new file mode 100755
index 00000000..6b8fd4bf
Binary files /dev/null and b/static/icons/06001CC7.png differ
diff --git a/static/icons/06001CC8.png b/static/icons/06001CC8.png
new file mode 100755
index 00000000..fbe81bd6
Binary files /dev/null and b/static/icons/06001CC8.png differ
diff --git a/static/icons/06001CC9.png b/static/icons/06001CC9.png
new file mode 100755
index 00000000..4ed32785
Binary files /dev/null and b/static/icons/06001CC9.png differ
diff --git a/static/icons/06001CCA.png b/static/icons/06001CCA.png
new file mode 100755
index 00000000..eb276dae
Binary files /dev/null and b/static/icons/06001CCA.png differ
diff --git a/static/icons/06001CCB.png b/static/icons/06001CCB.png
new file mode 100755
index 00000000..2530cacd
Binary files /dev/null and b/static/icons/06001CCB.png differ
diff --git a/static/icons/06001CCC.png b/static/icons/06001CCC.png
new file mode 100755
index 00000000..43689e46
Binary files /dev/null and b/static/icons/06001CCC.png differ
diff --git a/static/icons/06001CCD.png b/static/icons/06001CCD.png
new file mode 100755
index 00000000..0ea6a983
Binary files /dev/null and b/static/icons/06001CCD.png differ
diff --git a/static/icons/06001CCE.png b/static/icons/06001CCE.png
new file mode 100755
index 00000000..c1f2bd90
Binary files /dev/null and b/static/icons/06001CCE.png differ
diff --git a/static/icons/06001CCF.png b/static/icons/06001CCF.png
new file mode 100755
index 00000000..dc5a358e
Binary files /dev/null and b/static/icons/06001CCF.png differ
diff --git a/static/icons/06001CD0.png b/static/icons/06001CD0.png
new file mode 100755
index 00000000..3370e0cb
Binary files /dev/null and b/static/icons/06001CD0.png differ
diff --git a/static/icons/06001CD1.png b/static/icons/06001CD1.png
new file mode 100755
index 00000000..fd7c1ce2
Binary files /dev/null and b/static/icons/06001CD1.png differ
diff --git a/static/icons/06001CD2.png b/static/icons/06001CD2.png
new file mode 100755
index 00000000..7ca27ac8
Binary files /dev/null and b/static/icons/06001CD2.png differ
diff --git a/static/icons/06001CD3.png b/static/icons/06001CD3.png
new file mode 100755
index 00000000..d4c11141
Binary files /dev/null and b/static/icons/06001CD3.png differ
diff --git a/static/icons/06001CD4.png b/static/icons/06001CD4.png
new file mode 100755
index 00000000..21e97bef
Binary files /dev/null and b/static/icons/06001CD4.png differ
diff --git a/static/icons/06001CD5.png b/static/icons/06001CD5.png
new file mode 100755
index 00000000..6ae7dc57
Binary files /dev/null and b/static/icons/06001CD5.png differ
diff --git a/static/icons/06001CD6.png b/static/icons/06001CD6.png
new file mode 100755
index 00000000..3c9a32b3
Binary files /dev/null and b/static/icons/06001CD6.png differ
diff --git a/static/icons/06001CD7.png b/static/icons/06001CD7.png
new file mode 100755
index 00000000..ac3d75d5
Binary files /dev/null and b/static/icons/06001CD7.png differ
diff --git a/static/icons/06001CD8.png b/static/icons/06001CD8.png
new file mode 100755
index 00000000..b4a95480
Binary files /dev/null and b/static/icons/06001CD8.png differ
diff --git a/static/icons/06001CD9.png b/static/icons/06001CD9.png
new file mode 100755
index 00000000..f641e4e1
Binary files /dev/null and b/static/icons/06001CD9.png differ
diff --git a/static/icons/06001CDA.png b/static/icons/06001CDA.png
new file mode 100755
index 00000000..302251c9
Binary files /dev/null and b/static/icons/06001CDA.png differ
diff --git a/static/icons/06001CDB.png b/static/icons/06001CDB.png
new file mode 100755
index 00000000..9781ecfd
Binary files /dev/null and b/static/icons/06001CDB.png differ
diff --git a/static/icons/06001CDC.png b/static/icons/06001CDC.png
new file mode 100755
index 00000000..062a0f0e
Binary files /dev/null and b/static/icons/06001CDC.png differ
diff --git a/static/icons/06001CDD.png b/static/icons/06001CDD.png
new file mode 100755
index 00000000..fb0db87c
Binary files /dev/null and b/static/icons/06001CDD.png differ
diff --git a/static/icons/06001CDE.png b/static/icons/06001CDE.png
new file mode 100755
index 00000000..56604895
Binary files /dev/null and b/static/icons/06001CDE.png differ
diff --git a/static/icons/06001CDF.png b/static/icons/06001CDF.png
new file mode 100755
index 00000000..98c82023
Binary files /dev/null and b/static/icons/06001CDF.png differ
diff --git a/static/icons/06001CE0.png b/static/icons/06001CE0.png
new file mode 100755
index 00000000..33fa0829
Binary files /dev/null and b/static/icons/06001CE0.png differ
diff --git a/static/icons/06001CE1.png b/static/icons/06001CE1.png
new file mode 100755
index 00000000..097efb26
Binary files /dev/null and b/static/icons/06001CE1.png differ
diff --git a/static/icons/06001CE2.png b/static/icons/06001CE2.png
new file mode 100755
index 00000000..891e8a47
Binary files /dev/null and b/static/icons/06001CE2.png differ
diff --git a/static/icons/06001CE3.png b/static/icons/06001CE3.png
new file mode 100755
index 00000000..2cb27e38
Binary files /dev/null and b/static/icons/06001CE3.png differ
diff --git a/static/icons/06001CE4.png b/static/icons/06001CE4.png
new file mode 100755
index 00000000..9274243f
Binary files /dev/null and b/static/icons/06001CE4.png differ
diff --git a/static/icons/06001CE5.png b/static/icons/06001CE5.png
new file mode 100755
index 00000000..3215f8a3
Binary files /dev/null and b/static/icons/06001CE5.png differ
diff --git a/static/icons/06001CE6.png b/static/icons/06001CE6.png
new file mode 100755
index 00000000..310b06b0
Binary files /dev/null and b/static/icons/06001CE6.png differ
diff --git a/static/icons/06001CE7.png b/static/icons/06001CE7.png
new file mode 100755
index 00000000..5330740f
Binary files /dev/null and b/static/icons/06001CE7.png differ
diff --git a/static/icons/06001CE8.png b/static/icons/06001CE8.png
new file mode 100755
index 00000000..b5657b37
Binary files /dev/null and b/static/icons/06001CE8.png differ
diff --git a/static/icons/06001CE9.png b/static/icons/06001CE9.png
new file mode 100755
index 00000000..8c5a388d
Binary files /dev/null and b/static/icons/06001CE9.png differ
diff --git a/static/icons/06001CEA.png b/static/icons/06001CEA.png
new file mode 100755
index 00000000..017bc2cf
Binary files /dev/null and b/static/icons/06001CEA.png differ
diff --git a/static/icons/06001CEB.png b/static/icons/06001CEB.png
new file mode 100755
index 00000000..8be4a15c
Binary files /dev/null and b/static/icons/06001CEB.png differ
diff --git a/static/icons/06001CEC.png b/static/icons/06001CEC.png
new file mode 100755
index 00000000..c9cbdd9f
Binary files /dev/null and b/static/icons/06001CEC.png differ
diff --git a/static/icons/06001CED.png b/static/icons/06001CED.png
new file mode 100755
index 00000000..55f36a31
Binary files /dev/null and b/static/icons/06001CED.png differ
diff --git a/static/icons/06001CEE.png b/static/icons/06001CEE.png
new file mode 100755
index 00000000..791580bf
Binary files /dev/null and b/static/icons/06001CEE.png differ
diff --git a/static/icons/06001CEF.png b/static/icons/06001CEF.png
new file mode 100755
index 00000000..9e0eff6b
Binary files /dev/null and b/static/icons/06001CEF.png differ
diff --git a/static/icons/06001CF0.png b/static/icons/06001CF0.png
new file mode 100755
index 00000000..7f8d3a51
Binary files /dev/null and b/static/icons/06001CF0.png differ
diff --git a/static/icons/06001CF1.png b/static/icons/06001CF1.png
new file mode 100755
index 00000000..d87f62c6
Binary files /dev/null and b/static/icons/06001CF1.png differ
diff --git a/static/icons/06001CF2.png b/static/icons/06001CF2.png
new file mode 100755
index 00000000..5868542e
Binary files /dev/null and b/static/icons/06001CF2.png differ
diff --git a/static/icons/06001CF3.png b/static/icons/06001CF3.png
new file mode 100755
index 00000000..e98791c9
Binary files /dev/null and b/static/icons/06001CF3.png differ
diff --git a/static/icons/06001CF4.png b/static/icons/06001CF4.png
new file mode 100755
index 00000000..e296a4af
Binary files /dev/null and b/static/icons/06001CF4.png differ
diff --git a/static/icons/06001CF5.png b/static/icons/06001CF5.png
new file mode 100755
index 00000000..0b88e72f
Binary files /dev/null and b/static/icons/06001CF5.png differ
diff --git a/static/icons/06001CF6.png b/static/icons/06001CF6.png
new file mode 100755
index 00000000..2cede831
Binary files /dev/null and b/static/icons/06001CF6.png differ
diff --git a/static/icons/06001CF7.png b/static/icons/06001CF7.png
new file mode 100755
index 00000000..fabcb24f
Binary files /dev/null and b/static/icons/06001CF7.png differ
diff --git a/static/icons/06001CF8.png b/static/icons/06001CF8.png
new file mode 100755
index 00000000..6a7171a8
Binary files /dev/null and b/static/icons/06001CF8.png differ
diff --git a/static/icons/06001CF9.png b/static/icons/06001CF9.png
new file mode 100755
index 00000000..99ef06e1
Binary files /dev/null and b/static/icons/06001CF9.png differ
diff --git a/static/icons/06001CFA.png b/static/icons/06001CFA.png
new file mode 100755
index 00000000..44e17b16
Binary files /dev/null and b/static/icons/06001CFA.png differ
diff --git a/static/icons/06001CFB.png b/static/icons/06001CFB.png
new file mode 100755
index 00000000..1ec4b35c
Binary files /dev/null and b/static/icons/06001CFB.png differ
diff --git a/static/icons/06001CFC.png b/static/icons/06001CFC.png
new file mode 100755
index 00000000..265f3e10
Binary files /dev/null and b/static/icons/06001CFC.png differ
diff --git a/static/icons/06001CFD.png b/static/icons/06001CFD.png
new file mode 100755
index 00000000..b3eacdc1
Binary files /dev/null and b/static/icons/06001CFD.png differ
diff --git a/static/icons/06001CFE.png b/static/icons/06001CFE.png
new file mode 100755
index 00000000..3f474ca9
Binary files /dev/null and b/static/icons/06001CFE.png differ
diff --git a/static/icons/06001CFF.png b/static/icons/06001CFF.png
new file mode 100755
index 00000000..6099c4b7
Binary files /dev/null and b/static/icons/06001CFF.png differ
diff --git a/static/icons/06001D00.png b/static/icons/06001D00.png
new file mode 100755
index 00000000..cf6159be
Binary files /dev/null and b/static/icons/06001D00.png differ
diff --git a/static/icons/06001D01.png b/static/icons/06001D01.png
new file mode 100755
index 00000000..782b57ea
Binary files /dev/null and b/static/icons/06001D01.png differ
diff --git a/static/icons/06001D02.png b/static/icons/06001D02.png
new file mode 100755
index 00000000..fa9adcca
Binary files /dev/null and b/static/icons/06001D02.png differ
diff --git a/static/icons/06001D03.png b/static/icons/06001D03.png
new file mode 100755
index 00000000..aed65b91
Binary files /dev/null and b/static/icons/06001D03.png differ
diff --git a/static/icons/06001D04.png b/static/icons/06001D04.png
new file mode 100755
index 00000000..faf883b1
Binary files /dev/null and b/static/icons/06001D04.png differ
diff --git a/static/icons/06001D05.png b/static/icons/06001D05.png
new file mode 100755
index 00000000..a925c22d
Binary files /dev/null and b/static/icons/06001D05.png differ
diff --git a/static/icons/06001D06.png b/static/icons/06001D06.png
new file mode 100755
index 00000000..477371f4
Binary files /dev/null and b/static/icons/06001D06.png differ
diff --git a/static/icons/06001D07.png b/static/icons/06001D07.png
new file mode 100755
index 00000000..aa91ce69
Binary files /dev/null and b/static/icons/06001D07.png differ
diff --git a/static/icons/06001D08.png b/static/icons/06001D08.png
new file mode 100755
index 00000000..ba273430
Binary files /dev/null and b/static/icons/06001D08.png differ
diff --git a/static/icons/06001D09.png b/static/icons/06001D09.png
new file mode 100755
index 00000000..f546c401
Binary files /dev/null and b/static/icons/06001D09.png differ
diff --git a/static/icons/06001D0A.png b/static/icons/06001D0A.png
new file mode 100755
index 00000000..a0fee80b
Binary files /dev/null and b/static/icons/06001D0A.png differ
diff --git a/static/icons/06001D0B.png b/static/icons/06001D0B.png
new file mode 100755
index 00000000..107dc55d
Binary files /dev/null and b/static/icons/06001D0B.png differ
diff --git a/static/icons/06001D0C.png b/static/icons/06001D0C.png
new file mode 100755
index 00000000..d4186f5e
Binary files /dev/null and b/static/icons/06001D0C.png differ
diff --git a/static/icons/06001D0D.png b/static/icons/06001D0D.png
new file mode 100755
index 00000000..00fd71cd
Binary files /dev/null and b/static/icons/06001D0D.png differ
diff --git a/static/icons/06001D0E.png b/static/icons/06001D0E.png
new file mode 100755
index 00000000..e3923733
Binary files /dev/null and b/static/icons/06001D0E.png differ
diff --git a/static/icons/06001D0F.png b/static/icons/06001D0F.png
new file mode 100755
index 00000000..48c99757
Binary files /dev/null and b/static/icons/06001D0F.png differ
diff --git a/static/icons/06001D10.png b/static/icons/06001D10.png
new file mode 100755
index 00000000..347eacd3
Binary files /dev/null and b/static/icons/06001D10.png differ
diff --git a/static/icons/06001D11.png b/static/icons/06001D11.png
new file mode 100755
index 00000000..baabbaa3
Binary files /dev/null and b/static/icons/06001D11.png differ
diff --git a/static/icons/06001D12.png b/static/icons/06001D12.png
new file mode 100755
index 00000000..795c83fb
Binary files /dev/null and b/static/icons/06001D12.png differ
diff --git a/static/icons/06001D13.png b/static/icons/06001D13.png
new file mode 100755
index 00000000..5143de86
Binary files /dev/null and b/static/icons/06001D13.png differ
diff --git a/static/icons/06001D14.png b/static/icons/06001D14.png
new file mode 100755
index 00000000..0bef0672
Binary files /dev/null and b/static/icons/06001D14.png differ
diff --git a/static/icons/06001D15.png b/static/icons/06001D15.png
new file mode 100755
index 00000000..845502be
Binary files /dev/null and b/static/icons/06001D15.png differ
diff --git a/static/icons/06001D16.png b/static/icons/06001D16.png
new file mode 100755
index 00000000..a33d7c29
Binary files /dev/null and b/static/icons/06001D16.png differ
diff --git a/static/icons/06001D17.png b/static/icons/06001D17.png
new file mode 100755
index 00000000..bcca674d
Binary files /dev/null and b/static/icons/06001D17.png differ
diff --git a/static/icons/06001D18.png b/static/icons/06001D18.png
new file mode 100755
index 00000000..942fdd33
Binary files /dev/null and b/static/icons/06001D18.png differ
diff --git a/static/icons/06001D19.png b/static/icons/06001D19.png
new file mode 100755
index 00000000..df8cc0ac
Binary files /dev/null and b/static/icons/06001D19.png differ
diff --git a/static/icons/06001D1A.png b/static/icons/06001D1A.png
new file mode 100755
index 00000000..24501fe7
Binary files /dev/null and b/static/icons/06001D1A.png differ
diff --git a/static/icons/06001D1B.png b/static/icons/06001D1B.png
new file mode 100755
index 00000000..f464f922
Binary files /dev/null and b/static/icons/06001D1B.png differ
diff --git a/static/icons/06001D1F.png b/static/icons/06001D1F.png
new file mode 100755
index 00000000..5e034857
Binary files /dev/null and b/static/icons/06001D1F.png differ
diff --git a/static/icons/06001D20.png b/static/icons/06001D20.png
new file mode 100755
index 00000000..57d445b6
Binary files /dev/null and b/static/icons/06001D20.png differ
diff --git a/static/icons/06001D23.png b/static/icons/06001D23.png
new file mode 100755
index 00000000..38d2c829
Binary files /dev/null and b/static/icons/06001D23.png differ
diff --git a/static/icons/06001D24.png b/static/icons/06001D24.png
new file mode 100755
index 00000000..7718e7f8
Binary files /dev/null and b/static/icons/06001D24.png differ
diff --git a/static/icons/06001D25.png b/static/icons/06001D25.png
new file mode 100755
index 00000000..ca08ac7d
Binary files /dev/null and b/static/icons/06001D25.png differ
diff --git a/static/icons/06001D26.png b/static/icons/06001D26.png
new file mode 100755
index 00000000..b7f3a1eb
Binary files /dev/null and b/static/icons/06001D26.png differ
diff --git a/static/icons/06001D27.png b/static/icons/06001D27.png
new file mode 100755
index 00000000..1d25d7e4
Binary files /dev/null and b/static/icons/06001D27.png differ
diff --git a/static/icons/06001D28.png b/static/icons/06001D28.png
new file mode 100755
index 00000000..6dca01bc
Binary files /dev/null and b/static/icons/06001D28.png differ
diff --git a/static/icons/06001D29.png b/static/icons/06001D29.png
new file mode 100755
index 00000000..8247773b
Binary files /dev/null and b/static/icons/06001D29.png differ
diff --git a/static/icons/06001D2A.png b/static/icons/06001D2A.png
new file mode 100755
index 00000000..cdcd490f
Binary files /dev/null and b/static/icons/06001D2A.png differ
diff --git a/static/icons/06001D2E.png b/static/icons/06001D2E.png
new file mode 100755
index 00000000..ab6649a9
Binary files /dev/null and b/static/icons/06001D2E.png differ
diff --git a/static/icons/06001D2F.png b/static/icons/06001D2F.png
new file mode 100755
index 00000000..bc8d2a87
Binary files /dev/null and b/static/icons/06001D2F.png differ
diff --git a/static/icons/06001D30.png b/static/icons/06001D30.png
new file mode 100755
index 00000000..ab97e09d
Binary files /dev/null and b/static/icons/06001D30.png differ
diff --git a/static/icons/06001D31.png b/static/icons/06001D31.png
new file mode 100755
index 00000000..b8ec2692
Binary files /dev/null and b/static/icons/06001D31.png differ
diff --git a/static/icons/06001D32.png b/static/icons/06001D32.png
new file mode 100755
index 00000000..09fe411b
Binary files /dev/null and b/static/icons/06001D32.png differ
diff --git a/static/icons/06001D33.png b/static/icons/06001D33.png
new file mode 100755
index 00000000..b7bc2fdf
Binary files /dev/null and b/static/icons/06001D33.png differ
diff --git a/static/icons/06001D34.png b/static/icons/06001D34.png
new file mode 100755
index 00000000..98cafa41
Binary files /dev/null and b/static/icons/06001D34.png differ
diff --git a/static/icons/06001D35.png b/static/icons/06001D35.png
new file mode 100755
index 00000000..28ab55ed
Binary files /dev/null and b/static/icons/06001D35.png differ
diff --git a/static/icons/06001D36.png b/static/icons/06001D36.png
new file mode 100755
index 00000000..065fe0f1
Binary files /dev/null and b/static/icons/06001D36.png differ
diff --git a/static/icons/06001D37.png b/static/icons/06001D37.png
new file mode 100755
index 00000000..03ecb32c
Binary files /dev/null and b/static/icons/06001D37.png differ
diff --git a/static/icons/06001D38.png b/static/icons/06001D38.png
new file mode 100755
index 00000000..f6bc4faa
Binary files /dev/null and b/static/icons/06001D38.png differ
diff --git a/static/icons/06001D39.png b/static/icons/06001D39.png
new file mode 100755
index 00000000..bf75f8c6
Binary files /dev/null and b/static/icons/06001D39.png differ
diff --git a/static/icons/06001D3A.png b/static/icons/06001D3A.png
new file mode 100755
index 00000000..62606e64
Binary files /dev/null and b/static/icons/06001D3A.png differ
diff --git a/static/icons/06001D3B.png b/static/icons/06001D3B.png
new file mode 100755
index 00000000..5c35ff58
Binary files /dev/null and b/static/icons/06001D3B.png differ
diff --git a/static/icons/06001D3C.png b/static/icons/06001D3C.png
new file mode 100755
index 00000000..ffca0841
Binary files /dev/null and b/static/icons/06001D3C.png differ
diff --git a/static/icons/06001D3D.png b/static/icons/06001D3D.png
new file mode 100755
index 00000000..36496ec9
Binary files /dev/null and b/static/icons/06001D3D.png differ
diff --git a/static/icons/06001D3E.png b/static/icons/06001D3E.png
new file mode 100755
index 00000000..fca2c3c9
Binary files /dev/null and b/static/icons/06001D3E.png differ
diff --git a/static/icons/06001D3F.png b/static/icons/06001D3F.png
new file mode 100755
index 00000000..f174a85b
Binary files /dev/null and b/static/icons/06001D3F.png differ
diff --git a/static/icons/06001D40.png b/static/icons/06001D40.png
new file mode 100755
index 00000000..5318e6a7
Binary files /dev/null and b/static/icons/06001D40.png differ
diff --git a/static/icons/06001D41.png b/static/icons/06001D41.png
new file mode 100755
index 00000000..9bdeb90a
Binary files /dev/null and b/static/icons/06001D41.png differ
diff --git a/static/icons/06001D42.png b/static/icons/06001D42.png
new file mode 100755
index 00000000..1a14375d
Binary files /dev/null and b/static/icons/06001D42.png differ
diff --git a/static/icons/06001D43.png b/static/icons/06001D43.png
new file mode 100755
index 00000000..c54d29cd
Binary files /dev/null and b/static/icons/06001D43.png differ
diff --git a/static/icons/06001D44.png b/static/icons/06001D44.png
new file mode 100755
index 00000000..c17a9258
Binary files /dev/null and b/static/icons/06001D44.png differ
diff --git a/static/icons/06001D45.png b/static/icons/06001D45.png
new file mode 100755
index 00000000..29965ac3
Binary files /dev/null and b/static/icons/06001D45.png differ
diff --git a/static/icons/06001D46.png b/static/icons/06001D46.png
new file mode 100755
index 00000000..8e7a5a7e
Binary files /dev/null and b/static/icons/06001D46.png differ
diff --git a/static/icons/06001D47.png b/static/icons/06001D47.png
new file mode 100755
index 00000000..e54dd270
Binary files /dev/null and b/static/icons/06001D47.png differ
diff --git a/static/icons/06001D48.png b/static/icons/06001D48.png
new file mode 100755
index 00000000..93742301
Binary files /dev/null and b/static/icons/06001D48.png differ
diff --git a/static/icons/06001D49.png b/static/icons/06001D49.png
new file mode 100755
index 00000000..2e40c414
Binary files /dev/null and b/static/icons/06001D49.png differ
diff --git a/static/icons/06001D4A.png b/static/icons/06001D4A.png
new file mode 100755
index 00000000..fd5223b7
Binary files /dev/null and b/static/icons/06001D4A.png differ
diff --git a/static/icons/06001D4B.png b/static/icons/06001D4B.png
new file mode 100755
index 00000000..5aabca49
Binary files /dev/null and b/static/icons/06001D4B.png differ
diff --git a/static/icons/06001D4C.png b/static/icons/06001D4C.png
new file mode 100755
index 00000000..e7fbdaa1
Binary files /dev/null and b/static/icons/06001D4C.png differ
diff --git a/static/icons/06001D4D.png b/static/icons/06001D4D.png
new file mode 100755
index 00000000..55038d58
Binary files /dev/null and b/static/icons/06001D4D.png differ
diff --git a/static/icons/06001D4E.png b/static/icons/06001D4E.png
new file mode 100755
index 00000000..7501a47c
Binary files /dev/null and b/static/icons/06001D4E.png differ
diff --git a/static/icons/06001D4F.png b/static/icons/06001D4F.png
new file mode 100755
index 00000000..9af9a67a
Binary files /dev/null and b/static/icons/06001D4F.png differ
diff --git a/static/icons/06001D50.png b/static/icons/06001D50.png
new file mode 100755
index 00000000..4a2180ba
Binary files /dev/null and b/static/icons/06001D50.png differ
diff --git a/static/icons/06001D51.png b/static/icons/06001D51.png
new file mode 100755
index 00000000..aabf477d
Binary files /dev/null and b/static/icons/06001D51.png differ
diff --git a/static/icons/06001D52.png b/static/icons/06001D52.png
new file mode 100755
index 00000000..90228431
Binary files /dev/null and b/static/icons/06001D52.png differ
diff --git a/static/icons/06001D53.png b/static/icons/06001D53.png
new file mode 100755
index 00000000..e232250f
Binary files /dev/null and b/static/icons/06001D53.png differ
diff --git a/static/icons/06001D55.png b/static/icons/06001D55.png
new file mode 100755
index 00000000..d2bc41e5
Binary files /dev/null and b/static/icons/06001D55.png differ
diff --git a/static/icons/06001D56.png b/static/icons/06001D56.png
new file mode 100755
index 00000000..67b5d223
Binary files /dev/null and b/static/icons/06001D56.png differ
diff --git a/static/icons/06001D57.png b/static/icons/06001D57.png
new file mode 100755
index 00000000..d7d708ff
Binary files /dev/null and b/static/icons/06001D57.png differ
diff --git a/static/icons/06001D58.png b/static/icons/06001D58.png
new file mode 100755
index 00000000..653a7fec
Binary files /dev/null and b/static/icons/06001D58.png differ
diff --git a/static/icons/06001D59.png b/static/icons/06001D59.png
new file mode 100755
index 00000000..f59ad3ed
Binary files /dev/null and b/static/icons/06001D59.png differ
diff --git a/static/icons/06001D5A.png b/static/icons/06001D5A.png
new file mode 100755
index 00000000..f5f05bd7
Binary files /dev/null and b/static/icons/06001D5A.png differ
diff --git a/static/icons/06001D5B.png b/static/icons/06001D5B.png
new file mode 100755
index 00000000..cbe7a4bd
Binary files /dev/null and b/static/icons/06001D5B.png differ
diff --git a/static/icons/06001D5C.png b/static/icons/06001D5C.png
new file mode 100755
index 00000000..16e656a2
Binary files /dev/null and b/static/icons/06001D5C.png differ
diff --git a/static/icons/06001D5D.png b/static/icons/06001D5D.png
new file mode 100755
index 00000000..a5f50710
Binary files /dev/null and b/static/icons/06001D5D.png differ
diff --git a/static/icons/06001D5E.png b/static/icons/06001D5E.png
new file mode 100755
index 00000000..e66e84f4
Binary files /dev/null and b/static/icons/06001D5E.png differ
diff --git a/static/icons/06001D5F.png b/static/icons/06001D5F.png
new file mode 100755
index 00000000..1929f154
Binary files /dev/null and b/static/icons/06001D5F.png differ
diff --git a/static/icons/06001D60.png b/static/icons/06001D60.png
new file mode 100755
index 00000000..0a294fbc
Binary files /dev/null and b/static/icons/06001D60.png differ
diff --git a/static/icons/06001D61.png b/static/icons/06001D61.png
new file mode 100755
index 00000000..90f080b4
Binary files /dev/null and b/static/icons/06001D61.png differ
diff --git a/static/icons/06001D62.png b/static/icons/06001D62.png
new file mode 100755
index 00000000..0a4d6f61
Binary files /dev/null and b/static/icons/06001D62.png differ
diff --git a/static/icons/06001D63.png b/static/icons/06001D63.png
new file mode 100755
index 00000000..54eab762
Binary files /dev/null and b/static/icons/06001D63.png differ
diff --git a/static/icons/06001D64.png b/static/icons/06001D64.png
new file mode 100755
index 00000000..8bc32303
Binary files /dev/null and b/static/icons/06001D64.png differ
diff --git a/static/icons/06001D65.png b/static/icons/06001D65.png
new file mode 100755
index 00000000..bd9b4a46
Binary files /dev/null and b/static/icons/06001D65.png differ
diff --git a/static/icons/06001D67.png b/static/icons/06001D67.png
new file mode 100755
index 00000000..dd0ac9a1
Binary files /dev/null and b/static/icons/06001D67.png differ
diff --git a/static/icons/06001D68.png b/static/icons/06001D68.png
new file mode 100755
index 00000000..3149a8af
Binary files /dev/null and b/static/icons/06001D68.png differ
diff --git a/static/icons/06001D69.png b/static/icons/06001D69.png
new file mode 100755
index 00000000..b1f8542b
Binary files /dev/null and b/static/icons/06001D69.png differ
diff --git a/static/icons/06001D6A.png b/static/icons/06001D6A.png
new file mode 100755
index 00000000..e6f91dbb
Binary files /dev/null and b/static/icons/06001D6A.png differ
diff --git a/static/icons/06001D6B.png b/static/icons/06001D6B.png
new file mode 100755
index 00000000..19303072
Binary files /dev/null and b/static/icons/06001D6B.png differ
diff --git a/static/icons/06001D6C.png b/static/icons/06001D6C.png
new file mode 100755
index 00000000..afbb27b1
Binary files /dev/null and b/static/icons/06001D6C.png differ
diff --git a/static/icons/06001D6D.png b/static/icons/06001D6D.png
new file mode 100755
index 00000000..584c803f
Binary files /dev/null and b/static/icons/06001D6D.png differ
diff --git a/static/icons/06001D6E.png b/static/icons/06001D6E.png
new file mode 100755
index 00000000..3c9ff30c
Binary files /dev/null and b/static/icons/06001D6E.png differ
diff --git a/static/icons/06001D71.png b/static/icons/06001D71.png
new file mode 100755
index 00000000..118838f6
Binary files /dev/null and b/static/icons/06001D71.png differ
diff --git a/static/icons/06001D72.png b/static/icons/06001D72.png
new file mode 100755
index 00000000..85c4cbf4
Binary files /dev/null and b/static/icons/06001D72.png differ
diff --git a/static/icons/06001D75.png b/static/icons/06001D75.png
new file mode 100755
index 00000000..37c7b538
Binary files /dev/null and b/static/icons/06001D75.png differ
diff --git a/static/icons/06001D77.png b/static/icons/06001D77.png
new file mode 100755
index 00000000..2f14fe2a
Binary files /dev/null and b/static/icons/06001D77.png differ
diff --git a/static/icons/06001D78.png b/static/icons/06001D78.png
new file mode 100755
index 00000000..6fd56487
Binary files /dev/null and b/static/icons/06001D78.png differ
diff --git a/static/icons/06001D79.png b/static/icons/06001D79.png
new file mode 100755
index 00000000..ddaa6a16
Binary files /dev/null and b/static/icons/06001D79.png differ
diff --git a/static/icons/06001D7A.png b/static/icons/06001D7A.png
new file mode 100755
index 00000000..de99cd2f
Binary files /dev/null and b/static/icons/06001D7A.png differ
diff --git a/static/icons/06001D7B.png b/static/icons/06001D7B.png
new file mode 100755
index 00000000..7946a4ea
Binary files /dev/null and b/static/icons/06001D7B.png differ
diff --git a/static/icons/06001D7C.png b/static/icons/06001D7C.png
new file mode 100755
index 00000000..4c2b6acc
Binary files /dev/null and b/static/icons/06001D7C.png differ
diff --git a/static/icons/06001D7D.png b/static/icons/06001D7D.png
new file mode 100755
index 00000000..af7162d2
Binary files /dev/null and b/static/icons/06001D7D.png differ
diff --git a/static/icons/06001D7E.png b/static/icons/06001D7E.png
new file mode 100755
index 00000000..27306b65
Binary files /dev/null and b/static/icons/06001D7E.png differ
diff --git a/static/icons/06001D7F.png b/static/icons/06001D7F.png
new file mode 100755
index 00000000..16633696
Binary files /dev/null and b/static/icons/06001D7F.png differ
diff --git a/static/icons/06001D80.png b/static/icons/06001D80.png
new file mode 100755
index 00000000..b1acbef4
Binary files /dev/null and b/static/icons/06001D80.png differ
diff --git a/static/icons/06001D81.png b/static/icons/06001D81.png
new file mode 100755
index 00000000..f5e8a8f9
Binary files /dev/null and b/static/icons/06001D81.png differ
diff --git a/static/icons/06001D82.png b/static/icons/06001D82.png
new file mode 100755
index 00000000..1cf1db0c
Binary files /dev/null and b/static/icons/06001D82.png differ
diff --git a/static/icons/06001D83.png b/static/icons/06001D83.png
new file mode 100755
index 00000000..1b08063e
Binary files /dev/null and b/static/icons/06001D83.png differ
diff --git a/static/icons/06001D84.png b/static/icons/06001D84.png
new file mode 100755
index 00000000..6c210904
Binary files /dev/null and b/static/icons/06001D84.png differ
diff --git a/static/icons/06001D85.png b/static/icons/06001D85.png
new file mode 100755
index 00000000..ebc1d222
Binary files /dev/null and b/static/icons/06001D85.png differ
diff --git a/static/icons/06001D86.png b/static/icons/06001D86.png
new file mode 100755
index 00000000..b557dd72
Binary files /dev/null and b/static/icons/06001D86.png differ
diff --git a/static/icons/06001D87.png b/static/icons/06001D87.png
new file mode 100755
index 00000000..1d6c6dc9
Binary files /dev/null and b/static/icons/06001D87.png differ
diff --git a/static/icons/06001D88.png b/static/icons/06001D88.png
new file mode 100755
index 00000000..2f30e701
Binary files /dev/null and b/static/icons/06001D88.png differ
diff --git a/static/icons/06001D89.png b/static/icons/06001D89.png
new file mode 100755
index 00000000..44257691
Binary files /dev/null and b/static/icons/06001D89.png differ
diff --git a/static/icons/06001D8B.png b/static/icons/06001D8B.png
new file mode 100755
index 00000000..980afa16
Binary files /dev/null and b/static/icons/06001D8B.png differ
diff --git a/static/icons/06001D8C.png b/static/icons/06001D8C.png
new file mode 100755
index 00000000..5e958a12
Binary files /dev/null and b/static/icons/06001D8C.png differ
diff --git a/static/icons/06001D8D.png b/static/icons/06001D8D.png
new file mode 100755
index 00000000..f4a337e8
Binary files /dev/null and b/static/icons/06001D8D.png differ
diff --git a/static/icons/06001D8E.png b/static/icons/06001D8E.png
new file mode 100755
index 00000000..a7af6a83
Binary files /dev/null and b/static/icons/06001D8E.png differ
diff --git a/static/icons/06001D8F.png b/static/icons/06001D8F.png
new file mode 100755
index 00000000..b2fc5543
Binary files /dev/null and b/static/icons/06001D8F.png differ
diff --git a/static/icons/06001D90.png b/static/icons/06001D90.png
new file mode 100755
index 00000000..a2659d53
Binary files /dev/null and b/static/icons/06001D90.png differ
diff --git a/static/icons/06001D93.png b/static/icons/06001D93.png
new file mode 100755
index 00000000..071e711d
Binary files /dev/null and b/static/icons/06001D93.png differ
diff --git a/static/icons/06001D94.png b/static/icons/06001D94.png
new file mode 100755
index 00000000..9ee0372a
Binary files /dev/null and b/static/icons/06001D94.png differ
diff --git a/static/icons/06001D95.png b/static/icons/06001D95.png
new file mode 100755
index 00000000..01720915
Binary files /dev/null and b/static/icons/06001D95.png differ
diff --git a/static/icons/06001D96.png b/static/icons/06001D96.png
new file mode 100755
index 00000000..b4cc2282
Binary files /dev/null and b/static/icons/06001D96.png differ
diff --git a/static/icons/06001D97.png b/static/icons/06001D97.png
new file mode 100755
index 00000000..f602a01b
Binary files /dev/null and b/static/icons/06001D97.png differ
diff --git a/static/icons/06001D98.png b/static/icons/06001D98.png
new file mode 100755
index 00000000..3c1236d4
Binary files /dev/null and b/static/icons/06001D98.png differ
diff --git a/static/icons/06001D99.png b/static/icons/06001D99.png
new file mode 100755
index 00000000..26661bae
Binary files /dev/null and b/static/icons/06001D99.png differ
diff --git a/static/icons/06001D9A.png b/static/icons/06001D9A.png
new file mode 100755
index 00000000..b818f83b
Binary files /dev/null and b/static/icons/06001D9A.png differ
diff --git a/static/icons/06001D9B.png b/static/icons/06001D9B.png
new file mode 100755
index 00000000..d7858cc6
Binary files /dev/null and b/static/icons/06001D9B.png differ
diff --git a/static/icons/06001D9C.png b/static/icons/06001D9C.png
new file mode 100755
index 00000000..b2a1e586
Binary files /dev/null and b/static/icons/06001D9C.png differ
diff --git a/static/icons/06001D9D.png b/static/icons/06001D9D.png
new file mode 100755
index 00000000..475e4370
Binary files /dev/null and b/static/icons/06001D9D.png differ
diff --git a/static/icons/06001D9E.png b/static/icons/06001D9E.png
new file mode 100755
index 00000000..2c682b18
Binary files /dev/null and b/static/icons/06001D9E.png differ
diff --git a/static/icons/06001D9F.png b/static/icons/06001D9F.png
new file mode 100755
index 00000000..404d7b58
Binary files /dev/null and b/static/icons/06001D9F.png differ
diff --git a/static/icons/06001DA0.png b/static/icons/06001DA0.png
new file mode 100755
index 00000000..37b65242
Binary files /dev/null and b/static/icons/06001DA0.png differ
diff --git a/static/icons/06001DA1.png b/static/icons/06001DA1.png
new file mode 100755
index 00000000..4a569330
Binary files /dev/null and b/static/icons/06001DA1.png differ
diff --git a/static/icons/06001DA2.png b/static/icons/06001DA2.png
new file mode 100755
index 00000000..8df25ccd
Binary files /dev/null and b/static/icons/06001DA2.png differ
diff --git a/static/icons/06001DA3.png b/static/icons/06001DA3.png
new file mode 100755
index 00000000..dbe2e025
Binary files /dev/null and b/static/icons/06001DA3.png differ
diff --git a/static/icons/06001DA4.png b/static/icons/06001DA4.png
new file mode 100755
index 00000000..ef5ca898
Binary files /dev/null and b/static/icons/06001DA4.png differ
diff --git a/static/icons/06001DA5.png b/static/icons/06001DA5.png
new file mode 100755
index 00000000..4682560a
Binary files /dev/null and b/static/icons/06001DA5.png differ
diff --git a/static/icons/06001DA6.png b/static/icons/06001DA6.png
new file mode 100755
index 00000000..7e87b40b
Binary files /dev/null and b/static/icons/06001DA6.png differ
diff --git a/static/icons/06001DA7.png b/static/icons/06001DA7.png
new file mode 100755
index 00000000..6956685a
Binary files /dev/null and b/static/icons/06001DA7.png differ
diff --git a/static/icons/06001DA8.png b/static/icons/06001DA8.png
new file mode 100755
index 00000000..e16a785f
Binary files /dev/null and b/static/icons/06001DA8.png differ
diff --git a/static/icons/06001DA9.png b/static/icons/06001DA9.png
new file mode 100755
index 00000000..22f849cc
Binary files /dev/null and b/static/icons/06001DA9.png differ
diff --git a/static/icons/06001DAA.png b/static/icons/06001DAA.png
new file mode 100755
index 00000000..b92c9589
Binary files /dev/null and b/static/icons/06001DAA.png differ
diff --git a/static/icons/06001DAB.png b/static/icons/06001DAB.png
new file mode 100755
index 00000000..d5e9cc2b
Binary files /dev/null and b/static/icons/06001DAB.png differ
diff --git a/static/icons/06001DAC.png b/static/icons/06001DAC.png
new file mode 100755
index 00000000..27e15419
Binary files /dev/null and b/static/icons/06001DAC.png differ
diff --git a/static/icons/06001DAD.png b/static/icons/06001DAD.png
new file mode 100755
index 00000000..6d3d2c3d
Binary files /dev/null and b/static/icons/06001DAD.png differ
diff --git a/static/icons/06001DAE.png b/static/icons/06001DAE.png
new file mode 100755
index 00000000..5887ab5c
Binary files /dev/null and b/static/icons/06001DAE.png differ
diff --git a/static/icons/06001DBE.png b/static/icons/06001DBE.png
new file mode 100755
index 00000000..38a00442
Binary files /dev/null and b/static/icons/06001DBE.png differ
diff --git a/static/icons/06001DC2.png b/static/icons/06001DC2.png
new file mode 100755
index 00000000..b0d8cd48
Binary files /dev/null and b/static/icons/06001DC2.png differ
diff --git a/static/icons/06001DC4.png b/static/icons/06001DC4.png
new file mode 100755
index 00000000..3e35e161
Binary files /dev/null and b/static/icons/06001DC4.png differ
diff --git a/static/icons/06001DC5.png b/static/icons/06001DC5.png
new file mode 100755
index 00000000..3cec522d
Binary files /dev/null and b/static/icons/06001DC5.png differ
diff --git a/static/icons/06001DC6.png b/static/icons/06001DC6.png
new file mode 100755
index 00000000..bd3ef21b
Binary files /dev/null and b/static/icons/06001DC6.png differ
diff --git a/static/icons/06001DC7.png b/static/icons/06001DC7.png
new file mode 100755
index 00000000..487f12f7
Binary files /dev/null and b/static/icons/06001DC7.png differ
diff --git a/static/icons/06001DC8.png b/static/icons/06001DC8.png
new file mode 100755
index 00000000..1adee7f3
Binary files /dev/null and b/static/icons/06001DC8.png differ
diff --git a/static/icons/06001DC9.png b/static/icons/06001DC9.png
new file mode 100755
index 00000000..9ba33ce1
Binary files /dev/null and b/static/icons/06001DC9.png differ
diff --git a/static/icons/06001DCA.png b/static/icons/06001DCA.png
new file mode 100755
index 00000000..23c6351b
Binary files /dev/null and b/static/icons/06001DCA.png differ
diff --git a/static/icons/06001DCB.png b/static/icons/06001DCB.png
new file mode 100755
index 00000000..df6da673
Binary files /dev/null and b/static/icons/06001DCB.png differ
diff --git a/static/icons/06001DCC.png b/static/icons/06001DCC.png
new file mode 100755
index 00000000..0371e825
Binary files /dev/null and b/static/icons/06001DCC.png differ
diff --git a/static/icons/06001DCD.png b/static/icons/06001DCD.png
new file mode 100755
index 00000000..094e7d8b
Binary files /dev/null and b/static/icons/06001DCD.png differ
diff --git a/static/icons/06001DCE.png b/static/icons/06001DCE.png
new file mode 100755
index 00000000..a12d5dc2
Binary files /dev/null and b/static/icons/06001DCE.png differ
diff --git a/static/icons/06001DCF.png b/static/icons/06001DCF.png
new file mode 100755
index 00000000..de4f69bb
Binary files /dev/null and b/static/icons/06001DCF.png differ
diff --git a/static/icons/06001DD0.png b/static/icons/06001DD0.png
new file mode 100755
index 00000000..07f95130
Binary files /dev/null and b/static/icons/06001DD0.png differ
diff --git a/static/icons/06001DD1.png b/static/icons/06001DD1.png
new file mode 100755
index 00000000..87e68349
Binary files /dev/null and b/static/icons/06001DD1.png differ
diff --git a/static/icons/06001DD2.png b/static/icons/06001DD2.png
new file mode 100755
index 00000000..499a48b1
Binary files /dev/null and b/static/icons/06001DD2.png differ
diff --git a/static/icons/06001DD3.png b/static/icons/06001DD3.png
new file mode 100755
index 00000000..7976dc17
Binary files /dev/null and b/static/icons/06001DD3.png differ
diff --git a/static/icons/06001DD4.png b/static/icons/06001DD4.png
new file mode 100755
index 00000000..ed3ac02d
Binary files /dev/null and b/static/icons/06001DD4.png differ
diff --git a/static/icons/06001DD5.png b/static/icons/06001DD5.png
new file mode 100755
index 00000000..37bfe1cb
Binary files /dev/null and b/static/icons/06001DD5.png differ
diff --git a/static/icons/06001DD6.png b/static/icons/06001DD6.png
new file mode 100755
index 00000000..dd5e1fdf
Binary files /dev/null and b/static/icons/06001DD6.png differ
diff --git a/static/icons/06001DD7.png b/static/icons/06001DD7.png
new file mode 100755
index 00000000..e4cf6d01
Binary files /dev/null and b/static/icons/06001DD7.png differ
diff --git a/static/icons/06001DD8.png b/static/icons/06001DD8.png
new file mode 100755
index 00000000..1331a5ec
Binary files /dev/null and b/static/icons/06001DD8.png differ
diff --git a/static/icons/06001DD9.png b/static/icons/06001DD9.png
new file mode 100755
index 00000000..37bd2765
Binary files /dev/null and b/static/icons/06001DD9.png differ
diff --git a/static/icons/06001DDA.png b/static/icons/06001DDA.png
new file mode 100755
index 00000000..e3e6cc01
Binary files /dev/null and b/static/icons/06001DDA.png differ
diff --git a/static/icons/06001DDB.png b/static/icons/06001DDB.png
new file mode 100755
index 00000000..9a38f670
Binary files /dev/null and b/static/icons/06001DDB.png differ
diff --git a/static/icons/06001DDC.png b/static/icons/06001DDC.png
new file mode 100755
index 00000000..13f779ae
Binary files /dev/null and b/static/icons/06001DDC.png differ
diff --git a/static/icons/06001DDD.png b/static/icons/06001DDD.png
new file mode 100755
index 00000000..d8fd3576
Binary files /dev/null and b/static/icons/06001DDD.png differ
diff --git a/static/icons/06001DDE.png b/static/icons/06001DDE.png
new file mode 100755
index 00000000..ffbd6620
Binary files /dev/null and b/static/icons/06001DDE.png differ
diff --git a/static/icons/06001DDF.png b/static/icons/06001DDF.png
new file mode 100755
index 00000000..af46a85b
Binary files /dev/null and b/static/icons/06001DDF.png differ
diff --git a/static/icons/06001DE0.png b/static/icons/06001DE0.png
new file mode 100755
index 00000000..74d3d326
Binary files /dev/null and b/static/icons/06001DE0.png differ
diff --git a/static/icons/06001DE1.png b/static/icons/06001DE1.png
new file mode 100755
index 00000000..8bdb0919
Binary files /dev/null and b/static/icons/06001DE1.png differ
diff --git a/static/icons/06001DE2.png b/static/icons/06001DE2.png
new file mode 100755
index 00000000..2aabf15e
Binary files /dev/null and b/static/icons/06001DE2.png differ
diff --git a/static/icons/06001DE3.png b/static/icons/06001DE3.png
new file mode 100755
index 00000000..4fdbcf98
Binary files /dev/null and b/static/icons/06001DE3.png differ
diff --git a/static/icons/06001DE4.png b/static/icons/06001DE4.png
new file mode 100755
index 00000000..f3247ded
Binary files /dev/null and b/static/icons/06001DE4.png differ
diff --git a/static/icons/06001DE5.png b/static/icons/06001DE5.png
new file mode 100755
index 00000000..3c469fbb
Binary files /dev/null and b/static/icons/06001DE5.png differ
diff --git a/static/icons/06001DE6.png b/static/icons/06001DE6.png
new file mode 100755
index 00000000..cb08f166
Binary files /dev/null and b/static/icons/06001DE6.png differ
diff --git a/static/icons/06001DE7.png b/static/icons/06001DE7.png
new file mode 100755
index 00000000..5f615a21
Binary files /dev/null and b/static/icons/06001DE7.png differ
diff --git a/static/icons/06001DE8.png b/static/icons/06001DE8.png
new file mode 100755
index 00000000..0e748a8f
Binary files /dev/null and b/static/icons/06001DE8.png differ
diff --git a/static/icons/06001DE9.png b/static/icons/06001DE9.png
new file mode 100755
index 00000000..95c1c273
Binary files /dev/null and b/static/icons/06001DE9.png differ
diff --git a/static/icons/06001DEA.png b/static/icons/06001DEA.png
new file mode 100755
index 00000000..c32f7ff5
Binary files /dev/null and b/static/icons/06001DEA.png differ
diff --git a/static/icons/06001DEB.png b/static/icons/06001DEB.png
new file mode 100755
index 00000000..65763dfa
Binary files /dev/null and b/static/icons/06001DEB.png differ
diff --git a/static/icons/06001DEC.png b/static/icons/06001DEC.png
new file mode 100755
index 00000000..b8ad55c8
Binary files /dev/null and b/static/icons/06001DEC.png differ
diff --git a/static/icons/06001DED.png b/static/icons/06001DED.png
new file mode 100755
index 00000000..e6474d14
Binary files /dev/null and b/static/icons/06001DED.png differ
diff --git a/static/icons/06001DEE.png b/static/icons/06001DEE.png
new file mode 100755
index 00000000..0a39f252
Binary files /dev/null and b/static/icons/06001DEE.png differ
diff --git a/static/icons/06001DEF.png b/static/icons/06001DEF.png
new file mode 100755
index 00000000..646bd565
Binary files /dev/null and b/static/icons/06001DEF.png differ
diff --git a/static/icons/06001DF0.png b/static/icons/06001DF0.png
new file mode 100755
index 00000000..24b072d0
Binary files /dev/null and b/static/icons/06001DF0.png differ
diff --git a/static/icons/06001DF1.png b/static/icons/06001DF1.png
new file mode 100755
index 00000000..a2a531df
Binary files /dev/null and b/static/icons/06001DF1.png differ
diff --git a/static/icons/06001DF2.png b/static/icons/06001DF2.png
new file mode 100755
index 00000000..cb212fd9
Binary files /dev/null and b/static/icons/06001DF2.png differ
diff --git a/static/icons/06001DF4.png b/static/icons/06001DF4.png
new file mode 100755
index 00000000..487b758f
Binary files /dev/null and b/static/icons/06001DF4.png differ
diff --git a/static/icons/06001DF5.png b/static/icons/06001DF5.png
new file mode 100755
index 00000000..4e82a264
Binary files /dev/null and b/static/icons/06001DF5.png differ
diff --git a/static/icons/06001DF7.png b/static/icons/06001DF7.png
new file mode 100755
index 00000000..afe08362
Binary files /dev/null and b/static/icons/06001DF7.png differ
diff --git a/static/icons/06001DF8.png b/static/icons/06001DF8.png
new file mode 100755
index 00000000..c308fdce
Binary files /dev/null and b/static/icons/06001DF8.png differ
diff --git a/static/icons/06001DF9.png b/static/icons/06001DF9.png
new file mode 100755
index 00000000..491fbae6
Binary files /dev/null and b/static/icons/06001DF9.png differ
diff --git a/static/icons/06001DFA.png b/static/icons/06001DFA.png
new file mode 100755
index 00000000..e62a7022
Binary files /dev/null and b/static/icons/06001DFA.png differ
diff --git a/static/icons/06001DFB.png b/static/icons/06001DFB.png
new file mode 100755
index 00000000..9f68efbf
Binary files /dev/null and b/static/icons/06001DFB.png differ
diff --git a/static/icons/06001DFC.png b/static/icons/06001DFC.png
new file mode 100755
index 00000000..32337250
Binary files /dev/null and b/static/icons/06001DFC.png differ
diff --git a/static/icons/06001DFD.png b/static/icons/06001DFD.png
new file mode 100755
index 00000000..6ed8bcae
Binary files /dev/null and b/static/icons/06001DFD.png differ
diff --git a/static/icons/06001DFE.png b/static/icons/06001DFE.png
new file mode 100755
index 00000000..316b4b1c
Binary files /dev/null and b/static/icons/06001DFE.png differ
diff --git a/static/icons/06001DFF.png b/static/icons/06001DFF.png
new file mode 100755
index 00000000..6235ed68
Binary files /dev/null and b/static/icons/06001DFF.png differ
diff --git a/static/icons/06001E00.png b/static/icons/06001E00.png
new file mode 100755
index 00000000..79b48ba1
Binary files /dev/null and b/static/icons/06001E00.png differ
diff --git a/static/icons/06001E01.png b/static/icons/06001E01.png
new file mode 100755
index 00000000..885efd63
Binary files /dev/null and b/static/icons/06001E01.png differ
diff --git a/static/icons/06001E02.png b/static/icons/06001E02.png
new file mode 100755
index 00000000..17f8f6bf
Binary files /dev/null and b/static/icons/06001E02.png differ
diff --git a/static/icons/06001E03.png b/static/icons/06001E03.png
new file mode 100755
index 00000000..f5ff5bb3
Binary files /dev/null and b/static/icons/06001E03.png differ
diff --git a/static/icons/06001E04.png b/static/icons/06001E04.png
new file mode 100755
index 00000000..fc46e628
Binary files /dev/null and b/static/icons/06001E04.png differ
diff --git a/static/icons/06001E05.png b/static/icons/06001E05.png
new file mode 100755
index 00000000..30ee0b52
Binary files /dev/null and b/static/icons/06001E05.png differ
diff --git a/static/icons/06001E06.png b/static/icons/06001E06.png
new file mode 100755
index 00000000..89ade714
Binary files /dev/null and b/static/icons/06001E06.png differ
diff --git a/static/icons/06001E07.png b/static/icons/06001E07.png
new file mode 100755
index 00000000..62d2dca2
Binary files /dev/null and b/static/icons/06001E07.png differ
diff --git a/static/icons/06001E08.png b/static/icons/06001E08.png
new file mode 100755
index 00000000..ff71df70
Binary files /dev/null and b/static/icons/06001E08.png differ
diff --git a/static/icons/06001E09.png b/static/icons/06001E09.png
new file mode 100755
index 00000000..1b298c2e
Binary files /dev/null and b/static/icons/06001E09.png differ
diff --git a/static/icons/06001E0A.png b/static/icons/06001E0A.png
new file mode 100755
index 00000000..c8816a82
Binary files /dev/null and b/static/icons/06001E0A.png differ
diff --git a/static/icons/06001E0B.png b/static/icons/06001E0B.png
new file mode 100755
index 00000000..d74d823b
Binary files /dev/null and b/static/icons/06001E0B.png differ
diff --git a/static/icons/06001E0C.png b/static/icons/06001E0C.png
new file mode 100755
index 00000000..84d86e44
Binary files /dev/null and b/static/icons/06001E0C.png differ
diff --git a/static/icons/06001E0D.png b/static/icons/06001E0D.png
new file mode 100755
index 00000000..4b66b44f
Binary files /dev/null and b/static/icons/06001E0D.png differ
diff --git a/static/icons/06001E0E.png b/static/icons/06001E0E.png
new file mode 100755
index 00000000..1dd32e91
Binary files /dev/null and b/static/icons/06001E0E.png differ
diff --git a/static/icons/06001E0F.png b/static/icons/06001E0F.png
new file mode 100755
index 00000000..cd23c84e
Binary files /dev/null and b/static/icons/06001E0F.png differ
diff --git a/static/icons/06001E10.png b/static/icons/06001E10.png
new file mode 100755
index 00000000..49d80826
Binary files /dev/null and b/static/icons/06001E10.png differ
diff --git a/static/icons/06001E11.png b/static/icons/06001E11.png
new file mode 100755
index 00000000..919c5e43
Binary files /dev/null and b/static/icons/06001E11.png differ
diff --git a/static/icons/06001E12.png b/static/icons/06001E12.png
new file mode 100755
index 00000000..0ccfca4b
Binary files /dev/null and b/static/icons/06001E12.png differ
diff --git a/static/icons/06001E13.png b/static/icons/06001E13.png
new file mode 100755
index 00000000..e8075298
Binary files /dev/null and b/static/icons/06001E13.png differ
diff --git a/static/icons/06001E14.png b/static/icons/06001E14.png
new file mode 100755
index 00000000..d45dc700
Binary files /dev/null and b/static/icons/06001E14.png differ
diff --git a/static/icons/06001E15.png b/static/icons/06001E15.png
new file mode 100755
index 00000000..3b2d49f9
Binary files /dev/null and b/static/icons/06001E15.png differ
diff --git a/static/icons/06001E16.png b/static/icons/06001E16.png
new file mode 100755
index 00000000..4b652cea
Binary files /dev/null and b/static/icons/06001E16.png differ
diff --git a/static/icons/06001E17.png b/static/icons/06001E17.png
new file mode 100755
index 00000000..55914a9e
Binary files /dev/null and b/static/icons/06001E17.png differ
diff --git a/static/icons/06001E18.png b/static/icons/06001E18.png
new file mode 100755
index 00000000..818fcfd9
Binary files /dev/null and b/static/icons/06001E18.png differ
diff --git a/static/icons/06001E19.png b/static/icons/06001E19.png
new file mode 100755
index 00000000..462c4393
Binary files /dev/null and b/static/icons/06001E19.png differ
diff --git a/static/icons/06001E1A.png b/static/icons/06001E1A.png
new file mode 100755
index 00000000..f4900c8a
Binary files /dev/null and b/static/icons/06001E1A.png differ
diff --git a/static/icons/06001E1B.png b/static/icons/06001E1B.png
new file mode 100755
index 00000000..3b5abeb9
Binary files /dev/null and b/static/icons/06001E1B.png differ
diff --git a/static/icons/06001E1C.png b/static/icons/06001E1C.png
new file mode 100755
index 00000000..8ed81bd6
Binary files /dev/null and b/static/icons/06001E1C.png differ
diff --git a/static/icons/06001E1D.png b/static/icons/06001E1D.png
new file mode 100755
index 00000000..72d3e92d
Binary files /dev/null and b/static/icons/06001E1D.png differ
diff --git a/static/icons/06001E1E.png b/static/icons/06001E1E.png
new file mode 100755
index 00000000..0ce23819
Binary files /dev/null and b/static/icons/06001E1E.png differ
diff --git a/static/icons/06001E1F.png b/static/icons/06001E1F.png
new file mode 100755
index 00000000..ba92f163
Binary files /dev/null and b/static/icons/06001E1F.png differ
diff --git a/static/icons/06001E20.png b/static/icons/06001E20.png
new file mode 100755
index 00000000..221556aa
Binary files /dev/null and b/static/icons/06001E20.png differ
diff --git a/static/icons/06001E21.png b/static/icons/06001E21.png
new file mode 100755
index 00000000..7a9dcebc
Binary files /dev/null and b/static/icons/06001E21.png differ
diff --git a/static/icons/06001E22.png b/static/icons/06001E22.png
new file mode 100755
index 00000000..bc5449c5
Binary files /dev/null and b/static/icons/06001E22.png differ
diff --git a/static/icons/06001E23.png b/static/icons/06001E23.png
new file mode 100755
index 00000000..4b5b7276
Binary files /dev/null and b/static/icons/06001E23.png differ
diff --git a/static/icons/06001E24.png b/static/icons/06001E24.png
new file mode 100755
index 00000000..64310254
Binary files /dev/null and b/static/icons/06001E24.png differ
diff --git a/static/icons/06001E25.png b/static/icons/06001E25.png
new file mode 100755
index 00000000..15ca2dbf
Binary files /dev/null and b/static/icons/06001E25.png differ
diff --git a/static/icons/06001E26.png b/static/icons/06001E26.png
new file mode 100755
index 00000000..eaec1360
Binary files /dev/null and b/static/icons/06001E26.png differ
diff --git a/static/icons/06001E27.png b/static/icons/06001E27.png
new file mode 100755
index 00000000..33d9eddb
Binary files /dev/null and b/static/icons/06001E27.png differ
diff --git a/static/icons/06001E28.png b/static/icons/06001E28.png
new file mode 100755
index 00000000..897c1e58
Binary files /dev/null and b/static/icons/06001E28.png differ
diff --git a/static/icons/06001E29.png b/static/icons/06001E29.png
new file mode 100755
index 00000000..1c9887da
Binary files /dev/null and b/static/icons/06001E29.png differ
diff --git a/static/icons/06001E2A.png b/static/icons/06001E2A.png
new file mode 100755
index 00000000..5d659bd9
Binary files /dev/null and b/static/icons/06001E2A.png differ
diff --git a/static/icons/06001E2B.png b/static/icons/06001E2B.png
new file mode 100755
index 00000000..07d327d6
Binary files /dev/null and b/static/icons/06001E2B.png differ
diff --git a/static/icons/06001E2C.png b/static/icons/06001E2C.png
new file mode 100755
index 00000000..d2e200cb
Binary files /dev/null and b/static/icons/06001E2C.png differ
diff --git a/static/icons/06001E2D.png b/static/icons/06001E2D.png
new file mode 100755
index 00000000..7f2c52e0
Binary files /dev/null and b/static/icons/06001E2D.png differ
diff --git a/static/icons/06001E2E.png b/static/icons/06001E2E.png
new file mode 100755
index 00000000..aa3591ec
Binary files /dev/null and b/static/icons/06001E2E.png differ
diff --git a/static/icons/06001E2F.png b/static/icons/06001E2F.png
new file mode 100755
index 00000000..cf52f2c9
Binary files /dev/null and b/static/icons/06001E2F.png differ
diff --git a/static/icons/06001E30.png b/static/icons/06001E30.png
new file mode 100755
index 00000000..829169fa
Binary files /dev/null and b/static/icons/06001E30.png differ
diff --git a/static/icons/06001E31.png b/static/icons/06001E31.png
new file mode 100755
index 00000000..c32ffa17
Binary files /dev/null and b/static/icons/06001E31.png differ
diff --git a/static/icons/06001E32.png b/static/icons/06001E32.png
new file mode 100755
index 00000000..ea9f3d5c
Binary files /dev/null and b/static/icons/06001E32.png differ
diff --git a/static/icons/06001E33.png b/static/icons/06001E33.png
new file mode 100755
index 00000000..2eb66340
Binary files /dev/null and b/static/icons/06001E33.png differ
diff --git a/static/icons/06001E34.png b/static/icons/06001E34.png
new file mode 100755
index 00000000..e72b07c5
Binary files /dev/null and b/static/icons/06001E34.png differ
diff --git a/static/icons/06001E35.png b/static/icons/06001E35.png
new file mode 100755
index 00000000..a6dd25a8
Binary files /dev/null and b/static/icons/06001E35.png differ
diff --git a/static/icons/06001E36.png b/static/icons/06001E36.png
new file mode 100755
index 00000000..d77cd459
Binary files /dev/null and b/static/icons/06001E36.png differ
diff --git a/static/icons/06001E37.png b/static/icons/06001E37.png
new file mode 100755
index 00000000..7cf8c827
Binary files /dev/null and b/static/icons/06001E37.png differ
diff --git a/static/icons/06001E38.png b/static/icons/06001E38.png
new file mode 100755
index 00000000..d9ac059b
Binary files /dev/null and b/static/icons/06001E38.png differ
diff --git a/static/icons/06001E39.png b/static/icons/06001E39.png
new file mode 100755
index 00000000..09af6cb9
Binary files /dev/null and b/static/icons/06001E39.png differ
diff --git a/static/icons/06001E3C.png b/static/icons/06001E3C.png
new file mode 100755
index 00000000..86eeaaa9
Binary files /dev/null and b/static/icons/06001E3C.png differ
diff --git a/static/icons/06001E3D.png b/static/icons/06001E3D.png
new file mode 100755
index 00000000..6223366e
Binary files /dev/null and b/static/icons/06001E3D.png differ
diff --git a/static/icons/06001E3E.png b/static/icons/06001E3E.png
new file mode 100755
index 00000000..20d8e658
Binary files /dev/null and b/static/icons/06001E3E.png differ
diff --git a/static/icons/06001E3F.png b/static/icons/06001E3F.png
new file mode 100755
index 00000000..850bb660
Binary files /dev/null and b/static/icons/06001E3F.png differ
diff --git a/static/icons/06001E40.png b/static/icons/06001E40.png
new file mode 100755
index 00000000..d771a919
Binary files /dev/null and b/static/icons/06001E40.png differ
diff --git a/static/icons/06001E41.png b/static/icons/06001E41.png
new file mode 100755
index 00000000..455d03d3
Binary files /dev/null and b/static/icons/06001E41.png differ
diff --git a/static/icons/06001E43.png b/static/icons/06001E43.png
new file mode 100755
index 00000000..4f148809
Binary files /dev/null and b/static/icons/06001E43.png differ
diff --git a/static/icons/06001E44.png b/static/icons/06001E44.png
new file mode 100755
index 00000000..f99665cd
Binary files /dev/null and b/static/icons/06001E44.png differ
diff --git a/static/icons/06001E45.png b/static/icons/06001E45.png
new file mode 100755
index 00000000..bd0b73ef
Binary files /dev/null and b/static/icons/06001E45.png differ
diff --git a/static/icons/06001E46.png b/static/icons/06001E46.png
new file mode 100755
index 00000000..761acc67
Binary files /dev/null and b/static/icons/06001E46.png differ
diff --git a/static/icons/06001E47.png b/static/icons/06001E47.png
new file mode 100755
index 00000000..ab6ecd7b
Binary files /dev/null and b/static/icons/06001E47.png differ
diff --git a/static/icons/06001E48.png b/static/icons/06001E48.png
new file mode 100755
index 00000000..710ebd2e
Binary files /dev/null and b/static/icons/06001E48.png differ
diff --git a/static/icons/06001E49.png b/static/icons/06001E49.png
new file mode 100755
index 00000000..e8dfb5d0
Binary files /dev/null and b/static/icons/06001E49.png differ
diff --git a/static/icons/06001E4A.png b/static/icons/06001E4A.png
new file mode 100755
index 00000000..2c7570db
Binary files /dev/null and b/static/icons/06001E4A.png differ
diff --git a/static/icons/06001E4B.png b/static/icons/06001E4B.png
new file mode 100755
index 00000000..2660dc60
Binary files /dev/null and b/static/icons/06001E4B.png differ
diff --git a/static/icons/06001E4C.png b/static/icons/06001E4C.png
new file mode 100755
index 00000000..beeef6a7
Binary files /dev/null and b/static/icons/06001E4C.png differ
diff --git a/static/icons/06001E4D.png b/static/icons/06001E4D.png
new file mode 100755
index 00000000..73f6a6a0
Binary files /dev/null and b/static/icons/06001E4D.png differ
diff --git a/static/icons/06001E4E.png b/static/icons/06001E4E.png
new file mode 100755
index 00000000..f7b81159
Binary files /dev/null and b/static/icons/06001E4E.png differ
diff --git a/static/icons/06001E4F.png b/static/icons/06001E4F.png
new file mode 100755
index 00000000..d1304e31
Binary files /dev/null and b/static/icons/06001E4F.png differ
diff --git a/static/icons/06001E50.png b/static/icons/06001E50.png
new file mode 100755
index 00000000..5f8d0032
Binary files /dev/null and b/static/icons/06001E50.png differ
diff --git a/static/icons/06001E52.png b/static/icons/06001E52.png
new file mode 100755
index 00000000..0da05326
Binary files /dev/null and b/static/icons/06001E52.png differ
diff --git a/static/icons/06001E53.png b/static/icons/06001E53.png
new file mode 100755
index 00000000..4d9174c2
Binary files /dev/null and b/static/icons/06001E53.png differ
diff --git a/static/icons/06001E54.png b/static/icons/06001E54.png
new file mode 100755
index 00000000..92417ea8
Binary files /dev/null and b/static/icons/06001E54.png differ
diff --git a/static/icons/06001E56.png b/static/icons/06001E56.png
new file mode 100755
index 00000000..36755943
Binary files /dev/null and b/static/icons/06001E56.png differ
diff --git a/static/icons/06001E57.png b/static/icons/06001E57.png
new file mode 100755
index 00000000..3d8dfc55
Binary files /dev/null and b/static/icons/06001E57.png differ
diff --git a/static/icons/06001E58.png b/static/icons/06001E58.png
new file mode 100755
index 00000000..cd6b5b6b
Binary files /dev/null and b/static/icons/06001E58.png differ
diff --git a/static/icons/06001E59.png b/static/icons/06001E59.png
new file mode 100755
index 00000000..39d3f6f3
Binary files /dev/null and b/static/icons/06001E59.png differ
diff --git a/static/icons/06001E5A.png b/static/icons/06001E5A.png
new file mode 100755
index 00000000..cf6a918a
Binary files /dev/null and b/static/icons/06001E5A.png differ
diff --git a/static/icons/06001E5B.png b/static/icons/06001E5B.png
new file mode 100755
index 00000000..37894705
Binary files /dev/null and b/static/icons/06001E5B.png differ
diff --git a/static/icons/06001E5C.png b/static/icons/06001E5C.png
new file mode 100755
index 00000000..950b27cd
Binary files /dev/null and b/static/icons/06001E5C.png differ
diff --git a/static/icons/06001E5D.png b/static/icons/06001E5D.png
new file mode 100755
index 00000000..c7a6d5b4
Binary files /dev/null and b/static/icons/06001E5D.png differ
diff --git a/static/icons/06001E5E.png b/static/icons/06001E5E.png
new file mode 100755
index 00000000..166fd113
Binary files /dev/null and b/static/icons/06001E5E.png differ
diff --git a/static/icons/06001E5F.png b/static/icons/06001E5F.png
new file mode 100755
index 00000000..77fa23e4
Binary files /dev/null and b/static/icons/06001E5F.png differ
diff --git a/static/icons/06001E60.png b/static/icons/06001E60.png
new file mode 100755
index 00000000..f235b183
Binary files /dev/null and b/static/icons/06001E60.png differ
diff --git a/static/icons/06001E61.png b/static/icons/06001E61.png
new file mode 100755
index 00000000..ec6a6227
Binary files /dev/null and b/static/icons/06001E61.png differ
diff --git a/static/icons/06001E62.png b/static/icons/06001E62.png
new file mode 100755
index 00000000..c714e495
Binary files /dev/null and b/static/icons/06001E62.png differ
diff --git a/static/icons/06001E63.png b/static/icons/06001E63.png
new file mode 100755
index 00000000..61f6470a
Binary files /dev/null and b/static/icons/06001E63.png differ
diff --git a/static/icons/06001E64.png b/static/icons/06001E64.png
new file mode 100755
index 00000000..71acf735
Binary files /dev/null and b/static/icons/06001E64.png differ
diff --git a/static/icons/06001E65.png b/static/icons/06001E65.png
new file mode 100755
index 00000000..823fd42e
Binary files /dev/null and b/static/icons/06001E65.png differ
diff --git a/static/icons/06001E66.png b/static/icons/06001E66.png
new file mode 100755
index 00000000..a33ee6bb
Binary files /dev/null and b/static/icons/06001E66.png differ
diff --git a/static/icons/06001E67.png b/static/icons/06001E67.png
new file mode 100755
index 00000000..5adb0fa6
Binary files /dev/null and b/static/icons/06001E67.png differ
diff --git a/static/icons/06001E69.png b/static/icons/06001E69.png
new file mode 100755
index 00000000..8e24918c
Binary files /dev/null and b/static/icons/06001E69.png differ
diff --git a/static/icons/06001E6A.png b/static/icons/06001E6A.png
new file mode 100755
index 00000000..8cec5297
Binary files /dev/null and b/static/icons/06001E6A.png differ
diff --git a/static/icons/06001E6B.png b/static/icons/06001E6B.png
new file mode 100755
index 00000000..96c23b97
Binary files /dev/null and b/static/icons/06001E6B.png differ
diff --git a/static/icons/06001E6C.png b/static/icons/06001E6C.png
new file mode 100755
index 00000000..f94b1b46
Binary files /dev/null and b/static/icons/06001E6C.png differ
diff --git a/static/icons/06001E6D.png b/static/icons/06001E6D.png
new file mode 100755
index 00000000..7f5f8631
Binary files /dev/null and b/static/icons/06001E6D.png differ
diff --git a/static/icons/06001E6E.png b/static/icons/06001E6E.png
new file mode 100755
index 00000000..d31a7425
Binary files /dev/null and b/static/icons/06001E6E.png differ
diff --git a/static/icons/06001E6F.png b/static/icons/06001E6F.png
new file mode 100755
index 00000000..62f89d53
Binary files /dev/null and b/static/icons/06001E6F.png differ
diff --git a/static/icons/06001E70.png b/static/icons/06001E70.png
new file mode 100755
index 00000000..8ca895b3
Binary files /dev/null and b/static/icons/06001E70.png differ
diff --git a/static/icons/06001E71.png b/static/icons/06001E71.png
new file mode 100755
index 00000000..e9941f80
Binary files /dev/null and b/static/icons/06001E71.png differ
diff --git a/static/icons/06001E72.png b/static/icons/06001E72.png
new file mode 100755
index 00000000..ab0fea33
Binary files /dev/null and b/static/icons/06001E72.png differ
diff --git a/static/icons/06001E73.png b/static/icons/06001E73.png
new file mode 100755
index 00000000..fec46f28
Binary files /dev/null and b/static/icons/06001E73.png differ
diff --git a/static/icons/06001E74.png b/static/icons/06001E74.png
new file mode 100755
index 00000000..87d7753f
Binary files /dev/null and b/static/icons/06001E74.png differ
diff --git a/static/icons/06001E75.png b/static/icons/06001E75.png
new file mode 100755
index 00000000..4e0b9506
Binary files /dev/null and b/static/icons/06001E75.png differ
diff --git a/static/icons/06001E76.png b/static/icons/06001E76.png
new file mode 100755
index 00000000..a57255a7
Binary files /dev/null and b/static/icons/06001E76.png differ
diff --git a/static/icons/06001E77.png b/static/icons/06001E77.png
new file mode 100755
index 00000000..99400c1e
Binary files /dev/null and b/static/icons/06001E77.png differ
diff --git a/static/icons/06001E78.png b/static/icons/06001E78.png
new file mode 100755
index 00000000..b17a5b6f
Binary files /dev/null and b/static/icons/06001E78.png differ
diff --git a/static/icons/06001E79.png b/static/icons/06001E79.png
new file mode 100755
index 00000000..95b2e501
Binary files /dev/null and b/static/icons/06001E79.png differ
diff --git a/static/icons/06001E7A.png b/static/icons/06001E7A.png
new file mode 100755
index 00000000..07a6591d
Binary files /dev/null and b/static/icons/06001E7A.png differ
diff --git a/static/icons/06001E7B.png b/static/icons/06001E7B.png
new file mode 100755
index 00000000..b4f30c72
Binary files /dev/null and b/static/icons/06001E7B.png differ
diff --git a/static/icons/06001E7D.png b/static/icons/06001E7D.png
new file mode 100755
index 00000000..2b7be030
Binary files /dev/null and b/static/icons/06001E7D.png differ
diff --git a/static/icons/06001E7E.png b/static/icons/06001E7E.png
new file mode 100755
index 00000000..2f768872
Binary files /dev/null and b/static/icons/06001E7E.png differ
diff --git a/static/icons/06001E7F.png b/static/icons/06001E7F.png
new file mode 100755
index 00000000..f757d501
Binary files /dev/null and b/static/icons/06001E7F.png differ
diff --git a/static/icons/06001E80.png b/static/icons/06001E80.png
new file mode 100755
index 00000000..cb625d95
Binary files /dev/null and b/static/icons/06001E80.png differ
diff --git a/static/icons/06001E81.png b/static/icons/06001E81.png
new file mode 100755
index 00000000..6431c723
Binary files /dev/null and b/static/icons/06001E81.png differ
diff --git a/static/icons/06001E82.png b/static/icons/06001E82.png
new file mode 100755
index 00000000..060b2e53
Binary files /dev/null and b/static/icons/06001E82.png differ
diff --git a/static/icons/06001E83.png b/static/icons/06001E83.png
new file mode 100755
index 00000000..eb8098aa
Binary files /dev/null and b/static/icons/06001E83.png differ
diff --git a/static/icons/06001E84.png b/static/icons/06001E84.png
new file mode 100755
index 00000000..eb0e5ca3
Binary files /dev/null and b/static/icons/06001E84.png differ
diff --git a/static/icons/06001E85.png b/static/icons/06001E85.png
new file mode 100755
index 00000000..03152df5
Binary files /dev/null and b/static/icons/06001E85.png differ
diff --git a/static/icons/06001E86.png b/static/icons/06001E86.png
new file mode 100755
index 00000000..a6af5c8c
Binary files /dev/null and b/static/icons/06001E86.png differ
diff --git a/static/icons/06001E87.png b/static/icons/06001E87.png
new file mode 100755
index 00000000..3d315f2a
Binary files /dev/null and b/static/icons/06001E87.png differ
diff --git a/static/icons/06001E88.png b/static/icons/06001E88.png
new file mode 100755
index 00000000..e1a03538
Binary files /dev/null and b/static/icons/06001E88.png differ
diff --git a/static/icons/06001E89.png b/static/icons/06001E89.png
new file mode 100755
index 00000000..a6d7195e
Binary files /dev/null and b/static/icons/06001E89.png differ
diff --git a/static/icons/06001E8A.png b/static/icons/06001E8A.png
new file mode 100755
index 00000000..2121b3f0
Binary files /dev/null and b/static/icons/06001E8A.png differ
diff --git a/static/icons/06001E8B.png b/static/icons/06001E8B.png
new file mode 100755
index 00000000..ab1cf1ed
Binary files /dev/null and b/static/icons/06001E8B.png differ
diff --git a/static/icons/06001E8C.png b/static/icons/06001E8C.png
new file mode 100755
index 00000000..2cc24986
Binary files /dev/null and b/static/icons/06001E8C.png differ
diff --git a/static/icons/06001E8D.png b/static/icons/06001E8D.png
new file mode 100755
index 00000000..c45a6744
Binary files /dev/null and b/static/icons/06001E8D.png differ
diff --git a/static/icons/06001E8E.png b/static/icons/06001E8E.png
new file mode 100755
index 00000000..92b02698
Binary files /dev/null and b/static/icons/06001E8E.png differ
diff --git a/static/icons/06001E8F.png b/static/icons/06001E8F.png
new file mode 100755
index 00000000..1f5a0ab6
Binary files /dev/null and b/static/icons/06001E8F.png differ
diff --git a/static/icons/06001E90.png b/static/icons/06001E90.png
new file mode 100755
index 00000000..8720b47c
Binary files /dev/null and b/static/icons/06001E90.png differ
diff --git a/static/icons/06001E91.png b/static/icons/06001E91.png
new file mode 100755
index 00000000..be79afc3
Binary files /dev/null and b/static/icons/06001E91.png differ
diff --git a/static/icons/06001E92.png b/static/icons/06001E92.png
new file mode 100755
index 00000000..c4445553
Binary files /dev/null and b/static/icons/06001E92.png differ
diff --git a/static/icons/06001E93.png b/static/icons/06001E93.png
new file mode 100755
index 00000000..1eef202a
Binary files /dev/null and b/static/icons/06001E93.png differ
diff --git a/static/icons/06001E94.png b/static/icons/06001E94.png
new file mode 100755
index 00000000..3abf0592
Binary files /dev/null and b/static/icons/06001E94.png differ
diff --git a/static/icons/06001E95.png b/static/icons/06001E95.png
new file mode 100755
index 00000000..6e3c35fc
Binary files /dev/null and b/static/icons/06001E95.png differ
diff --git a/static/icons/06001E96.png b/static/icons/06001E96.png
new file mode 100755
index 00000000..b156935e
Binary files /dev/null and b/static/icons/06001E96.png differ
diff --git a/static/icons/06001E97.png b/static/icons/06001E97.png
new file mode 100755
index 00000000..1386ca5b
Binary files /dev/null and b/static/icons/06001E97.png differ
diff --git a/static/icons/06001E98.png b/static/icons/06001E98.png
new file mode 100755
index 00000000..ccd9a253
Binary files /dev/null and b/static/icons/06001E98.png differ
diff --git a/static/icons/06001E99.png b/static/icons/06001E99.png
new file mode 100755
index 00000000..78cc63f9
Binary files /dev/null and b/static/icons/06001E99.png differ
diff --git a/static/icons/06001E9A.png b/static/icons/06001E9A.png
new file mode 100755
index 00000000..ff987c1e
Binary files /dev/null and b/static/icons/06001E9A.png differ
diff --git a/static/icons/06001E9B.png b/static/icons/06001E9B.png
new file mode 100755
index 00000000..c461b385
Binary files /dev/null and b/static/icons/06001E9B.png differ
diff --git a/static/icons/06001E9C.png b/static/icons/06001E9C.png
new file mode 100755
index 00000000..7e22ef36
Binary files /dev/null and b/static/icons/06001E9C.png differ
diff --git a/static/icons/06001E9D.png b/static/icons/06001E9D.png
new file mode 100755
index 00000000..97eb9a90
Binary files /dev/null and b/static/icons/06001E9D.png differ
diff --git a/static/icons/06001E9E.png b/static/icons/06001E9E.png
new file mode 100755
index 00000000..959ab093
Binary files /dev/null and b/static/icons/06001E9E.png differ
diff --git a/static/icons/06001E9F.png b/static/icons/06001E9F.png
new file mode 100755
index 00000000..2f1c07b2
Binary files /dev/null and b/static/icons/06001E9F.png differ
diff --git a/static/icons/06001EA0.png b/static/icons/06001EA0.png
new file mode 100755
index 00000000..ed59093b
Binary files /dev/null and b/static/icons/06001EA0.png differ
diff --git a/static/icons/06001EA1.png b/static/icons/06001EA1.png
new file mode 100755
index 00000000..da99db20
Binary files /dev/null and b/static/icons/06001EA1.png differ
diff --git a/static/icons/06001EA2.png b/static/icons/06001EA2.png
new file mode 100755
index 00000000..475489db
Binary files /dev/null and b/static/icons/06001EA2.png differ
diff --git a/static/icons/06001EA3.png b/static/icons/06001EA3.png
new file mode 100755
index 00000000..ec273e7c
Binary files /dev/null and b/static/icons/06001EA3.png differ
diff --git a/static/icons/06001EA4.png b/static/icons/06001EA4.png
new file mode 100755
index 00000000..3f6dfa14
Binary files /dev/null and b/static/icons/06001EA4.png differ
diff --git a/static/icons/06001EA5.png b/static/icons/06001EA5.png
new file mode 100755
index 00000000..597962bb
Binary files /dev/null and b/static/icons/06001EA5.png differ
diff --git a/static/icons/06001EA6.png b/static/icons/06001EA6.png
new file mode 100755
index 00000000..4fb6e3e5
Binary files /dev/null and b/static/icons/06001EA6.png differ
diff --git a/static/icons/06001EA7.png b/static/icons/06001EA7.png
new file mode 100755
index 00000000..2e839ced
Binary files /dev/null and b/static/icons/06001EA7.png differ
diff --git a/static/icons/06001EA8.png b/static/icons/06001EA8.png
new file mode 100755
index 00000000..1df42d71
Binary files /dev/null and b/static/icons/06001EA8.png differ
diff --git a/static/icons/06001EAA.png b/static/icons/06001EAA.png
new file mode 100755
index 00000000..54907a2e
Binary files /dev/null and b/static/icons/06001EAA.png differ
diff --git a/static/icons/06001EAB.png b/static/icons/06001EAB.png
new file mode 100755
index 00000000..ab177786
Binary files /dev/null and b/static/icons/06001EAB.png differ
diff --git a/static/icons/06001EAC.png b/static/icons/06001EAC.png
new file mode 100755
index 00000000..f82eb389
Binary files /dev/null and b/static/icons/06001EAC.png differ
diff --git a/static/icons/06001EAD.png b/static/icons/06001EAD.png
new file mode 100755
index 00000000..fd4880c6
Binary files /dev/null and b/static/icons/06001EAD.png differ
diff --git a/static/icons/06001EAE.png b/static/icons/06001EAE.png
new file mode 100755
index 00000000..467173e0
Binary files /dev/null and b/static/icons/06001EAE.png differ
diff --git a/static/icons/06001EAF.png b/static/icons/06001EAF.png
new file mode 100755
index 00000000..b59d4ce7
Binary files /dev/null and b/static/icons/06001EAF.png differ
diff --git a/static/icons/06001EB0.png b/static/icons/06001EB0.png
new file mode 100755
index 00000000..9d950ffd
Binary files /dev/null and b/static/icons/06001EB0.png differ
diff --git a/static/icons/06001EB1.png b/static/icons/06001EB1.png
new file mode 100755
index 00000000..710e41f1
Binary files /dev/null and b/static/icons/06001EB1.png differ
diff --git a/static/icons/06001EB2.png b/static/icons/06001EB2.png
new file mode 100755
index 00000000..fdd0c93e
Binary files /dev/null and b/static/icons/06001EB2.png differ
diff --git a/static/icons/06001EB4.png b/static/icons/06001EB4.png
new file mode 100755
index 00000000..a6a338a0
Binary files /dev/null and b/static/icons/06001EB4.png differ
diff --git a/static/icons/06001EB5.png b/static/icons/06001EB5.png
new file mode 100755
index 00000000..7949f82d
Binary files /dev/null and b/static/icons/06001EB5.png differ
diff --git a/static/icons/06001EB6.png b/static/icons/06001EB6.png
new file mode 100755
index 00000000..fba497d2
Binary files /dev/null and b/static/icons/06001EB6.png differ
diff --git a/static/icons/06001EB7.png b/static/icons/06001EB7.png
new file mode 100755
index 00000000..26ab40fd
Binary files /dev/null and b/static/icons/06001EB7.png differ
diff --git a/static/icons/06001EB8.png b/static/icons/06001EB8.png
new file mode 100755
index 00000000..731c6f7d
Binary files /dev/null and b/static/icons/06001EB8.png differ
diff --git a/static/icons/06001EB9.png b/static/icons/06001EB9.png
new file mode 100755
index 00000000..677b88e9
Binary files /dev/null and b/static/icons/06001EB9.png differ
diff --git a/static/icons/06001EBA.png b/static/icons/06001EBA.png
new file mode 100755
index 00000000..2232207b
Binary files /dev/null and b/static/icons/06001EBA.png differ
diff --git a/static/icons/06001EBB.png b/static/icons/06001EBB.png
new file mode 100755
index 00000000..716983f0
Binary files /dev/null and b/static/icons/06001EBB.png differ
diff --git a/static/icons/06001EBC.png b/static/icons/06001EBC.png
new file mode 100755
index 00000000..db81213a
Binary files /dev/null and b/static/icons/06001EBC.png differ
diff --git a/static/icons/06001EBE.png b/static/icons/06001EBE.png
new file mode 100755
index 00000000..5be87e00
Binary files /dev/null and b/static/icons/06001EBE.png differ
diff --git a/static/icons/06001EBF.png b/static/icons/06001EBF.png
new file mode 100755
index 00000000..8cd7f3b0
Binary files /dev/null and b/static/icons/06001EBF.png differ
diff --git a/static/icons/06001EC0.png b/static/icons/06001EC0.png
new file mode 100755
index 00000000..e512711a
Binary files /dev/null and b/static/icons/06001EC0.png differ
diff --git a/static/icons/06001EC1.png b/static/icons/06001EC1.png
new file mode 100755
index 00000000..6f2ec814
Binary files /dev/null and b/static/icons/06001EC1.png differ
diff --git a/static/icons/06001EC2.png b/static/icons/06001EC2.png
new file mode 100755
index 00000000..db910525
Binary files /dev/null and b/static/icons/06001EC2.png differ
diff --git a/static/icons/06001EC3.png b/static/icons/06001EC3.png
new file mode 100755
index 00000000..593ee501
Binary files /dev/null and b/static/icons/06001EC3.png differ
diff --git a/static/icons/06001EC4.png b/static/icons/06001EC4.png
new file mode 100755
index 00000000..c2ebfc9c
Binary files /dev/null and b/static/icons/06001EC4.png differ
diff --git a/static/icons/06001EC5.png b/static/icons/06001EC5.png
new file mode 100755
index 00000000..918aa603
Binary files /dev/null and b/static/icons/06001EC5.png differ
diff --git a/static/icons/06001EC6.png b/static/icons/06001EC6.png
new file mode 100755
index 00000000..22ca3271
Binary files /dev/null and b/static/icons/06001EC6.png differ
diff --git a/static/icons/06001EC8.png b/static/icons/06001EC8.png
new file mode 100755
index 00000000..38982b1f
Binary files /dev/null and b/static/icons/06001EC8.png differ
diff --git a/static/icons/06001EC9.png b/static/icons/06001EC9.png
new file mode 100755
index 00000000..5794f7d9
Binary files /dev/null and b/static/icons/06001EC9.png differ
diff --git a/static/icons/06001ECA.png b/static/icons/06001ECA.png
new file mode 100755
index 00000000..50f4e606
Binary files /dev/null and b/static/icons/06001ECA.png differ
diff --git a/static/icons/06001ECB.png b/static/icons/06001ECB.png
new file mode 100755
index 00000000..6965d7fe
Binary files /dev/null and b/static/icons/06001ECB.png differ
diff --git a/static/icons/06001ECC.png b/static/icons/06001ECC.png
new file mode 100755
index 00000000..955c317a
Binary files /dev/null and b/static/icons/06001ECC.png differ
diff --git a/static/icons/06001ECD.png b/static/icons/06001ECD.png
new file mode 100755
index 00000000..7bd3a691
Binary files /dev/null and b/static/icons/06001ECD.png differ
diff --git a/static/icons/06001ECE.png b/static/icons/06001ECE.png
new file mode 100755
index 00000000..7bd7c215
Binary files /dev/null and b/static/icons/06001ECE.png differ
diff --git a/static/icons/06001ECF.png b/static/icons/06001ECF.png
new file mode 100755
index 00000000..c31116f6
Binary files /dev/null and b/static/icons/06001ECF.png differ
diff --git a/static/icons/06001ED0.png b/static/icons/06001ED0.png
new file mode 100755
index 00000000..c49ec5e9
Binary files /dev/null and b/static/icons/06001ED0.png differ
diff --git a/static/icons/06001ED1.png b/static/icons/06001ED1.png
new file mode 100755
index 00000000..6126d20f
Binary files /dev/null and b/static/icons/06001ED1.png differ
diff --git a/static/icons/06001ED2.png b/static/icons/06001ED2.png
new file mode 100755
index 00000000..0f01cef6
Binary files /dev/null and b/static/icons/06001ED2.png differ
diff --git a/static/icons/06001ED3.png b/static/icons/06001ED3.png
new file mode 100755
index 00000000..65841c68
Binary files /dev/null and b/static/icons/06001ED3.png differ
diff --git a/static/icons/06001ED4.png b/static/icons/06001ED4.png
new file mode 100755
index 00000000..ad89d688
Binary files /dev/null and b/static/icons/06001ED4.png differ
diff --git a/static/icons/06001ED5.png b/static/icons/06001ED5.png
new file mode 100755
index 00000000..7d053b00
Binary files /dev/null and b/static/icons/06001ED5.png differ
diff --git a/static/icons/06001ED6.png b/static/icons/06001ED6.png
new file mode 100755
index 00000000..456484c7
Binary files /dev/null and b/static/icons/06001ED6.png differ
diff --git a/static/icons/06001ED7.png b/static/icons/06001ED7.png
new file mode 100755
index 00000000..ff539453
Binary files /dev/null and b/static/icons/06001ED7.png differ
diff --git a/static/icons/06001ED8.png b/static/icons/06001ED8.png
new file mode 100755
index 00000000..a086b4d8
Binary files /dev/null and b/static/icons/06001ED8.png differ
diff --git a/static/icons/06001ED9.png b/static/icons/06001ED9.png
new file mode 100755
index 00000000..b2750d8e
Binary files /dev/null and b/static/icons/06001ED9.png differ
diff --git a/static/icons/06001EDA.png b/static/icons/06001EDA.png
new file mode 100755
index 00000000..705bba49
Binary files /dev/null and b/static/icons/06001EDA.png differ
diff --git a/static/icons/06001EDB.png b/static/icons/06001EDB.png
new file mode 100755
index 00000000..b81b9f87
Binary files /dev/null and b/static/icons/06001EDB.png differ
diff --git a/static/icons/06001EDC.png b/static/icons/06001EDC.png
new file mode 100755
index 00000000..1b525d70
Binary files /dev/null and b/static/icons/06001EDC.png differ
diff --git a/static/icons/06001EDD.png b/static/icons/06001EDD.png
new file mode 100755
index 00000000..acbf521d
Binary files /dev/null and b/static/icons/06001EDD.png differ
diff --git a/static/icons/06001EDE.png b/static/icons/06001EDE.png
new file mode 100755
index 00000000..f9423fe5
Binary files /dev/null and b/static/icons/06001EDE.png differ
diff --git a/static/icons/06001EDF.png b/static/icons/06001EDF.png
new file mode 100755
index 00000000..edd06124
Binary files /dev/null and b/static/icons/06001EDF.png differ
diff --git a/static/icons/06001EE0.png b/static/icons/06001EE0.png
new file mode 100755
index 00000000..c439c3d8
Binary files /dev/null and b/static/icons/06001EE0.png differ
diff --git a/static/icons/06001EE1.png b/static/icons/06001EE1.png
new file mode 100755
index 00000000..7f1ab915
Binary files /dev/null and b/static/icons/06001EE1.png differ
diff --git a/static/icons/06001EE2.png b/static/icons/06001EE2.png
new file mode 100755
index 00000000..0e5474cb
Binary files /dev/null and b/static/icons/06001EE2.png differ
diff --git a/static/icons/06001EE3.png b/static/icons/06001EE3.png
new file mode 100755
index 00000000..ee19e6df
Binary files /dev/null and b/static/icons/06001EE3.png differ
diff --git a/static/icons/06001EE4.png b/static/icons/06001EE4.png
new file mode 100755
index 00000000..c4017d94
Binary files /dev/null and b/static/icons/06001EE4.png differ
diff --git a/static/icons/06001EE5.png b/static/icons/06001EE5.png
new file mode 100755
index 00000000..dcce6a9e
Binary files /dev/null and b/static/icons/06001EE5.png differ
diff --git a/static/icons/06001EE6.png b/static/icons/06001EE6.png
new file mode 100755
index 00000000..e6a811d8
Binary files /dev/null and b/static/icons/06001EE6.png differ
diff --git a/static/icons/06001EE7.png b/static/icons/06001EE7.png
new file mode 100755
index 00000000..300666b7
Binary files /dev/null and b/static/icons/06001EE7.png differ
diff --git a/static/icons/06001EE8.png b/static/icons/06001EE8.png
new file mode 100755
index 00000000..f0673358
Binary files /dev/null and b/static/icons/06001EE8.png differ
diff --git a/static/icons/06001EE9.png b/static/icons/06001EE9.png
new file mode 100755
index 00000000..b55e278d
Binary files /dev/null and b/static/icons/06001EE9.png differ
diff --git a/static/icons/06001EEA.png b/static/icons/06001EEA.png
new file mode 100755
index 00000000..b39cc43b
Binary files /dev/null and b/static/icons/06001EEA.png differ
diff --git a/static/icons/06001EEB.png b/static/icons/06001EEB.png
new file mode 100755
index 00000000..80cc21aa
Binary files /dev/null and b/static/icons/06001EEB.png differ
diff --git a/static/icons/06001EEC.png b/static/icons/06001EEC.png
new file mode 100755
index 00000000..f5ae6eb9
Binary files /dev/null and b/static/icons/06001EEC.png differ
diff --git a/static/icons/06001EED.png b/static/icons/06001EED.png
new file mode 100755
index 00000000..98991f72
Binary files /dev/null and b/static/icons/06001EED.png differ
diff --git a/static/icons/06001EEE.png b/static/icons/06001EEE.png
new file mode 100755
index 00000000..87c44efd
Binary files /dev/null and b/static/icons/06001EEE.png differ
diff --git a/static/icons/06001EEF.png b/static/icons/06001EEF.png
new file mode 100755
index 00000000..3c9fc2f8
Binary files /dev/null and b/static/icons/06001EEF.png differ
diff --git a/static/icons/06001EF0.png b/static/icons/06001EF0.png
new file mode 100755
index 00000000..bbf709c7
Binary files /dev/null and b/static/icons/06001EF0.png differ
diff --git a/static/icons/06001EF1.png b/static/icons/06001EF1.png
new file mode 100755
index 00000000..a0063f15
Binary files /dev/null and b/static/icons/06001EF1.png differ
diff --git a/static/icons/06001EF2.png b/static/icons/06001EF2.png
new file mode 100755
index 00000000..801ba69e
Binary files /dev/null and b/static/icons/06001EF2.png differ
diff --git a/static/icons/06001EF3.png b/static/icons/06001EF3.png
new file mode 100755
index 00000000..fc6cdaf2
Binary files /dev/null and b/static/icons/06001EF3.png differ
diff --git a/static/icons/06001EF4.png b/static/icons/06001EF4.png
new file mode 100755
index 00000000..d1f88369
Binary files /dev/null and b/static/icons/06001EF4.png differ
diff --git a/static/icons/06001EF5.png b/static/icons/06001EF5.png
new file mode 100755
index 00000000..14a99e6b
Binary files /dev/null and b/static/icons/06001EF5.png differ
diff --git a/static/icons/06001EF6.png b/static/icons/06001EF6.png
new file mode 100755
index 00000000..9be2b119
Binary files /dev/null and b/static/icons/06001EF6.png differ
diff --git a/static/icons/06001EF7.png b/static/icons/06001EF7.png
new file mode 100755
index 00000000..437dad32
Binary files /dev/null and b/static/icons/06001EF7.png differ
diff --git a/static/icons/06001EF8.png b/static/icons/06001EF8.png
new file mode 100755
index 00000000..3ba5f220
Binary files /dev/null and b/static/icons/06001EF8.png differ
diff --git a/static/icons/06001EF9.png b/static/icons/06001EF9.png
new file mode 100755
index 00000000..6357abb7
Binary files /dev/null and b/static/icons/06001EF9.png differ
diff --git a/static/icons/06001EFA.png b/static/icons/06001EFA.png
new file mode 100755
index 00000000..b33240b3
Binary files /dev/null and b/static/icons/06001EFA.png differ
diff --git a/static/icons/06001EFB.png b/static/icons/06001EFB.png
new file mode 100755
index 00000000..e3d8ee33
Binary files /dev/null and b/static/icons/06001EFB.png differ
diff --git a/static/icons/06001EFC.png b/static/icons/06001EFC.png
new file mode 100755
index 00000000..18b4b261
Binary files /dev/null and b/static/icons/06001EFC.png differ
diff --git a/static/icons/06001EFD.png b/static/icons/06001EFD.png
new file mode 100755
index 00000000..5637e6d2
Binary files /dev/null and b/static/icons/06001EFD.png differ
diff --git a/static/icons/06001EFE.png b/static/icons/06001EFE.png
new file mode 100755
index 00000000..cb4f85cf
Binary files /dev/null and b/static/icons/06001EFE.png differ
diff --git a/static/icons/06001EFF.png b/static/icons/06001EFF.png
new file mode 100755
index 00000000..104e1393
Binary files /dev/null and b/static/icons/06001EFF.png differ
diff --git a/static/icons/06001F00.png b/static/icons/06001F00.png
new file mode 100755
index 00000000..50ceb393
Binary files /dev/null and b/static/icons/06001F00.png differ
diff --git a/static/icons/06001F01.png b/static/icons/06001F01.png
new file mode 100755
index 00000000..87b87c65
Binary files /dev/null and b/static/icons/06001F01.png differ
diff --git a/static/icons/06001F02.png b/static/icons/06001F02.png
new file mode 100755
index 00000000..343a5774
Binary files /dev/null and b/static/icons/06001F02.png differ
diff --git a/static/icons/06001F03.png b/static/icons/06001F03.png
new file mode 100755
index 00000000..6fdb4e05
Binary files /dev/null and b/static/icons/06001F03.png differ
diff --git a/static/icons/06001F04.png b/static/icons/06001F04.png
new file mode 100755
index 00000000..3647af59
Binary files /dev/null and b/static/icons/06001F04.png differ
diff --git a/static/icons/06001F05.png b/static/icons/06001F05.png
new file mode 100755
index 00000000..76dabaf0
Binary files /dev/null and b/static/icons/06001F05.png differ
diff --git a/static/icons/06001F06.png b/static/icons/06001F06.png
new file mode 100755
index 00000000..0fdaffe3
Binary files /dev/null and b/static/icons/06001F06.png differ
diff --git a/static/icons/06001F07.png b/static/icons/06001F07.png
new file mode 100755
index 00000000..f55dd121
Binary files /dev/null and b/static/icons/06001F07.png differ
diff --git a/static/icons/06001F08.png b/static/icons/06001F08.png
new file mode 100755
index 00000000..6d5638a5
Binary files /dev/null and b/static/icons/06001F08.png differ
diff --git a/static/icons/06001F09.png b/static/icons/06001F09.png
new file mode 100755
index 00000000..249b1b12
Binary files /dev/null and b/static/icons/06001F09.png differ
diff --git a/static/icons/06001F0A.png b/static/icons/06001F0A.png
new file mode 100755
index 00000000..1c680e34
Binary files /dev/null and b/static/icons/06001F0A.png differ
diff --git a/static/icons/06001F0B.png b/static/icons/06001F0B.png
new file mode 100755
index 00000000..40931444
Binary files /dev/null and b/static/icons/06001F0B.png differ
diff --git a/static/icons/06001F0C.png b/static/icons/06001F0C.png
new file mode 100755
index 00000000..5364bea9
Binary files /dev/null and b/static/icons/06001F0C.png differ
diff --git a/static/icons/06001F0D.png b/static/icons/06001F0D.png
new file mode 100755
index 00000000..d5f12382
Binary files /dev/null and b/static/icons/06001F0D.png differ
diff --git a/static/icons/06001F0E.png b/static/icons/06001F0E.png
new file mode 100755
index 00000000..56cf9a4b
Binary files /dev/null and b/static/icons/06001F0E.png differ
diff --git a/static/icons/06001F0F.png b/static/icons/06001F0F.png
new file mode 100755
index 00000000..1c1c359a
Binary files /dev/null and b/static/icons/06001F0F.png differ
diff --git a/static/icons/06001F10.png b/static/icons/06001F10.png
new file mode 100755
index 00000000..1c5982db
Binary files /dev/null and b/static/icons/06001F10.png differ
diff --git a/static/icons/06001F11.png b/static/icons/06001F11.png
new file mode 100755
index 00000000..3889adfb
Binary files /dev/null and b/static/icons/06001F11.png differ
diff --git a/static/icons/06001F12.png b/static/icons/06001F12.png
new file mode 100755
index 00000000..ee424774
Binary files /dev/null and b/static/icons/06001F12.png differ
diff --git a/static/icons/06001F13.png b/static/icons/06001F13.png
new file mode 100755
index 00000000..e65cc974
Binary files /dev/null and b/static/icons/06001F13.png differ
diff --git a/static/icons/06001F14.png b/static/icons/06001F14.png
new file mode 100755
index 00000000..aaeae3f9
Binary files /dev/null and b/static/icons/06001F14.png differ
diff --git a/static/icons/06001F15.png b/static/icons/06001F15.png
new file mode 100755
index 00000000..dc8ce5e9
Binary files /dev/null and b/static/icons/06001F15.png differ
diff --git a/static/icons/06001F16.png b/static/icons/06001F16.png
new file mode 100755
index 00000000..7a061f38
Binary files /dev/null and b/static/icons/06001F16.png differ
diff --git a/static/icons/06001F17.png b/static/icons/06001F17.png
new file mode 100755
index 00000000..d6fd3b85
Binary files /dev/null and b/static/icons/06001F17.png differ
diff --git a/static/icons/06001F18.png b/static/icons/06001F18.png
new file mode 100755
index 00000000..357263ba
Binary files /dev/null and b/static/icons/06001F18.png differ
diff --git a/static/icons/06001F19.png b/static/icons/06001F19.png
new file mode 100755
index 00000000..6c877512
Binary files /dev/null and b/static/icons/06001F19.png differ
diff --git a/static/icons/06001F1A.png b/static/icons/06001F1A.png
new file mode 100755
index 00000000..e988c7f5
Binary files /dev/null and b/static/icons/06001F1A.png differ
diff --git a/static/icons/06001F1B.png b/static/icons/06001F1B.png
new file mode 100755
index 00000000..4435aa3e
Binary files /dev/null and b/static/icons/06001F1B.png differ
diff --git a/static/icons/06001F1C.png b/static/icons/06001F1C.png
new file mode 100755
index 00000000..aa2295a4
Binary files /dev/null and b/static/icons/06001F1C.png differ
diff --git a/static/icons/06001F1D.png b/static/icons/06001F1D.png
new file mode 100755
index 00000000..092055d3
Binary files /dev/null and b/static/icons/06001F1D.png differ
diff --git a/static/icons/06001F1E.png b/static/icons/06001F1E.png
new file mode 100755
index 00000000..1a998487
Binary files /dev/null and b/static/icons/06001F1E.png differ
diff --git a/static/icons/06001F1F.png b/static/icons/06001F1F.png
new file mode 100755
index 00000000..389800dc
Binary files /dev/null and b/static/icons/06001F1F.png differ
diff --git a/static/icons/06001F20.png b/static/icons/06001F20.png
new file mode 100755
index 00000000..1bc44436
Binary files /dev/null and b/static/icons/06001F20.png differ
diff --git a/static/icons/06001F21.png b/static/icons/06001F21.png
new file mode 100755
index 00000000..c63e6eb3
Binary files /dev/null and b/static/icons/06001F21.png differ
diff --git a/static/icons/06001F22.png b/static/icons/06001F22.png
new file mode 100755
index 00000000..95774ff7
Binary files /dev/null and b/static/icons/06001F22.png differ
diff --git a/static/icons/06001F23.png b/static/icons/06001F23.png
new file mode 100755
index 00000000..6583fd42
Binary files /dev/null and b/static/icons/06001F23.png differ
diff --git a/static/icons/06001F24.png b/static/icons/06001F24.png
new file mode 100755
index 00000000..a43f4ea6
Binary files /dev/null and b/static/icons/06001F24.png differ
diff --git a/static/icons/06001F25.png b/static/icons/06001F25.png
new file mode 100755
index 00000000..20efc013
Binary files /dev/null and b/static/icons/06001F25.png differ
diff --git a/static/icons/06001F26.png b/static/icons/06001F26.png
new file mode 100755
index 00000000..cbfb9927
Binary files /dev/null and b/static/icons/06001F26.png differ
diff --git a/static/icons/06001F27.png b/static/icons/06001F27.png
new file mode 100755
index 00000000..a24096d2
Binary files /dev/null and b/static/icons/06001F27.png differ
diff --git a/static/icons/06001F28.png b/static/icons/06001F28.png
new file mode 100755
index 00000000..39bf1010
Binary files /dev/null and b/static/icons/06001F28.png differ
diff --git a/static/icons/06001F29.png b/static/icons/06001F29.png
new file mode 100755
index 00000000..20389023
Binary files /dev/null and b/static/icons/06001F29.png differ
diff --git a/static/icons/06001F2A.png b/static/icons/06001F2A.png
new file mode 100755
index 00000000..0fbf7aa8
Binary files /dev/null and b/static/icons/06001F2A.png differ
diff --git a/static/icons/06001F2B.png b/static/icons/06001F2B.png
new file mode 100755
index 00000000..2f6610d4
Binary files /dev/null and b/static/icons/06001F2B.png differ
diff --git a/static/icons/06001F2C.png b/static/icons/06001F2C.png
new file mode 100755
index 00000000..93798c9b
Binary files /dev/null and b/static/icons/06001F2C.png differ
diff --git a/static/icons/06001F2D.png b/static/icons/06001F2D.png
new file mode 100755
index 00000000..961e3712
Binary files /dev/null and b/static/icons/06001F2D.png differ
diff --git a/static/icons/06001F2E.png b/static/icons/06001F2E.png
new file mode 100755
index 00000000..b7ccc58e
Binary files /dev/null and b/static/icons/06001F2E.png differ
diff --git a/static/icons/06001F2F.png b/static/icons/06001F2F.png
new file mode 100755
index 00000000..16ac181d
Binary files /dev/null and b/static/icons/06001F2F.png differ
diff --git a/static/icons/06001F30.png b/static/icons/06001F30.png
new file mode 100755
index 00000000..ce939d39
Binary files /dev/null and b/static/icons/06001F30.png differ
diff --git a/static/icons/06001F31.png b/static/icons/06001F31.png
new file mode 100755
index 00000000..93db1965
Binary files /dev/null and b/static/icons/06001F31.png differ
diff --git a/static/icons/06001F32.png b/static/icons/06001F32.png
new file mode 100755
index 00000000..7298ef90
Binary files /dev/null and b/static/icons/06001F32.png differ
diff --git a/static/icons/06001F33.png b/static/icons/06001F33.png
new file mode 100755
index 00000000..dae2c8db
Binary files /dev/null and b/static/icons/06001F33.png differ
diff --git a/static/icons/06001F34.png b/static/icons/06001F34.png
new file mode 100755
index 00000000..8201b00f
Binary files /dev/null and b/static/icons/06001F34.png differ
diff --git a/static/icons/06001F35.png b/static/icons/06001F35.png
new file mode 100755
index 00000000..3bfc22cf
Binary files /dev/null and b/static/icons/06001F35.png differ
diff --git a/static/icons/06001F36.png b/static/icons/06001F36.png
new file mode 100755
index 00000000..f5a3cc15
Binary files /dev/null and b/static/icons/06001F36.png differ
diff --git a/static/icons/06001F37.png b/static/icons/06001F37.png
new file mode 100755
index 00000000..7f83b7a2
Binary files /dev/null and b/static/icons/06001F37.png differ
diff --git a/static/icons/06001F38.png b/static/icons/06001F38.png
new file mode 100755
index 00000000..a5b3dfce
Binary files /dev/null and b/static/icons/06001F38.png differ
diff --git a/static/icons/06001F39.png b/static/icons/06001F39.png
new file mode 100755
index 00000000..593e0e8e
Binary files /dev/null and b/static/icons/06001F39.png differ
diff --git a/static/icons/06001F3A.png b/static/icons/06001F3A.png
new file mode 100755
index 00000000..1e7f3af4
Binary files /dev/null and b/static/icons/06001F3A.png differ
diff --git a/static/icons/06001F3B.png b/static/icons/06001F3B.png
new file mode 100755
index 00000000..365aa7f2
Binary files /dev/null and b/static/icons/06001F3B.png differ
diff --git a/static/icons/06001F3C.png b/static/icons/06001F3C.png
new file mode 100755
index 00000000..a8c31df4
Binary files /dev/null and b/static/icons/06001F3C.png differ
diff --git a/static/icons/06001F3D.png b/static/icons/06001F3D.png
new file mode 100755
index 00000000..ccf09186
Binary files /dev/null and b/static/icons/06001F3D.png differ
diff --git a/static/icons/06001F3E.png b/static/icons/06001F3E.png
new file mode 100755
index 00000000..fe01c6ef
Binary files /dev/null and b/static/icons/06001F3E.png differ
diff --git a/static/icons/06001F3F.png b/static/icons/06001F3F.png
new file mode 100755
index 00000000..d1e68ed9
Binary files /dev/null and b/static/icons/06001F3F.png differ
diff --git a/static/icons/06001F40.png b/static/icons/06001F40.png
new file mode 100755
index 00000000..ea6ee32c
Binary files /dev/null and b/static/icons/06001F40.png differ
diff --git a/static/icons/06001F41.png b/static/icons/06001F41.png
new file mode 100755
index 00000000..cecf344f
Binary files /dev/null and b/static/icons/06001F41.png differ
diff --git a/static/icons/06001F42.png b/static/icons/06001F42.png
new file mode 100755
index 00000000..907d2361
Binary files /dev/null and b/static/icons/06001F42.png differ
diff --git a/static/icons/06001F43.png b/static/icons/06001F43.png
new file mode 100755
index 00000000..293b2b18
Binary files /dev/null and b/static/icons/06001F43.png differ
diff --git a/static/icons/06001F44.png b/static/icons/06001F44.png
new file mode 100755
index 00000000..d87e03a5
Binary files /dev/null and b/static/icons/06001F44.png differ
diff --git a/static/icons/06001F45.png b/static/icons/06001F45.png
new file mode 100755
index 00000000..4d8baa29
Binary files /dev/null and b/static/icons/06001F45.png differ
diff --git a/static/icons/06001F46.png b/static/icons/06001F46.png
new file mode 100755
index 00000000..496325a3
Binary files /dev/null and b/static/icons/06001F46.png differ
diff --git a/static/icons/06001F47.png b/static/icons/06001F47.png
new file mode 100755
index 00000000..56f1463f
Binary files /dev/null and b/static/icons/06001F47.png differ
diff --git a/static/icons/06001F4B.png b/static/icons/06001F4B.png
new file mode 100755
index 00000000..b2c50765
Binary files /dev/null and b/static/icons/06001F4B.png differ
diff --git a/static/icons/06001F4C.png b/static/icons/06001F4C.png
new file mode 100755
index 00000000..9747c5c2
Binary files /dev/null and b/static/icons/06001F4C.png differ
diff --git a/static/icons/06001F4D.png b/static/icons/06001F4D.png
new file mode 100755
index 00000000..a73db56a
Binary files /dev/null and b/static/icons/06001F4D.png differ
diff --git a/static/icons/06001F4E.png b/static/icons/06001F4E.png
new file mode 100755
index 00000000..2c9531a7
Binary files /dev/null and b/static/icons/06001F4E.png differ
diff --git a/static/icons/06001F4F.png b/static/icons/06001F4F.png
new file mode 100755
index 00000000..7e5ac0aa
Binary files /dev/null and b/static/icons/06001F4F.png differ
diff --git a/static/icons/06001F50.png b/static/icons/06001F50.png
new file mode 100755
index 00000000..7f21b861
Binary files /dev/null and b/static/icons/06001F50.png differ
diff --git a/static/icons/06001F51.png b/static/icons/06001F51.png
new file mode 100755
index 00000000..6b0cddc9
Binary files /dev/null and b/static/icons/06001F51.png differ
diff --git a/static/icons/06001F52.png b/static/icons/06001F52.png
new file mode 100755
index 00000000..dad04dff
Binary files /dev/null and b/static/icons/06001F52.png differ
diff --git a/static/icons/06001F53.png b/static/icons/06001F53.png
new file mode 100755
index 00000000..fd2b664d
Binary files /dev/null and b/static/icons/06001F53.png differ
diff --git a/static/icons/06001F54.png b/static/icons/06001F54.png
new file mode 100755
index 00000000..731e1173
Binary files /dev/null and b/static/icons/06001F54.png differ
diff --git a/static/icons/06001F55.png b/static/icons/06001F55.png
new file mode 100755
index 00000000..913ee4fc
Binary files /dev/null and b/static/icons/06001F55.png differ
diff --git a/static/icons/06001F56.png b/static/icons/06001F56.png
new file mode 100755
index 00000000..cb6fb5b5
Binary files /dev/null and b/static/icons/06001F56.png differ
diff --git a/static/icons/06001F57.png b/static/icons/06001F57.png
new file mode 100755
index 00000000..3e95631c
Binary files /dev/null and b/static/icons/06001F57.png differ
diff --git a/static/icons/06001F58.png b/static/icons/06001F58.png
new file mode 100755
index 00000000..198dac65
Binary files /dev/null and b/static/icons/06001F58.png differ
diff --git a/static/icons/06001F59.png b/static/icons/06001F59.png
new file mode 100755
index 00000000..33720fc1
Binary files /dev/null and b/static/icons/06001F59.png differ
diff --git a/static/icons/06001F5A.png b/static/icons/06001F5A.png
new file mode 100755
index 00000000..53f67e3a
Binary files /dev/null and b/static/icons/06001F5A.png differ
diff --git a/static/icons/06001F5B.png b/static/icons/06001F5B.png
new file mode 100755
index 00000000..8fd4f4f7
Binary files /dev/null and b/static/icons/06001F5B.png differ
diff --git a/static/icons/06001F5C.png b/static/icons/06001F5C.png
new file mode 100755
index 00000000..2e552411
Binary files /dev/null and b/static/icons/06001F5C.png differ
diff --git a/static/icons/06001F5D.png b/static/icons/06001F5D.png
new file mode 100755
index 00000000..aaeed049
Binary files /dev/null and b/static/icons/06001F5D.png differ
diff --git a/static/icons/06001F5E.png b/static/icons/06001F5E.png
new file mode 100755
index 00000000..a6e725af
Binary files /dev/null and b/static/icons/06001F5E.png differ
diff --git a/static/icons/06001F5F.png b/static/icons/06001F5F.png
new file mode 100755
index 00000000..8a24e155
Binary files /dev/null and b/static/icons/06001F5F.png differ
diff --git a/static/icons/06001F60.png b/static/icons/06001F60.png
new file mode 100755
index 00000000..9e1a5a50
Binary files /dev/null and b/static/icons/06001F60.png differ
diff --git a/static/icons/06001F61.png b/static/icons/06001F61.png
new file mode 100755
index 00000000..f9de8d21
Binary files /dev/null and b/static/icons/06001F61.png differ
diff --git a/static/icons/06001F62.png b/static/icons/06001F62.png
new file mode 100755
index 00000000..b8fe99dd
Binary files /dev/null and b/static/icons/06001F62.png differ
diff --git a/static/icons/06001F63.png b/static/icons/06001F63.png
new file mode 100755
index 00000000..69a9bbf6
Binary files /dev/null and b/static/icons/06001F63.png differ
diff --git a/static/icons/06001F64.png b/static/icons/06001F64.png
new file mode 100755
index 00000000..6702dc9c
Binary files /dev/null and b/static/icons/06001F64.png differ
diff --git a/static/icons/06001F65.png b/static/icons/06001F65.png
new file mode 100755
index 00000000..08a875df
Binary files /dev/null and b/static/icons/06001F65.png differ
diff --git a/static/icons/06001F66.png b/static/icons/06001F66.png
new file mode 100755
index 00000000..f11dfa46
Binary files /dev/null and b/static/icons/06001F66.png differ
diff --git a/static/icons/06001F67.png b/static/icons/06001F67.png
new file mode 100755
index 00000000..17611b0d
Binary files /dev/null and b/static/icons/06001F67.png differ
diff --git a/static/icons/06001F68.png b/static/icons/06001F68.png
new file mode 100755
index 00000000..3de77113
Binary files /dev/null and b/static/icons/06001F68.png differ
diff --git a/static/icons/06001F69.png b/static/icons/06001F69.png
new file mode 100755
index 00000000..172067de
Binary files /dev/null and b/static/icons/06001F69.png differ
diff --git a/static/icons/06001F6A.png b/static/icons/06001F6A.png
new file mode 100755
index 00000000..a1f029a2
Binary files /dev/null and b/static/icons/06001F6A.png differ
diff --git a/static/icons/06001F6B.png b/static/icons/06001F6B.png
new file mode 100755
index 00000000..991f0b60
Binary files /dev/null and b/static/icons/06001F6B.png differ
diff --git a/static/icons/06001F6C.png b/static/icons/06001F6C.png
new file mode 100755
index 00000000..5684bfda
Binary files /dev/null and b/static/icons/06001F6C.png differ
diff --git a/static/icons/06001F6D.png b/static/icons/06001F6D.png
new file mode 100755
index 00000000..78c0cbd0
Binary files /dev/null and b/static/icons/06001F6D.png differ
diff --git a/static/icons/06001F6E.png b/static/icons/06001F6E.png
new file mode 100755
index 00000000..f301aab2
Binary files /dev/null and b/static/icons/06001F6E.png differ
diff --git a/static/icons/06001F6F.png b/static/icons/06001F6F.png
new file mode 100755
index 00000000..d293d880
Binary files /dev/null and b/static/icons/06001F6F.png differ
diff --git a/static/icons/06001F70.png b/static/icons/06001F70.png
new file mode 100755
index 00000000..92e8fced
Binary files /dev/null and b/static/icons/06001F70.png differ
diff --git a/static/icons/06001F71.png b/static/icons/06001F71.png
new file mode 100755
index 00000000..dfc641e8
Binary files /dev/null and b/static/icons/06001F71.png differ
diff --git a/static/icons/06001F72.png b/static/icons/06001F72.png
new file mode 100755
index 00000000..0b679531
Binary files /dev/null and b/static/icons/06001F72.png differ
diff --git a/static/icons/06001F73.png b/static/icons/06001F73.png
new file mode 100755
index 00000000..b1e1f9f8
Binary files /dev/null and b/static/icons/06001F73.png differ
diff --git a/static/icons/06001F74.png b/static/icons/06001F74.png
new file mode 100755
index 00000000..d8f64967
Binary files /dev/null and b/static/icons/06001F74.png differ
diff --git a/static/icons/06001F75.png b/static/icons/06001F75.png
new file mode 100755
index 00000000..a4879c3e
Binary files /dev/null and b/static/icons/06001F75.png differ
diff --git a/static/icons/06001F76.png b/static/icons/06001F76.png
new file mode 100755
index 00000000..94682849
Binary files /dev/null and b/static/icons/06001F76.png differ
diff --git a/static/icons/06001F77.png b/static/icons/06001F77.png
new file mode 100755
index 00000000..482dff57
Binary files /dev/null and b/static/icons/06001F77.png differ
diff --git a/static/icons/06001F78.png b/static/icons/06001F78.png
new file mode 100755
index 00000000..f6f762af
Binary files /dev/null and b/static/icons/06001F78.png differ
diff --git a/static/icons/06001F79.png b/static/icons/06001F79.png
new file mode 100755
index 00000000..20f3389e
Binary files /dev/null and b/static/icons/06001F79.png differ
diff --git a/static/icons/06001F7A.png b/static/icons/06001F7A.png
new file mode 100755
index 00000000..58865902
Binary files /dev/null and b/static/icons/06001F7A.png differ
diff --git a/static/icons/06001F7B.png b/static/icons/06001F7B.png
new file mode 100755
index 00000000..7f76aaaa
Binary files /dev/null and b/static/icons/06001F7B.png differ
diff --git a/static/icons/06001F7C.png b/static/icons/06001F7C.png
new file mode 100755
index 00000000..4e76f54c
Binary files /dev/null and b/static/icons/06001F7C.png differ
diff --git a/static/icons/06001F7D.png b/static/icons/06001F7D.png
new file mode 100755
index 00000000..01de562d
Binary files /dev/null and b/static/icons/06001F7D.png differ
diff --git a/static/icons/06001F7E.png b/static/icons/06001F7E.png
new file mode 100755
index 00000000..3ecca061
Binary files /dev/null and b/static/icons/06001F7E.png differ
diff --git a/static/icons/06001F7F.png b/static/icons/06001F7F.png
new file mode 100755
index 00000000..11559150
Binary files /dev/null and b/static/icons/06001F7F.png differ
diff --git a/static/icons/06001F80.png b/static/icons/06001F80.png
new file mode 100755
index 00000000..2d040dbc
Binary files /dev/null and b/static/icons/06001F80.png differ
diff --git a/static/icons/06001F82.png b/static/icons/06001F82.png
new file mode 100755
index 00000000..33afed57
Binary files /dev/null and b/static/icons/06001F82.png differ
diff --git a/static/icons/06001F83.png b/static/icons/06001F83.png
new file mode 100755
index 00000000..ef556918
Binary files /dev/null and b/static/icons/06001F83.png differ
diff --git a/static/icons/06001F84.png b/static/icons/06001F84.png
new file mode 100755
index 00000000..a23b088d
Binary files /dev/null and b/static/icons/06001F84.png differ
diff --git a/static/icons/06001F85.png b/static/icons/06001F85.png
new file mode 100755
index 00000000..2e364650
Binary files /dev/null and b/static/icons/06001F85.png differ
diff --git a/static/icons/06001F86.png b/static/icons/06001F86.png
new file mode 100755
index 00000000..8b596aaa
Binary files /dev/null and b/static/icons/06001F86.png differ
diff --git a/static/icons/06001F87.png b/static/icons/06001F87.png
new file mode 100755
index 00000000..0ad2fd1e
Binary files /dev/null and b/static/icons/06001F87.png differ
diff --git a/static/icons/06001F88.png b/static/icons/06001F88.png
new file mode 100755
index 00000000..cfab10b4
Binary files /dev/null and b/static/icons/06001F88.png differ
diff --git a/static/icons/06001F89.png b/static/icons/06001F89.png
new file mode 100755
index 00000000..cfff4a45
Binary files /dev/null and b/static/icons/06001F89.png differ
diff --git a/static/icons/06001F8A.png b/static/icons/06001F8A.png
new file mode 100755
index 00000000..ff91a87a
Binary files /dev/null and b/static/icons/06001F8A.png differ
diff --git a/static/icons/06001F8B.png b/static/icons/06001F8B.png
new file mode 100755
index 00000000..a5ab4d5e
Binary files /dev/null and b/static/icons/06001F8B.png differ
diff --git a/static/icons/06001F8C.png b/static/icons/06001F8C.png
new file mode 100755
index 00000000..2b69898f
Binary files /dev/null and b/static/icons/06001F8C.png differ
diff --git a/static/icons/06001F8D.png b/static/icons/06001F8D.png
new file mode 100755
index 00000000..c2f8c466
Binary files /dev/null and b/static/icons/06001F8D.png differ
diff --git a/static/icons/06001F8E.png b/static/icons/06001F8E.png
new file mode 100755
index 00000000..14095596
Binary files /dev/null and b/static/icons/06001F8E.png differ
diff --git a/static/icons/06001F8F.png b/static/icons/06001F8F.png
new file mode 100755
index 00000000..d9c56696
Binary files /dev/null and b/static/icons/06001F8F.png differ
diff --git a/static/icons/06001F91.png b/static/icons/06001F91.png
new file mode 100755
index 00000000..0a008860
Binary files /dev/null and b/static/icons/06001F91.png differ
diff --git a/static/icons/06001F92.png b/static/icons/06001F92.png
new file mode 100755
index 00000000..daac5bc2
Binary files /dev/null and b/static/icons/06001F92.png differ
diff --git a/static/icons/06001F93.png b/static/icons/06001F93.png
new file mode 100755
index 00000000..d1abf673
Binary files /dev/null and b/static/icons/06001F93.png differ
diff --git a/static/icons/06001F94.png b/static/icons/06001F94.png
new file mode 100755
index 00000000..d61c6b6e
Binary files /dev/null and b/static/icons/06001F94.png differ
diff --git a/static/icons/06001F95.png b/static/icons/06001F95.png
new file mode 100755
index 00000000..bf3ff904
Binary files /dev/null and b/static/icons/06001F95.png differ
diff --git a/static/icons/06001F96.png b/static/icons/06001F96.png
new file mode 100755
index 00000000..255281f9
Binary files /dev/null and b/static/icons/06001F96.png differ
diff --git a/static/icons/06001F97.png b/static/icons/06001F97.png
new file mode 100755
index 00000000..945bd953
Binary files /dev/null and b/static/icons/06001F97.png differ
diff --git a/static/icons/06001F98.png b/static/icons/06001F98.png
new file mode 100755
index 00000000..c5e27b84
Binary files /dev/null and b/static/icons/06001F98.png differ
diff --git a/static/icons/06001F9A.png b/static/icons/06001F9A.png
new file mode 100755
index 00000000..4875ab02
Binary files /dev/null and b/static/icons/06001F9A.png differ
diff --git a/static/icons/06001F9B.png b/static/icons/06001F9B.png
new file mode 100755
index 00000000..2530f2ac
Binary files /dev/null and b/static/icons/06001F9B.png differ
diff --git a/static/icons/06001F9C.png b/static/icons/06001F9C.png
new file mode 100755
index 00000000..50614b8a
Binary files /dev/null and b/static/icons/06001F9C.png differ
diff --git a/static/icons/06001F9D.png b/static/icons/06001F9D.png
new file mode 100755
index 00000000..85cf339a
Binary files /dev/null and b/static/icons/06001F9D.png differ
diff --git a/static/icons/06001F9E.png b/static/icons/06001F9E.png
new file mode 100755
index 00000000..6837e45a
Binary files /dev/null and b/static/icons/06001F9E.png differ
diff --git a/static/icons/06001F9F.png b/static/icons/06001F9F.png
new file mode 100755
index 00000000..a34f2e92
Binary files /dev/null and b/static/icons/06001F9F.png differ
diff --git a/static/icons/06001FA0.png b/static/icons/06001FA0.png
new file mode 100755
index 00000000..347a9d74
Binary files /dev/null and b/static/icons/06001FA0.png differ
diff --git a/static/icons/06001FA1.png b/static/icons/06001FA1.png
new file mode 100755
index 00000000..243f57a6
Binary files /dev/null and b/static/icons/06001FA1.png differ
diff --git a/static/icons/06001FA3.png b/static/icons/06001FA3.png
new file mode 100755
index 00000000..e9fa87ad
Binary files /dev/null and b/static/icons/06001FA3.png differ
diff --git a/static/icons/06001FA4.png b/static/icons/06001FA4.png
new file mode 100755
index 00000000..da32e8ea
Binary files /dev/null and b/static/icons/06001FA4.png differ
diff --git a/static/icons/06001FA5.png b/static/icons/06001FA5.png
new file mode 100755
index 00000000..84d8f1ea
Binary files /dev/null and b/static/icons/06001FA5.png differ
diff --git a/static/icons/06001FA6.png b/static/icons/06001FA6.png
new file mode 100755
index 00000000..2619c278
Binary files /dev/null and b/static/icons/06001FA6.png differ
diff --git a/static/icons/06001FA7.png b/static/icons/06001FA7.png
new file mode 100755
index 00000000..919b2ff4
Binary files /dev/null and b/static/icons/06001FA7.png differ
diff --git a/static/icons/06001FA8.png b/static/icons/06001FA8.png
new file mode 100755
index 00000000..09462b9e
Binary files /dev/null and b/static/icons/06001FA8.png differ
diff --git a/static/icons/06001FA9.png b/static/icons/06001FA9.png
new file mode 100755
index 00000000..9a3f03a0
Binary files /dev/null and b/static/icons/06001FA9.png differ
diff --git a/static/icons/06001FAA.png b/static/icons/06001FAA.png
new file mode 100755
index 00000000..285de625
Binary files /dev/null and b/static/icons/06001FAA.png differ
diff --git a/static/icons/06001FAB.png b/static/icons/06001FAB.png
new file mode 100755
index 00000000..8d333760
Binary files /dev/null and b/static/icons/06001FAB.png differ
diff --git a/static/icons/06001FAC.png b/static/icons/06001FAC.png
new file mode 100755
index 00000000..4fb7fff0
Binary files /dev/null and b/static/icons/06001FAC.png differ
diff --git a/static/icons/06001FAD.png b/static/icons/06001FAD.png
new file mode 100755
index 00000000..48aaa324
Binary files /dev/null and b/static/icons/06001FAD.png differ
diff --git a/static/icons/06001FAE.png b/static/icons/06001FAE.png
new file mode 100755
index 00000000..9408cacb
Binary files /dev/null and b/static/icons/06001FAE.png differ
diff --git a/static/icons/06001FAF.png b/static/icons/06001FAF.png
new file mode 100755
index 00000000..aeb78ad6
Binary files /dev/null and b/static/icons/06001FAF.png differ
diff --git a/static/icons/06001FB0.png b/static/icons/06001FB0.png
new file mode 100755
index 00000000..ef2264be
Binary files /dev/null and b/static/icons/06001FB0.png differ
diff --git a/static/icons/06001FB1.png b/static/icons/06001FB1.png
new file mode 100755
index 00000000..397d4756
Binary files /dev/null and b/static/icons/06001FB1.png differ
diff --git a/static/icons/06001FB2.png b/static/icons/06001FB2.png
new file mode 100755
index 00000000..b64bc5f0
Binary files /dev/null and b/static/icons/06001FB2.png differ
diff --git a/static/icons/06001FB3.png b/static/icons/06001FB3.png
new file mode 100755
index 00000000..dd6adf4f
Binary files /dev/null and b/static/icons/06001FB3.png differ
diff --git a/static/icons/06001FB4.png b/static/icons/06001FB4.png
new file mode 100755
index 00000000..67e48093
Binary files /dev/null and b/static/icons/06001FB4.png differ
diff --git a/static/icons/06001FB5.png b/static/icons/06001FB5.png
new file mode 100755
index 00000000..4f93cdfc
Binary files /dev/null and b/static/icons/06001FB5.png differ
diff --git a/static/icons/06001FB6.png b/static/icons/06001FB6.png
new file mode 100755
index 00000000..ef4ec36f
Binary files /dev/null and b/static/icons/06001FB6.png differ
diff --git a/static/icons/06001FB7.png b/static/icons/06001FB7.png
new file mode 100755
index 00000000..f61de3f3
Binary files /dev/null and b/static/icons/06001FB7.png differ
diff --git a/static/icons/06001FB8.png b/static/icons/06001FB8.png
new file mode 100755
index 00000000..fb0196e7
Binary files /dev/null and b/static/icons/06001FB8.png differ
diff --git a/static/icons/06001FB9.png b/static/icons/06001FB9.png
new file mode 100755
index 00000000..c4b19ef2
Binary files /dev/null and b/static/icons/06001FB9.png differ
diff --git a/static/icons/06001FBA.png b/static/icons/06001FBA.png
new file mode 100755
index 00000000..7bb210e7
Binary files /dev/null and b/static/icons/06001FBA.png differ
diff --git a/static/icons/06001FBB.png b/static/icons/06001FBB.png
new file mode 100755
index 00000000..1d4afc64
Binary files /dev/null and b/static/icons/06001FBB.png differ
diff --git a/static/icons/06001FBC.png b/static/icons/06001FBC.png
new file mode 100755
index 00000000..bed2d221
Binary files /dev/null and b/static/icons/06001FBC.png differ
diff --git a/static/icons/06001FBD.png b/static/icons/06001FBD.png
new file mode 100755
index 00000000..d7db7301
Binary files /dev/null and b/static/icons/06001FBD.png differ
diff --git a/static/icons/06001FBE.png b/static/icons/06001FBE.png
new file mode 100755
index 00000000..5e418663
Binary files /dev/null and b/static/icons/06001FBE.png differ
diff --git a/static/icons/06001FBF.png b/static/icons/06001FBF.png
new file mode 100755
index 00000000..396e94fb
Binary files /dev/null and b/static/icons/06001FBF.png differ
diff --git a/static/icons/06001FC0.png b/static/icons/06001FC0.png
new file mode 100755
index 00000000..8068b038
Binary files /dev/null and b/static/icons/06001FC0.png differ
diff --git a/static/icons/06001FC1.png b/static/icons/06001FC1.png
new file mode 100755
index 00000000..1764148f
Binary files /dev/null and b/static/icons/06001FC1.png differ
diff --git a/static/icons/06001FC2.png b/static/icons/06001FC2.png
new file mode 100755
index 00000000..f7da537e
Binary files /dev/null and b/static/icons/06001FC2.png differ
diff --git a/static/icons/06001FC3.png b/static/icons/06001FC3.png
new file mode 100755
index 00000000..364e8ec3
Binary files /dev/null and b/static/icons/06001FC3.png differ
diff --git a/static/icons/06001FC4.png b/static/icons/06001FC4.png
new file mode 100755
index 00000000..0eb303b3
Binary files /dev/null and b/static/icons/06001FC4.png differ
diff --git a/static/icons/06001FC5.png b/static/icons/06001FC5.png
new file mode 100755
index 00000000..abc9f5cf
Binary files /dev/null and b/static/icons/06001FC5.png differ
diff --git a/static/icons/06001FC6.png b/static/icons/06001FC6.png
new file mode 100755
index 00000000..63527d17
Binary files /dev/null and b/static/icons/06001FC6.png differ
diff --git a/static/icons/06001FC7.png b/static/icons/06001FC7.png
new file mode 100755
index 00000000..39024677
Binary files /dev/null and b/static/icons/06001FC7.png differ
diff --git a/static/icons/06001FC8.png b/static/icons/06001FC8.png
new file mode 100755
index 00000000..cd8c4d0d
Binary files /dev/null and b/static/icons/06001FC8.png differ
diff --git a/static/icons/06001FD5.png b/static/icons/06001FD5.png
new file mode 100755
index 00000000..63e0d2f8
Binary files /dev/null and b/static/icons/06001FD5.png differ
diff --git a/static/icons/06001FD6.png b/static/icons/06001FD6.png
new file mode 100755
index 00000000..a798c323
Binary files /dev/null and b/static/icons/06001FD6.png differ
diff --git a/static/icons/06001FD7.png b/static/icons/06001FD7.png
new file mode 100755
index 00000000..cdcef516
Binary files /dev/null and b/static/icons/06001FD7.png differ
diff --git a/static/icons/06001FD8.png b/static/icons/06001FD8.png
new file mode 100755
index 00000000..e22a69f4
Binary files /dev/null and b/static/icons/06001FD8.png differ
diff --git a/static/icons/06001FD9.png b/static/icons/06001FD9.png
new file mode 100755
index 00000000..e4fbfebd
Binary files /dev/null and b/static/icons/06001FD9.png differ
diff --git a/static/icons/06001FE1.png b/static/icons/06001FE1.png
new file mode 100755
index 00000000..788b3c00
Binary files /dev/null and b/static/icons/06001FE1.png differ
diff --git a/static/icons/06001FE2.png b/static/icons/06001FE2.png
new file mode 100755
index 00000000..a8852deb
Binary files /dev/null and b/static/icons/06001FE2.png differ
diff --git a/static/icons/06001FE3.png b/static/icons/06001FE3.png
new file mode 100755
index 00000000..9b3627ed
Binary files /dev/null and b/static/icons/06001FE3.png differ
diff --git a/static/icons/06001FE4.png b/static/icons/06001FE4.png
new file mode 100755
index 00000000..3d2f9941
Binary files /dev/null and b/static/icons/06001FE4.png differ
diff --git a/static/icons/06001FE5.png b/static/icons/06001FE5.png
new file mode 100755
index 00000000..bb389c17
Binary files /dev/null and b/static/icons/06001FE5.png differ
diff --git a/static/icons/06001FE6.png b/static/icons/06001FE6.png
new file mode 100755
index 00000000..5eb73f2c
Binary files /dev/null and b/static/icons/06001FE6.png differ
diff --git a/static/icons/06001FE7.png b/static/icons/06001FE7.png
new file mode 100755
index 00000000..cf64c06f
Binary files /dev/null and b/static/icons/06001FE7.png differ
diff --git a/static/icons/06001FE8.png b/static/icons/06001FE8.png
new file mode 100755
index 00000000..48e3f8ff
Binary files /dev/null and b/static/icons/06001FE8.png differ
diff --git a/static/icons/06001FE9.png b/static/icons/06001FE9.png
new file mode 100755
index 00000000..0cdde153
Binary files /dev/null and b/static/icons/06001FE9.png differ
diff --git a/static/icons/06001FEA.png b/static/icons/06001FEA.png
new file mode 100755
index 00000000..7ab5bd04
Binary files /dev/null and b/static/icons/06001FEA.png differ
diff --git a/static/icons/06001FEB.png b/static/icons/06001FEB.png
new file mode 100755
index 00000000..64bb5274
Binary files /dev/null and b/static/icons/06001FEB.png differ
diff --git a/static/icons/06001FEC.png b/static/icons/06001FEC.png
new file mode 100755
index 00000000..744f7262
Binary files /dev/null and b/static/icons/06001FEC.png differ
diff --git a/static/icons/06001FED.png b/static/icons/06001FED.png
new file mode 100755
index 00000000..7f4b79be
Binary files /dev/null and b/static/icons/06001FED.png differ
diff --git a/static/icons/06001FEE.png b/static/icons/06001FEE.png
new file mode 100755
index 00000000..89588b4e
Binary files /dev/null and b/static/icons/06001FEE.png differ
diff --git a/static/icons/06001FEF.png b/static/icons/06001FEF.png
new file mode 100755
index 00000000..33c9c6ac
Binary files /dev/null and b/static/icons/06001FEF.png differ
diff --git a/static/icons/06001FF0.png b/static/icons/06001FF0.png
new file mode 100755
index 00000000..70336f0e
Binary files /dev/null and b/static/icons/06001FF0.png differ
diff --git a/static/icons/06001FF1.png b/static/icons/06001FF1.png
new file mode 100755
index 00000000..dae6de7b
Binary files /dev/null and b/static/icons/06001FF1.png differ
diff --git a/static/icons/06001FF2.png b/static/icons/06001FF2.png
new file mode 100755
index 00000000..52ce7a90
Binary files /dev/null and b/static/icons/06001FF2.png differ
diff --git a/static/icons/06001FF3.png b/static/icons/06001FF3.png
new file mode 100755
index 00000000..21d54bbc
Binary files /dev/null and b/static/icons/06001FF3.png differ
diff --git a/static/icons/06001FF4.png b/static/icons/06001FF4.png
new file mode 100755
index 00000000..fa27297a
Binary files /dev/null and b/static/icons/06001FF4.png differ
diff --git a/static/icons/06001FF5.png b/static/icons/06001FF5.png
new file mode 100755
index 00000000..c0aac7d1
Binary files /dev/null and b/static/icons/06001FF5.png differ
diff --git a/static/icons/06001FF6.png b/static/icons/06001FF6.png
new file mode 100755
index 00000000..2980956f
Binary files /dev/null and b/static/icons/06001FF6.png differ
diff --git a/static/icons/06001FF8.png b/static/icons/06001FF8.png
new file mode 100755
index 00000000..243a4226
Binary files /dev/null and b/static/icons/06001FF8.png differ
diff --git a/static/icons/06001FF9.png b/static/icons/06001FF9.png
new file mode 100755
index 00000000..f1e6d389
Binary files /dev/null and b/static/icons/06001FF9.png differ
diff --git a/static/icons/06001FFA.png b/static/icons/06001FFA.png
new file mode 100755
index 00000000..1e1506ba
Binary files /dev/null and b/static/icons/06001FFA.png differ
diff --git a/static/icons/06001FFC.png b/static/icons/06001FFC.png
new file mode 100755
index 00000000..1def22d0
Binary files /dev/null and b/static/icons/06001FFC.png differ
diff --git a/static/icons/06001FFD.png b/static/icons/06001FFD.png
new file mode 100755
index 00000000..789cd2fe
Binary files /dev/null and b/static/icons/06001FFD.png differ
diff --git a/static/icons/06001FFE.png b/static/icons/06001FFE.png
new file mode 100755
index 00000000..35805e11
Binary files /dev/null and b/static/icons/06001FFE.png differ
diff --git a/static/icons/06001FFF.png b/static/icons/06001FFF.png
new file mode 100755
index 00000000..7b8529f0
Binary files /dev/null and b/static/icons/06001FFF.png differ
diff --git a/static/icons/06002000.png b/static/icons/06002000.png
new file mode 100755
index 00000000..d5c0eb19
Binary files /dev/null and b/static/icons/06002000.png differ
diff --git a/static/icons/06002001.png b/static/icons/06002001.png
new file mode 100755
index 00000000..8a9e1168
Binary files /dev/null and b/static/icons/06002001.png differ
diff --git a/static/icons/06002002.png b/static/icons/06002002.png
new file mode 100755
index 00000000..a4c1989e
Binary files /dev/null and b/static/icons/06002002.png differ
diff --git a/static/icons/06002003.png b/static/icons/06002003.png
new file mode 100755
index 00000000..a83e2922
Binary files /dev/null and b/static/icons/06002003.png differ
diff --git a/static/icons/06002004.png b/static/icons/06002004.png
new file mode 100755
index 00000000..9b3d9d89
Binary files /dev/null and b/static/icons/06002004.png differ
diff --git a/static/icons/06002005.png b/static/icons/06002005.png
new file mode 100755
index 00000000..89dbd3af
Binary files /dev/null and b/static/icons/06002005.png differ
diff --git a/static/icons/06002006.png b/static/icons/06002006.png
new file mode 100755
index 00000000..ac10bf8c
Binary files /dev/null and b/static/icons/06002006.png differ
diff --git a/static/icons/06002007.png b/static/icons/06002007.png
new file mode 100755
index 00000000..7376f060
Binary files /dev/null and b/static/icons/06002007.png differ
diff --git a/static/icons/06002008.png b/static/icons/06002008.png
new file mode 100755
index 00000000..392eb6bb
Binary files /dev/null and b/static/icons/06002008.png differ
diff --git a/static/icons/06002009.png b/static/icons/06002009.png
new file mode 100755
index 00000000..ba4f0d4b
Binary files /dev/null and b/static/icons/06002009.png differ
diff --git a/static/icons/0600200A.png b/static/icons/0600200A.png
new file mode 100755
index 00000000..e9674c36
Binary files /dev/null and b/static/icons/0600200A.png differ
diff --git a/static/icons/0600200B.png b/static/icons/0600200B.png
new file mode 100755
index 00000000..7cdee295
Binary files /dev/null and b/static/icons/0600200B.png differ
diff --git a/static/icons/0600200C.png b/static/icons/0600200C.png
new file mode 100755
index 00000000..27ab4ece
Binary files /dev/null and b/static/icons/0600200C.png differ
diff --git a/static/icons/0600200D.png b/static/icons/0600200D.png
new file mode 100755
index 00000000..9986bf14
Binary files /dev/null and b/static/icons/0600200D.png differ
diff --git a/static/icons/0600200E.png b/static/icons/0600200E.png
new file mode 100755
index 00000000..61ee46a1
Binary files /dev/null and b/static/icons/0600200E.png differ
diff --git a/static/icons/0600200F.png b/static/icons/0600200F.png
new file mode 100755
index 00000000..fed675ce
Binary files /dev/null and b/static/icons/0600200F.png differ
diff --git a/static/icons/06002010.png b/static/icons/06002010.png
new file mode 100755
index 00000000..b348b66e
Binary files /dev/null and b/static/icons/06002010.png differ
diff --git a/static/icons/06002011.png b/static/icons/06002011.png
new file mode 100755
index 00000000..7927f261
Binary files /dev/null and b/static/icons/06002011.png differ
diff --git a/static/icons/06002012.png b/static/icons/06002012.png
new file mode 100755
index 00000000..37a18a6b
Binary files /dev/null and b/static/icons/06002012.png differ
diff --git a/static/icons/06002013.png b/static/icons/06002013.png
new file mode 100755
index 00000000..1095d4db
Binary files /dev/null and b/static/icons/06002013.png differ
diff --git a/static/icons/06002014.png b/static/icons/06002014.png
new file mode 100755
index 00000000..d9b56b0f
Binary files /dev/null and b/static/icons/06002014.png differ
diff --git a/static/icons/06002015.png b/static/icons/06002015.png
new file mode 100755
index 00000000..8bdb1a53
Binary files /dev/null and b/static/icons/06002015.png differ
diff --git a/static/icons/06002016.png b/static/icons/06002016.png
new file mode 100755
index 00000000..4cef6936
Binary files /dev/null and b/static/icons/06002016.png differ
diff --git a/static/icons/06002017.png b/static/icons/06002017.png
new file mode 100755
index 00000000..3af2a68c
Binary files /dev/null and b/static/icons/06002017.png differ
diff --git a/static/icons/06002018.png b/static/icons/06002018.png
new file mode 100755
index 00000000..80a1a8d2
Binary files /dev/null and b/static/icons/06002018.png differ
diff --git a/static/icons/06002019.png b/static/icons/06002019.png
new file mode 100755
index 00000000..8870d675
Binary files /dev/null and b/static/icons/06002019.png differ
diff --git a/static/icons/0600201A.png b/static/icons/0600201A.png
new file mode 100755
index 00000000..275e6512
Binary files /dev/null and b/static/icons/0600201A.png differ
diff --git a/static/icons/0600201B.png b/static/icons/0600201B.png
new file mode 100755
index 00000000..960f42bd
Binary files /dev/null and b/static/icons/0600201B.png differ
diff --git a/static/icons/0600201C.png b/static/icons/0600201C.png
new file mode 100755
index 00000000..0a05d03b
Binary files /dev/null and b/static/icons/0600201C.png differ
diff --git a/static/icons/0600201D.png b/static/icons/0600201D.png
new file mode 100755
index 00000000..b1587386
Binary files /dev/null and b/static/icons/0600201D.png differ
diff --git a/static/icons/0600201E.png b/static/icons/0600201E.png
new file mode 100755
index 00000000..da8614f6
Binary files /dev/null and b/static/icons/0600201E.png differ
diff --git a/static/icons/0600201F.png b/static/icons/0600201F.png
new file mode 100755
index 00000000..971117bb
Binary files /dev/null and b/static/icons/0600201F.png differ
diff --git a/static/icons/06002020.png b/static/icons/06002020.png
new file mode 100755
index 00000000..61a585cb
Binary files /dev/null and b/static/icons/06002020.png differ
diff --git a/static/icons/06002021.png b/static/icons/06002021.png
new file mode 100755
index 00000000..45f90f8b
Binary files /dev/null and b/static/icons/06002021.png differ
diff --git a/static/icons/06002022.png b/static/icons/06002022.png
new file mode 100755
index 00000000..52e37b3d
Binary files /dev/null and b/static/icons/06002022.png differ
diff --git a/static/icons/06002023.png b/static/icons/06002023.png
new file mode 100755
index 00000000..39bc9f95
Binary files /dev/null and b/static/icons/06002023.png differ
diff --git a/static/icons/06002024.png b/static/icons/06002024.png
new file mode 100755
index 00000000..35906e25
Binary files /dev/null and b/static/icons/06002024.png differ
diff --git a/static/icons/06002025.png b/static/icons/06002025.png
new file mode 100755
index 00000000..0fdf6ca5
Binary files /dev/null and b/static/icons/06002025.png differ
diff --git a/static/icons/06002026.png b/static/icons/06002026.png
new file mode 100755
index 00000000..2d775a06
Binary files /dev/null and b/static/icons/06002026.png differ
diff --git a/static/icons/06002027.png b/static/icons/06002027.png
new file mode 100755
index 00000000..2085cbe3
Binary files /dev/null and b/static/icons/06002027.png differ
diff --git a/static/icons/06002028.png b/static/icons/06002028.png
new file mode 100755
index 00000000..a156b2b6
Binary files /dev/null and b/static/icons/06002028.png differ
diff --git a/static/icons/06002029.png b/static/icons/06002029.png
new file mode 100755
index 00000000..0987c0eb
Binary files /dev/null and b/static/icons/06002029.png differ
diff --git a/static/icons/0600202B.png b/static/icons/0600202B.png
new file mode 100755
index 00000000..f8691875
Binary files /dev/null and b/static/icons/0600202B.png differ
diff --git a/static/icons/0600202C.png b/static/icons/0600202C.png
new file mode 100755
index 00000000..6ba54f4d
Binary files /dev/null and b/static/icons/0600202C.png differ
diff --git a/static/icons/0600202D.png b/static/icons/0600202D.png
new file mode 100755
index 00000000..051ba8c9
Binary files /dev/null and b/static/icons/0600202D.png differ
diff --git a/static/icons/0600202E.png b/static/icons/0600202E.png
new file mode 100755
index 00000000..dfaeb6ec
Binary files /dev/null and b/static/icons/0600202E.png differ
diff --git a/static/icons/0600202F.png b/static/icons/0600202F.png
new file mode 100755
index 00000000..e395d633
Binary files /dev/null and b/static/icons/0600202F.png differ
diff --git a/static/icons/06002030.png b/static/icons/06002030.png
new file mode 100755
index 00000000..dfdad92c
Binary files /dev/null and b/static/icons/06002030.png differ
diff --git a/static/icons/06002031.png b/static/icons/06002031.png
new file mode 100755
index 00000000..eca0640f
Binary files /dev/null and b/static/icons/06002031.png differ
diff --git a/static/icons/06002032.png b/static/icons/06002032.png
new file mode 100755
index 00000000..a873dac1
Binary files /dev/null and b/static/icons/06002032.png differ
diff --git a/static/icons/06002033.png b/static/icons/06002033.png
new file mode 100755
index 00000000..e9f90f9a
Binary files /dev/null and b/static/icons/06002033.png differ
diff --git a/static/icons/06002034.png b/static/icons/06002034.png
new file mode 100755
index 00000000..a89c2302
Binary files /dev/null and b/static/icons/06002034.png differ
diff --git a/static/icons/06002035.png b/static/icons/06002035.png
new file mode 100755
index 00000000..df19e23e
Binary files /dev/null and b/static/icons/06002035.png differ
diff --git a/static/icons/06002036.png b/static/icons/06002036.png
new file mode 100755
index 00000000..8028c407
Binary files /dev/null and b/static/icons/06002036.png differ
diff --git a/static/icons/06002037.png b/static/icons/06002037.png
new file mode 100755
index 00000000..ae3011bf
Binary files /dev/null and b/static/icons/06002037.png differ
diff --git a/static/icons/06002038.png b/static/icons/06002038.png
new file mode 100755
index 00000000..3628b319
Binary files /dev/null and b/static/icons/06002038.png differ
diff --git a/static/icons/06002039.png b/static/icons/06002039.png
new file mode 100755
index 00000000..0479851a
Binary files /dev/null and b/static/icons/06002039.png differ
diff --git a/static/icons/0600203A.png b/static/icons/0600203A.png
new file mode 100755
index 00000000..2e56fcda
Binary files /dev/null and b/static/icons/0600203A.png differ
diff --git a/static/icons/0600203B.png b/static/icons/0600203B.png
new file mode 100755
index 00000000..2f5b5ed1
Binary files /dev/null and b/static/icons/0600203B.png differ
diff --git a/static/icons/0600203C.png b/static/icons/0600203C.png
new file mode 100755
index 00000000..d6f5b341
Binary files /dev/null and b/static/icons/0600203C.png differ
diff --git a/static/icons/0600203D.png b/static/icons/0600203D.png
new file mode 100755
index 00000000..70149349
Binary files /dev/null and b/static/icons/0600203D.png differ
diff --git a/static/icons/0600203E.png b/static/icons/0600203E.png
new file mode 100755
index 00000000..1382520e
Binary files /dev/null and b/static/icons/0600203E.png differ
diff --git a/static/icons/0600203F.png b/static/icons/0600203F.png
new file mode 100755
index 00000000..8738d839
Binary files /dev/null and b/static/icons/0600203F.png differ
diff --git a/static/icons/06002040.png b/static/icons/06002040.png
new file mode 100755
index 00000000..c3f07b5f
Binary files /dev/null and b/static/icons/06002040.png differ
diff --git a/static/icons/06002041.png b/static/icons/06002041.png
new file mode 100755
index 00000000..7c0afa70
Binary files /dev/null and b/static/icons/06002041.png differ
diff --git a/static/icons/06002042.png b/static/icons/06002042.png
new file mode 100755
index 00000000..0fdf7fcc
Binary files /dev/null and b/static/icons/06002042.png differ
diff --git a/static/icons/06002043.png b/static/icons/06002043.png
new file mode 100755
index 00000000..84b945e5
Binary files /dev/null and b/static/icons/06002043.png differ
diff --git a/static/icons/06002044.png b/static/icons/06002044.png
new file mode 100755
index 00000000..2dd0cd68
Binary files /dev/null and b/static/icons/06002044.png differ
diff --git a/static/icons/06002045.png b/static/icons/06002045.png
new file mode 100755
index 00000000..eee061cf
Binary files /dev/null and b/static/icons/06002045.png differ
diff --git a/static/icons/06002046.png b/static/icons/06002046.png
new file mode 100755
index 00000000..d72281ac
Binary files /dev/null and b/static/icons/06002046.png differ
diff --git a/static/icons/06002047.png b/static/icons/06002047.png
new file mode 100755
index 00000000..12ec5ea5
Binary files /dev/null and b/static/icons/06002047.png differ
diff --git a/static/icons/06002048.png b/static/icons/06002048.png
new file mode 100755
index 00000000..87373898
Binary files /dev/null and b/static/icons/06002048.png differ
diff --git a/static/icons/06002049.png b/static/icons/06002049.png
new file mode 100755
index 00000000..6d48b641
Binary files /dev/null and b/static/icons/06002049.png differ
diff --git a/static/icons/0600204A.png b/static/icons/0600204A.png
new file mode 100755
index 00000000..2174f561
Binary files /dev/null and b/static/icons/0600204A.png differ
diff --git a/static/icons/0600204B.png b/static/icons/0600204B.png
new file mode 100755
index 00000000..174e55c6
Binary files /dev/null and b/static/icons/0600204B.png differ
diff --git a/static/icons/0600204C.png b/static/icons/0600204C.png
new file mode 100755
index 00000000..a0851ed6
Binary files /dev/null and b/static/icons/0600204C.png differ
diff --git a/static/icons/0600204D.png b/static/icons/0600204D.png
new file mode 100755
index 00000000..06adb5e7
Binary files /dev/null and b/static/icons/0600204D.png differ
diff --git a/static/icons/0600204E.png b/static/icons/0600204E.png
new file mode 100755
index 00000000..d7c3bf1e
Binary files /dev/null and b/static/icons/0600204E.png differ
diff --git a/static/icons/0600204F.png b/static/icons/0600204F.png
new file mode 100755
index 00000000..934bd55f
Binary files /dev/null and b/static/icons/0600204F.png differ
diff --git a/static/icons/06002050.png b/static/icons/06002050.png
new file mode 100755
index 00000000..64a09c73
Binary files /dev/null and b/static/icons/06002050.png differ
diff --git a/static/icons/06002051.png b/static/icons/06002051.png
new file mode 100755
index 00000000..ba5ade0f
Binary files /dev/null and b/static/icons/06002051.png differ
diff --git a/static/icons/06002052.png b/static/icons/06002052.png
new file mode 100755
index 00000000..694058eb
Binary files /dev/null and b/static/icons/06002052.png differ
diff --git a/static/icons/06002053.png b/static/icons/06002053.png
new file mode 100755
index 00000000..3c1c2192
Binary files /dev/null and b/static/icons/06002053.png differ
diff --git a/static/icons/06002054.png b/static/icons/06002054.png
new file mode 100755
index 00000000..cc53e8b1
Binary files /dev/null and b/static/icons/06002054.png differ
diff --git a/static/icons/06002055.png b/static/icons/06002055.png
new file mode 100755
index 00000000..fdaee9d3
Binary files /dev/null and b/static/icons/06002055.png differ
diff --git a/static/icons/06002056.png b/static/icons/06002056.png
new file mode 100755
index 00000000..b2e836ee
Binary files /dev/null and b/static/icons/06002056.png differ
diff --git a/static/icons/06002057.png b/static/icons/06002057.png
new file mode 100755
index 00000000..b9224412
Binary files /dev/null and b/static/icons/06002057.png differ
diff --git a/static/icons/06002058.png b/static/icons/06002058.png
new file mode 100755
index 00000000..bbd01acf
Binary files /dev/null and b/static/icons/06002058.png differ
diff --git a/static/icons/06002059.png b/static/icons/06002059.png
new file mode 100755
index 00000000..9576fa02
Binary files /dev/null and b/static/icons/06002059.png differ
diff --git a/static/icons/0600205A.png b/static/icons/0600205A.png
new file mode 100755
index 00000000..ac3afadb
Binary files /dev/null and b/static/icons/0600205A.png differ
diff --git a/static/icons/0600205B.png b/static/icons/0600205B.png
new file mode 100755
index 00000000..d6246426
Binary files /dev/null and b/static/icons/0600205B.png differ
diff --git a/static/icons/0600205C.png b/static/icons/0600205C.png
new file mode 100755
index 00000000..8b2478de
Binary files /dev/null and b/static/icons/0600205C.png differ
diff --git a/static/icons/0600205D.png b/static/icons/0600205D.png
new file mode 100755
index 00000000..b47fe0af
Binary files /dev/null and b/static/icons/0600205D.png differ
diff --git a/static/icons/0600205E.png b/static/icons/0600205E.png
new file mode 100755
index 00000000..1c8cc945
Binary files /dev/null and b/static/icons/0600205E.png differ
diff --git a/static/icons/0600205F.png b/static/icons/0600205F.png
new file mode 100755
index 00000000..0a22de3f
Binary files /dev/null and b/static/icons/0600205F.png differ
diff --git a/static/icons/06002060.png b/static/icons/06002060.png
new file mode 100755
index 00000000..208df587
Binary files /dev/null and b/static/icons/06002060.png differ
diff --git a/static/icons/06002061.png b/static/icons/06002061.png
new file mode 100755
index 00000000..8b257e68
Binary files /dev/null and b/static/icons/06002061.png differ
diff --git a/static/icons/06002062.png b/static/icons/06002062.png
new file mode 100755
index 00000000..c1230df2
Binary files /dev/null and b/static/icons/06002062.png differ
diff --git a/static/icons/06002063.png b/static/icons/06002063.png
new file mode 100755
index 00000000..684b2858
Binary files /dev/null and b/static/icons/06002063.png differ
diff --git a/static/icons/06002064.png b/static/icons/06002064.png
new file mode 100755
index 00000000..864f70f7
Binary files /dev/null and b/static/icons/06002064.png differ
diff --git a/static/icons/06002065.png b/static/icons/06002065.png
new file mode 100755
index 00000000..9a1429ca
Binary files /dev/null and b/static/icons/06002065.png differ
diff --git a/static/icons/06002066.png b/static/icons/06002066.png
new file mode 100755
index 00000000..0c9c9550
Binary files /dev/null and b/static/icons/06002066.png differ
diff --git a/static/icons/06002067.png b/static/icons/06002067.png
new file mode 100755
index 00000000..dfbc5650
Binary files /dev/null and b/static/icons/06002067.png differ
diff --git a/static/icons/06002068.png b/static/icons/06002068.png
new file mode 100755
index 00000000..3fa75991
Binary files /dev/null and b/static/icons/06002068.png differ
diff --git a/static/icons/06002069.png b/static/icons/06002069.png
new file mode 100755
index 00000000..5869565a
Binary files /dev/null and b/static/icons/06002069.png differ
diff --git a/static/icons/0600206A.png b/static/icons/0600206A.png
new file mode 100755
index 00000000..aa604dd8
Binary files /dev/null and b/static/icons/0600206A.png differ
diff --git a/static/icons/0600206B.png b/static/icons/0600206B.png
new file mode 100755
index 00000000..7f4f0117
Binary files /dev/null and b/static/icons/0600206B.png differ
diff --git a/static/icons/0600206C.png b/static/icons/0600206C.png
new file mode 100755
index 00000000..c8682fe0
Binary files /dev/null and b/static/icons/0600206C.png differ
diff --git a/static/icons/0600206D.png b/static/icons/0600206D.png
new file mode 100755
index 00000000..804f17d0
Binary files /dev/null and b/static/icons/0600206D.png differ
diff --git a/static/icons/0600206E.png b/static/icons/0600206E.png
new file mode 100755
index 00000000..cc63ec9e
Binary files /dev/null and b/static/icons/0600206E.png differ
diff --git a/static/icons/0600206F.png b/static/icons/0600206F.png
new file mode 100755
index 00000000..8f413822
Binary files /dev/null and b/static/icons/0600206F.png differ
diff --git a/static/icons/06002070.png b/static/icons/06002070.png
new file mode 100755
index 00000000..a84ba57b
Binary files /dev/null and b/static/icons/06002070.png differ
diff --git a/static/icons/06002071.png b/static/icons/06002071.png
new file mode 100755
index 00000000..57fee1bc
Binary files /dev/null and b/static/icons/06002071.png differ
diff --git a/static/icons/06002072.png b/static/icons/06002072.png
new file mode 100755
index 00000000..963ac16d
Binary files /dev/null and b/static/icons/06002072.png differ
diff --git a/static/icons/06002073.png b/static/icons/06002073.png
new file mode 100755
index 00000000..6ade81bb
Binary files /dev/null and b/static/icons/06002073.png differ
diff --git a/static/icons/06002074.png b/static/icons/06002074.png
new file mode 100755
index 00000000..771c42d2
Binary files /dev/null and b/static/icons/06002074.png differ
diff --git a/static/icons/06002075.png b/static/icons/06002075.png
new file mode 100755
index 00000000..8e564a33
Binary files /dev/null and b/static/icons/06002075.png differ
diff --git a/static/icons/06002076.png b/static/icons/06002076.png
new file mode 100755
index 00000000..a438da62
Binary files /dev/null and b/static/icons/06002076.png differ
diff --git a/static/icons/06002077.png b/static/icons/06002077.png
new file mode 100755
index 00000000..242c46af
Binary files /dev/null and b/static/icons/06002077.png differ
diff --git a/static/icons/06002078.png b/static/icons/06002078.png
new file mode 100755
index 00000000..0c23fd9c
Binary files /dev/null and b/static/icons/06002078.png differ
diff --git a/static/icons/06002079.png b/static/icons/06002079.png
new file mode 100755
index 00000000..9dc70611
Binary files /dev/null and b/static/icons/06002079.png differ
diff --git a/static/icons/0600207B.png b/static/icons/0600207B.png
new file mode 100755
index 00000000..7a307278
Binary files /dev/null and b/static/icons/0600207B.png differ
diff --git a/static/icons/0600207C.png b/static/icons/0600207C.png
new file mode 100755
index 00000000..7b99014f
Binary files /dev/null and b/static/icons/0600207C.png differ
diff --git a/static/icons/0600207D.png b/static/icons/0600207D.png
new file mode 100755
index 00000000..44fb8100
Binary files /dev/null and b/static/icons/0600207D.png differ
diff --git a/static/icons/0600207E.png b/static/icons/0600207E.png
new file mode 100755
index 00000000..303ffbdd
Binary files /dev/null and b/static/icons/0600207E.png differ
diff --git a/static/icons/0600207F.png b/static/icons/0600207F.png
new file mode 100755
index 00000000..79a3e629
Binary files /dev/null and b/static/icons/0600207F.png differ
diff --git a/static/icons/06002080.png b/static/icons/06002080.png
new file mode 100755
index 00000000..1eafa793
Binary files /dev/null and b/static/icons/06002080.png differ
diff --git a/static/icons/06002081.png b/static/icons/06002081.png
new file mode 100755
index 00000000..88ba9650
Binary files /dev/null and b/static/icons/06002081.png differ
diff --git a/static/icons/06002082.png b/static/icons/06002082.png
new file mode 100755
index 00000000..6804c39e
Binary files /dev/null and b/static/icons/06002082.png differ
diff --git a/static/icons/06002083.png b/static/icons/06002083.png
new file mode 100755
index 00000000..d1585a5a
Binary files /dev/null and b/static/icons/06002083.png differ
diff --git a/static/icons/06002084.png b/static/icons/06002084.png
new file mode 100755
index 00000000..b6958636
Binary files /dev/null and b/static/icons/06002084.png differ
diff --git a/static/icons/06002085.png b/static/icons/06002085.png
new file mode 100755
index 00000000..ba0f8bdb
Binary files /dev/null and b/static/icons/06002085.png differ
diff --git a/static/icons/06002086.png b/static/icons/06002086.png
new file mode 100755
index 00000000..d021f6b5
Binary files /dev/null and b/static/icons/06002086.png differ
diff --git a/static/icons/06002087.png b/static/icons/06002087.png
new file mode 100755
index 00000000..c49a5d2e
Binary files /dev/null and b/static/icons/06002087.png differ
diff --git a/static/icons/06002088.png b/static/icons/06002088.png
new file mode 100755
index 00000000..e2881d1d
Binary files /dev/null and b/static/icons/06002088.png differ
diff --git a/static/icons/06002089.png b/static/icons/06002089.png
new file mode 100755
index 00000000..aa8ea923
Binary files /dev/null and b/static/icons/06002089.png differ
diff --git a/static/icons/0600208A.png b/static/icons/0600208A.png
new file mode 100755
index 00000000..1f504c27
Binary files /dev/null and b/static/icons/0600208A.png differ
diff --git a/static/icons/0600208B.png b/static/icons/0600208B.png
new file mode 100755
index 00000000..4f3cdb77
Binary files /dev/null and b/static/icons/0600208B.png differ
diff --git a/static/icons/0600208C.png b/static/icons/0600208C.png
new file mode 100755
index 00000000..210f5424
Binary files /dev/null and b/static/icons/0600208C.png differ
diff --git a/static/icons/0600208D.png b/static/icons/0600208D.png
new file mode 100755
index 00000000..6cf4d504
Binary files /dev/null and b/static/icons/0600208D.png differ
diff --git a/static/icons/0600208E.png b/static/icons/0600208E.png
new file mode 100755
index 00000000..56c0facc
Binary files /dev/null and b/static/icons/0600208E.png differ
diff --git a/static/icons/0600208F.png b/static/icons/0600208F.png
new file mode 100755
index 00000000..34eb192d
Binary files /dev/null and b/static/icons/0600208F.png differ
diff --git a/static/icons/06002090.png b/static/icons/06002090.png
new file mode 100755
index 00000000..152c7222
Binary files /dev/null and b/static/icons/06002090.png differ
diff --git a/static/icons/06002091.png b/static/icons/06002091.png
new file mode 100755
index 00000000..8336bd68
Binary files /dev/null and b/static/icons/06002091.png differ
diff --git a/static/icons/06002092.png b/static/icons/06002092.png
new file mode 100755
index 00000000..3e537ffd
Binary files /dev/null and b/static/icons/06002092.png differ
diff --git a/static/icons/06002093.png b/static/icons/06002093.png
new file mode 100755
index 00000000..dc70f9ca
Binary files /dev/null and b/static/icons/06002093.png differ
diff --git a/static/icons/06002094.png b/static/icons/06002094.png
new file mode 100755
index 00000000..3d016c0a
Binary files /dev/null and b/static/icons/06002094.png differ
diff --git a/static/icons/06002095.png b/static/icons/06002095.png
new file mode 100755
index 00000000..c21bdeef
Binary files /dev/null and b/static/icons/06002095.png differ
diff --git a/static/icons/06002096.png b/static/icons/06002096.png
new file mode 100755
index 00000000..13e6300f
Binary files /dev/null and b/static/icons/06002096.png differ
diff --git a/static/icons/06002097.png b/static/icons/06002097.png
new file mode 100755
index 00000000..f6adf972
Binary files /dev/null and b/static/icons/06002097.png differ
diff --git a/static/icons/06002098.png b/static/icons/06002098.png
new file mode 100755
index 00000000..18324a35
Binary files /dev/null and b/static/icons/06002098.png differ
diff --git a/static/icons/06002099.png b/static/icons/06002099.png
new file mode 100755
index 00000000..ac28d605
Binary files /dev/null and b/static/icons/06002099.png differ
diff --git a/static/icons/0600209A.png b/static/icons/0600209A.png
new file mode 100755
index 00000000..17109d89
Binary files /dev/null and b/static/icons/0600209A.png differ
diff --git a/static/icons/0600209B.png b/static/icons/0600209B.png
new file mode 100755
index 00000000..4db6bbd9
Binary files /dev/null and b/static/icons/0600209B.png differ
diff --git a/static/icons/0600209C.png b/static/icons/0600209C.png
new file mode 100755
index 00000000..930cb63c
Binary files /dev/null and b/static/icons/0600209C.png differ
diff --git a/static/icons/0600209D.png b/static/icons/0600209D.png
new file mode 100755
index 00000000..3e863ea0
Binary files /dev/null and b/static/icons/0600209D.png differ
diff --git a/static/icons/0600209E.png b/static/icons/0600209E.png
new file mode 100755
index 00000000..903a9883
Binary files /dev/null and b/static/icons/0600209E.png differ
diff --git a/static/icons/0600209F.png b/static/icons/0600209F.png
new file mode 100755
index 00000000..db6b73c3
Binary files /dev/null and b/static/icons/0600209F.png differ
diff --git a/static/icons/060020A0.png b/static/icons/060020A0.png
new file mode 100755
index 00000000..a2ba832a
Binary files /dev/null and b/static/icons/060020A0.png differ
diff --git a/static/icons/060020A2.png b/static/icons/060020A2.png
new file mode 100755
index 00000000..ef0ec30d
Binary files /dev/null and b/static/icons/060020A2.png differ
diff --git a/static/icons/060020A3.png b/static/icons/060020A3.png
new file mode 100755
index 00000000..5ee9d911
Binary files /dev/null and b/static/icons/060020A3.png differ
diff --git a/static/icons/060020A4.png b/static/icons/060020A4.png
new file mode 100755
index 00000000..1d08c85f
Binary files /dev/null and b/static/icons/060020A4.png differ
diff --git a/static/icons/060020A5.png b/static/icons/060020A5.png
new file mode 100755
index 00000000..5e5196d8
Binary files /dev/null and b/static/icons/060020A5.png differ
diff --git a/static/icons/060020A6.png b/static/icons/060020A6.png
new file mode 100755
index 00000000..f44f4646
Binary files /dev/null and b/static/icons/060020A6.png differ
diff --git a/static/icons/060020A7.png b/static/icons/060020A7.png
new file mode 100755
index 00000000..0fa86ef3
Binary files /dev/null and b/static/icons/060020A7.png differ
diff --git a/static/icons/060020A8.png b/static/icons/060020A8.png
new file mode 100755
index 00000000..73c210f5
Binary files /dev/null and b/static/icons/060020A8.png differ
diff --git a/static/icons/060020A9.png b/static/icons/060020A9.png
new file mode 100755
index 00000000..f5fa2347
Binary files /dev/null and b/static/icons/060020A9.png differ
diff --git a/static/icons/060020AA.png b/static/icons/060020AA.png
new file mode 100755
index 00000000..6b0b441a
Binary files /dev/null and b/static/icons/060020AA.png differ
diff --git a/static/icons/060020AB.png b/static/icons/060020AB.png
new file mode 100755
index 00000000..fa71cfe4
Binary files /dev/null and b/static/icons/060020AB.png differ
diff --git a/static/icons/060020AC.png b/static/icons/060020AC.png
new file mode 100755
index 00000000..91322a66
Binary files /dev/null and b/static/icons/060020AC.png differ
diff --git a/static/icons/060020AD.png b/static/icons/060020AD.png
new file mode 100755
index 00000000..0c66b83b
Binary files /dev/null and b/static/icons/060020AD.png differ
diff --git a/static/icons/060020AE.png b/static/icons/060020AE.png
new file mode 100755
index 00000000..8bba5e99
Binary files /dev/null and b/static/icons/060020AE.png differ
diff --git a/static/icons/060020AF.png b/static/icons/060020AF.png
new file mode 100755
index 00000000..0f2e17ca
Binary files /dev/null and b/static/icons/060020AF.png differ
diff --git a/static/icons/060020B0.png b/static/icons/060020B0.png
new file mode 100755
index 00000000..51c27c50
Binary files /dev/null and b/static/icons/060020B0.png differ
diff --git a/static/icons/060020B1.png b/static/icons/060020B1.png
new file mode 100755
index 00000000..c07bc719
Binary files /dev/null and b/static/icons/060020B1.png differ
diff --git a/static/icons/060020B2.png b/static/icons/060020B2.png
new file mode 100755
index 00000000..00b82b96
Binary files /dev/null and b/static/icons/060020B2.png differ
diff --git a/static/icons/060020B3.png b/static/icons/060020B3.png
new file mode 100755
index 00000000..34f11aea
Binary files /dev/null and b/static/icons/060020B3.png differ
diff --git a/static/icons/060020B5.png b/static/icons/060020B5.png
new file mode 100755
index 00000000..b64d459d
Binary files /dev/null and b/static/icons/060020B5.png differ
diff --git a/static/icons/060020B6.png b/static/icons/060020B6.png
new file mode 100755
index 00000000..e0ed86e1
Binary files /dev/null and b/static/icons/060020B6.png differ
diff --git a/static/icons/060020B7.png b/static/icons/060020B7.png
new file mode 100755
index 00000000..d1db2a9f
Binary files /dev/null and b/static/icons/060020B7.png differ
diff --git a/static/icons/060020B8.png b/static/icons/060020B8.png
new file mode 100755
index 00000000..a20f00d7
Binary files /dev/null and b/static/icons/060020B8.png differ
diff --git a/static/icons/060020B9.png b/static/icons/060020B9.png
new file mode 100755
index 00000000..042d48b9
Binary files /dev/null and b/static/icons/060020B9.png differ
diff --git a/static/icons/060020BA.png b/static/icons/060020BA.png
new file mode 100755
index 00000000..f3ccc9d3
Binary files /dev/null and b/static/icons/060020BA.png differ
diff --git a/static/icons/060020BB.png b/static/icons/060020BB.png
new file mode 100755
index 00000000..615f0ffd
Binary files /dev/null and b/static/icons/060020BB.png differ
diff --git a/static/icons/060020BC.png b/static/icons/060020BC.png
new file mode 100755
index 00000000..ca415767
Binary files /dev/null and b/static/icons/060020BC.png differ
diff --git a/static/icons/060020BD.png b/static/icons/060020BD.png
new file mode 100755
index 00000000..ab5672dc
Binary files /dev/null and b/static/icons/060020BD.png differ
diff --git a/static/icons/060020BE.png b/static/icons/060020BE.png
new file mode 100755
index 00000000..376fcf5c
Binary files /dev/null and b/static/icons/060020BE.png differ
diff --git a/static/icons/060020BF.png b/static/icons/060020BF.png
new file mode 100755
index 00000000..635145ff
Binary files /dev/null and b/static/icons/060020BF.png differ
diff --git a/static/icons/060020C0.png b/static/icons/060020C0.png
new file mode 100755
index 00000000..23ec8d51
Binary files /dev/null and b/static/icons/060020C0.png differ
diff --git a/static/icons/060020C3.png b/static/icons/060020C3.png
new file mode 100755
index 00000000..92db9ce1
Binary files /dev/null and b/static/icons/060020C3.png differ
diff --git a/static/icons/060020C4.png b/static/icons/060020C4.png
new file mode 100755
index 00000000..57b438a0
Binary files /dev/null and b/static/icons/060020C4.png differ
diff --git a/static/icons/060020C5.png b/static/icons/060020C5.png
new file mode 100755
index 00000000..0675cc6a
Binary files /dev/null and b/static/icons/060020C5.png differ
diff --git a/static/icons/060020C6.png b/static/icons/060020C6.png
new file mode 100755
index 00000000..feb5a016
Binary files /dev/null and b/static/icons/060020C6.png differ
diff --git a/static/icons/060020C7.png b/static/icons/060020C7.png
new file mode 100755
index 00000000..311d0378
Binary files /dev/null and b/static/icons/060020C7.png differ
diff --git a/static/icons/060020C8.png b/static/icons/060020C8.png
new file mode 100755
index 00000000..306c4513
Binary files /dev/null and b/static/icons/060020C8.png differ
diff --git a/static/icons/060020C9.png b/static/icons/060020C9.png
new file mode 100755
index 00000000..bf56fc49
Binary files /dev/null and b/static/icons/060020C9.png differ
diff --git a/static/icons/060020CA.png b/static/icons/060020CA.png
new file mode 100755
index 00000000..0134d33e
Binary files /dev/null and b/static/icons/060020CA.png differ
diff --git a/static/icons/060020CB.png b/static/icons/060020CB.png
new file mode 100755
index 00000000..935beb44
Binary files /dev/null and b/static/icons/060020CB.png differ
diff --git a/static/icons/060020CC.png b/static/icons/060020CC.png
new file mode 100755
index 00000000..f0fd9ca3
Binary files /dev/null and b/static/icons/060020CC.png differ
diff --git a/static/icons/060020CD.png b/static/icons/060020CD.png
new file mode 100755
index 00000000..5d8995a7
Binary files /dev/null and b/static/icons/060020CD.png differ
diff --git a/static/icons/060020CE.png b/static/icons/060020CE.png
new file mode 100755
index 00000000..fe7a2eee
Binary files /dev/null and b/static/icons/060020CE.png differ
diff --git a/static/icons/060020CF.png b/static/icons/060020CF.png
new file mode 100755
index 00000000..17020115
Binary files /dev/null and b/static/icons/060020CF.png differ
diff --git a/static/icons/060020D0.png b/static/icons/060020D0.png
new file mode 100755
index 00000000..5a955ca3
Binary files /dev/null and b/static/icons/060020D0.png differ
diff --git a/static/icons/060020D1.png b/static/icons/060020D1.png
new file mode 100755
index 00000000..48e213e3
Binary files /dev/null and b/static/icons/060020D1.png differ
diff --git a/static/icons/060020D2.png b/static/icons/060020D2.png
new file mode 100755
index 00000000..b0e7d3aa
Binary files /dev/null and b/static/icons/060020D2.png differ
diff --git a/static/icons/060020D3.png b/static/icons/060020D3.png
new file mode 100755
index 00000000..809bc900
Binary files /dev/null and b/static/icons/060020D3.png differ
diff --git a/static/icons/060020D4.png b/static/icons/060020D4.png
new file mode 100755
index 00000000..0280c984
Binary files /dev/null and b/static/icons/060020D4.png differ
diff --git a/static/icons/060020D5.png b/static/icons/060020D5.png
new file mode 100755
index 00000000..5ae9fb98
Binary files /dev/null and b/static/icons/060020D5.png differ
diff --git a/static/icons/060020D6.png b/static/icons/060020D6.png
new file mode 100755
index 00000000..414ef3df
Binary files /dev/null and b/static/icons/060020D6.png differ
diff --git a/static/icons/060020D7.png b/static/icons/060020D7.png
new file mode 100755
index 00000000..f9f26be5
Binary files /dev/null and b/static/icons/060020D7.png differ
diff --git a/static/icons/060020D8.png b/static/icons/060020D8.png
new file mode 100755
index 00000000..937459b1
Binary files /dev/null and b/static/icons/060020D8.png differ
diff --git a/static/icons/060020D9.png b/static/icons/060020D9.png
new file mode 100755
index 00000000..68e0104a
Binary files /dev/null and b/static/icons/060020D9.png differ
diff --git a/static/icons/060020DA.png b/static/icons/060020DA.png
new file mode 100755
index 00000000..5b83d413
Binary files /dev/null and b/static/icons/060020DA.png differ
diff --git a/static/icons/060020DB.png b/static/icons/060020DB.png
new file mode 100755
index 00000000..22b8a736
Binary files /dev/null and b/static/icons/060020DB.png differ
diff --git a/static/icons/060020DC.png b/static/icons/060020DC.png
new file mode 100755
index 00000000..624103ee
Binary files /dev/null and b/static/icons/060020DC.png differ
diff --git a/static/icons/060020DD.png b/static/icons/060020DD.png
new file mode 100755
index 00000000..20e84087
Binary files /dev/null and b/static/icons/060020DD.png differ
diff --git a/static/icons/060020DE.png b/static/icons/060020DE.png
new file mode 100755
index 00000000..befd1c3b
Binary files /dev/null and b/static/icons/060020DE.png differ
diff --git a/static/icons/060020DF.png b/static/icons/060020DF.png
new file mode 100755
index 00000000..a210f626
Binary files /dev/null and b/static/icons/060020DF.png differ
diff --git a/static/icons/060020E0.png b/static/icons/060020E0.png
new file mode 100755
index 00000000..f664279b
Binary files /dev/null and b/static/icons/060020E0.png differ
diff --git a/static/icons/060020E1.png b/static/icons/060020E1.png
new file mode 100755
index 00000000..715bfd0a
Binary files /dev/null and b/static/icons/060020E1.png differ
diff --git a/static/icons/060020E2.png b/static/icons/060020E2.png
new file mode 100755
index 00000000..3cd7e88f
Binary files /dev/null and b/static/icons/060020E2.png differ
diff --git a/static/icons/060020E3.png b/static/icons/060020E3.png
new file mode 100755
index 00000000..b6953aaf
Binary files /dev/null and b/static/icons/060020E3.png differ
diff --git a/static/icons/060020E4.png b/static/icons/060020E4.png
new file mode 100755
index 00000000..74d08c8d
Binary files /dev/null and b/static/icons/060020E4.png differ
diff --git a/static/icons/060020E5.png b/static/icons/060020E5.png
new file mode 100755
index 00000000..a88e59e6
Binary files /dev/null and b/static/icons/060020E5.png differ
diff --git a/static/icons/060020E6.png b/static/icons/060020E6.png
new file mode 100755
index 00000000..a86acc2b
Binary files /dev/null and b/static/icons/060020E6.png differ
diff --git a/static/icons/060020E7.png b/static/icons/060020E7.png
new file mode 100755
index 00000000..b2e3ef44
Binary files /dev/null and b/static/icons/060020E7.png differ
diff --git a/static/icons/060020E8.png b/static/icons/060020E8.png
new file mode 100755
index 00000000..db7cebb1
Binary files /dev/null and b/static/icons/060020E8.png differ
diff --git a/static/icons/060020E9.png b/static/icons/060020E9.png
new file mode 100755
index 00000000..e959cad9
Binary files /dev/null and b/static/icons/060020E9.png differ
diff --git a/static/icons/060020EA.png b/static/icons/060020EA.png
new file mode 100755
index 00000000..ee7c765f
Binary files /dev/null and b/static/icons/060020EA.png differ
diff --git a/static/icons/060020EB.png b/static/icons/060020EB.png
new file mode 100755
index 00000000..b80fee87
Binary files /dev/null and b/static/icons/060020EB.png differ
diff --git a/static/icons/060020EC.png b/static/icons/060020EC.png
new file mode 100755
index 00000000..3282ea79
Binary files /dev/null and b/static/icons/060020EC.png differ
diff --git a/static/icons/060020ED.png b/static/icons/060020ED.png
new file mode 100755
index 00000000..6ee22d5a
Binary files /dev/null and b/static/icons/060020ED.png differ
diff --git a/static/icons/060020EE.png b/static/icons/060020EE.png
new file mode 100755
index 00000000..d8305264
Binary files /dev/null and b/static/icons/060020EE.png differ
diff --git a/static/icons/060020EF.png b/static/icons/060020EF.png
new file mode 100755
index 00000000..359d4400
Binary files /dev/null and b/static/icons/060020EF.png differ
diff --git a/static/icons/060020F0.png b/static/icons/060020F0.png
new file mode 100755
index 00000000..ddd94b64
Binary files /dev/null and b/static/icons/060020F0.png differ
diff --git a/static/icons/060020F1.png b/static/icons/060020F1.png
new file mode 100755
index 00000000..c6c7027f
Binary files /dev/null and b/static/icons/060020F1.png differ
diff --git a/static/icons/060020F2.png b/static/icons/060020F2.png
new file mode 100755
index 00000000..e6c79d9a
Binary files /dev/null and b/static/icons/060020F2.png differ
diff --git a/static/icons/060020F3.png b/static/icons/060020F3.png
new file mode 100755
index 00000000..2fc3388c
Binary files /dev/null and b/static/icons/060020F3.png differ
diff --git a/static/icons/060020F4.png b/static/icons/060020F4.png
new file mode 100755
index 00000000..b9024d64
Binary files /dev/null and b/static/icons/060020F4.png differ
diff --git a/static/icons/060020F5.png b/static/icons/060020F5.png
new file mode 100755
index 00000000..49264953
Binary files /dev/null and b/static/icons/060020F5.png differ
diff --git a/static/icons/060020F6.png b/static/icons/060020F6.png
new file mode 100755
index 00000000..6d1a762a
Binary files /dev/null and b/static/icons/060020F6.png differ
diff --git a/static/icons/060020F7.png b/static/icons/060020F7.png
new file mode 100755
index 00000000..87cedd6f
Binary files /dev/null and b/static/icons/060020F7.png differ
diff --git a/static/icons/060020F8.png b/static/icons/060020F8.png
new file mode 100755
index 00000000..7fce53a3
Binary files /dev/null and b/static/icons/060020F8.png differ
diff --git a/static/icons/060020F9.png b/static/icons/060020F9.png
new file mode 100755
index 00000000..bf1be12a
Binary files /dev/null and b/static/icons/060020F9.png differ
diff --git a/static/icons/060020FA.png b/static/icons/060020FA.png
new file mode 100755
index 00000000..dc70b837
Binary files /dev/null and b/static/icons/060020FA.png differ
diff --git a/static/icons/060020FB.png b/static/icons/060020FB.png
new file mode 100755
index 00000000..042f11a9
Binary files /dev/null and b/static/icons/060020FB.png differ
diff --git a/static/icons/060020FC.png b/static/icons/060020FC.png
new file mode 100755
index 00000000..f0586008
Binary files /dev/null and b/static/icons/060020FC.png differ
diff --git a/static/icons/060020FD.png b/static/icons/060020FD.png
new file mode 100755
index 00000000..32dd7bd3
Binary files /dev/null and b/static/icons/060020FD.png differ
diff --git a/static/icons/060020FE.png b/static/icons/060020FE.png
new file mode 100755
index 00000000..af4e7729
Binary files /dev/null and b/static/icons/060020FE.png differ
diff --git a/static/icons/060020FF.png b/static/icons/060020FF.png
new file mode 100755
index 00000000..611511d9
Binary files /dev/null and b/static/icons/060020FF.png differ
diff --git a/static/icons/06002100.png b/static/icons/06002100.png
new file mode 100755
index 00000000..a0f8fc99
Binary files /dev/null and b/static/icons/06002100.png differ
diff --git a/static/icons/06002101.png b/static/icons/06002101.png
new file mode 100755
index 00000000..aba979ba
Binary files /dev/null and b/static/icons/06002101.png differ
diff --git a/static/icons/06002102.png b/static/icons/06002102.png
new file mode 100755
index 00000000..c387e66f
Binary files /dev/null and b/static/icons/06002102.png differ
diff --git a/static/icons/06002103.png b/static/icons/06002103.png
new file mode 100755
index 00000000..ccaa8994
Binary files /dev/null and b/static/icons/06002103.png differ
diff --git a/static/icons/06002104.png b/static/icons/06002104.png
new file mode 100755
index 00000000..b6483d45
Binary files /dev/null and b/static/icons/06002104.png differ
diff --git a/static/icons/06002105.png b/static/icons/06002105.png
new file mode 100755
index 00000000..f6a24809
Binary files /dev/null and b/static/icons/06002105.png differ
diff --git a/static/icons/06002106.png b/static/icons/06002106.png
new file mode 100755
index 00000000..c294394a
Binary files /dev/null and b/static/icons/06002106.png differ
diff --git a/static/icons/06002107.png b/static/icons/06002107.png
new file mode 100755
index 00000000..92fc72f4
Binary files /dev/null and b/static/icons/06002107.png differ
diff --git a/static/icons/06002109.png b/static/icons/06002109.png
new file mode 100755
index 00000000..422799d0
Binary files /dev/null and b/static/icons/06002109.png differ
diff --git a/static/icons/0600210A.png b/static/icons/0600210A.png
new file mode 100755
index 00000000..4139c2e0
Binary files /dev/null and b/static/icons/0600210A.png differ
diff --git a/static/icons/0600210C.png b/static/icons/0600210C.png
new file mode 100755
index 00000000..c9ce869d
Binary files /dev/null and b/static/icons/0600210C.png differ
diff --git a/static/icons/0600210D.png b/static/icons/0600210D.png
new file mode 100755
index 00000000..fbe81843
Binary files /dev/null and b/static/icons/0600210D.png differ
diff --git a/static/icons/0600210E.png b/static/icons/0600210E.png
new file mode 100755
index 00000000..18ae4bd3
Binary files /dev/null and b/static/icons/0600210E.png differ
diff --git a/static/icons/0600210F.png b/static/icons/0600210F.png
new file mode 100755
index 00000000..e61fcc7c
Binary files /dev/null and b/static/icons/0600210F.png differ
diff --git a/static/icons/06002110.png b/static/icons/06002110.png
new file mode 100755
index 00000000..bc72f0a4
Binary files /dev/null and b/static/icons/06002110.png differ
diff --git a/static/icons/06002111.png b/static/icons/06002111.png
new file mode 100755
index 00000000..51f921d1
Binary files /dev/null and b/static/icons/06002111.png differ
diff --git a/static/icons/06002112.png b/static/icons/06002112.png
new file mode 100755
index 00000000..4d1a9dbf
Binary files /dev/null and b/static/icons/06002112.png differ
diff --git a/static/icons/06002113.png b/static/icons/06002113.png
new file mode 100755
index 00000000..852d69ca
Binary files /dev/null and b/static/icons/06002113.png differ
diff --git a/static/icons/06002114.png b/static/icons/06002114.png
new file mode 100755
index 00000000..c47640ed
Binary files /dev/null and b/static/icons/06002114.png differ
diff --git a/static/icons/06002115.png b/static/icons/06002115.png
new file mode 100755
index 00000000..d0911d95
Binary files /dev/null and b/static/icons/06002115.png differ
diff --git a/static/icons/06002116.png b/static/icons/06002116.png
new file mode 100755
index 00000000..0ccfd0f5
Binary files /dev/null and b/static/icons/06002116.png differ
diff --git a/static/icons/06002117.png b/static/icons/06002117.png
new file mode 100755
index 00000000..e2902390
Binary files /dev/null and b/static/icons/06002117.png differ
diff --git a/static/icons/06002119.png b/static/icons/06002119.png
new file mode 100755
index 00000000..72d7c860
Binary files /dev/null and b/static/icons/06002119.png differ
diff --git a/static/icons/0600211A.png b/static/icons/0600211A.png
new file mode 100755
index 00000000..ddaf964e
Binary files /dev/null and b/static/icons/0600211A.png differ
diff --git a/static/icons/0600211B.png b/static/icons/0600211B.png
new file mode 100755
index 00000000..fd7870e0
Binary files /dev/null and b/static/icons/0600211B.png differ
diff --git a/static/icons/0600211C.png b/static/icons/0600211C.png
new file mode 100755
index 00000000..3ba17b17
Binary files /dev/null and b/static/icons/0600211C.png differ
diff --git a/static/icons/0600211D.png b/static/icons/0600211D.png
new file mode 100755
index 00000000..b3d35d94
Binary files /dev/null and b/static/icons/0600211D.png differ
diff --git a/static/icons/0600211E.png b/static/icons/0600211E.png
new file mode 100755
index 00000000..e4412a2f
Binary files /dev/null and b/static/icons/0600211E.png differ
diff --git a/static/icons/0600211F.png b/static/icons/0600211F.png
new file mode 100755
index 00000000..03f5323b
Binary files /dev/null and b/static/icons/0600211F.png differ
diff --git a/static/icons/06002120.png b/static/icons/06002120.png
new file mode 100755
index 00000000..e421fbbc
Binary files /dev/null and b/static/icons/06002120.png differ
diff --git a/static/icons/06002123.png b/static/icons/06002123.png
new file mode 100755
index 00000000..bd3aa128
Binary files /dev/null and b/static/icons/06002123.png differ
diff --git a/static/icons/06002124.png b/static/icons/06002124.png
new file mode 100755
index 00000000..12004678
Binary files /dev/null and b/static/icons/06002124.png differ
diff --git a/static/icons/06002125.png b/static/icons/06002125.png
new file mode 100755
index 00000000..7d1c74eb
Binary files /dev/null and b/static/icons/06002125.png differ
diff --git a/static/icons/06002126.png b/static/icons/06002126.png
new file mode 100755
index 00000000..f9294f19
Binary files /dev/null and b/static/icons/06002126.png differ
diff --git a/static/icons/06002127.png b/static/icons/06002127.png
new file mode 100755
index 00000000..6b910b51
Binary files /dev/null and b/static/icons/06002127.png differ
diff --git a/static/icons/0600212A.png b/static/icons/0600212A.png
new file mode 100755
index 00000000..cb87c8da
Binary files /dev/null and b/static/icons/0600212A.png differ
diff --git a/static/icons/0600212C.png b/static/icons/0600212C.png
new file mode 100755
index 00000000..d514b960
Binary files /dev/null and b/static/icons/0600212C.png differ
diff --git a/static/icons/0600212E.png b/static/icons/0600212E.png
new file mode 100755
index 00000000..a75dc5db
Binary files /dev/null and b/static/icons/0600212E.png differ
diff --git a/static/icons/06002130.png b/static/icons/06002130.png
new file mode 100755
index 00000000..1ab43f92
Binary files /dev/null and b/static/icons/06002130.png differ
diff --git a/static/icons/06002132.png b/static/icons/06002132.png
new file mode 100755
index 00000000..ef79e4ee
Binary files /dev/null and b/static/icons/06002132.png differ
diff --git a/static/icons/06002134.png b/static/icons/06002134.png
new file mode 100755
index 00000000..946eb49d
Binary files /dev/null and b/static/icons/06002134.png differ
diff --git a/static/icons/06002136.png b/static/icons/06002136.png
new file mode 100755
index 00000000..55098c03
Binary files /dev/null and b/static/icons/06002136.png differ
diff --git a/static/icons/06002138.png b/static/icons/06002138.png
new file mode 100755
index 00000000..b68ae4d3
Binary files /dev/null and b/static/icons/06002138.png differ
diff --git a/static/icons/0600213A.png b/static/icons/0600213A.png
new file mode 100755
index 00000000..60a57407
Binary files /dev/null and b/static/icons/0600213A.png differ
diff --git a/static/icons/0600213C.png b/static/icons/0600213C.png
new file mode 100755
index 00000000..18fe9a02
Binary files /dev/null and b/static/icons/0600213C.png differ
diff --git a/static/icons/0600213E.png b/static/icons/0600213E.png
new file mode 100755
index 00000000..8e1ce6a3
Binary files /dev/null and b/static/icons/0600213E.png differ
diff --git a/static/icons/06002140.png b/static/icons/06002140.png
new file mode 100755
index 00000000..0e66711c
Binary files /dev/null and b/static/icons/06002140.png differ
diff --git a/static/icons/06002142.png b/static/icons/06002142.png
new file mode 100755
index 00000000..d0a1de8c
Binary files /dev/null and b/static/icons/06002142.png differ
diff --git a/static/icons/06002144.png b/static/icons/06002144.png
new file mode 100755
index 00000000..36d0dfa6
Binary files /dev/null and b/static/icons/06002144.png differ
diff --git a/static/icons/06002146.png b/static/icons/06002146.png
new file mode 100755
index 00000000..ff37d776
Binary files /dev/null and b/static/icons/06002146.png differ
diff --git a/static/icons/06002148.png b/static/icons/06002148.png
new file mode 100755
index 00000000..ab535195
Binary files /dev/null and b/static/icons/06002148.png differ
diff --git a/static/icons/0600214A.png b/static/icons/0600214A.png
new file mode 100755
index 00000000..2a93518f
Binary files /dev/null and b/static/icons/0600214A.png differ
diff --git a/static/icons/0600214B.png b/static/icons/0600214B.png
new file mode 100755
index 00000000..26edbb12
Binary files /dev/null and b/static/icons/0600214B.png differ
diff --git a/static/icons/0600214C.png b/static/icons/0600214C.png
new file mode 100755
index 00000000..905f1d0a
Binary files /dev/null and b/static/icons/0600214C.png differ
diff --git a/static/icons/0600214E.png b/static/icons/0600214E.png
new file mode 100755
index 00000000..f17e83aa
Binary files /dev/null and b/static/icons/0600214E.png differ
diff --git a/static/icons/0600214F.png b/static/icons/0600214F.png
new file mode 100755
index 00000000..98bfbe73
Binary files /dev/null and b/static/icons/0600214F.png differ
diff --git a/static/icons/06002150.png b/static/icons/06002150.png
new file mode 100755
index 00000000..6504ee8c
Binary files /dev/null and b/static/icons/06002150.png differ
diff --git a/static/icons/06002151.png b/static/icons/06002151.png
new file mode 100755
index 00000000..72162847
Binary files /dev/null and b/static/icons/06002151.png differ
diff --git a/static/icons/06002152.png b/static/icons/06002152.png
new file mode 100755
index 00000000..04d7c668
Binary files /dev/null and b/static/icons/06002152.png differ
diff --git a/static/icons/06002153.png b/static/icons/06002153.png
new file mode 100755
index 00000000..114cf0b3
Binary files /dev/null and b/static/icons/06002153.png differ
diff --git a/static/icons/06002154.png b/static/icons/06002154.png
new file mode 100755
index 00000000..a9666378
Binary files /dev/null and b/static/icons/06002154.png differ
diff --git a/static/icons/06002155.png b/static/icons/06002155.png
new file mode 100755
index 00000000..8d77898a
Binary files /dev/null and b/static/icons/06002155.png differ
diff --git a/static/icons/06002156.png b/static/icons/06002156.png
new file mode 100755
index 00000000..a62009f4
Binary files /dev/null and b/static/icons/06002156.png differ
diff --git a/static/icons/06002157.png b/static/icons/06002157.png
new file mode 100755
index 00000000..fe56f055
Binary files /dev/null and b/static/icons/06002157.png differ
diff --git a/static/icons/06002158.png b/static/icons/06002158.png
new file mode 100755
index 00000000..c5792c32
Binary files /dev/null and b/static/icons/06002158.png differ
diff --git a/static/icons/06002159.png b/static/icons/06002159.png
new file mode 100755
index 00000000..7d91a2b6
Binary files /dev/null and b/static/icons/06002159.png differ
diff --git a/static/icons/0600215A.png b/static/icons/0600215A.png
new file mode 100755
index 00000000..6884137a
Binary files /dev/null and b/static/icons/0600215A.png differ
diff --git a/static/icons/0600215B.png b/static/icons/0600215B.png
new file mode 100755
index 00000000..545d1d36
Binary files /dev/null and b/static/icons/0600215B.png differ
diff --git a/static/icons/0600215C.png b/static/icons/0600215C.png
new file mode 100755
index 00000000..0f5ba566
Binary files /dev/null and b/static/icons/0600215C.png differ
diff --git a/static/icons/0600215D.png b/static/icons/0600215D.png
new file mode 100755
index 00000000..ffa73da1
Binary files /dev/null and b/static/icons/0600215D.png differ
diff --git a/static/icons/0600215E.png b/static/icons/0600215E.png
new file mode 100755
index 00000000..27dbb20b
Binary files /dev/null and b/static/icons/0600215E.png differ
diff --git a/static/icons/0600215F.png b/static/icons/0600215F.png
new file mode 100755
index 00000000..74abe816
Binary files /dev/null and b/static/icons/0600215F.png differ
diff --git a/static/icons/06002160.png b/static/icons/06002160.png
new file mode 100755
index 00000000..eb03c1f8
Binary files /dev/null and b/static/icons/06002160.png differ
diff --git a/static/icons/06002161.png b/static/icons/06002161.png
new file mode 100755
index 00000000..cbf94dfa
Binary files /dev/null and b/static/icons/06002161.png differ
diff --git a/static/icons/06002162.png b/static/icons/06002162.png
new file mode 100755
index 00000000..54baca3d
Binary files /dev/null and b/static/icons/06002162.png differ
diff --git a/static/icons/06002163.png b/static/icons/06002163.png
new file mode 100755
index 00000000..1bf4149b
Binary files /dev/null and b/static/icons/06002163.png differ
diff --git a/static/icons/06002166.png b/static/icons/06002166.png
new file mode 100755
index 00000000..fd7c0533
Binary files /dev/null and b/static/icons/06002166.png differ
diff --git a/static/icons/06002167.png b/static/icons/06002167.png
new file mode 100755
index 00000000..d36ba067
Binary files /dev/null and b/static/icons/06002167.png differ
diff --git a/static/icons/06002169.png b/static/icons/06002169.png
new file mode 100755
index 00000000..91fd41ed
Binary files /dev/null and b/static/icons/06002169.png differ
diff --git a/static/icons/0600216A.png b/static/icons/0600216A.png
new file mode 100755
index 00000000..b1a609eb
Binary files /dev/null and b/static/icons/0600216A.png differ
diff --git a/static/icons/0600216B.png b/static/icons/0600216B.png
new file mode 100755
index 00000000..9bf7b0ce
Binary files /dev/null and b/static/icons/0600216B.png differ
diff --git a/static/icons/0600216C.png b/static/icons/0600216C.png
new file mode 100755
index 00000000..a0567670
Binary files /dev/null and b/static/icons/0600216C.png differ
diff --git a/static/icons/0600216D.png b/static/icons/0600216D.png
new file mode 100755
index 00000000..6d778aad
Binary files /dev/null and b/static/icons/0600216D.png differ
diff --git a/static/icons/0600216E.png b/static/icons/0600216E.png
new file mode 100755
index 00000000..374d2f61
Binary files /dev/null and b/static/icons/0600216E.png differ
diff --git a/static/icons/0600216F.png b/static/icons/0600216F.png
new file mode 100755
index 00000000..887c174f
Binary files /dev/null and b/static/icons/0600216F.png differ
diff --git a/static/icons/06002170.png b/static/icons/06002170.png
new file mode 100755
index 00000000..788ccd1f
Binary files /dev/null and b/static/icons/06002170.png differ
diff --git a/static/icons/06002171.png b/static/icons/06002171.png
new file mode 100755
index 00000000..59588949
Binary files /dev/null and b/static/icons/06002171.png differ
diff --git a/static/icons/06002172.png b/static/icons/06002172.png
new file mode 100755
index 00000000..dc1b05f4
Binary files /dev/null and b/static/icons/06002172.png differ
diff --git a/static/icons/06002173.png b/static/icons/06002173.png
new file mode 100755
index 00000000..6dbc905e
Binary files /dev/null and b/static/icons/06002173.png differ
diff --git a/static/icons/06002174.png b/static/icons/06002174.png
new file mode 100755
index 00000000..3450bdf4
Binary files /dev/null and b/static/icons/06002174.png differ
diff --git a/static/icons/06002175.png b/static/icons/06002175.png
new file mode 100755
index 00000000..f69dc257
Binary files /dev/null and b/static/icons/06002175.png differ
diff --git a/static/icons/06002176.png b/static/icons/06002176.png
new file mode 100755
index 00000000..511d3db9
Binary files /dev/null and b/static/icons/06002176.png differ
diff --git a/static/icons/06002177.png b/static/icons/06002177.png
new file mode 100755
index 00000000..fd6bf221
Binary files /dev/null and b/static/icons/06002177.png differ
diff --git a/static/icons/06002178.png b/static/icons/06002178.png
new file mode 100755
index 00000000..fd837ab4
Binary files /dev/null and b/static/icons/06002178.png differ
diff --git a/static/icons/06002179.png b/static/icons/06002179.png
new file mode 100755
index 00000000..3f0a6ea2
Binary files /dev/null and b/static/icons/06002179.png differ
diff --git a/static/icons/0600217A.png b/static/icons/0600217A.png
new file mode 100755
index 00000000..ab09db57
Binary files /dev/null and b/static/icons/0600217A.png differ
diff --git a/static/icons/0600217B.png b/static/icons/0600217B.png
new file mode 100755
index 00000000..2f3bd228
Binary files /dev/null and b/static/icons/0600217B.png differ
diff --git a/static/icons/0600217C.png b/static/icons/0600217C.png
new file mode 100755
index 00000000..b9487864
Binary files /dev/null and b/static/icons/0600217C.png differ
diff --git a/static/icons/0600217D.png b/static/icons/0600217D.png
new file mode 100755
index 00000000..e5c783e5
Binary files /dev/null and b/static/icons/0600217D.png differ
diff --git a/static/icons/0600217E.png b/static/icons/0600217E.png
new file mode 100755
index 00000000..d61f5bd8
Binary files /dev/null and b/static/icons/0600217E.png differ
diff --git a/static/icons/0600217F.png b/static/icons/0600217F.png
new file mode 100755
index 00000000..0f010f5d
Binary files /dev/null and b/static/icons/0600217F.png differ
diff --git a/static/icons/06002180.png b/static/icons/06002180.png
new file mode 100755
index 00000000..5f83dcff
Binary files /dev/null and b/static/icons/06002180.png differ
diff --git a/static/icons/06002181.png b/static/icons/06002181.png
new file mode 100755
index 00000000..989314bc
Binary files /dev/null and b/static/icons/06002181.png differ
diff --git a/static/icons/06002182.png b/static/icons/06002182.png
new file mode 100755
index 00000000..1cf9a913
Binary files /dev/null and b/static/icons/06002182.png differ
diff --git a/static/icons/06002183.png b/static/icons/06002183.png
new file mode 100755
index 00000000..213b501b
Binary files /dev/null and b/static/icons/06002183.png differ
diff --git a/static/icons/06002184.png b/static/icons/06002184.png
new file mode 100755
index 00000000..af7cfaf5
Binary files /dev/null and b/static/icons/06002184.png differ
diff --git a/static/icons/06002185.png b/static/icons/06002185.png
new file mode 100755
index 00000000..8e5a1a67
Binary files /dev/null and b/static/icons/06002185.png differ
diff --git a/static/icons/06002186.png b/static/icons/06002186.png
new file mode 100755
index 00000000..ec9ab6a2
Binary files /dev/null and b/static/icons/06002186.png differ
diff --git a/static/icons/0600218B.png b/static/icons/0600218B.png
new file mode 100755
index 00000000..b2d753d0
Binary files /dev/null and b/static/icons/0600218B.png differ
diff --git a/static/icons/0600218C.png b/static/icons/0600218C.png
new file mode 100755
index 00000000..bb838b89
Binary files /dev/null and b/static/icons/0600218C.png differ
diff --git a/static/icons/0600218D.png b/static/icons/0600218D.png
new file mode 100755
index 00000000..f8437b95
Binary files /dev/null and b/static/icons/0600218D.png differ
diff --git a/static/icons/0600218E.png b/static/icons/0600218E.png
new file mode 100755
index 00000000..5cbc835e
Binary files /dev/null and b/static/icons/0600218E.png differ
diff --git a/static/icons/0600218F.png b/static/icons/0600218F.png
new file mode 100755
index 00000000..3221e650
Binary files /dev/null and b/static/icons/0600218F.png differ
diff --git a/static/icons/06002190.png b/static/icons/06002190.png
new file mode 100755
index 00000000..0557d259
Binary files /dev/null and b/static/icons/06002190.png differ
diff --git a/static/icons/06002191.png b/static/icons/06002191.png
new file mode 100755
index 00000000..0a8890e8
Binary files /dev/null and b/static/icons/06002191.png differ
diff --git a/static/icons/06002192.png b/static/icons/06002192.png
new file mode 100755
index 00000000..3646825d
Binary files /dev/null and b/static/icons/06002192.png differ
diff --git a/static/icons/06002193.png b/static/icons/06002193.png
new file mode 100755
index 00000000..84f549a7
Binary files /dev/null and b/static/icons/06002193.png differ
diff --git a/static/icons/06002194.png b/static/icons/06002194.png
new file mode 100755
index 00000000..91c82e51
Binary files /dev/null and b/static/icons/06002194.png differ
diff --git a/static/icons/06002195.png b/static/icons/06002195.png
new file mode 100755
index 00000000..0de2bf9e
Binary files /dev/null and b/static/icons/06002195.png differ
diff --git a/static/icons/06002196.png b/static/icons/06002196.png
new file mode 100755
index 00000000..826572a9
Binary files /dev/null and b/static/icons/06002196.png differ
diff --git a/static/icons/06002197.png b/static/icons/06002197.png
new file mode 100755
index 00000000..6540b5a5
Binary files /dev/null and b/static/icons/06002197.png differ
diff --git a/static/icons/06002198.png b/static/icons/06002198.png
new file mode 100755
index 00000000..013df94e
Binary files /dev/null and b/static/icons/06002198.png differ
diff --git a/static/icons/06002199.png b/static/icons/06002199.png
new file mode 100755
index 00000000..24bb8945
Binary files /dev/null and b/static/icons/06002199.png differ
diff --git a/static/icons/0600219A.png b/static/icons/0600219A.png
new file mode 100755
index 00000000..e5de1ea7
Binary files /dev/null and b/static/icons/0600219A.png differ
diff --git a/static/icons/0600219B.png b/static/icons/0600219B.png
new file mode 100755
index 00000000..2b740892
Binary files /dev/null and b/static/icons/0600219B.png differ
diff --git a/static/icons/0600219C.png b/static/icons/0600219C.png
new file mode 100755
index 00000000..2fd21b65
Binary files /dev/null and b/static/icons/0600219C.png differ
diff --git a/static/icons/0600219D.png b/static/icons/0600219D.png
new file mode 100755
index 00000000..4ad5eecc
Binary files /dev/null and b/static/icons/0600219D.png differ
diff --git a/static/icons/0600219E.png b/static/icons/0600219E.png
new file mode 100755
index 00000000..c12c66f5
Binary files /dev/null and b/static/icons/0600219E.png differ
diff --git a/static/icons/0600219F.png b/static/icons/0600219F.png
new file mode 100755
index 00000000..342af7da
Binary files /dev/null and b/static/icons/0600219F.png differ
diff --git a/static/icons/060021A0.png b/static/icons/060021A0.png
new file mode 100755
index 00000000..a7863b5b
Binary files /dev/null and b/static/icons/060021A0.png differ
diff --git a/static/icons/060021A1.png b/static/icons/060021A1.png
new file mode 100755
index 00000000..60cae9d2
Binary files /dev/null and b/static/icons/060021A1.png differ
diff --git a/static/icons/060021A2.png b/static/icons/060021A2.png
new file mode 100755
index 00000000..13d62b41
Binary files /dev/null and b/static/icons/060021A2.png differ
diff --git a/static/icons/060021A3.png b/static/icons/060021A3.png
new file mode 100755
index 00000000..02413f8e
Binary files /dev/null and b/static/icons/060021A3.png differ
diff --git a/static/icons/060021A4.png b/static/icons/060021A4.png
new file mode 100755
index 00000000..2197c3d6
Binary files /dev/null and b/static/icons/060021A4.png differ
diff --git a/static/icons/060021A5.png b/static/icons/060021A5.png
new file mode 100755
index 00000000..6619f1d3
Binary files /dev/null and b/static/icons/060021A5.png differ
diff --git a/static/icons/060021A6.png b/static/icons/060021A6.png
new file mode 100755
index 00000000..5e0ed8d3
Binary files /dev/null and b/static/icons/060021A6.png differ
diff --git a/static/icons/060021A7.png b/static/icons/060021A7.png
new file mode 100755
index 00000000..a8d2b26b
Binary files /dev/null and b/static/icons/060021A7.png differ
diff --git a/static/icons/060021A8.png b/static/icons/060021A8.png
new file mode 100755
index 00000000..6071ab9a
Binary files /dev/null and b/static/icons/060021A8.png differ
diff --git a/static/icons/060021A9.png b/static/icons/060021A9.png
new file mode 100755
index 00000000..623a1d83
Binary files /dev/null and b/static/icons/060021A9.png differ
diff --git a/static/icons/060021AA.png b/static/icons/060021AA.png
new file mode 100755
index 00000000..ae009984
Binary files /dev/null and b/static/icons/060021AA.png differ
diff --git a/static/icons/060021AB.png b/static/icons/060021AB.png
new file mode 100755
index 00000000..61fc2458
Binary files /dev/null and b/static/icons/060021AB.png differ
diff --git a/static/icons/060021AC.png b/static/icons/060021AC.png
new file mode 100755
index 00000000..806353fe
Binary files /dev/null and b/static/icons/060021AC.png differ
diff --git a/static/icons/060021AD.png b/static/icons/060021AD.png
new file mode 100755
index 00000000..901bfe60
Binary files /dev/null and b/static/icons/060021AD.png differ
diff --git a/static/icons/060021AE.png b/static/icons/060021AE.png
new file mode 100755
index 00000000..1079cdd3
Binary files /dev/null and b/static/icons/060021AE.png differ
diff --git a/static/icons/060021AF.png b/static/icons/060021AF.png
new file mode 100755
index 00000000..a8d6083f
Binary files /dev/null and b/static/icons/060021AF.png differ
diff --git a/static/icons/060021B0.png b/static/icons/060021B0.png
new file mode 100755
index 00000000..aec5b04b
Binary files /dev/null and b/static/icons/060021B0.png differ
diff --git a/static/icons/060021B1.png b/static/icons/060021B1.png
new file mode 100755
index 00000000..df7584cd
Binary files /dev/null and b/static/icons/060021B1.png differ
diff --git a/static/icons/060021B2.png b/static/icons/060021B2.png
new file mode 100755
index 00000000..8ace1eb8
Binary files /dev/null and b/static/icons/060021B2.png differ
diff --git a/static/icons/060021B3.png b/static/icons/060021B3.png
new file mode 100755
index 00000000..cace519b
Binary files /dev/null and b/static/icons/060021B3.png differ
diff --git a/static/icons/060021B4.png b/static/icons/060021B4.png
new file mode 100755
index 00000000..7c5ac6c2
Binary files /dev/null and b/static/icons/060021B4.png differ
diff --git a/static/icons/060021B5.png b/static/icons/060021B5.png
new file mode 100755
index 00000000..6edf9938
Binary files /dev/null and b/static/icons/060021B5.png differ
diff --git a/static/icons/060021B6.png b/static/icons/060021B6.png
new file mode 100755
index 00000000..ed40d1f1
Binary files /dev/null and b/static/icons/060021B6.png differ
diff --git a/static/icons/060021B7.png b/static/icons/060021B7.png
new file mode 100755
index 00000000..6348ed33
Binary files /dev/null and b/static/icons/060021B7.png differ
diff --git a/static/icons/060021B8.png b/static/icons/060021B8.png
new file mode 100755
index 00000000..01574fad
Binary files /dev/null and b/static/icons/060021B8.png differ
diff --git a/static/icons/060021B9.png b/static/icons/060021B9.png
new file mode 100755
index 00000000..fedfa3ef
Binary files /dev/null and b/static/icons/060021B9.png differ
diff --git a/static/icons/060021BA.png b/static/icons/060021BA.png
new file mode 100755
index 00000000..4e0d4921
Binary files /dev/null and b/static/icons/060021BA.png differ
diff --git a/static/icons/060021BB.png b/static/icons/060021BB.png
new file mode 100755
index 00000000..47a4286e
Binary files /dev/null and b/static/icons/060021BB.png differ
diff --git a/static/icons/060021BC.png b/static/icons/060021BC.png
new file mode 100755
index 00000000..ff764e67
Binary files /dev/null and b/static/icons/060021BC.png differ
diff --git a/static/icons/060021BD.png b/static/icons/060021BD.png
new file mode 100755
index 00000000..fccdae60
Binary files /dev/null and b/static/icons/060021BD.png differ
diff --git a/static/icons/060021BE.png b/static/icons/060021BE.png
new file mode 100755
index 00000000..0140fb32
Binary files /dev/null and b/static/icons/060021BE.png differ
diff --git a/static/icons/060021BF.png b/static/icons/060021BF.png
new file mode 100755
index 00000000..e7587465
Binary files /dev/null and b/static/icons/060021BF.png differ
diff --git a/static/icons/060021C0.png b/static/icons/060021C0.png
new file mode 100755
index 00000000..352578b0
Binary files /dev/null and b/static/icons/060021C0.png differ
diff --git a/static/icons/060021C1.png b/static/icons/060021C1.png
new file mode 100755
index 00000000..81702fd1
Binary files /dev/null and b/static/icons/060021C1.png differ
diff --git a/static/icons/060021C2.png b/static/icons/060021C2.png
new file mode 100755
index 00000000..39d58ef2
Binary files /dev/null and b/static/icons/060021C2.png differ
diff --git a/static/icons/060021C3.png b/static/icons/060021C3.png
new file mode 100755
index 00000000..a76f5637
Binary files /dev/null and b/static/icons/060021C3.png differ
diff --git a/static/icons/060021C4.png b/static/icons/060021C4.png
new file mode 100755
index 00000000..17b1ece8
Binary files /dev/null and b/static/icons/060021C4.png differ
diff --git a/static/icons/060021C5.png b/static/icons/060021C5.png
new file mode 100755
index 00000000..8cadf8d6
Binary files /dev/null and b/static/icons/060021C5.png differ
diff --git a/static/icons/060021C6.png b/static/icons/060021C6.png
new file mode 100755
index 00000000..4ec4bee9
Binary files /dev/null and b/static/icons/060021C6.png differ
diff --git a/static/icons/060021C7.png b/static/icons/060021C7.png
new file mode 100755
index 00000000..a3811058
Binary files /dev/null and b/static/icons/060021C7.png differ
diff --git a/static/icons/060021C8.png b/static/icons/060021C8.png
new file mode 100755
index 00000000..e005277c
Binary files /dev/null and b/static/icons/060021C8.png differ
diff --git a/static/icons/060021C9.png b/static/icons/060021C9.png
new file mode 100755
index 00000000..901a4b2b
Binary files /dev/null and b/static/icons/060021C9.png differ
diff --git a/static/icons/060021CA.png b/static/icons/060021CA.png
new file mode 100755
index 00000000..e5473780
Binary files /dev/null and b/static/icons/060021CA.png differ
diff --git a/static/icons/060021CB.png b/static/icons/060021CB.png
new file mode 100755
index 00000000..427e41fe
Binary files /dev/null and b/static/icons/060021CB.png differ
diff --git a/static/icons/060021CC.png b/static/icons/060021CC.png
new file mode 100755
index 00000000..ca5d4106
Binary files /dev/null and b/static/icons/060021CC.png differ
diff --git a/static/icons/060021CD.png b/static/icons/060021CD.png
new file mode 100755
index 00000000..b95146eb
Binary files /dev/null and b/static/icons/060021CD.png differ
diff --git a/static/icons/060021CE.png b/static/icons/060021CE.png
new file mode 100755
index 00000000..0d6c6ee4
Binary files /dev/null and b/static/icons/060021CE.png differ
diff --git a/static/icons/060021CF.png b/static/icons/060021CF.png
new file mode 100755
index 00000000..31d93f4a
Binary files /dev/null and b/static/icons/060021CF.png differ
diff --git a/static/icons/060021D0.png b/static/icons/060021D0.png
new file mode 100755
index 00000000..94de3040
Binary files /dev/null and b/static/icons/060021D0.png differ
diff --git a/static/icons/060021D1.png b/static/icons/060021D1.png
new file mode 100755
index 00000000..70d90b4f
Binary files /dev/null and b/static/icons/060021D1.png differ
diff --git a/static/icons/060021D2.png b/static/icons/060021D2.png
new file mode 100755
index 00000000..2ba7383f
Binary files /dev/null and b/static/icons/060021D2.png differ
diff --git a/static/icons/060021D4.png b/static/icons/060021D4.png
new file mode 100755
index 00000000..44ce7bd7
Binary files /dev/null and b/static/icons/060021D4.png differ
diff --git a/static/icons/060021D6.png b/static/icons/060021D6.png
new file mode 100755
index 00000000..325b9b19
Binary files /dev/null and b/static/icons/060021D6.png differ
diff --git a/static/icons/060021D7.png b/static/icons/060021D7.png
new file mode 100755
index 00000000..e78620cb
Binary files /dev/null and b/static/icons/060021D7.png differ
diff --git a/static/icons/060021D8.png b/static/icons/060021D8.png
new file mode 100755
index 00000000..7fe8a135
Binary files /dev/null and b/static/icons/060021D8.png differ
diff --git a/static/icons/060021D9.png b/static/icons/060021D9.png
new file mode 100755
index 00000000..6a7f981d
Binary files /dev/null and b/static/icons/060021D9.png differ
diff --git a/static/icons/060021DA.png b/static/icons/060021DA.png
new file mode 100755
index 00000000..f8c82845
Binary files /dev/null and b/static/icons/060021DA.png differ
diff --git a/static/icons/060021DB.png b/static/icons/060021DB.png
new file mode 100755
index 00000000..ae1edf4e
Binary files /dev/null and b/static/icons/060021DB.png differ
diff --git a/static/icons/060021DC.png b/static/icons/060021DC.png
new file mode 100755
index 00000000..48408d80
Binary files /dev/null and b/static/icons/060021DC.png differ
diff --git a/static/icons/060021DD.png b/static/icons/060021DD.png
new file mode 100755
index 00000000..974afff1
Binary files /dev/null and b/static/icons/060021DD.png differ
diff --git a/static/icons/060021DE.png b/static/icons/060021DE.png
new file mode 100755
index 00000000..2cf7ee84
Binary files /dev/null and b/static/icons/060021DE.png differ
diff --git a/static/icons/060021DF.png b/static/icons/060021DF.png
new file mode 100755
index 00000000..9a44a652
Binary files /dev/null and b/static/icons/060021DF.png differ
diff --git a/static/icons/060021E0.png b/static/icons/060021E0.png
new file mode 100755
index 00000000..e799774f
Binary files /dev/null and b/static/icons/060021E0.png differ
diff --git a/static/icons/060021E1.png b/static/icons/060021E1.png
new file mode 100755
index 00000000..222daa00
Binary files /dev/null and b/static/icons/060021E1.png differ
diff --git a/static/icons/060021E2.png b/static/icons/060021E2.png
new file mode 100755
index 00000000..cf01f30f
Binary files /dev/null and b/static/icons/060021E2.png differ
diff --git a/static/icons/060021E3.png b/static/icons/060021E3.png
new file mode 100755
index 00000000..e638df00
Binary files /dev/null and b/static/icons/060021E3.png differ
diff --git a/static/icons/060021E4.png b/static/icons/060021E4.png
new file mode 100755
index 00000000..097ea1af
Binary files /dev/null and b/static/icons/060021E4.png differ
diff --git a/static/icons/060021E5.png b/static/icons/060021E5.png
new file mode 100755
index 00000000..3f112d83
Binary files /dev/null and b/static/icons/060021E5.png differ
diff --git a/static/icons/060021E6.png b/static/icons/060021E6.png
new file mode 100755
index 00000000..16e91794
Binary files /dev/null and b/static/icons/060021E6.png differ
diff --git a/static/icons/060021E7.png b/static/icons/060021E7.png
new file mode 100755
index 00000000..225c21bc
Binary files /dev/null and b/static/icons/060021E7.png differ
diff --git a/static/icons/060021E8.png b/static/icons/060021E8.png
new file mode 100755
index 00000000..18ae4bd3
Binary files /dev/null and b/static/icons/060021E8.png differ
diff --git a/static/icons/060021E9.png b/static/icons/060021E9.png
new file mode 100755
index 00000000..1ce2cc87
Binary files /dev/null and b/static/icons/060021E9.png differ
diff --git a/static/icons/060021EA.png b/static/icons/060021EA.png
new file mode 100755
index 00000000..4bcbcee0
Binary files /dev/null and b/static/icons/060021EA.png differ
diff --git a/static/icons/060021EB.png b/static/icons/060021EB.png
new file mode 100755
index 00000000..16712087
Binary files /dev/null and b/static/icons/060021EB.png differ
diff --git a/static/icons/060021EC.png b/static/icons/060021EC.png
new file mode 100755
index 00000000..c02470b8
Binary files /dev/null and b/static/icons/060021EC.png differ
diff --git a/static/icons/060021ED.png b/static/icons/060021ED.png
new file mode 100755
index 00000000..5c6666ac
Binary files /dev/null and b/static/icons/060021ED.png differ
diff --git a/static/icons/060021EE.png b/static/icons/060021EE.png
new file mode 100755
index 00000000..ccfbe009
Binary files /dev/null and b/static/icons/060021EE.png differ
diff --git a/static/icons/060021EF.png b/static/icons/060021EF.png
new file mode 100755
index 00000000..00746ffc
Binary files /dev/null and b/static/icons/060021EF.png differ
diff --git a/static/icons/060021F0.png b/static/icons/060021F0.png
new file mode 100755
index 00000000..66f43e9e
Binary files /dev/null and b/static/icons/060021F0.png differ
diff --git a/static/icons/060021F1.png b/static/icons/060021F1.png
new file mode 100755
index 00000000..bb6c3158
Binary files /dev/null and b/static/icons/060021F1.png differ
diff --git a/static/icons/060021F4.png b/static/icons/060021F4.png
new file mode 100755
index 00000000..f82cb5e5
Binary files /dev/null and b/static/icons/060021F4.png differ
diff --git a/static/icons/060021F5.png b/static/icons/060021F5.png
new file mode 100755
index 00000000..28020d5e
Binary files /dev/null and b/static/icons/060021F5.png differ
diff --git a/static/icons/060021F6.png b/static/icons/060021F6.png
new file mode 100755
index 00000000..d9aa3ad4
Binary files /dev/null and b/static/icons/060021F6.png differ
diff --git a/static/icons/060021F7.png b/static/icons/060021F7.png
new file mode 100755
index 00000000..f7b22c37
Binary files /dev/null and b/static/icons/060021F7.png differ
diff --git a/static/icons/060021F8.png b/static/icons/060021F8.png
new file mode 100755
index 00000000..3bdcff37
Binary files /dev/null and b/static/icons/060021F8.png differ
diff --git a/static/icons/060021F9.png b/static/icons/060021F9.png
new file mode 100755
index 00000000..d95ff4a1
Binary files /dev/null and b/static/icons/060021F9.png differ
diff --git a/static/icons/060021FB.png b/static/icons/060021FB.png
new file mode 100755
index 00000000..27a3f080
Binary files /dev/null and b/static/icons/060021FB.png differ
diff --git a/static/icons/060021FC.png b/static/icons/060021FC.png
new file mode 100755
index 00000000..9a282615
Binary files /dev/null and b/static/icons/060021FC.png differ
diff --git a/static/icons/060021FD.png b/static/icons/060021FD.png
new file mode 100755
index 00000000..1623db29
Binary files /dev/null and b/static/icons/060021FD.png differ
diff --git a/static/icons/060021FE.png b/static/icons/060021FE.png
new file mode 100755
index 00000000..790bb1c9
Binary files /dev/null and b/static/icons/060021FE.png differ
diff --git a/static/icons/060021FF.png b/static/icons/060021FF.png
new file mode 100755
index 00000000..8a6e5338
Binary files /dev/null and b/static/icons/060021FF.png differ
diff --git a/static/icons/06002200.png b/static/icons/06002200.png
new file mode 100755
index 00000000..dc70d0f9
Binary files /dev/null and b/static/icons/06002200.png differ
diff --git a/static/icons/06002201.png b/static/icons/06002201.png
new file mode 100755
index 00000000..a26c60d8
Binary files /dev/null and b/static/icons/06002201.png differ
diff --git a/static/icons/06002202.png b/static/icons/06002202.png
new file mode 100755
index 00000000..40049495
Binary files /dev/null and b/static/icons/06002202.png differ
diff --git a/static/icons/06002203.png b/static/icons/06002203.png
new file mode 100755
index 00000000..6157d10a
Binary files /dev/null and b/static/icons/06002203.png differ
diff --git a/static/icons/06002204.png b/static/icons/06002204.png
new file mode 100755
index 00000000..16d0661b
Binary files /dev/null and b/static/icons/06002204.png differ
diff --git a/static/icons/06002205.png b/static/icons/06002205.png
new file mode 100755
index 00000000..a16098b1
Binary files /dev/null and b/static/icons/06002205.png differ
diff --git a/static/icons/06002206.png b/static/icons/06002206.png
new file mode 100755
index 00000000..ef0ecfb1
Binary files /dev/null and b/static/icons/06002206.png differ
diff --git a/static/icons/06002207.png b/static/icons/06002207.png
new file mode 100755
index 00000000..e42214cf
Binary files /dev/null and b/static/icons/06002207.png differ
diff --git a/static/icons/06002208.png b/static/icons/06002208.png
new file mode 100755
index 00000000..9f31ff81
Binary files /dev/null and b/static/icons/06002208.png differ
diff --git a/static/icons/06002209.png b/static/icons/06002209.png
new file mode 100755
index 00000000..e25ea2a0
Binary files /dev/null and b/static/icons/06002209.png differ
diff --git a/static/icons/0600220A.png b/static/icons/0600220A.png
new file mode 100755
index 00000000..24fc1029
Binary files /dev/null and b/static/icons/0600220A.png differ
diff --git a/static/icons/0600220B.png b/static/icons/0600220B.png
new file mode 100755
index 00000000..4b9870a7
Binary files /dev/null and b/static/icons/0600220B.png differ
diff --git a/static/icons/0600220C.png b/static/icons/0600220C.png
new file mode 100755
index 00000000..4fa0a985
Binary files /dev/null and b/static/icons/0600220C.png differ
diff --git a/static/icons/0600220D.png b/static/icons/0600220D.png
new file mode 100755
index 00000000..f48fa403
Binary files /dev/null and b/static/icons/0600220D.png differ
diff --git a/static/icons/0600220E.png b/static/icons/0600220E.png
new file mode 100755
index 00000000..f9f939e0
Binary files /dev/null and b/static/icons/0600220E.png differ
diff --git a/static/icons/0600220F.png b/static/icons/0600220F.png
new file mode 100755
index 00000000..b9690bc6
Binary files /dev/null and b/static/icons/0600220F.png differ
diff --git a/static/icons/06002210.png b/static/icons/06002210.png
new file mode 100755
index 00000000..97088a9c
Binary files /dev/null and b/static/icons/06002210.png differ
diff --git a/static/icons/06002211.png b/static/icons/06002211.png
new file mode 100755
index 00000000..1c762592
Binary files /dev/null and b/static/icons/06002211.png differ
diff --git a/static/icons/06002212.png b/static/icons/06002212.png
new file mode 100755
index 00000000..25a6f168
Binary files /dev/null and b/static/icons/06002212.png differ
diff --git a/static/icons/06002214.png b/static/icons/06002214.png
new file mode 100755
index 00000000..582f95b7
Binary files /dev/null and b/static/icons/06002214.png differ
diff --git a/static/icons/06002216.png b/static/icons/06002216.png
new file mode 100755
index 00000000..8f3ed6e8
Binary files /dev/null and b/static/icons/06002216.png differ
diff --git a/static/icons/06002217.png b/static/icons/06002217.png
new file mode 100755
index 00000000..8b1d07ad
Binary files /dev/null and b/static/icons/06002217.png differ
diff --git a/static/icons/06002218.png b/static/icons/06002218.png
new file mode 100755
index 00000000..08f314c6
Binary files /dev/null and b/static/icons/06002218.png differ
diff --git a/static/icons/06002219.png b/static/icons/06002219.png
new file mode 100755
index 00000000..ad25cd12
Binary files /dev/null and b/static/icons/06002219.png differ
diff --git a/static/icons/0600221B.png b/static/icons/0600221B.png
new file mode 100755
index 00000000..3c63770b
Binary files /dev/null and b/static/icons/0600221B.png differ
diff --git a/static/icons/0600221C.png b/static/icons/0600221C.png
new file mode 100755
index 00000000..7648031f
Binary files /dev/null and b/static/icons/0600221C.png differ
diff --git a/static/icons/0600221D.png b/static/icons/0600221D.png
new file mode 100755
index 00000000..61822a92
Binary files /dev/null and b/static/icons/0600221D.png differ
diff --git a/static/icons/0600221E.png b/static/icons/0600221E.png
new file mode 100755
index 00000000..ba8d2ebb
Binary files /dev/null and b/static/icons/0600221E.png differ
diff --git a/static/icons/0600221F.png b/static/icons/0600221F.png
new file mode 100755
index 00000000..966043a9
Binary files /dev/null and b/static/icons/0600221F.png differ
diff --git a/static/icons/06002220.png b/static/icons/06002220.png
new file mode 100755
index 00000000..9435a00b
Binary files /dev/null and b/static/icons/06002220.png differ
diff --git a/static/icons/06002221.png b/static/icons/06002221.png
new file mode 100755
index 00000000..3da7d0c2
Binary files /dev/null and b/static/icons/06002221.png differ
diff --git a/static/icons/06002222.png b/static/icons/06002222.png
new file mode 100755
index 00000000..5ef20bfb
Binary files /dev/null and b/static/icons/06002222.png differ
diff --git a/static/icons/06002223.png b/static/icons/06002223.png
new file mode 100755
index 00000000..b81b2a8a
Binary files /dev/null and b/static/icons/06002223.png differ
diff --git a/static/icons/06002224.png b/static/icons/06002224.png
new file mode 100755
index 00000000..7003ef33
Binary files /dev/null and b/static/icons/06002224.png differ
diff --git a/static/icons/06002225.png b/static/icons/06002225.png
new file mode 100755
index 00000000..6c744031
Binary files /dev/null and b/static/icons/06002225.png differ
diff --git a/static/icons/06002226.png b/static/icons/06002226.png
new file mode 100755
index 00000000..8bfa268d
Binary files /dev/null and b/static/icons/06002226.png differ
diff --git a/static/icons/06002227.png b/static/icons/06002227.png
new file mode 100755
index 00000000..bd537883
Binary files /dev/null and b/static/icons/06002227.png differ
diff --git a/static/icons/06002228.png b/static/icons/06002228.png
new file mode 100755
index 00000000..6484bdec
Binary files /dev/null and b/static/icons/06002228.png differ
diff --git a/static/icons/06002229.png b/static/icons/06002229.png
new file mode 100755
index 00000000..73d90513
Binary files /dev/null and b/static/icons/06002229.png differ
diff --git a/static/icons/0600222A.png b/static/icons/0600222A.png
new file mode 100755
index 00000000..282e1c00
Binary files /dev/null and b/static/icons/0600222A.png differ
diff --git a/static/icons/0600222B.png b/static/icons/0600222B.png
new file mode 100755
index 00000000..2dab21e7
Binary files /dev/null and b/static/icons/0600222B.png differ
diff --git a/static/icons/0600222C.png b/static/icons/0600222C.png
new file mode 100755
index 00000000..48e8eda7
Binary files /dev/null and b/static/icons/0600222C.png differ
diff --git a/static/icons/0600222D.png b/static/icons/0600222D.png
new file mode 100755
index 00000000..f2ac73c3
Binary files /dev/null and b/static/icons/0600222D.png differ
diff --git a/static/icons/0600222E.png b/static/icons/0600222E.png
new file mode 100755
index 00000000..c1406d63
Binary files /dev/null and b/static/icons/0600222E.png differ
diff --git a/static/icons/0600222F.png b/static/icons/0600222F.png
new file mode 100755
index 00000000..49850a4f
Binary files /dev/null and b/static/icons/0600222F.png differ
diff --git a/static/icons/06002230.png b/static/icons/06002230.png
new file mode 100755
index 00000000..545df553
Binary files /dev/null and b/static/icons/06002230.png differ
diff --git a/static/icons/06002231.png b/static/icons/06002231.png
new file mode 100755
index 00000000..88a53d8e
Binary files /dev/null and b/static/icons/06002231.png differ
diff --git a/static/icons/06002232.png b/static/icons/06002232.png
new file mode 100755
index 00000000..35794b4a
Binary files /dev/null and b/static/icons/06002232.png differ
diff --git a/static/icons/06002233.png b/static/icons/06002233.png
new file mode 100755
index 00000000..dcd07235
Binary files /dev/null and b/static/icons/06002233.png differ
diff --git a/static/icons/06002234.png b/static/icons/06002234.png
new file mode 100755
index 00000000..bb266b85
Binary files /dev/null and b/static/icons/06002234.png differ
diff --git a/static/icons/06002235.png b/static/icons/06002235.png
new file mode 100755
index 00000000..7df5205b
Binary files /dev/null and b/static/icons/06002235.png differ
diff --git a/static/icons/06002236.png b/static/icons/06002236.png
new file mode 100755
index 00000000..fc110e7b
Binary files /dev/null and b/static/icons/06002236.png differ
diff --git a/static/icons/06002237.png b/static/icons/06002237.png
new file mode 100755
index 00000000..7702ff39
Binary files /dev/null and b/static/icons/06002237.png differ
diff --git a/static/icons/06002238.png b/static/icons/06002238.png
new file mode 100755
index 00000000..1bed81d1
Binary files /dev/null and b/static/icons/06002238.png differ
diff --git a/static/icons/06002239.png b/static/icons/06002239.png
new file mode 100755
index 00000000..d3c9e590
Binary files /dev/null and b/static/icons/06002239.png differ
diff --git a/static/icons/0600223A.png b/static/icons/0600223A.png
new file mode 100755
index 00000000..e8bf7b8d
Binary files /dev/null and b/static/icons/0600223A.png differ
diff --git a/static/icons/0600223B.png b/static/icons/0600223B.png
new file mode 100755
index 00000000..17907d25
Binary files /dev/null and b/static/icons/0600223B.png differ
diff --git a/static/icons/0600223D.png b/static/icons/0600223D.png
new file mode 100755
index 00000000..976b80ca
Binary files /dev/null and b/static/icons/0600223D.png differ
diff --git a/static/icons/06002241.png b/static/icons/06002241.png
new file mode 100755
index 00000000..689a1a95
Binary files /dev/null and b/static/icons/06002241.png differ
diff --git a/static/icons/06002242.png b/static/icons/06002242.png
new file mode 100755
index 00000000..d67ea6cd
Binary files /dev/null and b/static/icons/06002242.png differ
diff --git a/static/icons/06002243.png b/static/icons/06002243.png
new file mode 100755
index 00000000..1aa076cf
Binary files /dev/null and b/static/icons/06002243.png differ
diff --git a/static/icons/06002244.png b/static/icons/06002244.png
new file mode 100755
index 00000000..ef323484
Binary files /dev/null and b/static/icons/06002244.png differ
diff --git a/static/icons/06002245.png b/static/icons/06002245.png
new file mode 100755
index 00000000..719f277d
Binary files /dev/null and b/static/icons/06002245.png differ
diff --git a/static/icons/06002246.png b/static/icons/06002246.png
new file mode 100755
index 00000000..1afac294
Binary files /dev/null and b/static/icons/06002246.png differ
diff --git a/static/icons/06002247.png b/static/icons/06002247.png
new file mode 100755
index 00000000..db2bd4dc
Binary files /dev/null and b/static/icons/06002247.png differ
diff --git a/static/icons/06002248.png b/static/icons/06002248.png
new file mode 100755
index 00000000..0cba7b53
Binary files /dev/null and b/static/icons/06002248.png differ
diff --git a/static/icons/06002249.png b/static/icons/06002249.png
new file mode 100755
index 00000000..77928597
Binary files /dev/null and b/static/icons/06002249.png differ
diff --git a/static/icons/0600224A.png b/static/icons/0600224A.png
new file mode 100755
index 00000000..ddcdd2f8
Binary files /dev/null and b/static/icons/0600224A.png differ
diff --git a/static/icons/0600224B.png b/static/icons/0600224B.png
new file mode 100755
index 00000000..79f0dbc2
Binary files /dev/null and b/static/icons/0600224B.png differ
diff --git a/static/icons/0600224C.png b/static/icons/0600224C.png
new file mode 100755
index 00000000..5c6fb33a
Binary files /dev/null and b/static/icons/0600224C.png differ
diff --git a/static/icons/0600224D.png b/static/icons/0600224D.png
new file mode 100755
index 00000000..9435a00b
Binary files /dev/null and b/static/icons/0600224D.png differ
diff --git a/static/icons/0600224E.png b/static/icons/0600224E.png
new file mode 100755
index 00000000..2eeb55f3
Binary files /dev/null and b/static/icons/0600224E.png differ
diff --git a/static/icons/0600224F.png b/static/icons/0600224F.png
new file mode 100755
index 00000000..fb58d043
Binary files /dev/null and b/static/icons/0600224F.png differ
diff --git a/static/icons/06002250.png b/static/icons/06002250.png
new file mode 100755
index 00000000..f9a13bb9
Binary files /dev/null and b/static/icons/06002250.png differ
diff --git a/static/icons/06002251.png b/static/icons/06002251.png
new file mode 100755
index 00000000..9aa2961a
Binary files /dev/null and b/static/icons/06002251.png differ
diff --git a/static/icons/06002252.png b/static/icons/06002252.png
new file mode 100755
index 00000000..ae3f665f
Binary files /dev/null and b/static/icons/06002252.png differ
diff --git a/static/icons/06002253.png b/static/icons/06002253.png
new file mode 100755
index 00000000..023b8e92
Binary files /dev/null and b/static/icons/06002253.png differ
diff --git a/static/icons/06002254.png b/static/icons/06002254.png
new file mode 100755
index 00000000..ab3ce640
Binary files /dev/null and b/static/icons/06002254.png differ
diff --git a/static/icons/06002255.png b/static/icons/06002255.png
new file mode 100755
index 00000000..948f6740
Binary files /dev/null and b/static/icons/06002255.png differ
diff --git a/static/icons/06002256.png b/static/icons/06002256.png
new file mode 100755
index 00000000..27077f0f
Binary files /dev/null and b/static/icons/06002256.png differ
diff --git a/static/icons/06002257.png b/static/icons/06002257.png
new file mode 100755
index 00000000..f29bcf86
Binary files /dev/null and b/static/icons/06002257.png differ
diff --git a/static/icons/06002258.png b/static/icons/06002258.png
new file mode 100755
index 00000000..ddd13150
Binary files /dev/null and b/static/icons/06002258.png differ
diff --git a/static/icons/06002259.png b/static/icons/06002259.png
new file mode 100755
index 00000000..e0c1af22
Binary files /dev/null and b/static/icons/06002259.png differ
diff --git a/static/icons/0600225A.png b/static/icons/0600225A.png
new file mode 100755
index 00000000..aec95e09
Binary files /dev/null and b/static/icons/0600225A.png differ
diff --git a/static/icons/0600225B.png b/static/icons/0600225B.png
new file mode 100755
index 00000000..5ef20bfb
Binary files /dev/null and b/static/icons/0600225B.png differ
diff --git a/static/icons/0600225C.png b/static/icons/0600225C.png
new file mode 100755
index 00000000..4f0c7f94
Binary files /dev/null and b/static/icons/0600225C.png differ
diff --git a/static/icons/0600225D.png b/static/icons/0600225D.png
new file mode 100755
index 00000000..1307ee50
Binary files /dev/null and b/static/icons/0600225D.png differ
diff --git a/static/icons/0600225E.png b/static/icons/0600225E.png
new file mode 100755
index 00000000..2e29cc85
Binary files /dev/null and b/static/icons/0600225E.png differ
diff --git a/static/icons/0600225F.png b/static/icons/0600225F.png
new file mode 100755
index 00000000..f5330ea7
Binary files /dev/null and b/static/icons/0600225F.png differ
diff --git a/static/icons/06002260.png b/static/icons/06002260.png
new file mode 100755
index 00000000..cf9f60e4
Binary files /dev/null and b/static/icons/06002260.png differ
diff --git a/static/icons/06002261.png b/static/icons/06002261.png
new file mode 100755
index 00000000..91490eb8
Binary files /dev/null and b/static/icons/06002261.png differ
diff --git a/static/icons/06002262.png b/static/icons/06002262.png
new file mode 100755
index 00000000..b81b2a8a
Binary files /dev/null and b/static/icons/06002262.png differ
diff --git a/static/icons/06002263.png b/static/icons/06002263.png
new file mode 100755
index 00000000..aff83756
Binary files /dev/null and b/static/icons/06002263.png differ
diff --git a/static/icons/06002264.png b/static/icons/06002264.png
new file mode 100755
index 00000000..12cd1a41
Binary files /dev/null and b/static/icons/06002264.png differ
diff --git a/static/icons/06002265.png b/static/icons/06002265.png
new file mode 100755
index 00000000..3cb920e8
Binary files /dev/null and b/static/icons/06002265.png differ
diff --git a/static/icons/06002266.png b/static/icons/06002266.png
new file mode 100755
index 00000000..e7442790
Binary files /dev/null and b/static/icons/06002266.png differ
diff --git a/static/icons/06002267.png b/static/icons/06002267.png
new file mode 100755
index 00000000..7ae30a8f
Binary files /dev/null and b/static/icons/06002267.png differ
diff --git a/static/icons/06002269.png b/static/icons/06002269.png
new file mode 100755
index 00000000..d8b8670b
Binary files /dev/null and b/static/icons/06002269.png differ
diff --git a/static/icons/0600226A.png b/static/icons/0600226A.png
new file mode 100755
index 00000000..eadcb860
Binary files /dev/null and b/static/icons/0600226A.png differ
diff --git a/static/icons/0600226B.png b/static/icons/0600226B.png
new file mode 100755
index 00000000..6ade1cbc
Binary files /dev/null and b/static/icons/0600226B.png differ
diff --git a/static/icons/0600226C.png b/static/icons/0600226C.png
new file mode 100755
index 00000000..73d737d3
Binary files /dev/null and b/static/icons/0600226C.png differ
diff --git a/static/icons/0600226D.png b/static/icons/0600226D.png
new file mode 100755
index 00000000..b340b590
Binary files /dev/null and b/static/icons/0600226D.png differ
diff --git a/static/icons/0600226E.png b/static/icons/0600226E.png
new file mode 100755
index 00000000..929e1c1c
Binary files /dev/null and b/static/icons/0600226E.png differ
diff --git a/static/icons/0600226F.png b/static/icons/0600226F.png
new file mode 100755
index 00000000..a9a20f74
Binary files /dev/null and b/static/icons/0600226F.png differ
diff --git a/static/icons/06002271.png b/static/icons/06002271.png
new file mode 100755
index 00000000..aa3453e0
Binary files /dev/null and b/static/icons/06002271.png differ
diff --git a/static/icons/06002272.png b/static/icons/06002272.png
new file mode 100755
index 00000000..538b8a9b
Binary files /dev/null and b/static/icons/06002272.png differ
diff --git a/static/icons/06002273.png b/static/icons/06002273.png
new file mode 100755
index 00000000..5789b335
Binary files /dev/null and b/static/icons/06002273.png differ
diff --git a/static/icons/06002274.png b/static/icons/06002274.png
new file mode 100755
index 00000000..082c2a53
Binary files /dev/null and b/static/icons/06002274.png differ
diff --git a/static/icons/06002275.png b/static/icons/06002275.png
new file mode 100755
index 00000000..eabba198
Binary files /dev/null and b/static/icons/06002275.png differ
diff --git a/static/icons/06002276.png b/static/icons/06002276.png
new file mode 100755
index 00000000..b1aadf7c
Binary files /dev/null and b/static/icons/06002276.png differ
diff --git a/static/icons/06002277.png b/static/icons/06002277.png
new file mode 100755
index 00000000..613714b8
Binary files /dev/null and b/static/icons/06002277.png differ
diff --git a/static/icons/06002278.png b/static/icons/06002278.png
new file mode 100755
index 00000000..2edea20d
Binary files /dev/null and b/static/icons/06002278.png differ
diff --git a/static/icons/0600227A.png b/static/icons/0600227A.png
new file mode 100755
index 00000000..0b343ec7
Binary files /dev/null and b/static/icons/0600227A.png differ
diff --git a/static/icons/0600227B.png b/static/icons/0600227B.png
new file mode 100755
index 00000000..925b80e1
Binary files /dev/null and b/static/icons/0600227B.png differ
diff --git a/static/icons/0600227C.png b/static/icons/0600227C.png
new file mode 100755
index 00000000..9d997b42
Binary files /dev/null and b/static/icons/0600227C.png differ
diff --git a/static/icons/0600227D.png b/static/icons/0600227D.png
new file mode 100755
index 00000000..9d3b5336
Binary files /dev/null and b/static/icons/0600227D.png differ
diff --git a/static/icons/0600227E.png b/static/icons/0600227E.png
new file mode 100755
index 00000000..28e53364
Binary files /dev/null and b/static/icons/0600227E.png differ
diff --git a/static/icons/0600227F.png b/static/icons/0600227F.png
new file mode 100755
index 00000000..29080c5d
Binary files /dev/null and b/static/icons/0600227F.png differ
diff --git a/static/icons/06002280.png b/static/icons/06002280.png
new file mode 100755
index 00000000..0b6078bc
Binary files /dev/null and b/static/icons/06002280.png differ
diff --git a/static/icons/06002281.png b/static/icons/06002281.png
new file mode 100755
index 00000000..a627d67b
Binary files /dev/null and b/static/icons/06002281.png differ
diff --git a/static/icons/06002282.png b/static/icons/06002282.png
new file mode 100755
index 00000000..c789502c
Binary files /dev/null and b/static/icons/06002282.png differ
diff --git a/static/icons/06002283.png b/static/icons/06002283.png
new file mode 100755
index 00000000..17b388d8
Binary files /dev/null and b/static/icons/06002283.png differ
diff --git a/static/icons/06002284.png b/static/icons/06002284.png
new file mode 100755
index 00000000..58c7a1e2
Binary files /dev/null and b/static/icons/06002284.png differ
diff --git a/static/icons/06002285.png b/static/icons/06002285.png
new file mode 100755
index 00000000..6c3d782c
Binary files /dev/null and b/static/icons/06002285.png differ
diff --git a/static/icons/06002286.png b/static/icons/06002286.png
new file mode 100755
index 00000000..987cbd40
Binary files /dev/null and b/static/icons/06002286.png differ
diff --git a/static/icons/06002287.png b/static/icons/06002287.png
new file mode 100755
index 00000000..69dc011f
Binary files /dev/null and b/static/icons/06002287.png differ
diff --git a/static/icons/06002288.png b/static/icons/06002288.png
new file mode 100755
index 00000000..9acdd964
Binary files /dev/null and b/static/icons/06002288.png differ
diff --git a/static/icons/06002289.png b/static/icons/06002289.png
new file mode 100755
index 00000000..301e3bbe
Binary files /dev/null and b/static/icons/06002289.png differ
diff --git a/static/icons/0600228A.png b/static/icons/0600228A.png
new file mode 100755
index 00000000..052f8ffc
Binary files /dev/null and b/static/icons/0600228A.png differ
diff --git a/static/icons/06002292.png b/static/icons/06002292.png
new file mode 100755
index 00000000..4c578564
Binary files /dev/null and b/static/icons/06002292.png differ
diff --git a/static/icons/06002295.png b/static/icons/06002295.png
new file mode 100755
index 00000000..abfea917
Binary files /dev/null and b/static/icons/06002295.png differ
diff --git a/static/icons/06002296.png b/static/icons/06002296.png
new file mode 100755
index 00000000..e61fa6ff
Binary files /dev/null and b/static/icons/06002296.png differ
diff --git a/static/icons/06002297.png b/static/icons/06002297.png
new file mode 100755
index 00000000..28f5f50d
Binary files /dev/null and b/static/icons/06002297.png differ
diff --git a/static/icons/06002298.png b/static/icons/06002298.png
new file mode 100755
index 00000000..ff5a9acb
Binary files /dev/null and b/static/icons/06002298.png differ
diff --git a/static/icons/06002299.png b/static/icons/06002299.png
new file mode 100755
index 00000000..2ad6a825
Binary files /dev/null and b/static/icons/06002299.png differ
diff --git a/static/icons/0600229B.png b/static/icons/0600229B.png
new file mode 100755
index 00000000..431bae1d
Binary files /dev/null and b/static/icons/0600229B.png differ
diff --git a/static/icons/0600229F.png b/static/icons/0600229F.png
new file mode 100755
index 00000000..4ac345fb
Binary files /dev/null and b/static/icons/0600229F.png differ
diff --git a/static/icons/060022A0.png b/static/icons/060022A0.png
new file mode 100755
index 00000000..59bca6df
Binary files /dev/null and b/static/icons/060022A0.png differ
diff --git a/static/icons/060022A2.png b/static/icons/060022A2.png
new file mode 100755
index 00000000..f87223f4
Binary files /dev/null and b/static/icons/060022A2.png differ
diff --git a/static/icons/060022A3.png b/static/icons/060022A3.png
new file mode 100755
index 00000000..22a5c2a7
Binary files /dev/null and b/static/icons/060022A3.png differ
diff --git a/static/icons/060022A4.png b/static/icons/060022A4.png
new file mode 100755
index 00000000..e8071591
Binary files /dev/null and b/static/icons/060022A4.png differ
diff --git a/static/icons/060022A5.png b/static/icons/060022A5.png
new file mode 100755
index 00000000..c7256b2a
Binary files /dev/null and b/static/icons/060022A5.png differ
diff --git a/static/icons/060022A8.png b/static/icons/060022A8.png
new file mode 100755
index 00000000..3e4c36f2
Binary files /dev/null and b/static/icons/060022A8.png differ
diff --git a/static/icons/060022A9.png b/static/icons/060022A9.png
new file mode 100755
index 00000000..f43f6fad
Binary files /dev/null and b/static/icons/060022A9.png differ
diff --git a/static/icons/060022AB.png b/static/icons/060022AB.png
new file mode 100755
index 00000000..2761f203
Binary files /dev/null and b/static/icons/060022AB.png differ
diff --git a/static/icons/060022AC.png b/static/icons/060022AC.png
new file mode 100755
index 00000000..1f9fcc71
Binary files /dev/null and b/static/icons/060022AC.png differ
diff --git a/static/icons/060022AD.png b/static/icons/060022AD.png
new file mode 100755
index 00000000..791f86c4
Binary files /dev/null and b/static/icons/060022AD.png differ
diff --git a/static/icons/060022AE.png b/static/icons/060022AE.png
new file mode 100755
index 00000000..f5e08f1f
Binary files /dev/null and b/static/icons/060022AE.png differ
diff --git a/static/icons/060022AF.png b/static/icons/060022AF.png
new file mode 100755
index 00000000..7fc1d572
Binary files /dev/null and b/static/icons/060022AF.png differ
diff --git a/static/icons/060022B0.png b/static/icons/060022B0.png
new file mode 100755
index 00000000..2242a1d3
Binary files /dev/null and b/static/icons/060022B0.png differ
diff --git a/static/icons/060022B1.png b/static/icons/060022B1.png
new file mode 100755
index 00000000..21931c3a
Binary files /dev/null and b/static/icons/060022B1.png differ
diff --git a/static/icons/060022B2.png b/static/icons/060022B2.png
new file mode 100755
index 00000000..3ab465b6
Binary files /dev/null and b/static/icons/060022B2.png differ
diff --git a/static/icons/060022B3.png b/static/icons/060022B3.png
new file mode 100755
index 00000000..4aef5ad4
Binary files /dev/null and b/static/icons/060022B3.png differ
diff --git a/static/icons/060022B4.png b/static/icons/060022B4.png
new file mode 100755
index 00000000..cb5362ae
Binary files /dev/null and b/static/icons/060022B4.png differ
diff --git a/static/icons/060022B5.png b/static/icons/060022B5.png
new file mode 100755
index 00000000..3b6c5bbb
Binary files /dev/null and b/static/icons/060022B5.png differ
diff --git a/static/icons/060022B6.png b/static/icons/060022B6.png
new file mode 100755
index 00000000..d3d864a8
Binary files /dev/null and b/static/icons/060022B6.png differ
diff --git a/static/icons/060022B7.png b/static/icons/060022B7.png
new file mode 100755
index 00000000..e58fcb2b
Binary files /dev/null and b/static/icons/060022B7.png differ
diff --git a/static/icons/060022B8.png b/static/icons/060022B8.png
new file mode 100755
index 00000000..e223c933
Binary files /dev/null and b/static/icons/060022B8.png differ
diff --git a/static/icons/060022B9.png b/static/icons/060022B9.png
new file mode 100755
index 00000000..fe44d863
Binary files /dev/null and b/static/icons/060022B9.png differ
diff --git a/static/icons/060022BA.png b/static/icons/060022BA.png
new file mode 100755
index 00000000..ee6a26a5
Binary files /dev/null and b/static/icons/060022BA.png differ
diff --git a/static/icons/060022BE.png b/static/icons/060022BE.png
new file mode 100755
index 00000000..5f51669c
Binary files /dev/null and b/static/icons/060022BE.png differ
diff --git a/static/icons/060022BF.png b/static/icons/060022BF.png
new file mode 100755
index 00000000..e23d7772
Binary files /dev/null and b/static/icons/060022BF.png differ
diff --git a/static/icons/060022C0.png b/static/icons/060022C0.png
new file mode 100755
index 00000000..5eed27f5
Binary files /dev/null and b/static/icons/060022C0.png differ
diff --git a/static/icons/060022C1.png b/static/icons/060022C1.png
new file mode 100755
index 00000000..51fb9506
Binary files /dev/null and b/static/icons/060022C1.png differ
diff --git a/static/icons/060022C2.png b/static/icons/060022C2.png
new file mode 100755
index 00000000..a7457d5a
Binary files /dev/null and b/static/icons/060022C2.png differ
diff --git a/static/icons/060022C3.png b/static/icons/060022C3.png
new file mode 100755
index 00000000..9ff73572
Binary files /dev/null and b/static/icons/060022C3.png differ
diff --git a/static/icons/060022C4.png b/static/icons/060022C4.png
new file mode 100755
index 00000000..5c074dc2
Binary files /dev/null and b/static/icons/060022C4.png differ
diff --git a/static/icons/060022C5.png b/static/icons/060022C5.png
new file mode 100755
index 00000000..048048b7
Binary files /dev/null and b/static/icons/060022C5.png differ
diff --git a/static/icons/060022C6.png b/static/icons/060022C6.png
new file mode 100755
index 00000000..1bc0bb31
Binary files /dev/null and b/static/icons/060022C6.png differ
diff --git a/static/icons/060022C7.png b/static/icons/060022C7.png
new file mode 100755
index 00000000..9104a121
Binary files /dev/null and b/static/icons/060022C7.png differ
diff --git a/static/icons/060022C8.png b/static/icons/060022C8.png
new file mode 100755
index 00000000..6738d7b1
Binary files /dev/null and b/static/icons/060022C8.png differ
diff --git a/static/icons/060022C9.png b/static/icons/060022C9.png
new file mode 100755
index 00000000..076f8cdd
Binary files /dev/null and b/static/icons/060022C9.png differ
diff --git a/static/icons/060022CA.png b/static/icons/060022CA.png
new file mode 100755
index 00000000..f2b78401
Binary files /dev/null and b/static/icons/060022CA.png differ
diff --git a/static/icons/060022CB.png b/static/icons/060022CB.png
new file mode 100755
index 00000000..ec203b77
Binary files /dev/null and b/static/icons/060022CB.png differ
diff --git a/static/icons/060022CC.png b/static/icons/060022CC.png
new file mode 100755
index 00000000..a71d52c4
Binary files /dev/null and b/static/icons/060022CC.png differ
diff --git a/static/icons/060022CD.png b/static/icons/060022CD.png
new file mode 100755
index 00000000..b8f624c5
Binary files /dev/null and b/static/icons/060022CD.png differ
diff --git a/static/icons/060022CE.png b/static/icons/060022CE.png
new file mode 100755
index 00000000..a2c9b640
Binary files /dev/null and b/static/icons/060022CE.png differ
diff --git a/static/icons/060022CF.png b/static/icons/060022CF.png
new file mode 100755
index 00000000..b36663b6
Binary files /dev/null and b/static/icons/060022CF.png differ
diff --git a/static/icons/060022D0.png b/static/icons/060022D0.png
new file mode 100755
index 00000000..8ba4b87b
Binary files /dev/null and b/static/icons/060022D0.png differ
diff --git a/static/icons/060022D1.png b/static/icons/060022D1.png
new file mode 100755
index 00000000..2f2f0cb0
Binary files /dev/null and b/static/icons/060022D1.png differ
diff --git a/static/icons/060022D2.png b/static/icons/060022D2.png
new file mode 100755
index 00000000..1a17fc89
Binary files /dev/null and b/static/icons/060022D2.png differ
diff --git a/static/icons/060022D5.png b/static/icons/060022D5.png
new file mode 100755
index 00000000..864b5209
Binary files /dev/null and b/static/icons/060022D5.png differ
diff --git a/static/icons/060022D6.png b/static/icons/060022D6.png
new file mode 100755
index 00000000..6ea7b123
Binary files /dev/null and b/static/icons/060022D6.png differ
diff --git a/static/icons/060022D7.png b/static/icons/060022D7.png
new file mode 100755
index 00000000..d44f5ae2
Binary files /dev/null and b/static/icons/060022D7.png differ
diff --git a/static/icons/060022D8.png b/static/icons/060022D8.png
new file mode 100755
index 00000000..e84701fa
Binary files /dev/null and b/static/icons/060022D8.png differ
diff --git a/static/icons/060022D9.png b/static/icons/060022D9.png
new file mode 100755
index 00000000..2512e38f
Binary files /dev/null and b/static/icons/060022D9.png differ
diff --git a/static/icons/060022DA.png b/static/icons/060022DA.png
new file mode 100755
index 00000000..dbf8687d
Binary files /dev/null and b/static/icons/060022DA.png differ
diff --git a/static/icons/060022DB.png b/static/icons/060022DB.png
new file mode 100755
index 00000000..cf252e7d
Binary files /dev/null and b/static/icons/060022DB.png differ
diff --git a/static/icons/060022DD.png b/static/icons/060022DD.png
new file mode 100755
index 00000000..738e2479
Binary files /dev/null and b/static/icons/060022DD.png differ
diff --git a/static/icons/060022DE.png b/static/icons/060022DE.png
new file mode 100755
index 00000000..30387a4a
Binary files /dev/null and b/static/icons/060022DE.png differ
diff --git a/static/icons/060022DF.png b/static/icons/060022DF.png
new file mode 100755
index 00000000..e7099814
Binary files /dev/null and b/static/icons/060022DF.png differ
diff --git a/static/icons/060022E0.png b/static/icons/060022E0.png
new file mode 100755
index 00000000..7d4c89a0
Binary files /dev/null and b/static/icons/060022E0.png differ
diff --git a/static/icons/060022E1.png b/static/icons/060022E1.png
new file mode 100755
index 00000000..b51bdc34
Binary files /dev/null and b/static/icons/060022E1.png differ
diff --git a/static/icons/060022E2.png b/static/icons/060022E2.png
new file mode 100755
index 00000000..cb69c486
Binary files /dev/null and b/static/icons/060022E2.png differ
diff --git a/static/icons/060022E3.png b/static/icons/060022E3.png
new file mode 100755
index 00000000..299db9a6
Binary files /dev/null and b/static/icons/060022E3.png differ
diff --git a/static/icons/060022E4.png b/static/icons/060022E4.png
new file mode 100755
index 00000000..02cadfe1
Binary files /dev/null and b/static/icons/060022E4.png differ
diff --git a/static/icons/060022E5.png b/static/icons/060022E5.png
new file mode 100755
index 00000000..cd0cdd10
Binary files /dev/null and b/static/icons/060022E5.png differ
diff --git a/static/icons/060022E6.png b/static/icons/060022E6.png
new file mode 100755
index 00000000..7536b3df
Binary files /dev/null and b/static/icons/060022E6.png differ
diff --git a/static/icons/060022E8.png b/static/icons/060022E8.png
new file mode 100755
index 00000000..242c56ac
Binary files /dev/null and b/static/icons/060022E8.png differ
diff --git a/static/icons/060022E9.png b/static/icons/060022E9.png
new file mode 100755
index 00000000..bcc44148
Binary files /dev/null and b/static/icons/060022E9.png differ
diff --git a/static/icons/060022EA.png b/static/icons/060022EA.png
new file mode 100755
index 00000000..ef541382
Binary files /dev/null and b/static/icons/060022EA.png differ
diff --git a/static/icons/060022EB.png b/static/icons/060022EB.png
new file mode 100755
index 00000000..9ba51784
Binary files /dev/null and b/static/icons/060022EB.png differ
diff --git a/static/icons/060022EC.png b/static/icons/060022EC.png
new file mode 100755
index 00000000..fd6ab46b
Binary files /dev/null and b/static/icons/060022EC.png differ
diff --git a/static/icons/060022ED.png b/static/icons/060022ED.png
new file mode 100755
index 00000000..2a4f7f32
Binary files /dev/null and b/static/icons/060022ED.png differ
diff --git a/static/icons/060022EE.png b/static/icons/060022EE.png
new file mode 100755
index 00000000..185e3a15
Binary files /dev/null and b/static/icons/060022EE.png differ
diff --git a/static/icons/060022EF.png b/static/icons/060022EF.png
new file mode 100755
index 00000000..8e1145b8
Binary files /dev/null and b/static/icons/060022EF.png differ
diff --git a/static/icons/060022F0.png b/static/icons/060022F0.png
new file mode 100755
index 00000000..524735c8
Binary files /dev/null and b/static/icons/060022F0.png differ
diff --git a/static/icons/060022F1.png b/static/icons/060022F1.png
new file mode 100755
index 00000000..434c7dbc
Binary files /dev/null and b/static/icons/060022F1.png differ
diff --git a/static/icons/060022F2.png b/static/icons/060022F2.png
new file mode 100755
index 00000000..cbd90712
Binary files /dev/null and b/static/icons/060022F2.png differ
diff --git a/static/icons/060022F4.png b/static/icons/060022F4.png
new file mode 100755
index 00000000..ca6b52b9
Binary files /dev/null and b/static/icons/060022F4.png differ
diff --git a/static/icons/060022F5.png b/static/icons/060022F5.png
new file mode 100755
index 00000000..1a3ac910
Binary files /dev/null and b/static/icons/060022F5.png differ
diff --git a/static/icons/060022F6.png b/static/icons/060022F6.png
new file mode 100755
index 00000000..533d09e9
Binary files /dev/null and b/static/icons/060022F6.png differ
diff --git a/static/icons/060022F7.png b/static/icons/060022F7.png
new file mode 100755
index 00000000..32b78c5b
Binary files /dev/null and b/static/icons/060022F7.png differ
diff --git a/static/icons/060022F8.png b/static/icons/060022F8.png
new file mode 100755
index 00000000..6d80c73b
Binary files /dev/null and b/static/icons/060022F8.png differ
diff --git a/static/icons/060022F9.png b/static/icons/060022F9.png
new file mode 100755
index 00000000..36e6b6b9
Binary files /dev/null and b/static/icons/060022F9.png differ
diff --git a/static/icons/060022FA.png b/static/icons/060022FA.png
new file mode 100755
index 00000000..b2476cc3
Binary files /dev/null and b/static/icons/060022FA.png differ
diff --git a/static/icons/060022FB.png b/static/icons/060022FB.png
new file mode 100755
index 00000000..d6e94a24
Binary files /dev/null and b/static/icons/060022FB.png differ
diff --git a/static/icons/060022FC.png b/static/icons/060022FC.png
new file mode 100755
index 00000000..8c08ca35
Binary files /dev/null and b/static/icons/060022FC.png differ
diff --git a/static/icons/060022FD.png b/static/icons/060022FD.png
new file mode 100755
index 00000000..9906a1ed
Binary files /dev/null and b/static/icons/060022FD.png differ
diff --git a/static/icons/060022FE.png b/static/icons/060022FE.png
new file mode 100755
index 00000000..77d2cedc
Binary files /dev/null and b/static/icons/060022FE.png differ
diff --git a/static/icons/060022FF.png b/static/icons/060022FF.png
new file mode 100755
index 00000000..4f7df652
Binary files /dev/null and b/static/icons/060022FF.png differ
diff --git a/static/icons/06002300.png b/static/icons/06002300.png
new file mode 100755
index 00000000..a6b6a29d
Binary files /dev/null and b/static/icons/06002300.png differ
diff --git a/static/icons/06002301.png b/static/icons/06002301.png
new file mode 100755
index 00000000..69676eb3
Binary files /dev/null and b/static/icons/06002301.png differ
diff --git a/static/icons/06002302.png b/static/icons/06002302.png
new file mode 100755
index 00000000..5d7cf543
Binary files /dev/null and b/static/icons/06002302.png differ
diff --git a/static/icons/06002303.png b/static/icons/06002303.png
new file mode 100755
index 00000000..f9347ffd
Binary files /dev/null and b/static/icons/06002303.png differ
diff --git a/static/icons/06002304.png b/static/icons/06002304.png
new file mode 100755
index 00000000..48f7e794
Binary files /dev/null and b/static/icons/06002304.png differ
diff --git a/static/icons/06002305.png b/static/icons/06002305.png
new file mode 100755
index 00000000..328ff636
Binary files /dev/null and b/static/icons/06002305.png differ
diff --git a/static/icons/06002306.png b/static/icons/06002306.png
new file mode 100755
index 00000000..53713af5
Binary files /dev/null and b/static/icons/06002306.png differ
diff --git a/static/icons/06002307.png b/static/icons/06002307.png
new file mode 100755
index 00000000..8121fb34
Binary files /dev/null and b/static/icons/06002307.png differ
diff --git a/static/icons/06002308.png b/static/icons/06002308.png
new file mode 100755
index 00000000..fcbdd852
Binary files /dev/null and b/static/icons/06002308.png differ
diff --git a/static/icons/06002309.png b/static/icons/06002309.png
new file mode 100755
index 00000000..5e37cf1c
Binary files /dev/null and b/static/icons/06002309.png differ
diff --git a/static/icons/0600230A.png b/static/icons/0600230A.png
new file mode 100755
index 00000000..93d5b812
Binary files /dev/null and b/static/icons/0600230A.png differ
diff --git a/static/icons/0600230B.png b/static/icons/0600230B.png
new file mode 100755
index 00000000..7d360794
Binary files /dev/null and b/static/icons/0600230B.png differ
diff --git a/static/icons/0600230C.png b/static/icons/0600230C.png
new file mode 100755
index 00000000..23e51c46
Binary files /dev/null and b/static/icons/0600230C.png differ
diff --git a/static/icons/0600230D.png b/static/icons/0600230D.png
new file mode 100755
index 00000000..b872e6f0
Binary files /dev/null and b/static/icons/0600230D.png differ
diff --git a/static/icons/0600230E.png b/static/icons/0600230E.png
new file mode 100755
index 00000000..ab8afd0d
Binary files /dev/null and b/static/icons/0600230E.png differ
diff --git a/static/icons/0600230F.png b/static/icons/0600230F.png
new file mode 100755
index 00000000..9edce7e8
Binary files /dev/null and b/static/icons/0600230F.png differ
diff --git a/static/icons/06002310.png b/static/icons/06002310.png
new file mode 100755
index 00000000..4d9c6207
Binary files /dev/null and b/static/icons/06002310.png differ
diff --git a/static/icons/06002311.png b/static/icons/06002311.png
new file mode 100755
index 00000000..79e76fac
Binary files /dev/null and b/static/icons/06002311.png differ
diff --git a/static/icons/06002312.png b/static/icons/06002312.png
new file mode 100755
index 00000000..c7c5e85b
Binary files /dev/null and b/static/icons/06002312.png differ
diff --git a/static/icons/06002313.png b/static/icons/06002313.png
new file mode 100755
index 00000000..2f372290
Binary files /dev/null and b/static/icons/06002313.png differ
diff --git a/static/icons/06002314.png b/static/icons/06002314.png
new file mode 100755
index 00000000..20855847
Binary files /dev/null and b/static/icons/06002314.png differ
diff --git a/static/icons/06002315.png b/static/icons/06002315.png
new file mode 100755
index 00000000..d48a6db7
Binary files /dev/null and b/static/icons/06002315.png differ
diff --git a/static/icons/06002316.png b/static/icons/06002316.png
new file mode 100755
index 00000000..d13a62b4
Binary files /dev/null and b/static/icons/06002316.png differ
diff --git a/static/icons/06002317.png b/static/icons/06002317.png
new file mode 100755
index 00000000..0e18b164
Binary files /dev/null and b/static/icons/06002317.png differ
diff --git a/static/icons/06002318.png b/static/icons/06002318.png
new file mode 100755
index 00000000..8ee93c76
Binary files /dev/null and b/static/icons/06002318.png differ
diff --git a/static/icons/06002319.png b/static/icons/06002319.png
new file mode 100755
index 00000000..5c0a9476
Binary files /dev/null and b/static/icons/06002319.png differ
diff --git a/static/icons/0600231A.png b/static/icons/0600231A.png
new file mode 100755
index 00000000..17e9e56a
Binary files /dev/null and b/static/icons/0600231A.png differ
diff --git a/static/icons/0600231B.png b/static/icons/0600231B.png
new file mode 100755
index 00000000..3cc7fb15
Binary files /dev/null and b/static/icons/0600231B.png differ
diff --git a/static/icons/0600231C.png b/static/icons/0600231C.png
new file mode 100755
index 00000000..784fb5e4
Binary files /dev/null and b/static/icons/0600231C.png differ
diff --git a/static/icons/0600231D.png b/static/icons/0600231D.png
new file mode 100755
index 00000000..69c780dc
Binary files /dev/null and b/static/icons/0600231D.png differ
diff --git a/static/icons/0600231E.png b/static/icons/0600231E.png
new file mode 100755
index 00000000..2af49c1c
Binary files /dev/null and b/static/icons/0600231E.png differ
diff --git a/static/icons/0600231F.png b/static/icons/0600231F.png
new file mode 100755
index 00000000..6098924b
Binary files /dev/null and b/static/icons/0600231F.png differ
diff --git a/static/icons/06002320.png b/static/icons/06002320.png
new file mode 100755
index 00000000..5b817f8a
Binary files /dev/null and b/static/icons/06002320.png differ
diff --git a/static/icons/06002321.png b/static/icons/06002321.png
new file mode 100755
index 00000000..7ad4ce51
Binary files /dev/null and b/static/icons/06002321.png differ
diff --git a/static/icons/06002322.png b/static/icons/06002322.png
new file mode 100755
index 00000000..3e92c26d
Binary files /dev/null and b/static/icons/06002322.png differ
diff --git a/static/icons/06002323.png b/static/icons/06002323.png
new file mode 100755
index 00000000..f18b0ddb
Binary files /dev/null and b/static/icons/06002323.png differ
diff --git a/static/icons/06002324.png b/static/icons/06002324.png
new file mode 100755
index 00000000..c3965356
Binary files /dev/null and b/static/icons/06002324.png differ
diff --git a/static/icons/06002325.png b/static/icons/06002325.png
new file mode 100755
index 00000000..32af5a9a
Binary files /dev/null and b/static/icons/06002325.png differ
diff --git a/static/icons/06002326.png b/static/icons/06002326.png
new file mode 100755
index 00000000..ddb51780
Binary files /dev/null and b/static/icons/06002326.png differ
diff --git a/static/icons/06002327.png b/static/icons/06002327.png
new file mode 100755
index 00000000..a7a7a8eb
Binary files /dev/null and b/static/icons/06002327.png differ
diff --git a/static/icons/06002328.png b/static/icons/06002328.png
new file mode 100755
index 00000000..378bc727
Binary files /dev/null and b/static/icons/06002328.png differ
diff --git a/static/icons/06002329.png b/static/icons/06002329.png
new file mode 100755
index 00000000..48974408
Binary files /dev/null and b/static/icons/06002329.png differ
diff --git a/static/icons/0600232A.png b/static/icons/0600232A.png
new file mode 100755
index 00000000..a5ce6b6c
Binary files /dev/null and b/static/icons/0600232A.png differ
diff --git a/static/icons/0600232B.png b/static/icons/0600232B.png
new file mode 100755
index 00000000..d78e92a3
Binary files /dev/null and b/static/icons/0600232B.png differ
diff --git a/static/icons/0600232C.png b/static/icons/0600232C.png
new file mode 100755
index 00000000..06f430b7
Binary files /dev/null and b/static/icons/0600232C.png differ
diff --git a/static/icons/0600232D.png b/static/icons/0600232D.png
new file mode 100755
index 00000000..6fad80ad
Binary files /dev/null and b/static/icons/0600232D.png differ
diff --git a/static/icons/0600232E.png b/static/icons/0600232E.png
new file mode 100755
index 00000000..7266e934
Binary files /dev/null and b/static/icons/0600232E.png differ
diff --git a/static/icons/0600232F.png b/static/icons/0600232F.png
new file mode 100755
index 00000000..ceae5342
Binary files /dev/null and b/static/icons/0600232F.png differ
diff --git a/static/icons/06002330.png b/static/icons/06002330.png
new file mode 100755
index 00000000..6c5baa22
Binary files /dev/null and b/static/icons/06002330.png differ
diff --git a/static/icons/06002331.png b/static/icons/06002331.png
new file mode 100755
index 00000000..3fa07a01
Binary files /dev/null and b/static/icons/06002331.png differ
diff --git a/static/icons/06002332.png b/static/icons/06002332.png
new file mode 100755
index 00000000..ab220746
Binary files /dev/null and b/static/icons/06002332.png differ
diff --git a/static/icons/06002333.png b/static/icons/06002333.png
new file mode 100755
index 00000000..9464b777
Binary files /dev/null and b/static/icons/06002333.png differ
diff --git a/static/icons/06002334.png b/static/icons/06002334.png
new file mode 100755
index 00000000..23b6c35e
Binary files /dev/null and b/static/icons/06002334.png differ
diff --git a/static/icons/06002335.png b/static/icons/06002335.png
new file mode 100755
index 00000000..4caf5c8d
Binary files /dev/null and b/static/icons/06002335.png differ
diff --git a/static/icons/06002336.png b/static/icons/06002336.png
new file mode 100755
index 00000000..ddbb70c4
Binary files /dev/null and b/static/icons/06002336.png differ
diff --git a/static/icons/06002337.png b/static/icons/06002337.png
new file mode 100755
index 00000000..61c29c76
Binary files /dev/null and b/static/icons/06002337.png differ
diff --git a/static/icons/06002338.png b/static/icons/06002338.png
new file mode 100755
index 00000000..7e714794
Binary files /dev/null and b/static/icons/06002338.png differ
diff --git a/static/icons/06002339.png b/static/icons/06002339.png
new file mode 100755
index 00000000..7a2e27f4
Binary files /dev/null and b/static/icons/06002339.png differ
diff --git a/static/icons/0600233A.png b/static/icons/0600233A.png
new file mode 100755
index 00000000..82df3e06
Binary files /dev/null and b/static/icons/0600233A.png differ
diff --git a/static/icons/0600233B.png b/static/icons/0600233B.png
new file mode 100755
index 00000000..7324a07a
Binary files /dev/null and b/static/icons/0600233B.png differ
diff --git a/static/icons/0600233C.png b/static/icons/0600233C.png
new file mode 100755
index 00000000..f18aa5f4
Binary files /dev/null and b/static/icons/0600233C.png differ
diff --git a/static/icons/0600233D.png b/static/icons/0600233D.png
new file mode 100755
index 00000000..ad2250e5
Binary files /dev/null and b/static/icons/0600233D.png differ
diff --git a/static/icons/0600233E.png b/static/icons/0600233E.png
new file mode 100755
index 00000000..932bb376
Binary files /dev/null and b/static/icons/0600233E.png differ
diff --git a/static/icons/0600233F.png b/static/icons/0600233F.png
new file mode 100755
index 00000000..655f1c1d
Binary files /dev/null and b/static/icons/0600233F.png differ
diff --git a/static/icons/06002340.png b/static/icons/06002340.png
new file mode 100755
index 00000000..5243363f
Binary files /dev/null and b/static/icons/06002340.png differ
diff --git a/static/icons/06002341.png b/static/icons/06002341.png
new file mode 100755
index 00000000..cae9ac5f
Binary files /dev/null and b/static/icons/06002341.png differ
diff --git a/static/icons/06002342.png b/static/icons/06002342.png
new file mode 100755
index 00000000..f5f34238
Binary files /dev/null and b/static/icons/06002342.png differ
diff --git a/static/icons/06002343.png b/static/icons/06002343.png
new file mode 100755
index 00000000..8e5fa1d6
Binary files /dev/null and b/static/icons/06002343.png differ
diff --git a/static/icons/06002344.png b/static/icons/06002344.png
new file mode 100755
index 00000000..8eb5167b
Binary files /dev/null and b/static/icons/06002344.png differ
diff --git a/static/icons/06002345.png b/static/icons/06002345.png
new file mode 100755
index 00000000..6bfd98bb
Binary files /dev/null and b/static/icons/06002345.png differ
diff --git a/static/icons/06002346.png b/static/icons/06002346.png
new file mode 100755
index 00000000..854b03e0
Binary files /dev/null and b/static/icons/06002346.png differ
diff --git a/static/icons/06002347.png b/static/icons/06002347.png
new file mode 100755
index 00000000..8eb5167b
Binary files /dev/null and b/static/icons/06002347.png differ
diff --git a/static/icons/06002348.png b/static/icons/06002348.png
new file mode 100755
index 00000000..6bfd98bb
Binary files /dev/null and b/static/icons/06002348.png differ
diff --git a/static/icons/06002349.png b/static/icons/06002349.png
new file mode 100755
index 00000000..854b03e0
Binary files /dev/null and b/static/icons/06002349.png differ
diff --git a/static/icons/0600234A.png b/static/icons/0600234A.png
new file mode 100755
index 00000000..0f449b84
Binary files /dev/null and b/static/icons/0600234A.png differ
diff --git a/static/icons/0600234B.png b/static/icons/0600234B.png
new file mode 100755
index 00000000..375a0430
Binary files /dev/null and b/static/icons/0600234B.png differ
diff --git a/static/icons/0600234C.png b/static/icons/0600234C.png
new file mode 100755
index 00000000..08199e0e
Binary files /dev/null and b/static/icons/0600234C.png differ
diff --git a/static/icons/0600234D.png b/static/icons/0600234D.png
new file mode 100755
index 00000000..c033da65
Binary files /dev/null and b/static/icons/0600234D.png differ
diff --git a/static/icons/0600234E.png b/static/icons/0600234E.png
new file mode 100755
index 00000000..11f737e0
Binary files /dev/null and b/static/icons/0600234E.png differ
diff --git a/static/icons/0600234F.png b/static/icons/0600234F.png
new file mode 100755
index 00000000..f9598026
Binary files /dev/null and b/static/icons/0600234F.png differ
diff --git a/static/icons/06002350.png b/static/icons/06002350.png
new file mode 100755
index 00000000..c5893210
Binary files /dev/null and b/static/icons/06002350.png differ
diff --git a/static/icons/06002351.png b/static/icons/06002351.png
new file mode 100755
index 00000000..4b790da4
Binary files /dev/null and b/static/icons/06002351.png differ
diff --git a/static/icons/06002352.png b/static/icons/06002352.png
new file mode 100755
index 00000000..7877ebcc
Binary files /dev/null and b/static/icons/06002352.png differ
diff --git a/static/icons/06002353.png b/static/icons/06002353.png
new file mode 100755
index 00000000..9c8a51cc
Binary files /dev/null and b/static/icons/06002353.png differ
diff --git a/static/icons/06002354.png b/static/icons/06002354.png
new file mode 100755
index 00000000..d81cc143
Binary files /dev/null and b/static/icons/06002354.png differ
diff --git a/static/icons/06002355.png b/static/icons/06002355.png
new file mode 100755
index 00000000..fd2277e2
Binary files /dev/null and b/static/icons/06002355.png differ
diff --git a/static/icons/06002356.png b/static/icons/06002356.png
new file mode 100755
index 00000000..c5b5d502
Binary files /dev/null and b/static/icons/06002356.png differ
diff --git a/static/icons/06002357.png b/static/icons/06002357.png
new file mode 100755
index 00000000..560a1f53
Binary files /dev/null and b/static/icons/06002357.png differ
diff --git a/static/icons/06002358.png b/static/icons/06002358.png
new file mode 100755
index 00000000..88f1d187
Binary files /dev/null and b/static/icons/06002358.png differ
diff --git a/static/icons/06002359.png b/static/icons/06002359.png
new file mode 100755
index 00000000..133d13f4
Binary files /dev/null and b/static/icons/06002359.png differ
diff --git a/static/icons/0600235A.png b/static/icons/0600235A.png
new file mode 100755
index 00000000..6ebdaaa6
Binary files /dev/null and b/static/icons/0600235A.png differ
diff --git a/static/icons/0600235B.png b/static/icons/0600235B.png
new file mode 100755
index 00000000..2a302153
Binary files /dev/null and b/static/icons/0600235B.png differ
diff --git a/static/icons/0600235C.png b/static/icons/0600235C.png
new file mode 100755
index 00000000..d8825298
Binary files /dev/null and b/static/icons/0600235C.png differ
diff --git a/static/icons/0600235D.png b/static/icons/0600235D.png
new file mode 100755
index 00000000..b542b9e5
Binary files /dev/null and b/static/icons/0600235D.png differ
diff --git a/static/icons/0600235E.png b/static/icons/0600235E.png
new file mode 100755
index 00000000..878ed55f
Binary files /dev/null and b/static/icons/0600235E.png differ
diff --git a/static/icons/0600235F.png b/static/icons/0600235F.png
new file mode 100755
index 00000000..03e60796
Binary files /dev/null and b/static/icons/0600235F.png differ
diff --git a/static/icons/06002360.png b/static/icons/06002360.png
new file mode 100755
index 00000000..7a90df16
Binary files /dev/null and b/static/icons/06002360.png differ
diff --git a/static/icons/06002361.png b/static/icons/06002361.png
new file mode 100755
index 00000000..5e8afb76
Binary files /dev/null and b/static/icons/06002361.png differ
diff --git a/static/icons/06002362.png b/static/icons/06002362.png
new file mode 100755
index 00000000..9d2bf733
Binary files /dev/null and b/static/icons/06002362.png differ
diff --git a/static/icons/06002363.png b/static/icons/06002363.png
new file mode 100755
index 00000000..9ac3aa59
Binary files /dev/null and b/static/icons/06002363.png differ
diff --git a/static/icons/06002364.png b/static/icons/06002364.png
new file mode 100755
index 00000000..044780df
Binary files /dev/null and b/static/icons/06002364.png differ
diff --git a/static/icons/06002365.png b/static/icons/06002365.png
new file mode 100755
index 00000000..f5876aec
Binary files /dev/null and b/static/icons/06002365.png differ
diff --git a/static/icons/06002366.png b/static/icons/06002366.png
new file mode 100755
index 00000000..7ee44731
Binary files /dev/null and b/static/icons/06002366.png differ
diff --git a/static/icons/06002367.png b/static/icons/06002367.png
new file mode 100755
index 00000000..05eb0fab
Binary files /dev/null and b/static/icons/06002367.png differ
diff --git a/static/icons/06002368.png b/static/icons/06002368.png
new file mode 100755
index 00000000..ecf1fcc8
Binary files /dev/null and b/static/icons/06002368.png differ
diff --git a/static/icons/06002369.png b/static/icons/06002369.png
new file mode 100755
index 00000000..34a4cd92
Binary files /dev/null and b/static/icons/06002369.png differ
diff --git a/static/icons/0600236A.png b/static/icons/0600236A.png
new file mode 100755
index 00000000..4451cdfb
Binary files /dev/null and b/static/icons/0600236A.png differ
diff --git a/static/icons/0600236B.png b/static/icons/0600236B.png
new file mode 100755
index 00000000..a280fd4d
Binary files /dev/null and b/static/icons/0600236B.png differ
diff --git a/static/icons/0600236C.png b/static/icons/0600236C.png
new file mode 100755
index 00000000..6d9eda38
Binary files /dev/null and b/static/icons/0600236C.png differ
diff --git a/static/icons/0600236D.png b/static/icons/0600236D.png
new file mode 100755
index 00000000..daf0080a
Binary files /dev/null and b/static/icons/0600236D.png differ
diff --git a/static/icons/0600236E.png b/static/icons/0600236E.png
new file mode 100755
index 00000000..4dc0cac1
Binary files /dev/null and b/static/icons/0600236E.png differ
diff --git a/static/icons/0600236F.png b/static/icons/0600236F.png
new file mode 100755
index 00000000..4d261a65
Binary files /dev/null and b/static/icons/0600236F.png differ
diff --git a/static/icons/06002370.png b/static/icons/06002370.png
new file mode 100755
index 00000000..894e46f4
Binary files /dev/null and b/static/icons/06002370.png differ
diff --git a/static/icons/06002371.png b/static/icons/06002371.png
new file mode 100755
index 00000000..ab3c2133
Binary files /dev/null and b/static/icons/06002371.png differ
diff --git a/static/icons/06002373.png b/static/icons/06002373.png
new file mode 100755
index 00000000..9777a227
Binary files /dev/null and b/static/icons/06002373.png differ
diff --git a/static/icons/06002374.png b/static/icons/06002374.png
new file mode 100755
index 00000000..8a471219
Binary files /dev/null and b/static/icons/06002374.png differ
diff --git a/static/icons/06002375.png b/static/icons/06002375.png
new file mode 100755
index 00000000..8e5bca02
Binary files /dev/null and b/static/icons/06002375.png differ
diff --git a/static/icons/06002376.png b/static/icons/06002376.png
new file mode 100755
index 00000000..06b76f0e
Binary files /dev/null and b/static/icons/06002376.png differ
diff --git a/static/icons/06002377.png b/static/icons/06002377.png
new file mode 100755
index 00000000..8fe975f7
Binary files /dev/null and b/static/icons/06002377.png differ
diff --git a/static/icons/06002378.png b/static/icons/06002378.png
new file mode 100755
index 00000000..3ac1356d
Binary files /dev/null and b/static/icons/06002378.png differ
diff --git a/static/icons/06002379.png b/static/icons/06002379.png
new file mode 100755
index 00000000..652ac301
Binary files /dev/null and b/static/icons/06002379.png differ
diff --git a/static/icons/0600237A.png b/static/icons/0600237A.png
new file mode 100755
index 00000000..5cacbd91
Binary files /dev/null and b/static/icons/0600237A.png differ
diff --git a/static/icons/0600237B.png b/static/icons/0600237B.png
new file mode 100755
index 00000000..5998fe53
Binary files /dev/null and b/static/icons/0600237B.png differ
diff --git a/static/icons/0600237C.png b/static/icons/0600237C.png
new file mode 100755
index 00000000..bae82061
Binary files /dev/null and b/static/icons/0600237C.png differ
diff --git a/static/icons/0600237D.png b/static/icons/0600237D.png
new file mode 100755
index 00000000..43c8c422
Binary files /dev/null and b/static/icons/0600237D.png differ
diff --git a/static/icons/0600237F.png b/static/icons/0600237F.png
new file mode 100755
index 00000000..1459f9e2
Binary files /dev/null and b/static/icons/0600237F.png differ
diff --git a/static/icons/06002380.png b/static/icons/06002380.png
new file mode 100755
index 00000000..85d4d024
Binary files /dev/null and b/static/icons/06002380.png differ
diff --git a/static/icons/06002381.png b/static/icons/06002381.png
new file mode 100755
index 00000000..37c03846
Binary files /dev/null and b/static/icons/06002381.png differ
diff --git a/static/icons/06002382.png b/static/icons/06002382.png
new file mode 100755
index 00000000..1261d08e
Binary files /dev/null and b/static/icons/06002382.png differ
diff --git a/static/icons/06002383.png b/static/icons/06002383.png
new file mode 100755
index 00000000..91ecdca2
Binary files /dev/null and b/static/icons/06002383.png differ
diff --git a/static/icons/06002384.png b/static/icons/06002384.png
new file mode 100755
index 00000000..cec88d38
Binary files /dev/null and b/static/icons/06002384.png differ
diff --git a/static/icons/06002385.png b/static/icons/06002385.png
new file mode 100755
index 00000000..555f5204
Binary files /dev/null and b/static/icons/06002385.png differ
diff --git a/static/icons/06002386.png b/static/icons/06002386.png
new file mode 100755
index 00000000..cb22dad3
Binary files /dev/null and b/static/icons/06002386.png differ
diff --git a/static/icons/06002388.png b/static/icons/06002388.png
new file mode 100755
index 00000000..c5b3cbb1
Binary files /dev/null and b/static/icons/06002388.png differ
diff --git a/static/icons/06002389.png b/static/icons/06002389.png
new file mode 100755
index 00000000..083b9b6e
Binary files /dev/null and b/static/icons/06002389.png differ
diff --git a/static/icons/0600238A.png b/static/icons/0600238A.png
new file mode 100755
index 00000000..5e493533
Binary files /dev/null and b/static/icons/0600238A.png differ
diff --git a/static/icons/0600238E.png b/static/icons/0600238E.png
new file mode 100755
index 00000000..fd3f6ebe
Binary files /dev/null and b/static/icons/0600238E.png differ
diff --git a/static/icons/06002393.png b/static/icons/06002393.png
new file mode 100755
index 00000000..ce9b0747
Binary files /dev/null and b/static/icons/06002393.png differ
diff --git a/static/icons/06002395.png b/static/icons/06002395.png
new file mode 100755
index 00000000..7f6c223a
Binary files /dev/null and b/static/icons/06002395.png differ
diff --git a/static/icons/06002396.png b/static/icons/06002396.png
new file mode 100755
index 00000000..faa30232
Binary files /dev/null and b/static/icons/06002396.png differ
diff --git a/static/icons/06002397.png b/static/icons/06002397.png
new file mode 100755
index 00000000..0c9295dd
Binary files /dev/null and b/static/icons/06002397.png differ
diff --git a/static/icons/06002398.png b/static/icons/06002398.png
new file mode 100755
index 00000000..e1488046
Binary files /dev/null and b/static/icons/06002398.png differ
diff --git a/static/icons/06002399.png b/static/icons/06002399.png
new file mode 100755
index 00000000..8aa4935f
Binary files /dev/null and b/static/icons/06002399.png differ
diff --git a/static/icons/0600239A.png b/static/icons/0600239A.png
new file mode 100755
index 00000000..cdd72305
Binary files /dev/null and b/static/icons/0600239A.png differ
diff --git a/static/icons/0600239B.png b/static/icons/0600239B.png
new file mode 100755
index 00000000..e95295fc
Binary files /dev/null and b/static/icons/0600239B.png differ
diff --git a/static/icons/0600239C.png b/static/icons/0600239C.png
new file mode 100755
index 00000000..6b567a0e
Binary files /dev/null and b/static/icons/0600239C.png differ
diff --git a/static/icons/0600239D.png b/static/icons/0600239D.png
new file mode 100755
index 00000000..083d2276
Binary files /dev/null and b/static/icons/0600239D.png differ
diff --git a/static/icons/0600239E.png b/static/icons/0600239E.png
new file mode 100755
index 00000000..25c55ffc
Binary files /dev/null and b/static/icons/0600239E.png differ
diff --git a/static/icons/0600239F.png b/static/icons/0600239F.png
new file mode 100755
index 00000000..8d52d0e6
Binary files /dev/null and b/static/icons/0600239F.png differ
diff --git a/static/icons/060023A0.png b/static/icons/060023A0.png
new file mode 100755
index 00000000..414d7517
Binary files /dev/null and b/static/icons/060023A0.png differ
diff --git a/static/icons/060023A1.png b/static/icons/060023A1.png
new file mode 100755
index 00000000..cb9fbe8a
Binary files /dev/null and b/static/icons/060023A1.png differ
diff --git a/static/icons/060023A2.png b/static/icons/060023A2.png
new file mode 100755
index 00000000..a16e9b42
Binary files /dev/null and b/static/icons/060023A2.png differ
diff --git a/static/icons/060023A3.png b/static/icons/060023A3.png
new file mode 100755
index 00000000..62ca6a2a
Binary files /dev/null and b/static/icons/060023A3.png differ
diff --git a/static/icons/060023A4.png b/static/icons/060023A4.png
new file mode 100755
index 00000000..290d77d4
Binary files /dev/null and b/static/icons/060023A4.png differ
diff --git a/static/icons/060023A5.png b/static/icons/060023A5.png
new file mode 100755
index 00000000..aff3264d
Binary files /dev/null and b/static/icons/060023A5.png differ
diff --git a/static/icons/060023A6.png b/static/icons/060023A6.png
new file mode 100755
index 00000000..6629e08d
Binary files /dev/null and b/static/icons/060023A6.png differ
diff --git a/static/icons/060023A7.png b/static/icons/060023A7.png
new file mode 100755
index 00000000..fecfaaf0
Binary files /dev/null and b/static/icons/060023A7.png differ
diff --git a/static/icons/060023A8.png b/static/icons/060023A8.png
new file mode 100755
index 00000000..5733b3aa
Binary files /dev/null and b/static/icons/060023A8.png differ
diff --git a/static/icons/060023A9.png b/static/icons/060023A9.png
new file mode 100755
index 00000000..a08c77a6
Binary files /dev/null and b/static/icons/060023A9.png differ
diff --git a/static/icons/060023AA.png b/static/icons/060023AA.png
new file mode 100755
index 00000000..96754703
Binary files /dev/null and b/static/icons/060023AA.png differ
diff --git a/static/icons/060023AB.png b/static/icons/060023AB.png
new file mode 100755
index 00000000..86f50fe9
Binary files /dev/null and b/static/icons/060023AB.png differ
diff --git a/static/icons/060023AC.png b/static/icons/060023AC.png
new file mode 100755
index 00000000..762efa0a
Binary files /dev/null and b/static/icons/060023AC.png differ
diff --git a/static/icons/060023AD.png b/static/icons/060023AD.png
new file mode 100755
index 00000000..43d7ac75
Binary files /dev/null and b/static/icons/060023AD.png differ
diff --git a/static/icons/060023AE.png b/static/icons/060023AE.png
new file mode 100755
index 00000000..0d0f9642
Binary files /dev/null and b/static/icons/060023AE.png differ
diff --git a/static/icons/060023AF.png b/static/icons/060023AF.png
new file mode 100755
index 00000000..9c3328a0
Binary files /dev/null and b/static/icons/060023AF.png differ
diff --git a/static/icons/060023B0.png b/static/icons/060023B0.png
new file mode 100755
index 00000000..ebb793a3
Binary files /dev/null and b/static/icons/060023B0.png differ
diff --git a/static/icons/060023B1.png b/static/icons/060023B1.png
new file mode 100755
index 00000000..c3184804
Binary files /dev/null and b/static/icons/060023B1.png differ
diff --git a/static/icons/060023B2.png b/static/icons/060023B2.png
new file mode 100755
index 00000000..a5355239
Binary files /dev/null and b/static/icons/060023B2.png differ
diff --git a/static/icons/060023B3.png b/static/icons/060023B3.png
new file mode 100755
index 00000000..b2567848
Binary files /dev/null and b/static/icons/060023B3.png differ
diff --git a/static/icons/060023B8.png b/static/icons/060023B8.png
new file mode 100755
index 00000000..9cf2e547
Binary files /dev/null and b/static/icons/060023B8.png differ
diff --git a/static/icons/060023B9.png b/static/icons/060023B9.png
new file mode 100755
index 00000000..43ae5711
Binary files /dev/null and b/static/icons/060023B9.png differ
diff --git a/static/icons/060023BA.png b/static/icons/060023BA.png
new file mode 100755
index 00000000..319e21de
Binary files /dev/null and b/static/icons/060023BA.png differ
diff --git a/static/icons/060023BB.png b/static/icons/060023BB.png
new file mode 100755
index 00000000..2708e982
Binary files /dev/null and b/static/icons/060023BB.png differ
diff --git a/static/icons/060023BC.png b/static/icons/060023BC.png
new file mode 100755
index 00000000..9807ea07
Binary files /dev/null and b/static/icons/060023BC.png differ
diff --git a/static/icons/060023BD.png b/static/icons/060023BD.png
new file mode 100755
index 00000000..dadd934b
Binary files /dev/null and b/static/icons/060023BD.png differ
diff --git a/static/icons/060023BE.png b/static/icons/060023BE.png
new file mode 100755
index 00000000..cb936860
Binary files /dev/null and b/static/icons/060023BE.png differ
diff --git a/static/icons/060023BF.png b/static/icons/060023BF.png
new file mode 100755
index 00000000..117a0e23
Binary files /dev/null and b/static/icons/060023BF.png differ
diff --git a/static/icons/060023C1.png b/static/icons/060023C1.png
new file mode 100755
index 00000000..394af090
Binary files /dev/null and b/static/icons/060023C1.png differ
diff --git a/static/icons/060023C2.png b/static/icons/060023C2.png
new file mode 100755
index 00000000..26cb8ba8
Binary files /dev/null and b/static/icons/060023C2.png differ
diff --git a/static/icons/060023C3.png b/static/icons/060023C3.png
new file mode 100755
index 00000000..54c22c46
Binary files /dev/null and b/static/icons/060023C3.png differ
diff --git a/static/icons/060023C4.png b/static/icons/060023C4.png
new file mode 100755
index 00000000..9e98de7e
Binary files /dev/null and b/static/icons/060023C4.png differ
diff --git a/static/icons/060023C5.png b/static/icons/060023C5.png
new file mode 100755
index 00000000..c5f17a8f
Binary files /dev/null and b/static/icons/060023C5.png differ
diff --git a/static/icons/060023C6.png b/static/icons/060023C6.png
new file mode 100755
index 00000000..6656e3db
Binary files /dev/null and b/static/icons/060023C6.png differ
diff --git a/static/icons/060023C7.png b/static/icons/060023C7.png
new file mode 100755
index 00000000..03a9abeb
Binary files /dev/null and b/static/icons/060023C7.png differ
diff --git a/static/icons/060023C8.png b/static/icons/060023C8.png
new file mode 100755
index 00000000..7e9db293
Binary files /dev/null and b/static/icons/060023C8.png differ
diff --git a/static/icons/060023C9.png b/static/icons/060023C9.png
new file mode 100755
index 00000000..3ef03271
Binary files /dev/null and b/static/icons/060023C9.png differ
diff --git a/static/icons/060023CA.png b/static/icons/060023CA.png
new file mode 100755
index 00000000..df88b980
Binary files /dev/null and b/static/icons/060023CA.png differ
diff --git a/static/icons/060023CB.png b/static/icons/060023CB.png
new file mode 100755
index 00000000..105544d3
Binary files /dev/null and b/static/icons/060023CB.png differ
diff --git a/static/icons/060023CC.png b/static/icons/060023CC.png
new file mode 100755
index 00000000..5b259fb2
Binary files /dev/null and b/static/icons/060023CC.png differ
diff --git a/static/icons/060023CD.png b/static/icons/060023CD.png
new file mode 100755
index 00000000..18073dba
Binary files /dev/null and b/static/icons/060023CD.png differ
diff --git a/static/icons/060023CE.png b/static/icons/060023CE.png
new file mode 100755
index 00000000..bd4463c0
Binary files /dev/null and b/static/icons/060023CE.png differ
diff --git a/static/icons/060023CF.png b/static/icons/060023CF.png
new file mode 100755
index 00000000..3f8a0486
Binary files /dev/null and b/static/icons/060023CF.png differ
diff --git a/static/icons/060023D0.png b/static/icons/060023D0.png
new file mode 100755
index 00000000..af09a23b
Binary files /dev/null and b/static/icons/060023D0.png differ
diff --git a/static/icons/060023D1.png b/static/icons/060023D1.png
new file mode 100755
index 00000000..44e8d73b
Binary files /dev/null and b/static/icons/060023D1.png differ
diff --git a/static/icons/060023D2.png b/static/icons/060023D2.png
new file mode 100755
index 00000000..263eec2e
Binary files /dev/null and b/static/icons/060023D2.png differ
diff --git a/static/icons/060023D3.png b/static/icons/060023D3.png
new file mode 100755
index 00000000..9af0cef1
Binary files /dev/null and b/static/icons/060023D3.png differ
diff --git a/static/icons/060023D4.png b/static/icons/060023D4.png
new file mode 100755
index 00000000..3be0d6c0
Binary files /dev/null and b/static/icons/060023D4.png differ
diff --git a/static/icons/060023D5.png b/static/icons/060023D5.png
new file mode 100755
index 00000000..1e0e3626
Binary files /dev/null and b/static/icons/060023D5.png differ
diff --git a/static/icons/060023D6.png b/static/icons/060023D6.png
new file mode 100755
index 00000000..0403979c
Binary files /dev/null and b/static/icons/060023D6.png differ
diff --git a/static/icons/060023D9.png b/static/icons/060023D9.png
new file mode 100755
index 00000000..8a229e86
Binary files /dev/null and b/static/icons/060023D9.png differ
diff --git a/static/icons/060023DA.png b/static/icons/060023DA.png
new file mode 100755
index 00000000..dc99fa91
Binary files /dev/null and b/static/icons/060023DA.png differ
diff --git a/static/icons/060023DD.png b/static/icons/060023DD.png
new file mode 100755
index 00000000..3822c284
Binary files /dev/null and b/static/icons/060023DD.png differ
diff --git a/static/icons/060023E0.png b/static/icons/060023E0.png
new file mode 100755
index 00000000..3f2a0981
Binary files /dev/null and b/static/icons/060023E0.png differ
diff --git a/static/icons/060023E2.png b/static/icons/060023E2.png
new file mode 100755
index 00000000..9b83bbb7
Binary files /dev/null and b/static/icons/060023E2.png differ
diff --git a/static/icons/060023E3.png b/static/icons/060023E3.png
new file mode 100755
index 00000000..276f6171
Binary files /dev/null and b/static/icons/060023E3.png differ
diff --git a/static/icons/060023E4.png b/static/icons/060023E4.png
new file mode 100755
index 00000000..45d64489
Binary files /dev/null and b/static/icons/060023E4.png differ
diff --git a/static/icons/060023E5.png b/static/icons/060023E5.png
new file mode 100755
index 00000000..893499b3
Binary files /dev/null and b/static/icons/060023E5.png differ
diff --git a/static/icons/060023E6.png b/static/icons/060023E6.png
new file mode 100755
index 00000000..2f310ae6
Binary files /dev/null and b/static/icons/060023E6.png differ
diff --git a/static/icons/060023E7.png b/static/icons/060023E7.png
new file mode 100755
index 00000000..6c730875
Binary files /dev/null and b/static/icons/060023E7.png differ
diff --git a/static/icons/060023E8.png b/static/icons/060023E8.png
new file mode 100755
index 00000000..b088b0c9
Binary files /dev/null and b/static/icons/060023E8.png differ
diff --git a/static/icons/060023E9.png b/static/icons/060023E9.png
new file mode 100755
index 00000000..9d447009
Binary files /dev/null and b/static/icons/060023E9.png differ
diff --git a/static/icons/060023EA.png b/static/icons/060023EA.png
new file mode 100755
index 00000000..bec53dbe
Binary files /dev/null and b/static/icons/060023EA.png differ
diff --git a/static/icons/060023EB.png b/static/icons/060023EB.png
new file mode 100755
index 00000000..be41cf5a
Binary files /dev/null and b/static/icons/060023EB.png differ
diff --git a/static/icons/060023EC.png b/static/icons/060023EC.png
new file mode 100755
index 00000000..84683395
Binary files /dev/null and b/static/icons/060023EC.png differ
diff --git a/static/icons/060023F2.png b/static/icons/060023F2.png
new file mode 100755
index 00000000..29d5b6a4
Binary files /dev/null and b/static/icons/060023F2.png differ
diff --git a/static/icons/060023F3.png b/static/icons/060023F3.png
new file mode 100755
index 00000000..6f748026
Binary files /dev/null and b/static/icons/060023F3.png differ
diff --git a/static/icons/060023F4.png b/static/icons/060023F4.png
new file mode 100755
index 00000000..44d18afe
Binary files /dev/null and b/static/icons/060023F4.png differ
diff --git a/static/icons/060023F6.png b/static/icons/060023F6.png
new file mode 100755
index 00000000..3c578e02
Binary files /dev/null and b/static/icons/060023F6.png differ
diff --git a/static/icons/060023F7.png b/static/icons/060023F7.png
new file mode 100755
index 00000000..56868b7a
Binary files /dev/null and b/static/icons/060023F7.png differ
diff --git a/static/icons/060023F8.png b/static/icons/060023F8.png
new file mode 100755
index 00000000..56ac66f6
Binary files /dev/null and b/static/icons/060023F8.png differ
diff --git a/static/icons/060023F9.png b/static/icons/060023F9.png
new file mode 100755
index 00000000..401be533
Binary files /dev/null and b/static/icons/060023F9.png differ
diff --git a/static/icons/060023FA.png b/static/icons/060023FA.png
new file mode 100755
index 00000000..0902cacd
Binary files /dev/null and b/static/icons/060023FA.png differ
diff --git a/static/icons/060023FC.png b/static/icons/060023FC.png
new file mode 100755
index 00000000..d781ec9b
Binary files /dev/null and b/static/icons/060023FC.png differ
diff --git a/static/icons/060023FD.png b/static/icons/060023FD.png
new file mode 100755
index 00000000..07efffe9
Binary files /dev/null and b/static/icons/060023FD.png differ
diff --git a/static/icons/060023FE.png b/static/icons/060023FE.png
new file mode 100755
index 00000000..5e9b9878
Binary files /dev/null and b/static/icons/060023FE.png differ
diff --git a/static/icons/060023FF.png b/static/icons/060023FF.png
new file mode 100755
index 00000000..9559ee01
Binary files /dev/null and b/static/icons/060023FF.png differ
diff --git a/static/icons/06002400.png b/static/icons/06002400.png
new file mode 100755
index 00000000..adb2b287
Binary files /dev/null and b/static/icons/06002400.png differ
diff --git a/static/icons/06002401.png b/static/icons/06002401.png
new file mode 100755
index 00000000..78a1bbda
Binary files /dev/null and b/static/icons/06002401.png differ
diff --git a/static/icons/06002402.png b/static/icons/06002402.png
new file mode 100755
index 00000000..fe8e6b5a
Binary files /dev/null and b/static/icons/06002402.png differ
diff --git a/static/icons/06002403.png b/static/icons/06002403.png
new file mode 100755
index 00000000..ac6a153f
Binary files /dev/null and b/static/icons/06002403.png differ
diff --git a/static/icons/06002404.png b/static/icons/06002404.png
new file mode 100755
index 00000000..0121593f
Binary files /dev/null and b/static/icons/06002404.png differ
diff --git a/static/icons/06002405.png b/static/icons/06002405.png
new file mode 100755
index 00000000..eae21e63
Binary files /dev/null and b/static/icons/06002405.png differ
diff --git a/static/icons/06002406.png b/static/icons/06002406.png
new file mode 100755
index 00000000..c5f3c70e
Binary files /dev/null and b/static/icons/06002406.png differ
diff --git a/static/icons/06002407.png b/static/icons/06002407.png
new file mode 100755
index 00000000..e8606912
Binary files /dev/null and b/static/icons/06002407.png differ
diff --git a/static/icons/06002408.png b/static/icons/06002408.png
new file mode 100755
index 00000000..9bc29bc9
Binary files /dev/null and b/static/icons/06002408.png differ
diff --git a/static/icons/06002409.png b/static/icons/06002409.png
new file mode 100755
index 00000000..3ade315b
Binary files /dev/null and b/static/icons/06002409.png differ
diff --git a/static/icons/0600240A.png b/static/icons/0600240A.png
new file mode 100755
index 00000000..e5ba3729
Binary files /dev/null and b/static/icons/0600240A.png differ
diff --git a/static/icons/0600240B.png b/static/icons/0600240B.png
new file mode 100755
index 00000000..2904c24d
Binary files /dev/null and b/static/icons/0600240B.png differ
diff --git a/static/icons/0600240C.png b/static/icons/0600240C.png
new file mode 100755
index 00000000..2ca68ca3
Binary files /dev/null and b/static/icons/0600240C.png differ
diff --git a/static/icons/0600240D.png b/static/icons/0600240D.png
new file mode 100755
index 00000000..ac529e37
Binary files /dev/null and b/static/icons/0600240D.png differ
diff --git a/static/icons/0600240E.png b/static/icons/0600240E.png
new file mode 100755
index 00000000..9602ecae
Binary files /dev/null and b/static/icons/0600240E.png differ
diff --git a/static/icons/0600240F.png b/static/icons/0600240F.png
new file mode 100755
index 00000000..c0333c9f
Binary files /dev/null and b/static/icons/0600240F.png differ
diff --git a/static/icons/06002410.png b/static/icons/06002410.png
new file mode 100755
index 00000000..55f08f40
Binary files /dev/null and b/static/icons/06002410.png differ
diff --git a/static/icons/06002411.png b/static/icons/06002411.png
new file mode 100755
index 00000000..128c9723
Binary files /dev/null and b/static/icons/06002411.png differ
diff --git a/static/icons/06002412.png b/static/icons/06002412.png
new file mode 100755
index 00000000..6da8adeb
Binary files /dev/null and b/static/icons/06002412.png differ
diff --git a/static/icons/06002413.png b/static/icons/06002413.png
new file mode 100755
index 00000000..7a115b11
Binary files /dev/null and b/static/icons/06002413.png differ
diff --git a/static/icons/06002414.png b/static/icons/06002414.png
new file mode 100755
index 00000000..8dc8771d
Binary files /dev/null and b/static/icons/06002414.png differ
diff --git a/static/icons/06002415.png b/static/icons/06002415.png
new file mode 100755
index 00000000..dea0af59
Binary files /dev/null and b/static/icons/06002415.png differ
diff --git a/static/icons/06002416.png b/static/icons/06002416.png
new file mode 100755
index 00000000..53055e4c
Binary files /dev/null and b/static/icons/06002416.png differ
diff --git a/static/icons/06002417.png b/static/icons/06002417.png
new file mode 100755
index 00000000..2aca89d2
Binary files /dev/null and b/static/icons/06002417.png differ
diff --git a/static/icons/06002418.png b/static/icons/06002418.png
new file mode 100755
index 00000000..572969c4
Binary files /dev/null and b/static/icons/06002418.png differ
diff --git a/static/icons/06002419.png b/static/icons/06002419.png
new file mode 100755
index 00000000..7fb5fc5d
Binary files /dev/null and b/static/icons/06002419.png differ
diff --git a/static/icons/0600241A.png b/static/icons/0600241A.png
new file mode 100755
index 00000000..f237dc60
Binary files /dev/null and b/static/icons/0600241A.png differ
diff --git a/static/icons/0600241B.png b/static/icons/0600241B.png
new file mode 100755
index 00000000..b22e6472
Binary files /dev/null and b/static/icons/0600241B.png differ
diff --git a/static/icons/0600241C.png b/static/icons/0600241C.png
new file mode 100755
index 00000000..4fed3373
Binary files /dev/null and b/static/icons/0600241C.png differ
diff --git a/static/icons/0600241D.png b/static/icons/0600241D.png
new file mode 100755
index 00000000..96f7d15a
Binary files /dev/null and b/static/icons/0600241D.png differ
diff --git a/static/icons/0600241E.png b/static/icons/0600241E.png
new file mode 100755
index 00000000..abc1e1d4
Binary files /dev/null and b/static/icons/0600241E.png differ
diff --git a/static/icons/0600241F.png b/static/icons/0600241F.png
new file mode 100755
index 00000000..50e3e47f
Binary files /dev/null and b/static/icons/0600241F.png differ
diff --git a/static/icons/06002420.png b/static/icons/06002420.png
new file mode 100755
index 00000000..6a4a35dc
Binary files /dev/null and b/static/icons/06002420.png differ
diff --git a/static/icons/06002421.png b/static/icons/06002421.png
new file mode 100755
index 00000000..60f08e2e
Binary files /dev/null and b/static/icons/06002421.png differ
diff --git a/static/icons/06002422.png b/static/icons/06002422.png
new file mode 100755
index 00000000..1aba04d5
Binary files /dev/null and b/static/icons/06002422.png differ
diff --git a/static/icons/06002423.png b/static/icons/06002423.png
new file mode 100755
index 00000000..ca8b79f1
Binary files /dev/null and b/static/icons/06002423.png differ
diff --git a/static/icons/06002424.png b/static/icons/06002424.png
new file mode 100755
index 00000000..1af66a3a
Binary files /dev/null and b/static/icons/06002424.png differ
diff --git a/static/icons/06002425.png b/static/icons/06002425.png
new file mode 100755
index 00000000..f5d6df25
Binary files /dev/null and b/static/icons/06002425.png differ
diff --git a/static/icons/06002426.png b/static/icons/06002426.png
new file mode 100755
index 00000000..eb52f020
Binary files /dev/null and b/static/icons/06002426.png differ
diff --git a/static/icons/06002427.png b/static/icons/06002427.png
new file mode 100755
index 00000000..a029d81a
Binary files /dev/null and b/static/icons/06002427.png differ
diff --git a/static/icons/06002429.png b/static/icons/06002429.png
new file mode 100755
index 00000000..64d0903a
Binary files /dev/null and b/static/icons/06002429.png differ
diff --git a/static/icons/0600242A.png b/static/icons/0600242A.png
new file mode 100755
index 00000000..77a69a6f
Binary files /dev/null and b/static/icons/0600242A.png differ
diff --git a/static/icons/0600242B.png b/static/icons/0600242B.png
new file mode 100755
index 00000000..1ade3673
Binary files /dev/null and b/static/icons/0600242B.png differ
diff --git a/static/icons/0600242C.png b/static/icons/0600242C.png
new file mode 100755
index 00000000..6d93dfd0
Binary files /dev/null and b/static/icons/0600242C.png differ
diff --git a/static/icons/0600242D.png b/static/icons/0600242D.png
new file mode 100755
index 00000000..55b3a19c
Binary files /dev/null and b/static/icons/0600242D.png differ
diff --git a/static/icons/0600242E.png b/static/icons/0600242E.png
new file mode 100755
index 00000000..6e13db9b
Binary files /dev/null and b/static/icons/0600242E.png differ
diff --git a/static/icons/0600242F.png b/static/icons/0600242F.png
new file mode 100755
index 00000000..57a8e78c
Binary files /dev/null and b/static/icons/0600242F.png differ
diff --git a/static/icons/06002430.png b/static/icons/06002430.png
new file mode 100755
index 00000000..f22655c5
Binary files /dev/null and b/static/icons/06002430.png differ
diff --git a/static/icons/06002431.png b/static/icons/06002431.png
new file mode 100755
index 00000000..ba6e7448
Binary files /dev/null and b/static/icons/06002431.png differ
diff --git a/static/icons/06002432.png b/static/icons/06002432.png
new file mode 100755
index 00000000..5f45e335
Binary files /dev/null and b/static/icons/06002432.png differ
diff --git a/static/icons/06002433.png b/static/icons/06002433.png
new file mode 100755
index 00000000..83a5e2a3
Binary files /dev/null and b/static/icons/06002433.png differ
diff --git a/static/icons/06002434.png b/static/icons/06002434.png
new file mode 100755
index 00000000..32cce3d4
Binary files /dev/null and b/static/icons/06002434.png differ
diff --git a/static/icons/06002435.png b/static/icons/06002435.png
new file mode 100755
index 00000000..f20b7277
Binary files /dev/null and b/static/icons/06002435.png differ
diff --git a/static/icons/06002436.png b/static/icons/06002436.png
new file mode 100755
index 00000000..15a0a978
Binary files /dev/null and b/static/icons/06002436.png differ
diff --git a/static/icons/06002437.png b/static/icons/06002437.png
new file mode 100755
index 00000000..b6ffa6ba
Binary files /dev/null and b/static/icons/06002437.png differ
diff --git a/static/icons/06002438.png b/static/icons/06002438.png
new file mode 100755
index 00000000..644d9eff
Binary files /dev/null and b/static/icons/06002438.png differ
diff --git a/static/icons/06002439.png b/static/icons/06002439.png
new file mode 100755
index 00000000..cd6f7d31
Binary files /dev/null and b/static/icons/06002439.png differ
diff --git a/static/icons/0600243A.png b/static/icons/0600243A.png
new file mode 100755
index 00000000..3576a83d
Binary files /dev/null and b/static/icons/0600243A.png differ
diff --git a/static/icons/0600243B.png b/static/icons/0600243B.png
new file mode 100755
index 00000000..3caf68b7
Binary files /dev/null and b/static/icons/0600243B.png differ
diff --git a/static/icons/0600243C.png b/static/icons/0600243C.png
new file mode 100755
index 00000000..2ab9319d
Binary files /dev/null and b/static/icons/0600243C.png differ
diff --git a/static/icons/0600243D.png b/static/icons/0600243D.png
new file mode 100755
index 00000000..a1b655da
Binary files /dev/null and b/static/icons/0600243D.png differ
diff --git a/static/icons/0600243E.png b/static/icons/0600243E.png
new file mode 100755
index 00000000..1631f2d6
Binary files /dev/null and b/static/icons/0600243E.png differ
diff --git a/static/icons/0600243F.png b/static/icons/0600243F.png
new file mode 100755
index 00000000..47b0f5d3
Binary files /dev/null and b/static/icons/0600243F.png differ
diff --git a/static/icons/06002440.png b/static/icons/06002440.png
new file mode 100755
index 00000000..a8e53a5d
Binary files /dev/null and b/static/icons/06002440.png differ
diff --git a/static/icons/06002441.png b/static/icons/06002441.png
new file mode 100755
index 00000000..904b6d66
Binary files /dev/null and b/static/icons/06002441.png differ
diff --git a/static/icons/06002442.png b/static/icons/06002442.png
new file mode 100755
index 00000000..dc8b8df1
Binary files /dev/null and b/static/icons/06002442.png differ
diff --git a/static/icons/06002443.png b/static/icons/06002443.png
new file mode 100755
index 00000000..7f88167b
Binary files /dev/null and b/static/icons/06002443.png differ
diff --git a/static/icons/06002444.png b/static/icons/06002444.png
new file mode 100755
index 00000000..9e4f4d69
Binary files /dev/null and b/static/icons/06002444.png differ
diff --git a/static/icons/06002445.png b/static/icons/06002445.png
new file mode 100755
index 00000000..bcfdc03e
Binary files /dev/null and b/static/icons/06002445.png differ
diff --git a/static/icons/06002446.png b/static/icons/06002446.png
new file mode 100755
index 00000000..839b134d
Binary files /dev/null and b/static/icons/06002446.png differ
diff --git a/static/icons/06002447.png b/static/icons/06002447.png
new file mode 100755
index 00000000..759a85e9
Binary files /dev/null and b/static/icons/06002447.png differ
diff --git a/static/icons/06002448.png b/static/icons/06002448.png
new file mode 100755
index 00000000..360bf502
Binary files /dev/null and b/static/icons/06002448.png differ
diff --git a/static/icons/06002449.png b/static/icons/06002449.png
new file mode 100755
index 00000000..d9bc6281
Binary files /dev/null and b/static/icons/06002449.png differ
diff --git a/static/icons/0600244A.png b/static/icons/0600244A.png
new file mode 100755
index 00000000..dbb17ea5
Binary files /dev/null and b/static/icons/0600244A.png differ
diff --git a/static/icons/0600244B.png b/static/icons/0600244B.png
new file mode 100755
index 00000000..1bf47659
Binary files /dev/null and b/static/icons/0600244B.png differ
diff --git a/static/icons/0600244C.png b/static/icons/0600244C.png
new file mode 100755
index 00000000..5fc5df82
Binary files /dev/null and b/static/icons/0600244C.png differ
diff --git a/static/icons/0600244E.png b/static/icons/0600244E.png
new file mode 100755
index 00000000..158218c3
Binary files /dev/null and b/static/icons/0600244E.png differ
diff --git a/static/icons/0600244F.png b/static/icons/0600244F.png
new file mode 100755
index 00000000..b01a699d
Binary files /dev/null and b/static/icons/0600244F.png differ
diff --git a/static/icons/06002450.png b/static/icons/06002450.png
new file mode 100755
index 00000000..77df6c84
Binary files /dev/null and b/static/icons/06002450.png differ
diff --git a/static/icons/06002451.png b/static/icons/06002451.png
new file mode 100755
index 00000000..dd3e6cf8
Binary files /dev/null and b/static/icons/06002451.png differ
diff --git a/static/icons/06002452.png b/static/icons/06002452.png
new file mode 100755
index 00000000..0a98e363
Binary files /dev/null and b/static/icons/06002452.png differ
diff --git a/static/icons/06002453.png b/static/icons/06002453.png
new file mode 100755
index 00000000..6f6e8a63
Binary files /dev/null and b/static/icons/06002453.png differ
diff --git a/static/icons/06002454.png b/static/icons/06002454.png
new file mode 100755
index 00000000..712de709
Binary files /dev/null and b/static/icons/06002454.png differ
diff --git a/static/icons/06002455.png b/static/icons/06002455.png
new file mode 100755
index 00000000..89f710c4
Binary files /dev/null and b/static/icons/06002455.png differ
diff --git a/static/icons/06002457.png b/static/icons/06002457.png
new file mode 100755
index 00000000..37da7b6f
Binary files /dev/null and b/static/icons/06002457.png differ
diff --git a/static/icons/06002458.png b/static/icons/06002458.png
new file mode 100755
index 00000000..5fc71f15
Binary files /dev/null and b/static/icons/06002458.png differ
diff --git a/static/icons/06002459.png b/static/icons/06002459.png
new file mode 100755
index 00000000..7baac70f
Binary files /dev/null and b/static/icons/06002459.png differ
diff --git a/static/icons/0600245A.png b/static/icons/0600245A.png
new file mode 100755
index 00000000..17fdc1b4
Binary files /dev/null and b/static/icons/0600245A.png differ
diff --git a/static/icons/0600245B.png b/static/icons/0600245B.png
new file mode 100755
index 00000000..45fe07f1
Binary files /dev/null and b/static/icons/0600245B.png differ
diff --git a/static/icons/0600245C.png b/static/icons/0600245C.png
new file mode 100755
index 00000000..b54645d1
Binary files /dev/null and b/static/icons/0600245C.png differ
diff --git a/static/icons/0600245D.png b/static/icons/0600245D.png
new file mode 100755
index 00000000..c7b71cc7
Binary files /dev/null and b/static/icons/0600245D.png differ
diff --git a/static/icons/0600245E.png b/static/icons/0600245E.png
new file mode 100755
index 00000000..817be142
Binary files /dev/null and b/static/icons/0600245E.png differ
diff --git a/static/icons/0600245F.png b/static/icons/0600245F.png
new file mode 100755
index 00000000..9b23c1c1
Binary files /dev/null and b/static/icons/0600245F.png differ
diff --git a/static/icons/06002460.png b/static/icons/06002460.png
new file mode 100755
index 00000000..65ce712d
Binary files /dev/null and b/static/icons/06002460.png differ
diff --git a/static/icons/06002461.png b/static/icons/06002461.png
new file mode 100755
index 00000000..7632bdbc
Binary files /dev/null and b/static/icons/06002461.png differ
diff --git a/static/icons/06002462.png b/static/icons/06002462.png
new file mode 100755
index 00000000..514def43
Binary files /dev/null and b/static/icons/06002462.png differ
diff --git a/static/icons/06002463.png b/static/icons/06002463.png
new file mode 100755
index 00000000..fd036dbc
Binary files /dev/null and b/static/icons/06002463.png differ
diff --git a/static/icons/06002464.png b/static/icons/06002464.png
new file mode 100755
index 00000000..24bb0a3c
Binary files /dev/null and b/static/icons/06002464.png differ
diff --git a/static/icons/06002465.png b/static/icons/06002465.png
new file mode 100755
index 00000000..e8c0c49c
Binary files /dev/null and b/static/icons/06002465.png differ
diff --git a/static/icons/06002466.png b/static/icons/06002466.png
new file mode 100755
index 00000000..7588a794
Binary files /dev/null and b/static/icons/06002466.png differ
diff --git a/static/icons/06002467.png b/static/icons/06002467.png
new file mode 100755
index 00000000..3ee1986a
Binary files /dev/null and b/static/icons/06002467.png differ
diff --git a/static/icons/06002468.png b/static/icons/06002468.png
new file mode 100755
index 00000000..0fd06686
Binary files /dev/null and b/static/icons/06002468.png differ
diff --git a/static/icons/06002469.png b/static/icons/06002469.png
new file mode 100755
index 00000000..acbdb68a
Binary files /dev/null and b/static/icons/06002469.png differ
diff --git a/static/icons/0600246A.png b/static/icons/0600246A.png
new file mode 100755
index 00000000..40df1040
Binary files /dev/null and b/static/icons/0600246A.png differ
diff --git a/static/icons/0600246B.png b/static/icons/0600246B.png
new file mode 100755
index 00000000..8a5d2d8e
Binary files /dev/null and b/static/icons/0600246B.png differ
diff --git a/static/icons/0600246C.png b/static/icons/0600246C.png
new file mode 100755
index 00000000..097c605b
Binary files /dev/null and b/static/icons/0600246C.png differ
diff --git a/static/icons/0600246D.png b/static/icons/0600246D.png
new file mode 100755
index 00000000..b9642c80
Binary files /dev/null and b/static/icons/0600246D.png differ
diff --git a/static/icons/0600246E.png b/static/icons/0600246E.png
new file mode 100755
index 00000000..a7013503
Binary files /dev/null and b/static/icons/0600246E.png differ
diff --git a/static/icons/0600246F.png b/static/icons/0600246F.png
new file mode 100755
index 00000000..a21decea
Binary files /dev/null and b/static/icons/0600246F.png differ
diff --git a/static/icons/06002470.png b/static/icons/06002470.png
new file mode 100755
index 00000000..3fe033e7
Binary files /dev/null and b/static/icons/06002470.png differ
diff --git a/static/icons/06002471.png b/static/icons/06002471.png
new file mode 100755
index 00000000..94660f28
Binary files /dev/null and b/static/icons/06002471.png differ
diff --git a/static/icons/06002472.png b/static/icons/06002472.png
new file mode 100755
index 00000000..d6e68b72
Binary files /dev/null and b/static/icons/06002472.png differ
diff --git a/static/icons/06002473.png b/static/icons/06002473.png
new file mode 100755
index 00000000..71effe18
Binary files /dev/null and b/static/icons/06002473.png differ
diff --git a/static/icons/06002474.png b/static/icons/06002474.png
new file mode 100755
index 00000000..95872fb8
Binary files /dev/null and b/static/icons/06002474.png differ
diff --git a/static/icons/06002475.png b/static/icons/06002475.png
new file mode 100755
index 00000000..b88e0a49
Binary files /dev/null and b/static/icons/06002475.png differ
diff --git a/static/icons/06002476.png b/static/icons/06002476.png
new file mode 100755
index 00000000..df34684e
Binary files /dev/null and b/static/icons/06002476.png differ
diff --git a/static/icons/06002477.png b/static/icons/06002477.png
new file mode 100755
index 00000000..97e33f4a
Binary files /dev/null and b/static/icons/06002477.png differ
diff --git a/static/icons/06002478.png b/static/icons/06002478.png
new file mode 100755
index 00000000..de9c8ff0
Binary files /dev/null and b/static/icons/06002478.png differ
diff --git a/static/icons/06002479.png b/static/icons/06002479.png
new file mode 100755
index 00000000..6177252a
Binary files /dev/null and b/static/icons/06002479.png differ
diff --git a/static/icons/0600247A.png b/static/icons/0600247A.png
new file mode 100755
index 00000000..f3088f05
Binary files /dev/null and b/static/icons/0600247A.png differ
diff --git a/static/icons/0600247B.png b/static/icons/0600247B.png
new file mode 100755
index 00000000..861d20ae
Binary files /dev/null and b/static/icons/0600247B.png differ
diff --git a/static/icons/0600247C.png b/static/icons/0600247C.png
new file mode 100755
index 00000000..ec521752
Binary files /dev/null and b/static/icons/0600247C.png differ
diff --git a/static/icons/0600247D.png b/static/icons/0600247D.png
new file mode 100755
index 00000000..77bdd381
Binary files /dev/null and b/static/icons/0600247D.png differ
diff --git a/static/icons/0600247E.png b/static/icons/0600247E.png
new file mode 100755
index 00000000..30f80fc0
Binary files /dev/null and b/static/icons/0600247E.png differ
diff --git a/static/icons/0600247F.png b/static/icons/0600247F.png
new file mode 100755
index 00000000..69a9edba
Binary files /dev/null and b/static/icons/0600247F.png differ
diff --git a/static/icons/06002480.png b/static/icons/06002480.png
new file mode 100755
index 00000000..ca944b96
Binary files /dev/null and b/static/icons/06002480.png differ
diff --git a/static/icons/06002481.png b/static/icons/06002481.png
new file mode 100755
index 00000000..9a83b9de
Binary files /dev/null and b/static/icons/06002481.png differ
diff --git a/static/icons/06002482.png b/static/icons/06002482.png
new file mode 100755
index 00000000..27c57621
Binary files /dev/null and b/static/icons/06002482.png differ
diff --git a/static/icons/06002483.png b/static/icons/06002483.png
new file mode 100755
index 00000000..e8733b16
Binary files /dev/null and b/static/icons/06002483.png differ
diff --git a/static/icons/06002484.png b/static/icons/06002484.png
new file mode 100755
index 00000000..fab0856b
Binary files /dev/null and b/static/icons/06002484.png differ
diff --git a/static/icons/06002485.png b/static/icons/06002485.png
new file mode 100755
index 00000000..3f5f5489
Binary files /dev/null and b/static/icons/06002485.png differ
diff --git a/static/icons/06002486.png b/static/icons/06002486.png
new file mode 100755
index 00000000..c5f8138a
Binary files /dev/null and b/static/icons/06002486.png differ
diff --git a/static/icons/06002487.png b/static/icons/06002487.png
new file mode 100755
index 00000000..fd79401a
Binary files /dev/null and b/static/icons/06002487.png differ
diff --git a/static/icons/06002488.png b/static/icons/06002488.png
new file mode 100755
index 00000000..86192299
Binary files /dev/null and b/static/icons/06002488.png differ
diff --git a/static/icons/06002489.png b/static/icons/06002489.png
new file mode 100755
index 00000000..842dbba9
Binary files /dev/null and b/static/icons/06002489.png differ
diff --git a/static/icons/0600248B.png b/static/icons/0600248B.png
new file mode 100755
index 00000000..52869534
Binary files /dev/null and b/static/icons/0600248B.png differ
diff --git a/static/icons/0600248C.png b/static/icons/0600248C.png
new file mode 100755
index 00000000..ffbdc6d0
Binary files /dev/null and b/static/icons/0600248C.png differ
diff --git a/static/icons/0600248D.png b/static/icons/0600248D.png
new file mode 100755
index 00000000..a285b796
Binary files /dev/null and b/static/icons/0600248D.png differ
diff --git a/static/icons/0600248E.png b/static/icons/0600248E.png
new file mode 100755
index 00000000..66002015
Binary files /dev/null and b/static/icons/0600248E.png differ
diff --git a/static/icons/0600248F.png b/static/icons/0600248F.png
new file mode 100755
index 00000000..3eb35dce
Binary files /dev/null and b/static/icons/0600248F.png differ
diff --git a/static/icons/06002490.png b/static/icons/06002490.png
new file mode 100755
index 00000000..637fb312
Binary files /dev/null and b/static/icons/06002490.png differ
diff --git a/static/icons/06002491.png b/static/icons/06002491.png
new file mode 100755
index 00000000..6b4c73f6
Binary files /dev/null and b/static/icons/06002491.png differ
diff --git a/static/icons/06002492.png b/static/icons/06002492.png
new file mode 100755
index 00000000..2467d18c
Binary files /dev/null and b/static/icons/06002492.png differ
diff --git a/static/icons/06002493.png b/static/icons/06002493.png
new file mode 100755
index 00000000..64a28a24
Binary files /dev/null and b/static/icons/06002493.png differ
diff --git a/static/icons/06002495.png b/static/icons/06002495.png
new file mode 100755
index 00000000..fd05802d
Binary files /dev/null and b/static/icons/06002495.png differ
diff --git a/static/icons/06002496.png b/static/icons/06002496.png
new file mode 100755
index 00000000..87ee21e5
Binary files /dev/null and b/static/icons/06002496.png differ
diff --git a/static/icons/06002497.png b/static/icons/06002497.png
new file mode 100755
index 00000000..fb1853e1
Binary files /dev/null and b/static/icons/06002497.png differ
diff --git a/static/icons/06002498.png b/static/icons/06002498.png
new file mode 100755
index 00000000..e30177f8
Binary files /dev/null and b/static/icons/06002498.png differ
diff --git a/static/icons/06002499.png b/static/icons/06002499.png
new file mode 100755
index 00000000..1ed48c01
Binary files /dev/null and b/static/icons/06002499.png differ
diff --git a/static/icons/0600249A.png b/static/icons/0600249A.png
new file mode 100755
index 00000000..ddbe1ee7
Binary files /dev/null and b/static/icons/0600249A.png differ
diff --git a/static/icons/0600249B.png b/static/icons/0600249B.png
new file mode 100755
index 00000000..83c7dd6c
Binary files /dev/null and b/static/icons/0600249B.png differ
diff --git a/static/icons/0600249C.png b/static/icons/0600249C.png
new file mode 100755
index 00000000..b9a447f5
Binary files /dev/null and b/static/icons/0600249C.png differ
diff --git a/static/icons/0600249D.png b/static/icons/0600249D.png
new file mode 100755
index 00000000..5ab5c5de
Binary files /dev/null and b/static/icons/0600249D.png differ
diff --git a/static/icons/0600249E.png b/static/icons/0600249E.png
new file mode 100755
index 00000000..7f91e38a
Binary files /dev/null and b/static/icons/0600249E.png differ
diff --git a/static/icons/0600249F.png b/static/icons/0600249F.png
new file mode 100755
index 00000000..7fdea201
Binary files /dev/null and b/static/icons/0600249F.png differ
diff --git a/static/icons/060024A0.png b/static/icons/060024A0.png
new file mode 100755
index 00000000..6cf3fa69
Binary files /dev/null and b/static/icons/060024A0.png differ
diff --git a/static/icons/060024A1.png b/static/icons/060024A1.png
new file mode 100755
index 00000000..99239e4a
Binary files /dev/null and b/static/icons/060024A1.png differ
diff --git a/static/icons/060024A2.png b/static/icons/060024A2.png
new file mode 100755
index 00000000..96a305df
Binary files /dev/null and b/static/icons/060024A2.png differ
diff --git a/static/icons/060024A3.png b/static/icons/060024A3.png
new file mode 100755
index 00000000..c6eee168
Binary files /dev/null and b/static/icons/060024A3.png differ
diff --git a/static/icons/060024A4.png b/static/icons/060024A4.png
new file mode 100755
index 00000000..0d41ec92
Binary files /dev/null and b/static/icons/060024A4.png differ
diff --git a/static/icons/060024A5.png b/static/icons/060024A5.png
new file mode 100755
index 00000000..9aebb93f
Binary files /dev/null and b/static/icons/060024A5.png differ
diff --git a/static/icons/060024A6.png b/static/icons/060024A6.png
new file mode 100755
index 00000000..7962a298
Binary files /dev/null and b/static/icons/060024A6.png differ
diff --git a/static/icons/060024A8.png b/static/icons/060024A8.png
new file mode 100755
index 00000000..e67f65f2
Binary files /dev/null and b/static/icons/060024A8.png differ
diff --git a/static/icons/060024A9.png b/static/icons/060024A9.png
new file mode 100755
index 00000000..5bab5dbf
Binary files /dev/null and b/static/icons/060024A9.png differ
diff --git a/static/icons/060024AA.png b/static/icons/060024AA.png
new file mode 100755
index 00000000..302447f8
Binary files /dev/null and b/static/icons/060024AA.png differ
diff --git a/static/icons/060024AB.png b/static/icons/060024AB.png
new file mode 100755
index 00000000..4299ae0a
Binary files /dev/null and b/static/icons/060024AB.png differ
diff --git a/static/icons/060024AC.png b/static/icons/060024AC.png
new file mode 100755
index 00000000..05f4617d
Binary files /dev/null and b/static/icons/060024AC.png differ
diff --git a/static/icons/060024AD.png b/static/icons/060024AD.png
new file mode 100755
index 00000000..8955f967
Binary files /dev/null and b/static/icons/060024AD.png differ
diff --git a/static/icons/060024AE.png b/static/icons/060024AE.png
new file mode 100755
index 00000000..7cf7ac94
Binary files /dev/null and b/static/icons/060024AE.png differ
diff --git a/static/icons/060024AF.png b/static/icons/060024AF.png
new file mode 100755
index 00000000..381d9c2b
Binary files /dev/null and b/static/icons/060024AF.png differ
diff --git a/static/icons/060024B0.png b/static/icons/060024B0.png
new file mode 100755
index 00000000..255ea5fc
Binary files /dev/null and b/static/icons/060024B0.png differ
diff --git a/static/icons/060024B1.png b/static/icons/060024B1.png
new file mode 100755
index 00000000..9c04461f
Binary files /dev/null and b/static/icons/060024B1.png differ
diff --git a/static/icons/060024B2.png b/static/icons/060024B2.png
new file mode 100755
index 00000000..ad0c3acf
Binary files /dev/null and b/static/icons/060024B2.png differ
diff --git a/static/icons/060024B3.png b/static/icons/060024B3.png
new file mode 100755
index 00000000..414ae740
Binary files /dev/null and b/static/icons/060024B3.png differ
diff --git a/static/icons/060024B4.png b/static/icons/060024B4.png
new file mode 100755
index 00000000..4258a852
Binary files /dev/null and b/static/icons/060024B4.png differ
diff --git a/static/icons/060024B5.png b/static/icons/060024B5.png
new file mode 100755
index 00000000..a3f0bada
Binary files /dev/null and b/static/icons/060024B5.png differ
diff --git a/static/icons/060024B6.png b/static/icons/060024B6.png
new file mode 100755
index 00000000..146da999
Binary files /dev/null and b/static/icons/060024B6.png differ
diff --git a/static/icons/060024B7.png b/static/icons/060024B7.png
new file mode 100755
index 00000000..107fb4eb
Binary files /dev/null and b/static/icons/060024B7.png differ
diff --git a/static/icons/060024B8.png b/static/icons/060024B8.png
new file mode 100755
index 00000000..69abd0eb
Binary files /dev/null and b/static/icons/060024B8.png differ
diff --git a/static/icons/060024BA.png b/static/icons/060024BA.png
new file mode 100755
index 00000000..0cca3419
Binary files /dev/null and b/static/icons/060024BA.png differ
diff --git a/static/icons/060024BB.png b/static/icons/060024BB.png
new file mode 100755
index 00000000..85c50fb3
Binary files /dev/null and b/static/icons/060024BB.png differ
diff --git a/static/icons/060024BC.png b/static/icons/060024BC.png
new file mode 100755
index 00000000..bb0cb715
Binary files /dev/null and b/static/icons/060024BC.png differ
diff --git a/static/icons/060024BD.png b/static/icons/060024BD.png
new file mode 100755
index 00000000..fde7fe71
Binary files /dev/null and b/static/icons/060024BD.png differ
diff --git a/static/icons/060024BE.png b/static/icons/060024BE.png
new file mode 100755
index 00000000..c7786b24
Binary files /dev/null and b/static/icons/060024BE.png differ
diff --git a/static/icons/060024BF.png b/static/icons/060024BF.png
new file mode 100755
index 00000000..72b3f8ed
Binary files /dev/null and b/static/icons/060024BF.png differ
diff --git a/static/icons/060024C0.png b/static/icons/060024C0.png
new file mode 100755
index 00000000..7b1d6d38
Binary files /dev/null and b/static/icons/060024C0.png differ
diff --git a/static/icons/060024C1.png b/static/icons/060024C1.png
new file mode 100755
index 00000000..66aa4e3b
Binary files /dev/null and b/static/icons/060024C1.png differ
diff --git a/static/icons/060024C2.png b/static/icons/060024C2.png
new file mode 100755
index 00000000..f37d4bf6
Binary files /dev/null and b/static/icons/060024C2.png differ
diff --git a/static/icons/060024C3.png b/static/icons/060024C3.png
new file mode 100755
index 00000000..6c41278b
Binary files /dev/null and b/static/icons/060024C3.png differ
diff --git a/static/icons/060024C4.png b/static/icons/060024C4.png
new file mode 100755
index 00000000..1f0aea84
Binary files /dev/null and b/static/icons/060024C4.png differ
diff --git a/static/icons/060024C5.png b/static/icons/060024C5.png
new file mode 100755
index 00000000..fc8fd459
Binary files /dev/null and b/static/icons/060024C5.png differ
diff --git a/static/icons/060024C6.png b/static/icons/060024C6.png
new file mode 100755
index 00000000..64dca540
Binary files /dev/null and b/static/icons/060024C6.png differ
diff --git a/static/icons/060024C7.png b/static/icons/060024C7.png
new file mode 100755
index 00000000..2a21a02e
Binary files /dev/null and b/static/icons/060024C7.png differ
diff --git a/static/icons/060024C8.png b/static/icons/060024C8.png
new file mode 100755
index 00000000..012a8480
Binary files /dev/null and b/static/icons/060024C8.png differ
diff --git a/static/icons/060024C9.png b/static/icons/060024C9.png
new file mode 100755
index 00000000..a7e56116
Binary files /dev/null and b/static/icons/060024C9.png differ
diff --git a/static/icons/060024CA.png b/static/icons/060024CA.png
new file mode 100755
index 00000000..bd8adecb
Binary files /dev/null and b/static/icons/060024CA.png differ
diff --git a/static/icons/060024CB.png b/static/icons/060024CB.png
new file mode 100755
index 00000000..54de38db
Binary files /dev/null and b/static/icons/060024CB.png differ
diff --git a/static/icons/060024CC.png b/static/icons/060024CC.png
new file mode 100755
index 00000000..377f86ae
Binary files /dev/null and b/static/icons/060024CC.png differ
diff --git a/static/icons/060024CD.png b/static/icons/060024CD.png
new file mode 100755
index 00000000..263433c2
Binary files /dev/null and b/static/icons/060024CD.png differ
diff --git a/static/icons/060024CE.png b/static/icons/060024CE.png
new file mode 100755
index 00000000..5c1ebe8b
Binary files /dev/null and b/static/icons/060024CE.png differ
diff --git a/static/icons/060024CF.png b/static/icons/060024CF.png
new file mode 100755
index 00000000..c40da729
Binary files /dev/null and b/static/icons/060024CF.png differ
diff --git a/static/icons/060024D0.png b/static/icons/060024D0.png
new file mode 100755
index 00000000..22edafc6
Binary files /dev/null and b/static/icons/060024D0.png differ
diff --git a/static/icons/060024D1.png b/static/icons/060024D1.png
new file mode 100755
index 00000000..18c3cc67
Binary files /dev/null and b/static/icons/060024D1.png differ
diff --git a/static/icons/060024D2.png b/static/icons/060024D2.png
new file mode 100755
index 00000000..595aa71b
Binary files /dev/null and b/static/icons/060024D2.png differ
diff --git a/static/icons/060024D3.png b/static/icons/060024D3.png
new file mode 100755
index 00000000..ea67bf0a
Binary files /dev/null and b/static/icons/060024D3.png differ
diff --git a/static/icons/060024D4.png b/static/icons/060024D4.png
new file mode 100755
index 00000000..ec92acbf
Binary files /dev/null and b/static/icons/060024D4.png differ
diff --git a/static/icons/060024D5.png b/static/icons/060024D5.png
new file mode 100755
index 00000000..f3110ca5
Binary files /dev/null and b/static/icons/060024D5.png differ
diff --git a/static/icons/060024D6.png b/static/icons/060024D6.png
new file mode 100755
index 00000000..303afd30
Binary files /dev/null and b/static/icons/060024D6.png differ
diff --git a/static/icons/060024D7.png b/static/icons/060024D7.png
new file mode 100755
index 00000000..4667f21d
Binary files /dev/null and b/static/icons/060024D7.png differ
diff --git a/static/icons/060024D8.png b/static/icons/060024D8.png
new file mode 100755
index 00000000..665cffe7
Binary files /dev/null and b/static/icons/060024D8.png differ
diff --git a/static/icons/060024D9.png b/static/icons/060024D9.png
new file mode 100755
index 00000000..0f64641b
Binary files /dev/null and b/static/icons/060024D9.png differ
diff --git a/static/icons/060024DA.png b/static/icons/060024DA.png
new file mode 100755
index 00000000..5ee8225d
Binary files /dev/null and b/static/icons/060024DA.png differ
diff --git a/static/icons/060024DB.png b/static/icons/060024DB.png
new file mode 100755
index 00000000..01286984
Binary files /dev/null and b/static/icons/060024DB.png differ
diff --git a/static/icons/060024DC.png b/static/icons/060024DC.png
new file mode 100755
index 00000000..01d0825d
Binary files /dev/null and b/static/icons/060024DC.png differ
diff --git a/static/icons/060024DD.png b/static/icons/060024DD.png
new file mode 100755
index 00000000..ee2bc5e4
Binary files /dev/null and b/static/icons/060024DD.png differ
diff --git a/static/icons/060024DE.png b/static/icons/060024DE.png
new file mode 100755
index 00000000..39c6a456
Binary files /dev/null and b/static/icons/060024DE.png differ
diff --git a/static/icons/060024DF.png b/static/icons/060024DF.png
new file mode 100755
index 00000000..594466d6
Binary files /dev/null and b/static/icons/060024DF.png differ
diff --git a/static/icons/060024E0.png b/static/icons/060024E0.png
new file mode 100755
index 00000000..961b4371
Binary files /dev/null and b/static/icons/060024E0.png differ
diff --git a/static/icons/060024E1.png b/static/icons/060024E1.png
new file mode 100755
index 00000000..25ae8807
Binary files /dev/null and b/static/icons/060024E1.png differ
diff --git a/static/icons/060024E2.png b/static/icons/060024E2.png
new file mode 100755
index 00000000..36cc8e6d
Binary files /dev/null and b/static/icons/060024E2.png differ
diff --git a/static/icons/060024E7.png b/static/icons/060024E7.png
new file mode 100755
index 00000000..c0fed513
Binary files /dev/null and b/static/icons/060024E7.png differ
diff --git a/static/icons/060024E8.png b/static/icons/060024E8.png
new file mode 100755
index 00000000..7c9b7964
Binary files /dev/null and b/static/icons/060024E8.png differ
diff --git a/static/icons/060024E9.png b/static/icons/060024E9.png
new file mode 100755
index 00000000..3427b6f7
Binary files /dev/null and b/static/icons/060024E9.png differ
diff --git a/static/icons/060024EA.png b/static/icons/060024EA.png
new file mode 100755
index 00000000..82567b15
Binary files /dev/null and b/static/icons/060024EA.png differ
diff --git a/static/icons/060024EB.png b/static/icons/060024EB.png
new file mode 100755
index 00000000..2d9de711
Binary files /dev/null and b/static/icons/060024EB.png differ
diff --git a/static/icons/060024EC.png b/static/icons/060024EC.png
new file mode 100755
index 00000000..b2a3c2df
Binary files /dev/null and b/static/icons/060024EC.png differ
diff --git a/static/icons/060024ED.png b/static/icons/060024ED.png
new file mode 100755
index 00000000..71da2455
Binary files /dev/null and b/static/icons/060024ED.png differ
diff --git a/static/icons/060024EE.png b/static/icons/060024EE.png
new file mode 100755
index 00000000..933799d1
Binary files /dev/null and b/static/icons/060024EE.png differ
diff --git a/static/icons/060024EF.png b/static/icons/060024EF.png
new file mode 100755
index 00000000..49342817
Binary files /dev/null and b/static/icons/060024EF.png differ
diff --git a/static/icons/060024F0.png b/static/icons/060024F0.png
new file mode 100755
index 00000000..e8171d19
Binary files /dev/null and b/static/icons/060024F0.png differ
diff --git a/static/icons/060024F1.png b/static/icons/060024F1.png
new file mode 100755
index 00000000..dad94760
Binary files /dev/null and b/static/icons/060024F1.png differ
diff --git a/static/icons/060024F2.png b/static/icons/060024F2.png
new file mode 100755
index 00000000..fd0d1b24
Binary files /dev/null and b/static/icons/060024F2.png differ
diff --git a/static/icons/060024F3.png b/static/icons/060024F3.png
new file mode 100755
index 00000000..601dfbf9
Binary files /dev/null and b/static/icons/060024F3.png differ
diff --git a/static/icons/060024F4.png b/static/icons/060024F4.png
new file mode 100755
index 00000000..02979b9b
Binary files /dev/null and b/static/icons/060024F4.png differ
diff --git a/static/icons/060024F5.png b/static/icons/060024F5.png
new file mode 100755
index 00000000..46c9959b
Binary files /dev/null and b/static/icons/060024F5.png differ
diff --git a/static/icons/060024F6.png b/static/icons/060024F6.png
new file mode 100755
index 00000000..3f7a3cae
Binary files /dev/null and b/static/icons/060024F6.png differ
diff --git a/static/icons/060024F7.png b/static/icons/060024F7.png
new file mode 100755
index 00000000..ae010a04
Binary files /dev/null and b/static/icons/060024F7.png differ
diff --git a/static/icons/060024F8.png b/static/icons/060024F8.png
new file mode 100755
index 00000000..c8667023
Binary files /dev/null and b/static/icons/060024F8.png differ
diff --git a/static/icons/060024F9.png b/static/icons/060024F9.png
new file mode 100755
index 00000000..b312647e
Binary files /dev/null and b/static/icons/060024F9.png differ
diff --git a/static/icons/060024FA.png b/static/icons/060024FA.png
new file mode 100755
index 00000000..1ee703da
Binary files /dev/null and b/static/icons/060024FA.png differ
diff --git a/static/icons/060024FD.png b/static/icons/060024FD.png
new file mode 100755
index 00000000..da5621b2
Binary files /dev/null and b/static/icons/060024FD.png differ
diff --git a/static/icons/060024FE.png b/static/icons/060024FE.png
new file mode 100755
index 00000000..46e8e544
Binary files /dev/null and b/static/icons/060024FE.png differ
diff --git a/static/icons/060024FF.png b/static/icons/060024FF.png
new file mode 100755
index 00000000..4b3ff169
Binary files /dev/null and b/static/icons/060024FF.png differ
diff --git a/static/icons/06002500.png b/static/icons/06002500.png
new file mode 100755
index 00000000..81b674c3
Binary files /dev/null and b/static/icons/06002500.png differ
diff --git a/static/icons/06002501.png b/static/icons/06002501.png
new file mode 100755
index 00000000..05523b9e
Binary files /dev/null and b/static/icons/06002501.png differ
diff --git a/static/icons/06002502.png b/static/icons/06002502.png
new file mode 100755
index 00000000..4cb65e37
Binary files /dev/null and b/static/icons/06002502.png differ
diff --git a/static/icons/06002503.png b/static/icons/06002503.png
new file mode 100755
index 00000000..b9598be1
Binary files /dev/null and b/static/icons/06002503.png differ
diff --git a/static/icons/06002504.png b/static/icons/06002504.png
new file mode 100755
index 00000000..82fc609e
Binary files /dev/null and b/static/icons/06002504.png differ
diff --git a/static/icons/06002505.png b/static/icons/06002505.png
new file mode 100755
index 00000000..5d10ecc1
Binary files /dev/null and b/static/icons/06002505.png differ
diff --git a/static/icons/06002506.png b/static/icons/06002506.png
new file mode 100755
index 00000000..d0084d97
Binary files /dev/null and b/static/icons/06002506.png differ
diff --git a/static/icons/06002507.png b/static/icons/06002507.png
new file mode 100755
index 00000000..51e44f85
Binary files /dev/null and b/static/icons/06002507.png differ
diff --git a/static/icons/06002508.png b/static/icons/06002508.png
new file mode 100755
index 00000000..d7195f90
Binary files /dev/null and b/static/icons/06002508.png differ
diff --git a/static/icons/06002509.png b/static/icons/06002509.png
new file mode 100755
index 00000000..9c46a53a
Binary files /dev/null and b/static/icons/06002509.png differ
diff --git a/static/icons/0600250A.png b/static/icons/0600250A.png
new file mode 100755
index 00000000..6a73aee2
Binary files /dev/null and b/static/icons/0600250A.png differ
diff --git a/static/icons/0600250B.png b/static/icons/0600250B.png
new file mode 100755
index 00000000..35ffa3c2
Binary files /dev/null and b/static/icons/0600250B.png differ
diff --git a/static/icons/0600250C.png b/static/icons/0600250C.png
new file mode 100755
index 00000000..83c4b336
Binary files /dev/null and b/static/icons/0600250C.png differ
diff --git a/static/icons/0600250D.png b/static/icons/0600250D.png
new file mode 100755
index 00000000..aad7999f
Binary files /dev/null and b/static/icons/0600250D.png differ
diff --git a/static/icons/0600250E.png b/static/icons/0600250E.png
new file mode 100755
index 00000000..419900a9
Binary files /dev/null and b/static/icons/0600250E.png differ
diff --git a/static/icons/0600250F.png b/static/icons/0600250F.png
new file mode 100755
index 00000000..5894d7bc
Binary files /dev/null and b/static/icons/0600250F.png differ
diff --git a/static/icons/06002510.png b/static/icons/06002510.png
new file mode 100755
index 00000000..4c197b25
Binary files /dev/null and b/static/icons/06002510.png differ
diff --git a/static/icons/06002511.png b/static/icons/06002511.png
new file mode 100755
index 00000000..b6d892fe
Binary files /dev/null and b/static/icons/06002511.png differ
diff --git a/static/icons/06002512.png b/static/icons/06002512.png
new file mode 100755
index 00000000..a2ee810a
Binary files /dev/null and b/static/icons/06002512.png differ
diff --git a/static/icons/06002513.png b/static/icons/06002513.png
new file mode 100755
index 00000000..34936b18
Binary files /dev/null and b/static/icons/06002513.png differ
diff --git a/static/icons/06002514.png b/static/icons/06002514.png
new file mode 100755
index 00000000..d60ee2b4
Binary files /dev/null and b/static/icons/06002514.png differ
diff --git a/static/icons/06002515.png b/static/icons/06002515.png
new file mode 100755
index 00000000..7e8bb059
Binary files /dev/null and b/static/icons/06002515.png differ
diff --git a/static/icons/06002516.png b/static/icons/06002516.png
new file mode 100755
index 00000000..fcac1728
Binary files /dev/null and b/static/icons/06002516.png differ
diff --git a/static/icons/06002517.png b/static/icons/06002517.png
new file mode 100755
index 00000000..a0911659
Binary files /dev/null and b/static/icons/06002517.png differ
diff --git a/static/icons/06002518.png b/static/icons/06002518.png
new file mode 100755
index 00000000..087e2a15
Binary files /dev/null and b/static/icons/06002518.png differ
diff --git a/static/icons/06002519.png b/static/icons/06002519.png
new file mode 100755
index 00000000..34cc44fe
Binary files /dev/null and b/static/icons/06002519.png differ
diff --git a/static/icons/0600251A.png b/static/icons/0600251A.png
new file mode 100755
index 00000000..66059adb
Binary files /dev/null and b/static/icons/0600251A.png differ
diff --git a/static/icons/0600251B.png b/static/icons/0600251B.png
new file mode 100755
index 00000000..ac843466
Binary files /dev/null and b/static/icons/0600251B.png differ
diff --git a/static/icons/0600251C.png b/static/icons/0600251C.png
new file mode 100755
index 00000000..a7b821e5
Binary files /dev/null and b/static/icons/0600251C.png differ
diff --git a/static/icons/0600251D.png b/static/icons/0600251D.png
new file mode 100755
index 00000000..bce3f43b
Binary files /dev/null and b/static/icons/0600251D.png differ
diff --git a/static/icons/0600251E.png b/static/icons/0600251E.png
new file mode 100755
index 00000000..3feb6f86
Binary files /dev/null and b/static/icons/0600251E.png differ
diff --git a/static/icons/0600251F.png b/static/icons/0600251F.png
new file mode 100755
index 00000000..9b682ec0
Binary files /dev/null and b/static/icons/0600251F.png differ
diff --git a/static/icons/06002520.png b/static/icons/06002520.png
new file mode 100755
index 00000000..cf3f324a
Binary files /dev/null and b/static/icons/06002520.png differ
diff --git a/static/icons/06002521.png b/static/icons/06002521.png
new file mode 100755
index 00000000..5bf9ea3d
Binary files /dev/null and b/static/icons/06002521.png differ
diff --git a/static/icons/06002522.png b/static/icons/06002522.png
new file mode 100755
index 00000000..ccc30596
Binary files /dev/null and b/static/icons/06002522.png differ
diff --git a/static/icons/06002523.png b/static/icons/06002523.png
new file mode 100755
index 00000000..74341e99
Binary files /dev/null and b/static/icons/06002523.png differ
diff --git a/static/icons/06002524.png b/static/icons/06002524.png
new file mode 100755
index 00000000..0c0c822f
Binary files /dev/null and b/static/icons/06002524.png differ
diff --git a/static/icons/06002525.png b/static/icons/06002525.png
new file mode 100755
index 00000000..da4362d8
Binary files /dev/null and b/static/icons/06002525.png differ
diff --git a/static/icons/06002526.png b/static/icons/06002526.png
new file mode 100755
index 00000000..0d29dba2
Binary files /dev/null and b/static/icons/06002526.png differ
diff --git a/static/icons/06002527.png b/static/icons/06002527.png
new file mode 100755
index 00000000..85b794d3
Binary files /dev/null and b/static/icons/06002527.png differ
diff --git a/static/icons/06002528.png b/static/icons/06002528.png
new file mode 100755
index 00000000..5caa40af
Binary files /dev/null and b/static/icons/06002528.png differ
diff --git a/static/icons/06002529.png b/static/icons/06002529.png
new file mode 100755
index 00000000..d65e7885
Binary files /dev/null and b/static/icons/06002529.png differ
diff --git a/static/icons/0600252A.png b/static/icons/0600252A.png
new file mode 100755
index 00000000..89d59b00
Binary files /dev/null and b/static/icons/0600252A.png differ
diff --git a/static/icons/0600252B.png b/static/icons/0600252B.png
new file mode 100755
index 00000000..d0cd6be4
Binary files /dev/null and b/static/icons/0600252B.png differ
diff --git a/static/icons/0600252C.png b/static/icons/0600252C.png
new file mode 100755
index 00000000..eb771af4
Binary files /dev/null and b/static/icons/0600252C.png differ
diff --git a/static/icons/0600252D.png b/static/icons/0600252D.png
new file mode 100755
index 00000000..dcae88fa
Binary files /dev/null and b/static/icons/0600252D.png differ
diff --git a/static/icons/0600252E.png b/static/icons/0600252E.png
new file mode 100755
index 00000000..3752267d
Binary files /dev/null and b/static/icons/0600252E.png differ
diff --git a/static/icons/0600252F.png b/static/icons/0600252F.png
new file mode 100755
index 00000000..a6470cb0
Binary files /dev/null and b/static/icons/0600252F.png differ
diff --git a/static/icons/06002530.png b/static/icons/06002530.png
new file mode 100755
index 00000000..c5cabdfa
Binary files /dev/null and b/static/icons/06002530.png differ
diff --git a/static/icons/06002531.png b/static/icons/06002531.png
new file mode 100755
index 00000000..a4f303f9
Binary files /dev/null and b/static/icons/06002531.png differ
diff --git a/static/icons/06002532.png b/static/icons/06002532.png
new file mode 100755
index 00000000..7836199c
Binary files /dev/null and b/static/icons/06002532.png differ
diff --git a/static/icons/06002533.png b/static/icons/06002533.png
new file mode 100755
index 00000000..b5a667a9
Binary files /dev/null and b/static/icons/06002533.png differ
diff --git a/static/icons/06002534.png b/static/icons/06002534.png
new file mode 100755
index 00000000..4c928a08
Binary files /dev/null and b/static/icons/06002534.png differ
diff --git a/static/icons/06002535.png b/static/icons/06002535.png
new file mode 100755
index 00000000..844fca14
Binary files /dev/null and b/static/icons/06002535.png differ
diff --git a/static/icons/06002536.png b/static/icons/06002536.png
new file mode 100755
index 00000000..55b898c6
Binary files /dev/null and b/static/icons/06002536.png differ
diff --git a/static/icons/06002537.png b/static/icons/06002537.png
new file mode 100755
index 00000000..81d24071
Binary files /dev/null and b/static/icons/06002537.png differ
diff --git a/static/icons/06002538.png b/static/icons/06002538.png
new file mode 100755
index 00000000..359a3505
Binary files /dev/null and b/static/icons/06002538.png differ
diff --git a/static/icons/06002539.png b/static/icons/06002539.png
new file mode 100755
index 00000000..955a6268
Binary files /dev/null and b/static/icons/06002539.png differ
diff --git a/static/icons/0600253A.png b/static/icons/0600253A.png
new file mode 100755
index 00000000..6bd1b779
Binary files /dev/null and b/static/icons/0600253A.png differ
diff --git a/static/icons/0600253B.png b/static/icons/0600253B.png
new file mode 100755
index 00000000..4013cc1d
Binary files /dev/null and b/static/icons/0600253B.png differ
diff --git a/static/icons/0600253C.png b/static/icons/0600253C.png
new file mode 100755
index 00000000..7a998cc3
Binary files /dev/null and b/static/icons/0600253C.png differ
diff --git a/static/icons/0600253D.png b/static/icons/0600253D.png
new file mode 100755
index 00000000..195e7fee
Binary files /dev/null and b/static/icons/0600253D.png differ
diff --git a/static/icons/0600253E.png b/static/icons/0600253E.png
new file mode 100755
index 00000000..eee5a423
Binary files /dev/null and b/static/icons/0600253E.png differ
diff --git a/static/icons/0600253F.png b/static/icons/0600253F.png
new file mode 100755
index 00000000..69aedffe
Binary files /dev/null and b/static/icons/0600253F.png differ
diff --git a/static/icons/06002540.png b/static/icons/06002540.png
new file mode 100755
index 00000000..21cf2b4a
Binary files /dev/null and b/static/icons/06002540.png differ
diff --git a/static/icons/06002541.png b/static/icons/06002541.png
new file mode 100755
index 00000000..2d5698b3
Binary files /dev/null and b/static/icons/06002541.png differ
diff --git a/static/icons/06002542.png b/static/icons/06002542.png
new file mode 100755
index 00000000..20abc42b
Binary files /dev/null and b/static/icons/06002542.png differ
diff --git a/static/icons/06002543.png b/static/icons/06002543.png
new file mode 100755
index 00000000..4774427e
Binary files /dev/null and b/static/icons/06002543.png differ
diff --git a/static/icons/06002544.png b/static/icons/06002544.png
new file mode 100755
index 00000000..295d3295
Binary files /dev/null and b/static/icons/06002544.png differ
diff --git a/static/icons/06002545.png b/static/icons/06002545.png
new file mode 100755
index 00000000..75807ded
Binary files /dev/null and b/static/icons/06002545.png differ
diff --git a/static/icons/06002546.png b/static/icons/06002546.png
new file mode 100755
index 00000000..84646a32
Binary files /dev/null and b/static/icons/06002546.png differ
diff --git a/static/icons/06002547.png b/static/icons/06002547.png
new file mode 100755
index 00000000..7711d2f8
Binary files /dev/null and b/static/icons/06002547.png differ
diff --git a/static/icons/06002548.png b/static/icons/06002548.png
new file mode 100755
index 00000000..95bedbaf
Binary files /dev/null and b/static/icons/06002548.png differ
diff --git a/static/icons/06002549.png b/static/icons/06002549.png
new file mode 100755
index 00000000..1ddc3c12
Binary files /dev/null and b/static/icons/06002549.png differ
diff --git a/static/icons/0600254A.png b/static/icons/0600254A.png
new file mode 100755
index 00000000..56b4a0e3
Binary files /dev/null and b/static/icons/0600254A.png differ
diff --git a/static/icons/0600254B.png b/static/icons/0600254B.png
new file mode 100755
index 00000000..153f710d
Binary files /dev/null and b/static/icons/0600254B.png differ
diff --git a/static/icons/0600254C.png b/static/icons/0600254C.png
new file mode 100755
index 00000000..bcc12686
Binary files /dev/null and b/static/icons/0600254C.png differ
diff --git a/static/icons/0600254D.png b/static/icons/0600254D.png
new file mode 100755
index 00000000..c65a05e9
Binary files /dev/null and b/static/icons/0600254D.png differ
diff --git a/static/icons/0600254E.png b/static/icons/0600254E.png
new file mode 100755
index 00000000..28df297b
Binary files /dev/null and b/static/icons/0600254E.png differ
diff --git a/static/icons/0600254F.png b/static/icons/0600254F.png
new file mode 100755
index 00000000..479486ab
Binary files /dev/null and b/static/icons/0600254F.png differ
diff --git a/static/icons/06002550.png b/static/icons/06002550.png
new file mode 100755
index 00000000..ac9e610b
Binary files /dev/null and b/static/icons/06002550.png differ
diff --git a/static/icons/06002551.png b/static/icons/06002551.png
new file mode 100755
index 00000000..65fd5e4b
Binary files /dev/null and b/static/icons/06002551.png differ
diff --git a/static/icons/06002552.png b/static/icons/06002552.png
new file mode 100755
index 00000000..8eba05dd
Binary files /dev/null and b/static/icons/06002552.png differ
diff --git a/static/icons/06002553.png b/static/icons/06002553.png
new file mode 100755
index 00000000..9fd3c06c
Binary files /dev/null and b/static/icons/06002553.png differ
diff --git a/static/icons/06002554.png b/static/icons/06002554.png
new file mode 100755
index 00000000..0f7659d8
Binary files /dev/null and b/static/icons/06002554.png differ
diff --git a/static/icons/06002555.png b/static/icons/06002555.png
new file mode 100755
index 00000000..af38aaec
Binary files /dev/null and b/static/icons/06002555.png differ
diff --git a/static/icons/06002556.png b/static/icons/06002556.png
new file mode 100755
index 00000000..0b78c6b6
Binary files /dev/null and b/static/icons/06002556.png differ
diff --git a/static/icons/06002557.png b/static/icons/06002557.png
new file mode 100755
index 00000000..ae915b31
Binary files /dev/null and b/static/icons/06002557.png differ
diff --git a/static/icons/06002558.png b/static/icons/06002558.png
new file mode 100755
index 00000000..a9243ad9
Binary files /dev/null and b/static/icons/06002558.png differ
diff --git a/static/icons/06002559.png b/static/icons/06002559.png
new file mode 100755
index 00000000..bb5b527f
Binary files /dev/null and b/static/icons/06002559.png differ
diff --git a/static/icons/0600255A.png b/static/icons/0600255A.png
new file mode 100755
index 00000000..cbc04210
Binary files /dev/null and b/static/icons/0600255A.png differ
diff --git a/static/icons/0600255B.png b/static/icons/0600255B.png
new file mode 100755
index 00000000..9e5b2228
Binary files /dev/null and b/static/icons/0600255B.png differ
diff --git a/static/icons/0600255C.png b/static/icons/0600255C.png
new file mode 100755
index 00000000..460b0ddf
Binary files /dev/null and b/static/icons/0600255C.png differ
diff --git a/static/icons/0600255D.png b/static/icons/0600255D.png
new file mode 100755
index 00000000..e4349b05
Binary files /dev/null and b/static/icons/0600255D.png differ
diff --git a/static/icons/0600255E.png b/static/icons/0600255E.png
new file mode 100755
index 00000000..3312c274
Binary files /dev/null and b/static/icons/0600255E.png differ
diff --git a/static/icons/0600255F.png b/static/icons/0600255F.png
new file mode 100755
index 00000000..bd388cec
Binary files /dev/null and b/static/icons/0600255F.png differ
diff --git a/static/icons/06002560.png b/static/icons/06002560.png
new file mode 100755
index 00000000..68916752
Binary files /dev/null and b/static/icons/06002560.png differ
diff --git a/static/icons/06002561.png b/static/icons/06002561.png
new file mode 100755
index 00000000..3d83b63d
Binary files /dev/null and b/static/icons/06002561.png differ
diff --git a/static/icons/06002562.png b/static/icons/06002562.png
new file mode 100755
index 00000000..ac15b501
Binary files /dev/null and b/static/icons/06002562.png differ
diff --git a/static/icons/06002563.png b/static/icons/06002563.png
new file mode 100755
index 00000000..aff985b1
Binary files /dev/null and b/static/icons/06002563.png differ
diff --git a/static/icons/06002564.png b/static/icons/06002564.png
new file mode 100755
index 00000000..99014059
Binary files /dev/null and b/static/icons/06002564.png differ
diff --git a/static/icons/06002565.png b/static/icons/06002565.png
new file mode 100755
index 00000000..ad585ff0
Binary files /dev/null and b/static/icons/06002565.png differ
diff --git a/static/icons/06002566.png b/static/icons/06002566.png
new file mode 100755
index 00000000..c0c889eb
Binary files /dev/null and b/static/icons/06002566.png differ
diff --git a/static/icons/06002567.png b/static/icons/06002567.png
new file mode 100755
index 00000000..38b17be2
Binary files /dev/null and b/static/icons/06002567.png differ
diff --git a/static/icons/06002568.png b/static/icons/06002568.png
new file mode 100755
index 00000000..1bee6faa
Binary files /dev/null and b/static/icons/06002568.png differ
diff --git a/static/icons/06002569.png b/static/icons/06002569.png
new file mode 100755
index 00000000..1171f7aa
Binary files /dev/null and b/static/icons/06002569.png differ
diff --git a/static/icons/0600256A.png b/static/icons/0600256A.png
new file mode 100755
index 00000000..cb64511f
Binary files /dev/null and b/static/icons/0600256A.png differ
diff --git a/static/icons/0600256B.png b/static/icons/0600256B.png
new file mode 100755
index 00000000..48c3184b
Binary files /dev/null and b/static/icons/0600256B.png differ
diff --git a/static/icons/0600256C.png b/static/icons/0600256C.png
new file mode 100755
index 00000000..bc03b391
Binary files /dev/null and b/static/icons/0600256C.png differ
diff --git a/static/icons/0600256D.png b/static/icons/0600256D.png
new file mode 100755
index 00000000..ac73cd32
Binary files /dev/null and b/static/icons/0600256D.png differ
diff --git a/static/icons/0600256E.png b/static/icons/0600256E.png
new file mode 100755
index 00000000..48e40cec
Binary files /dev/null and b/static/icons/0600256E.png differ
diff --git a/static/icons/0600256F.png b/static/icons/0600256F.png
new file mode 100755
index 00000000..74b791f2
Binary files /dev/null and b/static/icons/0600256F.png differ
diff --git a/static/icons/06002570.png b/static/icons/06002570.png
new file mode 100755
index 00000000..aaa6a1ad
Binary files /dev/null and b/static/icons/06002570.png differ
diff --git a/static/icons/06002571.png b/static/icons/06002571.png
new file mode 100755
index 00000000..f35b3cb5
Binary files /dev/null and b/static/icons/06002571.png differ
diff --git a/static/icons/06002572.png b/static/icons/06002572.png
new file mode 100755
index 00000000..b610f20c
Binary files /dev/null and b/static/icons/06002572.png differ
diff --git a/static/icons/06002573.png b/static/icons/06002573.png
new file mode 100755
index 00000000..1741761c
Binary files /dev/null and b/static/icons/06002573.png differ
diff --git a/static/icons/06002574.png b/static/icons/06002574.png
new file mode 100755
index 00000000..ee91275f
Binary files /dev/null and b/static/icons/06002574.png differ
diff --git a/static/icons/06002575.png b/static/icons/06002575.png
new file mode 100755
index 00000000..aacf6c1f
Binary files /dev/null and b/static/icons/06002575.png differ
diff --git a/static/icons/06002577.png b/static/icons/06002577.png
new file mode 100755
index 00000000..ebe963db
Binary files /dev/null and b/static/icons/06002577.png differ
diff --git a/static/icons/0600257A.png b/static/icons/0600257A.png
new file mode 100755
index 00000000..e9b7f8d0
Binary files /dev/null and b/static/icons/0600257A.png differ
diff --git a/static/icons/0600257B.png b/static/icons/0600257B.png
new file mode 100755
index 00000000..47b919ca
Binary files /dev/null and b/static/icons/0600257B.png differ
diff --git a/static/icons/06002588.png b/static/icons/06002588.png
new file mode 100755
index 00000000..4ba6b68c
Binary files /dev/null and b/static/icons/06002588.png differ
diff --git a/static/icons/06002589.png b/static/icons/06002589.png
new file mode 100755
index 00000000..9bfcd538
Binary files /dev/null and b/static/icons/06002589.png differ
diff --git a/static/icons/0600258B.png b/static/icons/0600258B.png
new file mode 100755
index 00000000..e7531aa6
Binary files /dev/null and b/static/icons/0600258B.png differ
diff --git a/static/icons/0600258E.png b/static/icons/0600258E.png
new file mode 100755
index 00000000..80bd2244
Binary files /dev/null and b/static/icons/0600258E.png differ
diff --git a/static/icons/0600258F.png b/static/icons/0600258F.png
new file mode 100755
index 00000000..d72973fd
Binary files /dev/null and b/static/icons/0600258F.png differ
diff --git a/static/icons/06002592.png b/static/icons/06002592.png
new file mode 100755
index 00000000..d55205ed
Binary files /dev/null and b/static/icons/06002592.png differ
diff --git a/static/icons/06002593.png b/static/icons/06002593.png
new file mode 100755
index 00000000..c1308b3b
Binary files /dev/null and b/static/icons/06002593.png differ
diff --git a/static/icons/06002595.png b/static/icons/06002595.png
new file mode 100755
index 00000000..fecabc1c
Binary files /dev/null and b/static/icons/06002595.png differ
diff --git a/static/icons/06002598.png b/static/icons/06002598.png
new file mode 100755
index 00000000..9600058e
Binary files /dev/null and b/static/icons/06002598.png differ
diff --git a/static/icons/06002599.png b/static/icons/06002599.png
new file mode 100755
index 00000000..4bd993ca
Binary files /dev/null and b/static/icons/06002599.png differ
diff --git a/static/icons/0600259C.png b/static/icons/0600259C.png
new file mode 100755
index 00000000..9d72c246
Binary files /dev/null and b/static/icons/0600259C.png differ
diff --git a/static/icons/0600259D.png b/static/icons/0600259D.png
new file mode 100755
index 00000000..f9af9d16
Binary files /dev/null and b/static/icons/0600259D.png differ
diff --git a/static/icons/0600259F.png b/static/icons/0600259F.png
new file mode 100755
index 00000000..39616dbe
Binary files /dev/null and b/static/icons/0600259F.png differ
diff --git a/static/icons/060025A2.png b/static/icons/060025A2.png
new file mode 100755
index 00000000..febe23ff
Binary files /dev/null and b/static/icons/060025A2.png differ
diff --git a/static/icons/060025A3.png b/static/icons/060025A3.png
new file mode 100755
index 00000000..5cb8ecea
Binary files /dev/null and b/static/icons/060025A3.png differ
diff --git a/static/icons/060025A6.png b/static/icons/060025A6.png
new file mode 100755
index 00000000..5263c94b
Binary files /dev/null and b/static/icons/060025A6.png differ
diff --git a/static/icons/060025A7.png b/static/icons/060025A7.png
new file mode 100755
index 00000000..09ed20bb
Binary files /dev/null and b/static/icons/060025A7.png differ
diff --git a/static/icons/060025A9.png b/static/icons/060025A9.png
new file mode 100755
index 00000000..db47ec02
Binary files /dev/null and b/static/icons/060025A9.png differ
diff --git a/static/icons/060025AC.png b/static/icons/060025AC.png
new file mode 100755
index 00000000..a01fd3aa
Binary files /dev/null and b/static/icons/060025AC.png differ
diff --git a/static/icons/060025AD.png b/static/icons/060025AD.png
new file mode 100755
index 00000000..3b7a8569
Binary files /dev/null and b/static/icons/060025AD.png differ
diff --git a/static/icons/060025B0.png b/static/icons/060025B0.png
new file mode 100755
index 00000000..686db9aa
Binary files /dev/null and b/static/icons/060025B0.png differ
diff --git a/static/icons/060025B1.png b/static/icons/060025B1.png
new file mode 100755
index 00000000..afcdac88
Binary files /dev/null and b/static/icons/060025B1.png differ
diff --git a/static/icons/060025B3.png b/static/icons/060025B3.png
new file mode 100755
index 00000000..ee1765c9
Binary files /dev/null and b/static/icons/060025B3.png differ
diff --git a/static/icons/060025B6.png b/static/icons/060025B6.png
new file mode 100755
index 00000000..56efc1fd
Binary files /dev/null and b/static/icons/060025B6.png differ
diff --git a/static/icons/060025B7.png b/static/icons/060025B7.png
new file mode 100755
index 00000000..891f93b8
Binary files /dev/null and b/static/icons/060025B7.png differ
diff --git a/static/icons/060025B9.png b/static/icons/060025B9.png
new file mode 100755
index 00000000..9cd7e481
Binary files /dev/null and b/static/icons/060025B9.png differ
diff --git a/static/icons/060025BA.png b/static/icons/060025BA.png
new file mode 100755
index 00000000..9957f3bd
Binary files /dev/null and b/static/icons/060025BA.png differ
diff --git a/static/icons/060025BB.png b/static/icons/060025BB.png
new file mode 100755
index 00000000..74ca7052
Binary files /dev/null and b/static/icons/060025BB.png differ
diff --git a/static/icons/060025BC.png b/static/icons/060025BC.png
new file mode 100755
index 00000000..ef922da5
Binary files /dev/null and b/static/icons/060025BC.png differ
diff --git a/static/icons/060025BD.png b/static/icons/060025BD.png
new file mode 100755
index 00000000..606543c7
Binary files /dev/null and b/static/icons/060025BD.png differ
diff --git a/static/icons/060025BE.png b/static/icons/060025BE.png
new file mode 100755
index 00000000..8b0119c2
Binary files /dev/null and b/static/icons/060025BE.png differ
diff --git a/static/icons/060025BF.png b/static/icons/060025BF.png
new file mode 100755
index 00000000..82cf11e6
Binary files /dev/null and b/static/icons/060025BF.png differ
diff --git a/static/icons/060025C0.png b/static/icons/060025C0.png
new file mode 100755
index 00000000..866c32c5
Binary files /dev/null and b/static/icons/060025C0.png differ
diff --git a/static/icons/060025C1.png b/static/icons/060025C1.png
new file mode 100755
index 00000000..301579ef
Binary files /dev/null and b/static/icons/060025C1.png differ
diff --git a/static/icons/060025C2.png b/static/icons/060025C2.png
new file mode 100755
index 00000000..4d248124
Binary files /dev/null and b/static/icons/060025C2.png differ
diff --git a/static/icons/060025C3.png b/static/icons/060025C3.png
new file mode 100755
index 00000000..5f86c4a0
Binary files /dev/null and b/static/icons/060025C3.png differ
diff --git a/static/icons/060025C4.png b/static/icons/060025C4.png
new file mode 100755
index 00000000..5059a69e
Binary files /dev/null and b/static/icons/060025C4.png differ
diff --git a/static/icons/060025C5.png b/static/icons/060025C5.png
new file mode 100755
index 00000000..5b8c251a
Binary files /dev/null and b/static/icons/060025C5.png differ
diff --git a/static/icons/060025C6.png b/static/icons/060025C6.png
new file mode 100755
index 00000000..7194770a
Binary files /dev/null and b/static/icons/060025C6.png differ
diff --git a/static/icons/060025C7.png b/static/icons/060025C7.png
new file mode 100755
index 00000000..20515965
Binary files /dev/null and b/static/icons/060025C7.png differ
diff --git a/static/icons/060025C8.png b/static/icons/060025C8.png
new file mode 100755
index 00000000..5bd76f66
Binary files /dev/null and b/static/icons/060025C8.png differ
diff --git a/static/icons/060025C9.png b/static/icons/060025C9.png
new file mode 100755
index 00000000..dab55a98
Binary files /dev/null and b/static/icons/060025C9.png differ
diff --git a/static/icons/060025CA.png b/static/icons/060025CA.png
new file mode 100755
index 00000000..af803370
Binary files /dev/null and b/static/icons/060025CA.png differ
diff --git a/static/icons/060025CB.png b/static/icons/060025CB.png
new file mode 100755
index 00000000..bca5ec00
Binary files /dev/null and b/static/icons/060025CB.png differ
diff --git a/static/icons/060025CC.png b/static/icons/060025CC.png
new file mode 100755
index 00000000..43a91cfc
Binary files /dev/null and b/static/icons/060025CC.png differ
diff --git a/static/icons/060025CD.png b/static/icons/060025CD.png
new file mode 100755
index 00000000..803882d1
Binary files /dev/null and b/static/icons/060025CD.png differ
diff --git a/static/icons/060025CE.png b/static/icons/060025CE.png
new file mode 100755
index 00000000..dd13d1eb
Binary files /dev/null and b/static/icons/060025CE.png differ
diff --git a/static/icons/060025D0.png b/static/icons/060025D0.png
new file mode 100755
index 00000000..7ba5e902
Binary files /dev/null and b/static/icons/060025D0.png differ
diff --git a/static/icons/060025D1.png b/static/icons/060025D1.png
new file mode 100755
index 00000000..b2113445
Binary files /dev/null and b/static/icons/060025D1.png differ
diff --git a/static/icons/060025D2.png b/static/icons/060025D2.png
new file mode 100755
index 00000000..f508673c
Binary files /dev/null and b/static/icons/060025D2.png differ
diff --git a/static/icons/060025D3.png b/static/icons/060025D3.png
new file mode 100755
index 00000000..0085f1e5
Binary files /dev/null and b/static/icons/060025D3.png differ
diff --git a/static/icons/060025D4.png b/static/icons/060025D4.png
new file mode 100755
index 00000000..f69457ad
Binary files /dev/null and b/static/icons/060025D4.png differ
diff --git a/static/icons/060025D5.png b/static/icons/060025D5.png
new file mode 100755
index 00000000..76e2819c
Binary files /dev/null and b/static/icons/060025D5.png differ
diff --git a/static/icons/060025D6.png b/static/icons/060025D6.png
new file mode 100755
index 00000000..bbe2220d
Binary files /dev/null and b/static/icons/060025D6.png differ
diff --git a/static/icons/060025D7.png b/static/icons/060025D7.png
new file mode 100755
index 00000000..075c470d
Binary files /dev/null and b/static/icons/060025D7.png differ
diff --git a/static/icons/060025D8.png b/static/icons/060025D8.png
new file mode 100755
index 00000000..11df5d17
Binary files /dev/null and b/static/icons/060025D8.png differ
diff --git a/static/icons/060025D9.png b/static/icons/060025D9.png
new file mode 100755
index 00000000..f41dba5d
Binary files /dev/null and b/static/icons/060025D9.png differ
diff --git a/static/icons/060025DA.png b/static/icons/060025DA.png
new file mode 100755
index 00000000..848b4356
Binary files /dev/null and b/static/icons/060025DA.png differ
diff --git a/static/icons/060025DB.png b/static/icons/060025DB.png
new file mode 100755
index 00000000..02628e5e
Binary files /dev/null and b/static/icons/060025DB.png differ
diff --git a/static/icons/060025DC.png b/static/icons/060025DC.png
new file mode 100755
index 00000000..5e3996a6
Binary files /dev/null and b/static/icons/060025DC.png differ
diff --git a/static/icons/060025DD.png b/static/icons/060025DD.png
new file mode 100755
index 00000000..5afe6cf8
Binary files /dev/null and b/static/icons/060025DD.png differ
diff --git a/static/icons/060025DE.png b/static/icons/060025DE.png
new file mode 100755
index 00000000..8696593d
Binary files /dev/null and b/static/icons/060025DE.png differ
diff --git a/static/icons/060025E0.png b/static/icons/060025E0.png
new file mode 100755
index 00000000..9263c155
Binary files /dev/null and b/static/icons/060025E0.png differ
diff --git a/static/icons/060025E3.png b/static/icons/060025E3.png
new file mode 100755
index 00000000..95ca77f4
Binary files /dev/null and b/static/icons/060025E3.png differ
diff --git a/static/icons/060025E4.png b/static/icons/060025E4.png
new file mode 100755
index 00000000..a91fbf33
Binary files /dev/null and b/static/icons/060025E4.png differ
diff --git a/static/icons/060025E7.png b/static/icons/060025E7.png
new file mode 100755
index 00000000..eddf5d83
Binary files /dev/null and b/static/icons/060025E7.png differ
diff --git a/static/icons/060025E8.png b/static/icons/060025E8.png
new file mode 100755
index 00000000..8f125bba
Binary files /dev/null and b/static/icons/060025E8.png differ
diff --git a/static/icons/060025EA.png b/static/icons/060025EA.png
new file mode 100755
index 00000000..b9e538c7
Binary files /dev/null and b/static/icons/060025EA.png differ
diff --git a/static/icons/060025ED.png b/static/icons/060025ED.png
new file mode 100755
index 00000000..94ba7eba
Binary files /dev/null and b/static/icons/060025ED.png differ
diff --git a/static/icons/060025EE.png b/static/icons/060025EE.png
new file mode 100755
index 00000000..2fd15c37
Binary files /dev/null and b/static/icons/060025EE.png differ
diff --git a/static/icons/060025F1.png b/static/icons/060025F1.png
new file mode 100755
index 00000000..96f6ea0b
Binary files /dev/null and b/static/icons/060025F1.png differ
diff --git a/static/icons/060025F2.png b/static/icons/060025F2.png
new file mode 100755
index 00000000..0801d557
Binary files /dev/null and b/static/icons/060025F2.png differ
diff --git a/static/icons/060025F4.png b/static/icons/060025F4.png
new file mode 100755
index 00000000..d23a9399
Binary files /dev/null and b/static/icons/060025F4.png differ
diff --git a/static/icons/060025F7.png b/static/icons/060025F7.png
new file mode 100755
index 00000000..b5e747f9
Binary files /dev/null and b/static/icons/060025F7.png differ
diff --git a/static/icons/060025F8.png b/static/icons/060025F8.png
new file mode 100755
index 00000000..b0b38b50
Binary files /dev/null and b/static/icons/060025F8.png differ
diff --git a/static/icons/060025FB.png b/static/icons/060025FB.png
new file mode 100755
index 00000000..deefbcf9
Binary files /dev/null and b/static/icons/060025FB.png differ
diff --git a/static/icons/060025FC.png b/static/icons/060025FC.png
new file mode 100755
index 00000000..be493bf1
Binary files /dev/null and b/static/icons/060025FC.png differ
diff --git a/static/icons/060025FE.png b/static/icons/060025FE.png
new file mode 100755
index 00000000..4dc08a96
Binary files /dev/null and b/static/icons/060025FE.png differ
diff --git a/static/icons/06002601.png b/static/icons/06002601.png
new file mode 100755
index 00000000..9bb21c27
Binary files /dev/null and b/static/icons/06002601.png differ
diff --git a/static/icons/06002602.png b/static/icons/06002602.png
new file mode 100755
index 00000000..ab98be76
Binary files /dev/null and b/static/icons/06002602.png differ
diff --git a/static/icons/06002605.png b/static/icons/06002605.png
new file mode 100755
index 00000000..f3c6634d
Binary files /dev/null and b/static/icons/06002605.png differ
diff --git a/static/icons/06002606.png b/static/icons/06002606.png
new file mode 100755
index 00000000..2163b2e5
Binary files /dev/null and b/static/icons/06002606.png differ
diff --git a/static/icons/06002608.png b/static/icons/06002608.png
new file mode 100755
index 00000000..ef8e8aa7
Binary files /dev/null and b/static/icons/06002608.png differ
diff --git a/static/icons/0600260B.png b/static/icons/0600260B.png
new file mode 100755
index 00000000..fcd7d27e
Binary files /dev/null and b/static/icons/0600260B.png differ
diff --git a/static/icons/0600260C.png b/static/icons/0600260C.png
new file mode 100755
index 00000000..ab250e41
Binary files /dev/null and b/static/icons/0600260C.png differ
diff --git a/static/icons/0600260F.png b/static/icons/0600260F.png
new file mode 100755
index 00000000..d387255b
Binary files /dev/null and b/static/icons/0600260F.png differ
diff --git a/static/icons/06002610.png b/static/icons/06002610.png
new file mode 100755
index 00000000..d979a373
Binary files /dev/null and b/static/icons/06002610.png differ
diff --git a/static/icons/06002611.png b/static/icons/06002611.png
new file mode 100755
index 00000000..65e901c2
Binary files /dev/null and b/static/icons/06002611.png differ
diff --git a/static/icons/06002612.png b/static/icons/06002612.png
new file mode 100755
index 00000000..519673f7
Binary files /dev/null and b/static/icons/06002612.png differ
diff --git a/static/icons/06002613.png b/static/icons/06002613.png
new file mode 100755
index 00000000..8fb66c53
Binary files /dev/null and b/static/icons/06002613.png differ
diff --git a/static/icons/06002614.png b/static/icons/06002614.png
new file mode 100755
index 00000000..df8d01a9
Binary files /dev/null and b/static/icons/06002614.png differ
diff --git a/static/icons/06002615.png b/static/icons/06002615.png
new file mode 100755
index 00000000..69d67f97
Binary files /dev/null and b/static/icons/06002615.png differ
diff --git a/static/icons/06002616.png b/static/icons/06002616.png
new file mode 100755
index 00000000..73e0ca5c
Binary files /dev/null and b/static/icons/06002616.png differ
diff --git a/static/icons/06002617.png b/static/icons/06002617.png
new file mode 100755
index 00000000..ffaec42b
Binary files /dev/null and b/static/icons/06002617.png differ
diff --git a/static/icons/06002618.png b/static/icons/06002618.png
new file mode 100755
index 00000000..2e970946
Binary files /dev/null and b/static/icons/06002618.png differ
diff --git a/static/icons/06002619.png b/static/icons/06002619.png
new file mode 100755
index 00000000..62ad9bf0
Binary files /dev/null and b/static/icons/06002619.png differ
diff --git a/static/icons/0600261A.png b/static/icons/0600261A.png
new file mode 100755
index 00000000..30b05335
Binary files /dev/null and b/static/icons/0600261A.png differ
diff --git a/static/icons/0600261B.png b/static/icons/0600261B.png
new file mode 100755
index 00000000..c0ab4b55
Binary files /dev/null and b/static/icons/0600261B.png differ
diff --git a/static/icons/0600261C.png b/static/icons/0600261C.png
new file mode 100755
index 00000000..d15dc799
Binary files /dev/null and b/static/icons/0600261C.png differ
diff --git a/static/icons/0600261D.png b/static/icons/0600261D.png
new file mode 100755
index 00000000..926b94f3
Binary files /dev/null and b/static/icons/0600261D.png differ
diff --git a/static/icons/0600261E.png b/static/icons/0600261E.png
new file mode 100755
index 00000000..99059ea3
Binary files /dev/null and b/static/icons/0600261E.png differ
diff --git a/static/icons/0600261F.png b/static/icons/0600261F.png
new file mode 100755
index 00000000..f3332d64
Binary files /dev/null and b/static/icons/0600261F.png differ
diff --git a/static/icons/06002620.png b/static/icons/06002620.png
new file mode 100755
index 00000000..0746c341
Binary files /dev/null and b/static/icons/06002620.png differ
diff --git a/static/icons/06002621.png b/static/icons/06002621.png
new file mode 100755
index 00000000..3db607e0
Binary files /dev/null and b/static/icons/06002621.png differ
diff --git a/static/icons/06002627.png b/static/icons/06002627.png
new file mode 100755
index 00000000..12dfa42a
Binary files /dev/null and b/static/icons/06002627.png differ
diff --git a/static/icons/06002629.png b/static/icons/06002629.png
new file mode 100755
index 00000000..ab43672d
Binary files /dev/null and b/static/icons/06002629.png differ
diff --git a/static/icons/0600262A.png b/static/icons/0600262A.png
new file mode 100755
index 00000000..bfcd8402
Binary files /dev/null and b/static/icons/0600262A.png differ
diff --git a/static/icons/0600262B.png b/static/icons/0600262B.png
new file mode 100755
index 00000000..2d516b16
Binary files /dev/null and b/static/icons/0600262B.png differ
diff --git a/static/icons/0600262C.png b/static/icons/0600262C.png
new file mode 100755
index 00000000..22774f8c
Binary files /dev/null and b/static/icons/0600262C.png differ
diff --git a/static/icons/0600262D.png b/static/icons/0600262D.png
new file mode 100755
index 00000000..9d4485d9
Binary files /dev/null and b/static/icons/0600262D.png differ
diff --git a/static/icons/0600262E.png b/static/icons/0600262E.png
new file mode 100755
index 00000000..4cc27cb2
Binary files /dev/null and b/static/icons/0600262E.png differ
diff --git a/static/icons/06002631.png b/static/icons/06002631.png
new file mode 100755
index 00000000..408896fa
Binary files /dev/null and b/static/icons/06002631.png differ
diff --git a/static/icons/06002632.png b/static/icons/06002632.png
new file mode 100755
index 00000000..66f5576d
Binary files /dev/null and b/static/icons/06002632.png differ
diff --git a/static/icons/06002633.png b/static/icons/06002633.png
new file mode 100755
index 00000000..5fa90f2f
Binary files /dev/null and b/static/icons/06002633.png differ
diff --git a/static/icons/06002634.png b/static/icons/06002634.png
new file mode 100755
index 00000000..6198f72a
Binary files /dev/null and b/static/icons/06002634.png differ
diff --git a/static/icons/06002635.png b/static/icons/06002635.png
new file mode 100755
index 00000000..106b89ba
Binary files /dev/null and b/static/icons/06002635.png differ
diff --git a/static/icons/06002636.png b/static/icons/06002636.png
new file mode 100755
index 00000000..da8ba27a
Binary files /dev/null and b/static/icons/06002636.png differ
diff --git a/static/icons/06002637.png b/static/icons/06002637.png
new file mode 100755
index 00000000..01bbd5eb
Binary files /dev/null and b/static/icons/06002637.png differ
diff --git a/static/icons/06002638.png b/static/icons/06002638.png
new file mode 100755
index 00000000..78c03e21
Binary files /dev/null and b/static/icons/06002638.png differ
diff --git a/static/icons/06002639.png b/static/icons/06002639.png
new file mode 100755
index 00000000..e24b849a
Binary files /dev/null and b/static/icons/06002639.png differ
diff --git a/static/icons/0600263A.png b/static/icons/0600263A.png
new file mode 100755
index 00000000..e69e4bd0
Binary files /dev/null and b/static/icons/0600263A.png differ
diff --git a/static/icons/0600263B.png b/static/icons/0600263B.png
new file mode 100755
index 00000000..abcaa716
Binary files /dev/null and b/static/icons/0600263B.png differ
diff --git a/static/icons/0600263C.png b/static/icons/0600263C.png
new file mode 100755
index 00000000..603c7a27
Binary files /dev/null and b/static/icons/0600263C.png differ
diff --git a/static/icons/0600263D.png b/static/icons/0600263D.png
new file mode 100755
index 00000000..c38d63fd
Binary files /dev/null and b/static/icons/0600263D.png differ
diff --git a/static/icons/0600263E.png b/static/icons/0600263E.png
new file mode 100755
index 00000000..c2a8ac7e
Binary files /dev/null and b/static/icons/0600263E.png differ
diff --git a/static/icons/0600263F.png b/static/icons/0600263F.png
new file mode 100755
index 00000000..a3a93f57
Binary files /dev/null and b/static/icons/0600263F.png differ
diff --git a/static/icons/06002640.png b/static/icons/06002640.png
new file mode 100755
index 00000000..fc38a4e0
Binary files /dev/null and b/static/icons/06002640.png differ
diff --git a/static/icons/06002641.png b/static/icons/06002641.png
new file mode 100755
index 00000000..a41546ea
Binary files /dev/null and b/static/icons/06002641.png differ
diff --git a/static/icons/06002642.png b/static/icons/06002642.png
new file mode 100755
index 00000000..87f8e2ee
Binary files /dev/null and b/static/icons/06002642.png differ
diff --git a/static/icons/06002643.png b/static/icons/06002643.png
new file mode 100755
index 00000000..6e8480d9
Binary files /dev/null and b/static/icons/06002643.png differ
diff --git a/static/icons/06002644.png b/static/icons/06002644.png
new file mode 100755
index 00000000..063f1898
Binary files /dev/null and b/static/icons/06002644.png differ
diff --git a/static/icons/06002645.png b/static/icons/06002645.png
new file mode 100755
index 00000000..0bb40a33
Binary files /dev/null and b/static/icons/06002645.png differ
diff --git a/static/icons/06002646.png b/static/icons/06002646.png
new file mode 100755
index 00000000..af7cb729
Binary files /dev/null and b/static/icons/06002646.png differ
diff --git a/static/icons/06002647.png b/static/icons/06002647.png
new file mode 100755
index 00000000..5c994474
Binary files /dev/null and b/static/icons/06002647.png differ
diff --git a/static/icons/06002648.png b/static/icons/06002648.png
new file mode 100755
index 00000000..52e2fb77
Binary files /dev/null and b/static/icons/06002648.png differ
diff --git a/static/icons/06002649.png b/static/icons/06002649.png
new file mode 100755
index 00000000..7e854fc1
Binary files /dev/null and b/static/icons/06002649.png differ
diff --git a/static/icons/0600264A.png b/static/icons/0600264A.png
new file mode 100755
index 00000000..d023c96c
Binary files /dev/null and b/static/icons/0600264A.png differ
diff --git a/static/icons/0600264B.png b/static/icons/0600264B.png
new file mode 100755
index 00000000..4dd21919
Binary files /dev/null and b/static/icons/0600264B.png differ
diff --git a/static/icons/0600264C.png b/static/icons/0600264C.png
new file mode 100755
index 00000000..5421f591
Binary files /dev/null and b/static/icons/0600264C.png differ
diff --git a/static/icons/0600264D.png b/static/icons/0600264D.png
new file mode 100755
index 00000000..2f765450
Binary files /dev/null and b/static/icons/0600264D.png differ
diff --git a/static/icons/0600264E.png b/static/icons/0600264E.png
new file mode 100755
index 00000000..0a3fba78
Binary files /dev/null and b/static/icons/0600264E.png differ
diff --git a/static/icons/0600264F.png b/static/icons/0600264F.png
new file mode 100755
index 00000000..a9d60c20
Binary files /dev/null and b/static/icons/0600264F.png differ
diff --git a/static/icons/06002650.png b/static/icons/06002650.png
new file mode 100755
index 00000000..908c57b4
Binary files /dev/null and b/static/icons/06002650.png differ
diff --git a/static/icons/06002651.png b/static/icons/06002651.png
new file mode 100755
index 00000000..c0e1a1ae
Binary files /dev/null and b/static/icons/06002651.png differ
diff --git a/static/icons/06002652.png b/static/icons/06002652.png
new file mode 100755
index 00000000..00b01de8
Binary files /dev/null and b/static/icons/06002652.png differ
diff --git a/static/icons/06002653.png b/static/icons/06002653.png
new file mode 100755
index 00000000..64478e38
Binary files /dev/null and b/static/icons/06002653.png differ
diff --git a/static/icons/06002654.png b/static/icons/06002654.png
new file mode 100755
index 00000000..968eb761
Binary files /dev/null and b/static/icons/06002654.png differ
diff --git a/static/icons/06002655.png b/static/icons/06002655.png
new file mode 100755
index 00000000..832bee2f
Binary files /dev/null and b/static/icons/06002655.png differ
diff --git a/static/icons/06002656.png b/static/icons/06002656.png
new file mode 100755
index 00000000..92da14bb
Binary files /dev/null and b/static/icons/06002656.png differ
diff --git a/static/icons/06002657.png b/static/icons/06002657.png
new file mode 100755
index 00000000..6b338142
Binary files /dev/null and b/static/icons/06002657.png differ
diff --git a/static/icons/06002658.png b/static/icons/06002658.png
new file mode 100755
index 00000000..2ccc25f4
Binary files /dev/null and b/static/icons/06002658.png differ
diff --git a/static/icons/06002659.png b/static/icons/06002659.png
new file mode 100755
index 00000000..cf857561
Binary files /dev/null and b/static/icons/06002659.png differ
diff --git a/static/icons/0600265A.png b/static/icons/0600265A.png
new file mode 100755
index 00000000..7aa061ed
Binary files /dev/null and b/static/icons/0600265A.png differ
diff --git a/static/icons/0600265B.png b/static/icons/0600265B.png
new file mode 100755
index 00000000..94bf5b72
Binary files /dev/null and b/static/icons/0600265B.png differ
diff --git a/static/icons/0600265C.png b/static/icons/0600265C.png
new file mode 100755
index 00000000..33f374a7
Binary files /dev/null and b/static/icons/0600265C.png differ
diff --git a/static/icons/0600265D.png b/static/icons/0600265D.png
new file mode 100755
index 00000000..3f6105a6
Binary files /dev/null and b/static/icons/0600265D.png differ
diff --git a/static/icons/0600265E.png b/static/icons/0600265E.png
new file mode 100755
index 00000000..c810f0a9
Binary files /dev/null and b/static/icons/0600265E.png differ
diff --git a/static/icons/0600265F.png b/static/icons/0600265F.png
new file mode 100755
index 00000000..6a3fddc3
Binary files /dev/null and b/static/icons/0600265F.png differ
diff --git a/static/icons/06002660.png b/static/icons/06002660.png
new file mode 100755
index 00000000..425f9b9e
Binary files /dev/null and b/static/icons/06002660.png differ
diff --git a/static/icons/06002661.png b/static/icons/06002661.png
new file mode 100755
index 00000000..8b038fe7
Binary files /dev/null and b/static/icons/06002661.png differ
diff --git a/static/icons/06002662.png b/static/icons/06002662.png
new file mode 100755
index 00000000..f6c6404b
Binary files /dev/null and b/static/icons/06002662.png differ
diff --git a/static/icons/06002663.png b/static/icons/06002663.png
new file mode 100755
index 00000000..d0259187
Binary files /dev/null and b/static/icons/06002663.png differ
diff --git a/static/icons/06002664.png b/static/icons/06002664.png
new file mode 100755
index 00000000..937e10d3
Binary files /dev/null and b/static/icons/06002664.png differ
diff --git a/static/icons/06002665.png b/static/icons/06002665.png
new file mode 100755
index 00000000..ea58e264
Binary files /dev/null and b/static/icons/06002665.png differ
diff --git a/static/icons/06002666.png b/static/icons/06002666.png
new file mode 100755
index 00000000..7be6b9cd
Binary files /dev/null and b/static/icons/06002666.png differ
diff --git a/static/icons/06002667.png b/static/icons/06002667.png
new file mode 100755
index 00000000..6776be04
Binary files /dev/null and b/static/icons/06002667.png differ
diff --git a/static/icons/06002668.png b/static/icons/06002668.png
new file mode 100755
index 00000000..5d06d5e5
Binary files /dev/null and b/static/icons/06002668.png differ
diff --git a/static/icons/06002669.png b/static/icons/06002669.png
new file mode 100755
index 00000000..bcff6661
Binary files /dev/null and b/static/icons/06002669.png differ
diff --git a/static/icons/0600266A.png b/static/icons/0600266A.png
new file mode 100755
index 00000000..19da81b1
Binary files /dev/null and b/static/icons/0600266A.png differ
diff --git a/static/icons/0600266B.png b/static/icons/0600266B.png
new file mode 100755
index 00000000..6fce5423
Binary files /dev/null and b/static/icons/0600266B.png differ
diff --git a/static/icons/0600266C.png b/static/icons/0600266C.png
new file mode 100755
index 00000000..c6092bc4
Binary files /dev/null and b/static/icons/0600266C.png differ
diff --git a/static/icons/0600266D.png b/static/icons/0600266D.png
new file mode 100755
index 00000000..d8e93f11
Binary files /dev/null and b/static/icons/0600266D.png differ
diff --git a/static/icons/0600266E.png b/static/icons/0600266E.png
new file mode 100755
index 00000000..c0b10147
Binary files /dev/null and b/static/icons/0600266E.png differ
diff --git a/static/icons/0600266F.png b/static/icons/0600266F.png
new file mode 100755
index 00000000..88d3f786
Binary files /dev/null and b/static/icons/0600266F.png differ
diff --git a/static/icons/06002670.png b/static/icons/06002670.png
new file mode 100755
index 00000000..30271da5
Binary files /dev/null and b/static/icons/06002670.png differ
diff --git a/static/icons/06002671.png b/static/icons/06002671.png
new file mode 100755
index 00000000..578f3842
Binary files /dev/null and b/static/icons/06002671.png differ
diff --git a/static/icons/06002672.png b/static/icons/06002672.png
new file mode 100755
index 00000000..6968ee9b
Binary files /dev/null and b/static/icons/06002672.png differ
diff --git a/static/icons/06002673.png b/static/icons/06002673.png
new file mode 100755
index 00000000..68d789ab
Binary files /dev/null and b/static/icons/06002673.png differ
diff --git a/static/icons/06002674.png b/static/icons/06002674.png
new file mode 100755
index 00000000..361a69ae
Binary files /dev/null and b/static/icons/06002674.png differ
diff --git a/static/icons/06002675.png b/static/icons/06002675.png
new file mode 100755
index 00000000..ecfa74af
Binary files /dev/null and b/static/icons/06002675.png differ
diff --git a/static/icons/06002676.png b/static/icons/06002676.png
new file mode 100755
index 00000000..6cd2d800
Binary files /dev/null and b/static/icons/06002676.png differ
diff --git a/static/icons/06002677.png b/static/icons/06002677.png
new file mode 100755
index 00000000..46bd4a69
Binary files /dev/null and b/static/icons/06002677.png differ
diff --git a/static/icons/06002678.png b/static/icons/06002678.png
new file mode 100755
index 00000000..1f9e5479
Binary files /dev/null and b/static/icons/06002678.png differ
diff --git a/static/icons/06002679.png b/static/icons/06002679.png
new file mode 100755
index 00000000..acede469
Binary files /dev/null and b/static/icons/06002679.png differ
diff --git a/static/icons/0600267A.png b/static/icons/0600267A.png
new file mode 100755
index 00000000..4ed31c82
Binary files /dev/null and b/static/icons/0600267A.png differ
diff --git a/static/icons/0600267B.png b/static/icons/0600267B.png
new file mode 100755
index 00000000..4ee9b6fb
Binary files /dev/null and b/static/icons/0600267B.png differ
diff --git a/static/icons/0600267C.png b/static/icons/0600267C.png
new file mode 100755
index 00000000..d28852ab
Binary files /dev/null and b/static/icons/0600267C.png differ
diff --git a/static/icons/0600267D.png b/static/icons/0600267D.png
new file mode 100755
index 00000000..cc2ac477
Binary files /dev/null and b/static/icons/0600267D.png differ
diff --git a/static/icons/0600267E.png b/static/icons/0600267E.png
new file mode 100755
index 00000000..2ed880d4
Binary files /dev/null and b/static/icons/0600267E.png differ
diff --git a/static/icons/0600267F.png b/static/icons/0600267F.png
new file mode 100755
index 00000000..7c98d102
Binary files /dev/null and b/static/icons/0600267F.png differ
diff --git a/static/icons/06002680.png b/static/icons/06002680.png
new file mode 100755
index 00000000..a355fcb9
Binary files /dev/null and b/static/icons/06002680.png differ
diff --git a/static/icons/06002681.png b/static/icons/06002681.png
new file mode 100755
index 00000000..5fcac9ea
Binary files /dev/null and b/static/icons/06002681.png differ
diff --git a/static/icons/06002682.png b/static/icons/06002682.png
new file mode 100755
index 00000000..94df5e01
Binary files /dev/null and b/static/icons/06002682.png differ
diff --git a/static/icons/06002683.png b/static/icons/06002683.png
new file mode 100755
index 00000000..0d70cbe2
Binary files /dev/null and b/static/icons/06002683.png differ
diff --git a/static/icons/06002684.png b/static/icons/06002684.png
new file mode 100755
index 00000000..a171e29d
Binary files /dev/null and b/static/icons/06002684.png differ
diff --git a/static/icons/06002685.png b/static/icons/06002685.png
new file mode 100755
index 00000000..665542b6
Binary files /dev/null and b/static/icons/06002685.png differ
diff --git a/static/icons/06002686.png b/static/icons/06002686.png
new file mode 100755
index 00000000..eef6b341
Binary files /dev/null and b/static/icons/06002686.png differ
diff --git a/static/icons/06002687.png b/static/icons/06002687.png
new file mode 100755
index 00000000..ef1f8575
Binary files /dev/null and b/static/icons/06002687.png differ
diff --git a/static/icons/06002688.png b/static/icons/06002688.png
new file mode 100755
index 00000000..285619e2
Binary files /dev/null and b/static/icons/06002688.png differ
diff --git a/static/icons/06002689.png b/static/icons/06002689.png
new file mode 100755
index 00000000..a8e7db81
Binary files /dev/null and b/static/icons/06002689.png differ
diff --git a/static/icons/0600268A.png b/static/icons/0600268A.png
new file mode 100755
index 00000000..aabc857c
Binary files /dev/null and b/static/icons/0600268A.png differ
diff --git a/static/icons/0600268B.png b/static/icons/0600268B.png
new file mode 100755
index 00000000..509607b1
Binary files /dev/null and b/static/icons/0600268B.png differ
diff --git a/static/icons/0600268C.png b/static/icons/0600268C.png
new file mode 100755
index 00000000..0d7ceb80
Binary files /dev/null and b/static/icons/0600268C.png differ
diff --git a/static/icons/0600268D.png b/static/icons/0600268D.png
new file mode 100755
index 00000000..579b00c4
Binary files /dev/null and b/static/icons/0600268D.png differ
diff --git a/static/icons/0600268E.png b/static/icons/0600268E.png
new file mode 100755
index 00000000..4e12247e
Binary files /dev/null and b/static/icons/0600268E.png differ
diff --git a/static/icons/0600268F.png b/static/icons/0600268F.png
new file mode 100755
index 00000000..88f90fa2
Binary files /dev/null and b/static/icons/0600268F.png differ
diff --git a/static/icons/06002690.png b/static/icons/06002690.png
new file mode 100755
index 00000000..8d3a9235
Binary files /dev/null and b/static/icons/06002690.png differ
diff --git a/static/icons/06002691.png b/static/icons/06002691.png
new file mode 100755
index 00000000..83015db3
Binary files /dev/null and b/static/icons/06002691.png differ
diff --git a/static/icons/06002692.png b/static/icons/06002692.png
new file mode 100755
index 00000000..08843b8a
Binary files /dev/null and b/static/icons/06002692.png differ
diff --git a/static/icons/06002693.png b/static/icons/06002693.png
new file mode 100755
index 00000000..5addcbd3
Binary files /dev/null and b/static/icons/06002693.png differ
diff --git a/static/icons/06002694.png b/static/icons/06002694.png
new file mode 100755
index 00000000..a538a167
Binary files /dev/null and b/static/icons/06002694.png differ
diff --git a/static/icons/06002695.png b/static/icons/06002695.png
new file mode 100755
index 00000000..aa50d5ce
Binary files /dev/null and b/static/icons/06002695.png differ
diff --git a/static/icons/06002696.png b/static/icons/06002696.png
new file mode 100755
index 00000000..405b4c7e
Binary files /dev/null and b/static/icons/06002696.png differ
diff --git a/static/icons/06002697.png b/static/icons/06002697.png
new file mode 100755
index 00000000..4f6c55fd
Binary files /dev/null and b/static/icons/06002697.png differ
diff --git a/static/icons/06002698.png b/static/icons/06002698.png
new file mode 100755
index 00000000..f6fc55e3
Binary files /dev/null and b/static/icons/06002698.png differ
diff --git a/static/icons/06002699.png b/static/icons/06002699.png
new file mode 100755
index 00000000..f72af738
Binary files /dev/null and b/static/icons/06002699.png differ
diff --git a/static/icons/0600269A.png b/static/icons/0600269A.png
new file mode 100755
index 00000000..679f77ba
Binary files /dev/null and b/static/icons/0600269A.png differ
diff --git a/static/icons/0600269B.png b/static/icons/0600269B.png
new file mode 100755
index 00000000..0cd09e36
Binary files /dev/null and b/static/icons/0600269B.png differ
diff --git a/static/icons/0600269C.png b/static/icons/0600269C.png
new file mode 100755
index 00000000..18a6b466
Binary files /dev/null and b/static/icons/0600269C.png differ
diff --git a/static/icons/0600269D.png b/static/icons/0600269D.png
new file mode 100755
index 00000000..a629f7db
Binary files /dev/null and b/static/icons/0600269D.png differ
diff --git a/static/icons/0600269E.png b/static/icons/0600269E.png
new file mode 100755
index 00000000..2fc258e1
Binary files /dev/null and b/static/icons/0600269E.png differ
diff --git a/static/icons/0600269F.png b/static/icons/0600269F.png
new file mode 100755
index 00000000..42aecd2b
Binary files /dev/null and b/static/icons/0600269F.png differ
diff --git a/static/icons/060026A0.png b/static/icons/060026A0.png
new file mode 100755
index 00000000..13ce9b81
Binary files /dev/null and b/static/icons/060026A0.png differ
diff --git a/static/icons/060026A1.png b/static/icons/060026A1.png
new file mode 100755
index 00000000..8ff37e1e
Binary files /dev/null and b/static/icons/060026A1.png differ
diff --git a/static/icons/060026A2.png b/static/icons/060026A2.png
new file mode 100755
index 00000000..4611d4ce
Binary files /dev/null and b/static/icons/060026A2.png differ
diff --git a/static/icons/060026A3.png b/static/icons/060026A3.png
new file mode 100755
index 00000000..5f57d265
Binary files /dev/null and b/static/icons/060026A3.png differ
diff --git a/static/icons/060026A4.png b/static/icons/060026A4.png
new file mode 100755
index 00000000..b8a4910d
Binary files /dev/null and b/static/icons/060026A4.png differ
diff --git a/static/icons/060026A5.png b/static/icons/060026A5.png
new file mode 100755
index 00000000..9663f044
Binary files /dev/null and b/static/icons/060026A5.png differ
diff --git a/static/icons/060026A6.png b/static/icons/060026A6.png
new file mode 100755
index 00000000..23bb845a
Binary files /dev/null and b/static/icons/060026A6.png differ
diff --git a/static/icons/060026A7.png b/static/icons/060026A7.png
new file mode 100755
index 00000000..a1e8ebac
Binary files /dev/null and b/static/icons/060026A7.png differ
diff --git a/static/icons/060026A8.png b/static/icons/060026A8.png
new file mode 100755
index 00000000..cfac913d
Binary files /dev/null and b/static/icons/060026A8.png differ
diff --git a/static/icons/060026A9.png b/static/icons/060026A9.png
new file mode 100755
index 00000000..9a18689b
Binary files /dev/null and b/static/icons/060026A9.png differ
diff --git a/static/icons/060026AA.png b/static/icons/060026AA.png
new file mode 100755
index 00000000..ce12ee9a
Binary files /dev/null and b/static/icons/060026AA.png differ
diff --git a/static/icons/060026AB.png b/static/icons/060026AB.png
new file mode 100755
index 00000000..1ef1f7dd
Binary files /dev/null and b/static/icons/060026AB.png differ
diff --git a/static/icons/060026AC.png b/static/icons/060026AC.png
new file mode 100755
index 00000000..f0304406
Binary files /dev/null and b/static/icons/060026AC.png differ
diff --git a/static/icons/060026AD.png b/static/icons/060026AD.png
new file mode 100755
index 00000000..fa10fa31
Binary files /dev/null and b/static/icons/060026AD.png differ
diff --git a/static/icons/060026AE.png b/static/icons/060026AE.png
new file mode 100755
index 00000000..93953f58
Binary files /dev/null and b/static/icons/060026AE.png differ
diff --git a/static/icons/060026AF.png b/static/icons/060026AF.png
new file mode 100755
index 00000000..d86d98b9
Binary files /dev/null and b/static/icons/060026AF.png differ
diff --git a/static/icons/060026B0.png b/static/icons/060026B0.png
new file mode 100755
index 00000000..1759a34e
Binary files /dev/null and b/static/icons/060026B0.png differ
diff --git a/static/icons/060026B1.png b/static/icons/060026B1.png
new file mode 100755
index 00000000..441396e6
Binary files /dev/null and b/static/icons/060026B1.png differ
diff --git a/static/icons/060026B2.png b/static/icons/060026B2.png
new file mode 100755
index 00000000..1a4cd82a
Binary files /dev/null and b/static/icons/060026B2.png differ
diff --git a/static/icons/060026B3.png b/static/icons/060026B3.png
new file mode 100755
index 00000000..6701b8f5
Binary files /dev/null and b/static/icons/060026B3.png differ
diff --git a/static/icons/060026B4.png b/static/icons/060026B4.png
new file mode 100755
index 00000000..0a7a4134
Binary files /dev/null and b/static/icons/060026B4.png differ
diff --git a/static/icons/060026B5.png b/static/icons/060026B5.png
new file mode 100755
index 00000000..05deb795
Binary files /dev/null and b/static/icons/060026B5.png differ
diff --git a/static/icons/060026B6.png b/static/icons/060026B6.png
new file mode 100755
index 00000000..48521a74
Binary files /dev/null and b/static/icons/060026B6.png differ
diff --git a/static/icons/060026B7.png b/static/icons/060026B7.png
new file mode 100755
index 00000000..526fc121
Binary files /dev/null and b/static/icons/060026B7.png differ
diff --git a/static/icons/060026B8.png b/static/icons/060026B8.png
new file mode 100755
index 00000000..30e0c593
Binary files /dev/null and b/static/icons/060026B8.png differ
diff --git a/static/icons/060026B9.png b/static/icons/060026B9.png
new file mode 100755
index 00000000..c1858165
Binary files /dev/null and b/static/icons/060026B9.png differ
diff --git a/static/icons/060026BA.png b/static/icons/060026BA.png
new file mode 100755
index 00000000..c0369659
Binary files /dev/null and b/static/icons/060026BA.png differ
diff --git a/static/icons/060026BB.png b/static/icons/060026BB.png
new file mode 100755
index 00000000..7267deb0
Binary files /dev/null and b/static/icons/060026BB.png differ
diff --git a/static/icons/060026BC.png b/static/icons/060026BC.png
new file mode 100755
index 00000000..7f34f84b
Binary files /dev/null and b/static/icons/060026BC.png differ
diff --git a/static/icons/060026BD.png b/static/icons/060026BD.png
new file mode 100755
index 00000000..001ef573
Binary files /dev/null and b/static/icons/060026BD.png differ
diff --git a/static/icons/060026BE.png b/static/icons/060026BE.png
new file mode 100755
index 00000000..801e8b54
Binary files /dev/null and b/static/icons/060026BE.png differ
diff --git a/static/icons/060026BF.png b/static/icons/060026BF.png
new file mode 100755
index 00000000..f06522a8
Binary files /dev/null and b/static/icons/060026BF.png differ
diff --git a/static/icons/060026C0.png b/static/icons/060026C0.png
new file mode 100755
index 00000000..409740b7
Binary files /dev/null and b/static/icons/060026C0.png differ
diff --git a/static/icons/060026C1.png b/static/icons/060026C1.png
new file mode 100755
index 00000000..be824fb3
Binary files /dev/null and b/static/icons/060026C1.png differ
diff --git a/static/icons/060026C2.png b/static/icons/060026C2.png
new file mode 100755
index 00000000..4c456c8f
Binary files /dev/null and b/static/icons/060026C2.png differ
diff --git a/static/icons/060026C3.png b/static/icons/060026C3.png
new file mode 100755
index 00000000..07290477
Binary files /dev/null and b/static/icons/060026C3.png differ
diff --git a/static/icons/060026C4.png b/static/icons/060026C4.png
new file mode 100755
index 00000000..9df9b0bb
Binary files /dev/null and b/static/icons/060026C4.png differ
diff --git a/static/icons/060026C5.png b/static/icons/060026C5.png
new file mode 100755
index 00000000..4d730113
Binary files /dev/null and b/static/icons/060026C5.png differ
diff --git a/static/icons/060026C6.png b/static/icons/060026C6.png
new file mode 100755
index 00000000..aedb370e
Binary files /dev/null and b/static/icons/060026C6.png differ
diff --git a/static/icons/060026C7.png b/static/icons/060026C7.png
new file mode 100755
index 00000000..a433508e
Binary files /dev/null and b/static/icons/060026C7.png differ
diff --git a/static/icons/060026C8.png b/static/icons/060026C8.png
new file mode 100755
index 00000000..0930ea84
Binary files /dev/null and b/static/icons/060026C8.png differ
diff --git a/static/icons/060026C9.png b/static/icons/060026C9.png
new file mode 100755
index 00000000..772d8d00
Binary files /dev/null and b/static/icons/060026C9.png differ
diff --git a/static/icons/060026CA.png b/static/icons/060026CA.png
new file mode 100755
index 00000000..4dc6a92f
Binary files /dev/null and b/static/icons/060026CA.png differ
diff --git a/static/icons/060026CB.png b/static/icons/060026CB.png
new file mode 100755
index 00000000..b5d04709
Binary files /dev/null and b/static/icons/060026CB.png differ
diff --git a/static/icons/060026CC.png b/static/icons/060026CC.png
new file mode 100755
index 00000000..b27ed20b
Binary files /dev/null and b/static/icons/060026CC.png differ
diff --git a/static/icons/060026CD.png b/static/icons/060026CD.png
new file mode 100755
index 00000000..3fd24ecd
Binary files /dev/null and b/static/icons/060026CD.png differ
diff --git a/static/icons/060026CE.png b/static/icons/060026CE.png
new file mode 100755
index 00000000..8810720b
Binary files /dev/null and b/static/icons/060026CE.png differ
diff --git a/static/icons/060026CF.png b/static/icons/060026CF.png
new file mode 100755
index 00000000..775f7815
Binary files /dev/null and b/static/icons/060026CF.png differ
diff --git a/static/icons/060026D0.png b/static/icons/060026D0.png
new file mode 100755
index 00000000..5820ebd0
Binary files /dev/null and b/static/icons/060026D0.png differ
diff --git a/static/icons/060026D1.png b/static/icons/060026D1.png
new file mode 100755
index 00000000..bbfdf809
Binary files /dev/null and b/static/icons/060026D1.png differ
diff --git a/static/icons/060026D2.png b/static/icons/060026D2.png
new file mode 100755
index 00000000..dd3d844b
Binary files /dev/null and b/static/icons/060026D2.png differ
diff --git a/static/icons/060026D3.png b/static/icons/060026D3.png
new file mode 100755
index 00000000..636e9c14
Binary files /dev/null and b/static/icons/060026D3.png differ
diff --git a/static/icons/060026D4.png b/static/icons/060026D4.png
new file mode 100755
index 00000000..5743fa27
Binary files /dev/null and b/static/icons/060026D4.png differ
diff --git a/static/icons/060026D5.png b/static/icons/060026D5.png
new file mode 100755
index 00000000..a95c67c3
Binary files /dev/null and b/static/icons/060026D5.png differ
diff --git a/static/icons/060026D6.png b/static/icons/060026D6.png
new file mode 100755
index 00000000..33dfcecf
Binary files /dev/null and b/static/icons/060026D6.png differ
diff --git a/static/icons/060026D7.png b/static/icons/060026D7.png
new file mode 100755
index 00000000..ed6f02ba
Binary files /dev/null and b/static/icons/060026D7.png differ
diff --git a/static/icons/060026D9.png b/static/icons/060026D9.png
new file mode 100755
index 00000000..ba1ca011
Binary files /dev/null and b/static/icons/060026D9.png differ
diff --git a/static/icons/060026DB.png b/static/icons/060026DB.png
new file mode 100755
index 00000000..8952b6c3
Binary files /dev/null and b/static/icons/060026DB.png differ
diff --git a/static/icons/060026DC.png b/static/icons/060026DC.png
new file mode 100755
index 00000000..843d4477
Binary files /dev/null and b/static/icons/060026DC.png differ
diff --git a/static/icons/060026DD.png b/static/icons/060026DD.png
new file mode 100755
index 00000000..7fb151f5
Binary files /dev/null and b/static/icons/060026DD.png differ
diff --git a/static/icons/060026DE.png b/static/icons/060026DE.png
new file mode 100755
index 00000000..37119133
Binary files /dev/null and b/static/icons/060026DE.png differ
diff --git a/static/icons/060026DF.png b/static/icons/060026DF.png
new file mode 100755
index 00000000..c67ed7b2
Binary files /dev/null and b/static/icons/060026DF.png differ
diff --git a/static/icons/060026E0.png b/static/icons/060026E0.png
new file mode 100755
index 00000000..5febee29
Binary files /dev/null and b/static/icons/060026E0.png differ
diff --git a/static/icons/060026E1.png b/static/icons/060026E1.png
new file mode 100755
index 00000000..792ea9d6
Binary files /dev/null and b/static/icons/060026E1.png differ
diff --git a/static/icons/060026E2.png b/static/icons/060026E2.png
new file mode 100755
index 00000000..4d5bb8ae
Binary files /dev/null and b/static/icons/060026E2.png differ
diff --git a/static/icons/060026E3.png b/static/icons/060026E3.png
new file mode 100755
index 00000000..bdf71573
Binary files /dev/null and b/static/icons/060026E3.png differ
diff --git a/static/icons/060026E4.png b/static/icons/060026E4.png
new file mode 100755
index 00000000..fb1cb4b2
Binary files /dev/null and b/static/icons/060026E4.png differ
diff --git a/static/icons/060026E5.png b/static/icons/060026E5.png
new file mode 100755
index 00000000..4c1e8aea
Binary files /dev/null and b/static/icons/060026E5.png differ
diff --git a/static/icons/060026E6.png b/static/icons/060026E6.png
new file mode 100755
index 00000000..3d576449
Binary files /dev/null and b/static/icons/060026E6.png differ
diff --git a/static/icons/060026E7.png b/static/icons/060026E7.png
new file mode 100755
index 00000000..dfa4bb02
Binary files /dev/null and b/static/icons/060026E7.png differ
diff --git a/static/icons/060026E8.png b/static/icons/060026E8.png
new file mode 100755
index 00000000..c0bb865b
Binary files /dev/null and b/static/icons/060026E8.png differ
diff --git a/static/icons/060026E9.png b/static/icons/060026E9.png
new file mode 100755
index 00000000..50439165
Binary files /dev/null and b/static/icons/060026E9.png differ
diff --git a/static/icons/060026EB.png b/static/icons/060026EB.png
new file mode 100755
index 00000000..229e89e1
Binary files /dev/null and b/static/icons/060026EB.png differ
diff --git a/static/icons/060026EC.png b/static/icons/060026EC.png
new file mode 100755
index 00000000..a301dbec
Binary files /dev/null and b/static/icons/060026EC.png differ
diff --git a/static/icons/060026ED.png b/static/icons/060026ED.png
new file mode 100755
index 00000000..92bbb419
Binary files /dev/null and b/static/icons/060026ED.png differ
diff --git a/static/icons/060026EE.png b/static/icons/060026EE.png
new file mode 100755
index 00000000..102dd659
Binary files /dev/null and b/static/icons/060026EE.png differ
diff --git a/static/icons/060026EF.png b/static/icons/060026EF.png
new file mode 100755
index 00000000..399aa1a6
Binary files /dev/null and b/static/icons/060026EF.png differ
diff --git a/static/icons/060026F0.png b/static/icons/060026F0.png
new file mode 100755
index 00000000..f9528d04
Binary files /dev/null and b/static/icons/060026F0.png differ
diff --git a/static/icons/060026F1.png b/static/icons/060026F1.png
new file mode 100755
index 00000000..908301b0
Binary files /dev/null and b/static/icons/060026F1.png differ
diff --git a/static/icons/060026F2.png b/static/icons/060026F2.png
new file mode 100755
index 00000000..aaaaa09d
Binary files /dev/null and b/static/icons/060026F2.png differ
diff --git a/static/icons/060026F3.png b/static/icons/060026F3.png
new file mode 100755
index 00000000..aa53ef85
Binary files /dev/null and b/static/icons/060026F3.png differ
diff --git a/static/icons/060026F4.png b/static/icons/060026F4.png
new file mode 100755
index 00000000..ef1512cd
Binary files /dev/null and b/static/icons/060026F4.png differ
diff --git a/static/icons/060026F5.png b/static/icons/060026F5.png
new file mode 100755
index 00000000..2077f5af
Binary files /dev/null and b/static/icons/060026F5.png differ
diff --git a/static/icons/060026F6.png b/static/icons/060026F6.png
new file mode 100755
index 00000000..b4988285
Binary files /dev/null and b/static/icons/060026F6.png differ
diff --git a/static/icons/060026F7.png b/static/icons/060026F7.png
new file mode 100755
index 00000000..49b2c4ef
Binary files /dev/null and b/static/icons/060026F7.png differ
diff --git a/static/icons/060026F8.png b/static/icons/060026F8.png
new file mode 100755
index 00000000..4313c3ce
Binary files /dev/null and b/static/icons/060026F8.png differ
diff --git a/static/icons/060026F9.png b/static/icons/060026F9.png
new file mode 100755
index 00000000..62d7a9ac
Binary files /dev/null and b/static/icons/060026F9.png differ
diff --git a/static/icons/060026FA.png b/static/icons/060026FA.png
new file mode 100755
index 00000000..e67329a5
Binary files /dev/null and b/static/icons/060026FA.png differ
diff --git a/static/icons/060026FB.png b/static/icons/060026FB.png
new file mode 100755
index 00000000..8e025b75
Binary files /dev/null and b/static/icons/060026FB.png differ
diff --git a/static/icons/060026FC.png b/static/icons/060026FC.png
new file mode 100755
index 00000000..5888b855
Binary files /dev/null and b/static/icons/060026FC.png differ
diff --git a/static/icons/060026FD.png b/static/icons/060026FD.png
new file mode 100755
index 00000000..49e21e11
Binary files /dev/null and b/static/icons/060026FD.png differ
diff --git a/static/icons/060026FE.png b/static/icons/060026FE.png
new file mode 100755
index 00000000..666f8083
Binary files /dev/null and b/static/icons/060026FE.png differ
diff --git a/static/icons/060026FF.png b/static/icons/060026FF.png
new file mode 100755
index 00000000..5817acfb
Binary files /dev/null and b/static/icons/060026FF.png differ
diff --git a/static/icons/06002700.png b/static/icons/06002700.png
new file mode 100755
index 00000000..59c7f51e
Binary files /dev/null and b/static/icons/06002700.png differ
diff --git a/static/icons/06002701.png b/static/icons/06002701.png
new file mode 100755
index 00000000..53b2b789
Binary files /dev/null and b/static/icons/06002701.png differ
diff --git a/static/icons/06002702.png b/static/icons/06002702.png
new file mode 100755
index 00000000..9bdc53d3
Binary files /dev/null and b/static/icons/06002702.png differ
diff --git a/static/icons/06002703.png b/static/icons/06002703.png
new file mode 100755
index 00000000..bfc75a48
Binary files /dev/null and b/static/icons/06002703.png differ
diff --git a/static/icons/06002704.png b/static/icons/06002704.png
new file mode 100755
index 00000000..01513369
Binary files /dev/null and b/static/icons/06002704.png differ
diff --git a/static/icons/06002705.png b/static/icons/06002705.png
new file mode 100755
index 00000000..051b8310
Binary files /dev/null and b/static/icons/06002705.png differ
diff --git a/static/icons/06002706.png b/static/icons/06002706.png
new file mode 100755
index 00000000..a2c0488c
Binary files /dev/null and b/static/icons/06002706.png differ
diff --git a/static/icons/06002707.png b/static/icons/06002707.png
new file mode 100755
index 00000000..1904cf11
Binary files /dev/null and b/static/icons/06002707.png differ
diff --git a/static/icons/06002708.png b/static/icons/06002708.png
new file mode 100755
index 00000000..27e7f6e6
Binary files /dev/null and b/static/icons/06002708.png differ
diff --git a/static/icons/06002709.png b/static/icons/06002709.png
new file mode 100755
index 00000000..cc22f67d
Binary files /dev/null and b/static/icons/06002709.png differ
diff --git a/static/icons/0600270A.png b/static/icons/0600270A.png
new file mode 100755
index 00000000..3b8db5c3
Binary files /dev/null and b/static/icons/0600270A.png differ
diff --git a/static/icons/0600270B.png b/static/icons/0600270B.png
new file mode 100755
index 00000000..7d2ad004
Binary files /dev/null and b/static/icons/0600270B.png differ
diff --git a/static/icons/0600270C.png b/static/icons/0600270C.png
new file mode 100755
index 00000000..bb1ea224
Binary files /dev/null and b/static/icons/0600270C.png differ
diff --git a/static/icons/0600270D.png b/static/icons/0600270D.png
new file mode 100755
index 00000000..ec23a8b6
Binary files /dev/null and b/static/icons/0600270D.png differ
diff --git a/static/icons/0600270E.png b/static/icons/0600270E.png
new file mode 100755
index 00000000..fb35b63b
Binary files /dev/null and b/static/icons/0600270E.png differ
diff --git a/static/icons/0600270F.png b/static/icons/0600270F.png
new file mode 100755
index 00000000..6ebf9c3e
Binary files /dev/null and b/static/icons/0600270F.png differ
diff --git a/static/icons/06002710.png b/static/icons/06002710.png
new file mode 100755
index 00000000..4feb84d4
Binary files /dev/null and b/static/icons/06002710.png differ
diff --git a/static/icons/06002711.png b/static/icons/06002711.png
new file mode 100755
index 00000000..343a54f1
Binary files /dev/null and b/static/icons/06002711.png differ
diff --git a/static/icons/06002712.png b/static/icons/06002712.png
new file mode 100755
index 00000000..533f30a2
Binary files /dev/null and b/static/icons/06002712.png differ
diff --git a/static/icons/06002713.png b/static/icons/06002713.png
new file mode 100755
index 00000000..a494dcc8
Binary files /dev/null and b/static/icons/06002713.png differ
diff --git a/static/icons/06002714.png b/static/icons/06002714.png
new file mode 100755
index 00000000..8848537c
Binary files /dev/null and b/static/icons/06002714.png differ
diff --git a/static/icons/06002715.png b/static/icons/06002715.png
new file mode 100755
index 00000000..6be73e3b
Binary files /dev/null and b/static/icons/06002715.png differ
diff --git a/static/icons/06002716.png b/static/icons/06002716.png
new file mode 100755
index 00000000..4ee391fa
Binary files /dev/null and b/static/icons/06002716.png differ
diff --git a/static/icons/06002717.png b/static/icons/06002717.png
new file mode 100755
index 00000000..a5119adc
Binary files /dev/null and b/static/icons/06002717.png differ
diff --git a/static/icons/06002718.png b/static/icons/06002718.png
new file mode 100755
index 00000000..8b4792a4
Binary files /dev/null and b/static/icons/06002718.png differ
diff --git a/static/icons/06002719.png b/static/icons/06002719.png
new file mode 100755
index 00000000..7e36a735
Binary files /dev/null and b/static/icons/06002719.png differ
diff --git a/static/icons/0600271A.png b/static/icons/0600271A.png
new file mode 100755
index 00000000..225c5d15
Binary files /dev/null and b/static/icons/0600271A.png differ
diff --git a/static/icons/0600271B.png b/static/icons/0600271B.png
new file mode 100755
index 00000000..2e0c5605
Binary files /dev/null and b/static/icons/0600271B.png differ
diff --git a/static/icons/0600271C.png b/static/icons/0600271C.png
new file mode 100755
index 00000000..726157ff
Binary files /dev/null and b/static/icons/0600271C.png differ
diff --git a/static/icons/0600271D.png b/static/icons/0600271D.png
new file mode 100755
index 00000000..efa70a8c
Binary files /dev/null and b/static/icons/0600271D.png differ
diff --git a/static/icons/0600271E.png b/static/icons/0600271E.png
new file mode 100755
index 00000000..6280a1a1
Binary files /dev/null and b/static/icons/0600271E.png differ
diff --git a/static/icons/0600271F.png b/static/icons/0600271F.png
new file mode 100755
index 00000000..1e9b0eb1
Binary files /dev/null and b/static/icons/0600271F.png differ
diff --git a/static/icons/06002720.png b/static/icons/06002720.png
new file mode 100755
index 00000000..2fcf732c
Binary files /dev/null and b/static/icons/06002720.png differ
diff --git a/static/icons/06002721.png b/static/icons/06002721.png
new file mode 100755
index 00000000..6bd55793
Binary files /dev/null and b/static/icons/06002721.png differ
diff --git a/static/icons/06002722.png b/static/icons/06002722.png
new file mode 100755
index 00000000..ad5dcbf3
Binary files /dev/null and b/static/icons/06002722.png differ
diff --git a/static/icons/06002723.png b/static/icons/06002723.png
new file mode 100755
index 00000000..ecad4207
Binary files /dev/null and b/static/icons/06002723.png differ
diff --git a/static/icons/06002724.png b/static/icons/06002724.png
new file mode 100755
index 00000000..7720764d
Binary files /dev/null and b/static/icons/06002724.png differ
diff --git a/static/icons/06002725.png b/static/icons/06002725.png
new file mode 100755
index 00000000..dd30fa43
Binary files /dev/null and b/static/icons/06002725.png differ
diff --git a/static/icons/06002726.png b/static/icons/06002726.png
new file mode 100755
index 00000000..c3efa508
Binary files /dev/null and b/static/icons/06002726.png differ
diff --git a/static/icons/06002727.png b/static/icons/06002727.png
new file mode 100755
index 00000000..feadf532
Binary files /dev/null and b/static/icons/06002727.png differ
diff --git a/static/icons/06002728.png b/static/icons/06002728.png
new file mode 100755
index 00000000..b8cecd63
Binary files /dev/null and b/static/icons/06002728.png differ
diff --git a/static/icons/06002729.png b/static/icons/06002729.png
new file mode 100755
index 00000000..8901da93
Binary files /dev/null and b/static/icons/06002729.png differ
diff --git a/static/icons/0600272A.png b/static/icons/0600272A.png
new file mode 100755
index 00000000..cfacc4f8
Binary files /dev/null and b/static/icons/0600272A.png differ
diff --git a/static/icons/0600272B.png b/static/icons/0600272B.png
new file mode 100755
index 00000000..ca8ab9ff
Binary files /dev/null and b/static/icons/0600272B.png differ
diff --git a/static/icons/0600272C.png b/static/icons/0600272C.png
new file mode 100755
index 00000000..9ec75dec
Binary files /dev/null and b/static/icons/0600272C.png differ
diff --git a/static/icons/0600272D.png b/static/icons/0600272D.png
new file mode 100755
index 00000000..a267bda6
Binary files /dev/null and b/static/icons/0600272D.png differ
diff --git a/static/icons/0600272E.png b/static/icons/0600272E.png
new file mode 100755
index 00000000..61218131
Binary files /dev/null and b/static/icons/0600272E.png differ
diff --git a/static/icons/0600272F.png b/static/icons/0600272F.png
new file mode 100755
index 00000000..a88e7ae5
Binary files /dev/null and b/static/icons/0600272F.png differ
diff --git a/static/icons/06002730.png b/static/icons/06002730.png
new file mode 100755
index 00000000..ca11395c
Binary files /dev/null and b/static/icons/06002730.png differ
diff --git a/static/icons/06002731.png b/static/icons/06002731.png
new file mode 100755
index 00000000..5adbd6a1
Binary files /dev/null and b/static/icons/06002731.png differ
diff --git a/static/icons/06002732.png b/static/icons/06002732.png
new file mode 100755
index 00000000..3b6bacd0
Binary files /dev/null and b/static/icons/06002732.png differ
diff --git a/static/icons/06002733.png b/static/icons/06002733.png
new file mode 100755
index 00000000..6262e37a
Binary files /dev/null and b/static/icons/06002733.png differ
diff --git a/static/icons/06002734.png b/static/icons/06002734.png
new file mode 100755
index 00000000..03555966
Binary files /dev/null and b/static/icons/06002734.png differ
diff --git a/static/icons/06002735.png b/static/icons/06002735.png
new file mode 100755
index 00000000..cb8e8897
Binary files /dev/null and b/static/icons/06002735.png differ
diff --git a/static/icons/06002736.png b/static/icons/06002736.png
new file mode 100755
index 00000000..d4ef20c3
Binary files /dev/null and b/static/icons/06002736.png differ
diff --git a/static/icons/06002737.png b/static/icons/06002737.png
new file mode 100755
index 00000000..a9b6bf64
Binary files /dev/null and b/static/icons/06002737.png differ
diff --git a/static/icons/06002738.png b/static/icons/06002738.png
new file mode 100755
index 00000000..c547a44e
Binary files /dev/null and b/static/icons/06002738.png differ
diff --git a/static/icons/06002739.png b/static/icons/06002739.png
new file mode 100755
index 00000000..9c462d28
Binary files /dev/null and b/static/icons/06002739.png differ
diff --git a/static/icons/0600273A.png b/static/icons/0600273A.png
new file mode 100755
index 00000000..150dfb3c
Binary files /dev/null and b/static/icons/0600273A.png differ
diff --git a/static/icons/0600273B.png b/static/icons/0600273B.png
new file mode 100755
index 00000000..1c72bf3e
Binary files /dev/null and b/static/icons/0600273B.png differ
diff --git a/static/icons/0600273C.png b/static/icons/0600273C.png
new file mode 100755
index 00000000..773a718c
Binary files /dev/null and b/static/icons/0600273C.png differ
diff --git a/static/icons/0600273D.png b/static/icons/0600273D.png
new file mode 100755
index 00000000..1513663d
Binary files /dev/null and b/static/icons/0600273D.png differ
diff --git a/static/icons/0600273E.png b/static/icons/0600273E.png
new file mode 100755
index 00000000..105cc5d6
Binary files /dev/null and b/static/icons/0600273E.png differ
diff --git a/static/icons/0600273F.png b/static/icons/0600273F.png
new file mode 100755
index 00000000..801bea68
Binary files /dev/null and b/static/icons/0600273F.png differ
diff --git a/static/icons/06002740.png b/static/icons/06002740.png
new file mode 100755
index 00000000..3a32df69
Binary files /dev/null and b/static/icons/06002740.png differ
diff --git a/static/icons/06002741.png b/static/icons/06002741.png
new file mode 100755
index 00000000..570b33da
Binary files /dev/null and b/static/icons/06002741.png differ
diff --git a/static/icons/06002742.png b/static/icons/06002742.png
new file mode 100755
index 00000000..d5ecc256
Binary files /dev/null and b/static/icons/06002742.png differ
diff --git a/static/icons/06002743.png b/static/icons/06002743.png
new file mode 100755
index 00000000..1616449a
Binary files /dev/null and b/static/icons/06002743.png differ
diff --git a/static/icons/06002744.png b/static/icons/06002744.png
new file mode 100755
index 00000000..4574c69d
Binary files /dev/null and b/static/icons/06002744.png differ
diff --git a/static/icons/06002745.png b/static/icons/06002745.png
new file mode 100755
index 00000000..1bb74b95
Binary files /dev/null and b/static/icons/06002745.png differ
diff --git a/static/icons/06002746.png b/static/icons/06002746.png
new file mode 100755
index 00000000..a2975f6d
Binary files /dev/null and b/static/icons/06002746.png differ
diff --git a/static/icons/06002747.png b/static/icons/06002747.png
new file mode 100755
index 00000000..46040dac
Binary files /dev/null and b/static/icons/06002747.png differ
diff --git a/static/icons/06002748.png b/static/icons/06002748.png
new file mode 100755
index 00000000..ef7c3c9d
Binary files /dev/null and b/static/icons/06002748.png differ
diff --git a/static/icons/06002749.png b/static/icons/06002749.png
new file mode 100755
index 00000000..05c025e9
Binary files /dev/null and b/static/icons/06002749.png differ
diff --git a/static/icons/0600274A.png b/static/icons/0600274A.png
new file mode 100755
index 00000000..b42ba6b8
Binary files /dev/null and b/static/icons/0600274A.png differ
diff --git a/static/icons/0600274B.png b/static/icons/0600274B.png
new file mode 100755
index 00000000..74516744
Binary files /dev/null and b/static/icons/0600274B.png differ
diff --git a/static/icons/0600274C.png b/static/icons/0600274C.png
new file mode 100755
index 00000000..4975285e
Binary files /dev/null and b/static/icons/0600274C.png differ
diff --git a/static/icons/0600274D.png b/static/icons/0600274D.png
new file mode 100755
index 00000000..d2b8ed84
Binary files /dev/null and b/static/icons/0600274D.png differ
diff --git a/static/icons/0600274E.png b/static/icons/0600274E.png
new file mode 100755
index 00000000..25fd7b2a
Binary files /dev/null and b/static/icons/0600274E.png differ
diff --git a/static/icons/0600274F.png b/static/icons/0600274F.png
new file mode 100755
index 00000000..cc65d15a
Binary files /dev/null and b/static/icons/0600274F.png differ
diff --git a/static/icons/06002750.png b/static/icons/06002750.png
new file mode 100755
index 00000000..925b9486
Binary files /dev/null and b/static/icons/06002750.png differ
diff --git a/static/icons/06002751.png b/static/icons/06002751.png
new file mode 100755
index 00000000..f0d42954
Binary files /dev/null and b/static/icons/06002751.png differ
diff --git a/static/icons/06002752.png b/static/icons/06002752.png
new file mode 100755
index 00000000..fe2d9a89
Binary files /dev/null and b/static/icons/06002752.png differ
diff --git a/static/icons/06002753.png b/static/icons/06002753.png
new file mode 100755
index 00000000..53349612
Binary files /dev/null and b/static/icons/06002753.png differ
diff --git a/static/icons/0600275B.png b/static/icons/0600275B.png
new file mode 100755
index 00000000..fe42a7e4
Binary files /dev/null and b/static/icons/0600275B.png differ
diff --git a/static/icons/0600275C.png b/static/icons/0600275C.png
new file mode 100755
index 00000000..fa83b420
Binary files /dev/null and b/static/icons/0600275C.png differ
diff --git a/static/icons/0600275F.png b/static/icons/0600275F.png
new file mode 100755
index 00000000..5433b875
Binary files /dev/null and b/static/icons/0600275F.png differ
diff --git a/static/icons/06002760.png b/static/icons/06002760.png
new file mode 100755
index 00000000..5b45e431
Binary files /dev/null and b/static/icons/06002760.png differ
diff --git a/static/icons/06002761.png b/static/icons/06002761.png
new file mode 100755
index 00000000..2d416f69
Binary files /dev/null and b/static/icons/06002761.png differ
diff --git a/static/icons/06002762.png b/static/icons/06002762.png
new file mode 100755
index 00000000..fd102809
Binary files /dev/null and b/static/icons/06002762.png differ
diff --git a/static/icons/06002763.png b/static/icons/06002763.png
new file mode 100755
index 00000000..f3eb3f2f
Binary files /dev/null and b/static/icons/06002763.png differ
diff --git a/static/icons/06002764.png b/static/icons/06002764.png
new file mode 100755
index 00000000..73a083ba
Binary files /dev/null and b/static/icons/06002764.png differ
diff --git a/static/icons/06002765.png b/static/icons/06002765.png
new file mode 100755
index 00000000..685d2307
Binary files /dev/null and b/static/icons/06002765.png differ
diff --git a/static/icons/06002766.png b/static/icons/06002766.png
new file mode 100755
index 00000000..5652a4f2
Binary files /dev/null and b/static/icons/06002766.png differ
diff --git a/static/icons/06002767.png b/static/icons/06002767.png
new file mode 100755
index 00000000..51c97f14
Binary files /dev/null and b/static/icons/06002767.png differ
diff --git a/static/icons/06002768.png b/static/icons/06002768.png
new file mode 100755
index 00000000..332531ea
Binary files /dev/null and b/static/icons/06002768.png differ
diff --git a/static/icons/06002769.png b/static/icons/06002769.png
new file mode 100755
index 00000000..c4903a2f
Binary files /dev/null and b/static/icons/06002769.png differ
diff --git a/static/icons/0600276A.png b/static/icons/0600276A.png
new file mode 100755
index 00000000..87441da8
Binary files /dev/null and b/static/icons/0600276A.png differ
diff --git a/static/icons/0600276B.png b/static/icons/0600276B.png
new file mode 100755
index 00000000..e2615f29
Binary files /dev/null and b/static/icons/0600276B.png differ
diff --git a/static/icons/0600276C.png b/static/icons/0600276C.png
new file mode 100755
index 00000000..a394e675
Binary files /dev/null and b/static/icons/0600276C.png differ
diff --git a/static/icons/0600276D.png b/static/icons/0600276D.png
new file mode 100755
index 00000000..01406c17
Binary files /dev/null and b/static/icons/0600276D.png differ
diff --git a/static/icons/0600276E.png b/static/icons/0600276E.png
new file mode 100755
index 00000000..f76b39db
Binary files /dev/null and b/static/icons/0600276E.png differ
diff --git a/static/icons/0600276F.png b/static/icons/0600276F.png
new file mode 100755
index 00000000..cfd6dbe4
Binary files /dev/null and b/static/icons/0600276F.png differ
diff --git a/static/icons/06002770.png b/static/icons/06002770.png
new file mode 100755
index 00000000..4ea23843
Binary files /dev/null and b/static/icons/06002770.png differ
diff --git a/static/icons/06002771.png b/static/icons/06002771.png
new file mode 100755
index 00000000..b17f0742
Binary files /dev/null and b/static/icons/06002771.png differ
diff --git a/static/icons/06002772.png b/static/icons/06002772.png
new file mode 100755
index 00000000..5e396fb0
Binary files /dev/null and b/static/icons/06002772.png differ
diff --git a/static/icons/06002773.png b/static/icons/06002773.png
new file mode 100755
index 00000000..e0b7b7d1
Binary files /dev/null and b/static/icons/06002773.png differ
diff --git a/static/icons/06002774.png b/static/icons/06002774.png
new file mode 100755
index 00000000..49e7c59f
Binary files /dev/null and b/static/icons/06002774.png differ
diff --git a/static/icons/06002775.png b/static/icons/06002775.png
new file mode 100755
index 00000000..f31be702
Binary files /dev/null and b/static/icons/06002775.png differ
diff --git a/static/icons/06002776.png b/static/icons/06002776.png
new file mode 100755
index 00000000..d999e345
Binary files /dev/null and b/static/icons/06002776.png differ
diff --git a/static/icons/06002777.png b/static/icons/06002777.png
new file mode 100755
index 00000000..ed88b0be
Binary files /dev/null and b/static/icons/06002777.png differ
diff --git a/static/icons/06002778.png b/static/icons/06002778.png
new file mode 100755
index 00000000..79548544
Binary files /dev/null and b/static/icons/06002778.png differ
diff --git a/static/icons/06002779.png b/static/icons/06002779.png
new file mode 100755
index 00000000..6fb17bee
Binary files /dev/null and b/static/icons/06002779.png differ
diff --git a/static/icons/0600277A.png b/static/icons/0600277A.png
new file mode 100755
index 00000000..66b1c14d
Binary files /dev/null and b/static/icons/0600277A.png differ
diff --git a/static/icons/0600277B.png b/static/icons/0600277B.png
new file mode 100755
index 00000000..83508829
Binary files /dev/null and b/static/icons/0600277B.png differ
diff --git a/static/icons/0600277C.png b/static/icons/0600277C.png
new file mode 100755
index 00000000..2b6cd385
Binary files /dev/null and b/static/icons/0600277C.png differ
diff --git a/static/icons/0600277D.png b/static/icons/0600277D.png
new file mode 100755
index 00000000..e4bb0b93
Binary files /dev/null and b/static/icons/0600277D.png differ
diff --git a/static/icons/0600277E.png b/static/icons/0600277E.png
new file mode 100755
index 00000000..e10a0a63
Binary files /dev/null and b/static/icons/0600277E.png differ
diff --git a/static/icons/0600277F.png b/static/icons/0600277F.png
new file mode 100755
index 00000000..68148ace
Binary files /dev/null and b/static/icons/0600277F.png differ
diff --git a/static/icons/06002780.png b/static/icons/06002780.png
new file mode 100755
index 00000000..30baf381
Binary files /dev/null and b/static/icons/06002780.png differ
diff --git a/static/icons/06002781.png b/static/icons/06002781.png
new file mode 100755
index 00000000..9440a700
Binary files /dev/null and b/static/icons/06002781.png differ
diff --git a/static/icons/06002782.png b/static/icons/06002782.png
new file mode 100755
index 00000000..39fa1692
Binary files /dev/null and b/static/icons/06002782.png differ
diff --git a/static/icons/06002783.png b/static/icons/06002783.png
new file mode 100755
index 00000000..9b79c28f
Binary files /dev/null and b/static/icons/06002783.png differ
diff --git a/static/icons/06002784.png b/static/icons/06002784.png
new file mode 100755
index 00000000..65dce41c
Binary files /dev/null and b/static/icons/06002784.png differ
diff --git a/static/icons/06002785.png b/static/icons/06002785.png
new file mode 100755
index 00000000..7daac466
Binary files /dev/null and b/static/icons/06002785.png differ
diff --git a/static/icons/06002786.png b/static/icons/06002786.png
new file mode 100755
index 00000000..621da48d
Binary files /dev/null and b/static/icons/06002786.png differ
diff --git a/static/icons/06002787.png b/static/icons/06002787.png
new file mode 100755
index 00000000..97aa7ede
Binary files /dev/null and b/static/icons/06002787.png differ
diff --git a/static/icons/06002788.png b/static/icons/06002788.png
new file mode 100755
index 00000000..d2c6bde0
Binary files /dev/null and b/static/icons/06002788.png differ
diff --git a/static/icons/06002789.png b/static/icons/06002789.png
new file mode 100755
index 00000000..f9f20c8f
Binary files /dev/null and b/static/icons/06002789.png differ
diff --git a/static/icons/0600278A.png b/static/icons/0600278A.png
new file mode 100755
index 00000000..3c330a1d
Binary files /dev/null and b/static/icons/0600278A.png differ
diff --git a/static/icons/0600278B.png b/static/icons/0600278B.png
new file mode 100755
index 00000000..b37970b0
Binary files /dev/null and b/static/icons/0600278B.png differ
diff --git a/static/icons/0600278C.png b/static/icons/0600278C.png
new file mode 100755
index 00000000..8bbff91b
Binary files /dev/null and b/static/icons/0600278C.png differ
diff --git a/static/icons/0600278D.png b/static/icons/0600278D.png
new file mode 100755
index 00000000..18beeceb
Binary files /dev/null and b/static/icons/0600278D.png differ
diff --git a/static/icons/0600278E.png b/static/icons/0600278E.png
new file mode 100755
index 00000000..aa10cabe
Binary files /dev/null and b/static/icons/0600278E.png differ
diff --git a/static/icons/0600278F.png b/static/icons/0600278F.png
new file mode 100755
index 00000000..f429ac8e
Binary files /dev/null and b/static/icons/0600278F.png differ
diff --git a/static/icons/06002790.png b/static/icons/06002790.png
new file mode 100755
index 00000000..91c322f6
Binary files /dev/null and b/static/icons/06002790.png differ
diff --git a/static/icons/06002791.png b/static/icons/06002791.png
new file mode 100755
index 00000000..b6d7e966
Binary files /dev/null and b/static/icons/06002791.png differ
diff --git a/static/icons/06002792.png b/static/icons/06002792.png
new file mode 100755
index 00000000..b748b325
Binary files /dev/null and b/static/icons/06002792.png differ
diff --git a/static/icons/06002793.png b/static/icons/06002793.png
new file mode 100755
index 00000000..4d8edf1f
Binary files /dev/null and b/static/icons/06002793.png differ
diff --git a/static/icons/06002794.png b/static/icons/06002794.png
new file mode 100755
index 00000000..a06b3f47
Binary files /dev/null and b/static/icons/06002794.png differ
diff --git a/static/icons/06002795.png b/static/icons/06002795.png
new file mode 100755
index 00000000..2f1c5517
Binary files /dev/null and b/static/icons/06002795.png differ
diff --git a/static/icons/06002796.png b/static/icons/06002796.png
new file mode 100755
index 00000000..fae07061
Binary files /dev/null and b/static/icons/06002796.png differ
diff --git a/static/icons/06002797.png b/static/icons/06002797.png
new file mode 100755
index 00000000..f9708411
Binary files /dev/null and b/static/icons/06002797.png differ
diff --git a/static/icons/06002798.png b/static/icons/06002798.png
new file mode 100755
index 00000000..80ab5f3d
Binary files /dev/null and b/static/icons/06002798.png differ
diff --git a/static/icons/06002799.png b/static/icons/06002799.png
new file mode 100755
index 00000000..4459457d
Binary files /dev/null and b/static/icons/06002799.png differ
diff --git a/static/icons/0600279A.png b/static/icons/0600279A.png
new file mode 100755
index 00000000..1e5e43c0
Binary files /dev/null and b/static/icons/0600279A.png differ
diff --git a/static/icons/0600279B.png b/static/icons/0600279B.png
new file mode 100755
index 00000000..d4a9d1ba
Binary files /dev/null and b/static/icons/0600279B.png differ
diff --git a/static/icons/0600279C.png b/static/icons/0600279C.png
new file mode 100755
index 00000000..f2bfb453
Binary files /dev/null and b/static/icons/0600279C.png differ
diff --git a/static/icons/0600279D.png b/static/icons/0600279D.png
new file mode 100755
index 00000000..4cd39bc0
Binary files /dev/null and b/static/icons/0600279D.png differ
diff --git a/static/icons/0600279E.png b/static/icons/0600279E.png
new file mode 100755
index 00000000..15665344
Binary files /dev/null and b/static/icons/0600279E.png differ
diff --git a/static/icons/0600279F.png b/static/icons/0600279F.png
new file mode 100755
index 00000000..25f77a11
Binary files /dev/null and b/static/icons/0600279F.png differ
diff --git a/static/icons/060027A0.png b/static/icons/060027A0.png
new file mode 100755
index 00000000..e3a9d36c
Binary files /dev/null and b/static/icons/060027A0.png differ
diff --git a/static/icons/060027A1.png b/static/icons/060027A1.png
new file mode 100755
index 00000000..b02e77a1
Binary files /dev/null and b/static/icons/060027A1.png differ
diff --git a/static/icons/060027A2.png b/static/icons/060027A2.png
new file mode 100755
index 00000000..cd2b7f06
Binary files /dev/null and b/static/icons/060027A2.png differ
diff --git a/static/icons/060027A3.png b/static/icons/060027A3.png
new file mode 100755
index 00000000..21bd9594
Binary files /dev/null and b/static/icons/060027A3.png differ
diff --git a/static/icons/060027A4.png b/static/icons/060027A4.png
new file mode 100755
index 00000000..2dada30f
Binary files /dev/null and b/static/icons/060027A4.png differ
diff --git a/static/icons/060027A5.png b/static/icons/060027A5.png
new file mode 100755
index 00000000..81787bf3
Binary files /dev/null and b/static/icons/060027A5.png differ
diff --git a/static/icons/060027A6.png b/static/icons/060027A6.png
new file mode 100755
index 00000000..38f6b270
Binary files /dev/null and b/static/icons/060027A6.png differ
diff --git a/static/icons/060027A7.png b/static/icons/060027A7.png
new file mode 100755
index 00000000..cf57ed4e
Binary files /dev/null and b/static/icons/060027A7.png differ
diff --git a/static/icons/060027A8.png b/static/icons/060027A8.png
new file mode 100755
index 00000000..c85c8a72
Binary files /dev/null and b/static/icons/060027A8.png differ
diff --git a/static/icons/060027A9.png b/static/icons/060027A9.png
new file mode 100755
index 00000000..8f3cc4dc
Binary files /dev/null and b/static/icons/060027A9.png differ
diff --git a/static/icons/060027AA.png b/static/icons/060027AA.png
new file mode 100755
index 00000000..ded9dac9
Binary files /dev/null and b/static/icons/060027AA.png differ
diff --git a/static/icons/060027AB.png b/static/icons/060027AB.png
new file mode 100755
index 00000000..e57b57a5
Binary files /dev/null and b/static/icons/060027AB.png differ
diff --git a/static/icons/060027AC.png b/static/icons/060027AC.png
new file mode 100755
index 00000000..1a214066
Binary files /dev/null and b/static/icons/060027AC.png differ
diff --git a/static/icons/060027AD.png b/static/icons/060027AD.png
new file mode 100755
index 00000000..07bac8ae
Binary files /dev/null and b/static/icons/060027AD.png differ
diff --git a/static/icons/060027AE.png b/static/icons/060027AE.png
new file mode 100755
index 00000000..4ae27994
Binary files /dev/null and b/static/icons/060027AE.png differ
diff --git a/static/icons/060027AF.png b/static/icons/060027AF.png
new file mode 100755
index 00000000..1a835a58
Binary files /dev/null and b/static/icons/060027AF.png differ
diff --git a/static/icons/060027B0.png b/static/icons/060027B0.png
new file mode 100755
index 00000000..b5d064fd
Binary files /dev/null and b/static/icons/060027B0.png differ
diff --git a/static/icons/060027B1.png b/static/icons/060027B1.png
new file mode 100755
index 00000000..36cdef46
Binary files /dev/null and b/static/icons/060027B1.png differ
diff --git a/static/icons/060027B2.png b/static/icons/060027B2.png
new file mode 100755
index 00000000..010540d8
Binary files /dev/null and b/static/icons/060027B2.png differ
diff --git a/static/icons/060027B3.png b/static/icons/060027B3.png
new file mode 100755
index 00000000..b468ea6b
Binary files /dev/null and b/static/icons/060027B3.png differ
diff --git a/static/icons/060027B4.png b/static/icons/060027B4.png
new file mode 100755
index 00000000..db588581
Binary files /dev/null and b/static/icons/060027B4.png differ
diff --git a/static/icons/060027B5.png b/static/icons/060027B5.png
new file mode 100755
index 00000000..feeeeaf5
Binary files /dev/null and b/static/icons/060027B5.png differ
diff --git a/static/icons/060027B6.png b/static/icons/060027B6.png
new file mode 100755
index 00000000..2430184d
Binary files /dev/null and b/static/icons/060027B6.png differ
diff --git a/static/icons/060027B7.png b/static/icons/060027B7.png
new file mode 100755
index 00000000..05bca156
Binary files /dev/null and b/static/icons/060027B7.png differ
diff --git a/static/icons/060027B8.png b/static/icons/060027B8.png
new file mode 100755
index 00000000..5d415db9
Binary files /dev/null and b/static/icons/060027B8.png differ
diff --git a/static/icons/060027B9.png b/static/icons/060027B9.png
new file mode 100755
index 00000000..14d996b9
Binary files /dev/null and b/static/icons/060027B9.png differ
diff --git a/static/icons/060027BA.png b/static/icons/060027BA.png
new file mode 100755
index 00000000..2a3a0dc1
Binary files /dev/null and b/static/icons/060027BA.png differ
diff --git a/static/icons/060027BB.png b/static/icons/060027BB.png
new file mode 100755
index 00000000..9f4c76dd
Binary files /dev/null and b/static/icons/060027BB.png differ
diff --git a/static/icons/060027BC.png b/static/icons/060027BC.png
new file mode 100755
index 00000000..a9bcb269
Binary files /dev/null and b/static/icons/060027BC.png differ
diff --git a/static/icons/060027BD.png b/static/icons/060027BD.png
new file mode 100755
index 00000000..b566087a
Binary files /dev/null and b/static/icons/060027BD.png differ
diff --git a/static/icons/060027BE.png b/static/icons/060027BE.png
new file mode 100755
index 00000000..31bc496e
Binary files /dev/null and b/static/icons/060027BE.png differ
diff --git a/static/icons/060027BF.png b/static/icons/060027BF.png
new file mode 100755
index 00000000..17536bcc
Binary files /dev/null and b/static/icons/060027BF.png differ
diff --git a/static/icons/060027C0.png b/static/icons/060027C0.png
new file mode 100755
index 00000000..deb2763e
Binary files /dev/null and b/static/icons/060027C0.png differ
diff --git a/static/icons/060027C1.png b/static/icons/060027C1.png
new file mode 100755
index 00000000..d99f12f0
Binary files /dev/null and b/static/icons/060027C1.png differ
diff --git a/static/icons/060027C2.png b/static/icons/060027C2.png
new file mode 100755
index 00000000..ea34dd48
Binary files /dev/null and b/static/icons/060027C2.png differ
diff --git a/static/icons/060027C3.png b/static/icons/060027C3.png
new file mode 100755
index 00000000..043259f7
Binary files /dev/null and b/static/icons/060027C3.png differ
diff --git a/static/icons/060027C4.png b/static/icons/060027C4.png
new file mode 100755
index 00000000..13e575bd
Binary files /dev/null and b/static/icons/060027C4.png differ
diff --git a/static/icons/060027C5.png b/static/icons/060027C5.png
new file mode 100755
index 00000000..926da41f
Binary files /dev/null and b/static/icons/060027C5.png differ
diff --git a/static/icons/060027C6.png b/static/icons/060027C6.png
new file mode 100755
index 00000000..3ddad74b
Binary files /dev/null and b/static/icons/060027C6.png differ
diff --git a/static/icons/060027C7.png b/static/icons/060027C7.png
new file mode 100755
index 00000000..20dbe546
Binary files /dev/null and b/static/icons/060027C7.png differ
diff --git a/static/icons/060027C8.png b/static/icons/060027C8.png
new file mode 100755
index 00000000..643f2252
Binary files /dev/null and b/static/icons/060027C8.png differ
diff --git a/static/icons/060027C9.png b/static/icons/060027C9.png
new file mode 100755
index 00000000..c5ca47ca
Binary files /dev/null and b/static/icons/060027C9.png differ
diff --git a/static/icons/060027CA.png b/static/icons/060027CA.png
new file mode 100755
index 00000000..1fea0aba
Binary files /dev/null and b/static/icons/060027CA.png differ
diff --git a/static/icons/060027CB.png b/static/icons/060027CB.png
new file mode 100755
index 00000000..35a57341
Binary files /dev/null and b/static/icons/060027CB.png differ
diff --git a/static/icons/060027CC.png b/static/icons/060027CC.png
new file mode 100755
index 00000000..67e3c2e8
Binary files /dev/null and b/static/icons/060027CC.png differ
diff --git a/static/icons/060027CD.png b/static/icons/060027CD.png
new file mode 100755
index 00000000..c640b327
Binary files /dev/null and b/static/icons/060027CD.png differ
diff --git a/static/icons/060027CE.png b/static/icons/060027CE.png
new file mode 100755
index 00000000..57bd5b6a
Binary files /dev/null and b/static/icons/060027CE.png differ
diff --git a/static/icons/060027CF.png b/static/icons/060027CF.png
new file mode 100755
index 00000000..5e296f2a
Binary files /dev/null and b/static/icons/060027CF.png differ
diff --git a/static/icons/060027D0.png b/static/icons/060027D0.png
new file mode 100755
index 00000000..6f1e0e46
Binary files /dev/null and b/static/icons/060027D0.png differ
diff --git a/static/icons/060027D1.png b/static/icons/060027D1.png
new file mode 100755
index 00000000..31f55082
Binary files /dev/null and b/static/icons/060027D1.png differ
diff --git a/static/icons/060027D2.png b/static/icons/060027D2.png
new file mode 100755
index 00000000..914dd0de
Binary files /dev/null and b/static/icons/060027D2.png differ
diff --git a/static/icons/060027D3.png b/static/icons/060027D3.png
new file mode 100755
index 00000000..e3c85d46
Binary files /dev/null and b/static/icons/060027D3.png differ
diff --git a/static/icons/060027D4.png b/static/icons/060027D4.png
new file mode 100755
index 00000000..253382ea
Binary files /dev/null and b/static/icons/060027D4.png differ
diff --git a/static/icons/060027D5.png b/static/icons/060027D5.png
new file mode 100755
index 00000000..390a1ea0
Binary files /dev/null and b/static/icons/060027D5.png differ
diff --git a/static/icons/060027D6.png b/static/icons/060027D6.png
new file mode 100755
index 00000000..4f7f6101
Binary files /dev/null and b/static/icons/060027D6.png differ
diff --git a/static/icons/060027D7.png b/static/icons/060027D7.png
new file mode 100755
index 00000000..3c6391d3
Binary files /dev/null and b/static/icons/060027D7.png differ
diff --git a/static/icons/060027D8.png b/static/icons/060027D8.png
new file mode 100755
index 00000000..84c59552
Binary files /dev/null and b/static/icons/060027D8.png differ
diff --git a/static/icons/060027D9.png b/static/icons/060027D9.png
new file mode 100755
index 00000000..6124f327
Binary files /dev/null and b/static/icons/060027D9.png differ
diff --git a/static/icons/060027DA.png b/static/icons/060027DA.png
new file mode 100755
index 00000000..a7412e5e
Binary files /dev/null and b/static/icons/060027DA.png differ
diff --git a/static/icons/060027DB.png b/static/icons/060027DB.png
new file mode 100755
index 00000000..b2054914
Binary files /dev/null and b/static/icons/060027DB.png differ
diff --git a/static/icons/060027DC.png b/static/icons/060027DC.png
new file mode 100755
index 00000000..e5d493de
Binary files /dev/null and b/static/icons/060027DC.png differ
diff --git a/static/icons/060027DD.png b/static/icons/060027DD.png
new file mode 100755
index 00000000..7ef4e149
Binary files /dev/null and b/static/icons/060027DD.png differ
diff --git a/static/icons/060027DE.png b/static/icons/060027DE.png
new file mode 100755
index 00000000..c7e39072
Binary files /dev/null and b/static/icons/060027DE.png differ
diff --git a/static/icons/060027DF.png b/static/icons/060027DF.png
new file mode 100755
index 00000000..33a555a3
Binary files /dev/null and b/static/icons/060027DF.png differ
diff --git a/static/icons/060027E0.png b/static/icons/060027E0.png
new file mode 100755
index 00000000..d410f636
Binary files /dev/null and b/static/icons/060027E0.png differ
diff --git a/static/icons/060027E1.png b/static/icons/060027E1.png
new file mode 100755
index 00000000..f5e822ef
Binary files /dev/null and b/static/icons/060027E1.png differ
diff --git a/static/icons/060027E2.png b/static/icons/060027E2.png
new file mode 100755
index 00000000..6ebfd5ca
Binary files /dev/null and b/static/icons/060027E2.png differ
diff --git a/static/icons/060027E3.png b/static/icons/060027E3.png
new file mode 100755
index 00000000..d2c9e442
Binary files /dev/null and b/static/icons/060027E3.png differ
diff --git a/static/icons/060027E5.png b/static/icons/060027E5.png
new file mode 100755
index 00000000..ae87c8dd
Binary files /dev/null and b/static/icons/060027E5.png differ
diff --git a/static/icons/060027E6.png b/static/icons/060027E6.png
new file mode 100755
index 00000000..b4d4b472
Binary files /dev/null and b/static/icons/060027E6.png differ
diff --git a/static/icons/06002815.png b/static/icons/06002815.png
new file mode 100755
index 00000000..b4264a65
Binary files /dev/null and b/static/icons/06002815.png differ
diff --git a/static/icons/06002816.png b/static/icons/06002816.png
new file mode 100755
index 00000000..9138d107
Binary files /dev/null and b/static/icons/06002816.png differ
diff --git a/static/icons/06002817.png b/static/icons/06002817.png
new file mode 100755
index 00000000..b3dda8c1
Binary files /dev/null and b/static/icons/06002817.png differ
diff --git a/static/icons/06002818.png b/static/icons/06002818.png
new file mode 100755
index 00000000..fc41662e
Binary files /dev/null and b/static/icons/06002818.png differ
diff --git a/static/icons/06002819.png b/static/icons/06002819.png
new file mode 100755
index 00000000..2b898990
Binary files /dev/null and b/static/icons/06002819.png differ
diff --git a/static/icons/0600281A.png b/static/icons/0600281A.png
new file mode 100755
index 00000000..73401fd8
Binary files /dev/null and b/static/icons/0600281A.png differ
diff --git a/static/icons/0600281B.png b/static/icons/0600281B.png
new file mode 100755
index 00000000..36d387eb
Binary files /dev/null and b/static/icons/0600281B.png differ
diff --git a/static/icons/0600281C.png b/static/icons/0600281C.png
new file mode 100755
index 00000000..cd2e044f
Binary files /dev/null and b/static/icons/0600281C.png differ
diff --git a/static/icons/0600281D.png b/static/icons/0600281D.png
new file mode 100755
index 00000000..21f53d1e
Binary files /dev/null and b/static/icons/0600281D.png differ
diff --git a/static/icons/0600281E.png b/static/icons/0600281E.png
new file mode 100755
index 00000000..d45320ab
Binary files /dev/null and b/static/icons/0600281E.png differ
diff --git a/static/icons/0600281F.png b/static/icons/0600281F.png
new file mode 100755
index 00000000..937c1acc
Binary files /dev/null and b/static/icons/0600281F.png differ
diff --git a/static/icons/06002820.png b/static/icons/06002820.png
new file mode 100755
index 00000000..75146402
Binary files /dev/null and b/static/icons/06002820.png differ
diff --git a/static/icons/06002821.png b/static/icons/06002821.png
new file mode 100755
index 00000000..3c922c27
Binary files /dev/null and b/static/icons/06002821.png differ
diff --git a/static/icons/06002822.png b/static/icons/06002822.png
new file mode 100755
index 00000000..b952e968
Binary files /dev/null and b/static/icons/06002822.png differ
diff --git a/static/icons/06002823.png b/static/icons/06002823.png
new file mode 100755
index 00000000..d63818e8
Binary files /dev/null and b/static/icons/06002823.png differ
diff --git a/static/icons/06002824.png b/static/icons/06002824.png
new file mode 100755
index 00000000..0c97b738
Binary files /dev/null and b/static/icons/06002824.png differ
diff --git a/static/icons/06002825.png b/static/icons/06002825.png
new file mode 100755
index 00000000..bef4379f
Binary files /dev/null and b/static/icons/06002825.png differ
diff --git a/static/icons/06002826.png b/static/icons/06002826.png
new file mode 100755
index 00000000..3268511d
Binary files /dev/null and b/static/icons/06002826.png differ
diff --git a/static/icons/06002827.png b/static/icons/06002827.png
new file mode 100755
index 00000000..ac571f63
Binary files /dev/null and b/static/icons/06002827.png differ
diff --git a/static/icons/06002828.png b/static/icons/06002828.png
new file mode 100755
index 00000000..ae5fb037
Binary files /dev/null and b/static/icons/06002828.png differ
diff --git a/static/icons/0600282A.png b/static/icons/0600282A.png
new file mode 100755
index 00000000..513f7c83
Binary files /dev/null and b/static/icons/0600282A.png differ
diff --git a/static/icons/0600282B.png b/static/icons/0600282B.png
new file mode 100755
index 00000000..5f7c42d9
Binary files /dev/null and b/static/icons/0600282B.png differ
diff --git a/static/icons/0600282C.png b/static/icons/0600282C.png
new file mode 100755
index 00000000..98c20555
Binary files /dev/null and b/static/icons/0600282C.png differ
diff --git a/static/icons/0600282D.png b/static/icons/0600282D.png
new file mode 100755
index 00000000..aa8e288f
Binary files /dev/null and b/static/icons/0600282D.png differ
diff --git a/static/icons/0600282E.png b/static/icons/0600282E.png
new file mode 100755
index 00000000..1c15f45b
Binary files /dev/null and b/static/icons/0600282E.png differ
diff --git a/static/icons/0600282F.png b/static/icons/0600282F.png
new file mode 100755
index 00000000..e84e4a24
Binary files /dev/null and b/static/icons/0600282F.png differ
diff --git a/static/icons/06002830.png b/static/icons/06002830.png
new file mode 100755
index 00000000..7689a796
Binary files /dev/null and b/static/icons/06002830.png differ
diff --git a/static/icons/06002831.png b/static/icons/06002831.png
new file mode 100755
index 00000000..d6e270d4
Binary files /dev/null and b/static/icons/06002831.png differ
diff --git a/static/icons/06002832.png b/static/icons/06002832.png
new file mode 100755
index 00000000..b431e4d7
Binary files /dev/null and b/static/icons/06002832.png differ
diff --git a/static/icons/06002833.png b/static/icons/06002833.png
new file mode 100755
index 00000000..d3fb53d5
Binary files /dev/null and b/static/icons/06002833.png differ
diff --git a/static/icons/06002834.png b/static/icons/06002834.png
new file mode 100755
index 00000000..50dfc4e9
Binary files /dev/null and b/static/icons/06002834.png differ
diff --git a/static/icons/06002835.png b/static/icons/06002835.png
new file mode 100755
index 00000000..c9243b1b
Binary files /dev/null and b/static/icons/06002835.png differ
diff --git a/static/icons/06002836.png b/static/icons/06002836.png
new file mode 100755
index 00000000..ce1aa8ad
Binary files /dev/null and b/static/icons/06002836.png differ
diff --git a/static/icons/06002837.png b/static/icons/06002837.png
new file mode 100755
index 00000000..2061c658
Binary files /dev/null and b/static/icons/06002837.png differ
diff --git a/static/icons/06002838.png b/static/icons/06002838.png
new file mode 100755
index 00000000..856df844
Binary files /dev/null and b/static/icons/06002838.png differ
diff --git a/static/icons/06002839.png b/static/icons/06002839.png
new file mode 100755
index 00000000..ab842a01
Binary files /dev/null and b/static/icons/06002839.png differ
diff --git a/static/icons/0600283A.png b/static/icons/0600283A.png
new file mode 100755
index 00000000..9d2f8b32
Binary files /dev/null and b/static/icons/0600283A.png differ
diff --git a/static/icons/0600283B.png b/static/icons/0600283B.png
new file mode 100755
index 00000000..22e95623
Binary files /dev/null and b/static/icons/0600283B.png differ
diff --git a/static/icons/0600283C.png b/static/icons/0600283C.png
new file mode 100755
index 00000000..9a562c6c
Binary files /dev/null and b/static/icons/0600283C.png differ
diff --git a/static/icons/0600283D.png b/static/icons/0600283D.png
new file mode 100755
index 00000000..fad5488f
Binary files /dev/null and b/static/icons/0600283D.png differ
diff --git a/static/icons/0600283E.png b/static/icons/0600283E.png
new file mode 100755
index 00000000..3461fd72
Binary files /dev/null and b/static/icons/0600283E.png differ
diff --git a/static/icons/0600283F.png b/static/icons/0600283F.png
new file mode 100755
index 00000000..bbb04c4f
Binary files /dev/null and b/static/icons/0600283F.png differ
diff --git a/static/icons/06002840.png b/static/icons/06002840.png
new file mode 100755
index 00000000..fdcf34fb
Binary files /dev/null and b/static/icons/06002840.png differ
diff --git a/static/icons/06002841.png b/static/icons/06002841.png
new file mode 100755
index 00000000..95ff67ac
Binary files /dev/null and b/static/icons/06002841.png differ
diff --git a/static/icons/06002842.png b/static/icons/06002842.png
new file mode 100755
index 00000000..b803d89e
Binary files /dev/null and b/static/icons/06002842.png differ
diff --git a/static/icons/06002843.png b/static/icons/06002843.png
new file mode 100755
index 00000000..d6ce676e
Binary files /dev/null and b/static/icons/06002843.png differ
diff --git a/static/icons/06002844.png b/static/icons/06002844.png
new file mode 100755
index 00000000..eb542e73
Binary files /dev/null and b/static/icons/06002844.png differ
diff --git a/static/icons/06002845.png b/static/icons/06002845.png
new file mode 100755
index 00000000..9f19d35a
Binary files /dev/null and b/static/icons/06002845.png differ
diff --git a/static/icons/06002846.png b/static/icons/06002846.png
new file mode 100755
index 00000000..fdf611e0
Binary files /dev/null and b/static/icons/06002846.png differ
diff --git a/static/icons/06002847.png b/static/icons/06002847.png
new file mode 100755
index 00000000..4880048c
Binary files /dev/null and b/static/icons/06002847.png differ
diff --git a/static/icons/06002848.png b/static/icons/06002848.png
new file mode 100755
index 00000000..510d8fcf
Binary files /dev/null and b/static/icons/06002848.png differ
diff --git a/static/icons/06002849.png b/static/icons/06002849.png
new file mode 100755
index 00000000..f90f5d01
Binary files /dev/null and b/static/icons/06002849.png differ
diff --git a/static/icons/0600284A.png b/static/icons/0600284A.png
new file mode 100755
index 00000000..823e4635
Binary files /dev/null and b/static/icons/0600284A.png differ
diff --git a/static/icons/0600284B.png b/static/icons/0600284B.png
new file mode 100755
index 00000000..e6ddcc98
Binary files /dev/null and b/static/icons/0600284B.png differ
diff --git a/static/icons/0600284C.png b/static/icons/0600284C.png
new file mode 100755
index 00000000..a5f05f88
Binary files /dev/null and b/static/icons/0600284C.png differ
diff --git a/static/icons/0600284D.png b/static/icons/0600284D.png
new file mode 100755
index 00000000..4d7d8bc1
Binary files /dev/null and b/static/icons/0600284D.png differ
diff --git a/static/icons/0600284E.png b/static/icons/0600284E.png
new file mode 100755
index 00000000..545e1374
Binary files /dev/null and b/static/icons/0600284E.png differ
diff --git a/static/icons/0600284F.png b/static/icons/0600284F.png
new file mode 100755
index 00000000..fed897ce
Binary files /dev/null and b/static/icons/0600284F.png differ
diff --git a/static/icons/06002850.png b/static/icons/06002850.png
new file mode 100755
index 00000000..8c366ddd
Binary files /dev/null and b/static/icons/06002850.png differ
diff --git a/static/icons/06002851.png b/static/icons/06002851.png
new file mode 100755
index 00000000..5faae1c7
Binary files /dev/null and b/static/icons/06002851.png differ
diff --git a/static/icons/06002852.png b/static/icons/06002852.png
new file mode 100755
index 00000000..73ef58d9
Binary files /dev/null and b/static/icons/06002852.png differ
diff --git a/static/icons/06002853.png b/static/icons/06002853.png
new file mode 100755
index 00000000..e21339d6
Binary files /dev/null and b/static/icons/06002853.png differ
diff --git a/static/icons/06002854.png b/static/icons/06002854.png
new file mode 100755
index 00000000..2f833756
Binary files /dev/null and b/static/icons/06002854.png differ
diff --git a/static/icons/06002855.png b/static/icons/06002855.png
new file mode 100755
index 00000000..d91fb3a6
Binary files /dev/null and b/static/icons/06002855.png differ
diff --git a/static/icons/06002856.png b/static/icons/06002856.png
new file mode 100755
index 00000000..2f5b44cb
Binary files /dev/null and b/static/icons/06002856.png differ
diff --git a/static/icons/06002857.png b/static/icons/06002857.png
new file mode 100755
index 00000000..f2c9fec6
Binary files /dev/null and b/static/icons/06002857.png differ
diff --git a/static/icons/06002858.png b/static/icons/06002858.png
new file mode 100755
index 00000000..2f8049fd
Binary files /dev/null and b/static/icons/06002858.png differ
diff --git a/static/icons/06002859.png b/static/icons/06002859.png
new file mode 100755
index 00000000..6c1bfe4f
Binary files /dev/null and b/static/icons/06002859.png differ
diff --git a/static/icons/0600285A.png b/static/icons/0600285A.png
new file mode 100755
index 00000000..373ca323
Binary files /dev/null and b/static/icons/0600285A.png differ
diff --git a/static/icons/0600285B.png b/static/icons/0600285B.png
new file mode 100755
index 00000000..e3682071
Binary files /dev/null and b/static/icons/0600285B.png differ
diff --git a/static/icons/0600285C.png b/static/icons/0600285C.png
new file mode 100755
index 00000000..92e3af38
Binary files /dev/null and b/static/icons/0600285C.png differ
diff --git a/static/icons/0600285D.png b/static/icons/0600285D.png
new file mode 100755
index 00000000..bea8da8d
Binary files /dev/null and b/static/icons/0600285D.png differ
diff --git a/static/icons/0600285E.png b/static/icons/0600285E.png
new file mode 100755
index 00000000..85d8ac29
Binary files /dev/null and b/static/icons/0600285E.png differ
diff --git a/static/icons/0600285F.png b/static/icons/0600285F.png
new file mode 100755
index 00000000..5cb62a29
Binary files /dev/null and b/static/icons/0600285F.png differ
diff --git a/static/icons/06002860.png b/static/icons/06002860.png
new file mode 100755
index 00000000..3c19e12b
Binary files /dev/null and b/static/icons/06002860.png differ
diff --git a/static/icons/06002861.png b/static/icons/06002861.png
new file mode 100755
index 00000000..458c6d75
Binary files /dev/null and b/static/icons/06002861.png differ
diff --git a/static/icons/06002862.png b/static/icons/06002862.png
new file mode 100755
index 00000000..a22b88d4
Binary files /dev/null and b/static/icons/06002862.png differ
diff --git a/static/icons/06002863.png b/static/icons/06002863.png
new file mode 100755
index 00000000..0c312b16
Binary files /dev/null and b/static/icons/06002863.png differ
diff --git a/static/icons/06002864.png b/static/icons/06002864.png
new file mode 100755
index 00000000..03c4e206
Binary files /dev/null and b/static/icons/06002864.png differ
diff --git a/static/icons/06002865.png b/static/icons/06002865.png
new file mode 100755
index 00000000..bf6d7ed2
Binary files /dev/null and b/static/icons/06002865.png differ
diff --git a/static/icons/06002866.png b/static/icons/06002866.png
new file mode 100755
index 00000000..5f0a6e0c
Binary files /dev/null and b/static/icons/06002866.png differ
diff --git a/static/icons/06002867.png b/static/icons/06002867.png
new file mode 100755
index 00000000..41f8ed6b
Binary files /dev/null and b/static/icons/06002867.png differ
diff --git a/static/icons/06002868.png b/static/icons/06002868.png
new file mode 100755
index 00000000..4b8383f9
Binary files /dev/null and b/static/icons/06002868.png differ
diff --git a/static/icons/06002869.png b/static/icons/06002869.png
new file mode 100755
index 00000000..5833f1d5
Binary files /dev/null and b/static/icons/06002869.png differ
diff --git a/static/icons/0600286A.png b/static/icons/0600286A.png
new file mode 100755
index 00000000..ae60c69f
Binary files /dev/null and b/static/icons/0600286A.png differ
diff --git a/static/icons/0600286B.png b/static/icons/0600286B.png
new file mode 100755
index 00000000..5dd71dbe
Binary files /dev/null and b/static/icons/0600286B.png differ
diff --git a/static/icons/0600286C.png b/static/icons/0600286C.png
new file mode 100755
index 00000000..f6a11e87
Binary files /dev/null and b/static/icons/0600286C.png differ
diff --git a/static/icons/0600286D.png b/static/icons/0600286D.png
new file mode 100755
index 00000000..38861dea
Binary files /dev/null and b/static/icons/0600286D.png differ
diff --git a/static/icons/0600286E.png b/static/icons/0600286E.png
new file mode 100755
index 00000000..14a21115
Binary files /dev/null and b/static/icons/0600286E.png differ
diff --git a/static/icons/0600286F.png b/static/icons/0600286F.png
new file mode 100755
index 00000000..493919da
Binary files /dev/null and b/static/icons/0600286F.png differ
diff --git a/static/icons/06002870.png b/static/icons/06002870.png
new file mode 100755
index 00000000..283dfdae
Binary files /dev/null and b/static/icons/06002870.png differ
diff --git a/static/icons/06002872.png b/static/icons/06002872.png
new file mode 100755
index 00000000..c1181729
Binary files /dev/null and b/static/icons/06002872.png differ
diff --git a/static/icons/06002873.png b/static/icons/06002873.png
new file mode 100755
index 00000000..55196ba5
Binary files /dev/null and b/static/icons/06002873.png differ
diff --git a/static/icons/06002874.png b/static/icons/06002874.png
new file mode 100755
index 00000000..c6851d8a
Binary files /dev/null and b/static/icons/06002874.png differ
diff --git a/static/icons/06002875.png b/static/icons/06002875.png
new file mode 100755
index 00000000..1ca7cff0
Binary files /dev/null and b/static/icons/06002875.png differ
diff --git a/static/icons/06002876.png b/static/icons/06002876.png
new file mode 100755
index 00000000..b0e991c6
Binary files /dev/null and b/static/icons/06002876.png differ
diff --git a/static/icons/06002877.png b/static/icons/06002877.png
new file mode 100755
index 00000000..54a2c3ff
Binary files /dev/null and b/static/icons/06002877.png differ
diff --git a/static/icons/06002878.png b/static/icons/06002878.png
new file mode 100755
index 00000000..6f3b902c
Binary files /dev/null and b/static/icons/06002878.png differ
diff --git a/static/icons/06002879.png b/static/icons/06002879.png
new file mode 100755
index 00000000..46fb9149
Binary files /dev/null and b/static/icons/06002879.png differ
diff --git a/static/icons/0600287A.png b/static/icons/0600287A.png
new file mode 100755
index 00000000..d1425cda
Binary files /dev/null and b/static/icons/0600287A.png differ
diff --git a/static/icons/0600287B.png b/static/icons/0600287B.png
new file mode 100755
index 00000000..bddc6090
Binary files /dev/null and b/static/icons/0600287B.png differ
diff --git a/static/icons/0600287C.png b/static/icons/0600287C.png
new file mode 100755
index 00000000..fa0e759e
Binary files /dev/null and b/static/icons/0600287C.png differ
diff --git a/static/icons/0600287D.png b/static/icons/0600287D.png
new file mode 100755
index 00000000..2e383dea
Binary files /dev/null and b/static/icons/0600287D.png differ
diff --git a/static/icons/0600287E.png b/static/icons/0600287E.png
new file mode 100755
index 00000000..fcdcfd8d
Binary files /dev/null and b/static/icons/0600287E.png differ
diff --git a/static/icons/0600287F.png b/static/icons/0600287F.png
new file mode 100755
index 00000000..9f67c930
Binary files /dev/null and b/static/icons/0600287F.png differ
diff --git a/static/icons/06002880.png b/static/icons/06002880.png
new file mode 100755
index 00000000..4e4f4a85
Binary files /dev/null and b/static/icons/06002880.png differ
diff --git a/static/icons/06002881.png b/static/icons/06002881.png
new file mode 100755
index 00000000..4ab1b0e5
Binary files /dev/null and b/static/icons/06002881.png differ
diff --git a/static/icons/06002882.png b/static/icons/06002882.png
new file mode 100755
index 00000000..0fd77524
Binary files /dev/null and b/static/icons/06002882.png differ
diff --git a/static/icons/06002883.png b/static/icons/06002883.png
new file mode 100755
index 00000000..e9b08025
Binary files /dev/null and b/static/icons/06002883.png differ
diff --git a/static/icons/06002884.png b/static/icons/06002884.png
new file mode 100755
index 00000000..ef82686a
Binary files /dev/null and b/static/icons/06002884.png differ
diff --git a/static/icons/06002885.png b/static/icons/06002885.png
new file mode 100755
index 00000000..9176d041
Binary files /dev/null and b/static/icons/06002885.png differ
diff --git a/static/icons/06002886.png b/static/icons/06002886.png
new file mode 100755
index 00000000..be6ba98c
Binary files /dev/null and b/static/icons/06002886.png differ
diff --git a/static/icons/06002887.png b/static/icons/06002887.png
new file mode 100755
index 00000000..b3b74fa2
Binary files /dev/null and b/static/icons/06002887.png differ
diff --git a/static/icons/06002888.png b/static/icons/06002888.png
new file mode 100755
index 00000000..ec35b6cc
Binary files /dev/null and b/static/icons/06002888.png differ
diff --git a/static/icons/06002889.png b/static/icons/06002889.png
new file mode 100755
index 00000000..06d760a5
Binary files /dev/null and b/static/icons/06002889.png differ
diff --git a/static/icons/0600288B.png b/static/icons/0600288B.png
new file mode 100755
index 00000000..9d13241d
Binary files /dev/null and b/static/icons/0600288B.png differ
diff --git a/static/icons/0600288E.png b/static/icons/0600288E.png
new file mode 100755
index 00000000..b0a200fe
Binary files /dev/null and b/static/icons/0600288E.png differ
diff --git a/static/icons/0600288F.png b/static/icons/0600288F.png
new file mode 100755
index 00000000..0301fbab
Binary files /dev/null and b/static/icons/0600288F.png differ
diff --git a/static/icons/06002890.png b/static/icons/06002890.png
new file mode 100755
index 00000000..274c4b75
Binary files /dev/null and b/static/icons/06002890.png differ
diff --git a/static/icons/06002892.png b/static/icons/06002892.png
new file mode 100755
index 00000000..923ebf29
Binary files /dev/null and b/static/icons/06002892.png differ
diff --git a/static/icons/06002893.png b/static/icons/06002893.png
new file mode 100755
index 00000000..98a4650b
Binary files /dev/null and b/static/icons/06002893.png differ
diff --git a/static/icons/06002894.png b/static/icons/06002894.png
new file mode 100755
index 00000000..5efad443
Binary files /dev/null and b/static/icons/06002894.png differ
diff --git a/static/icons/06002895.png b/static/icons/06002895.png
new file mode 100755
index 00000000..8285c3f6
Binary files /dev/null and b/static/icons/06002895.png differ
diff --git a/static/icons/06002896.png b/static/icons/06002896.png
new file mode 100755
index 00000000..9ebccd8d
Binary files /dev/null and b/static/icons/06002896.png differ
diff --git a/static/icons/06002897.png b/static/icons/06002897.png
new file mode 100755
index 00000000..e3d1ce75
Binary files /dev/null and b/static/icons/06002897.png differ
diff --git a/static/icons/06002898.png b/static/icons/06002898.png
new file mode 100755
index 00000000..6933e77a
Binary files /dev/null and b/static/icons/06002898.png differ
diff --git a/static/icons/06002899.png b/static/icons/06002899.png
new file mode 100755
index 00000000..96f9936d
Binary files /dev/null and b/static/icons/06002899.png differ
diff --git a/static/icons/0600289A.png b/static/icons/0600289A.png
new file mode 100755
index 00000000..aac6dfba
Binary files /dev/null and b/static/icons/0600289A.png differ
diff --git a/static/icons/0600289B.png b/static/icons/0600289B.png
new file mode 100755
index 00000000..b2334751
Binary files /dev/null and b/static/icons/0600289B.png differ
diff --git a/static/icons/0600289C.png b/static/icons/0600289C.png
new file mode 100755
index 00000000..f6753d28
Binary files /dev/null and b/static/icons/0600289C.png differ
diff --git a/static/icons/0600289D.png b/static/icons/0600289D.png
new file mode 100755
index 00000000..fa196a9f
Binary files /dev/null and b/static/icons/0600289D.png differ
diff --git a/static/icons/0600289E.png b/static/icons/0600289E.png
new file mode 100755
index 00000000..af474f8c
Binary files /dev/null and b/static/icons/0600289E.png differ
diff --git a/static/icons/0600289F.png b/static/icons/0600289F.png
new file mode 100755
index 00000000..2e0dd983
Binary files /dev/null and b/static/icons/0600289F.png differ
diff --git a/static/icons/060028A0.png b/static/icons/060028A0.png
new file mode 100755
index 00000000..a9789a2b
Binary files /dev/null and b/static/icons/060028A0.png differ
diff --git a/static/icons/060028A1.png b/static/icons/060028A1.png
new file mode 100755
index 00000000..50749d5d
Binary files /dev/null and b/static/icons/060028A1.png differ
diff --git a/static/icons/060028A2.png b/static/icons/060028A2.png
new file mode 100755
index 00000000..5b0029a5
Binary files /dev/null and b/static/icons/060028A2.png differ
diff --git a/static/icons/060028A3.png b/static/icons/060028A3.png
new file mode 100755
index 00000000..ee888aa4
Binary files /dev/null and b/static/icons/060028A3.png differ
diff --git a/static/icons/060028A4.png b/static/icons/060028A4.png
new file mode 100755
index 00000000..1a8eb13e
Binary files /dev/null and b/static/icons/060028A4.png differ
diff --git a/static/icons/060028A5.png b/static/icons/060028A5.png
new file mode 100755
index 00000000..7908775d
Binary files /dev/null and b/static/icons/060028A5.png differ
diff --git a/static/icons/060028A6.png b/static/icons/060028A6.png
new file mode 100755
index 00000000..76313995
Binary files /dev/null and b/static/icons/060028A6.png differ
diff --git a/static/icons/060028A7.png b/static/icons/060028A7.png
new file mode 100755
index 00000000..3b9b5ad4
Binary files /dev/null and b/static/icons/060028A7.png differ
diff --git a/static/icons/060028A8.png b/static/icons/060028A8.png
new file mode 100755
index 00000000..bc71cebc
Binary files /dev/null and b/static/icons/060028A8.png differ
diff --git a/static/icons/060028A9.png b/static/icons/060028A9.png
new file mode 100755
index 00000000..cc1a0ca5
Binary files /dev/null and b/static/icons/060028A9.png differ
diff --git a/static/icons/060028AA.png b/static/icons/060028AA.png
new file mode 100755
index 00000000..88bada46
Binary files /dev/null and b/static/icons/060028AA.png differ
diff --git a/static/icons/060028AB.png b/static/icons/060028AB.png
new file mode 100755
index 00000000..76b3a64f
Binary files /dev/null and b/static/icons/060028AB.png differ
diff --git a/static/icons/060028AC.png b/static/icons/060028AC.png
new file mode 100755
index 00000000..6779cb30
Binary files /dev/null and b/static/icons/060028AC.png differ
diff --git a/static/icons/060028AD.png b/static/icons/060028AD.png
new file mode 100755
index 00000000..a03328f7
Binary files /dev/null and b/static/icons/060028AD.png differ
diff --git a/static/icons/060028AE.png b/static/icons/060028AE.png
new file mode 100755
index 00000000..bb32787c
Binary files /dev/null and b/static/icons/060028AE.png differ
diff --git a/static/icons/060028AF.png b/static/icons/060028AF.png
new file mode 100755
index 00000000..7083b7ef
Binary files /dev/null and b/static/icons/060028AF.png differ
diff --git a/static/icons/060028B0.png b/static/icons/060028B0.png
new file mode 100755
index 00000000..f8a11648
Binary files /dev/null and b/static/icons/060028B0.png differ
diff --git a/static/icons/060028B1.png b/static/icons/060028B1.png
new file mode 100755
index 00000000..ba0ca6b0
Binary files /dev/null and b/static/icons/060028B1.png differ
diff --git a/static/icons/060028B2.png b/static/icons/060028B2.png
new file mode 100755
index 00000000..d555cce3
Binary files /dev/null and b/static/icons/060028B2.png differ
diff --git a/static/icons/060028B3.png b/static/icons/060028B3.png
new file mode 100755
index 00000000..14543c18
Binary files /dev/null and b/static/icons/060028B3.png differ
diff --git a/static/icons/060028B4.png b/static/icons/060028B4.png
new file mode 100755
index 00000000..e1fd356d
Binary files /dev/null and b/static/icons/060028B4.png differ
diff --git a/static/icons/060028B5.png b/static/icons/060028B5.png
new file mode 100755
index 00000000..e0286bc4
Binary files /dev/null and b/static/icons/060028B5.png differ
diff --git a/static/icons/060028B6.png b/static/icons/060028B6.png
new file mode 100755
index 00000000..e30005f7
Binary files /dev/null and b/static/icons/060028B6.png differ
diff --git a/static/icons/060028B7.png b/static/icons/060028B7.png
new file mode 100755
index 00000000..0e3c8a2e
Binary files /dev/null and b/static/icons/060028B7.png differ
diff --git a/static/icons/060028C4.png b/static/icons/060028C4.png
new file mode 100755
index 00000000..823dd8ea
Binary files /dev/null and b/static/icons/060028C4.png differ
diff --git a/static/icons/060028C5.png b/static/icons/060028C5.png
new file mode 100755
index 00000000..c56bdbd8
Binary files /dev/null and b/static/icons/060028C5.png differ
diff --git a/static/icons/060028C6.png b/static/icons/060028C6.png
new file mode 100755
index 00000000..2f65d644
Binary files /dev/null and b/static/icons/060028C6.png differ
diff --git a/static/icons/060028C7.png b/static/icons/060028C7.png
new file mode 100755
index 00000000..81d5a86f
Binary files /dev/null and b/static/icons/060028C7.png differ
diff --git a/static/icons/060028C8.png b/static/icons/060028C8.png
new file mode 100755
index 00000000..3b8ba6ca
Binary files /dev/null and b/static/icons/060028C8.png differ
diff --git a/static/icons/060028C9.png b/static/icons/060028C9.png
new file mode 100755
index 00000000..b51ace09
Binary files /dev/null and b/static/icons/060028C9.png differ
diff --git a/static/icons/060028CA.png b/static/icons/060028CA.png
new file mode 100755
index 00000000..11ee1307
Binary files /dev/null and b/static/icons/060028CA.png differ
diff --git a/static/icons/060028CB.png b/static/icons/060028CB.png
new file mode 100755
index 00000000..5aad5087
Binary files /dev/null and b/static/icons/060028CB.png differ
diff --git a/static/icons/060028CC.png b/static/icons/060028CC.png
new file mode 100755
index 00000000..be176505
Binary files /dev/null and b/static/icons/060028CC.png differ
diff --git a/static/icons/060028CD.png b/static/icons/060028CD.png
new file mode 100755
index 00000000..c6de5c10
Binary files /dev/null and b/static/icons/060028CD.png differ
diff --git a/static/icons/060028D0.png b/static/icons/060028D0.png
new file mode 100755
index 00000000..0d1c5af8
Binary files /dev/null and b/static/icons/060028D0.png differ
diff --git a/static/icons/060028D9.png b/static/icons/060028D9.png
new file mode 100755
index 00000000..32e38531
Binary files /dev/null and b/static/icons/060028D9.png differ
diff --git a/static/icons/060028DA.png b/static/icons/060028DA.png
new file mode 100755
index 00000000..b7a8831d
Binary files /dev/null and b/static/icons/060028DA.png differ
diff --git a/static/icons/060028DB.png b/static/icons/060028DB.png
new file mode 100755
index 00000000..8caa3792
Binary files /dev/null and b/static/icons/060028DB.png differ
diff --git a/static/icons/060028DC.png b/static/icons/060028DC.png
new file mode 100755
index 00000000..81cf216d
Binary files /dev/null and b/static/icons/060028DC.png differ
diff --git a/static/icons/060028DD.png b/static/icons/060028DD.png
new file mode 100755
index 00000000..05c8b769
Binary files /dev/null and b/static/icons/060028DD.png differ
diff --git a/static/icons/060028DE.png b/static/icons/060028DE.png
new file mode 100755
index 00000000..ca7b18cd
Binary files /dev/null and b/static/icons/060028DE.png differ
diff --git a/static/icons/060028DF.png b/static/icons/060028DF.png
new file mode 100755
index 00000000..8616c3a6
Binary files /dev/null and b/static/icons/060028DF.png differ
diff --git a/static/icons/060028E0.png b/static/icons/060028E0.png
new file mode 100755
index 00000000..32ede7f2
Binary files /dev/null and b/static/icons/060028E0.png differ
diff --git a/static/icons/060028E1.png b/static/icons/060028E1.png
new file mode 100755
index 00000000..b496965e
Binary files /dev/null and b/static/icons/060028E1.png differ
diff --git a/static/icons/060028E2.png b/static/icons/060028E2.png
new file mode 100755
index 00000000..fb72b9ca
Binary files /dev/null and b/static/icons/060028E2.png differ
diff --git a/static/icons/060028E3.png b/static/icons/060028E3.png
new file mode 100755
index 00000000..2d1ca8c1
Binary files /dev/null and b/static/icons/060028E3.png differ
diff --git a/static/icons/060028E4.png b/static/icons/060028E4.png
new file mode 100755
index 00000000..66e60a9f
Binary files /dev/null and b/static/icons/060028E4.png differ
diff --git a/static/icons/060028E5.png b/static/icons/060028E5.png
new file mode 100755
index 00000000..c38490c0
Binary files /dev/null and b/static/icons/060028E5.png differ
diff --git a/static/icons/060028E6.png b/static/icons/060028E6.png
new file mode 100755
index 00000000..7159fd39
Binary files /dev/null and b/static/icons/060028E6.png differ
diff --git a/static/icons/060028E7.png b/static/icons/060028E7.png
new file mode 100755
index 00000000..9fbe570c
Binary files /dev/null and b/static/icons/060028E7.png differ
diff --git a/static/icons/060028E8.png b/static/icons/060028E8.png
new file mode 100755
index 00000000..7202feab
Binary files /dev/null and b/static/icons/060028E8.png differ
diff --git a/static/icons/060028E9.png b/static/icons/060028E9.png
new file mode 100755
index 00000000..7703b97d
Binary files /dev/null and b/static/icons/060028E9.png differ
diff --git a/static/icons/060028EA.png b/static/icons/060028EA.png
new file mode 100755
index 00000000..e3171363
Binary files /dev/null and b/static/icons/060028EA.png differ
diff --git a/static/icons/060028EB.png b/static/icons/060028EB.png
new file mode 100755
index 00000000..18914c4b
Binary files /dev/null and b/static/icons/060028EB.png differ
diff --git a/static/icons/060028EC.png b/static/icons/060028EC.png
new file mode 100755
index 00000000..cf8fb79e
Binary files /dev/null and b/static/icons/060028EC.png differ
diff --git a/static/icons/060028ED.png b/static/icons/060028ED.png
new file mode 100755
index 00000000..987838f6
Binary files /dev/null and b/static/icons/060028ED.png differ
diff --git a/static/icons/060028EE.png b/static/icons/060028EE.png
new file mode 100755
index 00000000..24989fcf
Binary files /dev/null and b/static/icons/060028EE.png differ
diff --git a/static/icons/060028EF.png b/static/icons/060028EF.png
new file mode 100755
index 00000000..c74ef1af
Binary files /dev/null and b/static/icons/060028EF.png differ
diff --git a/static/icons/060028F0.png b/static/icons/060028F0.png
new file mode 100755
index 00000000..b0977f79
Binary files /dev/null and b/static/icons/060028F0.png differ
diff --git a/static/icons/060028F1.png b/static/icons/060028F1.png
new file mode 100755
index 00000000..98091afd
Binary files /dev/null and b/static/icons/060028F1.png differ
diff --git a/static/icons/060028F2.png b/static/icons/060028F2.png
new file mode 100755
index 00000000..60d14055
Binary files /dev/null and b/static/icons/060028F2.png differ
diff --git a/static/icons/060028F3.png b/static/icons/060028F3.png
new file mode 100755
index 00000000..ef0865a4
Binary files /dev/null and b/static/icons/060028F3.png differ
diff --git a/static/icons/060028F4.png b/static/icons/060028F4.png
new file mode 100755
index 00000000..f7fb4467
Binary files /dev/null and b/static/icons/060028F4.png differ
diff --git a/static/icons/060028F5.png b/static/icons/060028F5.png
new file mode 100755
index 00000000..f1096d1e
Binary files /dev/null and b/static/icons/060028F5.png differ
diff --git a/static/icons/060028F6.png b/static/icons/060028F6.png
new file mode 100755
index 00000000..1de4a782
Binary files /dev/null and b/static/icons/060028F6.png differ
diff --git a/static/icons/060028F7.png b/static/icons/060028F7.png
new file mode 100755
index 00000000..b3836214
Binary files /dev/null and b/static/icons/060028F7.png differ
diff --git a/static/icons/060028F8.png b/static/icons/060028F8.png
new file mode 100755
index 00000000..31ef4d6b
Binary files /dev/null and b/static/icons/060028F8.png differ
diff --git a/static/icons/060028F9.png b/static/icons/060028F9.png
new file mode 100755
index 00000000..ce8f561e
Binary files /dev/null and b/static/icons/060028F9.png differ
diff --git a/static/icons/060028FA.png b/static/icons/060028FA.png
new file mode 100755
index 00000000..a39ff5ce
Binary files /dev/null and b/static/icons/060028FA.png differ
diff --git a/static/icons/060028FB.png b/static/icons/060028FB.png
new file mode 100755
index 00000000..b0114ff9
Binary files /dev/null and b/static/icons/060028FB.png differ
diff --git a/static/icons/060028FC.png b/static/icons/060028FC.png
new file mode 100755
index 00000000..f185cea7
Binary files /dev/null and b/static/icons/060028FC.png differ
diff --git a/static/icons/060028FD.png b/static/icons/060028FD.png
new file mode 100755
index 00000000..80303d1b
Binary files /dev/null and b/static/icons/060028FD.png differ
diff --git a/static/icons/060028FE.png b/static/icons/060028FE.png
new file mode 100755
index 00000000..dd01f67c
Binary files /dev/null and b/static/icons/060028FE.png differ
diff --git a/static/icons/060028FF.png b/static/icons/060028FF.png
new file mode 100755
index 00000000..43e46402
Binary files /dev/null and b/static/icons/060028FF.png differ
diff --git a/static/icons/06002900.png b/static/icons/06002900.png
new file mode 100755
index 00000000..cb3789c8
Binary files /dev/null and b/static/icons/06002900.png differ
diff --git a/static/icons/06002901.png b/static/icons/06002901.png
new file mode 100755
index 00000000..74ec6698
Binary files /dev/null and b/static/icons/06002901.png differ
diff --git a/static/icons/06002902.png b/static/icons/06002902.png
new file mode 100755
index 00000000..cbc68751
Binary files /dev/null and b/static/icons/06002902.png differ
diff --git a/static/icons/06002903.png b/static/icons/06002903.png
new file mode 100755
index 00000000..f1f87a70
Binary files /dev/null and b/static/icons/06002903.png differ
diff --git a/static/icons/06002904.png b/static/icons/06002904.png
new file mode 100755
index 00000000..e4978984
Binary files /dev/null and b/static/icons/06002904.png differ
diff --git a/static/icons/06002905.png b/static/icons/06002905.png
new file mode 100755
index 00000000..44244adb
Binary files /dev/null and b/static/icons/06002905.png differ
diff --git a/static/icons/06002906.png b/static/icons/06002906.png
new file mode 100755
index 00000000..46cc0032
Binary files /dev/null and b/static/icons/06002906.png differ
diff --git a/static/icons/06002907.png b/static/icons/06002907.png
new file mode 100755
index 00000000..c680abfc
Binary files /dev/null and b/static/icons/06002907.png differ
diff --git a/static/icons/06002908.png b/static/icons/06002908.png
new file mode 100755
index 00000000..38e952e2
Binary files /dev/null and b/static/icons/06002908.png differ
diff --git a/static/icons/06002909.png b/static/icons/06002909.png
new file mode 100755
index 00000000..f744cca8
Binary files /dev/null and b/static/icons/06002909.png differ
diff --git a/static/icons/0600290A.png b/static/icons/0600290A.png
new file mode 100755
index 00000000..496c9843
Binary files /dev/null and b/static/icons/0600290A.png differ
diff --git a/static/icons/0600290C.png b/static/icons/0600290C.png
new file mode 100755
index 00000000..12090df2
Binary files /dev/null and b/static/icons/0600290C.png differ
diff --git a/static/icons/0600290D.png b/static/icons/0600290D.png
new file mode 100755
index 00000000..d40ceb9f
Binary files /dev/null and b/static/icons/0600290D.png differ
diff --git a/static/icons/0600290E.png b/static/icons/0600290E.png
new file mode 100755
index 00000000..9316776f
Binary files /dev/null and b/static/icons/0600290E.png differ
diff --git a/static/icons/0600290F.png b/static/icons/0600290F.png
new file mode 100755
index 00000000..0f6f8f29
Binary files /dev/null and b/static/icons/0600290F.png differ
diff --git a/static/icons/06002910.png b/static/icons/06002910.png
new file mode 100755
index 00000000..cc91c850
Binary files /dev/null and b/static/icons/06002910.png differ
diff --git a/static/icons/06002911.png b/static/icons/06002911.png
new file mode 100755
index 00000000..3798cb15
Binary files /dev/null and b/static/icons/06002911.png differ
diff --git a/static/icons/06002912.png b/static/icons/06002912.png
new file mode 100755
index 00000000..a5454f59
Binary files /dev/null and b/static/icons/06002912.png differ
diff --git a/static/icons/06002913.png b/static/icons/06002913.png
new file mode 100755
index 00000000..cdbe00e0
Binary files /dev/null and b/static/icons/06002913.png differ
diff --git a/static/icons/06002914.png b/static/icons/06002914.png
new file mode 100755
index 00000000..e23ff154
Binary files /dev/null and b/static/icons/06002914.png differ
diff --git a/static/icons/06002915.png b/static/icons/06002915.png
new file mode 100755
index 00000000..520827e3
Binary files /dev/null and b/static/icons/06002915.png differ
diff --git a/static/icons/06002916.png b/static/icons/06002916.png
new file mode 100755
index 00000000..655f1a7e
Binary files /dev/null and b/static/icons/06002916.png differ
diff --git a/static/icons/06002917.png b/static/icons/06002917.png
new file mode 100755
index 00000000..0ba94d65
Binary files /dev/null and b/static/icons/06002917.png differ
diff --git a/static/icons/06002918.png b/static/icons/06002918.png
new file mode 100755
index 00000000..a4c4fb34
Binary files /dev/null and b/static/icons/06002918.png differ
diff --git a/static/icons/06002919.png b/static/icons/06002919.png
new file mode 100755
index 00000000..723d00be
Binary files /dev/null and b/static/icons/06002919.png differ
diff --git a/static/icons/0600291A.png b/static/icons/0600291A.png
new file mode 100755
index 00000000..b8f85e1d
Binary files /dev/null and b/static/icons/0600291A.png differ
diff --git a/static/icons/0600291B.png b/static/icons/0600291B.png
new file mode 100755
index 00000000..e5e1ae34
Binary files /dev/null and b/static/icons/0600291B.png differ
diff --git a/static/icons/0600291C.png b/static/icons/0600291C.png
new file mode 100755
index 00000000..873023f2
Binary files /dev/null and b/static/icons/0600291C.png differ
diff --git a/static/icons/0600291E.png b/static/icons/0600291E.png
new file mode 100755
index 00000000..9ef3d9b7
Binary files /dev/null and b/static/icons/0600291E.png differ
diff --git a/static/icons/0600291F.png b/static/icons/0600291F.png
new file mode 100755
index 00000000..681e6cb7
Binary files /dev/null and b/static/icons/0600291F.png differ
diff --git a/static/icons/06002920.png b/static/icons/06002920.png
new file mode 100755
index 00000000..b0d7da96
Binary files /dev/null and b/static/icons/06002920.png differ
diff --git a/static/icons/06002921.png b/static/icons/06002921.png
new file mode 100755
index 00000000..30edbff5
Binary files /dev/null and b/static/icons/06002921.png differ
diff --git a/static/icons/06002922.png b/static/icons/06002922.png
new file mode 100755
index 00000000..2c151863
Binary files /dev/null and b/static/icons/06002922.png differ
diff --git a/static/icons/06002923.png b/static/icons/06002923.png
new file mode 100755
index 00000000..cbf33d38
Binary files /dev/null and b/static/icons/06002923.png differ
diff --git a/static/icons/06002924.png b/static/icons/06002924.png
new file mode 100755
index 00000000..336a7675
Binary files /dev/null and b/static/icons/06002924.png differ
diff --git a/static/icons/06002925.png b/static/icons/06002925.png
new file mode 100755
index 00000000..43ed8ab0
Binary files /dev/null and b/static/icons/06002925.png differ
diff --git a/static/icons/06002926.png b/static/icons/06002926.png
new file mode 100755
index 00000000..3634d68e
Binary files /dev/null and b/static/icons/06002926.png differ
diff --git a/static/icons/06002927.png b/static/icons/06002927.png
new file mode 100755
index 00000000..fe158a40
Binary files /dev/null and b/static/icons/06002927.png differ
diff --git a/static/icons/06002928.png b/static/icons/06002928.png
new file mode 100755
index 00000000..c2da7a21
Binary files /dev/null and b/static/icons/06002928.png differ
diff --git a/static/icons/06002929.png b/static/icons/06002929.png
new file mode 100755
index 00000000..341b27b6
Binary files /dev/null and b/static/icons/06002929.png differ
diff --git a/static/icons/0600292A.png b/static/icons/0600292A.png
new file mode 100755
index 00000000..eb75c58c
Binary files /dev/null and b/static/icons/0600292A.png differ
diff --git a/static/icons/0600292B.png b/static/icons/0600292B.png
new file mode 100755
index 00000000..1edb0ac1
Binary files /dev/null and b/static/icons/0600292B.png differ
diff --git a/static/icons/0600292C.png b/static/icons/0600292C.png
new file mode 100755
index 00000000..6e777a42
Binary files /dev/null and b/static/icons/0600292C.png differ
diff --git a/static/icons/0600292D.png b/static/icons/0600292D.png
new file mode 100755
index 00000000..ea912cb9
Binary files /dev/null and b/static/icons/0600292D.png differ
diff --git a/static/icons/0600292E.png b/static/icons/0600292E.png
new file mode 100755
index 00000000..fdb0d02d
Binary files /dev/null and b/static/icons/0600292E.png differ
diff --git a/static/icons/0600292F.png b/static/icons/0600292F.png
new file mode 100755
index 00000000..c69dd6ad
Binary files /dev/null and b/static/icons/0600292F.png differ
diff --git a/static/icons/06002930.png b/static/icons/06002930.png
new file mode 100755
index 00000000..d7bf1617
Binary files /dev/null and b/static/icons/06002930.png differ
diff --git a/static/icons/06002931.png b/static/icons/06002931.png
new file mode 100755
index 00000000..64ffd435
Binary files /dev/null and b/static/icons/06002931.png differ
diff --git a/static/icons/06002932.png b/static/icons/06002932.png
new file mode 100755
index 00000000..d8734043
Binary files /dev/null and b/static/icons/06002932.png differ
diff --git a/static/icons/06002933.png b/static/icons/06002933.png
new file mode 100755
index 00000000..64efec21
Binary files /dev/null and b/static/icons/06002933.png differ
diff --git a/static/icons/06002934.png b/static/icons/06002934.png
new file mode 100755
index 00000000..8bd6e419
Binary files /dev/null and b/static/icons/06002934.png differ
diff --git a/static/icons/06002935.png b/static/icons/06002935.png
new file mode 100755
index 00000000..1ee8f2fe
Binary files /dev/null and b/static/icons/06002935.png differ
diff --git a/static/icons/06002936.png b/static/icons/06002936.png
new file mode 100755
index 00000000..3cc1a286
Binary files /dev/null and b/static/icons/06002936.png differ
diff --git a/static/icons/06002937.png b/static/icons/06002937.png
new file mode 100755
index 00000000..7a4758a9
Binary files /dev/null and b/static/icons/06002937.png differ
diff --git a/static/icons/06002938.png b/static/icons/06002938.png
new file mode 100755
index 00000000..b6323d8f
Binary files /dev/null and b/static/icons/06002938.png differ
diff --git a/static/icons/0600293A.png b/static/icons/0600293A.png
new file mode 100755
index 00000000..8d090653
Binary files /dev/null and b/static/icons/0600293A.png differ
diff --git a/static/icons/0600293C.png b/static/icons/0600293C.png
new file mode 100755
index 00000000..946d5726
Binary files /dev/null and b/static/icons/0600293C.png differ
diff --git a/static/icons/0600293D.png b/static/icons/0600293D.png
new file mode 100755
index 00000000..2e50e03f
Binary files /dev/null and b/static/icons/0600293D.png differ
diff --git a/static/icons/0600293E.png b/static/icons/0600293E.png
new file mode 100755
index 00000000..cc5abdb6
Binary files /dev/null and b/static/icons/0600293E.png differ
diff --git a/static/icons/0600293F.png b/static/icons/0600293F.png
new file mode 100755
index 00000000..c49722b8
Binary files /dev/null and b/static/icons/0600293F.png differ
diff --git a/static/icons/06002940.png b/static/icons/06002940.png
new file mode 100755
index 00000000..3ccf7fdb
Binary files /dev/null and b/static/icons/06002940.png differ
diff --git a/static/icons/06002941.png b/static/icons/06002941.png
new file mode 100755
index 00000000..25633a4a
Binary files /dev/null and b/static/icons/06002941.png differ
diff --git a/static/icons/06002942.png b/static/icons/06002942.png
new file mode 100755
index 00000000..b4aad81c
Binary files /dev/null and b/static/icons/06002942.png differ
diff --git a/static/icons/06002943.png b/static/icons/06002943.png
new file mode 100755
index 00000000..50490875
Binary files /dev/null and b/static/icons/06002943.png differ
diff --git a/static/icons/06002944.png b/static/icons/06002944.png
new file mode 100755
index 00000000..f7882cc9
Binary files /dev/null and b/static/icons/06002944.png differ
diff --git a/static/icons/06002945.png b/static/icons/06002945.png
new file mode 100755
index 00000000..6a62265a
Binary files /dev/null and b/static/icons/06002945.png differ
diff --git a/static/icons/06002946.png b/static/icons/06002946.png
new file mode 100755
index 00000000..573a6948
Binary files /dev/null and b/static/icons/06002946.png differ
diff --git a/static/icons/06002947.png b/static/icons/06002947.png
new file mode 100755
index 00000000..bb20f10c
Binary files /dev/null and b/static/icons/06002947.png differ
diff --git a/static/icons/06002948.png b/static/icons/06002948.png
new file mode 100755
index 00000000..61b53825
Binary files /dev/null and b/static/icons/06002948.png differ
diff --git a/static/icons/06002949.png b/static/icons/06002949.png
new file mode 100755
index 00000000..a55cfa02
Binary files /dev/null and b/static/icons/06002949.png differ
diff --git a/static/icons/0600294A.png b/static/icons/0600294A.png
new file mode 100755
index 00000000..9c7cc310
Binary files /dev/null and b/static/icons/0600294A.png differ
diff --git a/static/icons/0600294B.png b/static/icons/0600294B.png
new file mode 100755
index 00000000..9d5eee9a
Binary files /dev/null and b/static/icons/0600294B.png differ
diff --git a/static/icons/0600294C.png b/static/icons/0600294C.png
new file mode 100755
index 00000000..d1e51385
Binary files /dev/null and b/static/icons/0600294C.png differ
diff --git a/static/icons/0600294E.png b/static/icons/0600294E.png
new file mode 100755
index 00000000..05cc6c08
Binary files /dev/null and b/static/icons/0600294E.png differ
diff --git a/static/icons/06002950.png b/static/icons/06002950.png
new file mode 100755
index 00000000..ea8c0cd4
Binary files /dev/null and b/static/icons/06002950.png differ
diff --git a/static/icons/06002951.png b/static/icons/06002951.png
new file mode 100755
index 00000000..42ae6c75
Binary files /dev/null and b/static/icons/06002951.png differ
diff --git a/static/icons/06002953.png b/static/icons/06002953.png
new file mode 100755
index 00000000..a9fb9dae
Binary files /dev/null and b/static/icons/06002953.png differ
diff --git a/static/icons/06002954.png b/static/icons/06002954.png
new file mode 100755
index 00000000..e61597b0
Binary files /dev/null and b/static/icons/06002954.png differ
diff --git a/static/icons/06002955.png b/static/icons/06002955.png
new file mode 100755
index 00000000..6e8b3324
Binary files /dev/null and b/static/icons/06002955.png differ
diff --git a/static/icons/06002956.png b/static/icons/06002956.png
new file mode 100755
index 00000000..818ac1cb
Binary files /dev/null and b/static/icons/06002956.png differ
diff --git a/static/icons/06002957.png b/static/icons/06002957.png
new file mode 100755
index 00000000..518f0872
Binary files /dev/null and b/static/icons/06002957.png differ
diff --git a/static/icons/06002958.png b/static/icons/06002958.png
new file mode 100755
index 00000000..258b0c00
Binary files /dev/null and b/static/icons/06002958.png differ
diff --git a/static/icons/06002959.png b/static/icons/06002959.png
new file mode 100755
index 00000000..6bbfbd42
Binary files /dev/null and b/static/icons/06002959.png differ
diff --git a/static/icons/0600295A.png b/static/icons/0600295A.png
new file mode 100755
index 00000000..90f1013b
Binary files /dev/null and b/static/icons/0600295A.png differ
diff --git a/static/icons/0600295B.png b/static/icons/0600295B.png
new file mode 100755
index 00000000..ed125dab
Binary files /dev/null and b/static/icons/0600295B.png differ
diff --git a/static/icons/0600295C.png b/static/icons/0600295C.png
new file mode 100755
index 00000000..8b83d9d2
Binary files /dev/null and b/static/icons/0600295C.png differ
diff --git a/static/icons/06002960.png b/static/icons/06002960.png
new file mode 100755
index 00000000..1d6308b9
Binary files /dev/null and b/static/icons/06002960.png differ
diff --git a/static/icons/06002961.png b/static/icons/06002961.png
new file mode 100755
index 00000000..3e54cda6
Binary files /dev/null and b/static/icons/06002961.png differ
diff --git a/static/icons/06002962.png b/static/icons/06002962.png
new file mode 100755
index 00000000..5ba618d3
Binary files /dev/null and b/static/icons/06002962.png differ
diff --git a/static/icons/06002963.png b/static/icons/06002963.png
new file mode 100755
index 00000000..f460beb0
Binary files /dev/null and b/static/icons/06002963.png differ
diff --git a/static/icons/06002964.png b/static/icons/06002964.png
new file mode 100755
index 00000000..3009186d
Binary files /dev/null and b/static/icons/06002964.png differ
diff --git a/static/icons/06002965.png b/static/icons/06002965.png
new file mode 100755
index 00000000..e0e3e89d
Binary files /dev/null and b/static/icons/06002965.png differ
diff --git a/static/icons/06002966.png b/static/icons/06002966.png
new file mode 100755
index 00000000..15c43dcd
Binary files /dev/null and b/static/icons/06002966.png differ
diff --git a/static/icons/06002967.png b/static/icons/06002967.png
new file mode 100755
index 00000000..791ca6fd
Binary files /dev/null and b/static/icons/06002967.png differ
diff --git a/static/icons/06002968.png b/static/icons/06002968.png
new file mode 100755
index 00000000..4cd73245
Binary files /dev/null and b/static/icons/06002968.png differ
diff --git a/static/icons/06002969.png b/static/icons/06002969.png
new file mode 100755
index 00000000..1fe63082
Binary files /dev/null and b/static/icons/06002969.png differ
diff --git a/static/icons/0600296A.png b/static/icons/0600296A.png
new file mode 100755
index 00000000..aee5096b
Binary files /dev/null and b/static/icons/0600296A.png differ
diff --git a/static/icons/0600296B.png b/static/icons/0600296B.png
new file mode 100755
index 00000000..382d0f54
Binary files /dev/null and b/static/icons/0600296B.png differ
diff --git a/static/icons/0600296C.png b/static/icons/0600296C.png
new file mode 100755
index 00000000..6791a8ff
Binary files /dev/null and b/static/icons/0600296C.png differ
diff --git a/static/icons/0600296D.png b/static/icons/0600296D.png
new file mode 100755
index 00000000..8eefff0e
Binary files /dev/null and b/static/icons/0600296D.png differ
diff --git a/static/icons/0600296E.png b/static/icons/0600296E.png
new file mode 100755
index 00000000..36beac10
Binary files /dev/null and b/static/icons/0600296E.png differ
diff --git a/static/icons/0600296F.png b/static/icons/0600296F.png
new file mode 100755
index 00000000..47465575
Binary files /dev/null and b/static/icons/0600296F.png differ
diff --git a/static/icons/06002970.png b/static/icons/06002970.png
new file mode 100755
index 00000000..45342fda
Binary files /dev/null and b/static/icons/06002970.png differ
diff --git a/static/icons/06002971.png b/static/icons/06002971.png
new file mode 100755
index 00000000..b35e4dbd
Binary files /dev/null and b/static/icons/06002971.png differ
diff --git a/static/icons/06002972.png b/static/icons/06002972.png
new file mode 100755
index 00000000..9d035f3a
Binary files /dev/null and b/static/icons/06002972.png differ
diff --git a/static/icons/06002973.png b/static/icons/06002973.png
new file mode 100755
index 00000000..10dae8de
Binary files /dev/null and b/static/icons/06002973.png differ
diff --git a/static/icons/06002974.png b/static/icons/06002974.png
new file mode 100755
index 00000000..918da64c
Binary files /dev/null and b/static/icons/06002974.png differ
diff --git a/static/icons/06002975.png b/static/icons/06002975.png
new file mode 100755
index 00000000..f9e1dfda
Binary files /dev/null and b/static/icons/06002975.png differ
diff --git a/static/icons/06002976.png b/static/icons/06002976.png
new file mode 100755
index 00000000..b7103296
Binary files /dev/null and b/static/icons/06002976.png differ
diff --git a/static/icons/06002977.png b/static/icons/06002977.png
new file mode 100755
index 00000000..bba16630
Binary files /dev/null and b/static/icons/06002977.png differ
diff --git a/static/icons/06002978.png b/static/icons/06002978.png
new file mode 100755
index 00000000..8d68ef37
Binary files /dev/null and b/static/icons/06002978.png differ
diff --git a/static/icons/06002979.png b/static/icons/06002979.png
new file mode 100755
index 00000000..2b6bf770
Binary files /dev/null and b/static/icons/06002979.png differ
diff --git a/static/icons/0600297A.png b/static/icons/0600297A.png
new file mode 100755
index 00000000..46cdeb6d
Binary files /dev/null and b/static/icons/0600297A.png differ
diff --git a/static/icons/0600297B.png b/static/icons/0600297B.png
new file mode 100755
index 00000000..c6746537
Binary files /dev/null and b/static/icons/0600297B.png differ
diff --git a/static/icons/0600297C.png b/static/icons/0600297C.png
new file mode 100755
index 00000000..a004cc24
Binary files /dev/null and b/static/icons/0600297C.png differ
diff --git a/static/icons/0600297D.png b/static/icons/0600297D.png
new file mode 100755
index 00000000..9a09a3f8
Binary files /dev/null and b/static/icons/0600297D.png differ
diff --git a/static/icons/0600297E.png b/static/icons/0600297E.png
new file mode 100755
index 00000000..a4a60463
Binary files /dev/null and b/static/icons/0600297E.png differ
diff --git a/static/icons/0600297F.png b/static/icons/0600297F.png
new file mode 100755
index 00000000..2ac43600
Binary files /dev/null and b/static/icons/0600297F.png differ
diff --git a/static/icons/06002980.png b/static/icons/06002980.png
new file mode 100755
index 00000000..3bdf7656
Binary files /dev/null and b/static/icons/06002980.png differ
diff --git a/static/icons/06002981.png b/static/icons/06002981.png
new file mode 100755
index 00000000..8000f678
Binary files /dev/null and b/static/icons/06002981.png differ
diff --git a/static/icons/06002982.png b/static/icons/06002982.png
new file mode 100755
index 00000000..e7e8d4e9
Binary files /dev/null and b/static/icons/06002982.png differ
diff --git a/static/icons/06002983.png b/static/icons/06002983.png
new file mode 100755
index 00000000..a960aea7
Binary files /dev/null and b/static/icons/06002983.png differ
diff --git a/static/icons/06002984.png b/static/icons/06002984.png
new file mode 100755
index 00000000..4d03f1fc
Binary files /dev/null and b/static/icons/06002984.png differ
diff --git a/static/icons/06002985.png b/static/icons/06002985.png
new file mode 100755
index 00000000..433e56c7
Binary files /dev/null and b/static/icons/06002985.png differ
diff --git a/static/icons/06002986.png b/static/icons/06002986.png
new file mode 100755
index 00000000..5629956a
Binary files /dev/null and b/static/icons/06002986.png differ
diff --git a/static/icons/06002987.png b/static/icons/06002987.png
new file mode 100755
index 00000000..63e78560
Binary files /dev/null and b/static/icons/06002987.png differ
diff --git a/static/icons/06002988.png b/static/icons/06002988.png
new file mode 100755
index 00000000..0b69d4c6
Binary files /dev/null and b/static/icons/06002988.png differ
diff --git a/static/icons/06002989.png b/static/icons/06002989.png
new file mode 100755
index 00000000..8d47af83
Binary files /dev/null and b/static/icons/06002989.png differ
diff --git a/static/icons/0600298A.png b/static/icons/0600298A.png
new file mode 100755
index 00000000..6b90cdc4
Binary files /dev/null and b/static/icons/0600298A.png differ
diff --git a/static/icons/0600298B.png b/static/icons/0600298B.png
new file mode 100755
index 00000000..9dd9c91d
Binary files /dev/null and b/static/icons/0600298B.png differ
diff --git a/static/icons/0600298C.png b/static/icons/0600298C.png
new file mode 100755
index 00000000..8c953587
Binary files /dev/null and b/static/icons/0600298C.png differ
diff --git a/static/icons/0600298D.png b/static/icons/0600298D.png
new file mode 100755
index 00000000..191d63a8
Binary files /dev/null and b/static/icons/0600298D.png differ
diff --git a/static/icons/0600298E.png b/static/icons/0600298E.png
new file mode 100755
index 00000000..e46bdb54
Binary files /dev/null and b/static/icons/0600298E.png differ
diff --git a/static/icons/0600298F.png b/static/icons/0600298F.png
new file mode 100755
index 00000000..dc2c8210
Binary files /dev/null and b/static/icons/0600298F.png differ
diff --git a/static/icons/06002990.png b/static/icons/06002990.png
new file mode 100755
index 00000000..adf6fcf2
Binary files /dev/null and b/static/icons/06002990.png differ
diff --git a/static/icons/06002991.png b/static/icons/06002991.png
new file mode 100755
index 00000000..35f02a6f
Binary files /dev/null and b/static/icons/06002991.png differ
diff --git a/static/icons/06002992.png b/static/icons/06002992.png
new file mode 100755
index 00000000..7fb8385f
Binary files /dev/null and b/static/icons/06002992.png differ
diff --git a/static/icons/06002993.png b/static/icons/06002993.png
new file mode 100755
index 00000000..58190bb7
Binary files /dev/null and b/static/icons/06002993.png differ
diff --git a/static/icons/06002994.png b/static/icons/06002994.png
new file mode 100755
index 00000000..854a65e6
Binary files /dev/null and b/static/icons/06002994.png differ
diff --git a/static/icons/06002995.png b/static/icons/06002995.png
new file mode 100755
index 00000000..2801133b
Binary files /dev/null and b/static/icons/06002995.png differ
diff --git a/static/icons/06002996.png b/static/icons/06002996.png
new file mode 100755
index 00000000..b5853b0d
Binary files /dev/null and b/static/icons/06002996.png differ
diff --git a/static/icons/06002997.png b/static/icons/06002997.png
new file mode 100755
index 00000000..3c2ff1f7
Binary files /dev/null and b/static/icons/06002997.png differ
diff --git a/static/icons/06002998.png b/static/icons/06002998.png
new file mode 100755
index 00000000..74d967c9
Binary files /dev/null and b/static/icons/06002998.png differ
diff --git a/static/icons/06002999.png b/static/icons/06002999.png
new file mode 100755
index 00000000..78b1faa3
Binary files /dev/null and b/static/icons/06002999.png differ
diff --git a/static/icons/0600299A.png b/static/icons/0600299A.png
new file mode 100755
index 00000000..75c231b3
Binary files /dev/null and b/static/icons/0600299A.png differ
diff --git a/static/icons/0600299B.png b/static/icons/0600299B.png
new file mode 100755
index 00000000..d90901b4
Binary files /dev/null and b/static/icons/0600299B.png differ
diff --git a/static/icons/0600299C.png b/static/icons/0600299C.png
new file mode 100755
index 00000000..6749fb86
Binary files /dev/null and b/static/icons/0600299C.png differ
diff --git a/static/icons/0600299D.png b/static/icons/0600299D.png
new file mode 100755
index 00000000..ce3ba236
Binary files /dev/null and b/static/icons/0600299D.png differ
diff --git a/static/icons/0600299E.png b/static/icons/0600299E.png
new file mode 100755
index 00000000..0cd5dd31
Binary files /dev/null and b/static/icons/0600299E.png differ
diff --git a/static/icons/0600299F.png b/static/icons/0600299F.png
new file mode 100755
index 00000000..92d0f831
Binary files /dev/null and b/static/icons/0600299F.png differ
diff --git a/static/icons/060029A0.png b/static/icons/060029A0.png
new file mode 100755
index 00000000..17d5342d
Binary files /dev/null and b/static/icons/060029A0.png differ
diff --git a/static/icons/060029A1.png b/static/icons/060029A1.png
new file mode 100755
index 00000000..b8be63bd
Binary files /dev/null and b/static/icons/060029A1.png differ
diff --git a/static/icons/060029A2.png b/static/icons/060029A2.png
new file mode 100755
index 00000000..82ccc4d2
Binary files /dev/null and b/static/icons/060029A2.png differ
diff --git a/static/icons/060029A3.png b/static/icons/060029A3.png
new file mode 100755
index 00000000..0fa4072c
Binary files /dev/null and b/static/icons/060029A3.png differ
diff --git a/static/icons/060029A4.png b/static/icons/060029A4.png
new file mode 100755
index 00000000..c16c8c80
Binary files /dev/null and b/static/icons/060029A4.png differ
diff --git a/static/icons/060029A5.png b/static/icons/060029A5.png
new file mode 100755
index 00000000..b4b18bfc
Binary files /dev/null and b/static/icons/060029A5.png differ
diff --git a/static/icons/060029A6.png b/static/icons/060029A6.png
new file mode 100755
index 00000000..91be88ff
Binary files /dev/null and b/static/icons/060029A6.png differ
diff --git a/static/icons/060029A7.png b/static/icons/060029A7.png
new file mode 100755
index 00000000..8b463c70
Binary files /dev/null and b/static/icons/060029A7.png differ
diff --git a/static/icons/060029A8.png b/static/icons/060029A8.png
new file mode 100755
index 00000000..0e24afe1
Binary files /dev/null and b/static/icons/060029A8.png differ
diff --git a/static/icons/060029A9.png b/static/icons/060029A9.png
new file mode 100755
index 00000000..661ccbeb
Binary files /dev/null and b/static/icons/060029A9.png differ
diff --git a/static/icons/060029AA.png b/static/icons/060029AA.png
new file mode 100755
index 00000000..6db28011
Binary files /dev/null and b/static/icons/060029AA.png differ
diff --git a/static/icons/060029AB.png b/static/icons/060029AB.png
new file mode 100755
index 00000000..3eefcf5e
Binary files /dev/null and b/static/icons/060029AB.png differ
diff --git a/static/icons/060029AC.png b/static/icons/060029AC.png
new file mode 100755
index 00000000..809b72ec
Binary files /dev/null and b/static/icons/060029AC.png differ
diff --git a/static/icons/060029AD.png b/static/icons/060029AD.png
new file mode 100755
index 00000000..a1df5fde
Binary files /dev/null and b/static/icons/060029AD.png differ
diff --git a/static/icons/060029AE.png b/static/icons/060029AE.png
new file mode 100755
index 00000000..fe07e37b
Binary files /dev/null and b/static/icons/060029AE.png differ
diff --git a/static/icons/060029AF.png b/static/icons/060029AF.png
new file mode 100755
index 00000000..ac2affe1
Binary files /dev/null and b/static/icons/060029AF.png differ
diff --git a/static/icons/060029B0.png b/static/icons/060029B0.png
new file mode 100755
index 00000000..20cf80c2
Binary files /dev/null and b/static/icons/060029B0.png differ
diff --git a/static/icons/060029B1.png b/static/icons/060029B1.png
new file mode 100755
index 00000000..786d0a86
Binary files /dev/null and b/static/icons/060029B1.png differ
diff --git a/static/icons/060029B2.png b/static/icons/060029B2.png
new file mode 100755
index 00000000..8ad090c3
Binary files /dev/null and b/static/icons/060029B2.png differ
diff --git a/static/icons/060029B3.png b/static/icons/060029B3.png
new file mode 100755
index 00000000..a6f22781
Binary files /dev/null and b/static/icons/060029B3.png differ
diff --git a/static/icons/060029B4.png b/static/icons/060029B4.png
new file mode 100755
index 00000000..7c0e31db
Binary files /dev/null and b/static/icons/060029B4.png differ
diff --git a/static/icons/060029B5.png b/static/icons/060029B5.png
new file mode 100755
index 00000000..e1327625
Binary files /dev/null and b/static/icons/060029B5.png differ
diff --git a/static/icons/060029B6.png b/static/icons/060029B6.png
new file mode 100755
index 00000000..61f23b3c
Binary files /dev/null and b/static/icons/060029B6.png differ
diff --git a/static/icons/060029B7.png b/static/icons/060029B7.png
new file mode 100755
index 00000000..2f848c76
Binary files /dev/null and b/static/icons/060029B7.png differ
diff --git a/static/icons/060029B8.png b/static/icons/060029B8.png
new file mode 100755
index 00000000..f2a26bca
Binary files /dev/null and b/static/icons/060029B8.png differ
diff --git a/static/icons/060029B9.png b/static/icons/060029B9.png
new file mode 100755
index 00000000..550c5908
Binary files /dev/null and b/static/icons/060029B9.png differ
diff --git a/static/icons/060029BA.png b/static/icons/060029BA.png
new file mode 100755
index 00000000..4d7d3a16
Binary files /dev/null and b/static/icons/060029BA.png differ
diff --git a/static/icons/060029BB.png b/static/icons/060029BB.png
new file mode 100755
index 00000000..5ce8d976
Binary files /dev/null and b/static/icons/060029BB.png differ
diff --git a/static/icons/060029BC.png b/static/icons/060029BC.png
new file mode 100755
index 00000000..ee0a31ad
Binary files /dev/null and b/static/icons/060029BC.png differ
diff --git a/static/icons/060029BD.png b/static/icons/060029BD.png
new file mode 100755
index 00000000..fb2217ee
Binary files /dev/null and b/static/icons/060029BD.png differ
diff --git a/static/icons/060029BE.png b/static/icons/060029BE.png
new file mode 100755
index 00000000..7dd3f84e
Binary files /dev/null and b/static/icons/060029BE.png differ
diff --git a/static/icons/060029BF.png b/static/icons/060029BF.png
new file mode 100755
index 00000000..e09c77e7
Binary files /dev/null and b/static/icons/060029BF.png differ
diff --git a/static/icons/060029C0.png b/static/icons/060029C0.png
new file mode 100755
index 00000000..f14f129b
Binary files /dev/null and b/static/icons/060029C0.png differ
diff --git a/static/icons/060029C1.png b/static/icons/060029C1.png
new file mode 100755
index 00000000..d778f3a5
Binary files /dev/null and b/static/icons/060029C1.png differ
diff --git a/static/icons/060029C2.png b/static/icons/060029C2.png
new file mode 100755
index 00000000..1e0c03a2
Binary files /dev/null and b/static/icons/060029C2.png differ
diff --git a/static/icons/060029C3.png b/static/icons/060029C3.png
new file mode 100755
index 00000000..164fed1b
Binary files /dev/null and b/static/icons/060029C3.png differ
diff --git a/static/icons/060029C4.png b/static/icons/060029C4.png
new file mode 100755
index 00000000..8f4960db
Binary files /dev/null and b/static/icons/060029C4.png differ
diff --git a/static/icons/060029C5.png b/static/icons/060029C5.png
new file mode 100755
index 00000000..0d13cff4
Binary files /dev/null and b/static/icons/060029C5.png differ
diff --git a/static/icons/060029C6.png b/static/icons/060029C6.png
new file mode 100755
index 00000000..864cba96
Binary files /dev/null and b/static/icons/060029C6.png differ
diff --git a/static/icons/060029C7.png b/static/icons/060029C7.png
new file mode 100755
index 00000000..e6201a91
Binary files /dev/null and b/static/icons/060029C7.png differ
diff --git a/static/icons/060029C8.png b/static/icons/060029C8.png
new file mode 100755
index 00000000..9478ab79
Binary files /dev/null and b/static/icons/060029C8.png differ
diff --git a/static/icons/060029CC.png b/static/icons/060029CC.png
new file mode 100755
index 00000000..402ad6b9
Binary files /dev/null and b/static/icons/060029CC.png differ
diff --git a/static/icons/060029CD.png b/static/icons/060029CD.png
new file mode 100755
index 00000000..50a77360
Binary files /dev/null and b/static/icons/060029CD.png differ
diff --git a/static/icons/060029CE.png b/static/icons/060029CE.png
new file mode 100755
index 00000000..6bfdb5dc
Binary files /dev/null and b/static/icons/060029CE.png differ
diff --git a/static/icons/060029CF.png b/static/icons/060029CF.png
new file mode 100755
index 00000000..47ddaadc
Binary files /dev/null and b/static/icons/060029CF.png differ
diff --git a/static/icons/060029D0.png b/static/icons/060029D0.png
new file mode 100755
index 00000000..4dddc196
Binary files /dev/null and b/static/icons/060029D0.png differ
diff --git a/static/icons/060029D1.png b/static/icons/060029D1.png
new file mode 100755
index 00000000..9bfcf797
Binary files /dev/null and b/static/icons/060029D1.png differ
diff --git a/static/icons/060029D2.png b/static/icons/060029D2.png
new file mode 100755
index 00000000..d90a6778
Binary files /dev/null and b/static/icons/060029D2.png differ
diff --git a/static/icons/060029D3.png b/static/icons/060029D3.png
new file mode 100755
index 00000000..5da8fa12
Binary files /dev/null and b/static/icons/060029D3.png differ
diff --git a/static/icons/060029D4.png b/static/icons/060029D4.png
new file mode 100755
index 00000000..7cf33a06
Binary files /dev/null and b/static/icons/060029D4.png differ
diff --git a/static/icons/060029D5.png b/static/icons/060029D5.png
new file mode 100755
index 00000000..8b0bc55d
Binary files /dev/null and b/static/icons/060029D5.png differ
diff --git a/static/icons/060029D6.png b/static/icons/060029D6.png
new file mode 100755
index 00000000..69c4d599
Binary files /dev/null and b/static/icons/060029D6.png differ
diff --git a/static/icons/060029D7.png b/static/icons/060029D7.png
new file mode 100755
index 00000000..04048033
Binary files /dev/null and b/static/icons/060029D7.png differ
diff --git a/static/icons/060029D8.png b/static/icons/060029D8.png
new file mode 100755
index 00000000..fd558d6b
Binary files /dev/null and b/static/icons/060029D8.png differ
diff --git a/static/icons/060029D9.png b/static/icons/060029D9.png
new file mode 100755
index 00000000..6a2ec0ad
Binary files /dev/null and b/static/icons/060029D9.png differ
diff --git a/static/icons/060029DA.png b/static/icons/060029DA.png
new file mode 100755
index 00000000..2e497bde
Binary files /dev/null and b/static/icons/060029DA.png differ
diff --git a/static/icons/060029DB.png b/static/icons/060029DB.png
new file mode 100755
index 00000000..c225540e
Binary files /dev/null and b/static/icons/060029DB.png differ
diff --git a/static/icons/060029DC.png b/static/icons/060029DC.png
new file mode 100755
index 00000000..8387b815
Binary files /dev/null and b/static/icons/060029DC.png differ
diff --git a/static/icons/060029DD.png b/static/icons/060029DD.png
new file mode 100755
index 00000000..6ff1a878
Binary files /dev/null and b/static/icons/060029DD.png differ
diff --git a/static/icons/060029DE.png b/static/icons/060029DE.png
new file mode 100755
index 00000000..6b55ac89
Binary files /dev/null and b/static/icons/060029DE.png differ
diff --git a/static/icons/060029DF.png b/static/icons/060029DF.png
new file mode 100755
index 00000000..472096bb
Binary files /dev/null and b/static/icons/060029DF.png differ
diff --git a/static/icons/060029E0.png b/static/icons/060029E0.png
new file mode 100755
index 00000000..bf28a720
Binary files /dev/null and b/static/icons/060029E0.png differ
diff --git a/static/icons/060029E1.png b/static/icons/060029E1.png
new file mode 100755
index 00000000..fd60ae87
Binary files /dev/null and b/static/icons/060029E1.png differ
diff --git a/static/icons/060029E2.png b/static/icons/060029E2.png
new file mode 100755
index 00000000..d95b0947
Binary files /dev/null and b/static/icons/060029E2.png differ
diff --git a/static/icons/060029E3.png b/static/icons/060029E3.png
new file mode 100755
index 00000000..e14935a6
Binary files /dev/null and b/static/icons/060029E3.png differ
diff --git a/static/icons/060029E4.png b/static/icons/060029E4.png
new file mode 100755
index 00000000..09a3d8c5
Binary files /dev/null and b/static/icons/060029E4.png differ
diff --git a/static/icons/060029E5.png b/static/icons/060029E5.png
new file mode 100755
index 00000000..9ca8914c
Binary files /dev/null and b/static/icons/060029E5.png differ
diff --git a/static/icons/060029E6.png b/static/icons/060029E6.png
new file mode 100755
index 00000000..04288c66
Binary files /dev/null and b/static/icons/060029E6.png differ
diff --git a/static/icons/060029E7.png b/static/icons/060029E7.png
new file mode 100755
index 00000000..23e20ae3
Binary files /dev/null and b/static/icons/060029E7.png differ
diff --git a/static/icons/060029E8.png b/static/icons/060029E8.png
new file mode 100755
index 00000000..d3f69b1b
Binary files /dev/null and b/static/icons/060029E8.png differ
diff --git a/static/icons/060029E9.png b/static/icons/060029E9.png
new file mode 100755
index 00000000..0c9fbb23
Binary files /dev/null and b/static/icons/060029E9.png differ
diff --git a/static/icons/060029EA.png b/static/icons/060029EA.png
new file mode 100755
index 00000000..d4481c24
Binary files /dev/null and b/static/icons/060029EA.png differ
diff --git a/static/icons/060029EB.png b/static/icons/060029EB.png
new file mode 100755
index 00000000..b78d3107
Binary files /dev/null and b/static/icons/060029EB.png differ
diff --git a/static/icons/060029EC.png b/static/icons/060029EC.png
new file mode 100755
index 00000000..6ed87893
Binary files /dev/null and b/static/icons/060029EC.png differ
diff --git a/static/icons/060029ED.png b/static/icons/060029ED.png
new file mode 100755
index 00000000..2df9426e
Binary files /dev/null and b/static/icons/060029ED.png differ
diff --git a/static/icons/060029EE.png b/static/icons/060029EE.png
new file mode 100755
index 00000000..edce3ca7
Binary files /dev/null and b/static/icons/060029EE.png differ
diff --git a/static/icons/060029EF.png b/static/icons/060029EF.png
new file mode 100755
index 00000000..90937b07
Binary files /dev/null and b/static/icons/060029EF.png differ
diff --git a/static/icons/060029F0.png b/static/icons/060029F0.png
new file mode 100755
index 00000000..d3f6da69
Binary files /dev/null and b/static/icons/060029F0.png differ
diff --git a/static/icons/060029F1.png b/static/icons/060029F1.png
new file mode 100755
index 00000000..9af55e53
Binary files /dev/null and b/static/icons/060029F1.png differ
diff --git a/static/icons/060029F2.png b/static/icons/060029F2.png
new file mode 100755
index 00000000..ace6c152
Binary files /dev/null and b/static/icons/060029F2.png differ
diff --git a/static/icons/060029F3.png b/static/icons/060029F3.png
new file mode 100755
index 00000000..edf51fba
Binary files /dev/null and b/static/icons/060029F3.png differ
diff --git a/static/icons/060029F4.png b/static/icons/060029F4.png
new file mode 100755
index 00000000..e74970fb
Binary files /dev/null and b/static/icons/060029F4.png differ
diff --git a/static/icons/060029F5.png b/static/icons/060029F5.png
new file mode 100755
index 00000000..7a55aaee
Binary files /dev/null and b/static/icons/060029F5.png differ
diff --git a/static/icons/060029F6.png b/static/icons/060029F6.png
new file mode 100755
index 00000000..b667f0e3
Binary files /dev/null and b/static/icons/060029F6.png differ
diff --git a/static/icons/060029F7.png b/static/icons/060029F7.png
new file mode 100755
index 00000000..591fb945
Binary files /dev/null and b/static/icons/060029F7.png differ
diff --git a/static/icons/060029F8.png b/static/icons/060029F8.png
new file mode 100755
index 00000000..9abfb688
Binary files /dev/null and b/static/icons/060029F8.png differ
diff --git a/static/icons/060029F9.png b/static/icons/060029F9.png
new file mode 100755
index 00000000..e5b3c0a4
Binary files /dev/null and b/static/icons/060029F9.png differ
diff --git a/static/icons/060029FA.png b/static/icons/060029FA.png
new file mode 100755
index 00000000..cf8893ff
Binary files /dev/null and b/static/icons/060029FA.png differ
diff --git a/static/icons/060029FB.png b/static/icons/060029FB.png
new file mode 100755
index 00000000..73febf51
Binary files /dev/null and b/static/icons/060029FB.png differ
diff --git a/static/icons/060029FC.png b/static/icons/060029FC.png
new file mode 100755
index 00000000..688c6368
Binary files /dev/null and b/static/icons/060029FC.png differ
diff --git a/static/icons/060029FD.png b/static/icons/060029FD.png
new file mode 100755
index 00000000..bde5d20f
Binary files /dev/null and b/static/icons/060029FD.png differ
diff --git a/static/icons/060029FE.png b/static/icons/060029FE.png
new file mode 100755
index 00000000..0d251438
Binary files /dev/null and b/static/icons/060029FE.png differ
diff --git a/static/icons/060029FF.png b/static/icons/060029FF.png
new file mode 100755
index 00000000..a6eab901
Binary files /dev/null and b/static/icons/060029FF.png differ
diff --git a/static/icons/06002A00.png b/static/icons/06002A00.png
new file mode 100755
index 00000000..0f7f9933
Binary files /dev/null and b/static/icons/06002A00.png differ
diff --git a/static/icons/06002A01.png b/static/icons/06002A01.png
new file mode 100755
index 00000000..8f6374e1
Binary files /dev/null and b/static/icons/06002A01.png differ
diff --git a/static/icons/06002A02.png b/static/icons/06002A02.png
new file mode 100755
index 00000000..bef8c9aa
Binary files /dev/null and b/static/icons/06002A02.png differ
diff --git a/static/icons/06002A03.png b/static/icons/06002A03.png
new file mode 100755
index 00000000..51e3b383
Binary files /dev/null and b/static/icons/06002A03.png differ
diff --git a/static/icons/06002A04.png b/static/icons/06002A04.png
new file mode 100755
index 00000000..bf1b6f3f
Binary files /dev/null and b/static/icons/06002A04.png differ
diff --git a/static/icons/06002A05.png b/static/icons/06002A05.png
new file mode 100755
index 00000000..fca002e9
Binary files /dev/null and b/static/icons/06002A05.png differ
diff --git a/static/icons/06002A06.png b/static/icons/06002A06.png
new file mode 100755
index 00000000..473b85cc
Binary files /dev/null and b/static/icons/06002A06.png differ
diff --git a/static/icons/06002A07.png b/static/icons/06002A07.png
new file mode 100755
index 00000000..8721f822
Binary files /dev/null and b/static/icons/06002A07.png differ
diff --git a/static/icons/06002A08.png b/static/icons/06002A08.png
new file mode 100755
index 00000000..74688a31
Binary files /dev/null and b/static/icons/06002A08.png differ
diff --git a/static/icons/06002A09.png b/static/icons/06002A09.png
new file mode 100755
index 00000000..d5afe5a1
Binary files /dev/null and b/static/icons/06002A09.png differ
diff --git a/static/icons/06002A0A.png b/static/icons/06002A0A.png
new file mode 100755
index 00000000..05ac153e
Binary files /dev/null and b/static/icons/06002A0A.png differ
diff --git a/static/icons/06002A0B.png b/static/icons/06002A0B.png
new file mode 100755
index 00000000..efc9e28b
Binary files /dev/null and b/static/icons/06002A0B.png differ
diff --git a/static/icons/06002A0C.png b/static/icons/06002A0C.png
new file mode 100755
index 00000000..b07304d3
Binary files /dev/null and b/static/icons/06002A0C.png differ
diff --git a/static/icons/06002A0D.png b/static/icons/06002A0D.png
new file mode 100755
index 00000000..d9850ffd
Binary files /dev/null and b/static/icons/06002A0D.png differ
diff --git a/static/icons/06002A0E.png b/static/icons/06002A0E.png
new file mode 100755
index 00000000..c191656d
Binary files /dev/null and b/static/icons/06002A0E.png differ
diff --git a/static/icons/06002A0F.png b/static/icons/06002A0F.png
new file mode 100755
index 00000000..5516657c
Binary files /dev/null and b/static/icons/06002A0F.png differ
diff --git a/static/icons/06002A10.png b/static/icons/06002A10.png
new file mode 100755
index 00000000..7366a6b8
Binary files /dev/null and b/static/icons/06002A10.png differ
diff --git a/static/icons/06002A11.png b/static/icons/06002A11.png
new file mode 100755
index 00000000..39eb098e
Binary files /dev/null and b/static/icons/06002A11.png differ
diff --git a/static/icons/06002A12.png b/static/icons/06002A12.png
new file mode 100755
index 00000000..0d39701e
Binary files /dev/null and b/static/icons/06002A12.png differ
diff --git a/static/icons/06002A13.png b/static/icons/06002A13.png
new file mode 100755
index 00000000..664d6030
Binary files /dev/null and b/static/icons/06002A13.png differ
diff --git a/static/icons/06002A14.png b/static/icons/06002A14.png
new file mode 100755
index 00000000..3645a0c0
Binary files /dev/null and b/static/icons/06002A14.png differ
diff --git a/static/icons/06002A15.png b/static/icons/06002A15.png
new file mode 100755
index 00000000..aa6c3500
Binary files /dev/null and b/static/icons/06002A15.png differ
diff --git a/static/icons/06002A16.png b/static/icons/06002A16.png
new file mode 100755
index 00000000..c88cc60c
Binary files /dev/null and b/static/icons/06002A16.png differ
diff --git a/static/icons/06002A17.png b/static/icons/06002A17.png
new file mode 100755
index 00000000..5588b33b
Binary files /dev/null and b/static/icons/06002A17.png differ
diff --git a/static/icons/06002A18.png b/static/icons/06002A18.png
new file mode 100755
index 00000000..b8ca6c46
Binary files /dev/null and b/static/icons/06002A18.png differ
diff --git a/static/icons/06002A19.png b/static/icons/06002A19.png
new file mode 100755
index 00000000..59e6efae
Binary files /dev/null and b/static/icons/06002A19.png differ
diff --git a/static/icons/06002A1A.png b/static/icons/06002A1A.png
new file mode 100755
index 00000000..3540ac8d
Binary files /dev/null and b/static/icons/06002A1A.png differ
diff --git a/static/icons/06002A1B.png b/static/icons/06002A1B.png
new file mode 100755
index 00000000..24492bfa
Binary files /dev/null and b/static/icons/06002A1B.png differ
diff --git a/static/icons/06002A1C.png b/static/icons/06002A1C.png
new file mode 100755
index 00000000..77ab48d5
Binary files /dev/null and b/static/icons/06002A1C.png differ
diff --git a/static/icons/06002A1D.png b/static/icons/06002A1D.png
new file mode 100755
index 00000000..e980694c
Binary files /dev/null and b/static/icons/06002A1D.png differ
diff --git a/static/icons/06002A1E.png b/static/icons/06002A1E.png
new file mode 100755
index 00000000..d5777788
Binary files /dev/null and b/static/icons/06002A1E.png differ
diff --git a/static/icons/06002A1F.png b/static/icons/06002A1F.png
new file mode 100755
index 00000000..01291e98
Binary files /dev/null and b/static/icons/06002A1F.png differ
diff --git a/static/icons/06002A21.png b/static/icons/06002A21.png
new file mode 100755
index 00000000..2fc4d7b0
Binary files /dev/null and b/static/icons/06002A21.png differ
diff --git a/static/icons/06002A24.png b/static/icons/06002A24.png
new file mode 100755
index 00000000..a9fd3e49
Binary files /dev/null and b/static/icons/06002A24.png differ
diff --git a/static/icons/06002A25.png b/static/icons/06002A25.png
new file mode 100755
index 00000000..91d19e9b
Binary files /dev/null and b/static/icons/06002A25.png differ
diff --git a/static/icons/06002A26.png b/static/icons/06002A26.png
new file mode 100755
index 00000000..e4f5c39d
Binary files /dev/null and b/static/icons/06002A26.png differ
diff --git a/static/icons/06002A27.png b/static/icons/06002A27.png
new file mode 100755
index 00000000..4ae6cb6e
Binary files /dev/null and b/static/icons/06002A27.png differ
diff --git a/static/icons/06002A29.png b/static/icons/06002A29.png
new file mode 100755
index 00000000..d8c87a1f
Binary files /dev/null and b/static/icons/06002A29.png differ
diff --git a/static/icons/06002A2A.png b/static/icons/06002A2A.png
new file mode 100755
index 00000000..1d618d7c
Binary files /dev/null and b/static/icons/06002A2A.png differ
diff --git a/static/icons/06002A2B.png b/static/icons/06002A2B.png
new file mode 100755
index 00000000..86374490
Binary files /dev/null and b/static/icons/06002A2B.png differ
diff --git a/static/icons/06002A2C.png b/static/icons/06002A2C.png
new file mode 100755
index 00000000..8df5adcb
Binary files /dev/null and b/static/icons/06002A2C.png differ
diff --git a/static/icons/06002A2E.png b/static/icons/06002A2E.png
new file mode 100755
index 00000000..4c4113fe
Binary files /dev/null and b/static/icons/06002A2E.png differ
diff --git a/static/icons/06002A2F.png b/static/icons/06002A2F.png
new file mode 100755
index 00000000..d78b66e4
Binary files /dev/null and b/static/icons/06002A2F.png differ
diff --git a/static/icons/06002A30.png b/static/icons/06002A30.png
new file mode 100755
index 00000000..be352997
Binary files /dev/null and b/static/icons/06002A30.png differ
diff --git a/static/icons/06002A31.png b/static/icons/06002A31.png
new file mode 100755
index 00000000..675b8c38
Binary files /dev/null and b/static/icons/06002A31.png differ
diff --git a/static/icons/06002A32.png b/static/icons/06002A32.png
new file mode 100755
index 00000000..ed4c8f4b
Binary files /dev/null and b/static/icons/06002A32.png differ
diff --git a/static/icons/06002A33.png b/static/icons/06002A33.png
new file mode 100755
index 00000000..d4d23e6c
Binary files /dev/null and b/static/icons/06002A33.png differ
diff --git a/static/icons/06002A34.png b/static/icons/06002A34.png
new file mode 100755
index 00000000..c2ccb175
Binary files /dev/null and b/static/icons/06002A34.png differ
diff --git a/static/icons/06002A35.png b/static/icons/06002A35.png
new file mode 100755
index 00000000..bbf26b6c
Binary files /dev/null and b/static/icons/06002A35.png differ
diff --git a/static/icons/06002A36.png b/static/icons/06002A36.png
new file mode 100755
index 00000000..b4e09989
Binary files /dev/null and b/static/icons/06002A36.png differ
diff --git a/static/icons/06002A37.png b/static/icons/06002A37.png
new file mode 100755
index 00000000..be504c45
Binary files /dev/null and b/static/icons/06002A37.png differ
diff --git a/static/icons/06002A38.png b/static/icons/06002A38.png
new file mode 100755
index 00000000..63716a26
Binary files /dev/null and b/static/icons/06002A38.png differ
diff --git a/static/icons/06002A39.png b/static/icons/06002A39.png
new file mode 100755
index 00000000..8b3b0a12
Binary files /dev/null and b/static/icons/06002A39.png differ
diff --git a/static/icons/06002A3B.png b/static/icons/06002A3B.png
new file mode 100755
index 00000000..3c7b7158
Binary files /dev/null and b/static/icons/06002A3B.png differ
diff --git a/static/icons/06002A3C.png b/static/icons/06002A3C.png
new file mode 100755
index 00000000..2763c43f
Binary files /dev/null and b/static/icons/06002A3C.png differ
diff --git a/static/icons/06002A3D.png b/static/icons/06002A3D.png
new file mode 100755
index 00000000..146a1f2a
Binary files /dev/null and b/static/icons/06002A3D.png differ
diff --git a/static/icons/06002A3E.png b/static/icons/06002A3E.png
new file mode 100755
index 00000000..35655171
Binary files /dev/null and b/static/icons/06002A3E.png differ
diff --git a/static/icons/06002A3F.png b/static/icons/06002A3F.png
new file mode 100755
index 00000000..7a678d6a
Binary files /dev/null and b/static/icons/06002A3F.png differ
diff --git a/static/icons/06002A40.png b/static/icons/06002A40.png
new file mode 100755
index 00000000..d69c734e
Binary files /dev/null and b/static/icons/06002A40.png differ
diff --git a/static/icons/06002A41.png b/static/icons/06002A41.png
new file mode 100755
index 00000000..4fab2f59
Binary files /dev/null and b/static/icons/06002A41.png differ
diff --git a/static/icons/06002A42.png b/static/icons/06002A42.png
new file mode 100755
index 00000000..d863ef1a
Binary files /dev/null and b/static/icons/06002A42.png differ
diff --git a/static/icons/06002A43.png b/static/icons/06002A43.png
new file mode 100755
index 00000000..d4269e5f
Binary files /dev/null and b/static/icons/06002A43.png differ
diff --git a/static/icons/06002A44.png b/static/icons/06002A44.png
new file mode 100755
index 00000000..7ce03c71
Binary files /dev/null and b/static/icons/06002A44.png differ
diff --git a/static/icons/06002A45.png b/static/icons/06002A45.png
new file mode 100755
index 00000000..8f9df301
Binary files /dev/null and b/static/icons/06002A45.png differ
diff --git a/static/icons/06002A46.png b/static/icons/06002A46.png
new file mode 100755
index 00000000..a9df8118
Binary files /dev/null and b/static/icons/06002A46.png differ
diff --git a/static/icons/06002A47.png b/static/icons/06002A47.png
new file mode 100755
index 00000000..ab2172b3
Binary files /dev/null and b/static/icons/06002A47.png differ
diff --git a/static/icons/06002A48.png b/static/icons/06002A48.png
new file mode 100755
index 00000000..f7588c55
Binary files /dev/null and b/static/icons/06002A48.png differ
diff --git a/static/icons/06002A49.png b/static/icons/06002A49.png
new file mode 100755
index 00000000..ae61e249
Binary files /dev/null and b/static/icons/06002A49.png differ
diff --git a/static/icons/06002A4A.png b/static/icons/06002A4A.png
new file mode 100755
index 00000000..185e92d8
Binary files /dev/null and b/static/icons/06002A4A.png differ
diff --git a/static/icons/06002A4B.png b/static/icons/06002A4B.png
new file mode 100755
index 00000000..479e2c14
Binary files /dev/null and b/static/icons/06002A4B.png differ
diff --git a/static/icons/06002A4C.png b/static/icons/06002A4C.png
new file mode 100755
index 00000000..75be9d9e
Binary files /dev/null and b/static/icons/06002A4C.png differ
diff --git a/static/icons/06002A4D.png b/static/icons/06002A4D.png
new file mode 100755
index 00000000..ecef4e16
Binary files /dev/null and b/static/icons/06002A4D.png differ
diff --git a/static/icons/06002A4E.png b/static/icons/06002A4E.png
new file mode 100755
index 00000000..6949f729
Binary files /dev/null and b/static/icons/06002A4E.png differ
diff --git a/static/icons/06002A4F.png b/static/icons/06002A4F.png
new file mode 100755
index 00000000..b330cbed
Binary files /dev/null and b/static/icons/06002A4F.png differ
diff --git a/static/icons/06002A50.png b/static/icons/06002A50.png
new file mode 100755
index 00000000..5c7ecceb
Binary files /dev/null and b/static/icons/06002A50.png differ
diff --git a/static/icons/06002A51.png b/static/icons/06002A51.png
new file mode 100755
index 00000000..9b685100
Binary files /dev/null and b/static/icons/06002A51.png differ
diff --git a/static/icons/06002A52.png b/static/icons/06002A52.png
new file mode 100755
index 00000000..df99ead5
Binary files /dev/null and b/static/icons/06002A52.png differ
diff --git a/static/icons/06002A53.png b/static/icons/06002A53.png
new file mode 100755
index 00000000..e5df8111
Binary files /dev/null and b/static/icons/06002A53.png differ
diff --git a/static/icons/06002A54.png b/static/icons/06002A54.png
new file mode 100755
index 00000000..e568a7bd
Binary files /dev/null and b/static/icons/06002A54.png differ
diff --git a/static/icons/06002A55.png b/static/icons/06002A55.png
new file mode 100755
index 00000000..05f9c950
Binary files /dev/null and b/static/icons/06002A55.png differ
diff --git a/static/icons/06002A56.png b/static/icons/06002A56.png
new file mode 100755
index 00000000..b10356af
Binary files /dev/null and b/static/icons/06002A56.png differ
diff --git a/static/icons/06002A57.png b/static/icons/06002A57.png
new file mode 100755
index 00000000..a4f3a6fc
Binary files /dev/null and b/static/icons/06002A57.png differ
diff --git a/static/icons/06002A58.png b/static/icons/06002A58.png
new file mode 100755
index 00000000..bffbea21
Binary files /dev/null and b/static/icons/06002A58.png differ
diff --git a/static/icons/06002A59.png b/static/icons/06002A59.png
new file mode 100755
index 00000000..60a8fe39
Binary files /dev/null and b/static/icons/06002A59.png differ
diff --git a/static/icons/06002A5A.png b/static/icons/06002A5A.png
new file mode 100755
index 00000000..cba52377
Binary files /dev/null and b/static/icons/06002A5A.png differ
diff --git a/static/icons/06002A5B.png b/static/icons/06002A5B.png
new file mode 100755
index 00000000..d57cfc72
Binary files /dev/null and b/static/icons/06002A5B.png differ
diff --git a/static/icons/06002A5C.png b/static/icons/06002A5C.png
new file mode 100755
index 00000000..1640a85d
Binary files /dev/null and b/static/icons/06002A5C.png differ
diff --git a/static/icons/06002A5D.png b/static/icons/06002A5D.png
new file mode 100755
index 00000000..9b1532e3
Binary files /dev/null and b/static/icons/06002A5D.png differ
diff --git a/static/icons/06002A5E.png b/static/icons/06002A5E.png
new file mode 100755
index 00000000..7c8462c6
Binary files /dev/null and b/static/icons/06002A5E.png differ
diff --git a/static/icons/06002A5F.png b/static/icons/06002A5F.png
new file mode 100755
index 00000000..ce8914a4
Binary files /dev/null and b/static/icons/06002A5F.png differ
diff --git a/static/icons/06002A60.png b/static/icons/06002A60.png
new file mode 100755
index 00000000..5cb130c6
Binary files /dev/null and b/static/icons/06002A60.png differ
diff --git a/static/icons/06002A61.png b/static/icons/06002A61.png
new file mode 100755
index 00000000..6b1adb5f
Binary files /dev/null and b/static/icons/06002A61.png differ
diff --git a/static/icons/06002A62.png b/static/icons/06002A62.png
new file mode 100755
index 00000000..f2afc2cd
Binary files /dev/null and b/static/icons/06002A62.png differ
diff --git a/static/icons/06002A63.png b/static/icons/06002A63.png
new file mode 100755
index 00000000..2e0c54a4
Binary files /dev/null and b/static/icons/06002A63.png differ
diff --git a/static/icons/06002A64.png b/static/icons/06002A64.png
new file mode 100755
index 00000000..24a6bfc9
Binary files /dev/null and b/static/icons/06002A64.png differ
diff --git a/static/icons/06002A65.png b/static/icons/06002A65.png
new file mode 100755
index 00000000..62fe3d35
Binary files /dev/null and b/static/icons/06002A65.png differ
diff --git a/static/icons/06002A66.png b/static/icons/06002A66.png
new file mode 100755
index 00000000..1667e3df
Binary files /dev/null and b/static/icons/06002A66.png differ
diff --git a/static/icons/06002A67.png b/static/icons/06002A67.png
new file mode 100755
index 00000000..894bae7d
Binary files /dev/null and b/static/icons/06002A67.png differ
diff --git a/static/icons/06002A68.png b/static/icons/06002A68.png
new file mode 100755
index 00000000..757b81c7
Binary files /dev/null and b/static/icons/06002A68.png differ
diff --git a/static/icons/06002A69.png b/static/icons/06002A69.png
new file mode 100755
index 00000000..c0425366
Binary files /dev/null and b/static/icons/06002A69.png differ
diff --git a/static/icons/06002A6A.png b/static/icons/06002A6A.png
new file mode 100755
index 00000000..471152bf
Binary files /dev/null and b/static/icons/06002A6A.png differ
diff --git a/static/icons/06002A6B.png b/static/icons/06002A6B.png
new file mode 100755
index 00000000..1eba458e
Binary files /dev/null and b/static/icons/06002A6B.png differ
diff --git a/static/icons/06002A6C.png b/static/icons/06002A6C.png
new file mode 100755
index 00000000..2d5752df
Binary files /dev/null and b/static/icons/06002A6C.png differ
diff --git a/static/icons/06002A6D.png b/static/icons/06002A6D.png
new file mode 100755
index 00000000..0f054244
Binary files /dev/null and b/static/icons/06002A6D.png differ
diff --git a/static/icons/06002A6E.png b/static/icons/06002A6E.png
new file mode 100755
index 00000000..4860deec
Binary files /dev/null and b/static/icons/06002A6E.png differ
diff --git a/static/icons/06002A6F.png b/static/icons/06002A6F.png
new file mode 100755
index 00000000..97faf38a
Binary files /dev/null and b/static/icons/06002A6F.png differ
diff --git a/static/icons/06002A70.png b/static/icons/06002A70.png
new file mode 100755
index 00000000..f9fb1f3e
Binary files /dev/null and b/static/icons/06002A70.png differ
diff --git a/static/icons/06002A71.png b/static/icons/06002A71.png
new file mode 100755
index 00000000..044f881d
Binary files /dev/null and b/static/icons/06002A71.png differ
diff --git a/static/icons/06002A72.png b/static/icons/06002A72.png
new file mode 100755
index 00000000..34a29c93
Binary files /dev/null and b/static/icons/06002A72.png differ
diff --git a/static/icons/06002A73.png b/static/icons/06002A73.png
new file mode 100755
index 00000000..9e4f527f
Binary files /dev/null and b/static/icons/06002A73.png differ
diff --git a/static/icons/06002A74.png b/static/icons/06002A74.png
new file mode 100755
index 00000000..10dbd1b8
Binary files /dev/null and b/static/icons/06002A74.png differ
diff --git a/static/icons/06002A75.png b/static/icons/06002A75.png
new file mode 100755
index 00000000..3e63c2ac
Binary files /dev/null and b/static/icons/06002A75.png differ
diff --git a/static/icons/06002A76.png b/static/icons/06002A76.png
new file mode 100755
index 00000000..37c51e0e
Binary files /dev/null and b/static/icons/06002A76.png differ
diff --git a/static/icons/06002A77.png b/static/icons/06002A77.png
new file mode 100755
index 00000000..1744ce36
Binary files /dev/null and b/static/icons/06002A77.png differ
diff --git a/static/icons/06002A78.png b/static/icons/06002A78.png
new file mode 100755
index 00000000..147c150a
Binary files /dev/null and b/static/icons/06002A78.png differ
diff --git a/static/icons/06002A79.png b/static/icons/06002A79.png
new file mode 100755
index 00000000..b2abd0de
Binary files /dev/null and b/static/icons/06002A79.png differ
diff --git a/static/icons/06002A7A.png b/static/icons/06002A7A.png
new file mode 100755
index 00000000..03b255c4
Binary files /dev/null and b/static/icons/06002A7A.png differ
diff --git a/static/icons/06002A7B.png b/static/icons/06002A7B.png
new file mode 100755
index 00000000..a0c5be96
Binary files /dev/null and b/static/icons/06002A7B.png differ
diff --git a/static/icons/06002A7C.png b/static/icons/06002A7C.png
new file mode 100755
index 00000000..a0ccef05
Binary files /dev/null and b/static/icons/06002A7C.png differ
diff --git a/static/icons/06002A7D.png b/static/icons/06002A7D.png
new file mode 100755
index 00000000..97fa0de4
Binary files /dev/null and b/static/icons/06002A7D.png differ
diff --git a/static/icons/06002A7E.png b/static/icons/06002A7E.png
new file mode 100755
index 00000000..37891d64
Binary files /dev/null and b/static/icons/06002A7E.png differ
diff --git a/static/icons/06002A7F.png b/static/icons/06002A7F.png
new file mode 100755
index 00000000..734f2f54
Binary files /dev/null and b/static/icons/06002A7F.png differ
diff --git a/static/icons/06002A80.png b/static/icons/06002A80.png
new file mode 100755
index 00000000..c9fadef9
Binary files /dev/null and b/static/icons/06002A80.png differ
diff --git a/static/icons/06002A81.png b/static/icons/06002A81.png
new file mode 100755
index 00000000..78004144
Binary files /dev/null and b/static/icons/06002A81.png differ
diff --git a/static/icons/06002A82.png b/static/icons/06002A82.png
new file mode 100755
index 00000000..ed2636a8
Binary files /dev/null and b/static/icons/06002A82.png differ
diff --git a/static/icons/06002A83.png b/static/icons/06002A83.png
new file mode 100755
index 00000000..cc7de1fa
Binary files /dev/null and b/static/icons/06002A83.png differ
diff --git a/static/icons/06002A84.png b/static/icons/06002A84.png
new file mode 100755
index 00000000..a0b525e5
Binary files /dev/null and b/static/icons/06002A84.png differ
diff --git a/static/icons/06002A85.png b/static/icons/06002A85.png
new file mode 100755
index 00000000..ce805197
Binary files /dev/null and b/static/icons/06002A85.png differ
diff --git a/static/icons/06002A86.png b/static/icons/06002A86.png
new file mode 100755
index 00000000..89ae5d83
Binary files /dev/null and b/static/icons/06002A86.png differ
diff --git a/static/icons/06002A87.png b/static/icons/06002A87.png
new file mode 100755
index 00000000..083199a4
Binary files /dev/null and b/static/icons/06002A87.png differ
diff --git a/static/icons/06002A88.png b/static/icons/06002A88.png
new file mode 100755
index 00000000..78fb4328
Binary files /dev/null and b/static/icons/06002A88.png differ
diff --git a/static/icons/06002A89.png b/static/icons/06002A89.png
new file mode 100755
index 00000000..61b1f573
Binary files /dev/null and b/static/icons/06002A89.png differ
diff --git a/static/icons/06002A8A.png b/static/icons/06002A8A.png
new file mode 100755
index 00000000..008d3716
Binary files /dev/null and b/static/icons/06002A8A.png differ
diff --git a/static/icons/06002A8B.png b/static/icons/06002A8B.png
new file mode 100755
index 00000000..ee1220f3
Binary files /dev/null and b/static/icons/06002A8B.png differ
diff --git a/static/icons/06002A8C.png b/static/icons/06002A8C.png
new file mode 100755
index 00000000..e4b31814
Binary files /dev/null and b/static/icons/06002A8C.png differ
diff --git a/static/icons/06002A8D.png b/static/icons/06002A8D.png
new file mode 100755
index 00000000..04567b96
Binary files /dev/null and b/static/icons/06002A8D.png differ
diff --git a/static/icons/06002A8E.png b/static/icons/06002A8E.png
new file mode 100755
index 00000000..5b6e4706
Binary files /dev/null and b/static/icons/06002A8E.png differ
diff --git a/static/icons/06002A8F.png b/static/icons/06002A8F.png
new file mode 100755
index 00000000..671e1d21
Binary files /dev/null and b/static/icons/06002A8F.png differ
diff --git a/static/icons/06002A90.png b/static/icons/06002A90.png
new file mode 100755
index 00000000..3d284efd
Binary files /dev/null and b/static/icons/06002A90.png differ
diff --git a/static/icons/06002A91.png b/static/icons/06002A91.png
new file mode 100755
index 00000000..05e26b81
Binary files /dev/null and b/static/icons/06002A91.png differ
diff --git a/static/icons/06002A92.png b/static/icons/06002A92.png
new file mode 100755
index 00000000..9da5ca79
Binary files /dev/null and b/static/icons/06002A92.png differ
diff --git a/static/icons/06002A93.png b/static/icons/06002A93.png
new file mode 100755
index 00000000..8ddd6946
Binary files /dev/null and b/static/icons/06002A93.png differ
diff --git a/static/icons/06002A94.png b/static/icons/06002A94.png
new file mode 100755
index 00000000..49d5ef4a
Binary files /dev/null and b/static/icons/06002A94.png differ
diff --git a/static/icons/06002A95.png b/static/icons/06002A95.png
new file mode 100755
index 00000000..3c62d3ba
Binary files /dev/null and b/static/icons/06002A95.png differ
diff --git a/static/icons/06002A96.png b/static/icons/06002A96.png
new file mode 100755
index 00000000..43ffcc89
Binary files /dev/null and b/static/icons/06002A96.png differ
diff --git a/static/icons/06002A97.png b/static/icons/06002A97.png
new file mode 100755
index 00000000..fc401dcd
Binary files /dev/null and b/static/icons/06002A97.png differ
diff --git a/static/icons/06002A98.png b/static/icons/06002A98.png
new file mode 100755
index 00000000..ec613a8f
Binary files /dev/null and b/static/icons/06002A98.png differ
diff --git a/static/icons/06002A99.png b/static/icons/06002A99.png
new file mode 100755
index 00000000..1308ec4c
Binary files /dev/null and b/static/icons/06002A99.png differ
diff --git a/static/icons/06002A9A.png b/static/icons/06002A9A.png
new file mode 100755
index 00000000..19e41abd
Binary files /dev/null and b/static/icons/06002A9A.png differ
diff --git a/static/icons/06002A9B.png b/static/icons/06002A9B.png
new file mode 100755
index 00000000..74b5dc5d
Binary files /dev/null and b/static/icons/06002A9B.png differ
diff --git a/static/icons/06002A9C.png b/static/icons/06002A9C.png
new file mode 100755
index 00000000..25b9b565
Binary files /dev/null and b/static/icons/06002A9C.png differ
diff --git a/static/icons/06002A9D.png b/static/icons/06002A9D.png
new file mode 100755
index 00000000..cfffb77f
Binary files /dev/null and b/static/icons/06002A9D.png differ
diff --git a/static/icons/06002A9E.png b/static/icons/06002A9E.png
new file mode 100755
index 00000000..a75e4bd0
Binary files /dev/null and b/static/icons/06002A9E.png differ
diff --git a/static/icons/06002A9F.png b/static/icons/06002A9F.png
new file mode 100755
index 00000000..dbd0913c
Binary files /dev/null and b/static/icons/06002A9F.png differ
diff --git a/static/icons/06002AA0.png b/static/icons/06002AA0.png
new file mode 100755
index 00000000..079e0f4e
Binary files /dev/null and b/static/icons/06002AA0.png differ
diff --git a/static/icons/06002AA1.png b/static/icons/06002AA1.png
new file mode 100755
index 00000000..085346f7
Binary files /dev/null and b/static/icons/06002AA1.png differ
diff --git a/static/icons/06002AA2.png b/static/icons/06002AA2.png
new file mode 100755
index 00000000..145e1163
Binary files /dev/null and b/static/icons/06002AA2.png differ
diff --git a/static/icons/06002AA3.png b/static/icons/06002AA3.png
new file mode 100755
index 00000000..93724f5a
Binary files /dev/null and b/static/icons/06002AA3.png differ
diff --git a/static/icons/06002AA4.png b/static/icons/06002AA4.png
new file mode 100755
index 00000000..1ccec40e
Binary files /dev/null and b/static/icons/06002AA4.png differ
diff --git a/static/icons/06002AA5.png b/static/icons/06002AA5.png
new file mode 100755
index 00000000..cd294ba5
Binary files /dev/null and b/static/icons/06002AA5.png differ
diff --git a/static/icons/06002AA6.png b/static/icons/06002AA6.png
new file mode 100755
index 00000000..a4d84d09
Binary files /dev/null and b/static/icons/06002AA6.png differ
diff --git a/static/icons/06002AA7.png b/static/icons/06002AA7.png
new file mode 100755
index 00000000..01b90338
Binary files /dev/null and b/static/icons/06002AA7.png differ
diff --git a/static/icons/06002AA8.png b/static/icons/06002AA8.png
new file mode 100755
index 00000000..7a750101
Binary files /dev/null and b/static/icons/06002AA8.png differ
diff --git a/static/icons/06002AA9.png b/static/icons/06002AA9.png
new file mode 100755
index 00000000..4185cdd1
Binary files /dev/null and b/static/icons/06002AA9.png differ
diff --git a/static/icons/06002AAA.png b/static/icons/06002AAA.png
new file mode 100755
index 00000000..8395afa5
Binary files /dev/null and b/static/icons/06002AAA.png differ
diff --git a/static/icons/06002AAB.png b/static/icons/06002AAB.png
new file mode 100755
index 00000000..b6131c3d
Binary files /dev/null and b/static/icons/06002AAB.png differ
diff --git a/static/icons/06002AAC.png b/static/icons/06002AAC.png
new file mode 100755
index 00000000..3b9eb415
Binary files /dev/null and b/static/icons/06002AAC.png differ
diff --git a/static/icons/06002AAD.png b/static/icons/06002AAD.png
new file mode 100755
index 00000000..296d6302
Binary files /dev/null and b/static/icons/06002AAD.png differ
diff --git a/static/icons/06002AAE.png b/static/icons/06002AAE.png
new file mode 100755
index 00000000..223d17cf
Binary files /dev/null and b/static/icons/06002AAE.png differ
diff --git a/static/icons/06002AAF.png b/static/icons/06002AAF.png
new file mode 100755
index 00000000..60e2e39d
Binary files /dev/null and b/static/icons/06002AAF.png differ
diff --git a/static/icons/06002AB0.png b/static/icons/06002AB0.png
new file mode 100755
index 00000000..9c3eaf80
Binary files /dev/null and b/static/icons/06002AB0.png differ
diff --git a/static/icons/06002AB1.png b/static/icons/06002AB1.png
new file mode 100755
index 00000000..59c28ba9
Binary files /dev/null and b/static/icons/06002AB1.png differ
diff --git a/static/icons/06002AB2.png b/static/icons/06002AB2.png
new file mode 100755
index 00000000..731aef08
Binary files /dev/null and b/static/icons/06002AB2.png differ
diff --git a/static/icons/06002AB3.png b/static/icons/06002AB3.png
new file mode 100755
index 00000000..ffd9501f
Binary files /dev/null and b/static/icons/06002AB3.png differ
diff --git a/static/icons/06002AB4.png b/static/icons/06002AB4.png
new file mode 100755
index 00000000..0be4d8dd
Binary files /dev/null and b/static/icons/06002AB4.png differ
diff --git a/static/icons/06002AB5.png b/static/icons/06002AB5.png
new file mode 100755
index 00000000..23f3d2c2
Binary files /dev/null and b/static/icons/06002AB5.png differ
diff --git a/static/icons/06002AB6.png b/static/icons/06002AB6.png
new file mode 100755
index 00000000..55b38a21
Binary files /dev/null and b/static/icons/06002AB6.png differ
diff --git a/static/icons/06002AB7.png b/static/icons/06002AB7.png
new file mode 100755
index 00000000..747e4a60
Binary files /dev/null and b/static/icons/06002AB7.png differ
diff --git a/static/icons/06002AB8.png b/static/icons/06002AB8.png
new file mode 100755
index 00000000..226acc94
Binary files /dev/null and b/static/icons/06002AB8.png differ
diff --git a/static/icons/06002AB9.png b/static/icons/06002AB9.png
new file mode 100755
index 00000000..cd77561b
Binary files /dev/null and b/static/icons/06002AB9.png differ
diff --git a/static/icons/06002ABA.png b/static/icons/06002ABA.png
new file mode 100755
index 00000000..9b32354a
Binary files /dev/null and b/static/icons/06002ABA.png differ
diff --git a/static/icons/06002ABB.png b/static/icons/06002ABB.png
new file mode 100755
index 00000000..1b871dc3
Binary files /dev/null and b/static/icons/06002ABB.png differ
diff --git a/static/icons/06002ABC.png b/static/icons/06002ABC.png
new file mode 100755
index 00000000..d449b529
Binary files /dev/null and b/static/icons/06002ABC.png differ
diff --git a/static/icons/06002ABE.png b/static/icons/06002ABE.png
new file mode 100755
index 00000000..b134c21d
Binary files /dev/null and b/static/icons/06002ABE.png differ
diff --git a/static/icons/06002ABF.png b/static/icons/06002ABF.png
new file mode 100755
index 00000000..c275e558
Binary files /dev/null and b/static/icons/06002ABF.png differ
diff --git a/static/icons/06002AC0.png b/static/icons/06002AC0.png
new file mode 100755
index 00000000..f35329cf
Binary files /dev/null and b/static/icons/06002AC0.png differ
diff --git a/static/icons/06002AC1.png b/static/icons/06002AC1.png
new file mode 100755
index 00000000..ff4269c2
Binary files /dev/null and b/static/icons/06002AC1.png differ
diff --git a/static/icons/06002AC2.png b/static/icons/06002AC2.png
new file mode 100755
index 00000000..7d12f4d3
Binary files /dev/null and b/static/icons/06002AC2.png differ
diff --git a/static/icons/06002AC3.png b/static/icons/06002AC3.png
new file mode 100755
index 00000000..bbce1436
Binary files /dev/null and b/static/icons/06002AC3.png differ
diff --git a/static/icons/06002AC4.png b/static/icons/06002AC4.png
new file mode 100755
index 00000000..daba9129
Binary files /dev/null and b/static/icons/06002AC4.png differ
diff --git a/static/icons/06002AC5.png b/static/icons/06002AC5.png
new file mode 100755
index 00000000..4ff13b09
Binary files /dev/null and b/static/icons/06002AC5.png differ
diff --git a/static/icons/06002AC6.png b/static/icons/06002AC6.png
new file mode 100755
index 00000000..a641f12f
Binary files /dev/null and b/static/icons/06002AC6.png differ
diff --git a/static/icons/06002AC7.png b/static/icons/06002AC7.png
new file mode 100755
index 00000000..05ca9fbf
Binary files /dev/null and b/static/icons/06002AC7.png differ
diff --git a/static/icons/06002AC8.png b/static/icons/06002AC8.png
new file mode 100755
index 00000000..c345505f
Binary files /dev/null and b/static/icons/06002AC8.png differ
diff --git a/static/icons/06002AC9.png b/static/icons/06002AC9.png
new file mode 100755
index 00000000..06e9bc60
Binary files /dev/null and b/static/icons/06002AC9.png differ
diff --git a/static/icons/06002ACA.png b/static/icons/06002ACA.png
new file mode 100755
index 00000000..2f9d99f7
Binary files /dev/null and b/static/icons/06002ACA.png differ
diff --git a/static/icons/06002ACB.png b/static/icons/06002ACB.png
new file mode 100755
index 00000000..497f74a4
Binary files /dev/null and b/static/icons/06002ACB.png differ
diff --git a/static/icons/06002ACC.png b/static/icons/06002ACC.png
new file mode 100755
index 00000000..16738be6
Binary files /dev/null and b/static/icons/06002ACC.png differ
diff --git a/static/icons/06002ACD.png b/static/icons/06002ACD.png
new file mode 100755
index 00000000..210ac30f
Binary files /dev/null and b/static/icons/06002ACD.png differ
diff --git a/static/icons/06002ACE.png b/static/icons/06002ACE.png
new file mode 100755
index 00000000..373d6c1d
Binary files /dev/null and b/static/icons/06002ACE.png differ
diff --git a/static/icons/06002ACF.png b/static/icons/06002ACF.png
new file mode 100755
index 00000000..731bcb4a
Binary files /dev/null and b/static/icons/06002ACF.png differ
diff --git a/static/icons/06002AD0.png b/static/icons/06002AD0.png
new file mode 100755
index 00000000..c1ffec89
Binary files /dev/null and b/static/icons/06002AD0.png differ
diff --git a/static/icons/06002AD1.png b/static/icons/06002AD1.png
new file mode 100755
index 00000000..f75529fe
Binary files /dev/null and b/static/icons/06002AD1.png differ
diff --git a/static/icons/06002AD2.png b/static/icons/06002AD2.png
new file mode 100755
index 00000000..7d09312e
Binary files /dev/null and b/static/icons/06002AD2.png differ
diff --git a/static/icons/06002AD3.png b/static/icons/06002AD3.png
new file mode 100755
index 00000000..f0dafcd5
Binary files /dev/null and b/static/icons/06002AD3.png differ
diff --git a/static/icons/06002AD4.png b/static/icons/06002AD4.png
new file mode 100755
index 00000000..288f0c9b
Binary files /dev/null and b/static/icons/06002AD4.png differ
diff --git a/static/icons/06002AD5.png b/static/icons/06002AD5.png
new file mode 100755
index 00000000..6c4b2331
Binary files /dev/null and b/static/icons/06002AD5.png differ
diff --git a/static/icons/06002AD6.png b/static/icons/06002AD6.png
new file mode 100755
index 00000000..a3a35b04
Binary files /dev/null and b/static/icons/06002AD6.png differ
diff --git a/static/icons/06002AD7.png b/static/icons/06002AD7.png
new file mode 100755
index 00000000..ba51b308
Binary files /dev/null and b/static/icons/06002AD7.png differ
diff --git a/static/icons/06002AD8.png b/static/icons/06002AD8.png
new file mode 100755
index 00000000..22fb13a7
Binary files /dev/null and b/static/icons/06002AD8.png differ
diff --git a/static/icons/06002AD9.png b/static/icons/06002AD9.png
new file mode 100755
index 00000000..49d62ea6
Binary files /dev/null and b/static/icons/06002AD9.png differ
diff --git a/static/icons/06002ADA.png b/static/icons/06002ADA.png
new file mode 100755
index 00000000..f7c6b66d
Binary files /dev/null and b/static/icons/06002ADA.png differ
diff --git a/static/icons/06002ADB.png b/static/icons/06002ADB.png
new file mode 100755
index 00000000..568d0597
Binary files /dev/null and b/static/icons/06002ADB.png differ
diff --git a/static/icons/06002ADC.png b/static/icons/06002ADC.png
new file mode 100755
index 00000000..dd862bed
Binary files /dev/null and b/static/icons/06002ADC.png differ
diff --git a/static/icons/06002ADD.png b/static/icons/06002ADD.png
new file mode 100755
index 00000000..e48c41db
Binary files /dev/null and b/static/icons/06002ADD.png differ
diff --git a/static/icons/06002ADE.png b/static/icons/06002ADE.png
new file mode 100755
index 00000000..f8b5251d
Binary files /dev/null and b/static/icons/06002ADE.png differ
diff --git a/static/icons/06002ADF.png b/static/icons/06002ADF.png
new file mode 100755
index 00000000..6876a51a
Binary files /dev/null and b/static/icons/06002ADF.png differ
diff --git a/static/icons/06002AE0.png b/static/icons/06002AE0.png
new file mode 100755
index 00000000..6e782d54
Binary files /dev/null and b/static/icons/06002AE0.png differ
diff --git a/static/icons/06002AE1.png b/static/icons/06002AE1.png
new file mode 100755
index 00000000..d230544f
Binary files /dev/null and b/static/icons/06002AE1.png differ
diff --git a/static/icons/06002AE2.png b/static/icons/06002AE2.png
new file mode 100755
index 00000000..b827673d
Binary files /dev/null and b/static/icons/06002AE2.png differ
diff --git a/static/icons/06002AE3.png b/static/icons/06002AE3.png
new file mode 100755
index 00000000..6c7852e2
Binary files /dev/null and b/static/icons/06002AE3.png differ
diff --git a/static/icons/06002AE4.png b/static/icons/06002AE4.png
new file mode 100755
index 00000000..a784b1fe
Binary files /dev/null and b/static/icons/06002AE4.png differ
diff --git a/static/icons/06002AE5.png b/static/icons/06002AE5.png
new file mode 100755
index 00000000..802bfde3
Binary files /dev/null and b/static/icons/06002AE5.png differ
diff --git a/static/icons/06002AE6.png b/static/icons/06002AE6.png
new file mode 100755
index 00000000..03510577
Binary files /dev/null and b/static/icons/06002AE6.png differ
diff --git a/static/icons/06002AE7.png b/static/icons/06002AE7.png
new file mode 100755
index 00000000..298642f1
Binary files /dev/null and b/static/icons/06002AE7.png differ
diff --git a/static/icons/06002AE8.png b/static/icons/06002AE8.png
new file mode 100755
index 00000000..cdb3b413
Binary files /dev/null and b/static/icons/06002AE8.png differ
diff --git a/static/icons/06002AE9.png b/static/icons/06002AE9.png
new file mode 100755
index 00000000..0933c666
Binary files /dev/null and b/static/icons/06002AE9.png differ
diff --git a/static/icons/06002AEA.png b/static/icons/06002AEA.png
new file mode 100755
index 00000000..3ffb12e3
Binary files /dev/null and b/static/icons/06002AEA.png differ
diff --git a/static/icons/06002AEB.png b/static/icons/06002AEB.png
new file mode 100755
index 00000000..4a255957
Binary files /dev/null and b/static/icons/06002AEB.png differ
diff --git a/static/icons/06002AEC.png b/static/icons/06002AEC.png
new file mode 100755
index 00000000..a438b224
Binary files /dev/null and b/static/icons/06002AEC.png differ
diff --git a/static/icons/06002AED.png b/static/icons/06002AED.png
new file mode 100755
index 00000000..a538d56b
Binary files /dev/null and b/static/icons/06002AED.png differ
diff --git a/static/icons/06002AEE.png b/static/icons/06002AEE.png
new file mode 100755
index 00000000..6e1977f7
Binary files /dev/null and b/static/icons/06002AEE.png differ
diff --git a/static/icons/06002AEF.png b/static/icons/06002AEF.png
new file mode 100755
index 00000000..eaeb024d
Binary files /dev/null and b/static/icons/06002AEF.png differ
diff --git a/static/icons/06002AF0.png b/static/icons/06002AF0.png
new file mode 100755
index 00000000..bcf0984e
Binary files /dev/null and b/static/icons/06002AF0.png differ
diff --git a/static/icons/06002AF1.png b/static/icons/06002AF1.png
new file mode 100755
index 00000000..19d95f2d
Binary files /dev/null and b/static/icons/06002AF1.png differ
diff --git a/static/icons/06002AF2.png b/static/icons/06002AF2.png
new file mode 100755
index 00000000..4cbaab10
Binary files /dev/null and b/static/icons/06002AF2.png differ
diff --git a/static/icons/06002AF3.png b/static/icons/06002AF3.png
new file mode 100755
index 00000000..1c41b86d
Binary files /dev/null and b/static/icons/06002AF3.png differ
diff --git a/static/icons/06002AF4.png b/static/icons/06002AF4.png
new file mode 100755
index 00000000..b0b92414
Binary files /dev/null and b/static/icons/06002AF4.png differ
diff --git a/static/icons/06002AF5.png b/static/icons/06002AF5.png
new file mode 100755
index 00000000..110e6e44
Binary files /dev/null and b/static/icons/06002AF5.png differ
diff --git a/static/icons/06002AF6.png b/static/icons/06002AF6.png
new file mode 100755
index 00000000..7784f965
Binary files /dev/null and b/static/icons/06002AF6.png differ
diff --git a/static/icons/06002AF7.png b/static/icons/06002AF7.png
new file mode 100755
index 00000000..4b592de7
Binary files /dev/null and b/static/icons/06002AF7.png differ
diff --git a/static/icons/06002AF8.png b/static/icons/06002AF8.png
new file mode 100755
index 00000000..9f74f0c7
Binary files /dev/null and b/static/icons/06002AF8.png differ
diff --git a/static/icons/06002AF9.png b/static/icons/06002AF9.png
new file mode 100755
index 00000000..13a106ed
Binary files /dev/null and b/static/icons/06002AF9.png differ
diff --git a/static/icons/06002AFA.png b/static/icons/06002AFA.png
new file mode 100755
index 00000000..84006723
Binary files /dev/null and b/static/icons/06002AFA.png differ
diff --git a/static/icons/06002AFC.png b/static/icons/06002AFC.png
new file mode 100755
index 00000000..db608963
Binary files /dev/null and b/static/icons/06002AFC.png differ
diff --git a/static/icons/06002AFD.png b/static/icons/06002AFD.png
new file mode 100755
index 00000000..82b79a0c
Binary files /dev/null and b/static/icons/06002AFD.png differ
diff --git a/static/icons/06002AFE.png b/static/icons/06002AFE.png
new file mode 100755
index 00000000..819caf1c
Binary files /dev/null and b/static/icons/06002AFE.png differ
diff --git a/static/icons/06002AFF.png b/static/icons/06002AFF.png
new file mode 100755
index 00000000..ef33e7b0
Binary files /dev/null and b/static/icons/06002AFF.png differ
diff --git a/static/icons/06002B00.png b/static/icons/06002B00.png
new file mode 100755
index 00000000..74ed6bae
Binary files /dev/null and b/static/icons/06002B00.png differ
diff --git a/static/icons/06002B01.png b/static/icons/06002B01.png
new file mode 100755
index 00000000..19dcb61b
Binary files /dev/null and b/static/icons/06002B01.png differ
diff --git a/static/icons/06002B02.png b/static/icons/06002B02.png
new file mode 100755
index 00000000..c644fad9
Binary files /dev/null and b/static/icons/06002B02.png differ
diff --git a/static/icons/06002B03.png b/static/icons/06002B03.png
new file mode 100755
index 00000000..56a18b87
Binary files /dev/null and b/static/icons/06002B03.png differ
diff --git a/static/icons/06002B04.png b/static/icons/06002B04.png
new file mode 100755
index 00000000..f04743a9
Binary files /dev/null and b/static/icons/06002B04.png differ
diff --git a/static/icons/06002B05.png b/static/icons/06002B05.png
new file mode 100755
index 00000000..84fb8f8f
Binary files /dev/null and b/static/icons/06002B05.png differ
diff --git a/static/icons/06002B06.png b/static/icons/06002B06.png
new file mode 100755
index 00000000..95d73068
Binary files /dev/null and b/static/icons/06002B06.png differ
diff --git a/static/icons/06002B07.png b/static/icons/06002B07.png
new file mode 100755
index 00000000..5e912cfe
Binary files /dev/null and b/static/icons/06002B07.png differ
diff --git a/static/icons/06002B08.png b/static/icons/06002B08.png
new file mode 100755
index 00000000..3ce07b8a
Binary files /dev/null and b/static/icons/06002B08.png differ
diff --git a/static/icons/06002B09.png b/static/icons/06002B09.png
new file mode 100755
index 00000000..a07be9b5
Binary files /dev/null and b/static/icons/06002B09.png differ
diff --git a/static/icons/06002B0A.png b/static/icons/06002B0A.png
new file mode 100755
index 00000000..d249b678
Binary files /dev/null and b/static/icons/06002B0A.png differ
diff --git a/static/icons/06002B0B.png b/static/icons/06002B0B.png
new file mode 100755
index 00000000..91189cb8
Binary files /dev/null and b/static/icons/06002B0B.png differ
diff --git a/static/icons/06002B0C.png b/static/icons/06002B0C.png
new file mode 100755
index 00000000..83c2e4af
Binary files /dev/null and b/static/icons/06002B0C.png differ
diff --git a/static/icons/06002B0D.png b/static/icons/06002B0D.png
new file mode 100755
index 00000000..4c1dee09
Binary files /dev/null and b/static/icons/06002B0D.png differ
diff --git a/static/icons/06002B0E.png b/static/icons/06002B0E.png
new file mode 100755
index 00000000..06892464
Binary files /dev/null and b/static/icons/06002B0E.png differ
diff --git a/static/icons/06002B0F.png b/static/icons/06002B0F.png
new file mode 100755
index 00000000..f62337d5
Binary files /dev/null and b/static/icons/06002B0F.png differ
diff --git a/static/icons/06002B10.png b/static/icons/06002B10.png
new file mode 100755
index 00000000..f87cbbec
Binary files /dev/null and b/static/icons/06002B10.png differ
diff --git a/static/icons/06002B11.png b/static/icons/06002B11.png
new file mode 100755
index 00000000..ce84fbf4
Binary files /dev/null and b/static/icons/06002B11.png differ
diff --git a/static/icons/06002B13.png b/static/icons/06002B13.png
new file mode 100755
index 00000000..0bc20f68
Binary files /dev/null and b/static/icons/06002B13.png differ
diff --git a/static/icons/06002B14.png b/static/icons/06002B14.png
new file mode 100755
index 00000000..456e5721
Binary files /dev/null and b/static/icons/06002B14.png differ
diff --git a/static/icons/06002B15.png b/static/icons/06002B15.png
new file mode 100755
index 00000000..dae2cd97
Binary files /dev/null and b/static/icons/06002B15.png differ
diff --git a/static/icons/06002B16.png b/static/icons/06002B16.png
new file mode 100755
index 00000000..07f24daf
Binary files /dev/null and b/static/icons/06002B16.png differ
diff --git a/static/icons/06002B17.png b/static/icons/06002B17.png
new file mode 100755
index 00000000..80d02ad8
Binary files /dev/null and b/static/icons/06002B17.png differ
diff --git a/static/icons/06002B18.png b/static/icons/06002B18.png
new file mode 100755
index 00000000..5bfa77ad
Binary files /dev/null and b/static/icons/06002B18.png differ
diff --git a/static/icons/06002B19.png b/static/icons/06002B19.png
new file mode 100755
index 00000000..aa0bc1a7
Binary files /dev/null and b/static/icons/06002B19.png differ
diff --git a/static/icons/06002B1A.png b/static/icons/06002B1A.png
new file mode 100755
index 00000000..4bd720bc
Binary files /dev/null and b/static/icons/06002B1A.png differ
diff --git a/static/icons/06002B1B.png b/static/icons/06002B1B.png
new file mode 100755
index 00000000..69c9e96e
Binary files /dev/null and b/static/icons/06002B1B.png differ
diff --git a/static/icons/06002B1C.png b/static/icons/06002B1C.png
new file mode 100755
index 00000000..f149dfa6
Binary files /dev/null and b/static/icons/06002B1C.png differ
diff --git a/static/icons/06002B1D.png b/static/icons/06002B1D.png
new file mode 100755
index 00000000..812ef7d7
Binary files /dev/null and b/static/icons/06002B1D.png differ
diff --git a/static/icons/06002B1E.png b/static/icons/06002B1E.png
new file mode 100755
index 00000000..6163311f
Binary files /dev/null and b/static/icons/06002B1E.png differ
diff --git a/static/icons/06002B1F.png b/static/icons/06002B1F.png
new file mode 100755
index 00000000..3fec5277
Binary files /dev/null and b/static/icons/06002B1F.png differ
diff --git a/static/icons/06002B20.png b/static/icons/06002B20.png
new file mode 100755
index 00000000..6b63d04f
Binary files /dev/null and b/static/icons/06002B20.png differ
diff --git a/static/icons/06002B21.png b/static/icons/06002B21.png
new file mode 100755
index 00000000..022bdc02
Binary files /dev/null and b/static/icons/06002B21.png differ
diff --git a/static/icons/06002B22.png b/static/icons/06002B22.png
new file mode 100755
index 00000000..06ba4851
Binary files /dev/null and b/static/icons/06002B22.png differ
diff --git a/static/icons/06002B23.png b/static/icons/06002B23.png
new file mode 100755
index 00000000..6a93ebfe
Binary files /dev/null and b/static/icons/06002B23.png differ
diff --git a/static/icons/06002B24.png b/static/icons/06002B24.png
new file mode 100755
index 00000000..17528bd9
Binary files /dev/null and b/static/icons/06002B24.png differ
diff --git a/static/icons/06002B25.png b/static/icons/06002B25.png
new file mode 100755
index 00000000..4be8f697
Binary files /dev/null and b/static/icons/06002B25.png differ
diff --git a/static/icons/06002B26.png b/static/icons/06002B26.png
new file mode 100755
index 00000000..06f0c234
Binary files /dev/null and b/static/icons/06002B26.png differ
diff --git a/static/icons/06002B27.png b/static/icons/06002B27.png
new file mode 100755
index 00000000..51ddd369
Binary files /dev/null and b/static/icons/06002B27.png differ
diff --git a/static/icons/06002B28.png b/static/icons/06002B28.png
new file mode 100755
index 00000000..0cd846ce
Binary files /dev/null and b/static/icons/06002B28.png differ
diff --git a/static/icons/06002B29.png b/static/icons/06002B29.png
new file mode 100755
index 00000000..d0c60592
Binary files /dev/null and b/static/icons/06002B29.png differ
diff --git a/static/icons/06002B2A.png b/static/icons/06002B2A.png
new file mode 100755
index 00000000..d2a02861
Binary files /dev/null and b/static/icons/06002B2A.png differ
diff --git a/static/icons/06002B2B.png b/static/icons/06002B2B.png
new file mode 100755
index 00000000..153625ba
Binary files /dev/null and b/static/icons/06002B2B.png differ
diff --git a/static/icons/06002B2C.png b/static/icons/06002B2C.png
new file mode 100755
index 00000000..2d9b4c50
Binary files /dev/null and b/static/icons/06002B2C.png differ
diff --git a/static/icons/06002B2D.png b/static/icons/06002B2D.png
new file mode 100755
index 00000000..32dacb67
Binary files /dev/null and b/static/icons/06002B2D.png differ
diff --git a/static/icons/06002B2E.png b/static/icons/06002B2E.png
new file mode 100755
index 00000000..83448651
Binary files /dev/null and b/static/icons/06002B2E.png differ
diff --git a/static/icons/06002B2F.png b/static/icons/06002B2F.png
new file mode 100755
index 00000000..0787ed64
Binary files /dev/null and b/static/icons/06002B2F.png differ
diff --git a/static/icons/06002B30.png b/static/icons/06002B30.png
new file mode 100755
index 00000000..29a802cd
Binary files /dev/null and b/static/icons/06002B30.png differ
diff --git a/static/icons/06002B31.png b/static/icons/06002B31.png
new file mode 100755
index 00000000..60e9aa60
Binary files /dev/null and b/static/icons/06002B31.png differ
diff --git a/static/icons/06002B32.png b/static/icons/06002B32.png
new file mode 100755
index 00000000..8205ca98
Binary files /dev/null and b/static/icons/06002B32.png differ
diff --git a/static/icons/06002B33.png b/static/icons/06002B33.png
new file mode 100755
index 00000000..3d6b5c02
Binary files /dev/null and b/static/icons/06002B33.png differ
diff --git a/static/icons/06002B34.png b/static/icons/06002B34.png
new file mode 100755
index 00000000..d436f976
Binary files /dev/null and b/static/icons/06002B34.png differ
diff --git a/static/icons/06002B35.png b/static/icons/06002B35.png
new file mode 100755
index 00000000..d876ee04
Binary files /dev/null and b/static/icons/06002B35.png differ
diff --git a/static/icons/06002B36.png b/static/icons/06002B36.png
new file mode 100755
index 00000000..df7f401f
Binary files /dev/null and b/static/icons/06002B36.png differ
diff --git a/static/icons/06002B37.png b/static/icons/06002B37.png
new file mode 100755
index 00000000..df5ca8a2
Binary files /dev/null and b/static/icons/06002B37.png differ
diff --git a/static/icons/06002B38.png b/static/icons/06002B38.png
new file mode 100755
index 00000000..5ed9d89c
Binary files /dev/null and b/static/icons/06002B38.png differ
diff --git a/static/icons/06002B39.png b/static/icons/06002B39.png
new file mode 100755
index 00000000..64c32d37
Binary files /dev/null and b/static/icons/06002B39.png differ
diff --git a/static/icons/06002B3A.png b/static/icons/06002B3A.png
new file mode 100755
index 00000000..f72b7c0a
Binary files /dev/null and b/static/icons/06002B3A.png differ
diff --git a/static/icons/06002B3B.png b/static/icons/06002B3B.png
new file mode 100755
index 00000000..7ce789c0
Binary files /dev/null and b/static/icons/06002B3B.png differ
diff --git a/static/icons/06002B3C.png b/static/icons/06002B3C.png
new file mode 100755
index 00000000..379f092d
Binary files /dev/null and b/static/icons/06002B3C.png differ
diff --git a/static/icons/06002B3D.png b/static/icons/06002B3D.png
new file mode 100755
index 00000000..c5e76665
Binary files /dev/null and b/static/icons/06002B3D.png differ
diff --git a/static/icons/06002B3E.png b/static/icons/06002B3E.png
new file mode 100755
index 00000000..d907dd2e
Binary files /dev/null and b/static/icons/06002B3E.png differ
diff --git a/static/icons/06002B3F.png b/static/icons/06002B3F.png
new file mode 100755
index 00000000..4769d1d8
Binary files /dev/null and b/static/icons/06002B3F.png differ
diff --git a/static/icons/06002B40.png b/static/icons/06002B40.png
new file mode 100755
index 00000000..05ef873a
Binary files /dev/null and b/static/icons/06002B40.png differ
diff --git a/static/icons/06002B41.png b/static/icons/06002B41.png
new file mode 100755
index 00000000..c1902f81
Binary files /dev/null and b/static/icons/06002B41.png differ
diff --git a/static/icons/06002B42.png b/static/icons/06002B42.png
new file mode 100755
index 00000000..439adcef
Binary files /dev/null and b/static/icons/06002B42.png differ
diff --git a/static/icons/06002B43.png b/static/icons/06002B43.png
new file mode 100755
index 00000000..94da610e
Binary files /dev/null and b/static/icons/06002B43.png differ
diff --git a/static/icons/06002B44.png b/static/icons/06002B44.png
new file mode 100755
index 00000000..b4f6fd44
Binary files /dev/null and b/static/icons/06002B44.png differ
diff --git a/static/icons/06002B45.png b/static/icons/06002B45.png
new file mode 100755
index 00000000..8b6da17e
Binary files /dev/null and b/static/icons/06002B45.png differ
diff --git a/static/icons/06002B46.png b/static/icons/06002B46.png
new file mode 100755
index 00000000..a0808dcf
Binary files /dev/null and b/static/icons/06002B46.png differ
diff --git a/static/icons/06002B47.png b/static/icons/06002B47.png
new file mode 100755
index 00000000..5620b9bc
Binary files /dev/null and b/static/icons/06002B47.png differ
diff --git a/static/icons/06002B48.png b/static/icons/06002B48.png
new file mode 100755
index 00000000..39c729f3
Binary files /dev/null and b/static/icons/06002B48.png differ
diff --git a/static/icons/06002B49.png b/static/icons/06002B49.png
new file mode 100755
index 00000000..e8e5aa12
Binary files /dev/null and b/static/icons/06002B49.png differ
diff --git a/static/icons/06002B4A.png b/static/icons/06002B4A.png
new file mode 100755
index 00000000..afed58ba
Binary files /dev/null and b/static/icons/06002B4A.png differ
diff --git a/static/icons/06002B4B.png b/static/icons/06002B4B.png
new file mode 100755
index 00000000..39ddb927
Binary files /dev/null and b/static/icons/06002B4B.png differ
diff --git a/static/icons/06002B4C.png b/static/icons/06002B4C.png
new file mode 100755
index 00000000..f2d2bfa5
Binary files /dev/null and b/static/icons/06002B4C.png differ
diff --git a/static/icons/06002B4D.png b/static/icons/06002B4D.png
new file mode 100755
index 00000000..f7d2ff52
Binary files /dev/null and b/static/icons/06002B4D.png differ
diff --git a/static/icons/06002B4E.png b/static/icons/06002B4E.png
new file mode 100755
index 00000000..fabe1f31
Binary files /dev/null and b/static/icons/06002B4E.png differ
diff --git a/static/icons/06002B4F.png b/static/icons/06002B4F.png
new file mode 100755
index 00000000..f016e6c1
Binary files /dev/null and b/static/icons/06002B4F.png differ
diff --git a/static/icons/06002B50.png b/static/icons/06002B50.png
new file mode 100755
index 00000000..62ce7e0a
Binary files /dev/null and b/static/icons/06002B50.png differ
diff --git a/static/icons/06002B52.png b/static/icons/06002B52.png
new file mode 100755
index 00000000..9e74bf03
Binary files /dev/null and b/static/icons/06002B52.png differ
diff --git a/static/icons/06002B53.png b/static/icons/06002B53.png
new file mode 100755
index 00000000..921bc844
Binary files /dev/null and b/static/icons/06002B53.png differ
diff --git a/static/icons/06002B54.png b/static/icons/06002B54.png
new file mode 100755
index 00000000..36b9d7b2
Binary files /dev/null and b/static/icons/06002B54.png differ
diff --git a/static/icons/06002B55.png b/static/icons/06002B55.png
new file mode 100755
index 00000000..36a206c8
Binary files /dev/null and b/static/icons/06002B55.png differ
diff --git a/static/icons/06002B56.png b/static/icons/06002B56.png
new file mode 100755
index 00000000..ade89366
Binary files /dev/null and b/static/icons/06002B56.png differ
diff --git a/static/icons/06002B57.png b/static/icons/06002B57.png
new file mode 100755
index 00000000..ae58b515
Binary files /dev/null and b/static/icons/06002B57.png differ
diff --git a/static/icons/06002B58.png b/static/icons/06002B58.png
new file mode 100755
index 00000000..3f5fd918
Binary files /dev/null and b/static/icons/06002B58.png differ
diff --git a/static/icons/06002B59.png b/static/icons/06002B59.png
new file mode 100755
index 00000000..569d7845
Binary files /dev/null and b/static/icons/06002B59.png differ
diff --git a/static/icons/06002B5A.png b/static/icons/06002B5A.png
new file mode 100755
index 00000000..fa9d317b
Binary files /dev/null and b/static/icons/06002B5A.png differ
diff --git a/static/icons/06002B5B.png b/static/icons/06002B5B.png
new file mode 100755
index 00000000..0c2e7f53
Binary files /dev/null and b/static/icons/06002B5B.png differ
diff --git a/static/icons/06002B5C.png b/static/icons/06002B5C.png
new file mode 100755
index 00000000..88e1f705
Binary files /dev/null and b/static/icons/06002B5C.png differ
diff --git a/static/icons/06002B5D.png b/static/icons/06002B5D.png
new file mode 100755
index 00000000..7f65b8ae
Binary files /dev/null and b/static/icons/06002B5D.png differ
diff --git a/static/icons/06002B5E.png b/static/icons/06002B5E.png
new file mode 100755
index 00000000..fe28b366
Binary files /dev/null and b/static/icons/06002B5E.png differ
diff --git a/static/icons/06002B5F.png b/static/icons/06002B5F.png
new file mode 100755
index 00000000..160befea
Binary files /dev/null and b/static/icons/06002B5F.png differ
diff --git a/static/icons/06002B60.png b/static/icons/06002B60.png
new file mode 100755
index 00000000..3b761d7d
Binary files /dev/null and b/static/icons/06002B60.png differ
diff --git a/static/icons/06002B61.png b/static/icons/06002B61.png
new file mode 100755
index 00000000..4e74df41
Binary files /dev/null and b/static/icons/06002B61.png differ
diff --git a/static/icons/06002B62.png b/static/icons/06002B62.png
new file mode 100755
index 00000000..0783e7b2
Binary files /dev/null and b/static/icons/06002B62.png differ
diff --git a/static/icons/06002B63.png b/static/icons/06002B63.png
new file mode 100755
index 00000000..6603b063
Binary files /dev/null and b/static/icons/06002B63.png differ
diff --git a/static/icons/06002B64.png b/static/icons/06002B64.png
new file mode 100755
index 00000000..822b9cc4
Binary files /dev/null and b/static/icons/06002B64.png differ
diff --git a/static/icons/06002B65.png b/static/icons/06002B65.png
new file mode 100755
index 00000000..aa8928e0
Binary files /dev/null and b/static/icons/06002B65.png differ
diff --git a/static/icons/06002B66.png b/static/icons/06002B66.png
new file mode 100755
index 00000000..9dd0cb60
Binary files /dev/null and b/static/icons/06002B66.png differ
diff --git a/static/icons/06002B67.png b/static/icons/06002B67.png
new file mode 100755
index 00000000..aa60a691
Binary files /dev/null and b/static/icons/06002B67.png differ
diff --git a/static/icons/06002B68.png b/static/icons/06002B68.png
new file mode 100755
index 00000000..1fb957bd
Binary files /dev/null and b/static/icons/06002B68.png differ
diff --git a/static/icons/06002B69.png b/static/icons/06002B69.png
new file mode 100755
index 00000000..1b8a5eea
Binary files /dev/null and b/static/icons/06002B69.png differ
diff --git a/static/icons/06002B6A.png b/static/icons/06002B6A.png
new file mode 100755
index 00000000..c0eb8630
Binary files /dev/null and b/static/icons/06002B6A.png differ
diff --git a/static/icons/06002B6B.png b/static/icons/06002B6B.png
new file mode 100755
index 00000000..26e7bebe
Binary files /dev/null and b/static/icons/06002B6B.png differ
diff --git a/static/icons/06002B6C.png b/static/icons/06002B6C.png
new file mode 100755
index 00000000..1dc26c66
Binary files /dev/null and b/static/icons/06002B6C.png differ
diff --git a/static/icons/06002B6D.png b/static/icons/06002B6D.png
new file mode 100755
index 00000000..69b2f605
Binary files /dev/null and b/static/icons/06002B6D.png differ
diff --git a/static/icons/06002B6E.png b/static/icons/06002B6E.png
new file mode 100755
index 00000000..3a75d074
Binary files /dev/null and b/static/icons/06002B6E.png differ
diff --git a/static/icons/06002B6F.png b/static/icons/06002B6F.png
new file mode 100755
index 00000000..09b0d7b7
Binary files /dev/null and b/static/icons/06002B6F.png differ
diff --git a/static/icons/06002B70.png b/static/icons/06002B70.png
new file mode 100755
index 00000000..140d6747
Binary files /dev/null and b/static/icons/06002B70.png differ
diff --git a/static/icons/06002B71.png b/static/icons/06002B71.png
new file mode 100755
index 00000000..e9bbeaf9
Binary files /dev/null and b/static/icons/06002B71.png differ
diff --git a/static/icons/06002B72.png b/static/icons/06002B72.png
new file mode 100755
index 00000000..ba427a83
Binary files /dev/null and b/static/icons/06002B72.png differ
diff --git a/static/icons/06002B73.png b/static/icons/06002B73.png
new file mode 100755
index 00000000..2dfa9ac7
Binary files /dev/null and b/static/icons/06002B73.png differ
diff --git a/static/icons/06002B74.png b/static/icons/06002B74.png
new file mode 100755
index 00000000..2c5dac89
Binary files /dev/null and b/static/icons/06002B74.png differ
diff --git a/static/icons/06002B75.png b/static/icons/06002B75.png
new file mode 100755
index 00000000..415828b3
Binary files /dev/null and b/static/icons/06002B75.png differ
diff --git a/static/icons/06002B76.png b/static/icons/06002B76.png
new file mode 100755
index 00000000..1c10b586
Binary files /dev/null and b/static/icons/06002B76.png differ
diff --git a/static/icons/06002B77.png b/static/icons/06002B77.png
new file mode 100755
index 00000000..73595d52
Binary files /dev/null and b/static/icons/06002B77.png differ
diff --git a/static/icons/06002B78.png b/static/icons/06002B78.png
new file mode 100755
index 00000000..995c5118
Binary files /dev/null and b/static/icons/06002B78.png differ
diff --git a/static/icons/06002B79.png b/static/icons/06002B79.png
new file mode 100755
index 00000000..678d1e56
Binary files /dev/null and b/static/icons/06002B79.png differ
diff --git a/static/icons/06002B7A.png b/static/icons/06002B7A.png
new file mode 100755
index 00000000..16313ed0
Binary files /dev/null and b/static/icons/06002B7A.png differ
diff --git a/static/icons/06002B7B.png b/static/icons/06002B7B.png
new file mode 100755
index 00000000..f376253e
Binary files /dev/null and b/static/icons/06002B7B.png differ
diff --git a/static/icons/06002B7C.png b/static/icons/06002B7C.png
new file mode 100755
index 00000000..0fa4072c
Binary files /dev/null and b/static/icons/06002B7C.png differ
diff --git a/static/icons/06002B7D.png b/static/icons/06002B7D.png
new file mode 100755
index 00000000..01cbbca0
Binary files /dev/null and b/static/icons/06002B7D.png differ
diff --git a/static/icons/06002B7E.png b/static/icons/06002B7E.png
new file mode 100755
index 00000000..167396cf
Binary files /dev/null and b/static/icons/06002B7E.png differ
diff --git a/static/icons/06002B7F.png b/static/icons/06002B7F.png
new file mode 100755
index 00000000..a51e18fc
Binary files /dev/null and b/static/icons/06002B7F.png differ
diff --git a/static/icons/06002B80.png b/static/icons/06002B80.png
new file mode 100755
index 00000000..1aea8dfe
Binary files /dev/null and b/static/icons/06002B80.png differ
diff --git a/static/icons/06002B81.png b/static/icons/06002B81.png
new file mode 100755
index 00000000..c7c5e734
Binary files /dev/null and b/static/icons/06002B81.png differ
diff --git a/static/icons/06002B82.png b/static/icons/06002B82.png
new file mode 100755
index 00000000..bf40a1f9
Binary files /dev/null and b/static/icons/06002B82.png differ
diff --git a/static/icons/06002B83.png b/static/icons/06002B83.png
new file mode 100755
index 00000000..91cb1d76
Binary files /dev/null and b/static/icons/06002B83.png differ
diff --git a/static/icons/06002B84.png b/static/icons/06002B84.png
new file mode 100755
index 00000000..c6b33021
Binary files /dev/null and b/static/icons/06002B84.png differ
diff --git a/static/icons/06002B85.png b/static/icons/06002B85.png
new file mode 100755
index 00000000..62632663
Binary files /dev/null and b/static/icons/06002B85.png differ
diff --git a/static/icons/06002B86.png b/static/icons/06002B86.png
new file mode 100755
index 00000000..6ece33de
Binary files /dev/null and b/static/icons/06002B86.png differ
diff --git a/static/icons/06002B87.png b/static/icons/06002B87.png
new file mode 100755
index 00000000..e0d18002
Binary files /dev/null and b/static/icons/06002B87.png differ
diff --git a/static/icons/06002B88.png b/static/icons/06002B88.png
new file mode 100755
index 00000000..2463da82
Binary files /dev/null and b/static/icons/06002B88.png differ
diff --git a/static/icons/06002B89.png b/static/icons/06002B89.png
new file mode 100755
index 00000000..726f1d66
Binary files /dev/null and b/static/icons/06002B89.png differ
diff --git a/static/icons/06002B8A.png b/static/icons/06002B8A.png
new file mode 100755
index 00000000..2ee901b9
Binary files /dev/null and b/static/icons/06002B8A.png differ
diff --git a/static/icons/06002B8B.png b/static/icons/06002B8B.png
new file mode 100755
index 00000000..31fa7f15
Binary files /dev/null and b/static/icons/06002B8B.png differ
diff --git a/static/icons/06002B8C.png b/static/icons/06002B8C.png
new file mode 100755
index 00000000..ea1624ff
Binary files /dev/null and b/static/icons/06002B8C.png differ
diff --git a/static/icons/06002B8D.png b/static/icons/06002B8D.png
new file mode 100755
index 00000000..43618930
Binary files /dev/null and b/static/icons/06002B8D.png differ
diff --git a/static/icons/06002B8E.png b/static/icons/06002B8E.png
new file mode 100755
index 00000000..21327c26
Binary files /dev/null and b/static/icons/06002B8E.png differ
diff --git a/static/icons/06002B8F.png b/static/icons/06002B8F.png
new file mode 100755
index 00000000..d0bfaa42
Binary files /dev/null and b/static/icons/06002B8F.png differ
diff --git a/static/icons/06002B90.png b/static/icons/06002B90.png
new file mode 100755
index 00000000..ef72d6b0
Binary files /dev/null and b/static/icons/06002B90.png differ
diff --git a/static/icons/06002B91.png b/static/icons/06002B91.png
new file mode 100755
index 00000000..61cf433b
Binary files /dev/null and b/static/icons/06002B91.png differ
diff --git a/static/icons/06002B92.png b/static/icons/06002B92.png
new file mode 100755
index 00000000..1388833a
Binary files /dev/null and b/static/icons/06002B92.png differ
diff --git a/static/icons/06002B93.png b/static/icons/06002B93.png
new file mode 100755
index 00000000..60e76712
Binary files /dev/null and b/static/icons/06002B93.png differ
diff --git a/static/icons/06002B94.png b/static/icons/06002B94.png
new file mode 100755
index 00000000..3a15ad2f
Binary files /dev/null and b/static/icons/06002B94.png differ
diff --git a/static/icons/06002B95.png b/static/icons/06002B95.png
new file mode 100755
index 00000000..5a03097e
Binary files /dev/null and b/static/icons/06002B95.png differ
diff --git a/static/icons/06002B96.png b/static/icons/06002B96.png
new file mode 100755
index 00000000..9625f34c
Binary files /dev/null and b/static/icons/06002B96.png differ
diff --git a/static/icons/06002B97.png b/static/icons/06002B97.png
new file mode 100755
index 00000000..c6b652a5
Binary files /dev/null and b/static/icons/06002B97.png differ
diff --git a/static/icons/06002B98.png b/static/icons/06002B98.png
new file mode 100755
index 00000000..94c01a80
Binary files /dev/null and b/static/icons/06002B98.png differ
diff --git a/static/icons/06002B99.png b/static/icons/06002B99.png
new file mode 100755
index 00000000..283990d3
Binary files /dev/null and b/static/icons/06002B99.png differ
diff --git a/static/icons/06002B9A.png b/static/icons/06002B9A.png
new file mode 100755
index 00000000..57dcea3b
Binary files /dev/null and b/static/icons/06002B9A.png differ
diff --git a/static/icons/06002B9B.png b/static/icons/06002B9B.png
new file mode 100755
index 00000000..83bf0526
Binary files /dev/null and b/static/icons/06002B9B.png differ
diff --git a/static/icons/06002B9C.png b/static/icons/06002B9C.png
new file mode 100755
index 00000000..1fe63082
Binary files /dev/null and b/static/icons/06002B9C.png differ
diff --git a/static/icons/06002B9D.png b/static/icons/06002B9D.png
new file mode 100755
index 00000000..cfeb8c48
Binary files /dev/null and b/static/icons/06002B9D.png differ
diff --git a/static/icons/06002B9E.png b/static/icons/06002B9E.png
new file mode 100755
index 00000000..feb8f173
Binary files /dev/null and b/static/icons/06002B9E.png differ
diff --git a/static/icons/06002B9F.png b/static/icons/06002B9F.png
new file mode 100755
index 00000000..9df24e9b
Binary files /dev/null and b/static/icons/06002B9F.png differ
diff --git a/static/icons/06002BA0.png b/static/icons/06002BA0.png
new file mode 100755
index 00000000..ca263d61
Binary files /dev/null and b/static/icons/06002BA0.png differ
diff --git a/static/icons/06002BA1.png b/static/icons/06002BA1.png
new file mode 100755
index 00000000..942e96ce
Binary files /dev/null and b/static/icons/06002BA1.png differ
diff --git a/static/icons/06002BA2.png b/static/icons/06002BA2.png
new file mode 100755
index 00000000..3b768faf
Binary files /dev/null and b/static/icons/06002BA2.png differ
diff --git a/static/icons/06002BA3.png b/static/icons/06002BA3.png
new file mode 100755
index 00000000..5d4f520b
Binary files /dev/null and b/static/icons/06002BA3.png differ
diff --git a/static/icons/06002BA4.png b/static/icons/06002BA4.png
new file mode 100755
index 00000000..bdfd4040
Binary files /dev/null and b/static/icons/06002BA4.png differ
diff --git a/static/icons/06002BA5.png b/static/icons/06002BA5.png
new file mode 100755
index 00000000..748bb304
Binary files /dev/null and b/static/icons/06002BA5.png differ
diff --git a/static/icons/06002BA6.png b/static/icons/06002BA6.png
new file mode 100755
index 00000000..43010c18
Binary files /dev/null and b/static/icons/06002BA6.png differ
diff --git a/static/icons/06002BA7.png b/static/icons/06002BA7.png
new file mode 100755
index 00000000..823ca19d
Binary files /dev/null and b/static/icons/06002BA7.png differ
diff --git a/static/icons/06002BA8.png b/static/icons/06002BA8.png
new file mode 100755
index 00000000..92272e08
Binary files /dev/null and b/static/icons/06002BA8.png differ
diff --git a/static/icons/06002BA9.png b/static/icons/06002BA9.png
new file mode 100755
index 00000000..350bb74c
Binary files /dev/null and b/static/icons/06002BA9.png differ
diff --git a/static/icons/06002BAA.png b/static/icons/06002BAA.png
new file mode 100755
index 00000000..3a5139c4
Binary files /dev/null and b/static/icons/06002BAA.png differ
diff --git a/static/icons/06002BAB.png b/static/icons/06002BAB.png
new file mode 100755
index 00000000..d5bfc99e
Binary files /dev/null and b/static/icons/06002BAB.png differ
diff --git a/static/icons/06002BAC.png b/static/icons/06002BAC.png
new file mode 100755
index 00000000..428fd50a
Binary files /dev/null and b/static/icons/06002BAC.png differ
diff --git a/static/icons/06002BAD.png b/static/icons/06002BAD.png
new file mode 100755
index 00000000..dd6c35b3
Binary files /dev/null and b/static/icons/06002BAD.png differ
diff --git a/static/icons/06002BAE.png b/static/icons/06002BAE.png
new file mode 100755
index 00000000..ec9a1f21
Binary files /dev/null and b/static/icons/06002BAE.png differ
diff --git a/static/icons/06002BAF.png b/static/icons/06002BAF.png
new file mode 100755
index 00000000..602f89c8
Binary files /dev/null and b/static/icons/06002BAF.png differ
diff --git a/static/icons/06002BB0.png b/static/icons/06002BB0.png
new file mode 100755
index 00000000..492609ea
Binary files /dev/null and b/static/icons/06002BB0.png differ
diff --git a/static/icons/06002BB1.png b/static/icons/06002BB1.png
new file mode 100755
index 00000000..d1448f5f
Binary files /dev/null and b/static/icons/06002BB1.png differ
diff --git a/static/icons/06002BB2.png b/static/icons/06002BB2.png
new file mode 100755
index 00000000..9c02ca74
Binary files /dev/null and b/static/icons/06002BB2.png differ
diff --git a/static/icons/06002BB3.png b/static/icons/06002BB3.png
new file mode 100755
index 00000000..c75ec34f
Binary files /dev/null and b/static/icons/06002BB3.png differ
diff --git a/static/icons/06002BB4.png b/static/icons/06002BB4.png
new file mode 100755
index 00000000..250a0d19
Binary files /dev/null and b/static/icons/06002BB4.png differ
diff --git a/static/icons/06002BB5.png b/static/icons/06002BB5.png
new file mode 100755
index 00000000..31386ff8
Binary files /dev/null and b/static/icons/06002BB5.png differ
diff --git a/static/icons/06002BB6.png b/static/icons/06002BB6.png
new file mode 100755
index 00000000..2a0fd8a3
Binary files /dev/null and b/static/icons/06002BB6.png differ
diff --git a/static/icons/06002BB7.png b/static/icons/06002BB7.png
new file mode 100755
index 00000000..a3952438
Binary files /dev/null and b/static/icons/06002BB7.png differ
diff --git a/static/icons/06002BB8.png b/static/icons/06002BB8.png
new file mode 100755
index 00000000..5a79301d
Binary files /dev/null and b/static/icons/06002BB8.png differ
diff --git a/static/icons/06002BB9.png b/static/icons/06002BB9.png
new file mode 100755
index 00000000..4098418d
Binary files /dev/null and b/static/icons/06002BB9.png differ
diff --git a/static/icons/06002BBA.png b/static/icons/06002BBA.png
new file mode 100755
index 00000000..6c303b95
Binary files /dev/null and b/static/icons/06002BBA.png differ
diff --git a/static/icons/06002BBB.png b/static/icons/06002BBB.png
new file mode 100755
index 00000000..fa571f6d
Binary files /dev/null and b/static/icons/06002BBB.png differ
diff --git a/static/icons/06002BBC.png b/static/icons/06002BBC.png
new file mode 100755
index 00000000..a7825d63
Binary files /dev/null and b/static/icons/06002BBC.png differ
diff --git a/static/icons/06002BBD.png b/static/icons/06002BBD.png
new file mode 100755
index 00000000..285d0118
Binary files /dev/null and b/static/icons/06002BBD.png differ
diff --git a/static/icons/06002BBE.png b/static/icons/06002BBE.png
new file mode 100755
index 00000000..76e3e760
Binary files /dev/null and b/static/icons/06002BBE.png differ
diff --git a/static/icons/06002BBF.png b/static/icons/06002BBF.png
new file mode 100755
index 00000000..2c7e1e7f
Binary files /dev/null and b/static/icons/06002BBF.png differ
diff --git a/static/icons/06002BC0.png b/static/icons/06002BC0.png
new file mode 100755
index 00000000..bfd2f64c
Binary files /dev/null and b/static/icons/06002BC0.png differ
diff --git a/static/icons/06002BC1.png b/static/icons/06002BC1.png
new file mode 100755
index 00000000..c6452bbb
Binary files /dev/null and b/static/icons/06002BC1.png differ
diff --git a/static/icons/06002BC2.png b/static/icons/06002BC2.png
new file mode 100755
index 00000000..ccc430ac
Binary files /dev/null and b/static/icons/06002BC2.png differ
diff --git a/static/icons/06002BC3.png b/static/icons/06002BC3.png
new file mode 100755
index 00000000..5c3107ff
Binary files /dev/null and b/static/icons/06002BC3.png differ
diff --git a/static/icons/06002BC4.png b/static/icons/06002BC4.png
new file mode 100755
index 00000000..79998642
Binary files /dev/null and b/static/icons/06002BC4.png differ
diff --git a/static/icons/06002BC5.png b/static/icons/06002BC5.png
new file mode 100755
index 00000000..37840fe4
Binary files /dev/null and b/static/icons/06002BC5.png differ
diff --git a/static/icons/06002BC6.png b/static/icons/06002BC6.png
new file mode 100755
index 00000000..64366056
Binary files /dev/null and b/static/icons/06002BC6.png differ
diff --git a/static/icons/06002BC7.png b/static/icons/06002BC7.png
new file mode 100755
index 00000000..eb1517ce
Binary files /dev/null and b/static/icons/06002BC7.png differ
diff --git a/static/icons/06002BC8.png b/static/icons/06002BC8.png
new file mode 100755
index 00000000..f1189af8
Binary files /dev/null and b/static/icons/06002BC8.png differ
diff --git a/static/icons/06002BC9.png b/static/icons/06002BC9.png
new file mode 100755
index 00000000..b5a44716
Binary files /dev/null and b/static/icons/06002BC9.png differ
diff --git a/static/icons/06002BCA.png b/static/icons/06002BCA.png
new file mode 100755
index 00000000..e5340f59
Binary files /dev/null and b/static/icons/06002BCA.png differ
diff --git a/static/icons/06002BCB.png b/static/icons/06002BCB.png
new file mode 100755
index 00000000..7e154367
Binary files /dev/null and b/static/icons/06002BCB.png differ
diff --git a/static/icons/06002BCC.png b/static/icons/06002BCC.png
new file mode 100755
index 00000000..7dbc432c
Binary files /dev/null and b/static/icons/06002BCC.png differ
diff --git a/static/icons/06002BCD.png b/static/icons/06002BCD.png
new file mode 100755
index 00000000..dde6b43d
Binary files /dev/null and b/static/icons/06002BCD.png differ
diff --git a/static/icons/06002BCE.png b/static/icons/06002BCE.png
new file mode 100755
index 00000000..3c8e243d
Binary files /dev/null and b/static/icons/06002BCE.png differ
diff --git a/static/icons/06002BD0.png b/static/icons/06002BD0.png
new file mode 100755
index 00000000..98719b7a
Binary files /dev/null and b/static/icons/06002BD0.png differ
diff --git a/static/icons/06002BD1.png b/static/icons/06002BD1.png
new file mode 100755
index 00000000..b8baab93
Binary files /dev/null and b/static/icons/06002BD1.png differ
diff --git a/static/icons/06002BD2.png b/static/icons/06002BD2.png
new file mode 100755
index 00000000..ecdcbbe8
Binary files /dev/null and b/static/icons/06002BD2.png differ
diff --git a/static/icons/06002BD3.png b/static/icons/06002BD3.png
new file mode 100755
index 00000000..03d544fb
Binary files /dev/null and b/static/icons/06002BD3.png differ
diff --git a/static/icons/06002BD4.png b/static/icons/06002BD4.png
new file mode 100755
index 00000000..fc76eaac
Binary files /dev/null and b/static/icons/06002BD4.png differ
diff --git a/static/icons/06002BD5.png b/static/icons/06002BD5.png
new file mode 100755
index 00000000..014fa927
Binary files /dev/null and b/static/icons/06002BD5.png differ
diff --git a/static/icons/06002BD6.png b/static/icons/06002BD6.png
new file mode 100755
index 00000000..dd783cda
Binary files /dev/null and b/static/icons/06002BD6.png differ
diff --git a/static/icons/06002BD7.png b/static/icons/06002BD7.png
new file mode 100755
index 00000000..cc15c1a3
Binary files /dev/null and b/static/icons/06002BD7.png differ
diff --git a/static/icons/06002BD8.png b/static/icons/06002BD8.png
new file mode 100755
index 00000000..9a758622
Binary files /dev/null and b/static/icons/06002BD8.png differ
diff --git a/static/icons/06002BD9.png b/static/icons/06002BD9.png
new file mode 100755
index 00000000..4fb04c70
Binary files /dev/null and b/static/icons/06002BD9.png differ
diff --git a/static/icons/06002BDA.png b/static/icons/06002BDA.png
new file mode 100755
index 00000000..f2de4cf3
Binary files /dev/null and b/static/icons/06002BDA.png differ
diff --git a/static/icons/06002BDC.png b/static/icons/06002BDC.png
new file mode 100755
index 00000000..86b0395c
Binary files /dev/null and b/static/icons/06002BDC.png differ
diff --git a/static/icons/06002BDD.png b/static/icons/06002BDD.png
new file mode 100755
index 00000000..121d6502
Binary files /dev/null and b/static/icons/06002BDD.png differ
diff --git a/static/icons/06002BDE.png b/static/icons/06002BDE.png
new file mode 100755
index 00000000..4c2853cc
Binary files /dev/null and b/static/icons/06002BDE.png differ
diff --git a/static/icons/06002BDF.png b/static/icons/06002BDF.png
new file mode 100755
index 00000000..9607ca8e
Binary files /dev/null and b/static/icons/06002BDF.png differ
diff --git a/static/icons/06002BE0.png b/static/icons/06002BE0.png
new file mode 100755
index 00000000..4c989185
Binary files /dev/null and b/static/icons/06002BE0.png differ
diff --git a/static/icons/06002BE1.png b/static/icons/06002BE1.png
new file mode 100755
index 00000000..495b65bb
Binary files /dev/null and b/static/icons/06002BE1.png differ
diff --git a/static/icons/06002BE2.png b/static/icons/06002BE2.png
new file mode 100755
index 00000000..37302064
Binary files /dev/null and b/static/icons/06002BE2.png differ
diff --git a/static/icons/06002BE3.png b/static/icons/06002BE3.png
new file mode 100755
index 00000000..2f847204
Binary files /dev/null and b/static/icons/06002BE3.png differ
diff --git a/static/icons/06002BE4.png b/static/icons/06002BE4.png
new file mode 100755
index 00000000..e42b7113
Binary files /dev/null and b/static/icons/06002BE4.png differ
diff --git a/static/icons/06002BE5.png b/static/icons/06002BE5.png
new file mode 100755
index 00000000..df38c482
Binary files /dev/null and b/static/icons/06002BE5.png differ
diff --git a/static/icons/06002BE6.png b/static/icons/06002BE6.png
new file mode 100755
index 00000000..1846335c
Binary files /dev/null and b/static/icons/06002BE6.png differ
diff --git a/static/icons/06002BE7.png b/static/icons/06002BE7.png
new file mode 100755
index 00000000..f1e3b6d0
Binary files /dev/null and b/static/icons/06002BE7.png differ
diff --git a/static/icons/06002BE8.png b/static/icons/06002BE8.png
new file mode 100755
index 00000000..c589ec02
Binary files /dev/null and b/static/icons/06002BE8.png differ
diff --git a/static/icons/06002BE9.png b/static/icons/06002BE9.png
new file mode 100755
index 00000000..de5f7b78
Binary files /dev/null and b/static/icons/06002BE9.png differ
diff --git a/static/icons/06002BEA.png b/static/icons/06002BEA.png
new file mode 100755
index 00000000..c85c6d79
Binary files /dev/null and b/static/icons/06002BEA.png differ
diff --git a/static/icons/06002BEB.png b/static/icons/06002BEB.png
new file mode 100755
index 00000000..ac0a046a
Binary files /dev/null and b/static/icons/06002BEB.png differ
diff --git a/static/icons/06002BEC.png b/static/icons/06002BEC.png
new file mode 100755
index 00000000..d523e01b
Binary files /dev/null and b/static/icons/06002BEC.png differ
diff --git a/static/icons/06002BED.png b/static/icons/06002BED.png
new file mode 100755
index 00000000..6d7615d5
Binary files /dev/null and b/static/icons/06002BED.png differ
diff --git a/static/icons/06002BEE.png b/static/icons/06002BEE.png
new file mode 100755
index 00000000..82ab4153
Binary files /dev/null and b/static/icons/06002BEE.png differ
diff --git a/static/icons/06002BEF.png b/static/icons/06002BEF.png
new file mode 100755
index 00000000..0fd8efa4
Binary files /dev/null and b/static/icons/06002BEF.png differ
diff --git a/static/icons/06002BF0.png b/static/icons/06002BF0.png
new file mode 100755
index 00000000..2ccb62a3
Binary files /dev/null and b/static/icons/06002BF0.png differ
diff --git a/static/icons/06002BF1.png b/static/icons/06002BF1.png
new file mode 100755
index 00000000..86fd6acf
Binary files /dev/null and b/static/icons/06002BF1.png differ
diff --git a/static/icons/06002BF2.png b/static/icons/06002BF2.png
new file mode 100755
index 00000000..98aa33f6
Binary files /dev/null and b/static/icons/06002BF2.png differ
diff --git a/static/icons/06002BF3.png b/static/icons/06002BF3.png
new file mode 100755
index 00000000..29157279
Binary files /dev/null and b/static/icons/06002BF3.png differ
diff --git a/static/icons/06002BF4.png b/static/icons/06002BF4.png
new file mode 100755
index 00000000..8a18e721
Binary files /dev/null and b/static/icons/06002BF4.png differ
diff --git a/static/icons/06002BF5.png b/static/icons/06002BF5.png
new file mode 100755
index 00000000..0fa0a912
Binary files /dev/null and b/static/icons/06002BF5.png differ
diff --git a/static/icons/06002BF6.png b/static/icons/06002BF6.png
new file mode 100755
index 00000000..aae584b4
Binary files /dev/null and b/static/icons/06002BF6.png differ
diff --git a/static/icons/06002BF7.png b/static/icons/06002BF7.png
new file mode 100755
index 00000000..9aa46cbf
Binary files /dev/null and b/static/icons/06002BF7.png differ
diff --git a/static/icons/06002BF8.png b/static/icons/06002BF8.png
new file mode 100755
index 00000000..ab95e2d3
Binary files /dev/null and b/static/icons/06002BF8.png differ
diff --git a/static/icons/06002BF9.png b/static/icons/06002BF9.png
new file mode 100755
index 00000000..778adecf
Binary files /dev/null and b/static/icons/06002BF9.png differ
diff --git a/static/icons/06002BFA.png b/static/icons/06002BFA.png
new file mode 100755
index 00000000..4526cd52
Binary files /dev/null and b/static/icons/06002BFA.png differ
diff --git a/static/icons/06002BFB.png b/static/icons/06002BFB.png
new file mode 100755
index 00000000..9acb9e20
Binary files /dev/null and b/static/icons/06002BFB.png differ
diff --git a/static/icons/06002BFC.png b/static/icons/06002BFC.png
new file mode 100755
index 00000000..588612d2
Binary files /dev/null and b/static/icons/06002BFC.png differ
diff --git a/static/icons/06002BFD.png b/static/icons/06002BFD.png
new file mode 100755
index 00000000..b7eb16c2
Binary files /dev/null and b/static/icons/06002BFD.png differ
diff --git a/static/icons/06002BFE.png b/static/icons/06002BFE.png
new file mode 100755
index 00000000..89835771
Binary files /dev/null and b/static/icons/06002BFE.png differ
diff --git a/static/icons/06002BFF.png b/static/icons/06002BFF.png
new file mode 100755
index 00000000..fe593893
Binary files /dev/null and b/static/icons/06002BFF.png differ
diff --git a/static/icons/06002C00.png b/static/icons/06002C00.png
new file mode 100755
index 00000000..1aca2017
Binary files /dev/null and b/static/icons/06002C00.png differ
diff --git a/static/icons/06002C01.png b/static/icons/06002C01.png
new file mode 100755
index 00000000..50381d6e
Binary files /dev/null and b/static/icons/06002C01.png differ
diff --git a/static/icons/06002C02.png b/static/icons/06002C02.png
new file mode 100755
index 00000000..dea04665
Binary files /dev/null and b/static/icons/06002C02.png differ
diff --git a/static/icons/06002C03.png b/static/icons/06002C03.png
new file mode 100755
index 00000000..24239570
Binary files /dev/null and b/static/icons/06002C03.png differ
diff --git a/static/icons/06002C04.png b/static/icons/06002C04.png
new file mode 100755
index 00000000..b43ecc86
Binary files /dev/null and b/static/icons/06002C04.png differ
diff --git a/static/icons/06002C05.png b/static/icons/06002C05.png
new file mode 100755
index 00000000..0b4f18b5
Binary files /dev/null and b/static/icons/06002C05.png differ
diff --git a/static/icons/06002C06.png b/static/icons/06002C06.png
new file mode 100755
index 00000000..3bc24aed
Binary files /dev/null and b/static/icons/06002C06.png differ
diff --git a/static/icons/06002C07.png b/static/icons/06002C07.png
new file mode 100755
index 00000000..bdb49658
Binary files /dev/null and b/static/icons/06002C07.png differ
diff --git a/static/icons/06002C08.png b/static/icons/06002C08.png
new file mode 100755
index 00000000..19cc23e6
Binary files /dev/null and b/static/icons/06002C08.png differ
diff --git a/static/icons/06002C09.png b/static/icons/06002C09.png
new file mode 100755
index 00000000..7ea1135f
Binary files /dev/null and b/static/icons/06002C09.png differ
diff --git a/static/icons/06002C0A.png b/static/icons/06002C0A.png
new file mode 100755
index 00000000..da12ad51
Binary files /dev/null and b/static/icons/06002C0A.png differ
diff --git a/static/icons/06002C0B.png b/static/icons/06002C0B.png
new file mode 100755
index 00000000..ede12110
Binary files /dev/null and b/static/icons/06002C0B.png differ
diff --git a/static/icons/06002C0C.png b/static/icons/06002C0C.png
new file mode 100755
index 00000000..bca8996e
Binary files /dev/null and b/static/icons/06002C0C.png differ
diff --git a/static/icons/06002C0D.png b/static/icons/06002C0D.png
new file mode 100755
index 00000000..a1b594ad
Binary files /dev/null and b/static/icons/06002C0D.png differ
diff --git a/static/icons/06002C0E.png b/static/icons/06002C0E.png
new file mode 100755
index 00000000..09380e56
Binary files /dev/null and b/static/icons/06002C0E.png differ
diff --git a/static/icons/06002C0F.png b/static/icons/06002C0F.png
new file mode 100755
index 00000000..d6e57649
Binary files /dev/null and b/static/icons/06002C0F.png differ
diff --git a/static/icons/06002C10.png b/static/icons/06002C10.png
new file mode 100755
index 00000000..1bc8340a
Binary files /dev/null and b/static/icons/06002C10.png differ
diff --git a/static/icons/06002C11.png b/static/icons/06002C11.png
new file mode 100755
index 00000000..3bee9c27
Binary files /dev/null and b/static/icons/06002C11.png differ
diff --git a/static/icons/06002C12.png b/static/icons/06002C12.png
new file mode 100755
index 00000000..56430c02
Binary files /dev/null and b/static/icons/06002C12.png differ
diff --git a/static/icons/06002C13.png b/static/icons/06002C13.png
new file mode 100755
index 00000000..b8803677
Binary files /dev/null and b/static/icons/06002C13.png differ
diff --git a/static/icons/06002C14.png b/static/icons/06002C14.png
new file mode 100755
index 00000000..e15c5915
Binary files /dev/null and b/static/icons/06002C14.png differ
diff --git a/static/icons/06002C15.png b/static/icons/06002C15.png
new file mode 100755
index 00000000..2e88ef83
Binary files /dev/null and b/static/icons/06002C15.png differ
diff --git a/static/icons/06002C16.png b/static/icons/06002C16.png
new file mode 100755
index 00000000..71db9ead
Binary files /dev/null and b/static/icons/06002C16.png differ
diff --git a/static/icons/06002C17.png b/static/icons/06002C17.png
new file mode 100755
index 00000000..bf4982c4
Binary files /dev/null and b/static/icons/06002C17.png differ
diff --git a/static/icons/06002C18.png b/static/icons/06002C18.png
new file mode 100755
index 00000000..757f2458
Binary files /dev/null and b/static/icons/06002C18.png differ
diff --git a/static/icons/06002C19.png b/static/icons/06002C19.png
new file mode 100755
index 00000000..ce66f0db
Binary files /dev/null and b/static/icons/06002C19.png differ
diff --git a/static/icons/06002C1A.png b/static/icons/06002C1A.png
new file mode 100755
index 00000000..5319da82
Binary files /dev/null and b/static/icons/06002C1A.png differ
diff --git a/static/icons/06002C1B.png b/static/icons/06002C1B.png
new file mode 100755
index 00000000..3a0ff85f
Binary files /dev/null and b/static/icons/06002C1B.png differ
diff --git a/static/icons/06002C1C.png b/static/icons/06002C1C.png
new file mode 100755
index 00000000..b4048567
Binary files /dev/null and b/static/icons/06002C1C.png differ
diff --git a/static/icons/06002C1D.png b/static/icons/06002C1D.png
new file mode 100755
index 00000000..3fb20e4b
Binary files /dev/null and b/static/icons/06002C1D.png differ
diff --git a/static/icons/06002C1E.png b/static/icons/06002C1E.png
new file mode 100755
index 00000000..74881126
Binary files /dev/null and b/static/icons/06002C1E.png differ
diff --git a/static/icons/06002C1F.png b/static/icons/06002C1F.png
new file mode 100755
index 00000000..e79a9324
Binary files /dev/null and b/static/icons/06002C1F.png differ
diff --git a/static/icons/06002C20.png b/static/icons/06002C20.png
new file mode 100755
index 00000000..36fa7a91
Binary files /dev/null and b/static/icons/06002C20.png differ
diff --git a/static/icons/06002C21.png b/static/icons/06002C21.png
new file mode 100755
index 00000000..3b069a8c
Binary files /dev/null and b/static/icons/06002C21.png differ
diff --git a/static/icons/06002C22.png b/static/icons/06002C22.png
new file mode 100755
index 00000000..b13b84c8
Binary files /dev/null and b/static/icons/06002C22.png differ
diff --git a/static/icons/06002C23.png b/static/icons/06002C23.png
new file mode 100755
index 00000000..3e8ed61d
Binary files /dev/null and b/static/icons/06002C23.png differ
diff --git a/static/icons/06002C24.png b/static/icons/06002C24.png
new file mode 100755
index 00000000..6dfa4c59
Binary files /dev/null and b/static/icons/06002C24.png differ
diff --git a/static/icons/06002C25.png b/static/icons/06002C25.png
new file mode 100755
index 00000000..7faf2033
Binary files /dev/null and b/static/icons/06002C25.png differ
diff --git a/static/icons/06002C26.png b/static/icons/06002C26.png
new file mode 100755
index 00000000..1de33fb4
Binary files /dev/null and b/static/icons/06002C26.png differ
diff --git a/static/icons/06002C27.png b/static/icons/06002C27.png
new file mode 100755
index 00000000..9eb3c3eb
Binary files /dev/null and b/static/icons/06002C27.png differ
diff --git a/static/icons/06002C28.png b/static/icons/06002C28.png
new file mode 100755
index 00000000..61a5466e
Binary files /dev/null and b/static/icons/06002C28.png differ
diff --git a/static/icons/06002C29.png b/static/icons/06002C29.png
new file mode 100755
index 00000000..b977a1bb
Binary files /dev/null and b/static/icons/06002C29.png differ
diff --git a/static/icons/06002C2A.png b/static/icons/06002C2A.png
new file mode 100755
index 00000000..c3bbbcf5
Binary files /dev/null and b/static/icons/06002C2A.png differ
diff --git a/static/icons/06002C2B.png b/static/icons/06002C2B.png
new file mode 100755
index 00000000..22adbde6
Binary files /dev/null and b/static/icons/06002C2B.png differ
diff --git a/static/icons/06002C2C.png b/static/icons/06002C2C.png
new file mode 100755
index 00000000..b7d131ff
Binary files /dev/null and b/static/icons/06002C2C.png differ
diff --git a/static/icons/06002C2D.png b/static/icons/06002C2D.png
new file mode 100755
index 00000000..eff499e2
Binary files /dev/null and b/static/icons/06002C2D.png differ
diff --git a/static/icons/06002C2E.png b/static/icons/06002C2E.png
new file mode 100755
index 00000000..021f8daa
Binary files /dev/null and b/static/icons/06002C2E.png differ
diff --git a/static/icons/06002C2F.png b/static/icons/06002C2F.png
new file mode 100755
index 00000000..02d0b1de
Binary files /dev/null and b/static/icons/06002C2F.png differ
diff --git a/static/icons/06002C30.png b/static/icons/06002C30.png
new file mode 100755
index 00000000..beec2479
Binary files /dev/null and b/static/icons/06002C30.png differ
diff --git a/static/icons/06002C31.png b/static/icons/06002C31.png
new file mode 100755
index 00000000..45898318
Binary files /dev/null and b/static/icons/06002C31.png differ
diff --git a/static/icons/06002C32.png b/static/icons/06002C32.png
new file mode 100755
index 00000000..681f85e5
Binary files /dev/null and b/static/icons/06002C32.png differ
diff --git a/static/icons/06002C33.png b/static/icons/06002C33.png
new file mode 100755
index 00000000..797f7d46
Binary files /dev/null and b/static/icons/06002C33.png differ
diff --git a/static/icons/06002C34.png b/static/icons/06002C34.png
new file mode 100755
index 00000000..53bd3c49
Binary files /dev/null and b/static/icons/06002C34.png differ
diff --git a/static/icons/06002C35.png b/static/icons/06002C35.png
new file mode 100755
index 00000000..967d8456
Binary files /dev/null and b/static/icons/06002C35.png differ
diff --git a/static/icons/06002C36.png b/static/icons/06002C36.png
new file mode 100755
index 00000000..54a8767c
Binary files /dev/null and b/static/icons/06002C36.png differ
diff --git a/static/icons/06002C37.png b/static/icons/06002C37.png
new file mode 100755
index 00000000..2870b148
Binary files /dev/null and b/static/icons/06002C37.png differ
diff --git a/static/icons/06002C38.png b/static/icons/06002C38.png
new file mode 100755
index 00000000..33e84a7d
Binary files /dev/null and b/static/icons/06002C38.png differ
diff --git a/static/icons/06002C39.png b/static/icons/06002C39.png
new file mode 100755
index 00000000..20825a23
Binary files /dev/null and b/static/icons/06002C39.png differ
diff --git a/static/icons/06002C3A.png b/static/icons/06002C3A.png
new file mode 100755
index 00000000..ddd9b278
Binary files /dev/null and b/static/icons/06002C3A.png differ
diff --git a/static/icons/06002C3B.png b/static/icons/06002C3B.png
new file mode 100755
index 00000000..fef6b51e
Binary files /dev/null and b/static/icons/06002C3B.png differ
diff --git a/static/icons/06002C3C.png b/static/icons/06002C3C.png
new file mode 100755
index 00000000..caa956c9
Binary files /dev/null and b/static/icons/06002C3C.png differ
diff --git a/static/icons/06002C3D.png b/static/icons/06002C3D.png
new file mode 100755
index 00000000..df1ad6e1
Binary files /dev/null and b/static/icons/06002C3D.png differ
diff --git a/static/icons/06002C3E.png b/static/icons/06002C3E.png
new file mode 100755
index 00000000..755fbc5a
Binary files /dev/null and b/static/icons/06002C3E.png differ
diff --git a/static/icons/06002C3F.png b/static/icons/06002C3F.png
new file mode 100755
index 00000000..9594ce45
Binary files /dev/null and b/static/icons/06002C3F.png differ
diff --git a/static/icons/06002C40.png b/static/icons/06002C40.png
new file mode 100755
index 00000000..8a2b27d9
Binary files /dev/null and b/static/icons/06002C40.png differ
diff --git a/static/icons/06002C41.png b/static/icons/06002C41.png
new file mode 100755
index 00000000..1ce47dd2
Binary files /dev/null and b/static/icons/06002C41.png differ
diff --git a/static/icons/06002C42.png b/static/icons/06002C42.png
new file mode 100755
index 00000000..2f3d00ca
Binary files /dev/null and b/static/icons/06002C42.png differ
diff --git a/static/icons/06002C44.png b/static/icons/06002C44.png
new file mode 100755
index 00000000..0d607847
Binary files /dev/null and b/static/icons/06002C44.png differ
diff --git a/static/icons/06002C45.png b/static/icons/06002C45.png
new file mode 100755
index 00000000..368d3b25
Binary files /dev/null and b/static/icons/06002C45.png differ
diff --git a/static/icons/06002C46.png b/static/icons/06002C46.png
new file mode 100755
index 00000000..33e1dbad
Binary files /dev/null and b/static/icons/06002C46.png differ
diff --git a/static/icons/06002C47.png b/static/icons/06002C47.png
new file mode 100755
index 00000000..27d55f3d
Binary files /dev/null and b/static/icons/06002C47.png differ
diff --git a/static/icons/06002C48.png b/static/icons/06002C48.png
new file mode 100755
index 00000000..d3f8085e
Binary files /dev/null and b/static/icons/06002C48.png differ
diff --git a/static/icons/06002C49.png b/static/icons/06002C49.png
new file mode 100755
index 00000000..716a76a7
Binary files /dev/null and b/static/icons/06002C49.png differ
diff --git a/static/icons/06002C4A.png b/static/icons/06002C4A.png
new file mode 100755
index 00000000..679ecbdf
Binary files /dev/null and b/static/icons/06002C4A.png differ
diff --git a/static/icons/06002C4B.png b/static/icons/06002C4B.png
new file mode 100755
index 00000000..59c581c6
Binary files /dev/null and b/static/icons/06002C4B.png differ
diff --git a/static/icons/06002C4C.png b/static/icons/06002C4C.png
new file mode 100755
index 00000000..c34af3f1
Binary files /dev/null and b/static/icons/06002C4C.png differ
diff --git a/static/icons/06002C4D.png b/static/icons/06002C4D.png
new file mode 100755
index 00000000..1ba52b6f
Binary files /dev/null and b/static/icons/06002C4D.png differ
diff --git a/static/icons/06002C4E.png b/static/icons/06002C4E.png
new file mode 100755
index 00000000..3dae3c33
Binary files /dev/null and b/static/icons/06002C4E.png differ
diff --git a/static/icons/06002C4F.png b/static/icons/06002C4F.png
new file mode 100755
index 00000000..47b181a3
Binary files /dev/null and b/static/icons/06002C4F.png differ
diff --git a/static/icons/06002C50.png b/static/icons/06002C50.png
new file mode 100755
index 00000000..9df69917
Binary files /dev/null and b/static/icons/06002C50.png differ
diff --git a/static/icons/06002C51.png b/static/icons/06002C51.png
new file mode 100755
index 00000000..a68d89a1
Binary files /dev/null and b/static/icons/06002C51.png differ
diff --git a/static/icons/06002C52.png b/static/icons/06002C52.png
new file mode 100755
index 00000000..00b74a48
Binary files /dev/null and b/static/icons/06002C52.png differ
diff --git a/static/icons/06002C53.png b/static/icons/06002C53.png
new file mode 100755
index 00000000..b4336499
Binary files /dev/null and b/static/icons/06002C53.png differ
diff --git a/static/icons/06002C54.png b/static/icons/06002C54.png
new file mode 100755
index 00000000..a6554465
Binary files /dev/null and b/static/icons/06002C54.png differ
diff --git a/static/icons/06002C55.png b/static/icons/06002C55.png
new file mode 100755
index 00000000..224b1c92
Binary files /dev/null and b/static/icons/06002C55.png differ
diff --git a/static/icons/06002C56.png b/static/icons/06002C56.png
new file mode 100755
index 00000000..11c4b997
Binary files /dev/null and b/static/icons/06002C56.png differ
diff --git a/static/icons/06002C57.png b/static/icons/06002C57.png
new file mode 100755
index 00000000..c5c3097a
Binary files /dev/null and b/static/icons/06002C57.png differ
diff --git a/static/icons/06002C58.png b/static/icons/06002C58.png
new file mode 100755
index 00000000..fb9d4498
Binary files /dev/null and b/static/icons/06002C58.png differ
diff --git a/static/icons/06002C59.png b/static/icons/06002C59.png
new file mode 100755
index 00000000..20706776
Binary files /dev/null and b/static/icons/06002C59.png differ
diff --git a/static/icons/06002C5A.png b/static/icons/06002C5A.png
new file mode 100755
index 00000000..811037b8
Binary files /dev/null and b/static/icons/06002C5A.png differ
diff --git a/static/icons/06002C5B.png b/static/icons/06002C5B.png
new file mode 100755
index 00000000..683b64fa
Binary files /dev/null and b/static/icons/06002C5B.png differ
diff --git a/static/icons/06002C5C.png b/static/icons/06002C5C.png
new file mode 100755
index 00000000..6c59d9a5
Binary files /dev/null and b/static/icons/06002C5C.png differ
diff --git a/static/icons/06002C5D.png b/static/icons/06002C5D.png
new file mode 100755
index 00000000..a657d07f
Binary files /dev/null and b/static/icons/06002C5D.png differ
diff --git a/static/icons/06002C5E.png b/static/icons/06002C5E.png
new file mode 100755
index 00000000..74c0a69d
Binary files /dev/null and b/static/icons/06002C5E.png differ
diff --git a/static/icons/06002C5F.png b/static/icons/06002C5F.png
new file mode 100755
index 00000000..78ea9028
Binary files /dev/null and b/static/icons/06002C5F.png differ
diff --git a/static/icons/06002C60.png b/static/icons/06002C60.png
new file mode 100755
index 00000000..2084048a
Binary files /dev/null and b/static/icons/06002C60.png differ
diff --git a/static/icons/06002C61.png b/static/icons/06002C61.png
new file mode 100755
index 00000000..0bd82630
Binary files /dev/null and b/static/icons/06002C61.png differ
diff --git a/static/icons/06002C62.png b/static/icons/06002C62.png
new file mode 100755
index 00000000..8fc793a2
Binary files /dev/null and b/static/icons/06002C62.png differ
diff --git a/static/icons/06002C63.png b/static/icons/06002C63.png
new file mode 100755
index 00000000..c9c6d27e
Binary files /dev/null and b/static/icons/06002C63.png differ
diff --git a/static/icons/06002C64.png b/static/icons/06002C64.png
new file mode 100755
index 00000000..4098972a
Binary files /dev/null and b/static/icons/06002C64.png differ
diff --git a/static/icons/06002C65.png b/static/icons/06002C65.png
new file mode 100755
index 00000000..32e570b4
Binary files /dev/null and b/static/icons/06002C65.png differ
diff --git a/static/icons/06002C66.png b/static/icons/06002C66.png
new file mode 100755
index 00000000..c21e6c62
Binary files /dev/null and b/static/icons/06002C66.png differ
diff --git a/static/icons/06002C67.png b/static/icons/06002C67.png
new file mode 100755
index 00000000..bb4d24fb
Binary files /dev/null and b/static/icons/06002C67.png differ
diff --git a/static/icons/06002C68.png b/static/icons/06002C68.png
new file mode 100755
index 00000000..5288aede
Binary files /dev/null and b/static/icons/06002C68.png differ
diff --git a/static/icons/06002C69.png b/static/icons/06002C69.png
new file mode 100755
index 00000000..6da28e45
Binary files /dev/null and b/static/icons/06002C69.png differ
diff --git a/static/icons/06002C6A.png b/static/icons/06002C6A.png
new file mode 100755
index 00000000..e2329706
Binary files /dev/null and b/static/icons/06002C6A.png differ
diff --git a/static/icons/06002C6B.png b/static/icons/06002C6B.png
new file mode 100755
index 00000000..edfa9381
Binary files /dev/null and b/static/icons/06002C6B.png differ
diff --git a/static/icons/06002C6C.png b/static/icons/06002C6C.png
new file mode 100755
index 00000000..097b899e
Binary files /dev/null and b/static/icons/06002C6C.png differ
diff --git a/static/icons/06002C6D.png b/static/icons/06002C6D.png
new file mode 100755
index 00000000..324dba53
Binary files /dev/null and b/static/icons/06002C6D.png differ
diff --git a/static/icons/06002C6E.png b/static/icons/06002C6E.png
new file mode 100755
index 00000000..b4542125
Binary files /dev/null and b/static/icons/06002C6E.png differ
diff --git a/static/icons/06002C6F.png b/static/icons/06002C6F.png
new file mode 100755
index 00000000..43b3514b
Binary files /dev/null and b/static/icons/06002C6F.png differ
diff --git a/static/icons/06002C70.png b/static/icons/06002C70.png
new file mode 100755
index 00000000..51242da5
Binary files /dev/null and b/static/icons/06002C70.png differ
diff --git a/static/icons/06002C71.png b/static/icons/06002C71.png
new file mode 100755
index 00000000..7b727634
Binary files /dev/null and b/static/icons/06002C71.png differ
diff --git a/static/icons/06002C72.png b/static/icons/06002C72.png
new file mode 100755
index 00000000..25cc4a1e
Binary files /dev/null and b/static/icons/06002C72.png differ
diff --git a/static/icons/06002C73.png b/static/icons/06002C73.png
new file mode 100755
index 00000000..70428198
Binary files /dev/null and b/static/icons/06002C73.png differ
diff --git a/static/icons/06002C74.png b/static/icons/06002C74.png
new file mode 100755
index 00000000..a3aea829
Binary files /dev/null and b/static/icons/06002C74.png differ
diff --git a/static/icons/06002C75.png b/static/icons/06002C75.png
new file mode 100755
index 00000000..6eb2a709
Binary files /dev/null and b/static/icons/06002C75.png differ
diff --git a/static/icons/06002C76.png b/static/icons/06002C76.png
new file mode 100755
index 00000000..13e1a789
Binary files /dev/null and b/static/icons/06002C76.png differ
diff --git a/static/icons/06002C77.png b/static/icons/06002C77.png
new file mode 100755
index 00000000..92bd301a
Binary files /dev/null and b/static/icons/06002C77.png differ
diff --git a/static/icons/06002C78.png b/static/icons/06002C78.png
new file mode 100755
index 00000000..7288658b
Binary files /dev/null and b/static/icons/06002C78.png differ
diff --git a/static/icons/06002C79.png b/static/icons/06002C79.png
new file mode 100755
index 00000000..165a7d5f
Binary files /dev/null and b/static/icons/06002C79.png differ
diff --git a/static/icons/06002C7A.png b/static/icons/06002C7A.png
new file mode 100755
index 00000000..3574d1d8
Binary files /dev/null and b/static/icons/06002C7A.png differ
diff --git a/static/icons/06002C7B.png b/static/icons/06002C7B.png
new file mode 100755
index 00000000..4b053eac
Binary files /dev/null and b/static/icons/06002C7B.png differ
diff --git a/static/icons/06002C7C.png b/static/icons/06002C7C.png
new file mode 100755
index 00000000..9f61a7fc
Binary files /dev/null and b/static/icons/06002C7C.png differ
diff --git a/static/icons/06002C7D.png b/static/icons/06002C7D.png
new file mode 100755
index 00000000..da6314d7
Binary files /dev/null and b/static/icons/06002C7D.png differ
diff --git a/static/icons/06002C7E.png b/static/icons/06002C7E.png
new file mode 100755
index 00000000..715eb4c3
Binary files /dev/null and b/static/icons/06002C7E.png differ
diff --git a/static/icons/06002C7F.png b/static/icons/06002C7F.png
new file mode 100755
index 00000000..a20ca9ca
Binary files /dev/null and b/static/icons/06002C7F.png differ
diff --git a/static/icons/06002C80.png b/static/icons/06002C80.png
new file mode 100755
index 00000000..8264d87d
Binary files /dev/null and b/static/icons/06002C80.png differ
diff --git a/static/icons/06002C81.png b/static/icons/06002C81.png
new file mode 100755
index 00000000..5af16aac
Binary files /dev/null and b/static/icons/06002C81.png differ
diff --git a/static/icons/06002C82.png b/static/icons/06002C82.png
new file mode 100755
index 00000000..203f2a75
Binary files /dev/null and b/static/icons/06002C82.png differ
diff --git a/static/icons/06002C83.png b/static/icons/06002C83.png
new file mode 100755
index 00000000..63d56279
Binary files /dev/null and b/static/icons/06002C83.png differ
diff --git a/static/icons/06002C84.png b/static/icons/06002C84.png
new file mode 100755
index 00000000..444e676c
Binary files /dev/null and b/static/icons/06002C84.png differ
diff --git a/static/icons/06002C85.png b/static/icons/06002C85.png
new file mode 100755
index 00000000..6ec4e602
Binary files /dev/null and b/static/icons/06002C85.png differ
diff --git a/static/icons/06002C86.png b/static/icons/06002C86.png
new file mode 100755
index 00000000..ca069ba7
Binary files /dev/null and b/static/icons/06002C86.png differ
diff --git a/static/icons/06002C87.png b/static/icons/06002C87.png
new file mode 100755
index 00000000..c71f8690
Binary files /dev/null and b/static/icons/06002C87.png differ
diff --git a/static/icons/06002C88.png b/static/icons/06002C88.png
new file mode 100755
index 00000000..3e818296
Binary files /dev/null and b/static/icons/06002C88.png differ
diff --git a/static/icons/06002C89.png b/static/icons/06002C89.png
new file mode 100755
index 00000000..0f2f70b5
Binary files /dev/null and b/static/icons/06002C89.png differ
diff --git a/static/icons/06002C8A.png b/static/icons/06002C8A.png
new file mode 100755
index 00000000..eb8f9b69
Binary files /dev/null and b/static/icons/06002C8A.png differ
diff --git a/static/icons/06002C8B.png b/static/icons/06002C8B.png
new file mode 100755
index 00000000..5742f835
Binary files /dev/null and b/static/icons/06002C8B.png differ
diff --git a/static/icons/06002C8C.png b/static/icons/06002C8C.png
new file mode 100755
index 00000000..21271768
Binary files /dev/null and b/static/icons/06002C8C.png differ
diff --git a/static/icons/06002C8D.png b/static/icons/06002C8D.png
new file mode 100755
index 00000000..35265179
Binary files /dev/null and b/static/icons/06002C8D.png differ
diff --git a/static/icons/06002C8E.png b/static/icons/06002C8E.png
new file mode 100755
index 00000000..213923ac
Binary files /dev/null and b/static/icons/06002C8E.png differ
diff --git a/static/icons/06002C8F.png b/static/icons/06002C8F.png
new file mode 100755
index 00000000..d0900a3c
Binary files /dev/null and b/static/icons/06002C8F.png differ
diff --git a/static/icons/06002C90.png b/static/icons/06002C90.png
new file mode 100755
index 00000000..b267c814
Binary files /dev/null and b/static/icons/06002C90.png differ
diff --git a/static/icons/06002C91.png b/static/icons/06002C91.png
new file mode 100755
index 00000000..9c4a8fb4
Binary files /dev/null and b/static/icons/06002C91.png differ
diff --git a/static/icons/06002C92.png b/static/icons/06002C92.png
new file mode 100755
index 00000000..9c4a983e
Binary files /dev/null and b/static/icons/06002C92.png differ
diff --git a/static/icons/06002C93.png b/static/icons/06002C93.png
new file mode 100755
index 00000000..06eb6c7f
Binary files /dev/null and b/static/icons/06002C93.png differ
diff --git a/static/icons/06002C94.png b/static/icons/06002C94.png
new file mode 100755
index 00000000..109cfbda
Binary files /dev/null and b/static/icons/06002C94.png differ
diff --git a/static/icons/06002C95.png b/static/icons/06002C95.png
new file mode 100755
index 00000000..f04d2b24
Binary files /dev/null and b/static/icons/06002C95.png differ
diff --git a/static/icons/06002C96.png b/static/icons/06002C96.png
new file mode 100755
index 00000000..b99eb99d
Binary files /dev/null and b/static/icons/06002C96.png differ
diff --git a/static/icons/06002C97.png b/static/icons/06002C97.png
new file mode 100755
index 00000000..754d6be4
Binary files /dev/null and b/static/icons/06002C97.png differ
diff --git a/static/icons/06002C98.png b/static/icons/06002C98.png
new file mode 100755
index 00000000..ee796e4d
Binary files /dev/null and b/static/icons/06002C98.png differ
diff --git a/static/icons/06002C99.png b/static/icons/06002C99.png
new file mode 100755
index 00000000..12d3dac5
Binary files /dev/null and b/static/icons/06002C99.png differ
diff --git a/static/icons/06002C9A.png b/static/icons/06002C9A.png
new file mode 100755
index 00000000..2e534888
Binary files /dev/null and b/static/icons/06002C9A.png differ
diff --git a/static/icons/06002C9B.png b/static/icons/06002C9B.png
new file mode 100755
index 00000000..961e4e6c
Binary files /dev/null and b/static/icons/06002C9B.png differ
diff --git a/static/icons/06002C9C.png b/static/icons/06002C9C.png
new file mode 100755
index 00000000..cc7e9be7
Binary files /dev/null and b/static/icons/06002C9C.png differ
diff --git a/static/icons/06002C9D.png b/static/icons/06002C9D.png
new file mode 100755
index 00000000..edb19865
Binary files /dev/null and b/static/icons/06002C9D.png differ
diff --git a/static/icons/06002C9E.png b/static/icons/06002C9E.png
new file mode 100755
index 00000000..bdf1c24d
Binary files /dev/null and b/static/icons/06002C9E.png differ
diff --git a/static/icons/06002C9F.png b/static/icons/06002C9F.png
new file mode 100755
index 00000000..aa35f0b4
Binary files /dev/null and b/static/icons/06002C9F.png differ
diff --git a/static/icons/06002CA0.png b/static/icons/06002CA0.png
new file mode 100755
index 00000000..ad6dc419
Binary files /dev/null and b/static/icons/06002CA0.png differ
diff --git a/static/icons/06002CA1.png b/static/icons/06002CA1.png
new file mode 100755
index 00000000..2d1cf0bf
Binary files /dev/null and b/static/icons/06002CA1.png differ
diff --git a/static/icons/06002CA2.png b/static/icons/06002CA2.png
new file mode 100755
index 00000000..0f2946a7
Binary files /dev/null and b/static/icons/06002CA2.png differ
diff --git a/static/icons/06002CA3.png b/static/icons/06002CA3.png
new file mode 100755
index 00000000..126815d5
Binary files /dev/null and b/static/icons/06002CA3.png differ
diff --git a/static/icons/06002CA4.png b/static/icons/06002CA4.png
new file mode 100755
index 00000000..600d02e8
Binary files /dev/null and b/static/icons/06002CA4.png differ
diff --git a/static/icons/06002CA5.png b/static/icons/06002CA5.png
new file mode 100755
index 00000000..da5562b6
Binary files /dev/null and b/static/icons/06002CA5.png differ
diff --git a/static/icons/06002CA6.png b/static/icons/06002CA6.png
new file mode 100755
index 00000000..668fc8fe
Binary files /dev/null and b/static/icons/06002CA6.png differ
diff --git a/static/icons/06002CA7.png b/static/icons/06002CA7.png
new file mode 100755
index 00000000..92d30b01
Binary files /dev/null and b/static/icons/06002CA7.png differ
diff --git a/static/icons/06002CA8.png b/static/icons/06002CA8.png
new file mode 100755
index 00000000..667d59bb
Binary files /dev/null and b/static/icons/06002CA8.png differ
diff --git a/static/icons/06002CA9.png b/static/icons/06002CA9.png
new file mode 100755
index 00000000..e06b421d
Binary files /dev/null and b/static/icons/06002CA9.png differ
diff --git a/static/icons/06002CAA.png b/static/icons/06002CAA.png
new file mode 100755
index 00000000..be7f7e0c
Binary files /dev/null and b/static/icons/06002CAA.png differ
diff --git a/static/icons/06002CAB.png b/static/icons/06002CAB.png
new file mode 100755
index 00000000..9c830c13
Binary files /dev/null and b/static/icons/06002CAB.png differ
diff --git a/static/icons/06002CAC.png b/static/icons/06002CAC.png
new file mode 100755
index 00000000..51264a55
Binary files /dev/null and b/static/icons/06002CAC.png differ
diff --git a/static/icons/06002CAD.png b/static/icons/06002CAD.png
new file mode 100755
index 00000000..836a083c
Binary files /dev/null and b/static/icons/06002CAD.png differ
diff --git a/static/icons/06002CAE.png b/static/icons/06002CAE.png
new file mode 100755
index 00000000..ebb55954
Binary files /dev/null and b/static/icons/06002CAE.png differ
diff --git a/static/icons/06002CAF.png b/static/icons/06002CAF.png
new file mode 100755
index 00000000..60bb4fb6
Binary files /dev/null and b/static/icons/06002CAF.png differ
diff --git a/static/icons/06002CB0.png b/static/icons/06002CB0.png
new file mode 100755
index 00000000..ba382ef5
Binary files /dev/null and b/static/icons/06002CB0.png differ
diff --git a/static/icons/06002CB1.png b/static/icons/06002CB1.png
new file mode 100755
index 00000000..17b763f6
Binary files /dev/null and b/static/icons/06002CB1.png differ
diff --git a/static/icons/06002CB2.png b/static/icons/06002CB2.png
new file mode 100755
index 00000000..3f676906
Binary files /dev/null and b/static/icons/06002CB2.png differ
diff --git a/static/icons/06002CB3.png b/static/icons/06002CB3.png
new file mode 100755
index 00000000..c94d95b1
Binary files /dev/null and b/static/icons/06002CB3.png differ
diff --git a/static/icons/06002CB4.png b/static/icons/06002CB4.png
new file mode 100755
index 00000000..a532af07
Binary files /dev/null and b/static/icons/06002CB4.png differ
diff --git a/static/icons/06002CB5.png b/static/icons/06002CB5.png
new file mode 100755
index 00000000..cc7156c7
Binary files /dev/null and b/static/icons/06002CB5.png differ
diff --git a/static/icons/06002CB6.png b/static/icons/06002CB6.png
new file mode 100755
index 00000000..4e909e38
Binary files /dev/null and b/static/icons/06002CB6.png differ
diff --git a/static/icons/06002CB7.png b/static/icons/06002CB7.png
new file mode 100755
index 00000000..478a6cc0
Binary files /dev/null and b/static/icons/06002CB7.png differ
diff --git a/static/icons/06002CB8.png b/static/icons/06002CB8.png
new file mode 100755
index 00000000..a46fe13c
Binary files /dev/null and b/static/icons/06002CB8.png differ
diff --git a/static/icons/06002CB9.png b/static/icons/06002CB9.png
new file mode 100755
index 00000000..c2c3321a
Binary files /dev/null and b/static/icons/06002CB9.png differ
diff --git a/static/icons/06002CBA.png b/static/icons/06002CBA.png
new file mode 100755
index 00000000..0af17885
Binary files /dev/null and b/static/icons/06002CBA.png differ
diff --git a/static/icons/06002CBB.png b/static/icons/06002CBB.png
new file mode 100755
index 00000000..f8b01dfd
Binary files /dev/null and b/static/icons/06002CBB.png differ
diff --git a/static/icons/06002CBC.png b/static/icons/06002CBC.png
new file mode 100755
index 00000000..c997940b
Binary files /dev/null and b/static/icons/06002CBC.png differ
diff --git a/static/icons/06002CBD.png b/static/icons/06002CBD.png
new file mode 100755
index 00000000..a29854c6
Binary files /dev/null and b/static/icons/06002CBD.png differ
diff --git a/static/icons/06002CBE.png b/static/icons/06002CBE.png
new file mode 100755
index 00000000..fae3e209
Binary files /dev/null and b/static/icons/06002CBE.png differ
diff --git a/static/icons/06002CBF.png b/static/icons/06002CBF.png
new file mode 100755
index 00000000..2c838684
Binary files /dev/null and b/static/icons/06002CBF.png differ
diff --git a/static/icons/06002CC0.png b/static/icons/06002CC0.png
new file mode 100755
index 00000000..a1e94c09
Binary files /dev/null and b/static/icons/06002CC0.png differ
diff --git a/static/icons/06002CC1.png b/static/icons/06002CC1.png
new file mode 100755
index 00000000..7a6162b5
Binary files /dev/null and b/static/icons/06002CC1.png differ
diff --git a/static/icons/06002CC2.png b/static/icons/06002CC2.png
new file mode 100755
index 00000000..0fcf5b1a
Binary files /dev/null and b/static/icons/06002CC2.png differ
diff --git a/static/icons/06002CC3.png b/static/icons/06002CC3.png
new file mode 100755
index 00000000..7ec700bc
Binary files /dev/null and b/static/icons/06002CC3.png differ
diff --git a/static/icons/06002CC4.png b/static/icons/06002CC4.png
new file mode 100755
index 00000000..95615f5f
Binary files /dev/null and b/static/icons/06002CC4.png differ
diff --git a/static/icons/06002CC5.png b/static/icons/06002CC5.png
new file mode 100755
index 00000000..a6bfd8bd
Binary files /dev/null and b/static/icons/06002CC5.png differ
diff --git a/static/icons/06002CC6.png b/static/icons/06002CC6.png
new file mode 100755
index 00000000..735bba10
Binary files /dev/null and b/static/icons/06002CC6.png differ
diff --git a/static/icons/06002CC7.png b/static/icons/06002CC7.png
new file mode 100755
index 00000000..d528c885
Binary files /dev/null and b/static/icons/06002CC7.png differ
diff --git a/static/icons/06002CC8.png b/static/icons/06002CC8.png
new file mode 100755
index 00000000..86e55b88
Binary files /dev/null and b/static/icons/06002CC8.png differ
diff --git a/static/icons/06002CC9.png b/static/icons/06002CC9.png
new file mode 100755
index 00000000..4b002869
Binary files /dev/null and b/static/icons/06002CC9.png differ
diff --git a/static/icons/06002CCA.png b/static/icons/06002CCA.png
new file mode 100755
index 00000000..5c17c760
Binary files /dev/null and b/static/icons/06002CCA.png differ
diff --git a/static/icons/06002CCB.png b/static/icons/06002CCB.png
new file mode 100755
index 00000000..9cfc6406
Binary files /dev/null and b/static/icons/06002CCB.png differ
diff --git a/static/icons/06002CCC.png b/static/icons/06002CCC.png
new file mode 100755
index 00000000..5a5f35d5
Binary files /dev/null and b/static/icons/06002CCC.png differ
diff --git a/static/icons/06002CCD.png b/static/icons/06002CCD.png
new file mode 100755
index 00000000..dbe42374
Binary files /dev/null and b/static/icons/06002CCD.png differ
diff --git a/static/icons/06002CCE.png b/static/icons/06002CCE.png
new file mode 100755
index 00000000..657075e0
Binary files /dev/null and b/static/icons/06002CCE.png differ
diff --git a/static/icons/06002CCF.png b/static/icons/06002CCF.png
new file mode 100755
index 00000000..6f928f1a
Binary files /dev/null and b/static/icons/06002CCF.png differ
diff --git a/static/icons/06002CD0.png b/static/icons/06002CD0.png
new file mode 100755
index 00000000..854829a6
Binary files /dev/null and b/static/icons/06002CD0.png differ
diff --git a/static/icons/06002CD1.png b/static/icons/06002CD1.png
new file mode 100755
index 00000000..87c226f2
Binary files /dev/null and b/static/icons/06002CD1.png differ
diff --git a/static/icons/06002CD2.png b/static/icons/06002CD2.png
new file mode 100755
index 00000000..53359b6f
Binary files /dev/null and b/static/icons/06002CD2.png differ
diff --git a/static/icons/06002CD3.png b/static/icons/06002CD3.png
new file mode 100755
index 00000000..7011ef75
Binary files /dev/null and b/static/icons/06002CD3.png differ
diff --git a/static/icons/06002CD4.png b/static/icons/06002CD4.png
new file mode 100755
index 00000000..b1c2bb78
Binary files /dev/null and b/static/icons/06002CD4.png differ
diff --git a/static/icons/06002CD5.png b/static/icons/06002CD5.png
new file mode 100755
index 00000000..f723d8f8
Binary files /dev/null and b/static/icons/06002CD5.png differ
diff --git a/static/icons/06002CD6.png b/static/icons/06002CD6.png
new file mode 100755
index 00000000..01285449
Binary files /dev/null and b/static/icons/06002CD6.png differ
diff --git a/static/icons/06002CD7.png b/static/icons/06002CD7.png
new file mode 100755
index 00000000..aa50d3d0
Binary files /dev/null and b/static/icons/06002CD7.png differ
diff --git a/static/icons/06002CD8.png b/static/icons/06002CD8.png
new file mode 100755
index 00000000..5b485eea
Binary files /dev/null and b/static/icons/06002CD8.png differ
diff --git a/static/icons/06002CD9.png b/static/icons/06002CD9.png
new file mode 100755
index 00000000..f252a859
Binary files /dev/null and b/static/icons/06002CD9.png differ
diff --git a/static/icons/06002CDA.png b/static/icons/06002CDA.png
new file mode 100755
index 00000000..bfe9bc80
Binary files /dev/null and b/static/icons/06002CDA.png differ
diff --git a/static/icons/06002CDB.png b/static/icons/06002CDB.png
new file mode 100755
index 00000000..bc61ce8f
Binary files /dev/null and b/static/icons/06002CDB.png differ
diff --git a/static/icons/06002CDC.png b/static/icons/06002CDC.png
new file mode 100755
index 00000000..d58ea167
Binary files /dev/null and b/static/icons/06002CDC.png differ
diff --git a/static/icons/06002CDD.png b/static/icons/06002CDD.png
new file mode 100755
index 00000000..15cda949
Binary files /dev/null and b/static/icons/06002CDD.png differ
diff --git a/static/icons/06002CDE.png b/static/icons/06002CDE.png
new file mode 100755
index 00000000..c4d67a40
Binary files /dev/null and b/static/icons/06002CDE.png differ
diff --git a/static/icons/06002CDF.png b/static/icons/06002CDF.png
new file mode 100755
index 00000000..db1022ce
Binary files /dev/null and b/static/icons/06002CDF.png differ
diff --git a/static/icons/06002CE0.png b/static/icons/06002CE0.png
new file mode 100755
index 00000000..a6450690
Binary files /dev/null and b/static/icons/06002CE0.png differ
diff --git a/static/icons/06002CE1.png b/static/icons/06002CE1.png
new file mode 100755
index 00000000..bc073405
Binary files /dev/null and b/static/icons/06002CE1.png differ
diff --git a/static/icons/06002CE2.png b/static/icons/06002CE2.png
new file mode 100755
index 00000000..b31fc299
Binary files /dev/null and b/static/icons/06002CE2.png differ
diff --git a/static/icons/06002CE3.png b/static/icons/06002CE3.png
new file mode 100755
index 00000000..4d9b1ed4
Binary files /dev/null and b/static/icons/06002CE3.png differ
diff --git a/static/icons/06002CE4.png b/static/icons/06002CE4.png
new file mode 100755
index 00000000..d5281954
Binary files /dev/null and b/static/icons/06002CE4.png differ
diff --git a/static/icons/06002CE5.png b/static/icons/06002CE5.png
new file mode 100755
index 00000000..d438f1e1
Binary files /dev/null and b/static/icons/06002CE5.png differ
diff --git a/static/icons/06002CE6.png b/static/icons/06002CE6.png
new file mode 100755
index 00000000..f7900b3a
Binary files /dev/null and b/static/icons/06002CE6.png differ
diff --git a/static/icons/06002CE7.png b/static/icons/06002CE7.png
new file mode 100755
index 00000000..9aa051d9
Binary files /dev/null and b/static/icons/06002CE7.png differ
diff --git a/static/icons/06002CE8.png b/static/icons/06002CE8.png
new file mode 100755
index 00000000..8d3efe4c
Binary files /dev/null and b/static/icons/06002CE8.png differ
diff --git a/static/icons/06002CEC.png b/static/icons/06002CEC.png
new file mode 100755
index 00000000..b3f1a0ef
Binary files /dev/null and b/static/icons/06002CEC.png differ
diff --git a/static/icons/06002CED.png b/static/icons/06002CED.png
new file mode 100755
index 00000000..8df377c6
Binary files /dev/null and b/static/icons/06002CED.png differ
diff --git a/static/icons/06002CEE.png b/static/icons/06002CEE.png
new file mode 100755
index 00000000..6b8eb588
Binary files /dev/null and b/static/icons/06002CEE.png differ
diff --git a/static/icons/06002CEF.png b/static/icons/06002CEF.png
new file mode 100755
index 00000000..a0698dc5
Binary files /dev/null and b/static/icons/06002CEF.png differ
diff --git a/static/icons/06002CF0.png b/static/icons/06002CF0.png
new file mode 100755
index 00000000..56ec6a06
Binary files /dev/null and b/static/icons/06002CF0.png differ
diff --git a/static/icons/06002CF1.png b/static/icons/06002CF1.png
new file mode 100755
index 00000000..a731292f
Binary files /dev/null and b/static/icons/06002CF1.png differ
diff --git a/static/icons/06002CF2.png b/static/icons/06002CF2.png
new file mode 100755
index 00000000..913ae76f
Binary files /dev/null and b/static/icons/06002CF2.png differ
diff --git a/static/icons/06002CF3.png b/static/icons/06002CF3.png
new file mode 100755
index 00000000..0666a783
Binary files /dev/null and b/static/icons/06002CF3.png differ
diff --git a/static/icons/06002CF4.png b/static/icons/06002CF4.png
new file mode 100755
index 00000000..90a53340
Binary files /dev/null and b/static/icons/06002CF4.png differ
diff --git a/static/icons/06002CF5.png b/static/icons/06002CF5.png
new file mode 100755
index 00000000..e12af9c0
Binary files /dev/null and b/static/icons/06002CF5.png differ
diff --git a/static/icons/06002CF6.png b/static/icons/06002CF6.png
new file mode 100755
index 00000000..55e8df5b
Binary files /dev/null and b/static/icons/06002CF6.png differ
diff --git a/static/icons/06002CF7.png b/static/icons/06002CF7.png
new file mode 100755
index 00000000..61efc8e8
Binary files /dev/null and b/static/icons/06002CF7.png differ
diff --git a/static/icons/06002CF8.png b/static/icons/06002CF8.png
new file mode 100755
index 00000000..723e9793
Binary files /dev/null and b/static/icons/06002CF8.png differ
diff --git a/static/icons/06002CF9.png b/static/icons/06002CF9.png
new file mode 100755
index 00000000..aeaeb6af
Binary files /dev/null and b/static/icons/06002CF9.png differ
diff --git a/static/icons/06002CFA.png b/static/icons/06002CFA.png
new file mode 100755
index 00000000..7bead307
Binary files /dev/null and b/static/icons/06002CFA.png differ
diff --git a/static/icons/06002CFB.png b/static/icons/06002CFB.png
new file mode 100755
index 00000000..9cbd0351
Binary files /dev/null and b/static/icons/06002CFB.png differ
diff --git a/static/icons/06002CFC.png b/static/icons/06002CFC.png
new file mode 100755
index 00000000..e984e7c5
Binary files /dev/null and b/static/icons/06002CFC.png differ
diff --git a/static/icons/06002CFD.png b/static/icons/06002CFD.png
new file mode 100755
index 00000000..35824956
Binary files /dev/null and b/static/icons/06002CFD.png differ
diff --git a/static/icons/06002CFE.png b/static/icons/06002CFE.png
new file mode 100755
index 00000000..520d1ee1
Binary files /dev/null and b/static/icons/06002CFE.png differ
diff --git a/static/icons/06002CFF.png b/static/icons/06002CFF.png
new file mode 100755
index 00000000..f96aeac3
Binary files /dev/null and b/static/icons/06002CFF.png differ
diff --git a/static/icons/06002D00.png b/static/icons/06002D00.png
new file mode 100755
index 00000000..6580024e
Binary files /dev/null and b/static/icons/06002D00.png differ
diff --git a/static/icons/06002D01.png b/static/icons/06002D01.png
new file mode 100755
index 00000000..040b7746
Binary files /dev/null and b/static/icons/06002D01.png differ
diff --git a/static/icons/06002D02.png b/static/icons/06002D02.png
new file mode 100755
index 00000000..5a2d843d
Binary files /dev/null and b/static/icons/06002D02.png differ
diff --git a/static/icons/06002D03.png b/static/icons/06002D03.png
new file mode 100755
index 00000000..750a168d
Binary files /dev/null and b/static/icons/06002D03.png differ
diff --git a/static/icons/06002D04.png b/static/icons/06002D04.png
new file mode 100755
index 00000000..0a738efd
Binary files /dev/null and b/static/icons/06002D04.png differ
diff --git a/static/icons/06002D05.png b/static/icons/06002D05.png
new file mode 100755
index 00000000..f9d00bb5
Binary files /dev/null and b/static/icons/06002D05.png differ
diff --git a/static/icons/06002D06.png b/static/icons/06002D06.png
new file mode 100755
index 00000000..adc06397
Binary files /dev/null and b/static/icons/06002D06.png differ
diff --git a/static/icons/06002D07.png b/static/icons/06002D07.png
new file mode 100755
index 00000000..27cac6c6
Binary files /dev/null and b/static/icons/06002D07.png differ
diff --git a/static/icons/06002D08.png b/static/icons/06002D08.png
new file mode 100755
index 00000000..4c1abce4
Binary files /dev/null and b/static/icons/06002D08.png differ
diff --git a/static/icons/06002D09.png b/static/icons/06002D09.png
new file mode 100755
index 00000000..6a5c0800
Binary files /dev/null and b/static/icons/06002D09.png differ
diff --git a/static/icons/06002D0A.png b/static/icons/06002D0A.png
new file mode 100755
index 00000000..e2164cbe
Binary files /dev/null and b/static/icons/06002D0A.png differ
diff --git a/static/icons/06002D0B.png b/static/icons/06002D0B.png
new file mode 100755
index 00000000..f4bb486f
Binary files /dev/null and b/static/icons/06002D0B.png differ
diff --git a/static/icons/06002D0C.png b/static/icons/06002D0C.png
new file mode 100755
index 00000000..2cbfbabb
Binary files /dev/null and b/static/icons/06002D0C.png differ
diff --git a/static/icons/06002D0D.png b/static/icons/06002D0D.png
new file mode 100755
index 00000000..5cbcdc78
Binary files /dev/null and b/static/icons/06002D0D.png differ
diff --git a/static/icons/06002D0E.png b/static/icons/06002D0E.png
new file mode 100755
index 00000000..a20462e6
Binary files /dev/null and b/static/icons/06002D0E.png differ
diff --git a/static/icons/06002D0F.png b/static/icons/06002D0F.png
new file mode 100755
index 00000000..538dfc77
Binary files /dev/null and b/static/icons/06002D0F.png differ
diff --git a/static/icons/06002D10.png b/static/icons/06002D10.png
new file mode 100755
index 00000000..2933ce78
Binary files /dev/null and b/static/icons/06002D10.png differ
diff --git a/static/icons/06002D11.png b/static/icons/06002D11.png
new file mode 100755
index 00000000..a42b0fb7
Binary files /dev/null and b/static/icons/06002D11.png differ
diff --git a/static/icons/06002D12.png b/static/icons/06002D12.png
new file mode 100755
index 00000000..7a2e7b54
Binary files /dev/null and b/static/icons/06002D12.png differ
diff --git a/static/icons/06002D13.png b/static/icons/06002D13.png
new file mode 100755
index 00000000..a68d468d
Binary files /dev/null and b/static/icons/06002D13.png differ
diff --git a/static/icons/06002D14.png b/static/icons/06002D14.png
new file mode 100755
index 00000000..f11a2ac9
Binary files /dev/null and b/static/icons/06002D14.png differ
diff --git a/static/icons/06002D15.png b/static/icons/06002D15.png
new file mode 100755
index 00000000..ab2a305a
Binary files /dev/null and b/static/icons/06002D15.png differ
diff --git a/static/icons/06002D16.png b/static/icons/06002D16.png
new file mode 100755
index 00000000..d0cf62a6
Binary files /dev/null and b/static/icons/06002D16.png differ
diff --git a/static/icons/06002D17.png b/static/icons/06002D17.png
new file mode 100755
index 00000000..31c064f8
Binary files /dev/null and b/static/icons/06002D17.png differ
diff --git a/static/icons/06002D18.png b/static/icons/06002D18.png
new file mode 100755
index 00000000..1b924044
Binary files /dev/null and b/static/icons/06002D18.png differ
diff --git a/static/icons/06002D19.png b/static/icons/06002D19.png
new file mode 100755
index 00000000..796880fe
Binary files /dev/null and b/static/icons/06002D19.png differ
diff --git a/static/icons/06002D1A.png b/static/icons/06002D1A.png
new file mode 100755
index 00000000..905bce8a
Binary files /dev/null and b/static/icons/06002D1A.png differ
diff --git a/static/icons/06002D1B.png b/static/icons/06002D1B.png
new file mode 100755
index 00000000..8d3e60c5
Binary files /dev/null and b/static/icons/06002D1B.png differ
diff --git a/static/icons/06002D1C.png b/static/icons/06002D1C.png
new file mode 100755
index 00000000..5af72439
Binary files /dev/null and b/static/icons/06002D1C.png differ
diff --git a/static/icons/06002D1D.png b/static/icons/06002D1D.png
new file mode 100755
index 00000000..21312467
Binary files /dev/null and b/static/icons/06002D1D.png differ
diff --git a/static/icons/06002D1E.png b/static/icons/06002D1E.png
new file mode 100755
index 00000000..5885e050
Binary files /dev/null and b/static/icons/06002D1E.png differ
diff --git a/static/icons/06002D1F.png b/static/icons/06002D1F.png
new file mode 100755
index 00000000..54e1e0af
Binary files /dev/null and b/static/icons/06002D1F.png differ
diff --git a/static/icons/06002D20.png b/static/icons/06002D20.png
new file mode 100755
index 00000000..ce8eeac6
Binary files /dev/null and b/static/icons/06002D20.png differ
diff --git a/static/icons/06002D21.png b/static/icons/06002D21.png
new file mode 100755
index 00000000..dc89d0e2
Binary files /dev/null and b/static/icons/06002D21.png differ
diff --git a/static/icons/06002D22.png b/static/icons/06002D22.png
new file mode 100755
index 00000000..cf0edded
Binary files /dev/null and b/static/icons/06002D22.png differ
diff --git a/static/icons/06002D23.png b/static/icons/06002D23.png
new file mode 100755
index 00000000..beaab1a5
Binary files /dev/null and b/static/icons/06002D23.png differ
diff --git a/static/icons/06002D24.png b/static/icons/06002D24.png
new file mode 100755
index 00000000..895d117a
Binary files /dev/null and b/static/icons/06002D24.png differ
diff --git a/static/icons/06002D25.png b/static/icons/06002D25.png
new file mode 100755
index 00000000..0168259e
Binary files /dev/null and b/static/icons/06002D25.png differ
diff --git a/static/icons/06002D26.png b/static/icons/06002D26.png
new file mode 100755
index 00000000..552052cc
Binary files /dev/null and b/static/icons/06002D26.png differ
diff --git a/static/icons/06002D27.png b/static/icons/06002D27.png
new file mode 100755
index 00000000..7154cb31
Binary files /dev/null and b/static/icons/06002D27.png differ
diff --git a/static/icons/06002D28.png b/static/icons/06002D28.png
new file mode 100755
index 00000000..cccf3a97
Binary files /dev/null and b/static/icons/06002D28.png differ
diff --git a/static/icons/06002D29.png b/static/icons/06002D29.png
new file mode 100755
index 00000000..959a741b
Binary files /dev/null and b/static/icons/06002D29.png differ
diff --git a/static/icons/06002D2A.png b/static/icons/06002D2A.png
new file mode 100755
index 00000000..fa49003a
Binary files /dev/null and b/static/icons/06002D2A.png differ
diff --git a/static/icons/06002D2B.png b/static/icons/06002D2B.png
new file mode 100755
index 00000000..f7c3c876
Binary files /dev/null and b/static/icons/06002D2B.png differ
diff --git a/static/icons/06002D2C.png b/static/icons/06002D2C.png
new file mode 100755
index 00000000..28c1ffd3
Binary files /dev/null and b/static/icons/06002D2C.png differ
diff --git a/static/icons/06002D2D.png b/static/icons/06002D2D.png
new file mode 100755
index 00000000..e1d94382
Binary files /dev/null and b/static/icons/06002D2D.png differ
diff --git a/static/icons/06002D2E.png b/static/icons/06002D2E.png
new file mode 100755
index 00000000..87f7f16d
Binary files /dev/null and b/static/icons/06002D2E.png differ
diff --git a/static/icons/06002D2F.png b/static/icons/06002D2F.png
new file mode 100755
index 00000000..bcaa21c3
Binary files /dev/null and b/static/icons/06002D2F.png differ
diff --git a/static/icons/06002D30.png b/static/icons/06002D30.png
new file mode 100755
index 00000000..8fdf2510
Binary files /dev/null and b/static/icons/06002D30.png differ
diff --git a/static/icons/06002D31.png b/static/icons/06002D31.png
new file mode 100755
index 00000000..4d54c416
Binary files /dev/null and b/static/icons/06002D31.png differ
diff --git a/static/icons/06002D32.png b/static/icons/06002D32.png
new file mode 100755
index 00000000..dd7ba4e8
Binary files /dev/null and b/static/icons/06002D32.png differ
diff --git a/static/icons/06002D33.png b/static/icons/06002D33.png
new file mode 100755
index 00000000..0a4ce061
Binary files /dev/null and b/static/icons/06002D33.png differ
diff --git a/static/icons/06002D34.png b/static/icons/06002D34.png
new file mode 100755
index 00000000..370f5cbb
Binary files /dev/null and b/static/icons/06002D34.png differ
diff --git a/static/icons/06002D35.png b/static/icons/06002D35.png
new file mode 100755
index 00000000..dce67f90
Binary files /dev/null and b/static/icons/06002D35.png differ
diff --git a/static/icons/06002D36.png b/static/icons/06002D36.png
new file mode 100755
index 00000000..22dcd6da
Binary files /dev/null and b/static/icons/06002D36.png differ
diff --git a/static/icons/06002D37.png b/static/icons/06002D37.png
new file mode 100755
index 00000000..cd1ce66f
Binary files /dev/null and b/static/icons/06002D37.png differ
diff --git a/static/icons/06002D38.png b/static/icons/06002D38.png
new file mode 100755
index 00000000..7f9d13e7
Binary files /dev/null and b/static/icons/06002D38.png differ
diff --git a/static/icons/06002D39.png b/static/icons/06002D39.png
new file mode 100755
index 00000000..ae75f4dd
Binary files /dev/null and b/static/icons/06002D39.png differ
diff --git a/static/icons/06002D3A.png b/static/icons/06002D3A.png
new file mode 100755
index 00000000..0c505595
Binary files /dev/null and b/static/icons/06002D3A.png differ
diff --git a/static/icons/06002D3B.png b/static/icons/06002D3B.png
new file mode 100755
index 00000000..04b6e630
Binary files /dev/null and b/static/icons/06002D3B.png differ
diff --git a/static/icons/06002D3C.png b/static/icons/06002D3C.png
new file mode 100755
index 00000000..46d12a0c
Binary files /dev/null and b/static/icons/06002D3C.png differ
diff --git a/static/icons/06002D3D.png b/static/icons/06002D3D.png
new file mode 100755
index 00000000..0549c00b
Binary files /dev/null and b/static/icons/06002D3D.png differ
diff --git a/static/icons/06002D3E.png b/static/icons/06002D3E.png
new file mode 100755
index 00000000..6edaabc3
Binary files /dev/null and b/static/icons/06002D3E.png differ
diff --git a/static/icons/06002D3F.png b/static/icons/06002D3F.png
new file mode 100755
index 00000000..5e637d0c
Binary files /dev/null and b/static/icons/06002D3F.png differ
diff --git a/static/icons/06002D40.png b/static/icons/06002D40.png
new file mode 100755
index 00000000..6160f4ba
Binary files /dev/null and b/static/icons/06002D40.png differ
diff --git a/static/icons/06002D41.png b/static/icons/06002D41.png
new file mode 100755
index 00000000..b27f5954
Binary files /dev/null and b/static/icons/06002D41.png differ
diff --git a/static/icons/06002D42.png b/static/icons/06002D42.png
new file mode 100755
index 00000000..b5fa42e8
Binary files /dev/null and b/static/icons/06002D42.png differ
diff --git a/static/icons/06002D43.png b/static/icons/06002D43.png
new file mode 100755
index 00000000..a1a7b750
Binary files /dev/null and b/static/icons/06002D43.png differ
diff --git a/static/icons/06002D44.png b/static/icons/06002D44.png
new file mode 100755
index 00000000..09af8d99
Binary files /dev/null and b/static/icons/06002D44.png differ
diff --git a/static/icons/06002D45.png b/static/icons/06002D45.png
new file mode 100755
index 00000000..41e807c8
Binary files /dev/null and b/static/icons/06002D45.png differ
diff --git a/static/icons/06002D46.png b/static/icons/06002D46.png
new file mode 100755
index 00000000..736b59cc
Binary files /dev/null and b/static/icons/06002D46.png differ
diff --git a/static/icons/06002D47.png b/static/icons/06002D47.png
new file mode 100755
index 00000000..7605e2ac
Binary files /dev/null and b/static/icons/06002D47.png differ
diff --git a/static/icons/06002D48.png b/static/icons/06002D48.png
new file mode 100755
index 00000000..32b921af
Binary files /dev/null and b/static/icons/06002D48.png differ
diff --git a/static/icons/06002D49.png b/static/icons/06002D49.png
new file mode 100755
index 00000000..f7f5a19a
Binary files /dev/null and b/static/icons/06002D49.png differ
diff --git a/static/icons/06002D4A.png b/static/icons/06002D4A.png
new file mode 100755
index 00000000..77dc3f53
Binary files /dev/null and b/static/icons/06002D4A.png differ
diff --git a/static/icons/06002D4B.png b/static/icons/06002D4B.png
new file mode 100755
index 00000000..7affc021
Binary files /dev/null and b/static/icons/06002D4B.png differ
diff --git a/static/icons/06002D4C.png b/static/icons/06002D4C.png
new file mode 100755
index 00000000..6461868d
Binary files /dev/null and b/static/icons/06002D4C.png differ
diff --git a/static/icons/06002D4D.png b/static/icons/06002D4D.png
new file mode 100755
index 00000000..62293623
Binary files /dev/null and b/static/icons/06002D4D.png differ
diff --git a/static/icons/06002D4E.png b/static/icons/06002D4E.png
new file mode 100755
index 00000000..40c06e09
Binary files /dev/null and b/static/icons/06002D4E.png differ
diff --git a/static/icons/06002D4F.png b/static/icons/06002D4F.png
new file mode 100755
index 00000000..c5e43e65
Binary files /dev/null and b/static/icons/06002D4F.png differ
diff --git a/static/icons/06002D50.png b/static/icons/06002D50.png
new file mode 100755
index 00000000..55e4b31d
Binary files /dev/null and b/static/icons/06002D50.png differ
diff --git a/static/icons/06002D51.png b/static/icons/06002D51.png
new file mode 100755
index 00000000..4dc4c390
Binary files /dev/null and b/static/icons/06002D51.png differ
diff --git a/static/icons/06002D52.png b/static/icons/06002D52.png
new file mode 100755
index 00000000..d9432af4
Binary files /dev/null and b/static/icons/06002D52.png differ
diff --git a/static/icons/06002D53.png b/static/icons/06002D53.png
new file mode 100755
index 00000000..50412c0e
Binary files /dev/null and b/static/icons/06002D53.png differ
diff --git a/static/icons/06002D54.png b/static/icons/06002D54.png
new file mode 100755
index 00000000..11680bf3
Binary files /dev/null and b/static/icons/06002D54.png differ
diff --git a/static/icons/06002D55.png b/static/icons/06002D55.png
new file mode 100755
index 00000000..b956f8af
Binary files /dev/null and b/static/icons/06002D55.png differ
diff --git a/static/icons/06002D56.png b/static/icons/06002D56.png
new file mode 100755
index 00000000..1f1f9dea
Binary files /dev/null and b/static/icons/06002D56.png differ
diff --git a/static/icons/06002D57.png b/static/icons/06002D57.png
new file mode 100755
index 00000000..a2d2fd1d
Binary files /dev/null and b/static/icons/06002D57.png differ
diff --git a/static/icons/06002D58.png b/static/icons/06002D58.png
new file mode 100755
index 00000000..36782e8e
Binary files /dev/null and b/static/icons/06002D58.png differ
diff --git a/static/icons/06002D59.png b/static/icons/06002D59.png
new file mode 100755
index 00000000..0780df32
Binary files /dev/null and b/static/icons/06002D59.png differ
diff --git a/static/icons/06002D5A.png b/static/icons/06002D5A.png
new file mode 100755
index 00000000..e858782f
Binary files /dev/null and b/static/icons/06002D5A.png differ
diff --git a/static/icons/06002D5B.png b/static/icons/06002D5B.png
new file mode 100755
index 00000000..db610621
Binary files /dev/null and b/static/icons/06002D5B.png differ
diff --git a/static/icons/06002D5C.png b/static/icons/06002D5C.png
new file mode 100755
index 00000000..941f948b
Binary files /dev/null and b/static/icons/06002D5C.png differ
diff --git a/static/icons/06002D5D.png b/static/icons/06002D5D.png
new file mode 100755
index 00000000..63fa2b0c
Binary files /dev/null and b/static/icons/06002D5D.png differ
diff --git a/static/icons/06002D5E.png b/static/icons/06002D5E.png
new file mode 100755
index 00000000..1ad78776
Binary files /dev/null and b/static/icons/06002D5E.png differ
diff --git a/static/icons/06002D5F.png b/static/icons/06002D5F.png
new file mode 100755
index 00000000..492a3e52
Binary files /dev/null and b/static/icons/06002D5F.png differ
diff --git a/static/icons/06002D60.png b/static/icons/06002D60.png
new file mode 100755
index 00000000..b30f48bc
Binary files /dev/null and b/static/icons/06002D60.png differ
diff --git a/static/icons/06002D61.png b/static/icons/06002D61.png
new file mode 100755
index 00000000..d98f2684
Binary files /dev/null and b/static/icons/06002D61.png differ
diff --git a/static/icons/06002D62.png b/static/icons/06002D62.png
new file mode 100755
index 00000000..87071c13
Binary files /dev/null and b/static/icons/06002D62.png differ
diff --git a/static/icons/06002D63.png b/static/icons/06002D63.png
new file mode 100755
index 00000000..b5cf7312
Binary files /dev/null and b/static/icons/06002D63.png differ
diff --git a/static/icons/06002D64.png b/static/icons/06002D64.png
new file mode 100755
index 00000000..6358be42
Binary files /dev/null and b/static/icons/06002D64.png differ
diff --git a/static/icons/06002D65.png b/static/icons/06002D65.png
new file mode 100755
index 00000000..566b0bed
Binary files /dev/null and b/static/icons/06002D65.png differ
diff --git a/static/icons/06002D66.png b/static/icons/06002D66.png
new file mode 100755
index 00000000..a350f4fe
Binary files /dev/null and b/static/icons/06002D66.png differ
diff --git a/static/icons/06002D67.png b/static/icons/06002D67.png
new file mode 100755
index 00000000..53fcf29e
Binary files /dev/null and b/static/icons/06002D67.png differ
diff --git a/static/icons/06002D68.png b/static/icons/06002D68.png
new file mode 100755
index 00000000..248f3e29
Binary files /dev/null and b/static/icons/06002D68.png differ
diff --git a/static/icons/06002D69.png b/static/icons/06002D69.png
new file mode 100755
index 00000000..d0d5e349
Binary files /dev/null and b/static/icons/06002D69.png differ
diff --git a/static/icons/06002D6A.png b/static/icons/06002D6A.png
new file mode 100755
index 00000000..54ee9637
Binary files /dev/null and b/static/icons/06002D6A.png differ
diff --git a/static/icons/06002D6B.png b/static/icons/06002D6B.png
new file mode 100755
index 00000000..11deacab
Binary files /dev/null and b/static/icons/06002D6B.png differ
diff --git a/static/icons/06002D6C.png b/static/icons/06002D6C.png
new file mode 100755
index 00000000..71c675d0
Binary files /dev/null and b/static/icons/06002D6C.png differ
diff --git a/static/icons/06002D6D.png b/static/icons/06002D6D.png
new file mode 100755
index 00000000..ac0ba61d
Binary files /dev/null and b/static/icons/06002D6D.png differ
diff --git a/static/icons/06002D6E.png b/static/icons/06002D6E.png
new file mode 100755
index 00000000..9a93e049
Binary files /dev/null and b/static/icons/06002D6E.png differ
diff --git a/static/icons/06002D6F.png b/static/icons/06002D6F.png
new file mode 100755
index 00000000..858e9053
Binary files /dev/null and b/static/icons/06002D6F.png differ
diff --git a/static/icons/06002D70.png b/static/icons/06002D70.png
new file mode 100755
index 00000000..c22db267
Binary files /dev/null and b/static/icons/06002D70.png differ
diff --git a/static/icons/06002D71.png b/static/icons/06002D71.png
new file mode 100755
index 00000000..01d75c95
Binary files /dev/null and b/static/icons/06002D71.png differ
diff --git a/static/icons/06002D72.png b/static/icons/06002D72.png
new file mode 100755
index 00000000..e18ecb8e
Binary files /dev/null and b/static/icons/06002D72.png differ
diff --git a/static/icons/06002D73.png b/static/icons/06002D73.png
new file mode 100755
index 00000000..59cd8a5c
Binary files /dev/null and b/static/icons/06002D73.png differ
diff --git a/static/icons/06002D74.png b/static/icons/06002D74.png
new file mode 100755
index 00000000..2fcdd5ca
Binary files /dev/null and b/static/icons/06002D74.png differ
diff --git a/static/icons/06002D75.png b/static/icons/06002D75.png
new file mode 100755
index 00000000..30af070e
Binary files /dev/null and b/static/icons/06002D75.png differ
diff --git a/static/icons/06002D76.png b/static/icons/06002D76.png
new file mode 100755
index 00000000..08e02be9
Binary files /dev/null and b/static/icons/06002D76.png differ
diff --git a/static/icons/06002D77.png b/static/icons/06002D77.png
new file mode 100755
index 00000000..9f82c94a
Binary files /dev/null and b/static/icons/06002D77.png differ
diff --git a/static/icons/06002D78.png b/static/icons/06002D78.png
new file mode 100755
index 00000000..d6c1eb27
Binary files /dev/null and b/static/icons/06002D78.png differ
diff --git a/static/icons/06002D79.png b/static/icons/06002D79.png
new file mode 100755
index 00000000..9d6af033
Binary files /dev/null and b/static/icons/06002D79.png differ
diff --git a/static/icons/06002D7A.png b/static/icons/06002D7A.png
new file mode 100755
index 00000000..1a8a8f60
Binary files /dev/null and b/static/icons/06002D7A.png differ
diff --git a/static/icons/06002D7B.png b/static/icons/06002D7B.png
new file mode 100755
index 00000000..171e29b5
Binary files /dev/null and b/static/icons/06002D7B.png differ
diff --git a/static/icons/06002D7C.png b/static/icons/06002D7C.png
new file mode 100755
index 00000000..fd65044f
Binary files /dev/null and b/static/icons/06002D7C.png differ
diff --git a/static/icons/06002D7D.png b/static/icons/06002D7D.png
new file mode 100755
index 00000000..364eebde
Binary files /dev/null and b/static/icons/06002D7D.png differ
diff --git a/static/icons/06002D7E.png b/static/icons/06002D7E.png
new file mode 100755
index 00000000..7225dec9
Binary files /dev/null and b/static/icons/06002D7E.png differ
diff --git a/static/icons/06002D7F.png b/static/icons/06002D7F.png
new file mode 100755
index 00000000..2db8d08a
Binary files /dev/null and b/static/icons/06002D7F.png differ
diff --git a/static/icons/06002D80.png b/static/icons/06002D80.png
new file mode 100755
index 00000000..ed9676b0
Binary files /dev/null and b/static/icons/06002D80.png differ
diff --git a/static/icons/06002D81.png b/static/icons/06002D81.png
new file mode 100755
index 00000000..9cbaad50
Binary files /dev/null and b/static/icons/06002D81.png differ
diff --git a/static/icons/06002D82.png b/static/icons/06002D82.png
new file mode 100755
index 00000000..e4fafc38
Binary files /dev/null and b/static/icons/06002D82.png differ
diff --git a/static/icons/06002D83.png b/static/icons/06002D83.png
new file mode 100755
index 00000000..35425cde
Binary files /dev/null and b/static/icons/06002D83.png differ
diff --git a/static/icons/06002D84.png b/static/icons/06002D84.png
new file mode 100755
index 00000000..bf3653a5
Binary files /dev/null and b/static/icons/06002D84.png differ
diff --git a/static/icons/06002D85.png b/static/icons/06002D85.png
new file mode 100755
index 00000000..55de4c3a
Binary files /dev/null and b/static/icons/06002D85.png differ
diff --git a/static/icons/06002D86.png b/static/icons/06002D86.png
new file mode 100755
index 00000000..f79538ab
Binary files /dev/null and b/static/icons/06002D86.png differ
diff --git a/static/icons/06002D87.png b/static/icons/06002D87.png
new file mode 100755
index 00000000..c084c2d2
Binary files /dev/null and b/static/icons/06002D87.png differ
diff --git a/static/icons/06002D88.png b/static/icons/06002D88.png
new file mode 100755
index 00000000..3393d238
Binary files /dev/null and b/static/icons/06002D88.png differ
diff --git a/static/icons/06002D89.png b/static/icons/06002D89.png
new file mode 100755
index 00000000..0c106cb8
Binary files /dev/null and b/static/icons/06002D89.png differ
diff --git a/static/icons/06002D8A.png b/static/icons/06002D8A.png
new file mode 100755
index 00000000..3dc177ee
Binary files /dev/null and b/static/icons/06002D8A.png differ
diff --git a/static/icons/06002D8B.png b/static/icons/06002D8B.png
new file mode 100755
index 00000000..39ca84aa
Binary files /dev/null and b/static/icons/06002D8B.png differ
diff --git a/static/icons/06002D8C.png b/static/icons/06002D8C.png
new file mode 100755
index 00000000..2d8984a0
Binary files /dev/null and b/static/icons/06002D8C.png differ
diff --git a/static/icons/06002D8D.png b/static/icons/06002D8D.png
new file mode 100755
index 00000000..4f895be4
Binary files /dev/null and b/static/icons/06002D8D.png differ
diff --git a/static/icons/06002D8E.png b/static/icons/06002D8E.png
new file mode 100755
index 00000000..647ac8f6
Binary files /dev/null and b/static/icons/06002D8E.png differ
diff --git a/static/icons/06002D8F.png b/static/icons/06002D8F.png
new file mode 100755
index 00000000..2568f50d
Binary files /dev/null and b/static/icons/06002D8F.png differ
diff --git a/static/icons/06002D90.png b/static/icons/06002D90.png
new file mode 100755
index 00000000..4ade9ddb
Binary files /dev/null and b/static/icons/06002D90.png differ
diff --git a/static/icons/06002D91.png b/static/icons/06002D91.png
new file mode 100755
index 00000000..6ad6411d
Binary files /dev/null and b/static/icons/06002D91.png differ
diff --git a/static/icons/06002D92.png b/static/icons/06002D92.png
new file mode 100755
index 00000000..666f66d3
Binary files /dev/null and b/static/icons/06002D92.png differ
diff --git a/static/icons/06002D93.png b/static/icons/06002D93.png
new file mode 100755
index 00000000..ecbc2160
Binary files /dev/null and b/static/icons/06002D93.png differ
diff --git a/static/icons/06002D94.png b/static/icons/06002D94.png
new file mode 100755
index 00000000..55f4f8b7
Binary files /dev/null and b/static/icons/06002D94.png differ
diff --git a/static/icons/06002D95.png b/static/icons/06002D95.png
new file mode 100755
index 00000000..d01172bf
Binary files /dev/null and b/static/icons/06002D95.png differ
diff --git a/static/icons/06002D96.png b/static/icons/06002D96.png
new file mode 100755
index 00000000..6fcb1ed7
Binary files /dev/null and b/static/icons/06002D96.png differ
diff --git a/static/icons/06002D97.png b/static/icons/06002D97.png
new file mode 100755
index 00000000..49d57c6b
Binary files /dev/null and b/static/icons/06002D97.png differ
diff --git a/static/icons/06002D98.png b/static/icons/06002D98.png
new file mode 100755
index 00000000..8ae79086
Binary files /dev/null and b/static/icons/06002D98.png differ
diff --git a/static/icons/06002D99.png b/static/icons/06002D99.png
new file mode 100755
index 00000000..5328db33
Binary files /dev/null and b/static/icons/06002D99.png differ
diff --git a/static/icons/06002D9A.png b/static/icons/06002D9A.png
new file mode 100755
index 00000000..70ceadc4
Binary files /dev/null and b/static/icons/06002D9A.png differ
diff --git a/static/icons/06002D9B.png b/static/icons/06002D9B.png
new file mode 100755
index 00000000..2cc9006c
Binary files /dev/null and b/static/icons/06002D9B.png differ
diff --git a/static/icons/06002D9C.png b/static/icons/06002D9C.png
new file mode 100755
index 00000000..6295ba10
Binary files /dev/null and b/static/icons/06002D9C.png differ
diff --git a/static/icons/06002D9D.png b/static/icons/06002D9D.png
new file mode 100755
index 00000000..60030c72
Binary files /dev/null and b/static/icons/06002D9D.png differ
diff --git a/static/icons/06002D9E.png b/static/icons/06002D9E.png
new file mode 100755
index 00000000..f4cf110d
Binary files /dev/null and b/static/icons/06002D9E.png differ
diff --git a/static/icons/06002D9F.png b/static/icons/06002D9F.png
new file mode 100755
index 00000000..3e64a9b9
Binary files /dev/null and b/static/icons/06002D9F.png differ
diff --git a/static/icons/06002DA0.png b/static/icons/06002DA0.png
new file mode 100755
index 00000000..d61ba481
Binary files /dev/null and b/static/icons/06002DA0.png differ
diff --git a/static/icons/06002DA1.png b/static/icons/06002DA1.png
new file mode 100755
index 00000000..cc0ac74a
Binary files /dev/null and b/static/icons/06002DA1.png differ
diff --git a/static/icons/06002DA2.png b/static/icons/06002DA2.png
new file mode 100755
index 00000000..9bc46c07
Binary files /dev/null and b/static/icons/06002DA2.png differ
diff --git a/static/icons/06002DA3.png b/static/icons/06002DA3.png
new file mode 100755
index 00000000..7e625e42
Binary files /dev/null and b/static/icons/06002DA3.png differ
diff --git a/static/icons/06002DA4.png b/static/icons/06002DA4.png
new file mode 100755
index 00000000..b9b09400
Binary files /dev/null and b/static/icons/06002DA4.png differ
diff --git a/static/icons/06002DA5.png b/static/icons/06002DA5.png
new file mode 100755
index 00000000..be7aa020
Binary files /dev/null and b/static/icons/06002DA5.png differ
diff --git a/static/icons/06002DA6.png b/static/icons/06002DA6.png
new file mode 100755
index 00000000..3f08b428
Binary files /dev/null and b/static/icons/06002DA6.png differ
diff --git a/static/icons/06002DA7.png b/static/icons/06002DA7.png
new file mode 100755
index 00000000..81a2585a
Binary files /dev/null and b/static/icons/06002DA7.png differ
diff --git a/static/icons/06002DA8.png b/static/icons/06002DA8.png
new file mode 100755
index 00000000..e5e04315
Binary files /dev/null and b/static/icons/06002DA8.png differ
diff --git a/static/icons/06002DA9.png b/static/icons/06002DA9.png
new file mode 100755
index 00000000..13c7975e
Binary files /dev/null and b/static/icons/06002DA9.png differ
diff --git a/static/icons/06002DAA.png b/static/icons/06002DAA.png
new file mode 100755
index 00000000..8dfc7898
Binary files /dev/null and b/static/icons/06002DAA.png differ
diff --git a/static/icons/06002DAB.png b/static/icons/06002DAB.png
new file mode 100755
index 00000000..14c0bc06
Binary files /dev/null and b/static/icons/06002DAB.png differ
diff --git a/static/icons/06002DAC.png b/static/icons/06002DAC.png
new file mode 100755
index 00000000..3aab6bee
Binary files /dev/null and b/static/icons/06002DAC.png differ
diff --git a/static/icons/06002DAD.png b/static/icons/06002DAD.png
new file mode 100755
index 00000000..d076667b
Binary files /dev/null and b/static/icons/06002DAD.png differ
diff --git a/static/icons/06002DAE.png b/static/icons/06002DAE.png
new file mode 100755
index 00000000..d3823262
Binary files /dev/null and b/static/icons/06002DAE.png differ
diff --git a/static/icons/06002DAF.png b/static/icons/06002DAF.png
new file mode 100755
index 00000000..e08140ab
Binary files /dev/null and b/static/icons/06002DAF.png differ
diff --git a/static/icons/06002DB0.png b/static/icons/06002DB0.png
new file mode 100755
index 00000000..471df2de
Binary files /dev/null and b/static/icons/06002DB0.png differ
diff --git a/static/icons/06002DB1.png b/static/icons/06002DB1.png
new file mode 100755
index 00000000..fc71f1f4
Binary files /dev/null and b/static/icons/06002DB1.png differ
diff --git a/static/icons/06002DB2.png b/static/icons/06002DB2.png
new file mode 100755
index 00000000..5ac6c49f
Binary files /dev/null and b/static/icons/06002DB2.png differ
diff --git a/static/icons/06002DB3.png b/static/icons/06002DB3.png
new file mode 100755
index 00000000..9ffaa266
Binary files /dev/null and b/static/icons/06002DB3.png differ
diff --git a/static/icons/06002DB4.png b/static/icons/06002DB4.png
new file mode 100755
index 00000000..55e893d0
Binary files /dev/null and b/static/icons/06002DB4.png differ
diff --git a/static/icons/06002DB5.png b/static/icons/06002DB5.png
new file mode 100755
index 00000000..5ec9eede
Binary files /dev/null and b/static/icons/06002DB5.png differ
diff --git a/static/icons/06002DB6.png b/static/icons/06002DB6.png
new file mode 100755
index 00000000..f9cfd7a9
Binary files /dev/null and b/static/icons/06002DB6.png differ
diff --git a/static/icons/06002DB7.png b/static/icons/06002DB7.png
new file mode 100755
index 00000000..12068adc
Binary files /dev/null and b/static/icons/06002DB7.png differ
diff --git a/static/icons/06002DB8.png b/static/icons/06002DB8.png
new file mode 100755
index 00000000..0c4e986d
Binary files /dev/null and b/static/icons/06002DB8.png differ
diff --git a/static/icons/06002DB9.png b/static/icons/06002DB9.png
new file mode 100755
index 00000000..4ee69c53
Binary files /dev/null and b/static/icons/06002DB9.png differ
diff --git a/static/icons/06002DBA.png b/static/icons/06002DBA.png
new file mode 100755
index 00000000..4d7d8a10
Binary files /dev/null and b/static/icons/06002DBA.png differ
diff --git a/static/icons/06002DBB.png b/static/icons/06002DBB.png
new file mode 100755
index 00000000..f021db8c
Binary files /dev/null and b/static/icons/06002DBB.png differ
diff --git a/static/icons/06002DBC.png b/static/icons/06002DBC.png
new file mode 100755
index 00000000..e72ef667
Binary files /dev/null and b/static/icons/06002DBC.png differ
diff --git a/static/icons/06002DBD.png b/static/icons/06002DBD.png
new file mode 100755
index 00000000..d94ceb95
Binary files /dev/null and b/static/icons/06002DBD.png differ
diff --git a/static/icons/06002DBE.png b/static/icons/06002DBE.png
new file mode 100755
index 00000000..20463cdd
Binary files /dev/null and b/static/icons/06002DBE.png differ
diff --git a/static/icons/06002DBF.png b/static/icons/06002DBF.png
new file mode 100755
index 00000000..e5f6b40f
Binary files /dev/null and b/static/icons/06002DBF.png differ
diff --git a/static/icons/06002DC0.png b/static/icons/06002DC0.png
new file mode 100755
index 00000000..ff5cea37
Binary files /dev/null and b/static/icons/06002DC0.png differ
diff --git a/static/icons/06002DC1.png b/static/icons/06002DC1.png
new file mode 100755
index 00000000..26e88934
Binary files /dev/null and b/static/icons/06002DC1.png differ
diff --git a/static/icons/06002DC2.png b/static/icons/06002DC2.png
new file mode 100755
index 00000000..8cae4572
Binary files /dev/null and b/static/icons/06002DC2.png differ
diff --git a/static/icons/06002DC3.png b/static/icons/06002DC3.png
new file mode 100755
index 00000000..4438c1f6
Binary files /dev/null and b/static/icons/06002DC3.png differ
diff --git a/static/icons/06002DC4.png b/static/icons/06002DC4.png
new file mode 100755
index 00000000..123a4fd9
Binary files /dev/null and b/static/icons/06002DC4.png differ
diff --git a/static/icons/06002DC5.png b/static/icons/06002DC5.png
new file mode 100755
index 00000000..4407e50e
Binary files /dev/null and b/static/icons/06002DC5.png differ
diff --git a/static/icons/06002DC6.png b/static/icons/06002DC6.png
new file mode 100755
index 00000000..c029c487
Binary files /dev/null and b/static/icons/06002DC6.png differ
diff --git a/static/icons/06002DC7.png b/static/icons/06002DC7.png
new file mode 100755
index 00000000..c8b39318
Binary files /dev/null and b/static/icons/06002DC7.png differ
diff --git a/static/icons/06002DC8.png b/static/icons/06002DC8.png
new file mode 100755
index 00000000..b2564492
Binary files /dev/null and b/static/icons/06002DC8.png differ
diff --git a/static/icons/06002DC9.png b/static/icons/06002DC9.png
new file mode 100755
index 00000000..e02b3382
Binary files /dev/null and b/static/icons/06002DC9.png differ
diff --git a/static/icons/06002DCA.png b/static/icons/06002DCA.png
new file mode 100755
index 00000000..90dfb86e
Binary files /dev/null and b/static/icons/06002DCA.png differ
diff --git a/static/icons/06002DCB.png b/static/icons/06002DCB.png
new file mode 100755
index 00000000..6f531c41
Binary files /dev/null and b/static/icons/06002DCB.png differ
diff --git a/static/icons/06002DCC.png b/static/icons/06002DCC.png
new file mode 100755
index 00000000..d20e3e7d
Binary files /dev/null and b/static/icons/06002DCC.png differ
diff --git a/static/icons/06002DCD.png b/static/icons/06002DCD.png
new file mode 100755
index 00000000..b77c19b0
Binary files /dev/null and b/static/icons/06002DCD.png differ
diff --git a/static/icons/06002DCE.png b/static/icons/06002DCE.png
new file mode 100755
index 00000000..059e7822
Binary files /dev/null and b/static/icons/06002DCE.png differ
diff --git a/static/icons/06002DCF.png b/static/icons/06002DCF.png
new file mode 100755
index 00000000..e1431c3d
Binary files /dev/null and b/static/icons/06002DCF.png differ
diff --git a/static/icons/06002DD0.png b/static/icons/06002DD0.png
new file mode 100755
index 00000000..4082c77f
Binary files /dev/null and b/static/icons/06002DD0.png differ
diff --git a/static/icons/06002DD1.png b/static/icons/06002DD1.png
new file mode 100755
index 00000000..2127acb0
Binary files /dev/null and b/static/icons/06002DD1.png differ
diff --git a/static/icons/06002DD2.png b/static/icons/06002DD2.png
new file mode 100755
index 00000000..569f510e
Binary files /dev/null and b/static/icons/06002DD2.png differ
diff --git a/static/icons/06002DD3.png b/static/icons/06002DD3.png
new file mode 100755
index 00000000..dc795738
Binary files /dev/null and b/static/icons/06002DD3.png differ
diff --git a/static/icons/06002DD4.png b/static/icons/06002DD4.png
new file mode 100755
index 00000000..ffee01ad
Binary files /dev/null and b/static/icons/06002DD4.png differ
diff --git a/static/icons/06002DD5.png b/static/icons/06002DD5.png
new file mode 100755
index 00000000..000174c0
Binary files /dev/null and b/static/icons/06002DD5.png differ
diff --git a/static/icons/06002DD6.png b/static/icons/06002DD6.png
new file mode 100755
index 00000000..59a78444
Binary files /dev/null and b/static/icons/06002DD6.png differ
diff --git a/static/icons/06002DD7.png b/static/icons/06002DD7.png
new file mode 100755
index 00000000..ab5e9452
Binary files /dev/null and b/static/icons/06002DD7.png differ
diff --git a/static/icons/06002DD8.png b/static/icons/06002DD8.png
new file mode 100755
index 00000000..e772c8b1
Binary files /dev/null and b/static/icons/06002DD8.png differ
diff --git a/static/icons/06002DD9.png b/static/icons/06002DD9.png
new file mode 100755
index 00000000..9d6dffbb
Binary files /dev/null and b/static/icons/06002DD9.png differ
diff --git a/static/icons/06002DDA.png b/static/icons/06002DDA.png
new file mode 100755
index 00000000..4691729b
Binary files /dev/null and b/static/icons/06002DDA.png differ
diff --git a/static/icons/06002DDB.png b/static/icons/06002DDB.png
new file mode 100755
index 00000000..70bc5220
Binary files /dev/null and b/static/icons/06002DDB.png differ
diff --git a/static/icons/06002DDC.png b/static/icons/06002DDC.png
new file mode 100755
index 00000000..7a3a385d
Binary files /dev/null and b/static/icons/06002DDC.png differ
diff --git a/static/icons/06002DDD.png b/static/icons/06002DDD.png
new file mode 100755
index 00000000..63c8f0a0
Binary files /dev/null and b/static/icons/06002DDD.png differ
diff --git a/static/icons/06002DDE.png b/static/icons/06002DDE.png
new file mode 100755
index 00000000..c276deea
Binary files /dev/null and b/static/icons/06002DDE.png differ
diff --git a/static/icons/06002DDF.png b/static/icons/06002DDF.png
new file mode 100755
index 00000000..7fbbb3c4
Binary files /dev/null and b/static/icons/06002DDF.png differ
diff --git a/static/icons/06002DE0.png b/static/icons/06002DE0.png
new file mode 100755
index 00000000..c3862a9b
Binary files /dev/null and b/static/icons/06002DE0.png differ
diff --git a/static/icons/06002DE1.png b/static/icons/06002DE1.png
new file mode 100755
index 00000000..da1fd92a
Binary files /dev/null and b/static/icons/06002DE1.png differ
diff --git a/static/icons/06002DE2.png b/static/icons/06002DE2.png
new file mode 100755
index 00000000..ff6c84d3
Binary files /dev/null and b/static/icons/06002DE2.png differ
diff --git a/static/icons/06002DE3.png b/static/icons/06002DE3.png
new file mode 100755
index 00000000..609b853d
Binary files /dev/null and b/static/icons/06002DE3.png differ
diff --git a/static/icons/06002DE4.png b/static/icons/06002DE4.png
new file mode 100755
index 00000000..b3c85aaf
Binary files /dev/null and b/static/icons/06002DE4.png differ
diff --git a/static/icons/06002DE5.png b/static/icons/06002DE5.png
new file mode 100755
index 00000000..f3b2f149
Binary files /dev/null and b/static/icons/06002DE5.png differ
diff --git a/static/icons/06002DE6.png b/static/icons/06002DE6.png
new file mode 100755
index 00000000..9d4ef5ff
Binary files /dev/null and b/static/icons/06002DE6.png differ
diff --git a/static/icons/06002DE7.png b/static/icons/06002DE7.png
new file mode 100755
index 00000000..b37ee82b
Binary files /dev/null and b/static/icons/06002DE7.png differ
diff --git a/static/icons/06002DE8.png b/static/icons/06002DE8.png
new file mode 100755
index 00000000..9094bf6a
Binary files /dev/null and b/static/icons/06002DE8.png differ
diff --git a/static/icons/06002DE9.png b/static/icons/06002DE9.png
new file mode 100755
index 00000000..787e09b3
Binary files /dev/null and b/static/icons/06002DE9.png differ
diff --git a/static/icons/06002DEA.png b/static/icons/06002DEA.png
new file mode 100755
index 00000000..18f69e9c
Binary files /dev/null and b/static/icons/06002DEA.png differ
diff --git a/static/icons/06002DEB.png b/static/icons/06002DEB.png
new file mode 100755
index 00000000..6ea09528
Binary files /dev/null and b/static/icons/06002DEB.png differ
diff --git a/static/icons/06002DEC.png b/static/icons/06002DEC.png
new file mode 100755
index 00000000..03c5f4e9
Binary files /dev/null and b/static/icons/06002DEC.png differ
diff --git a/static/icons/06002DED.png b/static/icons/06002DED.png
new file mode 100755
index 00000000..278f277c
Binary files /dev/null and b/static/icons/06002DED.png differ
diff --git a/static/icons/06002DEE.png b/static/icons/06002DEE.png
new file mode 100755
index 00000000..7a87e7e5
Binary files /dev/null and b/static/icons/06002DEE.png differ
diff --git a/static/icons/06002DEF.png b/static/icons/06002DEF.png
new file mode 100755
index 00000000..b1bbd0fd
Binary files /dev/null and b/static/icons/06002DEF.png differ
diff --git a/static/icons/06002DF0.png b/static/icons/06002DF0.png
new file mode 100755
index 00000000..efedf87b
Binary files /dev/null and b/static/icons/06002DF0.png differ
diff --git a/static/icons/06002DF1.png b/static/icons/06002DF1.png
new file mode 100755
index 00000000..4809cc7c
Binary files /dev/null and b/static/icons/06002DF1.png differ
diff --git a/static/icons/06002DF2.png b/static/icons/06002DF2.png
new file mode 100755
index 00000000..2e136aab
Binary files /dev/null and b/static/icons/06002DF2.png differ
diff --git a/static/icons/06002DF3.png b/static/icons/06002DF3.png
new file mode 100755
index 00000000..d7787275
Binary files /dev/null and b/static/icons/06002DF3.png differ
diff --git a/static/icons/06002DF4.png b/static/icons/06002DF4.png
new file mode 100755
index 00000000..82f4f527
Binary files /dev/null and b/static/icons/06002DF4.png differ
diff --git a/static/icons/06002DF5.png b/static/icons/06002DF5.png
new file mode 100755
index 00000000..ae30368a
Binary files /dev/null and b/static/icons/06002DF5.png differ
diff --git a/static/icons/06002DF6.png b/static/icons/06002DF6.png
new file mode 100755
index 00000000..1b22bbaa
Binary files /dev/null and b/static/icons/06002DF6.png differ
diff --git a/static/icons/06002DF7.png b/static/icons/06002DF7.png
new file mode 100755
index 00000000..5ea77c4c
Binary files /dev/null and b/static/icons/06002DF7.png differ
diff --git a/static/icons/06002DF8.png b/static/icons/06002DF8.png
new file mode 100755
index 00000000..354d34f4
Binary files /dev/null and b/static/icons/06002DF8.png differ
diff --git a/static/icons/06002DF9.png b/static/icons/06002DF9.png
new file mode 100755
index 00000000..bcf83615
Binary files /dev/null and b/static/icons/06002DF9.png differ
diff --git a/static/icons/06002DFA.png b/static/icons/06002DFA.png
new file mode 100755
index 00000000..d77b5dea
Binary files /dev/null and b/static/icons/06002DFA.png differ
diff --git a/static/icons/06002DFB.png b/static/icons/06002DFB.png
new file mode 100755
index 00000000..63bcb928
Binary files /dev/null and b/static/icons/06002DFB.png differ
diff --git a/static/icons/06002DFC.png b/static/icons/06002DFC.png
new file mode 100755
index 00000000..fd21b821
Binary files /dev/null and b/static/icons/06002DFC.png differ
diff --git a/static/icons/06002DFD.png b/static/icons/06002DFD.png
new file mode 100755
index 00000000..a5914b75
Binary files /dev/null and b/static/icons/06002DFD.png differ
diff --git a/static/icons/06002DFE.png b/static/icons/06002DFE.png
new file mode 100755
index 00000000..02753b42
Binary files /dev/null and b/static/icons/06002DFE.png differ
diff --git a/static/icons/06002DFF.png b/static/icons/06002DFF.png
new file mode 100755
index 00000000..d970432d
Binary files /dev/null and b/static/icons/06002DFF.png differ
diff --git a/static/icons/06002E00.png b/static/icons/06002E00.png
new file mode 100755
index 00000000..b70f2ed3
Binary files /dev/null and b/static/icons/06002E00.png differ
diff --git a/static/icons/06002E01.png b/static/icons/06002E01.png
new file mode 100755
index 00000000..388f8a0c
Binary files /dev/null and b/static/icons/06002E01.png differ
diff --git a/static/icons/06002E02.png b/static/icons/06002E02.png
new file mode 100755
index 00000000..7ad9284e
Binary files /dev/null and b/static/icons/06002E02.png differ
diff --git a/static/icons/06002E03.png b/static/icons/06002E03.png
new file mode 100755
index 00000000..2a9731ae
Binary files /dev/null and b/static/icons/06002E03.png differ
diff --git a/static/icons/06002E04.png b/static/icons/06002E04.png
new file mode 100755
index 00000000..913bb1cb
Binary files /dev/null and b/static/icons/06002E04.png differ
diff --git a/static/icons/06002E05.png b/static/icons/06002E05.png
new file mode 100755
index 00000000..51150036
Binary files /dev/null and b/static/icons/06002E05.png differ
diff --git a/static/icons/06002E06.png b/static/icons/06002E06.png
new file mode 100755
index 00000000..68ef8f19
Binary files /dev/null and b/static/icons/06002E06.png differ
diff --git a/static/icons/06002E07.png b/static/icons/06002E07.png
new file mode 100755
index 00000000..24e940ce
Binary files /dev/null and b/static/icons/06002E07.png differ
diff --git a/static/icons/06002E08.png b/static/icons/06002E08.png
new file mode 100755
index 00000000..fa9f1626
Binary files /dev/null and b/static/icons/06002E08.png differ
diff --git a/static/icons/06002E09.png b/static/icons/06002E09.png
new file mode 100755
index 00000000..85201486
Binary files /dev/null and b/static/icons/06002E09.png differ
diff --git a/static/icons/06002E0A.png b/static/icons/06002E0A.png
new file mode 100755
index 00000000..886af924
Binary files /dev/null and b/static/icons/06002E0A.png differ
diff --git a/static/icons/06002E0B.png b/static/icons/06002E0B.png
new file mode 100755
index 00000000..54a426f6
Binary files /dev/null and b/static/icons/06002E0B.png differ
diff --git a/static/icons/06002E0C.png b/static/icons/06002E0C.png
new file mode 100755
index 00000000..698cfbf1
Binary files /dev/null and b/static/icons/06002E0C.png differ
diff --git a/static/icons/06002E0D.png b/static/icons/06002E0D.png
new file mode 100755
index 00000000..de15494d
Binary files /dev/null and b/static/icons/06002E0D.png differ
diff --git a/static/icons/06002E0E.png b/static/icons/06002E0E.png
new file mode 100755
index 00000000..ab6c1986
Binary files /dev/null and b/static/icons/06002E0E.png differ
diff --git a/static/icons/06002E0F.png b/static/icons/06002E0F.png
new file mode 100755
index 00000000..d62f8ca6
Binary files /dev/null and b/static/icons/06002E0F.png differ
diff --git a/static/icons/06002E10.png b/static/icons/06002E10.png
new file mode 100755
index 00000000..a58ec2c4
Binary files /dev/null and b/static/icons/06002E10.png differ
diff --git a/static/icons/06002E11.png b/static/icons/06002E11.png
new file mode 100755
index 00000000..3aa02343
Binary files /dev/null and b/static/icons/06002E11.png differ
diff --git a/static/icons/06002E12.png b/static/icons/06002E12.png
new file mode 100755
index 00000000..9624bcf7
Binary files /dev/null and b/static/icons/06002E12.png differ
diff --git a/static/icons/06002E13.png b/static/icons/06002E13.png
new file mode 100755
index 00000000..06358345
Binary files /dev/null and b/static/icons/06002E13.png differ
diff --git a/static/icons/06002E14.png b/static/icons/06002E14.png
new file mode 100755
index 00000000..b3cf1fe8
Binary files /dev/null and b/static/icons/06002E14.png differ
diff --git a/static/icons/06002E15.png b/static/icons/06002E15.png
new file mode 100755
index 00000000..d39a4697
Binary files /dev/null and b/static/icons/06002E15.png differ
diff --git a/static/icons/06002E16.png b/static/icons/06002E16.png
new file mode 100755
index 00000000..b7773af9
Binary files /dev/null and b/static/icons/06002E16.png differ
diff --git a/static/icons/06002E17.png b/static/icons/06002E17.png
new file mode 100755
index 00000000..d8c091a8
Binary files /dev/null and b/static/icons/06002E17.png differ
diff --git a/static/icons/06002E18.png b/static/icons/06002E18.png
new file mode 100755
index 00000000..943efb29
Binary files /dev/null and b/static/icons/06002E18.png differ
diff --git a/static/icons/06002E19.png b/static/icons/06002E19.png
new file mode 100755
index 00000000..84bb1f1e
Binary files /dev/null and b/static/icons/06002E19.png differ
diff --git a/static/icons/06002E1A.png b/static/icons/06002E1A.png
new file mode 100755
index 00000000..31825c4c
Binary files /dev/null and b/static/icons/06002E1A.png differ
diff --git a/static/icons/06002E1B.png b/static/icons/06002E1B.png
new file mode 100755
index 00000000..d22a4888
Binary files /dev/null and b/static/icons/06002E1B.png differ
diff --git a/static/icons/06002E1C.png b/static/icons/06002E1C.png
new file mode 100755
index 00000000..009534ef
Binary files /dev/null and b/static/icons/06002E1C.png differ
diff --git a/static/icons/06002E1D.png b/static/icons/06002E1D.png
new file mode 100755
index 00000000..fa107943
Binary files /dev/null and b/static/icons/06002E1D.png differ
diff --git a/static/icons/06002E1E.png b/static/icons/06002E1E.png
new file mode 100755
index 00000000..3fa08e36
Binary files /dev/null and b/static/icons/06002E1E.png differ
diff --git a/static/icons/06002E1F.png b/static/icons/06002E1F.png
new file mode 100755
index 00000000..33eda556
Binary files /dev/null and b/static/icons/06002E1F.png differ
diff --git a/static/icons/06002E20.png b/static/icons/06002E20.png
new file mode 100755
index 00000000..2d36b5f0
Binary files /dev/null and b/static/icons/06002E20.png differ
diff --git a/static/icons/06002E21.png b/static/icons/06002E21.png
new file mode 100755
index 00000000..4ba38054
Binary files /dev/null and b/static/icons/06002E21.png differ
diff --git a/static/icons/06002E22.png b/static/icons/06002E22.png
new file mode 100755
index 00000000..8624ebf9
Binary files /dev/null and b/static/icons/06002E22.png differ
diff --git a/static/icons/06002E23.png b/static/icons/06002E23.png
new file mode 100755
index 00000000..4fbab14a
Binary files /dev/null and b/static/icons/06002E23.png differ
diff --git a/static/icons/06002E24.png b/static/icons/06002E24.png
new file mode 100755
index 00000000..a4797982
Binary files /dev/null and b/static/icons/06002E24.png differ
diff --git a/static/icons/06002E25.png b/static/icons/06002E25.png
new file mode 100755
index 00000000..763c6590
Binary files /dev/null and b/static/icons/06002E25.png differ
diff --git a/static/icons/06002E26.png b/static/icons/06002E26.png
new file mode 100755
index 00000000..f298e27c
Binary files /dev/null and b/static/icons/06002E26.png differ
diff --git a/static/icons/06002E27.png b/static/icons/06002E27.png
new file mode 100755
index 00000000..9da5062c
Binary files /dev/null and b/static/icons/06002E27.png differ
diff --git a/static/icons/06002E28.png b/static/icons/06002E28.png
new file mode 100755
index 00000000..07dcecef
Binary files /dev/null and b/static/icons/06002E28.png differ
diff --git a/static/icons/06002E29.png b/static/icons/06002E29.png
new file mode 100755
index 00000000..0fa83e57
Binary files /dev/null and b/static/icons/06002E29.png differ
diff --git a/static/icons/06002E2A.png b/static/icons/06002E2A.png
new file mode 100755
index 00000000..e5cea868
Binary files /dev/null and b/static/icons/06002E2A.png differ
diff --git a/static/icons/06002E2B.png b/static/icons/06002E2B.png
new file mode 100755
index 00000000..2bfdf7d9
Binary files /dev/null and b/static/icons/06002E2B.png differ
diff --git a/static/icons/06002E2C.png b/static/icons/06002E2C.png
new file mode 100755
index 00000000..403510c3
Binary files /dev/null and b/static/icons/06002E2C.png differ
diff --git a/static/icons/06002E2D.png b/static/icons/06002E2D.png
new file mode 100755
index 00000000..45ccb8d3
Binary files /dev/null and b/static/icons/06002E2D.png differ
diff --git a/static/icons/06002E2E.png b/static/icons/06002E2E.png
new file mode 100755
index 00000000..205fe9a4
Binary files /dev/null and b/static/icons/06002E2E.png differ
diff --git a/static/icons/06002E2F.png b/static/icons/06002E2F.png
new file mode 100755
index 00000000..1d7ef3dd
Binary files /dev/null and b/static/icons/06002E2F.png differ
diff --git a/static/icons/06002E30.png b/static/icons/06002E30.png
new file mode 100755
index 00000000..5d36b3a7
Binary files /dev/null and b/static/icons/06002E30.png differ
diff --git a/static/icons/06002E31.png b/static/icons/06002E31.png
new file mode 100755
index 00000000..7b03c015
Binary files /dev/null and b/static/icons/06002E31.png differ
diff --git a/static/icons/06002E32.png b/static/icons/06002E32.png
new file mode 100755
index 00000000..7ac17ca6
Binary files /dev/null and b/static/icons/06002E32.png differ
diff --git a/static/icons/06002E33.png b/static/icons/06002E33.png
new file mode 100755
index 00000000..0b406882
Binary files /dev/null and b/static/icons/06002E33.png differ
diff --git a/static/icons/06002E34.png b/static/icons/06002E34.png
new file mode 100755
index 00000000..6fcd1079
Binary files /dev/null and b/static/icons/06002E34.png differ
diff --git a/static/icons/06002E35.png b/static/icons/06002E35.png
new file mode 100755
index 00000000..58cdb6ed
Binary files /dev/null and b/static/icons/06002E35.png differ
diff --git a/static/icons/06002E36.png b/static/icons/06002E36.png
new file mode 100755
index 00000000..a2f93078
Binary files /dev/null and b/static/icons/06002E36.png differ
diff --git a/static/icons/06002E37.png b/static/icons/06002E37.png
new file mode 100755
index 00000000..5d93b168
Binary files /dev/null and b/static/icons/06002E37.png differ
diff --git a/static/icons/06002E38.png b/static/icons/06002E38.png
new file mode 100755
index 00000000..aac9d404
Binary files /dev/null and b/static/icons/06002E38.png differ
diff --git a/static/icons/06002E39.png b/static/icons/06002E39.png
new file mode 100755
index 00000000..cabd0eed
Binary files /dev/null and b/static/icons/06002E39.png differ
diff --git a/static/icons/06002E3A.png b/static/icons/06002E3A.png
new file mode 100755
index 00000000..aca5aefa
Binary files /dev/null and b/static/icons/06002E3A.png differ
diff --git a/static/icons/06002E3B.png b/static/icons/06002E3B.png
new file mode 100755
index 00000000..d4491a08
Binary files /dev/null and b/static/icons/06002E3B.png differ
diff --git a/static/icons/06002E3C.png b/static/icons/06002E3C.png
new file mode 100755
index 00000000..9f71f378
Binary files /dev/null and b/static/icons/06002E3C.png differ
diff --git a/static/icons/06002E3D.png b/static/icons/06002E3D.png
new file mode 100755
index 00000000..61d1b10b
Binary files /dev/null and b/static/icons/06002E3D.png differ
diff --git a/static/icons/06002E3E.png b/static/icons/06002E3E.png
new file mode 100755
index 00000000..0f8fe620
Binary files /dev/null and b/static/icons/06002E3E.png differ
diff --git a/static/icons/06002E3F.png b/static/icons/06002E3F.png
new file mode 100755
index 00000000..d298f869
Binary files /dev/null and b/static/icons/06002E3F.png differ
diff --git a/static/icons/06002E40.png b/static/icons/06002E40.png
new file mode 100755
index 00000000..564f5c45
Binary files /dev/null and b/static/icons/06002E40.png differ
diff --git a/static/icons/06002E41.png b/static/icons/06002E41.png
new file mode 100755
index 00000000..675772b4
Binary files /dev/null and b/static/icons/06002E41.png differ
diff --git a/static/icons/06002E42.png b/static/icons/06002E42.png
new file mode 100755
index 00000000..1c28cb92
Binary files /dev/null and b/static/icons/06002E42.png differ
diff --git a/static/icons/06002E43.png b/static/icons/06002E43.png
new file mode 100755
index 00000000..0b97df88
Binary files /dev/null and b/static/icons/06002E43.png differ
diff --git a/static/icons/06002E44.png b/static/icons/06002E44.png
new file mode 100755
index 00000000..54e0482b
Binary files /dev/null and b/static/icons/06002E44.png differ
diff --git a/static/icons/06002E45.png b/static/icons/06002E45.png
new file mode 100755
index 00000000..3574067e
Binary files /dev/null and b/static/icons/06002E45.png differ
diff --git a/static/icons/06002E46.png b/static/icons/06002E46.png
new file mode 100755
index 00000000..a4225142
Binary files /dev/null and b/static/icons/06002E46.png differ
diff --git a/static/icons/06002E47.png b/static/icons/06002E47.png
new file mode 100755
index 00000000..157c93c2
Binary files /dev/null and b/static/icons/06002E47.png differ
diff --git a/static/icons/06002E48.png b/static/icons/06002E48.png
new file mode 100755
index 00000000..a2084d65
Binary files /dev/null and b/static/icons/06002E48.png differ
diff --git a/static/icons/06002E49.png b/static/icons/06002E49.png
new file mode 100755
index 00000000..7946c39a
Binary files /dev/null and b/static/icons/06002E49.png differ
diff --git a/static/icons/06002E4A.png b/static/icons/06002E4A.png
new file mode 100755
index 00000000..6df6ed9b
Binary files /dev/null and b/static/icons/06002E4A.png differ
diff --git a/static/icons/06002E4B.png b/static/icons/06002E4B.png
new file mode 100755
index 00000000..7ede68ca
Binary files /dev/null and b/static/icons/06002E4B.png differ
diff --git a/static/icons/06002E4C.png b/static/icons/06002E4C.png
new file mode 100755
index 00000000..92f8590a
Binary files /dev/null and b/static/icons/06002E4C.png differ
diff --git a/static/icons/06002E4D.png b/static/icons/06002E4D.png
new file mode 100755
index 00000000..eab461a0
Binary files /dev/null and b/static/icons/06002E4D.png differ
diff --git a/static/icons/06002E4E.png b/static/icons/06002E4E.png
new file mode 100755
index 00000000..78deaadb
Binary files /dev/null and b/static/icons/06002E4E.png differ
diff --git a/static/icons/06002E4F.png b/static/icons/06002E4F.png
new file mode 100755
index 00000000..75c380e9
Binary files /dev/null and b/static/icons/06002E4F.png differ
diff --git a/static/icons/06002E50.png b/static/icons/06002E50.png
new file mode 100755
index 00000000..55b4cf0d
Binary files /dev/null and b/static/icons/06002E50.png differ
diff --git a/static/icons/06002E51.png b/static/icons/06002E51.png
new file mode 100755
index 00000000..ba1f4c2d
Binary files /dev/null and b/static/icons/06002E51.png differ
diff --git a/static/icons/06002E52.png b/static/icons/06002E52.png
new file mode 100755
index 00000000..00564b06
Binary files /dev/null and b/static/icons/06002E52.png differ
diff --git a/static/icons/06002E53.png b/static/icons/06002E53.png
new file mode 100755
index 00000000..146f2be8
Binary files /dev/null and b/static/icons/06002E53.png differ
diff --git a/static/icons/06002E54.png b/static/icons/06002E54.png
new file mode 100755
index 00000000..11456e6d
Binary files /dev/null and b/static/icons/06002E54.png differ
diff --git a/static/icons/06002E55.png b/static/icons/06002E55.png
new file mode 100755
index 00000000..5c51afac
Binary files /dev/null and b/static/icons/06002E55.png differ
diff --git a/static/icons/06002E56.png b/static/icons/06002E56.png
new file mode 100755
index 00000000..7c7fe184
Binary files /dev/null and b/static/icons/06002E56.png differ
diff --git a/static/icons/06002E57.png b/static/icons/06002E57.png
new file mode 100755
index 00000000..e12655ec
Binary files /dev/null and b/static/icons/06002E57.png differ
diff --git a/static/icons/06002E58.png b/static/icons/06002E58.png
new file mode 100755
index 00000000..a70bba13
Binary files /dev/null and b/static/icons/06002E58.png differ
diff --git a/static/icons/06002E59.png b/static/icons/06002E59.png
new file mode 100755
index 00000000..37fed700
Binary files /dev/null and b/static/icons/06002E59.png differ
diff --git a/static/icons/06002E5A.png b/static/icons/06002E5A.png
new file mode 100755
index 00000000..2a38c626
Binary files /dev/null and b/static/icons/06002E5A.png differ
diff --git a/static/icons/06002E5B.png b/static/icons/06002E5B.png
new file mode 100755
index 00000000..f88552b9
Binary files /dev/null and b/static/icons/06002E5B.png differ
diff --git a/static/icons/06002E5C.png b/static/icons/06002E5C.png
new file mode 100755
index 00000000..01d936b3
Binary files /dev/null and b/static/icons/06002E5C.png differ
diff --git a/static/icons/06002E5D.png b/static/icons/06002E5D.png
new file mode 100755
index 00000000..8ae4b62e
Binary files /dev/null and b/static/icons/06002E5D.png differ
diff --git a/static/icons/06002E5E.png b/static/icons/06002E5E.png
new file mode 100755
index 00000000..46d6c64d
Binary files /dev/null and b/static/icons/06002E5E.png differ
diff --git a/static/icons/06002E5F.png b/static/icons/06002E5F.png
new file mode 100755
index 00000000..b0916790
Binary files /dev/null and b/static/icons/06002E5F.png differ
diff --git a/static/icons/06002E60.png b/static/icons/06002E60.png
new file mode 100755
index 00000000..a1ef3ccd
Binary files /dev/null and b/static/icons/06002E60.png differ
diff --git a/static/icons/06002E61.png b/static/icons/06002E61.png
new file mode 100755
index 00000000..812dbd93
Binary files /dev/null and b/static/icons/06002E61.png differ
diff --git a/static/icons/06002E62.png b/static/icons/06002E62.png
new file mode 100755
index 00000000..52eee261
Binary files /dev/null and b/static/icons/06002E62.png differ
diff --git a/static/icons/06002E63.png b/static/icons/06002E63.png
new file mode 100755
index 00000000..83f26d33
Binary files /dev/null and b/static/icons/06002E63.png differ
diff --git a/static/icons/06002E64.png b/static/icons/06002E64.png
new file mode 100755
index 00000000..1a8bd75b
Binary files /dev/null and b/static/icons/06002E64.png differ
diff --git a/static/icons/06002E65.png b/static/icons/06002E65.png
new file mode 100755
index 00000000..19f6a180
Binary files /dev/null and b/static/icons/06002E65.png differ
diff --git a/static/icons/06002E66.png b/static/icons/06002E66.png
new file mode 100755
index 00000000..6a2583f9
Binary files /dev/null and b/static/icons/06002E66.png differ
diff --git a/static/icons/06002E67.png b/static/icons/06002E67.png
new file mode 100755
index 00000000..231817bd
Binary files /dev/null and b/static/icons/06002E67.png differ
diff --git a/static/icons/06002E68.png b/static/icons/06002E68.png
new file mode 100755
index 00000000..7239292c
Binary files /dev/null and b/static/icons/06002E68.png differ
diff --git a/static/icons/06002E69.png b/static/icons/06002E69.png
new file mode 100755
index 00000000..59469c48
Binary files /dev/null and b/static/icons/06002E69.png differ
diff --git a/static/icons/06002E6A.png b/static/icons/06002E6A.png
new file mode 100755
index 00000000..cf28915f
Binary files /dev/null and b/static/icons/06002E6A.png differ
diff --git a/static/icons/06002E6B.png b/static/icons/06002E6B.png
new file mode 100755
index 00000000..65d2e4a0
Binary files /dev/null and b/static/icons/06002E6B.png differ
diff --git a/static/icons/06002E6C.png b/static/icons/06002E6C.png
new file mode 100755
index 00000000..231964bd
Binary files /dev/null and b/static/icons/06002E6C.png differ
diff --git a/static/icons/06002E6D.png b/static/icons/06002E6D.png
new file mode 100755
index 00000000..195cbc27
Binary files /dev/null and b/static/icons/06002E6D.png differ
diff --git a/static/icons/06002E6E.png b/static/icons/06002E6E.png
new file mode 100755
index 00000000..8d03b8e8
Binary files /dev/null and b/static/icons/06002E6E.png differ
diff --git a/static/icons/06002E6F.png b/static/icons/06002E6F.png
new file mode 100755
index 00000000..80501069
Binary files /dev/null and b/static/icons/06002E6F.png differ
diff --git a/static/icons/06002E70.png b/static/icons/06002E70.png
new file mode 100755
index 00000000..ec8eacb3
Binary files /dev/null and b/static/icons/06002E70.png differ
diff --git a/static/icons/06002E71.png b/static/icons/06002E71.png
new file mode 100755
index 00000000..4561dbdd
Binary files /dev/null and b/static/icons/06002E71.png differ
diff --git a/static/icons/06002E72.png b/static/icons/06002E72.png
new file mode 100755
index 00000000..65a34cb7
Binary files /dev/null and b/static/icons/06002E72.png differ
diff --git a/static/icons/06002E73.png b/static/icons/06002E73.png
new file mode 100755
index 00000000..e8fa6345
Binary files /dev/null and b/static/icons/06002E73.png differ
diff --git a/static/icons/06002E74.png b/static/icons/06002E74.png
new file mode 100755
index 00000000..1a3a940f
Binary files /dev/null and b/static/icons/06002E74.png differ
diff --git a/static/icons/06002E75.png b/static/icons/06002E75.png
new file mode 100755
index 00000000..ca1a29ce
Binary files /dev/null and b/static/icons/06002E75.png differ
diff --git a/static/icons/06002E76.png b/static/icons/06002E76.png
new file mode 100755
index 00000000..d1e70821
Binary files /dev/null and b/static/icons/06002E76.png differ
diff --git a/static/icons/06002E77.png b/static/icons/06002E77.png
new file mode 100755
index 00000000..8a29a76c
Binary files /dev/null and b/static/icons/06002E77.png differ
diff --git a/static/icons/06002E78.png b/static/icons/06002E78.png
new file mode 100755
index 00000000..8364cf4c
Binary files /dev/null and b/static/icons/06002E78.png differ
diff --git a/static/icons/06002E79.png b/static/icons/06002E79.png
new file mode 100755
index 00000000..40467069
Binary files /dev/null and b/static/icons/06002E79.png differ
diff --git a/static/icons/06002E7A.png b/static/icons/06002E7A.png
new file mode 100755
index 00000000..936b1ced
Binary files /dev/null and b/static/icons/06002E7A.png differ
diff --git a/static/icons/06002E7B.png b/static/icons/06002E7B.png
new file mode 100755
index 00000000..b62268d2
Binary files /dev/null and b/static/icons/06002E7B.png differ
diff --git a/static/icons/06002E7C.png b/static/icons/06002E7C.png
new file mode 100755
index 00000000..2f351f59
Binary files /dev/null and b/static/icons/06002E7C.png differ
diff --git a/static/icons/06002E7D.png b/static/icons/06002E7D.png
new file mode 100755
index 00000000..2d726c3a
Binary files /dev/null and b/static/icons/06002E7D.png differ
diff --git a/static/icons/06002E7E.png b/static/icons/06002E7E.png
new file mode 100755
index 00000000..1ea07295
Binary files /dev/null and b/static/icons/06002E7E.png differ
diff --git a/static/icons/06002E7F.png b/static/icons/06002E7F.png
new file mode 100755
index 00000000..1bc3bc6a
Binary files /dev/null and b/static/icons/06002E7F.png differ
diff --git a/static/icons/06002E80.png b/static/icons/06002E80.png
new file mode 100755
index 00000000..2ad7a7f9
Binary files /dev/null and b/static/icons/06002E80.png differ
diff --git a/static/icons/06002E81.png b/static/icons/06002E81.png
new file mode 100755
index 00000000..db4a092a
Binary files /dev/null and b/static/icons/06002E81.png differ
diff --git a/static/icons/06002E82.png b/static/icons/06002E82.png
new file mode 100755
index 00000000..d02c0729
Binary files /dev/null and b/static/icons/06002E82.png differ
diff --git a/static/icons/06002E83.png b/static/icons/06002E83.png
new file mode 100755
index 00000000..9e0d3a8a
Binary files /dev/null and b/static/icons/06002E83.png differ
diff --git a/static/icons/06002E84.png b/static/icons/06002E84.png
new file mode 100755
index 00000000..ad1c8f3e
Binary files /dev/null and b/static/icons/06002E84.png differ
diff --git a/static/icons/06002E85.png b/static/icons/06002E85.png
new file mode 100755
index 00000000..2d624853
Binary files /dev/null and b/static/icons/06002E85.png differ
diff --git a/static/icons/06002E86.png b/static/icons/06002E86.png
new file mode 100755
index 00000000..b058946d
Binary files /dev/null and b/static/icons/06002E86.png differ
diff --git a/static/icons/06002E87.png b/static/icons/06002E87.png
new file mode 100755
index 00000000..dccc7875
Binary files /dev/null and b/static/icons/06002E87.png differ
diff --git a/static/icons/06002E88.png b/static/icons/06002E88.png
new file mode 100755
index 00000000..a0a73465
Binary files /dev/null and b/static/icons/06002E88.png differ
diff --git a/static/icons/06002E89.png b/static/icons/06002E89.png
new file mode 100755
index 00000000..4cd0e6b5
Binary files /dev/null and b/static/icons/06002E89.png differ
diff --git a/static/icons/06002E8A.png b/static/icons/06002E8A.png
new file mode 100755
index 00000000..5dbafe7d
Binary files /dev/null and b/static/icons/06002E8A.png differ
diff --git a/static/icons/06002E8B.png b/static/icons/06002E8B.png
new file mode 100755
index 00000000..5ab70c14
Binary files /dev/null and b/static/icons/06002E8B.png differ
diff --git a/static/icons/06002E8C.png b/static/icons/06002E8C.png
new file mode 100755
index 00000000..c7a0f9fc
Binary files /dev/null and b/static/icons/06002E8C.png differ
diff --git a/static/icons/06002E8D.png b/static/icons/06002E8D.png
new file mode 100755
index 00000000..331d98a9
Binary files /dev/null and b/static/icons/06002E8D.png differ
diff --git a/static/icons/06002E8E.png b/static/icons/06002E8E.png
new file mode 100755
index 00000000..57e3a139
Binary files /dev/null and b/static/icons/06002E8E.png differ
diff --git a/static/icons/06002E8F.png b/static/icons/06002E8F.png
new file mode 100755
index 00000000..c3521c54
Binary files /dev/null and b/static/icons/06002E8F.png differ
diff --git a/static/icons/06002E90.png b/static/icons/06002E90.png
new file mode 100755
index 00000000..b1f2c3ad
Binary files /dev/null and b/static/icons/06002E90.png differ
diff --git a/static/icons/06002E91.png b/static/icons/06002E91.png
new file mode 100755
index 00000000..27a8ae6b
Binary files /dev/null and b/static/icons/06002E91.png differ
diff --git a/static/icons/06002E92.png b/static/icons/06002E92.png
new file mode 100755
index 00000000..cfdfeef7
Binary files /dev/null and b/static/icons/06002E92.png differ
diff --git a/static/icons/06002E93.png b/static/icons/06002E93.png
new file mode 100755
index 00000000..dd28ee8b
Binary files /dev/null and b/static/icons/06002E93.png differ
diff --git a/static/icons/06002E94.png b/static/icons/06002E94.png
new file mode 100755
index 00000000..43d77523
Binary files /dev/null and b/static/icons/06002E94.png differ
diff --git a/static/icons/06002E95.png b/static/icons/06002E95.png
new file mode 100755
index 00000000..169712fe
Binary files /dev/null and b/static/icons/06002E95.png differ
diff --git a/static/icons/06002E96.png b/static/icons/06002E96.png
new file mode 100755
index 00000000..a055876e
Binary files /dev/null and b/static/icons/06002E96.png differ
diff --git a/static/icons/06002E97.png b/static/icons/06002E97.png
new file mode 100755
index 00000000..826fa4d2
Binary files /dev/null and b/static/icons/06002E97.png differ
diff --git a/static/icons/06002E98.png b/static/icons/06002E98.png
new file mode 100755
index 00000000..26792e42
Binary files /dev/null and b/static/icons/06002E98.png differ
diff --git a/static/icons/06002E99.png b/static/icons/06002E99.png
new file mode 100755
index 00000000..67af217b
Binary files /dev/null and b/static/icons/06002E99.png differ
diff --git a/static/icons/06002E9A.png b/static/icons/06002E9A.png
new file mode 100755
index 00000000..8d173a81
Binary files /dev/null and b/static/icons/06002E9A.png differ
diff --git a/static/icons/06002E9B.png b/static/icons/06002E9B.png
new file mode 100755
index 00000000..b6c66b37
Binary files /dev/null and b/static/icons/06002E9B.png differ
diff --git a/static/icons/06002E9C.png b/static/icons/06002E9C.png
new file mode 100755
index 00000000..a1c18737
Binary files /dev/null and b/static/icons/06002E9C.png differ
diff --git a/static/icons/06002E9D.png b/static/icons/06002E9D.png
new file mode 100755
index 00000000..30a8220f
Binary files /dev/null and b/static/icons/06002E9D.png differ
diff --git a/static/icons/06002E9E.png b/static/icons/06002E9E.png
new file mode 100755
index 00000000..344c4f70
Binary files /dev/null and b/static/icons/06002E9E.png differ
diff --git a/static/icons/06002E9F.png b/static/icons/06002E9F.png
new file mode 100755
index 00000000..c2fd3bd3
Binary files /dev/null and b/static/icons/06002E9F.png differ
diff --git a/static/icons/06002EA0.png b/static/icons/06002EA0.png
new file mode 100755
index 00000000..a424c17c
Binary files /dev/null and b/static/icons/06002EA0.png differ
diff --git a/static/icons/06002EA1.png b/static/icons/06002EA1.png
new file mode 100755
index 00000000..560d5c2e
Binary files /dev/null and b/static/icons/06002EA1.png differ
diff --git a/static/icons/06002EA2.png b/static/icons/06002EA2.png
new file mode 100755
index 00000000..591c0e5f
Binary files /dev/null and b/static/icons/06002EA2.png differ
diff --git a/static/icons/06002EA3.png b/static/icons/06002EA3.png
new file mode 100755
index 00000000..ced064c0
Binary files /dev/null and b/static/icons/06002EA3.png differ
diff --git a/static/icons/06002EA4.png b/static/icons/06002EA4.png
new file mode 100755
index 00000000..c9e57b18
Binary files /dev/null and b/static/icons/06002EA4.png differ
diff --git a/static/icons/06002EA5.png b/static/icons/06002EA5.png
new file mode 100755
index 00000000..5b608d25
Binary files /dev/null and b/static/icons/06002EA5.png differ
diff --git a/static/icons/06002EA6.png b/static/icons/06002EA6.png
new file mode 100755
index 00000000..7273fbd0
Binary files /dev/null and b/static/icons/06002EA6.png differ
diff --git a/static/icons/06002EA7.png b/static/icons/06002EA7.png
new file mode 100755
index 00000000..7bd0239a
Binary files /dev/null and b/static/icons/06002EA7.png differ
diff --git a/static/icons/06002EA8.png b/static/icons/06002EA8.png
new file mode 100755
index 00000000..44cd3af3
Binary files /dev/null and b/static/icons/06002EA8.png differ
diff --git a/static/icons/06002EA9.png b/static/icons/06002EA9.png
new file mode 100755
index 00000000..2b5ba945
Binary files /dev/null and b/static/icons/06002EA9.png differ
diff --git a/static/icons/06002EAA.png b/static/icons/06002EAA.png
new file mode 100755
index 00000000..0eab9bac
Binary files /dev/null and b/static/icons/06002EAA.png differ
diff --git a/static/icons/06002EAB.png b/static/icons/06002EAB.png
new file mode 100755
index 00000000..902c0048
Binary files /dev/null and b/static/icons/06002EAB.png differ
diff --git a/static/icons/06002EAC.png b/static/icons/06002EAC.png
new file mode 100755
index 00000000..2de6a4ae
Binary files /dev/null and b/static/icons/06002EAC.png differ
diff --git a/static/icons/06002EAD.png b/static/icons/06002EAD.png
new file mode 100755
index 00000000..7fe5a18b
Binary files /dev/null and b/static/icons/06002EAD.png differ
diff --git a/static/icons/06002EAE.png b/static/icons/06002EAE.png
new file mode 100755
index 00000000..85a932ec
Binary files /dev/null and b/static/icons/06002EAE.png differ
diff --git a/static/icons/06002EAF.png b/static/icons/06002EAF.png
new file mode 100755
index 00000000..91c1245b
Binary files /dev/null and b/static/icons/06002EAF.png differ
diff --git a/static/icons/06002EB0.png b/static/icons/06002EB0.png
new file mode 100755
index 00000000..64d2070a
Binary files /dev/null and b/static/icons/06002EB0.png differ
diff --git a/static/icons/06002EB1.png b/static/icons/06002EB1.png
new file mode 100755
index 00000000..d67cd8b4
Binary files /dev/null and b/static/icons/06002EB1.png differ
diff --git a/static/icons/06002EB2.png b/static/icons/06002EB2.png
new file mode 100755
index 00000000..2a181b85
Binary files /dev/null and b/static/icons/06002EB2.png differ
diff --git a/static/icons/06002EB3.png b/static/icons/06002EB3.png
new file mode 100755
index 00000000..3b058a11
Binary files /dev/null and b/static/icons/06002EB3.png differ
diff --git a/static/icons/06002EB4.png b/static/icons/06002EB4.png
new file mode 100755
index 00000000..b1d6e2d5
Binary files /dev/null and b/static/icons/06002EB4.png differ
diff --git a/static/icons/06002EB5.png b/static/icons/06002EB5.png
new file mode 100755
index 00000000..b63bd94c
Binary files /dev/null and b/static/icons/06002EB5.png differ
diff --git a/static/icons/06002EB6.png b/static/icons/06002EB6.png
new file mode 100755
index 00000000..f7cc7343
Binary files /dev/null and b/static/icons/06002EB6.png differ
diff --git a/static/icons/06002EB7.png b/static/icons/06002EB7.png
new file mode 100755
index 00000000..ff7a6d95
Binary files /dev/null and b/static/icons/06002EB7.png differ
diff --git a/static/icons/06002EB8.png b/static/icons/06002EB8.png
new file mode 100755
index 00000000..741fef0d
Binary files /dev/null and b/static/icons/06002EB8.png differ
diff --git a/static/icons/06002EB9.png b/static/icons/06002EB9.png
new file mode 100755
index 00000000..a145a250
Binary files /dev/null and b/static/icons/06002EB9.png differ
diff --git a/static/icons/06002EBA.png b/static/icons/06002EBA.png
new file mode 100755
index 00000000..523e9fc9
Binary files /dev/null and b/static/icons/06002EBA.png differ
diff --git a/static/icons/06002EBB.png b/static/icons/06002EBB.png
new file mode 100755
index 00000000..9e52ab2a
Binary files /dev/null and b/static/icons/06002EBB.png differ
diff --git a/static/icons/06002EBC.png b/static/icons/06002EBC.png
new file mode 100755
index 00000000..f09508b0
Binary files /dev/null and b/static/icons/06002EBC.png differ
diff --git a/static/icons/06002EBD.png b/static/icons/06002EBD.png
new file mode 100755
index 00000000..e1f15b42
Binary files /dev/null and b/static/icons/06002EBD.png differ
diff --git a/static/icons/06002EBE.png b/static/icons/06002EBE.png
new file mode 100755
index 00000000..aea01350
Binary files /dev/null and b/static/icons/06002EBE.png differ
diff --git a/static/icons/06002EBF.png b/static/icons/06002EBF.png
new file mode 100755
index 00000000..12af0c3b
Binary files /dev/null and b/static/icons/06002EBF.png differ
diff --git a/static/icons/06002EC0.png b/static/icons/06002EC0.png
new file mode 100755
index 00000000..b3c877f4
Binary files /dev/null and b/static/icons/06002EC0.png differ
diff --git a/static/icons/06002EC1.png b/static/icons/06002EC1.png
new file mode 100755
index 00000000..c41bc4aa
Binary files /dev/null and b/static/icons/06002EC1.png differ
diff --git a/static/icons/06002EC2.png b/static/icons/06002EC2.png
new file mode 100755
index 00000000..e7b79735
Binary files /dev/null and b/static/icons/06002EC2.png differ
diff --git a/static/icons/06002EC3.png b/static/icons/06002EC3.png
new file mode 100755
index 00000000..af15b02a
Binary files /dev/null and b/static/icons/06002EC3.png differ
diff --git a/static/icons/06002EC4.png b/static/icons/06002EC4.png
new file mode 100755
index 00000000..4db45a41
Binary files /dev/null and b/static/icons/06002EC4.png differ
diff --git a/static/icons/06002EC5.png b/static/icons/06002EC5.png
new file mode 100755
index 00000000..9c8ae96c
Binary files /dev/null and b/static/icons/06002EC5.png differ
diff --git a/static/icons/06002EC6.png b/static/icons/06002EC6.png
new file mode 100755
index 00000000..c5b7de8c
Binary files /dev/null and b/static/icons/06002EC6.png differ
diff --git a/static/icons/06002EC7.png b/static/icons/06002EC7.png
new file mode 100755
index 00000000..5edc3de7
Binary files /dev/null and b/static/icons/06002EC7.png differ
diff --git a/static/icons/06002EC8.png b/static/icons/06002EC8.png
new file mode 100755
index 00000000..7a267861
Binary files /dev/null and b/static/icons/06002EC8.png differ
diff --git a/static/icons/06002EC9.png b/static/icons/06002EC9.png
new file mode 100755
index 00000000..981ef7a3
Binary files /dev/null and b/static/icons/06002EC9.png differ
diff --git a/static/icons/06002ECA.png b/static/icons/06002ECA.png
new file mode 100755
index 00000000..fb8236b8
Binary files /dev/null and b/static/icons/06002ECA.png differ
diff --git a/static/icons/06002ECB.png b/static/icons/06002ECB.png
new file mode 100755
index 00000000..ffb165c0
Binary files /dev/null and b/static/icons/06002ECB.png differ
diff --git a/static/icons/06002ECC.png b/static/icons/06002ECC.png
new file mode 100755
index 00000000..a02af7aa
Binary files /dev/null and b/static/icons/06002ECC.png differ
diff --git a/static/icons/06002ECD.png b/static/icons/06002ECD.png
new file mode 100755
index 00000000..3dbc1e85
Binary files /dev/null and b/static/icons/06002ECD.png differ
diff --git a/static/icons/06002ECE.png b/static/icons/06002ECE.png
new file mode 100755
index 00000000..27061ef9
Binary files /dev/null and b/static/icons/06002ECE.png differ
diff --git a/static/icons/06002ECF.png b/static/icons/06002ECF.png
new file mode 100755
index 00000000..a447f2a8
Binary files /dev/null and b/static/icons/06002ECF.png differ
diff --git a/static/icons/06002ED0.png b/static/icons/06002ED0.png
new file mode 100755
index 00000000..d18a388f
Binary files /dev/null and b/static/icons/06002ED0.png differ
diff --git a/static/icons/06002ED1.png b/static/icons/06002ED1.png
new file mode 100755
index 00000000..8af1fb4a
Binary files /dev/null and b/static/icons/06002ED1.png differ
diff --git a/static/icons/06002ED2.png b/static/icons/06002ED2.png
new file mode 100755
index 00000000..3471f0cb
Binary files /dev/null and b/static/icons/06002ED2.png differ
diff --git a/static/icons/06002ED3.png b/static/icons/06002ED3.png
new file mode 100755
index 00000000..cf5c8b16
Binary files /dev/null and b/static/icons/06002ED3.png differ
diff --git a/static/icons/06002ED4.png b/static/icons/06002ED4.png
new file mode 100755
index 00000000..36cccfaf
Binary files /dev/null and b/static/icons/06002ED4.png differ
diff --git a/static/icons/06002ED5.png b/static/icons/06002ED5.png
new file mode 100755
index 00000000..1b319434
Binary files /dev/null and b/static/icons/06002ED5.png differ
diff --git a/static/icons/06002ED6.png b/static/icons/06002ED6.png
new file mode 100755
index 00000000..ff8d427f
Binary files /dev/null and b/static/icons/06002ED6.png differ
diff --git a/static/icons/06002ED7.png b/static/icons/06002ED7.png
new file mode 100755
index 00000000..41912abc
Binary files /dev/null and b/static/icons/06002ED7.png differ
diff --git a/static/icons/06002ED8.png b/static/icons/06002ED8.png
new file mode 100755
index 00000000..347f1b3f
Binary files /dev/null and b/static/icons/06002ED8.png differ
diff --git a/static/icons/06002ED9.png b/static/icons/06002ED9.png
new file mode 100755
index 00000000..57ecfe89
Binary files /dev/null and b/static/icons/06002ED9.png differ
diff --git a/static/icons/06002EDA.png b/static/icons/06002EDA.png
new file mode 100755
index 00000000..f377c17f
Binary files /dev/null and b/static/icons/06002EDA.png differ
diff --git a/static/icons/06002EDB.png b/static/icons/06002EDB.png
new file mode 100755
index 00000000..b903b89d
Binary files /dev/null and b/static/icons/06002EDB.png differ
diff --git a/static/icons/06002EDC.png b/static/icons/06002EDC.png
new file mode 100755
index 00000000..4ba6a780
Binary files /dev/null and b/static/icons/06002EDC.png differ
diff --git a/static/icons/06002EDD.png b/static/icons/06002EDD.png
new file mode 100755
index 00000000..12ca3ad1
Binary files /dev/null and b/static/icons/06002EDD.png differ
diff --git a/static/icons/06002EDE.png b/static/icons/06002EDE.png
new file mode 100755
index 00000000..9d3353eb
Binary files /dev/null and b/static/icons/06002EDE.png differ
diff --git a/static/icons/06002EDF.png b/static/icons/06002EDF.png
new file mode 100755
index 00000000..c4d3b890
Binary files /dev/null and b/static/icons/06002EDF.png differ
diff --git a/static/icons/06002EE0.png b/static/icons/06002EE0.png
new file mode 100755
index 00000000..c9954cfe
Binary files /dev/null and b/static/icons/06002EE0.png differ
diff --git a/static/icons/06002EE1.png b/static/icons/06002EE1.png
new file mode 100755
index 00000000..48ea803a
Binary files /dev/null and b/static/icons/06002EE1.png differ
diff --git a/static/icons/06002EE2.png b/static/icons/06002EE2.png
new file mode 100755
index 00000000..f6d0d285
Binary files /dev/null and b/static/icons/06002EE2.png differ
diff --git a/static/icons/06002EE3.png b/static/icons/06002EE3.png
new file mode 100755
index 00000000..1a5aa384
Binary files /dev/null and b/static/icons/06002EE3.png differ
diff --git a/static/icons/06002EE4.png b/static/icons/06002EE4.png
new file mode 100755
index 00000000..ffda7aaa
Binary files /dev/null and b/static/icons/06002EE4.png differ
diff --git a/static/icons/06002EE5.png b/static/icons/06002EE5.png
new file mode 100755
index 00000000..f808a141
Binary files /dev/null and b/static/icons/06002EE5.png differ
diff --git a/static/icons/06002EE6.png b/static/icons/06002EE6.png
new file mode 100755
index 00000000..acf63c4e
Binary files /dev/null and b/static/icons/06002EE6.png differ
diff --git a/static/icons/06002EE7.png b/static/icons/06002EE7.png
new file mode 100755
index 00000000..ab82c48e
Binary files /dev/null and b/static/icons/06002EE7.png differ
diff --git a/static/icons/06002EE8.png b/static/icons/06002EE8.png
new file mode 100755
index 00000000..e5890738
Binary files /dev/null and b/static/icons/06002EE8.png differ
diff --git a/static/icons/06002EE9.png b/static/icons/06002EE9.png
new file mode 100755
index 00000000..1c98cf9f
Binary files /dev/null and b/static/icons/06002EE9.png differ
diff --git a/static/icons/06002EEA.png b/static/icons/06002EEA.png
new file mode 100755
index 00000000..03842f1c
Binary files /dev/null and b/static/icons/06002EEA.png differ
diff --git a/static/icons/06002EEB.png b/static/icons/06002EEB.png
new file mode 100755
index 00000000..23073c4e
Binary files /dev/null and b/static/icons/06002EEB.png differ
diff --git a/static/icons/06002EEC.png b/static/icons/06002EEC.png
new file mode 100755
index 00000000..2b3f9dab
Binary files /dev/null and b/static/icons/06002EEC.png differ
diff --git a/static/icons/06002EED.png b/static/icons/06002EED.png
new file mode 100755
index 00000000..866a2eb0
Binary files /dev/null and b/static/icons/06002EED.png differ
diff --git a/static/icons/06002EEE.png b/static/icons/06002EEE.png
new file mode 100755
index 00000000..bceb1a96
Binary files /dev/null and b/static/icons/06002EEE.png differ
diff --git a/static/icons/06002EEF.png b/static/icons/06002EEF.png
new file mode 100755
index 00000000..ad4a9ddf
Binary files /dev/null and b/static/icons/06002EEF.png differ
diff --git a/static/icons/06002EF0.png b/static/icons/06002EF0.png
new file mode 100755
index 00000000..67fbed0e
Binary files /dev/null and b/static/icons/06002EF0.png differ
diff --git a/static/icons/06002EF1.png b/static/icons/06002EF1.png
new file mode 100755
index 00000000..daedf5d9
Binary files /dev/null and b/static/icons/06002EF1.png differ
diff --git a/static/icons/06002EF2.png b/static/icons/06002EF2.png
new file mode 100755
index 00000000..aae05903
Binary files /dev/null and b/static/icons/06002EF2.png differ
diff --git a/static/icons/06002EF3.png b/static/icons/06002EF3.png
new file mode 100755
index 00000000..a72a451a
Binary files /dev/null and b/static/icons/06002EF3.png differ
diff --git a/static/icons/06002EF4.png b/static/icons/06002EF4.png
new file mode 100755
index 00000000..e06b3c6d
Binary files /dev/null and b/static/icons/06002EF4.png differ
diff --git a/static/icons/06002EF5.png b/static/icons/06002EF5.png
new file mode 100755
index 00000000..c8f063e1
Binary files /dev/null and b/static/icons/06002EF5.png differ
diff --git a/static/icons/06002EF6.png b/static/icons/06002EF6.png
new file mode 100755
index 00000000..170ae15b
Binary files /dev/null and b/static/icons/06002EF6.png differ
diff --git a/static/icons/06002EF7.png b/static/icons/06002EF7.png
new file mode 100755
index 00000000..9be7de65
Binary files /dev/null and b/static/icons/06002EF7.png differ
diff --git a/static/icons/06002EF8.png b/static/icons/06002EF8.png
new file mode 100755
index 00000000..88ebda06
Binary files /dev/null and b/static/icons/06002EF8.png differ
diff --git a/static/icons/06002EF9.png b/static/icons/06002EF9.png
new file mode 100755
index 00000000..25be3626
Binary files /dev/null and b/static/icons/06002EF9.png differ
diff --git a/static/icons/06002EFA.png b/static/icons/06002EFA.png
new file mode 100755
index 00000000..04eccea4
Binary files /dev/null and b/static/icons/06002EFA.png differ
diff --git a/static/icons/06002EFB.png b/static/icons/06002EFB.png
new file mode 100755
index 00000000..72dd939b
Binary files /dev/null and b/static/icons/06002EFB.png differ
diff --git a/static/icons/06002EFC.png b/static/icons/06002EFC.png
new file mode 100755
index 00000000..81742e96
Binary files /dev/null and b/static/icons/06002EFC.png differ
diff --git a/static/icons/06002EFD.png b/static/icons/06002EFD.png
new file mode 100755
index 00000000..24e01abf
Binary files /dev/null and b/static/icons/06002EFD.png differ
diff --git a/static/icons/06002EFE.png b/static/icons/06002EFE.png
new file mode 100755
index 00000000..1d82aee3
Binary files /dev/null and b/static/icons/06002EFE.png differ
diff --git a/static/icons/06002EFF.png b/static/icons/06002EFF.png
new file mode 100755
index 00000000..d54f5e48
Binary files /dev/null and b/static/icons/06002EFF.png differ
diff --git a/static/icons/06002F00.png b/static/icons/06002F00.png
new file mode 100755
index 00000000..db0df949
Binary files /dev/null and b/static/icons/06002F00.png differ
diff --git a/static/icons/06002F01.png b/static/icons/06002F01.png
new file mode 100755
index 00000000..bb887707
Binary files /dev/null and b/static/icons/06002F01.png differ
diff --git a/static/icons/06002F02.png b/static/icons/06002F02.png
new file mode 100755
index 00000000..0e78eb7b
Binary files /dev/null and b/static/icons/06002F02.png differ
diff --git a/static/icons/06002F03.png b/static/icons/06002F03.png
new file mode 100755
index 00000000..832b78ca
Binary files /dev/null and b/static/icons/06002F03.png differ
diff --git a/static/icons/06002F04.png b/static/icons/06002F04.png
new file mode 100755
index 00000000..294928a5
Binary files /dev/null and b/static/icons/06002F04.png differ
diff --git a/static/icons/06002F05.png b/static/icons/06002F05.png
new file mode 100755
index 00000000..43d2b2d9
Binary files /dev/null and b/static/icons/06002F05.png differ
diff --git a/static/icons/06002F06.png b/static/icons/06002F06.png
new file mode 100755
index 00000000..bcd7f795
Binary files /dev/null and b/static/icons/06002F06.png differ
diff --git a/static/icons/06002F07.png b/static/icons/06002F07.png
new file mode 100755
index 00000000..0cda0db6
Binary files /dev/null and b/static/icons/06002F07.png differ
diff --git a/static/icons/06002F08.png b/static/icons/06002F08.png
new file mode 100755
index 00000000..7740ea9f
Binary files /dev/null and b/static/icons/06002F08.png differ
diff --git a/static/icons/06002F09.png b/static/icons/06002F09.png
new file mode 100755
index 00000000..14c8fcf4
Binary files /dev/null and b/static/icons/06002F09.png differ
diff --git a/static/icons/06002F0A.png b/static/icons/06002F0A.png
new file mode 100755
index 00000000..bbab39cd
Binary files /dev/null and b/static/icons/06002F0A.png differ
diff --git a/static/icons/06002F0B.png b/static/icons/06002F0B.png
new file mode 100755
index 00000000..389bbca0
Binary files /dev/null and b/static/icons/06002F0B.png differ
diff --git a/static/icons/06002F0C.png b/static/icons/06002F0C.png
new file mode 100755
index 00000000..3b55d5dc
Binary files /dev/null and b/static/icons/06002F0C.png differ
diff --git a/static/icons/06002F0D.png b/static/icons/06002F0D.png
new file mode 100755
index 00000000..308c5c80
Binary files /dev/null and b/static/icons/06002F0D.png differ
diff --git a/static/icons/06002F0E.png b/static/icons/06002F0E.png
new file mode 100755
index 00000000..a83ba7ee
Binary files /dev/null and b/static/icons/06002F0E.png differ
diff --git a/static/icons/06002F0F.png b/static/icons/06002F0F.png
new file mode 100755
index 00000000..253f46cb
Binary files /dev/null and b/static/icons/06002F0F.png differ
diff --git a/static/icons/06002F10.png b/static/icons/06002F10.png
new file mode 100755
index 00000000..49ff0748
Binary files /dev/null and b/static/icons/06002F10.png differ
diff --git a/static/icons/06002F11.png b/static/icons/06002F11.png
new file mode 100755
index 00000000..f2bd4227
Binary files /dev/null and b/static/icons/06002F11.png differ
diff --git a/static/icons/06002F12.png b/static/icons/06002F12.png
new file mode 100755
index 00000000..ca2c92e3
Binary files /dev/null and b/static/icons/06002F12.png differ
diff --git a/static/icons/06002F13.png b/static/icons/06002F13.png
new file mode 100755
index 00000000..9f932a8b
Binary files /dev/null and b/static/icons/06002F13.png differ
diff --git a/static/icons/06002F14.png b/static/icons/06002F14.png
new file mode 100755
index 00000000..261a3a3f
Binary files /dev/null and b/static/icons/06002F14.png differ
diff --git a/static/icons/06002F15.png b/static/icons/06002F15.png
new file mode 100755
index 00000000..152cda8e
Binary files /dev/null and b/static/icons/06002F15.png differ
diff --git a/static/icons/06002F16.png b/static/icons/06002F16.png
new file mode 100755
index 00000000..a878e571
Binary files /dev/null and b/static/icons/06002F16.png differ
diff --git a/static/icons/06002F17.png b/static/icons/06002F17.png
new file mode 100755
index 00000000..c343092c
Binary files /dev/null and b/static/icons/06002F17.png differ
diff --git a/static/icons/06002F18.png b/static/icons/06002F18.png
new file mode 100755
index 00000000..bb2cc44b
Binary files /dev/null and b/static/icons/06002F18.png differ
diff --git a/static/icons/06002F19.png b/static/icons/06002F19.png
new file mode 100755
index 00000000..92333640
Binary files /dev/null and b/static/icons/06002F19.png differ
diff --git a/static/icons/06002F1A.png b/static/icons/06002F1A.png
new file mode 100755
index 00000000..3e36840e
Binary files /dev/null and b/static/icons/06002F1A.png differ
diff --git a/static/icons/06002F1B.png b/static/icons/06002F1B.png
new file mode 100755
index 00000000..02edb531
Binary files /dev/null and b/static/icons/06002F1B.png differ
diff --git a/static/icons/06002F1C.png b/static/icons/06002F1C.png
new file mode 100755
index 00000000..93582a6f
Binary files /dev/null and b/static/icons/06002F1C.png differ
diff --git a/static/icons/06002F1D.png b/static/icons/06002F1D.png
new file mode 100755
index 00000000..58a134ae
Binary files /dev/null and b/static/icons/06002F1D.png differ
diff --git a/static/icons/06002F1E.png b/static/icons/06002F1E.png
new file mode 100755
index 00000000..5e0c9415
Binary files /dev/null and b/static/icons/06002F1E.png differ
diff --git a/static/icons/06002F1F.png b/static/icons/06002F1F.png
new file mode 100755
index 00000000..6ed8279f
Binary files /dev/null and b/static/icons/06002F1F.png differ
diff --git a/static/icons/06002F20.png b/static/icons/06002F20.png
new file mode 100755
index 00000000..4e09c411
Binary files /dev/null and b/static/icons/06002F20.png differ
diff --git a/static/icons/06002F21.png b/static/icons/06002F21.png
new file mode 100755
index 00000000..da2e6804
Binary files /dev/null and b/static/icons/06002F21.png differ
diff --git a/static/icons/06002F22.png b/static/icons/06002F22.png
new file mode 100755
index 00000000..9c8cef66
Binary files /dev/null and b/static/icons/06002F22.png differ
diff --git a/static/icons/06002F23.png b/static/icons/06002F23.png
new file mode 100755
index 00000000..656270b9
Binary files /dev/null and b/static/icons/06002F23.png differ
diff --git a/static/icons/06002F24.png b/static/icons/06002F24.png
new file mode 100755
index 00000000..7208a5e1
Binary files /dev/null and b/static/icons/06002F24.png differ
diff --git a/static/icons/06002F25.png b/static/icons/06002F25.png
new file mode 100755
index 00000000..4fa234f0
Binary files /dev/null and b/static/icons/06002F25.png differ
diff --git a/static/icons/06002F26.png b/static/icons/06002F26.png
new file mode 100755
index 00000000..d4150477
Binary files /dev/null and b/static/icons/06002F26.png differ
diff --git a/static/icons/06002F27.png b/static/icons/06002F27.png
new file mode 100755
index 00000000..4f84f67d
Binary files /dev/null and b/static/icons/06002F27.png differ
diff --git a/static/icons/06002F28.png b/static/icons/06002F28.png
new file mode 100755
index 00000000..357a8b77
Binary files /dev/null and b/static/icons/06002F28.png differ
diff --git a/static/icons/06002F29.png b/static/icons/06002F29.png
new file mode 100755
index 00000000..f621ad90
Binary files /dev/null and b/static/icons/06002F29.png differ
diff --git a/static/icons/06002F2A.png b/static/icons/06002F2A.png
new file mode 100755
index 00000000..19c2afc7
Binary files /dev/null and b/static/icons/06002F2A.png differ
diff --git a/static/icons/06002F2B.png b/static/icons/06002F2B.png
new file mode 100755
index 00000000..a26d11e8
Binary files /dev/null and b/static/icons/06002F2B.png differ
diff --git a/static/icons/06002F2C.png b/static/icons/06002F2C.png
new file mode 100755
index 00000000..df7b09f5
Binary files /dev/null and b/static/icons/06002F2C.png differ
diff --git a/static/icons/06002F2D.png b/static/icons/06002F2D.png
new file mode 100755
index 00000000..188bac41
Binary files /dev/null and b/static/icons/06002F2D.png differ
diff --git a/static/icons/06002F2E.png b/static/icons/06002F2E.png
new file mode 100755
index 00000000..998b6976
Binary files /dev/null and b/static/icons/06002F2E.png differ
diff --git a/static/icons/06002F2F.png b/static/icons/06002F2F.png
new file mode 100755
index 00000000..f9b33e8b
Binary files /dev/null and b/static/icons/06002F2F.png differ
diff --git a/static/icons/06002F30.png b/static/icons/06002F30.png
new file mode 100755
index 00000000..2804e4e2
Binary files /dev/null and b/static/icons/06002F30.png differ
diff --git a/static/icons/06002F31.png b/static/icons/06002F31.png
new file mode 100755
index 00000000..dc3d784f
Binary files /dev/null and b/static/icons/06002F31.png differ
diff --git a/static/icons/06002F32.png b/static/icons/06002F32.png
new file mode 100755
index 00000000..b2d3b097
Binary files /dev/null and b/static/icons/06002F32.png differ
diff --git a/static/icons/06002F33.png b/static/icons/06002F33.png
new file mode 100755
index 00000000..2c49d901
Binary files /dev/null and b/static/icons/06002F33.png differ
diff --git a/static/icons/06002F34.png b/static/icons/06002F34.png
new file mode 100755
index 00000000..3d9e582f
Binary files /dev/null and b/static/icons/06002F34.png differ
diff --git a/static/icons/06002F35.png b/static/icons/06002F35.png
new file mode 100755
index 00000000..124069d0
Binary files /dev/null and b/static/icons/06002F35.png differ
diff --git a/static/icons/06002F36.png b/static/icons/06002F36.png
new file mode 100755
index 00000000..0d880969
Binary files /dev/null and b/static/icons/06002F36.png differ
diff --git a/static/icons/06002F37.png b/static/icons/06002F37.png
new file mode 100755
index 00000000..51bae347
Binary files /dev/null and b/static/icons/06002F37.png differ
diff --git a/static/icons/06002F38.png b/static/icons/06002F38.png
new file mode 100755
index 00000000..3f21e72a
Binary files /dev/null and b/static/icons/06002F38.png differ
diff --git a/static/icons/06002F39.png b/static/icons/06002F39.png
new file mode 100755
index 00000000..d21eb3bc
Binary files /dev/null and b/static/icons/06002F39.png differ
diff --git a/static/icons/06002F3A.png b/static/icons/06002F3A.png
new file mode 100755
index 00000000..b0ae6b2e
Binary files /dev/null and b/static/icons/06002F3A.png differ
diff --git a/static/icons/06002F3B.png b/static/icons/06002F3B.png
new file mode 100755
index 00000000..85a0e1f7
Binary files /dev/null and b/static/icons/06002F3B.png differ
diff --git a/static/icons/06002F3C.png b/static/icons/06002F3C.png
new file mode 100755
index 00000000..d906089b
Binary files /dev/null and b/static/icons/06002F3C.png differ
diff --git a/static/icons/06002F3D.png b/static/icons/06002F3D.png
new file mode 100755
index 00000000..ea7fff59
Binary files /dev/null and b/static/icons/06002F3D.png differ
diff --git a/static/icons/06002F3E.png b/static/icons/06002F3E.png
new file mode 100755
index 00000000..ef0282f4
Binary files /dev/null and b/static/icons/06002F3E.png differ
diff --git a/static/icons/06002F3F.png b/static/icons/06002F3F.png
new file mode 100755
index 00000000..55b86eab
Binary files /dev/null and b/static/icons/06002F3F.png differ
diff --git a/static/icons/06002F40.png b/static/icons/06002F40.png
new file mode 100755
index 00000000..40b17b44
Binary files /dev/null and b/static/icons/06002F40.png differ
diff --git a/static/icons/06002F41.png b/static/icons/06002F41.png
new file mode 100755
index 00000000..c38d0735
Binary files /dev/null and b/static/icons/06002F41.png differ
diff --git a/static/icons/06002F42.png b/static/icons/06002F42.png
new file mode 100755
index 00000000..0886ca5a
Binary files /dev/null and b/static/icons/06002F42.png differ
diff --git a/static/icons/06002F43.png b/static/icons/06002F43.png
new file mode 100755
index 00000000..1cdcb224
Binary files /dev/null and b/static/icons/06002F43.png differ
diff --git a/static/icons/06002F44.png b/static/icons/06002F44.png
new file mode 100755
index 00000000..f8380386
Binary files /dev/null and b/static/icons/06002F44.png differ
diff --git a/static/icons/06002F45.png b/static/icons/06002F45.png
new file mode 100755
index 00000000..f0965f3c
Binary files /dev/null and b/static/icons/06002F45.png differ
diff --git a/static/icons/06002F46.png b/static/icons/06002F46.png
new file mode 100755
index 00000000..0555fff8
Binary files /dev/null and b/static/icons/06002F46.png differ
diff --git a/static/icons/06002F47.png b/static/icons/06002F47.png
new file mode 100755
index 00000000..8d0bf576
Binary files /dev/null and b/static/icons/06002F47.png differ
diff --git a/static/icons/06002F48.png b/static/icons/06002F48.png
new file mode 100755
index 00000000..3d8a51a7
Binary files /dev/null and b/static/icons/06002F48.png differ
diff --git a/static/icons/06002F49.png b/static/icons/06002F49.png
new file mode 100755
index 00000000..c46b19ac
Binary files /dev/null and b/static/icons/06002F49.png differ
diff --git a/static/icons/06002F4A.png b/static/icons/06002F4A.png
new file mode 100755
index 00000000..93e688fc
Binary files /dev/null and b/static/icons/06002F4A.png differ
diff --git a/static/icons/06002F4B.png b/static/icons/06002F4B.png
new file mode 100755
index 00000000..83a5ce7f
Binary files /dev/null and b/static/icons/06002F4B.png differ
diff --git a/static/icons/06002F4C.png b/static/icons/06002F4C.png
new file mode 100755
index 00000000..e0af7f1c
Binary files /dev/null and b/static/icons/06002F4C.png differ
diff --git a/static/icons/06002F4D.png b/static/icons/06002F4D.png
new file mode 100755
index 00000000..c2d86418
Binary files /dev/null and b/static/icons/06002F4D.png differ
diff --git a/static/icons/06002F4E.png b/static/icons/06002F4E.png
new file mode 100755
index 00000000..2a88f567
Binary files /dev/null and b/static/icons/06002F4E.png differ
diff --git a/static/icons/06002F4F.png b/static/icons/06002F4F.png
new file mode 100755
index 00000000..30840bc5
Binary files /dev/null and b/static/icons/06002F4F.png differ
diff --git a/static/icons/06002F50.png b/static/icons/06002F50.png
new file mode 100755
index 00000000..c03b5d0f
Binary files /dev/null and b/static/icons/06002F50.png differ
diff --git a/static/icons/06002F51.png b/static/icons/06002F51.png
new file mode 100755
index 00000000..b7b5d1c6
Binary files /dev/null and b/static/icons/06002F51.png differ
diff --git a/static/icons/06002F52.png b/static/icons/06002F52.png
new file mode 100755
index 00000000..5d1e9543
Binary files /dev/null and b/static/icons/06002F52.png differ
diff --git a/static/icons/06002F53.png b/static/icons/06002F53.png
new file mode 100755
index 00000000..4b8b0478
Binary files /dev/null and b/static/icons/06002F53.png differ
diff --git a/static/icons/06002F54.png b/static/icons/06002F54.png
new file mode 100755
index 00000000..60e18dbd
Binary files /dev/null and b/static/icons/06002F54.png differ
diff --git a/static/icons/06002F55.png b/static/icons/06002F55.png
new file mode 100755
index 00000000..81b00001
Binary files /dev/null and b/static/icons/06002F55.png differ
diff --git a/static/icons/06002F56.png b/static/icons/06002F56.png
new file mode 100755
index 00000000..befb15a3
Binary files /dev/null and b/static/icons/06002F56.png differ
diff --git a/static/icons/06002F57.png b/static/icons/06002F57.png
new file mode 100755
index 00000000..6f10aa09
Binary files /dev/null and b/static/icons/06002F57.png differ
diff --git a/static/icons/06002F58.png b/static/icons/06002F58.png
new file mode 100755
index 00000000..bb6a3693
Binary files /dev/null and b/static/icons/06002F58.png differ
diff --git a/static/icons/06002F59.png b/static/icons/06002F59.png
new file mode 100755
index 00000000..a487ff9c
Binary files /dev/null and b/static/icons/06002F59.png differ
diff --git a/static/icons/06002F5A.png b/static/icons/06002F5A.png
new file mode 100755
index 00000000..17009244
Binary files /dev/null and b/static/icons/06002F5A.png differ
diff --git a/static/icons/06002F5B.png b/static/icons/06002F5B.png
new file mode 100755
index 00000000..764b4ce8
Binary files /dev/null and b/static/icons/06002F5B.png differ
diff --git a/static/icons/06002F5C.png b/static/icons/06002F5C.png
new file mode 100755
index 00000000..5d918cf6
Binary files /dev/null and b/static/icons/06002F5C.png differ
diff --git a/static/icons/06002F5D.png b/static/icons/06002F5D.png
new file mode 100755
index 00000000..0572eff5
Binary files /dev/null and b/static/icons/06002F5D.png differ
diff --git a/static/icons/06002F5E.png b/static/icons/06002F5E.png
new file mode 100755
index 00000000..e900dd85
Binary files /dev/null and b/static/icons/06002F5E.png differ
diff --git a/static/icons/06002F5F.png b/static/icons/06002F5F.png
new file mode 100755
index 00000000..264ca912
Binary files /dev/null and b/static/icons/06002F5F.png differ
diff --git a/static/icons/06002F60.png b/static/icons/06002F60.png
new file mode 100755
index 00000000..70333037
Binary files /dev/null and b/static/icons/06002F60.png differ
diff --git a/static/icons/06002F61.png b/static/icons/06002F61.png
new file mode 100755
index 00000000..a473172e
Binary files /dev/null and b/static/icons/06002F61.png differ
diff --git a/static/icons/06002F62.png b/static/icons/06002F62.png
new file mode 100755
index 00000000..8f8d5de9
Binary files /dev/null and b/static/icons/06002F62.png differ
diff --git a/static/icons/06002F63.png b/static/icons/06002F63.png
new file mode 100755
index 00000000..7829f769
Binary files /dev/null and b/static/icons/06002F63.png differ
diff --git a/static/icons/06002F64.png b/static/icons/06002F64.png
new file mode 100755
index 00000000..7ee4de9c
Binary files /dev/null and b/static/icons/06002F64.png differ
diff --git a/static/icons/06002F65.png b/static/icons/06002F65.png
new file mode 100755
index 00000000..2cb45d1c
Binary files /dev/null and b/static/icons/06002F65.png differ
diff --git a/static/icons/06002F66.png b/static/icons/06002F66.png
new file mode 100755
index 00000000..85a265d4
Binary files /dev/null and b/static/icons/06002F66.png differ
diff --git a/static/icons/06002F67.png b/static/icons/06002F67.png
new file mode 100755
index 00000000..d902dec1
Binary files /dev/null and b/static/icons/06002F67.png differ
diff --git a/static/icons/06002F68.png b/static/icons/06002F68.png
new file mode 100755
index 00000000..bc688238
Binary files /dev/null and b/static/icons/06002F68.png differ
diff --git a/static/icons/06002F69.png b/static/icons/06002F69.png
new file mode 100755
index 00000000..b1f30648
Binary files /dev/null and b/static/icons/06002F69.png differ
diff --git a/static/icons/06002F6A.png b/static/icons/06002F6A.png
new file mode 100755
index 00000000..78e37a2d
Binary files /dev/null and b/static/icons/06002F6A.png differ
diff --git a/static/icons/06002F6B.png b/static/icons/06002F6B.png
new file mode 100755
index 00000000..ab3ba68c
Binary files /dev/null and b/static/icons/06002F6B.png differ
diff --git a/static/icons/06002F6C.png b/static/icons/06002F6C.png
new file mode 100755
index 00000000..65c1b9ea
Binary files /dev/null and b/static/icons/06002F6C.png differ
diff --git a/static/icons/06002F6D.png b/static/icons/06002F6D.png
new file mode 100755
index 00000000..ba8fe6f4
Binary files /dev/null and b/static/icons/06002F6D.png differ
diff --git a/static/icons/06002F6E.png b/static/icons/06002F6E.png
new file mode 100755
index 00000000..50e1ee7c
Binary files /dev/null and b/static/icons/06002F6E.png differ
diff --git a/static/icons/06002F6F.png b/static/icons/06002F6F.png
new file mode 100755
index 00000000..f35d48a3
Binary files /dev/null and b/static/icons/06002F6F.png differ
diff --git a/static/icons/06002F70.png b/static/icons/06002F70.png
new file mode 100755
index 00000000..70e87313
Binary files /dev/null and b/static/icons/06002F70.png differ
diff --git a/static/icons/06002F71.png b/static/icons/06002F71.png
new file mode 100755
index 00000000..5a86bcc1
Binary files /dev/null and b/static/icons/06002F71.png differ
diff --git a/static/icons/06002F72.png b/static/icons/06002F72.png
new file mode 100755
index 00000000..2e505152
Binary files /dev/null and b/static/icons/06002F72.png differ
diff --git a/static/icons/06002F73.png b/static/icons/06002F73.png
new file mode 100755
index 00000000..4df6111f
Binary files /dev/null and b/static/icons/06002F73.png differ
diff --git a/static/icons/06002F74.png b/static/icons/06002F74.png
new file mode 100755
index 00000000..a64a0b78
Binary files /dev/null and b/static/icons/06002F74.png differ
diff --git a/static/icons/06002F75.png b/static/icons/06002F75.png
new file mode 100755
index 00000000..7ecaf292
Binary files /dev/null and b/static/icons/06002F75.png differ
diff --git a/static/icons/06002F76.png b/static/icons/06002F76.png
new file mode 100755
index 00000000..9501f83d
Binary files /dev/null and b/static/icons/06002F76.png differ
diff --git a/static/icons/06002F77.png b/static/icons/06002F77.png
new file mode 100755
index 00000000..8a16dde1
Binary files /dev/null and b/static/icons/06002F77.png differ
diff --git a/static/icons/06002F78.png b/static/icons/06002F78.png
new file mode 100755
index 00000000..f8aa57ff
Binary files /dev/null and b/static/icons/06002F78.png differ
diff --git a/static/icons/06002F79.png b/static/icons/06002F79.png
new file mode 100755
index 00000000..66fcce19
Binary files /dev/null and b/static/icons/06002F79.png differ
diff --git a/static/icons/06002F7A.png b/static/icons/06002F7A.png
new file mode 100755
index 00000000..88e329f9
Binary files /dev/null and b/static/icons/06002F7A.png differ
diff --git a/static/icons/06002F7B.png b/static/icons/06002F7B.png
new file mode 100755
index 00000000..525cd01e
Binary files /dev/null and b/static/icons/06002F7B.png differ
diff --git a/static/icons/06002F7C.png b/static/icons/06002F7C.png
new file mode 100755
index 00000000..b63a25a8
Binary files /dev/null and b/static/icons/06002F7C.png differ
diff --git a/static/icons/06002F7D.png b/static/icons/06002F7D.png
new file mode 100755
index 00000000..fb3bf8e0
Binary files /dev/null and b/static/icons/06002F7D.png differ
diff --git a/static/icons/06002F7E.png b/static/icons/06002F7E.png
new file mode 100755
index 00000000..e7d4102b
Binary files /dev/null and b/static/icons/06002F7E.png differ
diff --git a/static/icons/06002F7F.png b/static/icons/06002F7F.png
new file mode 100755
index 00000000..08b2f955
Binary files /dev/null and b/static/icons/06002F7F.png differ
diff --git a/static/icons/06002F80.png b/static/icons/06002F80.png
new file mode 100755
index 00000000..506dcdf5
Binary files /dev/null and b/static/icons/06002F80.png differ
diff --git a/static/icons/06002F81.png b/static/icons/06002F81.png
new file mode 100755
index 00000000..b61786b1
Binary files /dev/null and b/static/icons/06002F81.png differ
diff --git a/static/icons/06002F82.png b/static/icons/06002F82.png
new file mode 100755
index 00000000..96e9277d
Binary files /dev/null and b/static/icons/06002F82.png differ
diff --git a/static/icons/06002F83.png b/static/icons/06002F83.png
new file mode 100755
index 00000000..e5a2f99c
Binary files /dev/null and b/static/icons/06002F83.png differ
diff --git a/static/icons/06002F84.png b/static/icons/06002F84.png
new file mode 100755
index 00000000..fbffad15
Binary files /dev/null and b/static/icons/06002F84.png differ
diff --git a/static/icons/06002F85.png b/static/icons/06002F85.png
new file mode 100755
index 00000000..0d15130e
Binary files /dev/null and b/static/icons/06002F85.png differ
diff --git a/static/icons/06002F86.png b/static/icons/06002F86.png
new file mode 100755
index 00000000..3a044cbc
Binary files /dev/null and b/static/icons/06002F86.png differ
diff --git a/static/icons/06002F87.png b/static/icons/06002F87.png
new file mode 100755
index 00000000..cba0d268
Binary files /dev/null and b/static/icons/06002F87.png differ
diff --git a/static/icons/06002F88.png b/static/icons/06002F88.png
new file mode 100755
index 00000000..7316c23a
Binary files /dev/null and b/static/icons/06002F88.png differ
diff --git a/static/icons/06002F89.png b/static/icons/06002F89.png
new file mode 100755
index 00000000..bd04d8c0
Binary files /dev/null and b/static/icons/06002F89.png differ
diff --git a/static/icons/06002F8A.png b/static/icons/06002F8A.png
new file mode 100755
index 00000000..77e094bf
Binary files /dev/null and b/static/icons/06002F8A.png differ
diff --git a/static/icons/06002F8B.png b/static/icons/06002F8B.png
new file mode 100755
index 00000000..3673454a
Binary files /dev/null and b/static/icons/06002F8B.png differ
diff --git a/static/icons/06002F8C.png b/static/icons/06002F8C.png
new file mode 100755
index 00000000..ba8980e2
Binary files /dev/null and b/static/icons/06002F8C.png differ
diff --git a/static/icons/06002F8D.png b/static/icons/06002F8D.png
new file mode 100755
index 00000000..36577e1f
Binary files /dev/null and b/static/icons/06002F8D.png differ
diff --git a/static/icons/06002F8E.png b/static/icons/06002F8E.png
new file mode 100755
index 00000000..8ed45ccc
Binary files /dev/null and b/static/icons/06002F8E.png differ
diff --git a/static/icons/06002F8F.png b/static/icons/06002F8F.png
new file mode 100755
index 00000000..9773774f
Binary files /dev/null and b/static/icons/06002F8F.png differ
diff --git a/static/icons/06002F90.png b/static/icons/06002F90.png
new file mode 100755
index 00000000..e105de07
Binary files /dev/null and b/static/icons/06002F90.png differ
diff --git a/static/icons/06002F91.png b/static/icons/06002F91.png
new file mode 100755
index 00000000..7becfe84
Binary files /dev/null and b/static/icons/06002F91.png differ
diff --git a/static/icons/06002F92.png b/static/icons/06002F92.png
new file mode 100755
index 00000000..b57cdd64
Binary files /dev/null and b/static/icons/06002F92.png differ
diff --git a/static/icons/06002F93.png b/static/icons/06002F93.png
new file mode 100755
index 00000000..d0407705
Binary files /dev/null and b/static/icons/06002F93.png differ
diff --git a/static/icons/06002F94.png b/static/icons/06002F94.png
new file mode 100755
index 00000000..c030c67c
Binary files /dev/null and b/static/icons/06002F94.png differ
diff --git a/static/icons/06002F95.png b/static/icons/06002F95.png
new file mode 100755
index 00000000..ec805d3d
Binary files /dev/null and b/static/icons/06002F95.png differ
diff --git a/static/icons/06002F96.png b/static/icons/06002F96.png
new file mode 100755
index 00000000..3483603f
Binary files /dev/null and b/static/icons/06002F96.png differ
diff --git a/static/icons/06002F97.png b/static/icons/06002F97.png
new file mode 100755
index 00000000..68f6d19c
Binary files /dev/null and b/static/icons/06002F97.png differ
diff --git a/static/icons/06002F98.png b/static/icons/06002F98.png
new file mode 100755
index 00000000..2bd5c18c
Binary files /dev/null and b/static/icons/06002F98.png differ
diff --git a/static/icons/06002F99.png b/static/icons/06002F99.png
new file mode 100755
index 00000000..4f5b2b69
Binary files /dev/null and b/static/icons/06002F99.png differ
diff --git a/static/icons/06002F9A.png b/static/icons/06002F9A.png
new file mode 100755
index 00000000..adc10b0e
Binary files /dev/null and b/static/icons/06002F9A.png differ
diff --git a/static/icons/06002F9B.png b/static/icons/06002F9B.png
new file mode 100755
index 00000000..de9f241a
Binary files /dev/null and b/static/icons/06002F9B.png differ
diff --git a/static/icons/06002F9C.png b/static/icons/06002F9C.png
new file mode 100755
index 00000000..01743cc8
Binary files /dev/null and b/static/icons/06002F9C.png differ
diff --git a/static/icons/06002F9D.png b/static/icons/06002F9D.png
new file mode 100755
index 00000000..9285f441
Binary files /dev/null and b/static/icons/06002F9D.png differ
diff --git a/static/icons/06002F9E.png b/static/icons/06002F9E.png
new file mode 100755
index 00000000..2aba01e7
Binary files /dev/null and b/static/icons/06002F9E.png differ
diff --git a/static/icons/06002F9F.png b/static/icons/06002F9F.png
new file mode 100755
index 00000000..e964ed7a
Binary files /dev/null and b/static/icons/06002F9F.png differ
diff --git a/static/icons/06002FA0.png b/static/icons/06002FA0.png
new file mode 100755
index 00000000..ddcaad7f
Binary files /dev/null and b/static/icons/06002FA0.png differ
diff --git a/static/icons/06002FA1.png b/static/icons/06002FA1.png
new file mode 100755
index 00000000..27eb4200
Binary files /dev/null and b/static/icons/06002FA1.png differ
diff --git a/static/icons/06002FA2.png b/static/icons/06002FA2.png
new file mode 100755
index 00000000..ad97d2e4
Binary files /dev/null and b/static/icons/06002FA2.png differ
diff --git a/static/icons/06002FA3.png b/static/icons/06002FA3.png
new file mode 100755
index 00000000..6d54f4c8
Binary files /dev/null and b/static/icons/06002FA3.png differ
diff --git a/static/icons/06002FA4.png b/static/icons/06002FA4.png
new file mode 100755
index 00000000..accc4eb6
Binary files /dev/null and b/static/icons/06002FA4.png differ
diff --git a/static/icons/06002FA5.png b/static/icons/06002FA5.png
new file mode 100755
index 00000000..111615e4
Binary files /dev/null and b/static/icons/06002FA5.png differ
diff --git a/static/icons/06002FA6.png b/static/icons/06002FA6.png
new file mode 100755
index 00000000..250fccee
Binary files /dev/null and b/static/icons/06002FA6.png differ
diff --git a/static/icons/06002FA7.png b/static/icons/06002FA7.png
new file mode 100755
index 00000000..e441c52d
Binary files /dev/null and b/static/icons/06002FA7.png differ
diff --git a/static/icons/06002FA8.png b/static/icons/06002FA8.png
new file mode 100755
index 00000000..582aa26f
Binary files /dev/null and b/static/icons/06002FA8.png differ
diff --git a/static/icons/06002FA9.png b/static/icons/06002FA9.png
new file mode 100755
index 00000000..63422261
Binary files /dev/null and b/static/icons/06002FA9.png differ
diff --git a/static/icons/06002FAA.png b/static/icons/06002FAA.png
new file mode 100755
index 00000000..a3ba73f5
Binary files /dev/null and b/static/icons/06002FAA.png differ
diff --git a/static/icons/06002FAB.png b/static/icons/06002FAB.png
new file mode 100755
index 00000000..092708c8
Binary files /dev/null and b/static/icons/06002FAB.png differ
diff --git a/static/icons/06002FAC.png b/static/icons/06002FAC.png
new file mode 100755
index 00000000..4a92f2cd
Binary files /dev/null and b/static/icons/06002FAC.png differ
diff --git a/static/icons/06002FAD.png b/static/icons/06002FAD.png
new file mode 100755
index 00000000..97dd0362
Binary files /dev/null and b/static/icons/06002FAD.png differ
diff --git a/static/icons/06002FAE.png b/static/icons/06002FAE.png
new file mode 100755
index 00000000..f03fb6df
Binary files /dev/null and b/static/icons/06002FAE.png differ
diff --git a/static/icons/06002FAF.png b/static/icons/06002FAF.png
new file mode 100755
index 00000000..262a0652
Binary files /dev/null and b/static/icons/06002FAF.png differ
diff --git a/static/icons/06002FB0.png b/static/icons/06002FB0.png
new file mode 100755
index 00000000..844da901
Binary files /dev/null and b/static/icons/06002FB0.png differ
diff --git a/static/icons/06002FB1.png b/static/icons/06002FB1.png
new file mode 100755
index 00000000..ec377155
Binary files /dev/null and b/static/icons/06002FB1.png differ
diff --git a/static/icons/06002FB2.png b/static/icons/06002FB2.png
new file mode 100755
index 00000000..6d513fab
Binary files /dev/null and b/static/icons/06002FB2.png differ
diff --git a/static/icons/06002FB3.png b/static/icons/06002FB3.png
new file mode 100755
index 00000000..4048f5e7
Binary files /dev/null and b/static/icons/06002FB3.png differ
diff --git a/static/icons/06002FB4.png b/static/icons/06002FB4.png
new file mode 100755
index 00000000..70073f1a
Binary files /dev/null and b/static/icons/06002FB4.png differ
diff --git a/static/icons/06002FB5.png b/static/icons/06002FB5.png
new file mode 100755
index 00000000..da1e443f
Binary files /dev/null and b/static/icons/06002FB5.png differ
diff --git a/static/icons/06002FB6.png b/static/icons/06002FB6.png
new file mode 100755
index 00000000..e6b2bb39
Binary files /dev/null and b/static/icons/06002FB6.png differ
diff --git a/static/icons/06002FB7.png b/static/icons/06002FB7.png
new file mode 100755
index 00000000..3c572fd6
Binary files /dev/null and b/static/icons/06002FB7.png differ
diff --git a/static/icons/06002FB8.png b/static/icons/06002FB8.png
new file mode 100755
index 00000000..e81688b7
Binary files /dev/null and b/static/icons/06002FB8.png differ
diff --git a/static/icons/06002FB9.png b/static/icons/06002FB9.png
new file mode 100755
index 00000000..860fb3f0
Binary files /dev/null and b/static/icons/06002FB9.png differ
diff --git a/static/icons/06002FBA.png b/static/icons/06002FBA.png
new file mode 100755
index 00000000..b4f1e74c
Binary files /dev/null and b/static/icons/06002FBA.png differ
diff --git a/static/icons/06002FBB.png b/static/icons/06002FBB.png
new file mode 100755
index 00000000..cd4002b5
Binary files /dev/null and b/static/icons/06002FBB.png differ
diff --git a/static/icons/06002FBC.png b/static/icons/06002FBC.png
new file mode 100755
index 00000000..6e1ffb1d
Binary files /dev/null and b/static/icons/06002FBC.png differ
diff --git a/static/icons/06002FBD.png b/static/icons/06002FBD.png
new file mode 100755
index 00000000..e0814690
Binary files /dev/null and b/static/icons/06002FBD.png differ
diff --git a/static/icons/06002FBE.png b/static/icons/06002FBE.png
new file mode 100755
index 00000000..f91b5ee9
Binary files /dev/null and b/static/icons/06002FBE.png differ
diff --git a/static/icons/06002FBF.png b/static/icons/06002FBF.png
new file mode 100755
index 00000000..db3f1906
Binary files /dev/null and b/static/icons/06002FBF.png differ
diff --git a/static/icons/06002FC0.png b/static/icons/06002FC0.png
new file mode 100755
index 00000000..633f6606
Binary files /dev/null and b/static/icons/06002FC0.png differ
diff --git a/static/icons/06002FC1.png b/static/icons/06002FC1.png
new file mode 100755
index 00000000..e209538a
Binary files /dev/null and b/static/icons/06002FC1.png differ
diff --git a/static/icons/06002FC2.png b/static/icons/06002FC2.png
new file mode 100755
index 00000000..37206204
Binary files /dev/null and b/static/icons/06002FC2.png differ
diff --git a/static/icons/06002FC4.png b/static/icons/06002FC4.png
new file mode 100755
index 00000000..c890b830
Binary files /dev/null and b/static/icons/06002FC4.png differ
diff --git a/static/icons/06002FC5.png b/static/icons/06002FC5.png
new file mode 100755
index 00000000..d77bcbfb
Binary files /dev/null and b/static/icons/06002FC5.png differ
diff --git a/static/icons/06002FC6.png b/static/icons/06002FC6.png
new file mode 100755
index 00000000..8f6dc827
Binary files /dev/null and b/static/icons/06002FC6.png differ
diff --git a/static/icons/06002FC7.png b/static/icons/06002FC7.png
new file mode 100755
index 00000000..8203c164
Binary files /dev/null and b/static/icons/06002FC7.png differ
diff --git a/static/icons/06002FC8.png b/static/icons/06002FC8.png
new file mode 100755
index 00000000..569b5055
Binary files /dev/null and b/static/icons/06002FC8.png differ
diff --git a/static/icons/06002FC9.png b/static/icons/06002FC9.png
new file mode 100755
index 00000000..c4f84cac
Binary files /dev/null and b/static/icons/06002FC9.png differ
diff --git a/static/icons/06002FCA.png b/static/icons/06002FCA.png
new file mode 100755
index 00000000..b9e662f3
Binary files /dev/null and b/static/icons/06002FCA.png differ
diff --git a/static/icons/06002FCB.png b/static/icons/06002FCB.png
new file mode 100755
index 00000000..524e9482
Binary files /dev/null and b/static/icons/06002FCB.png differ
diff --git a/static/icons/06002FCC.png b/static/icons/06002FCC.png
new file mode 100755
index 00000000..b7526b2f
Binary files /dev/null and b/static/icons/06002FCC.png differ
diff --git a/static/icons/06002FCD.png b/static/icons/06002FCD.png
new file mode 100755
index 00000000..b1564992
Binary files /dev/null and b/static/icons/06002FCD.png differ
diff --git a/static/icons/06002FCE.png b/static/icons/06002FCE.png
new file mode 100755
index 00000000..14ce1629
Binary files /dev/null and b/static/icons/06002FCE.png differ
diff --git a/static/icons/06002FCF.png b/static/icons/06002FCF.png
new file mode 100755
index 00000000..448187f2
Binary files /dev/null and b/static/icons/06002FCF.png differ
diff --git a/static/icons/06002FD0.png b/static/icons/06002FD0.png
new file mode 100755
index 00000000..534767e0
Binary files /dev/null and b/static/icons/06002FD0.png differ
diff --git a/static/icons/06002FD1.png b/static/icons/06002FD1.png
new file mode 100755
index 00000000..199f9a21
Binary files /dev/null and b/static/icons/06002FD1.png differ
diff --git a/static/icons/06002FD2.png b/static/icons/06002FD2.png
new file mode 100755
index 00000000..c2d99a0c
Binary files /dev/null and b/static/icons/06002FD2.png differ
diff --git a/static/icons/06002FD3.png b/static/icons/06002FD3.png
new file mode 100755
index 00000000..3575df1a
Binary files /dev/null and b/static/icons/06002FD3.png differ
diff --git a/static/icons/06002FD4.png b/static/icons/06002FD4.png
new file mode 100755
index 00000000..020ccffc
Binary files /dev/null and b/static/icons/06002FD4.png differ
diff --git a/static/icons/06002FD5.png b/static/icons/06002FD5.png
new file mode 100755
index 00000000..060e22b0
Binary files /dev/null and b/static/icons/06002FD5.png differ
diff --git a/static/icons/06002FD6.png b/static/icons/06002FD6.png
new file mode 100755
index 00000000..ceb814e7
Binary files /dev/null and b/static/icons/06002FD6.png differ
diff --git a/static/icons/06002FD7.png b/static/icons/06002FD7.png
new file mode 100755
index 00000000..96adb161
Binary files /dev/null and b/static/icons/06002FD7.png differ
diff --git a/static/icons/06002FD8.png b/static/icons/06002FD8.png
new file mode 100755
index 00000000..d6fc14fa
Binary files /dev/null and b/static/icons/06002FD8.png differ
diff --git a/static/icons/06002FD9.png b/static/icons/06002FD9.png
new file mode 100755
index 00000000..38040118
Binary files /dev/null and b/static/icons/06002FD9.png differ
diff --git a/static/icons/06002FDA.png b/static/icons/06002FDA.png
new file mode 100755
index 00000000..fb7f7a38
Binary files /dev/null and b/static/icons/06002FDA.png differ
diff --git a/static/icons/06002FDB.png b/static/icons/06002FDB.png
new file mode 100755
index 00000000..21af7f42
Binary files /dev/null and b/static/icons/06002FDB.png differ
diff --git a/static/icons/06002FDC.png b/static/icons/06002FDC.png
new file mode 100755
index 00000000..990bb49e
Binary files /dev/null and b/static/icons/06002FDC.png differ
diff --git a/static/icons/06002FDD.png b/static/icons/06002FDD.png
new file mode 100755
index 00000000..c29f68fa
Binary files /dev/null and b/static/icons/06002FDD.png differ
diff --git a/static/icons/06002FDE.png b/static/icons/06002FDE.png
new file mode 100755
index 00000000..9c2850aa
Binary files /dev/null and b/static/icons/06002FDE.png differ
diff --git a/static/icons/06002FDF.png b/static/icons/06002FDF.png
new file mode 100755
index 00000000..322ac27f
Binary files /dev/null and b/static/icons/06002FDF.png differ
diff --git a/static/icons/06002FE0.png b/static/icons/06002FE0.png
new file mode 100755
index 00000000..672d208c
Binary files /dev/null and b/static/icons/06002FE0.png differ
diff --git a/static/icons/06002FE1.png b/static/icons/06002FE1.png
new file mode 100755
index 00000000..5934aeb5
Binary files /dev/null and b/static/icons/06002FE1.png differ
diff --git a/static/icons/06002FE2.png b/static/icons/06002FE2.png
new file mode 100755
index 00000000..b94898d2
Binary files /dev/null and b/static/icons/06002FE2.png differ
diff --git a/static/icons/06002FE3.png b/static/icons/06002FE3.png
new file mode 100755
index 00000000..fe168055
Binary files /dev/null and b/static/icons/06002FE3.png differ
diff --git a/static/icons/06002FE4.png b/static/icons/06002FE4.png
new file mode 100755
index 00000000..92134168
Binary files /dev/null and b/static/icons/06002FE4.png differ
diff --git a/static/icons/06002FE5.png b/static/icons/06002FE5.png
new file mode 100755
index 00000000..4cc1272e
Binary files /dev/null and b/static/icons/06002FE5.png differ
diff --git a/static/icons/06002FE6.png b/static/icons/06002FE6.png
new file mode 100755
index 00000000..674f6388
Binary files /dev/null and b/static/icons/06002FE6.png differ
diff --git a/static/icons/06002FE7.png b/static/icons/06002FE7.png
new file mode 100755
index 00000000..ced31fc0
Binary files /dev/null and b/static/icons/06002FE7.png differ
diff --git a/static/icons/06002FE8.png b/static/icons/06002FE8.png
new file mode 100755
index 00000000..5a09b847
Binary files /dev/null and b/static/icons/06002FE8.png differ
diff --git a/static/icons/06002FE9.png b/static/icons/06002FE9.png
new file mode 100755
index 00000000..bbf2fae4
Binary files /dev/null and b/static/icons/06002FE9.png differ
diff --git a/static/icons/06002FEA.png b/static/icons/06002FEA.png
new file mode 100755
index 00000000..06c859a8
Binary files /dev/null and b/static/icons/06002FEA.png differ
diff --git a/static/icons/06002FEB.png b/static/icons/06002FEB.png
new file mode 100755
index 00000000..dcc0155f
Binary files /dev/null and b/static/icons/06002FEB.png differ
diff --git a/static/icons/06002FEC.png b/static/icons/06002FEC.png
new file mode 100755
index 00000000..0e328d8f
Binary files /dev/null and b/static/icons/06002FEC.png differ
diff --git a/static/icons/06002FED.png b/static/icons/06002FED.png
new file mode 100755
index 00000000..b445306a
Binary files /dev/null and b/static/icons/06002FED.png differ
diff --git a/static/icons/06002FEE.png b/static/icons/06002FEE.png
new file mode 100755
index 00000000..474c9124
Binary files /dev/null and b/static/icons/06002FEE.png differ
diff --git a/static/icons/06002FEF.png b/static/icons/06002FEF.png
new file mode 100755
index 00000000..aaa47a62
Binary files /dev/null and b/static/icons/06002FEF.png differ
diff --git a/static/icons/06002FF0.png b/static/icons/06002FF0.png
new file mode 100755
index 00000000..30669864
Binary files /dev/null and b/static/icons/06002FF0.png differ
diff --git a/static/icons/06002FF1.png b/static/icons/06002FF1.png
new file mode 100755
index 00000000..aa5ba0ba
Binary files /dev/null and b/static/icons/06002FF1.png differ
diff --git a/static/icons/06002FF2.png b/static/icons/06002FF2.png
new file mode 100755
index 00000000..59d1dda0
Binary files /dev/null and b/static/icons/06002FF2.png differ
diff --git a/static/icons/06002FF3.png b/static/icons/06002FF3.png
new file mode 100755
index 00000000..b18438b8
Binary files /dev/null and b/static/icons/06002FF3.png differ
diff --git a/static/icons/06002FF4.png b/static/icons/06002FF4.png
new file mode 100755
index 00000000..88ca25df
Binary files /dev/null and b/static/icons/06002FF4.png differ
diff --git a/static/icons/06002FF5.png b/static/icons/06002FF5.png
new file mode 100755
index 00000000..eca29e14
Binary files /dev/null and b/static/icons/06002FF5.png differ
diff --git a/static/icons/06003006.png b/static/icons/06003006.png
new file mode 100755
index 00000000..220e41d6
Binary files /dev/null and b/static/icons/06003006.png differ
diff --git a/static/icons/06003007.png b/static/icons/06003007.png
new file mode 100755
index 00000000..fe97d05c
Binary files /dev/null and b/static/icons/06003007.png differ
diff --git a/static/icons/06003008.png b/static/icons/06003008.png
new file mode 100755
index 00000000..6ba45b11
Binary files /dev/null and b/static/icons/06003008.png differ
diff --git a/static/icons/06003009.png b/static/icons/06003009.png
new file mode 100755
index 00000000..626ad380
Binary files /dev/null and b/static/icons/06003009.png differ
diff --git a/static/icons/0600300A.png b/static/icons/0600300A.png
new file mode 100755
index 00000000..14a93bd2
Binary files /dev/null and b/static/icons/0600300A.png differ
diff --git a/static/icons/0600300B.png b/static/icons/0600300B.png
new file mode 100755
index 00000000..a58ad77e
Binary files /dev/null and b/static/icons/0600300B.png differ
diff --git a/static/icons/0600300C.png b/static/icons/0600300C.png
new file mode 100755
index 00000000..325a9cb4
Binary files /dev/null and b/static/icons/0600300C.png differ
diff --git a/static/icons/0600300D.png b/static/icons/0600300D.png
new file mode 100755
index 00000000..27663f74
Binary files /dev/null and b/static/icons/0600300D.png differ
diff --git a/static/icons/0600300E.png b/static/icons/0600300E.png
new file mode 100755
index 00000000..59383f0e
Binary files /dev/null and b/static/icons/0600300E.png differ
diff --git a/static/icons/0600300F.png b/static/icons/0600300F.png
new file mode 100755
index 00000000..02c99c5c
Binary files /dev/null and b/static/icons/0600300F.png differ
diff --git a/static/icons/06003010.png b/static/icons/06003010.png
new file mode 100755
index 00000000..700deff1
Binary files /dev/null and b/static/icons/06003010.png differ
diff --git a/static/icons/06003011.png b/static/icons/06003011.png
new file mode 100755
index 00000000..fe97d05c
Binary files /dev/null and b/static/icons/06003011.png differ
diff --git a/static/icons/06003012.png b/static/icons/06003012.png
new file mode 100755
index 00000000..5629c5ac
Binary files /dev/null and b/static/icons/06003012.png differ
diff --git a/static/icons/06003013.png b/static/icons/06003013.png
new file mode 100755
index 00000000..c2c16e9c
Binary files /dev/null and b/static/icons/06003013.png differ
diff --git a/static/icons/06003014.png b/static/icons/06003014.png
new file mode 100755
index 00000000..1a527d92
Binary files /dev/null and b/static/icons/06003014.png differ
diff --git a/static/icons/06003015.png b/static/icons/06003015.png
new file mode 100755
index 00000000..f42f30bd
Binary files /dev/null and b/static/icons/06003015.png differ
diff --git a/static/icons/06003016.png b/static/icons/06003016.png
new file mode 100755
index 00000000..a4f0f2ad
Binary files /dev/null and b/static/icons/06003016.png differ
diff --git a/static/icons/06003017.png b/static/icons/06003017.png
new file mode 100755
index 00000000..cb43488f
Binary files /dev/null and b/static/icons/06003017.png differ
diff --git a/static/icons/06003018.png b/static/icons/06003018.png
new file mode 100755
index 00000000..e66d6aeb
Binary files /dev/null and b/static/icons/06003018.png differ
diff --git a/static/icons/06003019.png b/static/icons/06003019.png
new file mode 100755
index 00000000..79e3ef0f
Binary files /dev/null and b/static/icons/06003019.png differ
diff --git a/static/icons/0600301A.png b/static/icons/0600301A.png
new file mode 100755
index 00000000..e9d66147
Binary files /dev/null and b/static/icons/0600301A.png differ
diff --git a/static/icons/0600301B.png b/static/icons/0600301B.png
new file mode 100755
index 00000000..ec552eea
Binary files /dev/null and b/static/icons/0600301B.png differ
diff --git a/static/icons/0600301C.png b/static/icons/0600301C.png
new file mode 100755
index 00000000..bb8fbbda
Binary files /dev/null and b/static/icons/0600301C.png differ
diff --git a/static/icons/0600301D.png b/static/icons/0600301D.png
new file mode 100755
index 00000000..38a2a881
Binary files /dev/null and b/static/icons/0600301D.png differ
diff --git a/static/icons/0600301E.png b/static/icons/0600301E.png
new file mode 100755
index 00000000..9729685d
Binary files /dev/null and b/static/icons/0600301E.png differ
diff --git a/static/icons/0600301F.png b/static/icons/0600301F.png
new file mode 100755
index 00000000..4d2a84ac
Binary files /dev/null and b/static/icons/0600301F.png differ
diff --git a/static/icons/06003020.png b/static/icons/06003020.png
new file mode 100755
index 00000000..a51f9de0
Binary files /dev/null and b/static/icons/06003020.png differ
diff --git a/static/icons/06003021.png b/static/icons/06003021.png
new file mode 100755
index 00000000..0f982a17
Binary files /dev/null and b/static/icons/06003021.png differ
diff --git a/static/icons/06003022.png b/static/icons/06003022.png
new file mode 100755
index 00000000..3d867509
Binary files /dev/null and b/static/icons/06003022.png differ
diff --git a/static/icons/06003023.png b/static/icons/06003023.png
new file mode 100755
index 00000000..e8860bad
Binary files /dev/null and b/static/icons/06003023.png differ
diff --git a/static/icons/06003024.png b/static/icons/06003024.png
new file mode 100755
index 00000000..5689e206
Binary files /dev/null and b/static/icons/06003024.png differ
diff --git a/static/icons/06003025.png b/static/icons/06003025.png
new file mode 100755
index 00000000..36115ee2
Binary files /dev/null and b/static/icons/06003025.png differ
diff --git a/static/icons/06003026.png b/static/icons/06003026.png
new file mode 100755
index 00000000..c9bdc436
Binary files /dev/null and b/static/icons/06003026.png differ
diff --git a/static/icons/06003027.png b/static/icons/06003027.png
new file mode 100755
index 00000000..77f7ed47
Binary files /dev/null and b/static/icons/06003027.png differ
diff --git a/static/icons/06003028.png b/static/icons/06003028.png
new file mode 100755
index 00000000..44663e29
Binary files /dev/null and b/static/icons/06003028.png differ
diff --git a/static/icons/06003029.png b/static/icons/06003029.png
new file mode 100755
index 00000000..363b6b0c
Binary files /dev/null and b/static/icons/06003029.png differ
diff --git a/static/icons/0600302A.png b/static/icons/0600302A.png
new file mode 100755
index 00000000..e493fe0c
Binary files /dev/null and b/static/icons/0600302A.png differ
diff --git a/static/icons/0600302B.png b/static/icons/0600302B.png
new file mode 100755
index 00000000..b1680a80
Binary files /dev/null and b/static/icons/0600302B.png differ
diff --git a/static/icons/0600302C.png b/static/icons/0600302C.png
new file mode 100755
index 00000000..dc85d9a9
Binary files /dev/null and b/static/icons/0600302C.png differ
diff --git a/static/icons/0600302D.png b/static/icons/0600302D.png
new file mode 100755
index 00000000..4b534404
Binary files /dev/null and b/static/icons/0600302D.png differ
diff --git a/static/icons/0600302E.png b/static/icons/0600302E.png
new file mode 100755
index 00000000..eea0fd51
Binary files /dev/null and b/static/icons/0600302E.png differ
diff --git a/static/icons/0600302F.png b/static/icons/0600302F.png
new file mode 100755
index 00000000..35961cff
Binary files /dev/null and b/static/icons/0600302F.png differ
diff --git a/static/icons/06003030.png b/static/icons/06003030.png
new file mode 100755
index 00000000..ccd74972
Binary files /dev/null and b/static/icons/06003030.png differ
diff --git a/static/icons/06003031.png b/static/icons/06003031.png
new file mode 100755
index 00000000..4a93cf42
Binary files /dev/null and b/static/icons/06003031.png differ
diff --git a/static/icons/06003032.png b/static/icons/06003032.png
new file mode 100755
index 00000000..f488a053
Binary files /dev/null and b/static/icons/06003032.png differ
diff --git a/static/icons/06003033.png b/static/icons/06003033.png
new file mode 100755
index 00000000..61b58e7f
Binary files /dev/null and b/static/icons/06003033.png differ
diff --git a/static/icons/06003034.png b/static/icons/06003034.png
new file mode 100755
index 00000000..9f787ba1
Binary files /dev/null and b/static/icons/06003034.png differ
diff --git a/static/icons/06003035.png b/static/icons/06003035.png
new file mode 100755
index 00000000..947512c5
Binary files /dev/null and b/static/icons/06003035.png differ
diff --git a/static/icons/06003036.png b/static/icons/06003036.png
new file mode 100755
index 00000000..2e2abe32
Binary files /dev/null and b/static/icons/06003036.png differ
diff --git a/static/icons/06003037.png b/static/icons/06003037.png
new file mode 100755
index 00000000..fc3909bf
Binary files /dev/null and b/static/icons/06003037.png differ
diff --git a/static/icons/06003038.png b/static/icons/06003038.png
new file mode 100755
index 00000000..096d0259
Binary files /dev/null and b/static/icons/06003038.png differ
diff --git a/static/icons/06003039.png b/static/icons/06003039.png
new file mode 100755
index 00000000..f895d99e
Binary files /dev/null and b/static/icons/06003039.png differ
diff --git a/static/icons/0600303A.png b/static/icons/0600303A.png
new file mode 100755
index 00000000..4ffed744
Binary files /dev/null and b/static/icons/0600303A.png differ
diff --git a/static/icons/0600303B.png b/static/icons/0600303B.png
new file mode 100755
index 00000000..7208f189
Binary files /dev/null and b/static/icons/0600303B.png differ
diff --git a/static/icons/0600303C.png b/static/icons/0600303C.png
new file mode 100755
index 00000000..83d512bf
Binary files /dev/null and b/static/icons/0600303C.png differ
diff --git a/static/icons/0600303D.png b/static/icons/0600303D.png
new file mode 100755
index 00000000..57fea175
Binary files /dev/null and b/static/icons/0600303D.png differ
diff --git a/static/icons/0600303E.png b/static/icons/0600303E.png
new file mode 100755
index 00000000..3ed8dcb9
Binary files /dev/null and b/static/icons/0600303E.png differ
diff --git a/static/icons/0600303F.png b/static/icons/0600303F.png
new file mode 100755
index 00000000..95719659
Binary files /dev/null and b/static/icons/0600303F.png differ
diff --git a/static/icons/06003040.png b/static/icons/06003040.png
new file mode 100755
index 00000000..d85c7868
Binary files /dev/null and b/static/icons/06003040.png differ
diff --git a/static/icons/06003041.png b/static/icons/06003041.png
new file mode 100755
index 00000000..6e931b5e
Binary files /dev/null and b/static/icons/06003041.png differ
diff --git a/static/icons/06003042.png b/static/icons/06003042.png
new file mode 100755
index 00000000..797e3f56
Binary files /dev/null and b/static/icons/06003042.png differ
diff --git a/static/icons/06003043.png b/static/icons/06003043.png
new file mode 100755
index 00000000..f93cc035
Binary files /dev/null and b/static/icons/06003043.png differ
diff --git a/static/icons/06003044.png b/static/icons/06003044.png
new file mode 100755
index 00000000..84c435ce
Binary files /dev/null and b/static/icons/06003044.png differ
diff --git a/static/icons/06003045.png b/static/icons/06003045.png
new file mode 100755
index 00000000..e2360d91
Binary files /dev/null and b/static/icons/06003045.png differ
diff --git a/static/icons/06003046.png b/static/icons/06003046.png
new file mode 100755
index 00000000..2dcebd40
Binary files /dev/null and b/static/icons/06003046.png differ
diff --git a/static/icons/06003047.png b/static/icons/06003047.png
new file mode 100755
index 00000000..67542c45
Binary files /dev/null and b/static/icons/06003047.png differ
diff --git a/static/icons/06003048.png b/static/icons/06003048.png
new file mode 100755
index 00000000..bf8cfc8a
Binary files /dev/null and b/static/icons/06003048.png differ
diff --git a/static/icons/06003049.png b/static/icons/06003049.png
new file mode 100755
index 00000000..4f868fb3
Binary files /dev/null and b/static/icons/06003049.png differ
diff --git a/static/icons/0600304A.png b/static/icons/0600304A.png
new file mode 100755
index 00000000..7a6167ec
Binary files /dev/null and b/static/icons/0600304A.png differ
diff --git a/static/icons/0600304B.png b/static/icons/0600304B.png
new file mode 100755
index 00000000..38997310
Binary files /dev/null and b/static/icons/0600304B.png differ
diff --git a/static/icons/0600304C.png b/static/icons/0600304C.png
new file mode 100755
index 00000000..7fcbc617
Binary files /dev/null and b/static/icons/0600304C.png differ
diff --git a/static/icons/0600304D.png b/static/icons/0600304D.png
new file mode 100755
index 00000000..c234f382
Binary files /dev/null and b/static/icons/0600304D.png differ
diff --git a/static/icons/0600304E.png b/static/icons/0600304E.png
new file mode 100755
index 00000000..43eb9d1e
Binary files /dev/null and b/static/icons/0600304E.png differ
diff --git a/static/icons/0600304F.png b/static/icons/0600304F.png
new file mode 100755
index 00000000..fb72764a
Binary files /dev/null and b/static/icons/0600304F.png differ
diff --git a/static/icons/0600305A.png b/static/icons/0600305A.png
new file mode 100755
index 00000000..96bf652b
Binary files /dev/null and b/static/icons/0600305A.png differ
diff --git a/static/icons/0600305B.png b/static/icons/0600305B.png
new file mode 100755
index 00000000..91b1152e
Binary files /dev/null and b/static/icons/0600305B.png differ
diff --git a/static/icons/0600305C.png b/static/icons/0600305C.png
new file mode 100755
index 00000000..e1aea3d7
Binary files /dev/null and b/static/icons/0600305C.png differ
diff --git a/static/icons/0600305D.png b/static/icons/0600305D.png
new file mode 100755
index 00000000..9829c4b2
Binary files /dev/null and b/static/icons/0600305D.png differ
diff --git a/static/icons/0600305E.png b/static/icons/0600305E.png
new file mode 100755
index 00000000..d9c80fa7
Binary files /dev/null and b/static/icons/0600305E.png differ
diff --git a/static/icons/0600305F.png b/static/icons/0600305F.png
new file mode 100755
index 00000000..a649a79d
Binary files /dev/null and b/static/icons/0600305F.png differ
diff --git a/static/icons/06003060.png b/static/icons/06003060.png
new file mode 100755
index 00000000..76079c5e
Binary files /dev/null and b/static/icons/06003060.png differ
diff --git a/static/icons/06003061.png b/static/icons/06003061.png
new file mode 100755
index 00000000..a51e0a17
Binary files /dev/null and b/static/icons/06003061.png differ
diff --git a/static/icons/06003062.png b/static/icons/06003062.png
new file mode 100755
index 00000000..ec16472b
Binary files /dev/null and b/static/icons/06003062.png differ
diff --git a/static/icons/06003063.png b/static/icons/06003063.png
new file mode 100755
index 00000000..0eebc39e
Binary files /dev/null and b/static/icons/06003063.png differ
diff --git a/static/icons/06003064.png b/static/icons/06003064.png
new file mode 100755
index 00000000..b29b665f
Binary files /dev/null and b/static/icons/06003064.png differ
diff --git a/static/icons/06003065.png b/static/icons/06003065.png
new file mode 100755
index 00000000..1f3ba16b
Binary files /dev/null and b/static/icons/06003065.png differ
diff --git a/static/icons/06003066.png b/static/icons/06003066.png
new file mode 100755
index 00000000..149626e2
Binary files /dev/null and b/static/icons/06003066.png differ
diff --git a/static/icons/06003067.png b/static/icons/06003067.png
new file mode 100755
index 00000000..f4162343
Binary files /dev/null and b/static/icons/06003067.png differ
diff --git a/static/icons/06003068.png b/static/icons/06003068.png
new file mode 100755
index 00000000..52f7dca5
Binary files /dev/null and b/static/icons/06003068.png differ
diff --git a/static/icons/06003069.png b/static/icons/06003069.png
new file mode 100755
index 00000000..1ff2e4d9
Binary files /dev/null and b/static/icons/06003069.png differ
diff --git a/static/icons/0600306A.png b/static/icons/0600306A.png
new file mode 100755
index 00000000..ffbdb8f9
Binary files /dev/null and b/static/icons/0600306A.png differ
diff --git a/static/icons/0600306B.png b/static/icons/0600306B.png
new file mode 100755
index 00000000..b11bc906
Binary files /dev/null and b/static/icons/0600306B.png differ
diff --git a/static/icons/0600306C.png b/static/icons/0600306C.png
new file mode 100755
index 00000000..205b50ef
Binary files /dev/null and b/static/icons/0600306C.png differ
diff --git a/static/icons/0600306D.png b/static/icons/0600306D.png
new file mode 100755
index 00000000..063af337
Binary files /dev/null and b/static/icons/0600306D.png differ
diff --git a/static/icons/0600306E.png b/static/icons/0600306E.png
new file mode 100755
index 00000000..f18ceaf9
Binary files /dev/null and b/static/icons/0600306E.png differ
diff --git a/static/icons/0600306F.png b/static/icons/0600306F.png
new file mode 100755
index 00000000..ca30cfe2
Binary files /dev/null and b/static/icons/0600306F.png differ
diff --git a/static/icons/06003070.png b/static/icons/06003070.png
new file mode 100755
index 00000000..389d0b87
Binary files /dev/null and b/static/icons/06003070.png differ
diff --git a/static/icons/06003071.png b/static/icons/06003071.png
new file mode 100755
index 00000000..153073b8
Binary files /dev/null and b/static/icons/06003071.png differ
diff --git a/static/icons/06003072.png b/static/icons/06003072.png
new file mode 100755
index 00000000..1c03f762
Binary files /dev/null and b/static/icons/06003072.png differ
diff --git a/static/icons/06003073.png b/static/icons/06003073.png
new file mode 100755
index 00000000..0b3d4fb3
Binary files /dev/null and b/static/icons/06003073.png differ
diff --git a/static/icons/06003074.png b/static/icons/06003074.png
new file mode 100755
index 00000000..c8dcc616
Binary files /dev/null and b/static/icons/06003074.png differ
diff --git a/static/icons/06003075.png b/static/icons/06003075.png
new file mode 100755
index 00000000..37c3650e
Binary files /dev/null and b/static/icons/06003075.png differ
diff --git a/static/icons/06003076.png b/static/icons/06003076.png
new file mode 100755
index 00000000..c29db44e
Binary files /dev/null and b/static/icons/06003076.png differ
diff --git a/static/icons/06003077.png b/static/icons/06003077.png
new file mode 100755
index 00000000..bccfd857
Binary files /dev/null and b/static/icons/06003077.png differ
diff --git a/static/icons/06003078.png b/static/icons/06003078.png
new file mode 100755
index 00000000..ad2f2d31
Binary files /dev/null and b/static/icons/06003078.png differ
diff --git a/static/icons/06003079.png b/static/icons/06003079.png
new file mode 100755
index 00000000..b48e1c14
Binary files /dev/null and b/static/icons/06003079.png differ
diff --git a/static/icons/0600307A.png b/static/icons/0600307A.png
new file mode 100755
index 00000000..1cd6c862
Binary files /dev/null and b/static/icons/0600307A.png differ
diff --git a/static/icons/0600307B.png b/static/icons/0600307B.png
new file mode 100755
index 00000000..5c61036e
Binary files /dev/null and b/static/icons/0600307B.png differ
diff --git a/static/icons/0600307C.png b/static/icons/0600307C.png
new file mode 100755
index 00000000..94d832cf
Binary files /dev/null and b/static/icons/0600307C.png differ
diff --git a/static/icons/0600307D.png b/static/icons/0600307D.png
new file mode 100755
index 00000000..944f2220
Binary files /dev/null and b/static/icons/0600307D.png differ
diff --git a/static/icons/0600307E.png b/static/icons/0600307E.png
new file mode 100755
index 00000000..91f12772
Binary files /dev/null and b/static/icons/0600307E.png differ
diff --git a/static/icons/0600307F.png b/static/icons/0600307F.png
new file mode 100755
index 00000000..685770ca
Binary files /dev/null and b/static/icons/0600307F.png differ
diff --git a/static/icons/06003080.png b/static/icons/06003080.png
new file mode 100755
index 00000000..d410dfce
Binary files /dev/null and b/static/icons/06003080.png differ
diff --git a/static/icons/06003081.png b/static/icons/06003081.png
new file mode 100755
index 00000000..60eee050
Binary files /dev/null and b/static/icons/06003081.png differ
diff --git a/static/icons/06003082.png b/static/icons/06003082.png
new file mode 100755
index 00000000..8988d6e0
Binary files /dev/null and b/static/icons/06003082.png differ
diff --git a/static/icons/06003083.png b/static/icons/06003083.png
new file mode 100755
index 00000000..705a346e
Binary files /dev/null and b/static/icons/06003083.png differ
diff --git a/static/icons/06003084.png b/static/icons/06003084.png
new file mode 100755
index 00000000..9e0e4b2f
Binary files /dev/null and b/static/icons/06003084.png differ
diff --git a/static/icons/06003085.png b/static/icons/06003085.png
new file mode 100755
index 00000000..627f8af3
Binary files /dev/null and b/static/icons/06003085.png differ
diff --git a/static/icons/06003086.png b/static/icons/06003086.png
new file mode 100755
index 00000000..b9b55a60
Binary files /dev/null and b/static/icons/06003086.png differ
diff --git a/static/icons/06003087.png b/static/icons/06003087.png
new file mode 100755
index 00000000..3f472ebf
Binary files /dev/null and b/static/icons/06003087.png differ
diff --git a/static/icons/06003088.png b/static/icons/06003088.png
new file mode 100755
index 00000000..51cf944a
Binary files /dev/null and b/static/icons/06003088.png differ
diff --git a/static/icons/06003089.png b/static/icons/06003089.png
new file mode 100755
index 00000000..f8e6f71c
Binary files /dev/null and b/static/icons/06003089.png differ
diff --git a/static/icons/0600308A.png b/static/icons/0600308A.png
new file mode 100755
index 00000000..b7f62b47
Binary files /dev/null and b/static/icons/0600308A.png differ
diff --git a/static/icons/0600308B.png b/static/icons/0600308B.png
new file mode 100755
index 00000000..0bcb3eb5
Binary files /dev/null and b/static/icons/0600308B.png differ
diff --git a/static/icons/0600308C.png b/static/icons/0600308C.png
new file mode 100755
index 00000000..a81fb46d
Binary files /dev/null and b/static/icons/0600308C.png differ
diff --git a/static/icons/0600308D.png b/static/icons/0600308D.png
new file mode 100755
index 00000000..4733faea
Binary files /dev/null and b/static/icons/0600308D.png differ
diff --git a/static/icons/0600308E.png b/static/icons/0600308E.png
new file mode 100755
index 00000000..b4495a10
Binary files /dev/null and b/static/icons/0600308E.png differ
diff --git a/static/icons/0600308F.png b/static/icons/0600308F.png
new file mode 100755
index 00000000..8f9a4761
Binary files /dev/null and b/static/icons/0600308F.png differ
diff --git a/static/icons/06003090.png b/static/icons/06003090.png
new file mode 100755
index 00000000..6cbbd411
Binary files /dev/null and b/static/icons/06003090.png differ
diff --git a/static/icons/06003091.png b/static/icons/06003091.png
new file mode 100755
index 00000000..f5ca88ba
Binary files /dev/null and b/static/icons/06003091.png differ
diff --git a/static/icons/06003092.png b/static/icons/06003092.png
new file mode 100755
index 00000000..ca415201
Binary files /dev/null and b/static/icons/06003092.png differ
diff --git a/static/icons/06003093.png b/static/icons/06003093.png
new file mode 100755
index 00000000..17dc144a
Binary files /dev/null and b/static/icons/06003093.png differ
diff --git a/static/icons/06003094.png b/static/icons/06003094.png
new file mode 100755
index 00000000..ab19f59d
Binary files /dev/null and b/static/icons/06003094.png differ
diff --git a/static/icons/06003095.png b/static/icons/06003095.png
new file mode 100755
index 00000000..33e61c25
Binary files /dev/null and b/static/icons/06003095.png differ
diff --git a/static/icons/06003096.png b/static/icons/06003096.png
new file mode 100755
index 00000000..bb0e4cbb
Binary files /dev/null and b/static/icons/06003096.png differ
diff --git a/static/icons/06003097.png b/static/icons/06003097.png
new file mode 100755
index 00000000..2e103cb3
Binary files /dev/null and b/static/icons/06003097.png differ
diff --git a/static/icons/06003098.png b/static/icons/06003098.png
new file mode 100755
index 00000000..1b68c449
Binary files /dev/null and b/static/icons/06003098.png differ
diff --git a/static/icons/06003099.png b/static/icons/06003099.png
new file mode 100755
index 00000000..ac7d0f7d
Binary files /dev/null and b/static/icons/06003099.png differ
diff --git a/static/icons/0600309A.png b/static/icons/0600309A.png
new file mode 100755
index 00000000..da664339
Binary files /dev/null and b/static/icons/0600309A.png differ
diff --git a/static/icons/0600309B.png b/static/icons/0600309B.png
new file mode 100755
index 00000000..088bc69d
Binary files /dev/null and b/static/icons/0600309B.png differ
diff --git a/static/icons/0600309C.png b/static/icons/0600309C.png
new file mode 100755
index 00000000..075e5b62
Binary files /dev/null and b/static/icons/0600309C.png differ
diff --git a/static/icons/0600309D.png b/static/icons/0600309D.png
new file mode 100755
index 00000000..ee0789a7
Binary files /dev/null and b/static/icons/0600309D.png differ
diff --git a/static/icons/0600309E.png b/static/icons/0600309E.png
new file mode 100755
index 00000000..d1b2c150
Binary files /dev/null and b/static/icons/0600309E.png differ
diff --git a/static/icons/0600309F.png b/static/icons/0600309F.png
new file mode 100755
index 00000000..f76dd570
Binary files /dev/null and b/static/icons/0600309F.png differ
diff --git a/static/icons/060030A0.png b/static/icons/060030A0.png
new file mode 100755
index 00000000..ae88e132
Binary files /dev/null and b/static/icons/060030A0.png differ
diff --git a/static/icons/060030A1.png b/static/icons/060030A1.png
new file mode 100755
index 00000000..93c6829e
Binary files /dev/null and b/static/icons/060030A1.png differ
diff --git a/static/icons/060030A2.png b/static/icons/060030A2.png
new file mode 100755
index 00000000..0258f58b
Binary files /dev/null and b/static/icons/060030A2.png differ
diff --git a/static/icons/060030A3.png b/static/icons/060030A3.png
new file mode 100755
index 00000000..a6219489
Binary files /dev/null and b/static/icons/060030A3.png differ
diff --git a/static/icons/060030A4.png b/static/icons/060030A4.png
new file mode 100755
index 00000000..d1829c8c
Binary files /dev/null and b/static/icons/060030A4.png differ
diff --git a/static/icons/060030A5.png b/static/icons/060030A5.png
new file mode 100755
index 00000000..51cd6616
Binary files /dev/null and b/static/icons/060030A5.png differ
diff --git a/static/icons/060030A7.png b/static/icons/060030A7.png
new file mode 100755
index 00000000..6661b19e
Binary files /dev/null and b/static/icons/060030A7.png differ
diff --git a/static/icons/060030A8.png b/static/icons/060030A8.png
new file mode 100755
index 00000000..986d4732
Binary files /dev/null and b/static/icons/060030A8.png differ
diff --git a/static/icons/060030A9.png b/static/icons/060030A9.png
new file mode 100755
index 00000000..7e405711
Binary files /dev/null and b/static/icons/060030A9.png differ
diff --git a/static/icons/060030AB.png b/static/icons/060030AB.png
new file mode 100755
index 00000000..87f66aa7
Binary files /dev/null and b/static/icons/060030AB.png differ
diff --git a/static/icons/060030AD.png b/static/icons/060030AD.png
new file mode 100755
index 00000000..16737f7d
Binary files /dev/null and b/static/icons/060030AD.png differ
diff --git a/static/icons/060030AF.png b/static/icons/060030AF.png
new file mode 100755
index 00000000..96dadd01
Binary files /dev/null and b/static/icons/060030AF.png differ
diff --git a/static/icons/060030B0.png b/static/icons/060030B0.png
new file mode 100755
index 00000000..766264c8
Binary files /dev/null and b/static/icons/060030B0.png differ
diff --git a/static/icons/060030B1.png b/static/icons/060030B1.png
new file mode 100755
index 00000000..8e07d8f1
Binary files /dev/null and b/static/icons/060030B1.png differ
diff --git a/static/icons/060030B2.png b/static/icons/060030B2.png
new file mode 100755
index 00000000..06b0d1d1
Binary files /dev/null and b/static/icons/060030B2.png differ
diff --git a/static/icons/060030B3.png b/static/icons/060030B3.png
new file mode 100755
index 00000000..d8c35497
Binary files /dev/null and b/static/icons/060030B3.png differ
diff --git a/static/icons/060030B4.png b/static/icons/060030B4.png
new file mode 100755
index 00000000..0747aa1c
Binary files /dev/null and b/static/icons/060030B4.png differ
diff --git a/static/icons/060030B5.png b/static/icons/060030B5.png
new file mode 100755
index 00000000..cd69347d
Binary files /dev/null and b/static/icons/060030B5.png differ
diff --git a/static/icons/060030B6.png b/static/icons/060030B6.png
new file mode 100755
index 00000000..4aff091b
Binary files /dev/null and b/static/icons/060030B6.png differ
diff --git a/static/icons/060030B7.png b/static/icons/060030B7.png
new file mode 100755
index 00000000..40c0af80
Binary files /dev/null and b/static/icons/060030B7.png differ
diff --git a/static/icons/060030B8.png b/static/icons/060030B8.png
new file mode 100755
index 00000000..d1acc1cd
Binary files /dev/null and b/static/icons/060030B8.png differ
diff --git a/static/icons/060030B9.png b/static/icons/060030B9.png
new file mode 100755
index 00000000..afb487b3
Binary files /dev/null and b/static/icons/060030B9.png differ
diff --git a/static/icons/060030BA.png b/static/icons/060030BA.png
new file mode 100755
index 00000000..a4959964
Binary files /dev/null and b/static/icons/060030BA.png differ
diff --git a/static/icons/060030BB.png b/static/icons/060030BB.png
new file mode 100755
index 00000000..6b62d14a
Binary files /dev/null and b/static/icons/060030BB.png differ
diff --git a/static/icons/060030BC.png b/static/icons/060030BC.png
new file mode 100755
index 00000000..537fa749
Binary files /dev/null and b/static/icons/060030BC.png differ
diff --git a/static/icons/060030BD.png b/static/icons/060030BD.png
new file mode 100755
index 00000000..c7812174
Binary files /dev/null and b/static/icons/060030BD.png differ
diff --git a/static/icons/060030BE.png b/static/icons/060030BE.png
new file mode 100755
index 00000000..c8346aa0
Binary files /dev/null and b/static/icons/060030BE.png differ
diff --git a/static/icons/060030BF.png b/static/icons/060030BF.png
new file mode 100755
index 00000000..b3d62ddc
Binary files /dev/null and b/static/icons/060030BF.png differ
diff --git a/static/icons/060030C0.png b/static/icons/060030C0.png
new file mode 100755
index 00000000..707ed627
Binary files /dev/null and b/static/icons/060030C0.png differ
diff --git a/static/icons/060030C1.png b/static/icons/060030C1.png
new file mode 100755
index 00000000..049b0a32
Binary files /dev/null and b/static/icons/060030C1.png differ
diff --git a/static/icons/060030C2.png b/static/icons/060030C2.png
new file mode 100755
index 00000000..6ce4f448
Binary files /dev/null and b/static/icons/060030C2.png differ
diff --git a/static/icons/060030C3.png b/static/icons/060030C3.png
new file mode 100755
index 00000000..43b36647
Binary files /dev/null and b/static/icons/060030C3.png differ
diff --git a/static/icons/060030C4.png b/static/icons/060030C4.png
new file mode 100755
index 00000000..2881ec5d
Binary files /dev/null and b/static/icons/060030C4.png differ
diff --git a/static/icons/060030C5.png b/static/icons/060030C5.png
new file mode 100755
index 00000000..82f920fd
Binary files /dev/null and b/static/icons/060030C5.png differ
diff --git a/static/icons/060030C6.png b/static/icons/060030C6.png
new file mode 100755
index 00000000..12cbede4
Binary files /dev/null and b/static/icons/060030C6.png differ
diff --git a/static/icons/060030C7.png b/static/icons/060030C7.png
new file mode 100755
index 00000000..1a5e0232
Binary files /dev/null and b/static/icons/060030C7.png differ
diff --git a/static/icons/060030C8.png b/static/icons/060030C8.png
new file mode 100755
index 00000000..8a45a219
Binary files /dev/null and b/static/icons/060030C8.png differ
diff --git a/static/icons/060030C9.png b/static/icons/060030C9.png
new file mode 100755
index 00000000..7c1d7a91
Binary files /dev/null and b/static/icons/060030C9.png differ
diff --git a/static/icons/060030CA.png b/static/icons/060030CA.png
new file mode 100755
index 00000000..25bb12ee
Binary files /dev/null and b/static/icons/060030CA.png differ
diff --git a/static/icons/060030CB.png b/static/icons/060030CB.png
new file mode 100755
index 00000000..500edbb6
Binary files /dev/null and b/static/icons/060030CB.png differ
diff --git a/static/icons/060030CC.png b/static/icons/060030CC.png
new file mode 100755
index 00000000..994ca019
Binary files /dev/null and b/static/icons/060030CC.png differ
diff --git a/static/icons/060030CD.png b/static/icons/060030CD.png
new file mode 100755
index 00000000..dc71a65a
Binary files /dev/null and b/static/icons/060030CD.png differ
diff --git a/static/icons/060030CE.png b/static/icons/060030CE.png
new file mode 100755
index 00000000..5d69b09d
Binary files /dev/null and b/static/icons/060030CE.png differ
diff --git a/static/icons/060030CF.png b/static/icons/060030CF.png
new file mode 100755
index 00000000..b918b923
Binary files /dev/null and b/static/icons/060030CF.png differ
diff --git a/static/icons/060030D0.png b/static/icons/060030D0.png
new file mode 100755
index 00000000..836f17d3
Binary files /dev/null and b/static/icons/060030D0.png differ
diff --git a/static/icons/060030D1.png b/static/icons/060030D1.png
new file mode 100755
index 00000000..11b1d469
Binary files /dev/null and b/static/icons/060030D1.png differ
diff --git a/static/icons/060030D3.png b/static/icons/060030D3.png
new file mode 100755
index 00000000..d4048bac
Binary files /dev/null and b/static/icons/060030D3.png differ
diff --git a/static/icons/060030D4.png b/static/icons/060030D4.png
new file mode 100755
index 00000000..b9e13570
Binary files /dev/null and b/static/icons/060030D4.png differ
diff --git a/static/icons/060030D5.png b/static/icons/060030D5.png
new file mode 100755
index 00000000..998bf96f
Binary files /dev/null and b/static/icons/060030D5.png differ
diff --git a/static/icons/060030D6.png b/static/icons/060030D6.png
new file mode 100755
index 00000000..91d7c91f
Binary files /dev/null and b/static/icons/060030D6.png differ
diff --git a/static/icons/060030D7.png b/static/icons/060030D7.png
new file mode 100755
index 00000000..1198f1b6
Binary files /dev/null and b/static/icons/060030D7.png differ
diff --git a/static/icons/060030D8.png b/static/icons/060030D8.png
new file mode 100755
index 00000000..c79fb9ac
Binary files /dev/null and b/static/icons/060030D8.png differ
diff --git a/static/icons/060030D9.png b/static/icons/060030D9.png
new file mode 100755
index 00000000..8e9b2118
Binary files /dev/null and b/static/icons/060030D9.png differ
diff --git a/static/icons/060030DA.png b/static/icons/060030DA.png
new file mode 100755
index 00000000..8b2319cf
Binary files /dev/null and b/static/icons/060030DA.png differ
diff --git a/static/icons/060030DB.png b/static/icons/060030DB.png
new file mode 100755
index 00000000..db65a46f
Binary files /dev/null and b/static/icons/060030DB.png differ
diff --git a/static/icons/060030DC.png b/static/icons/060030DC.png
new file mode 100755
index 00000000..8e46628f
Binary files /dev/null and b/static/icons/060030DC.png differ
diff --git a/static/icons/060030DD.png b/static/icons/060030DD.png
new file mode 100755
index 00000000..37fabb0a
Binary files /dev/null and b/static/icons/060030DD.png differ
diff --git a/static/icons/060030DE.png b/static/icons/060030DE.png
new file mode 100755
index 00000000..832c5ae5
Binary files /dev/null and b/static/icons/060030DE.png differ
diff --git a/static/icons/060030DF.png b/static/icons/060030DF.png
new file mode 100755
index 00000000..1aa3db96
Binary files /dev/null and b/static/icons/060030DF.png differ
diff --git a/static/icons/060030E0.png b/static/icons/060030E0.png
new file mode 100755
index 00000000..8bd3f7a0
Binary files /dev/null and b/static/icons/060030E0.png differ
diff --git a/static/icons/060030E1.png b/static/icons/060030E1.png
new file mode 100755
index 00000000..bd2fd3c3
Binary files /dev/null and b/static/icons/060030E1.png differ
diff --git a/static/icons/060030E2.png b/static/icons/060030E2.png
new file mode 100755
index 00000000..f0846b51
Binary files /dev/null and b/static/icons/060030E2.png differ
diff --git a/static/icons/060030E3.png b/static/icons/060030E3.png
new file mode 100755
index 00000000..e23c073f
Binary files /dev/null and b/static/icons/060030E3.png differ
diff --git a/static/icons/060030E4.png b/static/icons/060030E4.png
new file mode 100755
index 00000000..ea9024b0
Binary files /dev/null and b/static/icons/060030E4.png differ
diff --git a/static/icons/06003120.png b/static/icons/06003120.png
new file mode 100755
index 00000000..cdc0014f
Binary files /dev/null and b/static/icons/06003120.png differ
diff --git a/static/icons/0600314E.png b/static/icons/0600314E.png
new file mode 100755
index 00000000..47b9ad9a
Binary files /dev/null and b/static/icons/0600314E.png differ
diff --git a/static/icons/0600314F.png b/static/icons/0600314F.png
new file mode 100755
index 00000000..63b7798b
Binary files /dev/null and b/static/icons/0600314F.png differ
diff --git a/static/icons/06003150.png b/static/icons/06003150.png
new file mode 100755
index 00000000..e713fe6f
Binary files /dev/null and b/static/icons/06003150.png differ
diff --git a/static/icons/06003151.png b/static/icons/06003151.png
new file mode 100755
index 00000000..d8d656a2
Binary files /dev/null and b/static/icons/06003151.png differ
diff --git a/static/icons/06003152.png b/static/icons/06003152.png
new file mode 100755
index 00000000..4b4637f8
Binary files /dev/null and b/static/icons/06003152.png differ
diff --git a/static/icons/06003153.png b/static/icons/06003153.png
new file mode 100755
index 00000000..3ef77eed
Binary files /dev/null and b/static/icons/06003153.png differ
diff --git a/static/icons/06003154.png b/static/icons/06003154.png
new file mode 100755
index 00000000..e88d064d
Binary files /dev/null and b/static/icons/06003154.png differ
diff --git a/static/icons/06003155.png b/static/icons/06003155.png
new file mode 100755
index 00000000..8817d630
Binary files /dev/null and b/static/icons/06003155.png differ
diff --git a/static/icons/06003156.png b/static/icons/06003156.png
new file mode 100755
index 00000000..bac3aa8a
Binary files /dev/null and b/static/icons/06003156.png differ
diff --git a/static/icons/06003157.png b/static/icons/06003157.png
new file mode 100755
index 00000000..c1d1f66c
Binary files /dev/null and b/static/icons/06003157.png differ
diff --git a/static/icons/06003158.png b/static/icons/06003158.png
new file mode 100755
index 00000000..fb3c62b0
Binary files /dev/null and b/static/icons/06003158.png differ
diff --git a/static/icons/06003159.png b/static/icons/06003159.png
new file mode 100755
index 00000000..dfca604b
Binary files /dev/null and b/static/icons/06003159.png differ
diff --git a/static/icons/0600315A.png b/static/icons/0600315A.png
new file mode 100755
index 00000000..1d975571
Binary files /dev/null and b/static/icons/0600315A.png differ
diff --git a/static/icons/0600315B.png b/static/icons/0600315B.png
new file mode 100755
index 00000000..3cf17547
Binary files /dev/null and b/static/icons/0600315B.png differ
diff --git a/static/icons/0600315C.png b/static/icons/0600315C.png
new file mode 100755
index 00000000..ea281a28
Binary files /dev/null and b/static/icons/0600315C.png differ
diff --git a/static/icons/0600315D.png b/static/icons/0600315D.png
new file mode 100755
index 00000000..d02d8c5e
Binary files /dev/null and b/static/icons/0600315D.png differ
diff --git a/static/icons/0600315E.png b/static/icons/0600315E.png
new file mode 100755
index 00000000..ccdf1db2
Binary files /dev/null and b/static/icons/0600315E.png differ
diff --git a/static/icons/0600315F.png b/static/icons/0600315F.png
new file mode 100755
index 00000000..7309daa6
Binary files /dev/null and b/static/icons/0600315F.png differ
diff --git a/static/icons/06003160.png b/static/icons/06003160.png
new file mode 100755
index 00000000..d8902264
Binary files /dev/null and b/static/icons/06003160.png differ
diff --git a/static/icons/06003161.png b/static/icons/06003161.png
new file mode 100755
index 00000000..45a2bb6c
Binary files /dev/null and b/static/icons/06003161.png differ
diff --git a/static/icons/06003162.png b/static/icons/06003162.png
new file mode 100755
index 00000000..e54b4e47
Binary files /dev/null and b/static/icons/06003162.png differ
diff --git a/static/icons/06003163.png b/static/icons/06003163.png
new file mode 100755
index 00000000..32e27ffa
Binary files /dev/null and b/static/icons/06003163.png differ
diff --git a/static/icons/06003164.png b/static/icons/06003164.png
new file mode 100755
index 00000000..cd7c349d
Binary files /dev/null and b/static/icons/06003164.png differ
diff --git a/static/icons/06003165.png b/static/icons/06003165.png
new file mode 100755
index 00000000..4ca14cbb
Binary files /dev/null and b/static/icons/06003165.png differ
diff --git a/static/icons/06003166.png b/static/icons/06003166.png
new file mode 100755
index 00000000..c543639f
Binary files /dev/null and b/static/icons/06003166.png differ
diff --git a/static/icons/06003167.png b/static/icons/06003167.png
new file mode 100755
index 00000000..644f0622
Binary files /dev/null and b/static/icons/06003167.png differ
diff --git a/static/icons/06003168.png b/static/icons/06003168.png
new file mode 100755
index 00000000..25bf5f6f
Binary files /dev/null and b/static/icons/06003168.png differ
diff --git a/static/icons/06003169.png b/static/icons/06003169.png
new file mode 100755
index 00000000..f9e850aa
Binary files /dev/null and b/static/icons/06003169.png differ
diff --git a/static/icons/0600316A.png b/static/icons/0600316A.png
new file mode 100755
index 00000000..44a35b7c
Binary files /dev/null and b/static/icons/0600316A.png differ
diff --git a/static/icons/0600316B.png b/static/icons/0600316B.png
new file mode 100755
index 00000000..6a6fbb57
Binary files /dev/null and b/static/icons/0600316B.png differ
diff --git a/static/icons/0600316C.png b/static/icons/0600316C.png
new file mode 100755
index 00000000..131b0e7f
Binary files /dev/null and b/static/icons/0600316C.png differ
diff --git a/static/icons/0600316D.png b/static/icons/0600316D.png
new file mode 100755
index 00000000..d8bd33ad
Binary files /dev/null and b/static/icons/0600316D.png differ
diff --git a/static/icons/0600316E.png b/static/icons/0600316E.png
new file mode 100755
index 00000000..67edd69c
Binary files /dev/null and b/static/icons/0600316E.png differ
diff --git a/static/icons/0600316F.png b/static/icons/0600316F.png
new file mode 100755
index 00000000..8f86a846
Binary files /dev/null and b/static/icons/0600316F.png differ
diff --git a/static/icons/06003170.png b/static/icons/06003170.png
new file mode 100755
index 00000000..eb766a1a
Binary files /dev/null and b/static/icons/06003170.png differ
diff --git a/static/icons/06003171.png b/static/icons/06003171.png
new file mode 100755
index 00000000..5d37cdc0
Binary files /dev/null and b/static/icons/06003171.png differ
diff --git a/static/icons/06003172.png b/static/icons/06003172.png
new file mode 100755
index 00000000..9d93b97c
Binary files /dev/null and b/static/icons/06003172.png differ
diff --git a/static/icons/06003173.png b/static/icons/06003173.png
new file mode 100755
index 00000000..d59849f4
Binary files /dev/null and b/static/icons/06003173.png differ
diff --git a/static/icons/06003174.png b/static/icons/06003174.png
new file mode 100755
index 00000000..52dcec9d
Binary files /dev/null and b/static/icons/06003174.png differ
diff --git a/static/icons/06003175.png b/static/icons/06003175.png
new file mode 100755
index 00000000..c1832efa
Binary files /dev/null and b/static/icons/06003175.png differ
diff --git a/static/icons/06003176.png b/static/icons/06003176.png
new file mode 100755
index 00000000..73aadc03
Binary files /dev/null and b/static/icons/06003176.png differ
diff --git a/static/icons/06003177.png b/static/icons/06003177.png
new file mode 100755
index 00000000..b7af9c94
Binary files /dev/null and b/static/icons/06003177.png differ
diff --git a/static/icons/06003178.png b/static/icons/06003178.png
new file mode 100755
index 00000000..4601e83e
Binary files /dev/null and b/static/icons/06003178.png differ
diff --git a/static/icons/06003179.png b/static/icons/06003179.png
new file mode 100755
index 00000000..90858ad3
Binary files /dev/null and b/static/icons/06003179.png differ
diff --git a/static/icons/0600317A.png b/static/icons/0600317A.png
new file mode 100755
index 00000000..4e33a0f4
Binary files /dev/null and b/static/icons/0600317A.png differ
diff --git a/static/icons/0600317B.png b/static/icons/0600317B.png
new file mode 100755
index 00000000..a41a6eb0
Binary files /dev/null and b/static/icons/0600317B.png differ
diff --git a/static/icons/0600317D.png b/static/icons/0600317D.png
new file mode 100755
index 00000000..1c0fbd0b
Binary files /dev/null and b/static/icons/0600317D.png differ
diff --git a/static/icons/0600317E.png b/static/icons/0600317E.png
new file mode 100755
index 00000000..a205a6c2
Binary files /dev/null and b/static/icons/0600317E.png differ
diff --git a/static/icons/0600317F.png b/static/icons/0600317F.png
new file mode 100755
index 00000000..bab0d5b3
Binary files /dev/null and b/static/icons/0600317F.png differ
diff --git a/static/icons/06003180.png b/static/icons/06003180.png
new file mode 100755
index 00000000..7985e907
Binary files /dev/null and b/static/icons/06003180.png differ
diff --git a/static/icons/06003181.png b/static/icons/06003181.png
new file mode 100755
index 00000000..66cd6cfe
Binary files /dev/null and b/static/icons/06003181.png differ
diff --git a/static/icons/06003182.png b/static/icons/06003182.png
new file mode 100755
index 00000000..8a798f03
Binary files /dev/null and b/static/icons/06003182.png differ
diff --git a/static/icons/06003183.png b/static/icons/06003183.png
new file mode 100755
index 00000000..5190a701
Binary files /dev/null and b/static/icons/06003183.png differ
diff --git a/static/icons/06003184.png b/static/icons/06003184.png
new file mode 100755
index 00000000..f6f53b42
Binary files /dev/null and b/static/icons/06003184.png differ
diff --git a/static/icons/06003185.png b/static/icons/06003185.png
new file mode 100755
index 00000000..a7e6b285
Binary files /dev/null and b/static/icons/06003185.png differ
diff --git a/static/icons/06003186.png b/static/icons/06003186.png
new file mode 100755
index 00000000..486d549a
Binary files /dev/null and b/static/icons/06003186.png differ
diff --git a/static/icons/06003187.png b/static/icons/06003187.png
new file mode 100755
index 00000000..d3364eab
Binary files /dev/null and b/static/icons/06003187.png differ
diff --git a/static/icons/06003188.png b/static/icons/06003188.png
new file mode 100755
index 00000000..51dc16e2
Binary files /dev/null and b/static/icons/06003188.png differ
diff --git a/static/icons/06003189.png b/static/icons/06003189.png
new file mode 100755
index 00000000..d8c71c58
Binary files /dev/null and b/static/icons/06003189.png differ
diff --git a/static/icons/0600318A.png b/static/icons/0600318A.png
new file mode 100755
index 00000000..cffe24f6
Binary files /dev/null and b/static/icons/0600318A.png differ
diff --git a/static/icons/0600318B.png b/static/icons/0600318B.png
new file mode 100755
index 00000000..3ad13e1e
Binary files /dev/null and b/static/icons/0600318B.png differ
diff --git a/static/icons/0600318C.png b/static/icons/0600318C.png
new file mode 100755
index 00000000..f2565f64
Binary files /dev/null and b/static/icons/0600318C.png differ
diff --git a/static/icons/0600318D.png b/static/icons/0600318D.png
new file mode 100755
index 00000000..be416182
Binary files /dev/null and b/static/icons/0600318D.png differ
diff --git a/static/icons/0600318E.png b/static/icons/0600318E.png
new file mode 100755
index 00000000..d3a83bca
Binary files /dev/null and b/static/icons/0600318E.png differ
diff --git a/static/icons/0600318F.png b/static/icons/0600318F.png
new file mode 100755
index 00000000..298867e4
Binary files /dev/null and b/static/icons/0600318F.png differ
diff --git a/static/icons/06003190.png b/static/icons/06003190.png
new file mode 100755
index 00000000..8cdfc445
Binary files /dev/null and b/static/icons/06003190.png differ
diff --git a/static/icons/06003191.png b/static/icons/06003191.png
new file mode 100755
index 00000000..30af2b9a
Binary files /dev/null and b/static/icons/06003191.png differ
diff --git a/static/icons/06003192.png b/static/icons/06003192.png
new file mode 100755
index 00000000..4820d97f
Binary files /dev/null and b/static/icons/06003192.png differ
diff --git a/static/icons/06003193.png b/static/icons/06003193.png
new file mode 100755
index 00000000..bb3757ca
Binary files /dev/null and b/static/icons/06003193.png differ
diff --git a/static/icons/06003194.png b/static/icons/06003194.png
new file mode 100755
index 00000000..3e289413
Binary files /dev/null and b/static/icons/06003194.png differ
diff --git a/static/icons/06003195.png b/static/icons/06003195.png
new file mode 100755
index 00000000..51291fec
Binary files /dev/null and b/static/icons/06003195.png differ
diff --git a/static/icons/06003196.png b/static/icons/06003196.png
new file mode 100755
index 00000000..304c04f4
Binary files /dev/null and b/static/icons/06003196.png differ
diff --git a/static/icons/06003197.png b/static/icons/06003197.png
new file mode 100755
index 00000000..415d7e2d
Binary files /dev/null and b/static/icons/06003197.png differ
diff --git a/static/icons/06003198.png b/static/icons/06003198.png
new file mode 100755
index 00000000..d6210ad3
Binary files /dev/null and b/static/icons/06003198.png differ
diff --git a/static/icons/06003199.png b/static/icons/06003199.png
new file mode 100755
index 00000000..8326b797
Binary files /dev/null and b/static/icons/06003199.png differ
diff --git a/static/icons/0600319A.png b/static/icons/0600319A.png
new file mode 100755
index 00000000..59b8f55c
Binary files /dev/null and b/static/icons/0600319A.png differ
diff --git a/static/icons/0600319B.png b/static/icons/0600319B.png
new file mode 100755
index 00000000..4222c49f
Binary files /dev/null and b/static/icons/0600319B.png differ
diff --git a/static/icons/0600319C.png b/static/icons/0600319C.png
new file mode 100755
index 00000000..aa196dae
Binary files /dev/null and b/static/icons/0600319C.png differ
diff --git a/static/icons/0600319D.png b/static/icons/0600319D.png
new file mode 100755
index 00000000..29a6247e
Binary files /dev/null and b/static/icons/0600319D.png differ
diff --git a/static/icons/0600319E.png b/static/icons/0600319E.png
new file mode 100755
index 00000000..03028950
Binary files /dev/null and b/static/icons/0600319E.png differ
diff --git a/static/icons/0600319F.png b/static/icons/0600319F.png
new file mode 100755
index 00000000..4519bd4c
Binary files /dev/null and b/static/icons/0600319F.png differ
diff --git a/static/icons/060031A0.png b/static/icons/060031A0.png
new file mode 100755
index 00000000..e280692b
Binary files /dev/null and b/static/icons/060031A0.png differ
diff --git a/static/icons/060031A1.png b/static/icons/060031A1.png
new file mode 100755
index 00000000..9d9b2976
Binary files /dev/null and b/static/icons/060031A1.png differ
diff --git a/static/icons/060031A3.png b/static/icons/060031A3.png
new file mode 100755
index 00000000..cabc8167
Binary files /dev/null and b/static/icons/060031A3.png differ
diff --git a/static/icons/060031A4.png b/static/icons/060031A4.png
new file mode 100755
index 00000000..afbd2859
Binary files /dev/null and b/static/icons/060031A4.png differ
diff --git a/static/icons/060031A5.png b/static/icons/060031A5.png
new file mode 100755
index 00000000..521e8d06
Binary files /dev/null and b/static/icons/060031A5.png differ
diff --git a/static/icons/060031A6.png b/static/icons/060031A6.png
new file mode 100755
index 00000000..cf9cd8c7
Binary files /dev/null and b/static/icons/060031A6.png differ
diff --git a/static/icons/060031A7.png b/static/icons/060031A7.png
new file mode 100755
index 00000000..a9882579
Binary files /dev/null and b/static/icons/060031A7.png differ
diff --git a/static/icons/060031A8.png b/static/icons/060031A8.png
new file mode 100755
index 00000000..d32f9310
Binary files /dev/null and b/static/icons/060031A8.png differ
diff --git a/static/icons/060031A9.png b/static/icons/060031A9.png
new file mode 100755
index 00000000..84a77701
Binary files /dev/null and b/static/icons/060031A9.png differ
diff --git a/static/icons/060031AA.png b/static/icons/060031AA.png
new file mode 100755
index 00000000..4e557759
Binary files /dev/null and b/static/icons/060031AA.png differ
diff --git a/static/icons/060031AB.png b/static/icons/060031AB.png
new file mode 100755
index 00000000..46fb0ef6
Binary files /dev/null and b/static/icons/060031AB.png differ
diff --git a/static/icons/060031AC.png b/static/icons/060031AC.png
new file mode 100755
index 00000000..00291070
Binary files /dev/null and b/static/icons/060031AC.png differ
diff --git a/static/icons/060031AD.png b/static/icons/060031AD.png
new file mode 100755
index 00000000..082fd284
Binary files /dev/null and b/static/icons/060031AD.png differ
diff --git a/static/icons/060031AE.png b/static/icons/060031AE.png
new file mode 100755
index 00000000..98baa4a6
Binary files /dev/null and b/static/icons/060031AE.png differ
diff --git a/static/icons/060031AF.png b/static/icons/060031AF.png
new file mode 100755
index 00000000..f0b90929
Binary files /dev/null and b/static/icons/060031AF.png differ
diff --git a/static/icons/060031B0.png b/static/icons/060031B0.png
new file mode 100755
index 00000000..3419d5be
Binary files /dev/null and b/static/icons/060031B0.png differ
diff --git a/static/icons/060031B1.png b/static/icons/060031B1.png
new file mode 100755
index 00000000..78c4eddc
Binary files /dev/null and b/static/icons/060031B1.png differ
diff --git a/static/icons/060031B2.png b/static/icons/060031B2.png
new file mode 100755
index 00000000..c02b9c4e
Binary files /dev/null and b/static/icons/060031B2.png differ
diff --git a/static/icons/060031B3.png b/static/icons/060031B3.png
new file mode 100755
index 00000000..7698655d
Binary files /dev/null and b/static/icons/060031B3.png differ
diff --git a/static/icons/060031B4.png b/static/icons/060031B4.png
new file mode 100755
index 00000000..6eb2888f
Binary files /dev/null and b/static/icons/060031B4.png differ
diff --git a/static/icons/060031B6.png b/static/icons/060031B6.png
new file mode 100755
index 00000000..7e961799
Binary files /dev/null and b/static/icons/060031B6.png differ
diff --git a/static/icons/060031B7.png b/static/icons/060031B7.png
new file mode 100755
index 00000000..f55a9c5a
Binary files /dev/null and b/static/icons/060031B7.png differ
diff --git a/static/icons/060031B8.png b/static/icons/060031B8.png
new file mode 100755
index 00000000..30d35f22
Binary files /dev/null and b/static/icons/060031B8.png differ
diff --git a/static/icons/060031B9.png b/static/icons/060031B9.png
new file mode 100755
index 00000000..2b41efbd
Binary files /dev/null and b/static/icons/060031B9.png differ
diff --git a/static/icons/060031BA.png b/static/icons/060031BA.png
new file mode 100755
index 00000000..098ecf63
Binary files /dev/null and b/static/icons/060031BA.png differ
diff --git a/static/icons/060031BB.png b/static/icons/060031BB.png
new file mode 100755
index 00000000..5fce944e
Binary files /dev/null and b/static/icons/060031BB.png differ
diff --git a/static/icons/060031BC.png b/static/icons/060031BC.png
new file mode 100755
index 00000000..ba53e40c
Binary files /dev/null and b/static/icons/060031BC.png differ
diff --git a/static/icons/060031BD.png b/static/icons/060031BD.png
new file mode 100755
index 00000000..7935415c
Binary files /dev/null and b/static/icons/060031BD.png differ
diff --git a/static/icons/060031BE.png b/static/icons/060031BE.png
new file mode 100755
index 00000000..b5506f1b
Binary files /dev/null and b/static/icons/060031BE.png differ
diff --git a/static/icons/060031BF.png b/static/icons/060031BF.png
new file mode 100755
index 00000000..afb2b9d1
Binary files /dev/null and b/static/icons/060031BF.png differ
diff --git a/static/icons/060031C0.png b/static/icons/060031C0.png
new file mode 100755
index 00000000..b34c71c5
Binary files /dev/null and b/static/icons/060031C0.png differ
diff --git a/static/icons/060031C1.png b/static/icons/060031C1.png
new file mode 100755
index 00000000..27342b10
Binary files /dev/null and b/static/icons/060031C1.png differ
diff --git a/static/icons/060031C2.png b/static/icons/060031C2.png
new file mode 100755
index 00000000..42de6b11
Binary files /dev/null and b/static/icons/060031C2.png differ
diff --git a/static/icons/060031C3.png b/static/icons/060031C3.png
new file mode 100755
index 00000000..9b57c595
Binary files /dev/null and b/static/icons/060031C3.png differ
diff --git a/static/icons/060031C4.png b/static/icons/060031C4.png
new file mode 100755
index 00000000..e297883b
Binary files /dev/null and b/static/icons/060031C4.png differ
diff --git a/static/icons/060031C5.png b/static/icons/060031C5.png
new file mode 100755
index 00000000..352b3117
Binary files /dev/null and b/static/icons/060031C5.png differ
diff --git a/static/icons/060031C6.png b/static/icons/060031C6.png
new file mode 100755
index 00000000..50e5a22f
Binary files /dev/null and b/static/icons/060031C6.png differ
diff --git a/static/icons/060031C8.png b/static/icons/060031C8.png
new file mode 100755
index 00000000..62d53e48
Binary files /dev/null and b/static/icons/060031C8.png differ
diff --git a/static/icons/060031C9.png b/static/icons/060031C9.png
new file mode 100755
index 00000000..8138d0f4
Binary files /dev/null and b/static/icons/060031C9.png differ
diff --git a/static/icons/060031CA.png b/static/icons/060031CA.png
new file mode 100755
index 00000000..d000451c
Binary files /dev/null and b/static/icons/060031CA.png differ
diff --git a/static/icons/060031CB.png b/static/icons/060031CB.png
new file mode 100755
index 00000000..21707c55
Binary files /dev/null and b/static/icons/060031CB.png differ
diff --git a/static/icons/060031CC.png b/static/icons/060031CC.png
new file mode 100755
index 00000000..eb00eb36
Binary files /dev/null and b/static/icons/060031CC.png differ
diff --git a/static/icons/060031CD.png b/static/icons/060031CD.png
new file mode 100755
index 00000000..fa48780f
Binary files /dev/null and b/static/icons/060031CD.png differ
diff --git a/static/icons/060031CE.png b/static/icons/060031CE.png
new file mode 100755
index 00000000..0c32e1ce
Binary files /dev/null and b/static/icons/060031CE.png differ
diff --git a/static/icons/060031CF.png b/static/icons/060031CF.png
new file mode 100755
index 00000000..ce900175
Binary files /dev/null and b/static/icons/060031CF.png differ
diff --git a/static/icons/060031D0.png b/static/icons/060031D0.png
new file mode 100755
index 00000000..bee7e4f3
Binary files /dev/null and b/static/icons/060031D0.png differ
diff --git a/static/icons/060031D1.png b/static/icons/060031D1.png
new file mode 100755
index 00000000..383e5ecc
Binary files /dev/null and b/static/icons/060031D1.png differ
diff --git a/static/icons/060031D2.png b/static/icons/060031D2.png
new file mode 100755
index 00000000..6573d5a3
Binary files /dev/null and b/static/icons/060031D2.png differ
diff --git a/static/icons/060031D3.png b/static/icons/060031D3.png
new file mode 100755
index 00000000..8bd458d2
Binary files /dev/null and b/static/icons/060031D3.png differ
diff --git a/static/icons/060031D4.png b/static/icons/060031D4.png
new file mode 100755
index 00000000..21310608
Binary files /dev/null and b/static/icons/060031D4.png differ
diff --git a/static/icons/060031D5.png b/static/icons/060031D5.png
new file mode 100755
index 00000000..2edad5eb
Binary files /dev/null and b/static/icons/060031D5.png differ
diff --git a/static/icons/060031D6.png b/static/icons/060031D6.png
new file mode 100755
index 00000000..ac47e2e7
Binary files /dev/null and b/static/icons/060031D6.png differ
diff --git a/static/icons/060031D7.png b/static/icons/060031D7.png
new file mode 100755
index 00000000..8b60599d
Binary files /dev/null and b/static/icons/060031D7.png differ
diff --git a/static/icons/060031D8.png b/static/icons/060031D8.png
new file mode 100755
index 00000000..231053b4
Binary files /dev/null and b/static/icons/060031D8.png differ
diff --git a/static/icons/060031D9.png b/static/icons/060031D9.png
new file mode 100755
index 00000000..30fbb07c
Binary files /dev/null and b/static/icons/060031D9.png differ
diff --git a/static/icons/060031DA.png b/static/icons/060031DA.png
new file mode 100755
index 00000000..f3d33ae4
Binary files /dev/null and b/static/icons/060031DA.png differ
diff --git a/static/icons/060031DC.png b/static/icons/060031DC.png
new file mode 100755
index 00000000..e931879f
Binary files /dev/null and b/static/icons/060031DC.png differ
diff --git a/static/icons/060031DD.png b/static/icons/060031DD.png
new file mode 100755
index 00000000..a8792005
Binary files /dev/null and b/static/icons/060031DD.png differ
diff --git a/static/icons/060031DE.png b/static/icons/060031DE.png
new file mode 100755
index 00000000..4f92ec43
Binary files /dev/null and b/static/icons/060031DE.png differ
diff --git a/static/icons/060031DF.png b/static/icons/060031DF.png
new file mode 100755
index 00000000..79734e80
Binary files /dev/null and b/static/icons/060031DF.png differ
diff --git a/static/icons/060031E0.png b/static/icons/060031E0.png
new file mode 100755
index 00000000..c30b472e
Binary files /dev/null and b/static/icons/060031E0.png differ
diff --git a/static/icons/060031E1.png b/static/icons/060031E1.png
new file mode 100755
index 00000000..9b80219b
Binary files /dev/null and b/static/icons/060031E1.png differ
diff --git a/static/icons/060031E2.png b/static/icons/060031E2.png
new file mode 100755
index 00000000..e0c78ef0
Binary files /dev/null and b/static/icons/060031E2.png differ
diff --git a/static/icons/060031E3.png b/static/icons/060031E3.png
new file mode 100755
index 00000000..1ae46cf9
Binary files /dev/null and b/static/icons/060031E3.png differ
diff --git a/static/icons/060031E4.png b/static/icons/060031E4.png
new file mode 100755
index 00000000..df40b4b7
Binary files /dev/null and b/static/icons/060031E4.png differ
diff --git a/static/icons/060031E5.png b/static/icons/060031E5.png
new file mode 100755
index 00000000..056f2daa
Binary files /dev/null and b/static/icons/060031E5.png differ
diff --git a/static/icons/060031E6.png b/static/icons/060031E6.png
new file mode 100755
index 00000000..353075c8
Binary files /dev/null and b/static/icons/060031E6.png differ
diff --git a/static/icons/060031E7.png b/static/icons/060031E7.png
new file mode 100755
index 00000000..1a00c30f
Binary files /dev/null and b/static/icons/060031E7.png differ
diff --git a/static/icons/060031E8.png b/static/icons/060031E8.png
new file mode 100755
index 00000000..a7fb4029
Binary files /dev/null and b/static/icons/060031E8.png differ
diff --git a/static/icons/060031E9.png b/static/icons/060031E9.png
new file mode 100755
index 00000000..69b15245
Binary files /dev/null and b/static/icons/060031E9.png differ
diff --git a/static/icons/060031EA.png b/static/icons/060031EA.png
new file mode 100755
index 00000000..e729114e
Binary files /dev/null and b/static/icons/060031EA.png differ
diff --git a/static/icons/060031EB.png b/static/icons/060031EB.png
new file mode 100755
index 00000000..54433012
Binary files /dev/null and b/static/icons/060031EB.png differ
diff --git a/static/icons/060031EC.png b/static/icons/060031EC.png
new file mode 100755
index 00000000..f3877c08
Binary files /dev/null and b/static/icons/060031EC.png differ
diff --git a/static/icons/060031ED.png b/static/icons/060031ED.png
new file mode 100755
index 00000000..fbd61d92
Binary files /dev/null and b/static/icons/060031ED.png differ
diff --git a/static/icons/060031EF.png b/static/icons/060031EF.png
new file mode 100755
index 00000000..efff41b8
Binary files /dev/null and b/static/icons/060031EF.png differ
diff --git a/static/icons/060031F0.png b/static/icons/060031F0.png
new file mode 100755
index 00000000..6d3eb608
Binary files /dev/null and b/static/icons/060031F0.png differ
diff --git a/static/icons/060031F1.png b/static/icons/060031F1.png
new file mode 100755
index 00000000..96117c11
Binary files /dev/null and b/static/icons/060031F1.png differ
diff --git a/static/icons/060031F2.png b/static/icons/060031F2.png
new file mode 100755
index 00000000..a45b930d
Binary files /dev/null and b/static/icons/060031F2.png differ
diff --git a/static/icons/060031F3.png b/static/icons/060031F3.png
new file mode 100755
index 00000000..41ccfe03
Binary files /dev/null and b/static/icons/060031F3.png differ
diff --git a/static/icons/060031F4.png b/static/icons/060031F4.png
new file mode 100755
index 00000000..aac1b69f
Binary files /dev/null and b/static/icons/060031F4.png differ
diff --git a/static/icons/060031F5.png b/static/icons/060031F5.png
new file mode 100755
index 00000000..72c2dd1d
Binary files /dev/null and b/static/icons/060031F5.png differ
diff --git a/static/icons/060031F6.png b/static/icons/060031F6.png
new file mode 100755
index 00000000..f6379a5e
Binary files /dev/null and b/static/icons/060031F6.png differ
diff --git a/static/icons/060031F7.png b/static/icons/060031F7.png
new file mode 100755
index 00000000..95c9ac61
Binary files /dev/null and b/static/icons/060031F7.png differ
diff --git a/static/icons/060031F8.png b/static/icons/060031F8.png
new file mode 100755
index 00000000..cef78da4
Binary files /dev/null and b/static/icons/060031F8.png differ
diff --git a/static/icons/060031F9.png b/static/icons/060031F9.png
new file mode 100755
index 00000000..96b77b2c
Binary files /dev/null and b/static/icons/060031F9.png differ
diff --git a/static/icons/060031FA.png b/static/icons/060031FA.png
new file mode 100755
index 00000000..c1eee226
Binary files /dev/null and b/static/icons/060031FA.png differ
diff --git a/static/icons/060031FB.png b/static/icons/060031FB.png
new file mode 100755
index 00000000..d3a09167
Binary files /dev/null and b/static/icons/060031FB.png differ
diff --git a/static/icons/060031FC.png b/static/icons/060031FC.png
new file mode 100755
index 00000000..3771a0f7
Binary files /dev/null and b/static/icons/060031FC.png differ
diff --git a/static/icons/060031FD.png b/static/icons/060031FD.png
new file mode 100755
index 00000000..c24b0d67
Binary files /dev/null and b/static/icons/060031FD.png differ
diff --git a/static/icons/060031FE.png b/static/icons/060031FE.png
new file mode 100755
index 00000000..f6727009
Binary files /dev/null and b/static/icons/060031FE.png differ
diff --git a/static/icons/060031FF.png b/static/icons/060031FF.png
new file mode 100755
index 00000000..ce273b54
Binary files /dev/null and b/static/icons/060031FF.png differ
diff --git a/static/icons/06003200.png b/static/icons/06003200.png
new file mode 100755
index 00000000..593fc75e
Binary files /dev/null and b/static/icons/06003200.png differ
diff --git a/static/icons/06003201.png b/static/icons/06003201.png
new file mode 100755
index 00000000..706b4347
Binary files /dev/null and b/static/icons/06003201.png differ
diff --git a/static/icons/06003202.png b/static/icons/06003202.png
new file mode 100755
index 00000000..15def3d8
Binary files /dev/null and b/static/icons/06003202.png differ
diff --git a/static/icons/06003203.png b/static/icons/06003203.png
new file mode 100755
index 00000000..d87e858d
Binary files /dev/null and b/static/icons/06003203.png differ
diff --git a/static/icons/06003204.png b/static/icons/06003204.png
new file mode 100755
index 00000000..1948dd65
Binary files /dev/null and b/static/icons/06003204.png differ
diff --git a/static/icons/06003205.png b/static/icons/06003205.png
new file mode 100755
index 00000000..28c04484
Binary files /dev/null and b/static/icons/06003205.png differ
diff --git a/static/icons/06003206.png b/static/icons/06003206.png
new file mode 100755
index 00000000..8304b46b
Binary files /dev/null and b/static/icons/06003206.png differ
diff --git a/static/icons/06003207.png b/static/icons/06003207.png
new file mode 100755
index 00000000..fcc1f443
Binary files /dev/null and b/static/icons/06003207.png differ
diff --git a/static/icons/06003208.png b/static/icons/06003208.png
new file mode 100755
index 00000000..194af779
Binary files /dev/null and b/static/icons/06003208.png differ
diff --git a/static/icons/06003209.png b/static/icons/06003209.png
new file mode 100755
index 00000000..9a661606
Binary files /dev/null and b/static/icons/06003209.png differ
diff --git a/static/icons/0600320A.png b/static/icons/0600320A.png
new file mode 100755
index 00000000..202edfdc
Binary files /dev/null and b/static/icons/0600320A.png differ
diff --git a/static/icons/0600320B.png b/static/icons/0600320B.png
new file mode 100755
index 00000000..d0ca28a8
Binary files /dev/null and b/static/icons/0600320B.png differ
diff --git a/static/icons/0600320C.png b/static/icons/0600320C.png
new file mode 100755
index 00000000..443eb85f
Binary files /dev/null and b/static/icons/0600320C.png differ
diff --git a/static/icons/0600320D.png b/static/icons/0600320D.png
new file mode 100755
index 00000000..47e3aa64
Binary files /dev/null and b/static/icons/0600320D.png differ
diff --git a/static/icons/0600320E.png b/static/icons/0600320E.png
new file mode 100755
index 00000000..f56a3537
Binary files /dev/null and b/static/icons/0600320E.png differ
diff --git a/static/icons/0600320F.png b/static/icons/0600320F.png
new file mode 100755
index 00000000..714631ab
Binary files /dev/null and b/static/icons/0600320F.png differ
diff --git a/static/icons/06003210.png b/static/icons/06003210.png
new file mode 100755
index 00000000..e761185b
Binary files /dev/null and b/static/icons/06003210.png differ
diff --git a/static/icons/06003211.png b/static/icons/06003211.png
new file mode 100755
index 00000000..9e235b9b
Binary files /dev/null and b/static/icons/06003211.png differ
diff --git a/static/icons/06003212.png b/static/icons/06003212.png
new file mode 100755
index 00000000..e8027fce
Binary files /dev/null and b/static/icons/06003212.png differ
diff --git a/static/icons/06003213.png b/static/icons/06003213.png
new file mode 100755
index 00000000..3f664bad
Binary files /dev/null and b/static/icons/06003213.png differ
diff --git a/static/icons/06003215.png b/static/icons/06003215.png
new file mode 100755
index 00000000..02c5b728
Binary files /dev/null and b/static/icons/06003215.png differ
diff --git a/static/icons/06003216.png b/static/icons/06003216.png
new file mode 100755
index 00000000..7c506001
Binary files /dev/null and b/static/icons/06003216.png differ
diff --git a/static/icons/06003217.png b/static/icons/06003217.png
new file mode 100755
index 00000000..d66d626d
Binary files /dev/null and b/static/icons/06003217.png differ
diff --git a/static/icons/06003218.png b/static/icons/06003218.png
new file mode 100755
index 00000000..047abec9
Binary files /dev/null and b/static/icons/06003218.png differ
diff --git a/static/icons/06003219.png b/static/icons/06003219.png
new file mode 100755
index 00000000..709c4b8a
Binary files /dev/null and b/static/icons/06003219.png differ
diff --git a/static/icons/0600321A.png b/static/icons/0600321A.png
new file mode 100755
index 00000000..ed248de4
Binary files /dev/null and b/static/icons/0600321A.png differ
diff --git a/static/icons/0600321B.png b/static/icons/0600321B.png
new file mode 100755
index 00000000..50e73396
Binary files /dev/null and b/static/icons/0600321B.png differ
diff --git a/static/icons/0600321C.png b/static/icons/0600321C.png
new file mode 100755
index 00000000..5e293b9b
Binary files /dev/null and b/static/icons/0600321C.png differ
diff --git a/static/icons/0600321D.png b/static/icons/0600321D.png
new file mode 100755
index 00000000..7743557f
Binary files /dev/null and b/static/icons/0600321D.png differ
diff --git a/static/icons/0600321E.png b/static/icons/0600321E.png
new file mode 100755
index 00000000..4d6fe7f5
Binary files /dev/null and b/static/icons/0600321E.png differ
diff --git a/static/icons/0600321F.png b/static/icons/0600321F.png
new file mode 100755
index 00000000..8c449ba4
Binary files /dev/null and b/static/icons/0600321F.png differ
diff --git a/static/icons/06003220.png b/static/icons/06003220.png
new file mode 100755
index 00000000..24f20846
Binary files /dev/null and b/static/icons/06003220.png differ
diff --git a/static/icons/06003221.png b/static/icons/06003221.png
new file mode 100755
index 00000000..a44124ae
Binary files /dev/null and b/static/icons/06003221.png differ
diff --git a/static/icons/06003222.png b/static/icons/06003222.png
new file mode 100755
index 00000000..765c5586
Binary files /dev/null and b/static/icons/06003222.png differ
diff --git a/static/icons/06003223.png b/static/icons/06003223.png
new file mode 100755
index 00000000..2ff9c671
Binary files /dev/null and b/static/icons/06003223.png differ
diff --git a/static/icons/06003224.png b/static/icons/06003224.png
new file mode 100755
index 00000000..a6e0dda9
Binary files /dev/null and b/static/icons/06003224.png differ
diff --git a/static/icons/06003225.png b/static/icons/06003225.png
new file mode 100755
index 00000000..83b7eab3
Binary files /dev/null and b/static/icons/06003225.png differ
diff --git a/static/icons/06003226.png b/static/icons/06003226.png
new file mode 100755
index 00000000..54484029
Binary files /dev/null and b/static/icons/06003226.png differ
diff --git a/static/icons/06003228.png b/static/icons/06003228.png
new file mode 100755
index 00000000..a85e3d7a
Binary files /dev/null and b/static/icons/06003228.png differ
diff --git a/static/icons/06003229.png b/static/icons/06003229.png
new file mode 100755
index 00000000..159ee59f
Binary files /dev/null and b/static/icons/06003229.png differ
diff --git a/static/icons/0600322A.png b/static/icons/0600322A.png
new file mode 100755
index 00000000..83918c70
Binary files /dev/null and b/static/icons/0600322A.png differ
diff --git a/static/icons/0600322B.png b/static/icons/0600322B.png
new file mode 100755
index 00000000..cdb086dd
Binary files /dev/null and b/static/icons/0600322B.png differ
diff --git a/static/icons/0600322C.png b/static/icons/0600322C.png
new file mode 100755
index 00000000..8b386c35
Binary files /dev/null and b/static/icons/0600322C.png differ
diff --git a/static/icons/0600322D.png b/static/icons/0600322D.png
new file mode 100755
index 00000000..abd00176
Binary files /dev/null and b/static/icons/0600322D.png differ
diff --git a/static/icons/0600322E.png b/static/icons/0600322E.png
new file mode 100755
index 00000000..c6627b96
Binary files /dev/null and b/static/icons/0600322E.png differ
diff --git a/static/icons/0600322F.png b/static/icons/0600322F.png
new file mode 100755
index 00000000..25c8cfc0
Binary files /dev/null and b/static/icons/0600322F.png differ
diff --git a/static/icons/06003230.png b/static/icons/06003230.png
new file mode 100755
index 00000000..18071ad9
Binary files /dev/null and b/static/icons/06003230.png differ
diff --git a/static/icons/06003231.png b/static/icons/06003231.png
new file mode 100755
index 00000000..e1447926
Binary files /dev/null and b/static/icons/06003231.png differ
diff --git a/static/icons/06003232.png b/static/icons/06003232.png
new file mode 100755
index 00000000..c01599e9
Binary files /dev/null and b/static/icons/06003232.png differ
diff --git a/static/icons/06003233.png b/static/icons/06003233.png
new file mode 100755
index 00000000..75981705
Binary files /dev/null and b/static/icons/06003233.png differ
diff --git a/static/icons/06003234.png b/static/icons/06003234.png
new file mode 100755
index 00000000..f15bf4f8
Binary files /dev/null and b/static/icons/06003234.png differ
diff --git a/static/icons/06003235.png b/static/icons/06003235.png
new file mode 100755
index 00000000..8e655ff7
Binary files /dev/null and b/static/icons/06003235.png differ
diff --git a/static/icons/06003236.png b/static/icons/06003236.png
new file mode 100755
index 00000000..04497679
Binary files /dev/null and b/static/icons/06003236.png differ
diff --git a/static/icons/06003237.png b/static/icons/06003237.png
new file mode 100755
index 00000000..253cf21d
Binary files /dev/null and b/static/icons/06003237.png differ
diff --git a/static/icons/06003239.png b/static/icons/06003239.png
new file mode 100755
index 00000000..67cd04c1
Binary files /dev/null and b/static/icons/06003239.png differ
diff --git a/static/icons/0600323A.png b/static/icons/0600323A.png
new file mode 100755
index 00000000..7e2d4aaf
Binary files /dev/null and b/static/icons/0600323A.png differ
diff --git a/static/icons/0600323B.png b/static/icons/0600323B.png
new file mode 100755
index 00000000..9e2a8eed
Binary files /dev/null and b/static/icons/0600323B.png differ
diff --git a/static/icons/0600323C.png b/static/icons/0600323C.png
new file mode 100755
index 00000000..d8800051
Binary files /dev/null and b/static/icons/0600323C.png differ
diff --git a/static/icons/0600323D.png b/static/icons/0600323D.png
new file mode 100755
index 00000000..98304859
Binary files /dev/null and b/static/icons/0600323D.png differ
diff --git a/static/icons/0600323E.png b/static/icons/0600323E.png
new file mode 100755
index 00000000..ad546235
Binary files /dev/null and b/static/icons/0600323E.png differ
diff --git a/static/icons/0600323F.png b/static/icons/0600323F.png
new file mode 100755
index 00000000..bab83582
Binary files /dev/null and b/static/icons/0600323F.png differ
diff --git a/static/icons/06003240.png b/static/icons/06003240.png
new file mode 100755
index 00000000..5b1307e5
Binary files /dev/null and b/static/icons/06003240.png differ
diff --git a/static/icons/06003241.png b/static/icons/06003241.png
new file mode 100755
index 00000000..28303ffc
Binary files /dev/null and b/static/icons/06003241.png differ
diff --git a/static/icons/06003242.png b/static/icons/06003242.png
new file mode 100755
index 00000000..d7475789
Binary files /dev/null and b/static/icons/06003242.png differ
diff --git a/static/icons/06003243.png b/static/icons/06003243.png
new file mode 100755
index 00000000..285315a5
Binary files /dev/null and b/static/icons/06003243.png differ
diff --git a/static/icons/06003244.png b/static/icons/06003244.png
new file mode 100755
index 00000000..77fc8f3a
Binary files /dev/null and b/static/icons/06003244.png differ
diff --git a/static/icons/06003245.png b/static/icons/06003245.png
new file mode 100755
index 00000000..6d61f592
Binary files /dev/null and b/static/icons/06003245.png differ
diff --git a/static/icons/06003246.png b/static/icons/06003246.png
new file mode 100755
index 00000000..b13ac7b5
Binary files /dev/null and b/static/icons/06003246.png differ
diff --git a/static/icons/06003247.png b/static/icons/06003247.png
new file mode 100755
index 00000000..d7690486
Binary files /dev/null and b/static/icons/06003247.png differ
diff --git a/static/icons/06003248.png b/static/icons/06003248.png
new file mode 100755
index 00000000..c5e51874
Binary files /dev/null and b/static/icons/06003248.png differ
diff --git a/static/icons/06003249.png b/static/icons/06003249.png
new file mode 100755
index 00000000..c208440a
Binary files /dev/null and b/static/icons/06003249.png differ
diff --git a/static/icons/0600324A.png b/static/icons/0600324A.png
new file mode 100755
index 00000000..3b24e2e5
Binary files /dev/null and b/static/icons/0600324A.png differ
diff --git a/static/icons/0600324B.png b/static/icons/0600324B.png
new file mode 100755
index 00000000..07698ddb
Binary files /dev/null and b/static/icons/0600324B.png differ
diff --git a/static/icons/0600324D.png b/static/icons/0600324D.png
new file mode 100755
index 00000000..7da4a6a4
Binary files /dev/null and b/static/icons/0600324D.png differ
diff --git a/static/icons/0600324E.png b/static/icons/0600324E.png
new file mode 100755
index 00000000..962744dc
Binary files /dev/null and b/static/icons/0600324E.png differ
diff --git a/static/icons/0600324F.png b/static/icons/0600324F.png
new file mode 100755
index 00000000..cf91a0cc
Binary files /dev/null and b/static/icons/0600324F.png differ
diff --git a/static/icons/06003250.png b/static/icons/06003250.png
new file mode 100755
index 00000000..05daa10c
Binary files /dev/null and b/static/icons/06003250.png differ
diff --git a/static/icons/06003251.png b/static/icons/06003251.png
new file mode 100755
index 00000000..262658e7
Binary files /dev/null and b/static/icons/06003251.png differ
diff --git a/static/icons/06003252.png b/static/icons/06003252.png
new file mode 100755
index 00000000..8e338125
Binary files /dev/null and b/static/icons/06003252.png differ
diff --git a/static/icons/06003253.png b/static/icons/06003253.png
new file mode 100755
index 00000000..1f18728f
Binary files /dev/null and b/static/icons/06003253.png differ
diff --git a/static/icons/06003254.png b/static/icons/06003254.png
new file mode 100755
index 00000000..afc9eac9
Binary files /dev/null and b/static/icons/06003254.png differ
diff --git a/static/icons/06003255.png b/static/icons/06003255.png
new file mode 100755
index 00000000..d204cbd1
Binary files /dev/null and b/static/icons/06003255.png differ
diff --git a/static/icons/06003256.png b/static/icons/06003256.png
new file mode 100755
index 00000000..98a0463e
Binary files /dev/null and b/static/icons/06003256.png differ
diff --git a/static/icons/06003257.png b/static/icons/06003257.png
new file mode 100755
index 00000000..2d3b8a18
Binary files /dev/null and b/static/icons/06003257.png differ
diff --git a/static/icons/06003258.png b/static/icons/06003258.png
new file mode 100755
index 00000000..cd29c58d
Binary files /dev/null and b/static/icons/06003258.png differ
diff --git a/static/icons/06003259.png b/static/icons/06003259.png
new file mode 100755
index 00000000..68cfe4ce
Binary files /dev/null and b/static/icons/06003259.png differ
diff --git a/static/icons/0600325A.png b/static/icons/0600325A.png
new file mode 100755
index 00000000..1453d547
Binary files /dev/null and b/static/icons/0600325A.png differ
diff --git a/static/icons/0600325B.png b/static/icons/0600325B.png
new file mode 100755
index 00000000..be52a515
Binary files /dev/null and b/static/icons/0600325B.png differ
diff --git a/static/icons/0600325C.png b/static/icons/0600325C.png
new file mode 100755
index 00000000..0deac075
Binary files /dev/null and b/static/icons/0600325C.png differ
diff --git a/static/icons/0600325D.png b/static/icons/0600325D.png
new file mode 100755
index 00000000..0ad08695
Binary files /dev/null and b/static/icons/0600325D.png differ
diff --git a/static/icons/0600325E.png b/static/icons/0600325E.png
new file mode 100755
index 00000000..48f0fa08
Binary files /dev/null and b/static/icons/0600325E.png differ
diff --git a/static/icons/06003260.png b/static/icons/06003260.png
new file mode 100755
index 00000000..f6c3e110
Binary files /dev/null and b/static/icons/06003260.png differ
diff --git a/static/icons/06003261.png b/static/icons/06003261.png
new file mode 100755
index 00000000..349ce5c9
Binary files /dev/null and b/static/icons/06003261.png differ
diff --git a/static/icons/06003262.png b/static/icons/06003262.png
new file mode 100755
index 00000000..0a59b191
Binary files /dev/null and b/static/icons/06003262.png differ
diff --git a/static/icons/06003263.png b/static/icons/06003263.png
new file mode 100755
index 00000000..9853f447
Binary files /dev/null and b/static/icons/06003263.png differ
diff --git a/static/icons/06003264.png b/static/icons/06003264.png
new file mode 100755
index 00000000..6c1cd950
Binary files /dev/null and b/static/icons/06003264.png differ
diff --git a/static/icons/06003265.png b/static/icons/06003265.png
new file mode 100755
index 00000000..392d157a
Binary files /dev/null and b/static/icons/06003265.png differ
diff --git a/static/icons/06003266.png b/static/icons/06003266.png
new file mode 100755
index 00000000..c1f24fef
Binary files /dev/null and b/static/icons/06003266.png differ
diff --git a/static/icons/06003267.png b/static/icons/06003267.png
new file mode 100755
index 00000000..6f7de49c
Binary files /dev/null and b/static/icons/06003267.png differ
diff --git a/static/icons/06003268.png b/static/icons/06003268.png
new file mode 100755
index 00000000..6006d31e
Binary files /dev/null and b/static/icons/06003268.png differ
diff --git a/static/icons/06003269.png b/static/icons/06003269.png
new file mode 100755
index 00000000..459272cd
Binary files /dev/null and b/static/icons/06003269.png differ
diff --git a/static/icons/0600326A.png b/static/icons/0600326A.png
new file mode 100755
index 00000000..9571c341
Binary files /dev/null and b/static/icons/0600326A.png differ
diff --git a/static/icons/0600326B.png b/static/icons/0600326B.png
new file mode 100755
index 00000000..3c84b146
Binary files /dev/null and b/static/icons/0600326B.png differ
diff --git a/static/icons/0600326C.png b/static/icons/0600326C.png
new file mode 100755
index 00000000..da8df1b4
Binary files /dev/null and b/static/icons/0600326C.png differ
diff --git a/static/icons/0600326D.png b/static/icons/0600326D.png
new file mode 100755
index 00000000..4334c51c
Binary files /dev/null and b/static/icons/0600326D.png differ
diff --git a/static/icons/0600326E.png b/static/icons/0600326E.png
new file mode 100755
index 00000000..b81e6f57
Binary files /dev/null and b/static/icons/0600326E.png differ
diff --git a/static/icons/0600326F.png b/static/icons/0600326F.png
new file mode 100755
index 00000000..84f8d09b
Binary files /dev/null and b/static/icons/0600326F.png differ
diff --git a/static/icons/06003270.png b/static/icons/06003270.png
new file mode 100755
index 00000000..8bcbf081
Binary files /dev/null and b/static/icons/06003270.png differ
diff --git a/static/icons/06003271.png b/static/icons/06003271.png
new file mode 100755
index 00000000..b74d8aa5
Binary files /dev/null and b/static/icons/06003271.png differ
diff --git a/static/icons/06003272.png b/static/icons/06003272.png
new file mode 100755
index 00000000..d02ee91f
Binary files /dev/null and b/static/icons/06003272.png differ
diff --git a/static/icons/06003273.png b/static/icons/06003273.png
new file mode 100755
index 00000000..3e8441c3
Binary files /dev/null and b/static/icons/06003273.png differ
diff --git a/static/icons/06003274.png b/static/icons/06003274.png
new file mode 100755
index 00000000..7e42cfc6
Binary files /dev/null and b/static/icons/06003274.png differ
diff --git a/static/icons/06003275.png b/static/icons/06003275.png
new file mode 100755
index 00000000..70941543
Binary files /dev/null and b/static/icons/06003275.png differ
diff --git a/static/icons/06003276.png b/static/icons/06003276.png
new file mode 100755
index 00000000..ce5bb7b2
Binary files /dev/null and b/static/icons/06003276.png differ
diff --git a/static/icons/06003277.png b/static/icons/06003277.png
new file mode 100755
index 00000000..0a1390a2
Binary files /dev/null and b/static/icons/06003277.png differ
diff --git a/static/icons/06003278.png b/static/icons/06003278.png
new file mode 100755
index 00000000..e8c1e142
Binary files /dev/null and b/static/icons/06003278.png differ
diff --git a/static/icons/06003279.png b/static/icons/06003279.png
new file mode 100755
index 00000000..19371bd5
Binary files /dev/null and b/static/icons/06003279.png differ
diff --git a/static/icons/0600327A.png b/static/icons/0600327A.png
new file mode 100755
index 00000000..62f11614
Binary files /dev/null and b/static/icons/0600327A.png differ
diff --git a/static/icons/0600327B.png b/static/icons/0600327B.png
new file mode 100755
index 00000000..365eab4a
Binary files /dev/null and b/static/icons/0600327B.png differ
diff --git a/static/icons/0600327C.png b/static/icons/0600327C.png
new file mode 100755
index 00000000..d2ff9214
Binary files /dev/null and b/static/icons/0600327C.png differ
diff --git a/static/icons/0600327D.png b/static/icons/0600327D.png
new file mode 100755
index 00000000..557f5527
Binary files /dev/null and b/static/icons/0600327D.png differ
diff --git a/static/icons/0600327E.png b/static/icons/0600327E.png
new file mode 100755
index 00000000..5af03674
Binary files /dev/null and b/static/icons/0600327E.png differ
diff --git a/static/icons/0600327F.png b/static/icons/0600327F.png
new file mode 100755
index 00000000..5ed95803
Binary files /dev/null and b/static/icons/0600327F.png differ
diff --git a/static/icons/06003280.png b/static/icons/06003280.png
new file mode 100755
index 00000000..94388e27
Binary files /dev/null and b/static/icons/06003280.png differ
diff --git a/static/icons/06003281.png b/static/icons/06003281.png
new file mode 100755
index 00000000..711435b5
Binary files /dev/null and b/static/icons/06003281.png differ
diff --git a/static/icons/06003282.png b/static/icons/06003282.png
new file mode 100755
index 00000000..135dc6c4
Binary files /dev/null and b/static/icons/06003282.png differ
diff --git a/static/icons/06003283.png b/static/icons/06003283.png
new file mode 100755
index 00000000..9a6b3488
Binary files /dev/null and b/static/icons/06003283.png differ
diff --git a/static/icons/06003284.png b/static/icons/06003284.png
new file mode 100755
index 00000000..b4b1e3ec
Binary files /dev/null and b/static/icons/06003284.png differ
diff --git a/static/icons/06003286.png b/static/icons/06003286.png
new file mode 100755
index 00000000..f02bc484
Binary files /dev/null and b/static/icons/06003286.png differ
diff --git a/static/icons/06003287.png b/static/icons/06003287.png
new file mode 100755
index 00000000..ba46dd2d
Binary files /dev/null and b/static/icons/06003287.png differ
diff --git a/static/icons/06003288.png b/static/icons/06003288.png
new file mode 100755
index 00000000..66cf90c6
Binary files /dev/null and b/static/icons/06003288.png differ
diff --git a/static/icons/06003289.png b/static/icons/06003289.png
new file mode 100755
index 00000000..7711721a
Binary files /dev/null and b/static/icons/06003289.png differ
diff --git a/static/icons/0600328A.png b/static/icons/0600328A.png
new file mode 100755
index 00000000..4925feb1
Binary files /dev/null and b/static/icons/0600328A.png differ
diff --git a/static/icons/0600328B.png b/static/icons/0600328B.png
new file mode 100755
index 00000000..99090948
Binary files /dev/null and b/static/icons/0600328B.png differ
diff --git a/static/icons/0600328C.png b/static/icons/0600328C.png
new file mode 100755
index 00000000..6d9809c8
Binary files /dev/null and b/static/icons/0600328C.png differ
diff --git a/static/icons/0600328D.png b/static/icons/0600328D.png
new file mode 100755
index 00000000..0829b4ec
Binary files /dev/null and b/static/icons/0600328D.png differ
diff --git a/static/icons/0600328E.png b/static/icons/0600328E.png
new file mode 100755
index 00000000..46d3a8c8
Binary files /dev/null and b/static/icons/0600328E.png differ
diff --git a/static/icons/0600328F.png b/static/icons/0600328F.png
new file mode 100755
index 00000000..9815e4a6
Binary files /dev/null and b/static/icons/0600328F.png differ
diff --git a/static/icons/06003290.png b/static/icons/06003290.png
new file mode 100755
index 00000000..88984b93
Binary files /dev/null and b/static/icons/06003290.png differ
diff --git a/static/icons/06003291.png b/static/icons/06003291.png
new file mode 100755
index 00000000..9bfd28f4
Binary files /dev/null and b/static/icons/06003291.png differ
diff --git a/static/icons/06003292.png b/static/icons/06003292.png
new file mode 100755
index 00000000..2cc3a268
Binary files /dev/null and b/static/icons/06003292.png differ
diff --git a/static/icons/06003293.png b/static/icons/06003293.png
new file mode 100755
index 00000000..e81c1503
Binary files /dev/null and b/static/icons/06003293.png differ
diff --git a/static/icons/06003294.png b/static/icons/06003294.png
new file mode 100755
index 00000000..24909545
Binary files /dev/null and b/static/icons/06003294.png differ
diff --git a/static/icons/06003295.png b/static/icons/06003295.png
new file mode 100755
index 00000000..e94eece0
Binary files /dev/null and b/static/icons/06003295.png differ
diff --git a/static/icons/06003296.png b/static/icons/06003296.png
new file mode 100755
index 00000000..72333f57
Binary files /dev/null and b/static/icons/06003296.png differ
diff --git a/static/icons/06003297.png b/static/icons/06003297.png
new file mode 100755
index 00000000..3e74ef70
Binary files /dev/null and b/static/icons/06003297.png differ
diff --git a/static/icons/06003299.png b/static/icons/06003299.png
new file mode 100755
index 00000000..d192ef3b
Binary files /dev/null and b/static/icons/06003299.png differ
diff --git a/static/icons/0600329A.png b/static/icons/0600329A.png
new file mode 100755
index 00000000..bb6154c3
Binary files /dev/null and b/static/icons/0600329A.png differ
diff --git a/static/icons/0600329B.png b/static/icons/0600329B.png
new file mode 100755
index 00000000..a03df805
Binary files /dev/null and b/static/icons/0600329B.png differ
diff --git a/static/icons/0600329C.png b/static/icons/0600329C.png
new file mode 100755
index 00000000..2e214293
Binary files /dev/null and b/static/icons/0600329C.png differ
diff --git a/static/icons/0600329D.png b/static/icons/0600329D.png
new file mode 100755
index 00000000..48ca8880
Binary files /dev/null and b/static/icons/0600329D.png differ
diff --git a/static/icons/0600329E.png b/static/icons/0600329E.png
new file mode 100755
index 00000000..744428ef
Binary files /dev/null and b/static/icons/0600329E.png differ
diff --git a/static/icons/0600329F.png b/static/icons/0600329F.png
new file mode 100755
index 00000000..d4a37824
Binary files /dev/null and b/static/icons/0600329F.png differ
diff --git a/static/icons/060032A0.png b/static/icons/060032A0.png
new file mode 100755
index 00000000..b2a73034
Binary files /dev/null and b/static/icons/060032A0.png differ
diff --git a/static/icons/060032A1.png b/static/icons/060032A1.png
new file mode 100755
index 00000000..3524a61e
Binary files /dev/null and b/static/icons/060032A1.png differ
diff --git a/static/icons/060032A2.png b/static/icons/060032A2.png
new file mode 100755
index 00000000..2a1cffef
Binary files /dev/null and b/static/icons/060032A2.png differ
diff --git a/static/icons/060032A3.png b/static/icons/060032A3.png
new file mode 100755
index 00000000..e50a0768
Binary files /dev/null and b/static/icons/060032A3.png differ
diff --git a/static/icons/060032A4.png b/static/icons/060032A4.png
new file mode 100755
index 00000000..9bc4650c
Binary files /dev/null and b/static/icons/060032A4.png differ
diff --git a/static/icons/060032A5.png b/static/icons/060032A5.png
new file mode 100755
index 00000000..4c3ed1d5
Binary files /dev/null and b/static/icons/060032A5.png differ
diff --git a/static/icons/060032A6.png b/static/icons/060032A6.png
new file mode 100755
index 00000000..5e74d90b
Binary files /dev/null and b/static/icons/060032A6.png differ
diff --git a/static/icons/060032A7.png b/static/icons/060032A7.png
new file mode 100755
index 00000000..626aa50d
Binary files /dev/null and b/static/icons/060032A7.png differ
diff --git a/static/icons/060032A8.png b/static/icons/060032A8.png
new file mode 100755
index 00000000..364ae32f
Binary files /dev/null and b/static/icons/060032A8.png differ
diff --git a/static/icons/060032A9.png b/static/icons/060032A9.png
new file mode 100755
index 00000000..1de64cc7
Binary files /dev/null and b/static/icons/060032A9.png differ
diff --git a/static/icons/060032AA.png b/static/icons/060032AA.png
new file mode 100755
index 00000000..a0abc584
Binary files /dev/null and b/static/icons/060032AA.png differ
diff --git a/static/icons/060032AC.png b/static/icons/060032AC.png
new file mode 100755
index 00000000..1cb786c8
Binary files /dev/null and b/static/icons/060032AC.png differ
diff --git a/static/icons/060032AD.png b/static/icons/060032AD.png
new file mode 100755
index 00000000..da7ed526
Binary files /dev/null and b/static/icons/060032AD.png differ
diff --git a/static/icons/060032AE.png b/static/icons/060032AE.png
new file mode 100755
index 00000000..a44b9775
Binary files /dev/null and b/static/icons/060032AE.png differ
diff --git a/static/icons/060032AF.png b/static/icons/060032AF.png
new file mode 100755
index 00000000..9e2317ba
Binary files /dev/null and b/static/icons/060032AF.png differ
diff --git a/static/icons/060032B0.png b/static/icons/060032B0.png
new file mode 100755
index 00000000..885e7367
Binary files /dev/null and b/static/icons/060032B0.png differ
diff --git a/static/icons/060032B1.png b/static/icons/060032B1.png
new file mode 100755
index 00000000..aa3e666d
Binary files /dev/null and b/static/icons/060032B1.png differ
diff --git a/static/icons/060032B2.png b/static/icons/060032B2.png
new file mode 100755
index 00000000..4a0dae77
Binary files /dev/null and b/static/icons/060032B2.png differ
diff --git a/static/icons/060032B3.png b/static/icons/060032B3.png
new file mode 100755
index 00000000..95b52e40
Binary files /dev/null and b/static/icons/060032B3.png differ
diff --git a/static/icons/060032B4.png b/static/icons/060032B4.png
new file mode 100755
index 00000000..1daeb08c
Binary files /dev/null and b/static/icons/060032B4.png differ
diff --git a/static/icons/060032B5.png b/static/icons/060032B5.png
new file mode 100755
index 00000000..95f1ae4a
Binary files /dev/null and b/static/icons/060032B5.png differ
diff --git a/static/icons/060032B6.png b/static/icons/060032B6.png
new file mode 100755
index 00000000..fec29fd0
Binary files /dev/null and b/static/icons/060032B6.png differ
diff --git a/static/icons/060032B7.png b/static/icons/060032B7.png
new file mode 100755
index 00000000..e8f4f9a4
Binary files /dev/null and b/static/icons/060032B7.png differ
diff --git a/static/icons/060032B8.png b/static/icons/060032B8.png
new file mode 100755
index 00000000..aeaeae90
Binary files /dev/null and b/static/icons/060032B8.png differ
diff --git a/static/icons/060032B9.png b/static/icons/060032B9.png
new file mode 100755
index 00000000..dc1e6167
Binary files /dev/null and b/static/icons/060032B9.png differ
diff --git a/static/icons/060032BA.png b/static/icons/060032BA.png
new file mode 100755
index 00000000..967637d3
Binary files /dev/null and b/static/icons/060032BA.png differ
diff --git a/static/icons/060032BB.png b/static/icons/060032BB.png
new file mode 100755
index 00000000..c3e0a317
Binary files /dev/null and b/static/icons/060032BB.png differ
diff --git a/static/icons/060032BC.png b/static/icons/060032BC.png
new file mode 100755
index 00000000..da4b37bc
Binary files /dev/null and b/static/icons/060032BC.png differ
diff --git a/static/icons/060032BD.png b/static/icons/060032BD.png
new file mode 100755
index 00000000..c94acf23
Binary files /dev/null and b/static/icons/060032BD.png differ
diff --git a/static/icons/060032BE.png b/static/icons/060032BE.png
new file mode 100755
index 00000000..9c5cfec9
Binary files /dev/null and b/static/icons/060032BE.png differ
diff --git a/static/icons/060032BF.png b/static/icons/060032BF.png
new file mode 100755
index 00000000..730b6745
Binary files /dev/null and b/static/icons/060032BF.png differ
diff --git a/static/icons/060032C0.png b/static/icons/060032C0.png
new file mode 100755
index 00000000..c55eefbb
Binary files /dev/null and b/static/icons/060032C0.png differ
diff --git a/static/icons/060032C1.png b/static/icons/060032C1.png
new file mode 100755
index 00000000..1c206753
Binary files /dev/null and b/static/icons/060032C1.png differ
diff --git a/static/icons/060032C2.png b/static/icons/060032C2.png
new file mode 100755
index 00000000..73d00a4f
Binary files /dev/null and b/static/icons/060032C2.png differ
diff --git a/static/icons/060032C3.png b/static/icons/060032C3.png
new file mode 100755
index 00000000..007319e8
Binary files /dev/null and b/static/icons/060032C3.png differ
diff --git a/static/icons/060032C4.png b/static/icons/060032C4.png
new file mode 100755
index 00000000..82cfb254
Binary files /dev/null and b/static/icons/060032C4.png differ
diff --git a/static/icons/060032C5.png b/static/icons/060032C5.png
new file mode 100755
index 00000000..6bc0f932
Binary files /dev/null and b/static/icons/060032C5.png differ
diff --git a/static/icons/060032C8.png b/static/icons/060032C8.png
new file mode 100755
index 00000000..d1d9055b
Binary files /dev/null and b/static/icons/060032C8.png differ
diff --git a/static/icons/060032C9.png b/static/icons/060032C9.png
new file mode 100755
index 00000000..b35f96ee
Binary files /dev/null and b/static/icons/060032C9.png differ
diff --git a/static/icons/060032CA.png b/static/icons/060032CA.png
new file mode 100755
index 00000000..5210c039
Binary files /dev/null and b/static/icons/060032CA.png differ
diff --git a/static/icons/060032CB.png b/static/icons/060032CB.png
new file mode 100755
index 00000000..069d4f59
Binary files /dev/null and b/static/icons/060032CB.png differ
diff --git a/static/icons/060032CC.png b/static/icons/060032CC.png
new file mode 100755
index 00000000..10185dfc
Binary files /dev/null and b/static/icons/060032CC.png differ
diff --git a/static/icons/060032CD.png b/static/icons/060032CD.png
new file mode 100755
index 00000000..69f23c23
Binary files /dev/null and b/static/icons/060032CD.png differ
diff --git a/static/icons/060032CE.png b/static/icons/060032CE.png
new file mode 100755
index 00000000..235d149b
Binary files /dev/null and b/static/icons/060032CE.png differ
diff --git a/static/icons/060032CF.png b/static/icons/060032CF.png
new file mode 100755
index 00000000..77c15e58
Binary files /dev/null and b/static/icons/060032CF.png differ
diff --git a/static/icons/060032D0.png b/static/icons/060032D0.png
new file mode 100755
index 00000000..6d479ef3
Binary files /dev/null and b/static/icons/060032D0.png differ
diff --git a/static/icons/060032D1.png b/static/icons/060032D1.png
new file mode 100755
index 00000000..89e002f7
Binary files /dev/null and b/static/icons/060032D1.png differ
diff --git a/static/icons/060032D2.png b/static/icons/060032D2.png
new file mode 100755
index 00000000..00c2060f
Binary files /dev/null and b/static/icons/060032D2.png differ
diff --git a/static/icons/060032D3.png b/static/icons/060032D3.png
new file mode 100755
index 00000000..50317320
Binary files /dev/null and b/static/icons/060032D3.png differ
diff --git a/static/icons/060032D4.png b/static/icons/060032D4.png
new file mode 100755
index 00000000..6a008c32
Binary files /dev/null and b/static/icons/060032D4.png differ
diff --git a/static/icons/060032D5.png b/static/icons/060032D5.png
new file mode 100755
index 00000000..a1cf517b
Binary files /dev/null and b/static/icons/060032D5.png differ
diff --git a/static/icons/060032D6.png b/static/icons/060032D6.png
new file mode 100755
index 00000000..e18533d5
Binary files /dev/null and b/static/icons/060032D6.png differ
diff --git a/static/icons/060032D7.png b/static/icons/060032D7.png
new file mode 100755
index 00000000..9be22df6
Binary files /dev/null and b/static/icons/060032D7.png differ
diff --git a/static/icons/060032D8.png b/static/icons/060032D8.png
new file mode 100755
index 00000000..86c87698
Binary files /dev/null and b/static/icons/060032D8.png differ
diff --git a/static/icons/060032D9.png b/static/icons/060032D9.png
new file mode 100755
index 00000000..be87249c
Binary files /dev/null and b/static/icons/060032D9.png differ
diff --git a/static/icons/060032DA.png b/static/icons/060032DA.png
new file mode 100755
index 00000000..805dea47
Binary files /dev/null and b/static/icons/060032DA.png differ
diff --git a/static/icons/060032DB.png b/static/icons/060032DB.png
new file mode 100755
index 00000000..e6aedfb8
Binary files /dev/null and b/static/icons/060032DB.png differ
diff --git a/static/icons/060032DC.png b/static/icons/060032DC.png
new file mode 100755
index 00000000..ef4ed922
Binary files /dev/null and b/static/icons/060032DC.png differ
diff --git a/static/icons/060032DD.png b/static/icons/060032DD.png
new file mode 100755
index 00000000..257e5c56
Binary files /dev/null and b/static/icons/060032DD.png differ
diff --git a/static/icons/060032DE.png b/static/icons/060032DE.png
new file mode 100755
index 00000000..b39e364e
Binary files /dev/null and b/static/icons/060032DE.png differ
diff --git a/static/icons/060032DF.png b/static/icons/060032DF.png
new file mode 100755
index 00000000..2a4076e4
Binary files /dev/null and b/static/icons/060032DF.png differ
diff --git a/static/icons/060032E0.png b/static/icons/060032E0.png
new file mode 100755
index 00000000..58bd3a2a
Binary files /dev/null and b/static/icons/060032E0.png differ
diff --git a/static/icons/060032E1.png b/static/icons/060032E1.png
new file mode 100755
index 00000000..d95d8355
Binary files /dev/null and b/static/icons/060032E1.png differ
diff --git a/static/icons/060032E2.png b/static/icons/060032E2.png
new file mode 100755
index 00000000..e4229777
Binary files /dev/null and b/static/icons/060032E2.png differ
diff --git a/static/icons/060032E3.png b/static/icons/060032E3.png
new file mode 100755
index 00000000..bd115c0c
Binary files /dev/null and b/static/icons/060032E3.png differ
diff --git a/static/icons/060032E4.png b/static/icons/060032E4.png
new file mode 100755
index 00000000..831b7ec7
Binary files /dev/null and b/static/icons/060032E4.png differ
diff --git a/static/icons/060032E5.png b/static/icons/060032E5.png
new file mode 100755
index 00000000..b54a81b2
Binary files /dev/null and b/static/icons/060032E5.png differ
diff --git a/static/icons/060032E6.png b/static/icons/060032E6.png
new file mode 100755
index 00000000..c9ebcc5b
Binary files /dev/null and b/static/icons/060032E6.png differ
diff --git a/static/icons/060032EF.png b/static/icons/060032EF.png
new file mode 100755
index 00000000..174a7f75
Binary files /dev/null and b/static/icons/060032EF.png differ
diff --git a/static/icons/060032F0.png b/static/icons/060032F0.png
new file mode 100755
index 00000000..a37e9165
Binary files /dev/null and b/static/icons/060032F0.png differ
diff --git a/static/icons/060032F1.png b/static/icons/060032F1.png
new file mode 100755
index 00000000..8f3193ff
Binary files /dev/null and b/static/icons/060032F1.png differ
diff --git a/static/icons/060032F2.png b/static/icons/060032F2.png
new file mode 100755
index 00000000..b9c56ed9
Binary files /dev/null and b/static/icons/060032F2.png differ
diff --git a/static/icons/060032F3.png b/static/icons/060032F3.png
new file mode 100755
index 00000000..2f52ba51
Binary files /dev/null and b/static/icons/060032F3.png differ
diff --git a/static/icons/060032F4.png b/static/icons/060032F4.png
new file mode 100755
index 00000000..9ab73ce2
Binary files /dev/null and b/static/icons/060032F4.png differ
diff --git a/static/icons/060032F5.png b/static/icons/060032F5.png
new file mode 100755
index 00000000..eebfeeca
Binary files /dev/null and b/static/icons/060032F5.png differ
diff --git a/static/icons/060032F6.png b/static/icons/060032F6.png
new file mode 100755
index 00000000..079ff258
Binary files /dev/null and b/static/icons/060032F6.png differ
diff --git a/static/icons/060032F7.png b/static/icons/060032F7.png
new file mode 100755
index 00000000..388c9192
Binary files /dev/null and b/static/icons/060032F7.png differ
diff --git a/static/icons/060032F8.png b/static/icons/060032F8.png
new file mode 100755
index 00000000..5808e90a
Binary files /dev/null and b/static/icons/060032F8.png differ
diff --git a/static/icons/060032FA.png b/static/icons/060032FA.png
new file mode 100755
index 00000000..a9f4da8e
Binary files /dev/null and b/static/icons/060032FA.png differ
diff --git a/static/icons/060032FB.png b/static/icons/060032FB.png
new file mode 100755
index 00000000..510dfb39
Binary files /dev/null and b/static/icons/060032FB.png differ
diff --git a/static/icons/060032FD.png b/static/icons/060032FD.png
new file mode 100755
index 00000000..56c2494f
Binary files /dev/null and b/static/icons/060032FD.png differ
diff --git a/static/icons/060032FF.png b/static/icons/060032FF.png
new file mode 100755
index 00000000..9088b4bd
Binary files /dev/null and b/static/icons/060032FF.png differ
diff --git a/static/icons/06003300.png b/static/icons/06003300.png
new file mode 100755
index 00000000..963fd0f1
Binary files /dev/null and b/static/icons/06003300.png differ
diff --git a/static/icons/06003301.png b/static/icons/06003301.png
new file mode 100755
index 00000000..889f3a76
Binary files /dev/null and b/static/icons/06003301.png differ
diff --git a/static/icons/06003302.png b/static/icons/06003302.png
new file mode 100755
index 00000000..b5c2f217
Binary files /dev/null and b/static/icons/06003302.png differ
diff --git a/static/icons/06003303.png b/static/icons/06003303.png
new file mode 100755
index 00000000..4ccbaf80
Binary files /dev/null and b/static/icons/06003303.png differ
diff --git a/static/icons/06003304.png b/static/icons/06003304.png
new file mode 100755
index 00000000..4a0e4616
Binary files /dev/null and b/static/icons/06003304.png differ
diff --git a/static/icons/06003306.png b/static/icons/06003306.png
new file mode 100755
index 00000000..8cff8cea
Binary files /dev/null and b/static/icons/06003306.png differ
diff --git a/static/icons/06003307.png b/static/icons/06003307.png
new file mode 100755
index 00000000..11ed0760
Binary files /dev/null and b/static/icons/06003307.png differ
diff --git a/static/icons/06003308.png b/static/icons/06003308.png
new file mode 100755
index 00000000..8fe5532c
Binary files /dev/null and b/static/icons/06003308.png differ
diff --git a/static/icons/06003309.png b/static/icons/06003309.png
new file mode 100755
index 00000000..553b1c32
Binary files /dev/null and b/static/icons/06003309.png differ
diff --git a/static/icons/0600330A.png b/static/icons/0600330A.png
new file mode 100755
index 00000000..ea246487
Binary files /dev/null and b/static/icons/0600330A.png differ
diff --git a/static/icons/0600330B.png b/static/icons/0600330B.png
new file mode 100755
index 00000000..7eeddbec
Binary files /dev/null and b/static/icons/0600330B.png differ
diff --git a/static/icons/0600330C.png b/static/icons/0600330C.png
new file mode 100755
index 00000000..a8db872c
Binary files /dev/null and b/static/icons/0600330C.png differ
diff --git a/static/icons/0600330E.png b/static/icons/0600330E.png
new file mode 100755
index 00000000..5777cabd
Binary files /dev/null and b/static/icons/0600330E.png differ
diff --git a/static/icons/0600330F.png b/static/icons/0600330F.png
new file mode 100755
index 00000000..3b1ac0ec
Binary files /dev/null and b/static/icons/0600330F.png differ
diff --git a/static/icons/06003310.png b/static/icons/06003310.png
new file mode 100755
index 00000000..50e5d36e
Binary files /dev/null and b/static/icons/06003310.png differ
diff --git a/static/icons/06003311.png b/static/icons/06003311.png
new file mode 100755
index 00000000..7765f416
Binary files /dev/null and b/static/icons/06003311.png differ
diff --git a/static/icons/06003312.png b/static/icons/06003312.png
new file mode 100755
index 00000000..c9b2107e
Binary files /dev/null and b/static/icons/06003312.png differ
diff --git a/static/icons/06003313.png b/static/icons/06003313.png
new file mode 100755
index 00000000..cf7e591e
Binary files /dev/null and b/static/icons/06003313.png differ
diff --git a/static/icons/06003314.png b/static/icons/06003314.png
new file mode 100755
index 00000000..018f0fe6
Binary files /dev/null and b/static/icons/06003314.png differ
diff --git a/static/icons/06003316.png b/static/icons/06003316.png
new file mode 100755
index 00000000..e198a6e0
Binary files /dev/null and b/static/icons/06003316.png differ
diff --git a/static/icons/06003317.png b/static/icons/06003317.png
new file mode 100755
index 00000000..1be18e66
Binary files /dev/null and b/static/icons/06003317.png differ
diff --git a/static/icons/06003318.png b/static/icons/06003318.png
new file mode 100755
index 00000000..d384fc90
Binary files /dev/null and b/static/icons/06003318.png differ
diff --git a/static/icons/06003319.png b/static/icons/06003319.png
new file mode 100755
index 00000000..056477ec
Binary files /dev/null and b/static/icons/06003319.png differ
diff --git a/static/icons/0600331A.png b/static/icons/0600331A.png
new file mode 100755
index 00000000..cba50188
Binary files /dev/null and b/static/icons/0600331A.png differ
diff --git a/static/icons/0600331B.png b/static/icons/0600331B.png
new file mode 100755
index 00000000..02a9a810
Binary files /dev/null and b/static/icons/0600331B.png differ
diff --git a/static/icons/0600331C.png b/static/icons/0600331C.png
new file mode 100755
index 00000000..38b80817
Binary files /dev/null and b/static/icons/0600331C.png differ
diff --git a/static/icons/0600331E.png b/static/icons/0600331E.png
new file mode 100755
index 00000000..2aca1254
Binary files /dev/null and b/static/icons/0600331E.png differ
diff --git a/static/icons/0600331F.png b/static/icons/0600331F.png
new file mode 100755
index 00000000..a318f357
Binary files /dev/null and b/static/icons/0600331F.png differ
diff --git a/static/icons/06003320.png b/static/icons/06003320.png
new file mode 100755
index 00000000..92ea118d
Binary files /dev/null and b/static/icons/06003320.png differ
diff --git a/static/icons/06003321.png b/static/icons/06003321.png
new file mode 100755
index 00000000..31af8ada
Binary files /dev/null and b/static/icons/06003321.png differ
diff --git a/static/icons/06003322.png b/static/icons/06003322.png
new file mode 100755
index 00000000..9b832051
Binary files /dev/null and b/static/icons/06003322.png differ
diff --git a/static/icons/06003323.png b/static/icons/06003323.png
new file mode 100755
index 00000000..4fa74040
Binary files /dev/null and b/static/icons/06003323.png differ
diff --git a/static/icons/06003324.png b/static/icons/06003324.png
new file mode 100755
index 00000000..91c530df
Binary files /dev/null and b/static/icons/06003324.png differ
diff --git a/static/icons/06003325.png b/static/icons/06003325.png
new file mode 100755
index 00000000..66d80b4f
Binary files /dev/null and b/static/icons/06003325.png differ
diff --git a/static/icons/06003326.png b/static/icons/06003326.png
new file mode 100755
index 00000000..8bfe668e
Binary files /dev/null and b/static/icons/06003326.png differ
diff --git a/static/icons/06003327.png b/static/icons/06003327.png
new file mode 100755
index 00000000..4f87fcb4
Binary files /dev/null and b/static/icons/06003327.png differ
diff --git a/static/icons/06003328.png b/static/icons/06003328.png
new file mode 100755
index 00000000..1e010c26
Binary files /dev/null and b/static/icons/06003328.png differ
diff --git a/static/icons/06003329.png b/static/icons/06003329.png
new file mode 100755
index 00000000..9fc23da9
Binary files /dev/null and b/static/icons/06003329.png differ
diff --git a/static/icons/0600332A.png b/static/icons/0600332A.png
new file mode 100755
index 00000000..306bfcc5
Binary files /dev/null and b/static/icons/0600332A.png differ
diff --git a/static/icons/0600332B.png b/static/icons/0600332B.png
new file mode 100755
index 00000000..95ce1225
Binary files /dev/null and b/static/icons/0600332B.png differ
diff --git a/static/icons/0600332C.png b/static/icons/0600332C.png
new file mode 100755
index 00000000..0d695c22
Binary files /dev/null and b/static/icons/0600332C.png differ
diff --git a/static/icons/0600332D.png b/static/icons/0600332D.png
new file mode 100755
index 00000000..83e1c144
Binary files /dev/null and b/static/icons/0600332D.png differ
diff --git a/static/icons/0600332E.png b/static/icons/0600332E.png
new file mode 100755
index 00000000..641ee4ca
Binary files /dev/null and b/static/icons/0600332E.png differ
diff --git a/static/icons/0600332F.png b/static/icons/0600332F.png
new file mode 100755
index 00000000..23e3f8ca
Binary files /dev/null and b/static/icons/0600332F.png differ
diff --git a/static/icons/06003330.png b/static/icons/06003330.png
new file mode 100755
index 00000000..8096e510
Binary files /dev/null and b/static/icons/06003330.png differ
diff --git a/static/icons/06003331.png b/static/icons/06003331.png
new file mode 100755
index 00000000..482eb23c
Binary files /dev/null and b/static/icons/06003331.png differ
diff --git a/static/icons/06003332.png b/static/icons/06003332.png
new file mode 100755
index 00000000..0813a9fd
Binary files /dev/null and b/static/icons/06003332.png differ
diff --git a/static/icons/06003333.png b/static/icons/06003333.png
new file mode 100755
index 00000000..fa03a1f5
Binary files /dev/null and b/static/icons/06003333.png differ
diff --git a/static/icons/06003334.png b/static/icons/06003334.png
new file mode 100755
index 00000000..3d23f414
Binary files /dev/null and b/static/icons/06003334.png differ
diff --git a/static/icons/06003335.png b/static/icons/06003335.png
new file mode 100755
index 00000000..0d422e10
Binary files /dev/null and b/static/icons/06003335.png differ
diff --git a/static/icons/06003336.png b/static/icons/06003336.png
new file mode 100755
index 00000000..94366f50
Binary files /dev/null and b/static/icons/06003336.png differ
diff --git a/static/icons/06003337.png b/static/icons/06003337.png
new file mode 100755
index 00000000..fa9d849d
Binary files /dev/null and b/static/icons/06003337.png differ
diff --git a/static/icons/06003338.png b/static/icons/06003338.png
new file mode 100755
index 00000000..1de63e84
Binary files /dev/null and b/static/icons/06003338.png differ
diff --git a/static/icons/06003339.png b/static/icons/06003339.png
new file mode 100755
index 00000000..84033248
Binary files /dev/null and b/static/icons/06003339.png differ
diff --git a/static/icons/0600333A.png b/static/icons/0600333A.png
new file mode 100755
index 00000000..c9c08bc3
Binary files /dev/null and b/static/icons/0600333A.png differ
diff --git a/static/icons/0600333B.png b/static/icons/0600333B.png
new file mode 100755
index 00000000..5f93a170
Binary files /dev/null and b/static/icons/0600333B.png differ
diff --git a/static/icons/0600333C.png b/static/icons/0600333C.png
new file mode 100755
index 00000000..e7216f3a
Binary files /dev/null and b/static/icons/0600333C.png differ
diff --git a/static/icons/0600333D.png b/static/icons/0600333D.png
new file mode 100755
index 00000000..8bac3b1c
Binary files /dev/null and b/static/icons/0600333D.png differ
diff --git a/static/icons/0600333E.png b/static/icons/0600333E.png
new file mode 100755
index 00000000..cbb98418
Binary files /dev/null and b/static/icons/0600333E.png differ
diff --git a/static/icons/0600333F.png b/static/icons/0600333F.png
new file mode 100755
index 00000000..9a38acec
Binary files /dev/null and b/static/icons/0600333F.png differ
diff --git a/static/icons/06003340.png b/static/icons/06003340.png
new file mode 100755
index 00000000..56ffa6a1
Binary files /dev/null and b/static/icons/06003340.png differ
diff --git a/static/icons/06003341.png b/static/icons/06003341.png
new file mode 100755
index 00000000..faf02981
Binary files /dev/null and b/static/icons/06003341.png differ
diff --git a/static/icons/06003342.png b/static/icons/06003342.png
new file mode 100755
index 00000000..ae19e41c
Binary files /dev/null and b/static/icons/06003342.png differ
diff --git a/static/icons/06003343.png b/static/icons/06003343.png
new file mode 100755
index 00000000..a8c0a9ee
Binary files /dev/null and b/static/icons/06003343.png differ
diff --git a/static/icons/06003344.png b/static/icons/06003344.png
new file mode 100755
index 00000000..24e45b83
Binary files /dev/null and b/static/icons/06003344.png differ
diff --git a/static/icons/06003345.png b/static/icons/06003345.png
new file mode 100755
index 00000000..64ce35c9
Binary files /dev/null and b/static/icons/06003345.png differ
diff --git a/static/icons/06003346.png b/static/icons/06003346.png
new file mode 100755
index 00000000..c8987db9
Binary files /dev/null and b/static/icons/06003346.png differ
diff --git a/static/icons/06003347.png b/static/icons/06003347.png
new file mode 100755
index 00000000..7e4fada6
Binary files /dev/null and b/static/icons/06003347.png differ
diff --git a/static/icons/06003348.png b/static/icons/06003348.png
new file mode 100755
index 00000000..aa5dc37e
Binary files /dev/null and b/static/icons/06003348.png differ
diff --git a/static/icons/06003349.png b/static/icons/06003349.png
new file mode 100755
index 00000000..1ae5a55e
Binary files /dev/null and b/static/icons/06003349.png differ
diff --git a/static/icons/0600334A.png b/static/icons/0600334A.png
new file mode 100755
index 00000000..a1c6b1e5
Binary files /dev/null and b/static/icons/0600334A.png differ
diff --git a/static/icons/0600334B.png b/static/icons/0600334B.png
new file mode 100755
index 00000000..bdafc9b2
Binary files /dev/null and b/static/icons/0600334B.png differ
diff --git a/static/icons/0600334C.png b/static/icons/0600334C.png
new file mode 100755
index 00000000..c4926a85
Binary files /dev/null and b/static/icons/0600334C.png differ
diff --git a/static/icons/0600334D.png b/static/icons/0600334D.png
new file mode 100755
index 00000000..e7fce286
Binary files /dev/null and b/static/icons/0600334D.png differ
diff --git a/static/icons/0600334E.png b/static/icons/0600334E.png
new file mode 100755
index 00000000..bf9a779a
Binary files /dev/null and b/static/icons/0600334E.png differ
diff --git a/static/icons/0600334F.png b/static/icons/0600334F.png
new file mode 100755
index 00000000..1052293c
Binary files /dev/null and b/static/icons/0600334F.png differ
diff --git a/static/icons/06003350.png b/static/icons/06003350.png
new file mode 100755
index 00000000..a931db74
Binary files /dev/null and b/static/icons/06003350.png differ
diff --git a/static/icons/06003351.png b/static/icons/06003351.png
new file mode 100755
index 00000000..2d4d72d6
Binary files /dev/null and b/static/icons/06003351.png differ
diff --git a/static/icons/06003352.png b/static/icons/06003352.png
new file mode 100755
index 00000000..c59fc407
Binary files /dev/null and b/static/icons/06003352.png differ
diff --git a/static/icons/06003353.png b/static/icons/06003353.png
new file mode 100755
index 00000000..c4f390e1
Binary files /dev/null and b/static/icons/06003353.png differ
diff --git a/static/icons/06003354.png b/static/icons/06003354.png
new file mode 100755
index 00000000..7b0c0d2f
Binary files /dev/null and b/static/icons/06003354.png differ
diff --git a/static/icons/06003355.png b/static/icons/06003355.png
new file mode 100755
index 00000000..da97a2d6
Binary files /dev/null and b/static/icons/06003355.png differ
diff --git a/static/icons/06003356.png b/static/icons/06003356.png
new file mode 100755
index 00000000..1ecdd1e1
Binary files /dev/null and b/static/icons/06003356.png differ
diff --git a/static/icons/06003357.png b/static/icons/06003357.png
new file mode 100755
index 00000000..0b2899dd
Binary files /dev/null and b/static/icons/06003357.png differ
diff --git a/static/icons/06003358.png b/static/icons/06003358.png
new file mode 100755
index 00000000..61a0a07c
Binary files /dev/null and b/static/icons/06003358.png differ
diff --git a/static/icons/06003359.png b/static/icons/06003359.png
new file mode 100755
index 00000000..565f859f
Binary files /dev/null and b/static/icons/06003359.png differ
diff --git a/static/icons/0600335A.png b/static/icons/0600335A.png
new file mode 100755
index 00000000..b48b27ef
Binary files /dev/null and b/static/icons/0600335A.png differ
diff --git a/static/icons/0600335B.png b/static/icons/0600335B.png
new file mode 100755
index 00000000..13f6e82f
Binary files /dev/null and b/static/icons/0600335B.png differ
diff --git a/static/icons/0600335C.png b/static/icons/0600335C.png
new file mode 100755
index 00000000..bb24b47a
Binary files /dev/null and b/static/icons/0600335C.png differ
diff --git a/static/icons/0600335D.png b/static/icons/0600335D.png
new file mode 100755
index 00000000..9ac48f7f
Binary files /dev/null and b/static/icons/0600335D.png differ
diff --git a/static/icons/0600335E.png b/static/icons/0600335E.png
new file mode 100755
index 00000000..5653f970
Binary files /dev/null and b/static/icons/0600335E.png differ
diff --git a/static/icons/0600335F.png b/static/icons/0600335F.png
new file mode 100755
index 00000000..bbfb274d
Binary files /dev/null and b/static/icons/0600335F.png differ
diff --git a/static/icons/06003360.png b/static/icons/06003360.png
new file mode 100755
index 00000000..402ae1d5
Binary files /dev/null and b/static/icons/06003360.png differ
diff --git a/static/icons/06003361.png b/static/icons/06003361.png
new file mode 100755
index 00000000..40da3b28
Binary files /dev/null and b/static/icons/06003361.png differ
diff --git a/static/icons/06003362.png b/static/icons/06003362.png
new file mode 100755
index 00000000..72258996
Binary files /dev/null and b/static/icons/06003362.png differ
diff --git a/static/icons/06003363.png b/static/icons/06003363.png
new file mode 100755
index 00000000..c69d7cad
Binary files /dev/null and b/static/icons/06003363.png differ
diff --git a/static/icons/06003364.png b/static/icons/06003364.png
new file mode 100755
index 00000000..61ba42da
Binary files /dev/null and b/static/icons/06003364.png differ
diff --git a/static/icons/06003365.png b/static/icons/06003365.png
new file mode 100755
index 00000000..bd670212
Binary files /dev/null and b/static/icons/06003365.png differ
diff --git a/static/icons/06003366.png b/static/icons/06003366.png
new file mode 100755
index 00000000..848c5a0d
Binary files /dev/null and b/static/icons/06003366.png differ
diff --git a/static/icons/06003367.png b/static/icons/06003367.png
new file mode 100755
index 00000000..a1774be4
Binary files /dev/null and b/static/icons/06003367.png differ
diff --git a/static/icons/06003368.png b/static/icons/06003368.png
new file mode 100755
index 00000000..c697974c
Binary files /dev/null and b/static/icons/06003368.png differ
diff --git a/static/icons/06003369.png b/static/icons/06003369.png
new file mode 100755
index 00000000..268bd3fd
Binary files /dev/null and b/static/icons/06003369.png differ
diff --git a/static/icons/0600336A.png b/static/icons/0600336A.png
new file mode 100755
index 00000000..27ca1a59
Binary files /dev/null and b/static/icons/0600336A.png differ
diff --git a/static/icons/0600336B.png b/static/icons/0600336B.png
new file mode 100755
index 00000000..0698e902
Binary files /dev/null and b/static/icons/0600336B.png differ
diff --git a/static/icons/0600336C.png b/static/icons/0600336C.png
new file mode 100755
index 00000000..2990132b
Binary files /dev/null and b/static/icons/0600336C.png differ
diff --git a/static/icons/0600336D.png b/static/icons/0600336D.png
new file mode 100755
index 00000000..17b7eb3b
Binary files /dev/null and b/static/icons/0600336D.png differ
diff --git a/static/icons/0600336E.png b/static/icons/0600336E.png
new file mode 100755
index 00000000..a07b3d8b
Binary files /dev/null and b/static/icons/0600336E.png differ
diff --git a/static/icons/0600336F.png b/static/icons/0600336F.png
new file mode 100755
index 00000000..e278166f
Binary files /dev/null and b/static/icons/0600336F.png differ
diff --git a/static/icons/06003370.png b/static/icons/06003370.png
new file mode 100755
index 00000000..e4ceb876
Binary files /dev/null and b/static/icons/06003370.png differ
diff --git a/static/icons/06003371.png b/static/icons/06003371.png
new file mode 100755
index 00000000..fd86c481
Binary files /dev/null and b/static/icons/06003371.png differ
diff --git a/static/icons/06003372.png b/static/icons/06003372.png
new file mode 100755
index 00000000..fa231abe
Binary files /dev/null and b/static/icons/06003372.png differ
diff --git a/static/icons/06003373.png b/static/icons/06003373.png
new file mode 100755
index 00000000..749d0f36
Binary files /dev/null and b/static/icons/06003373.png differ
diff --git a/static/icons/06003374.png b/static/icons/06003374.png
new file mode 100755
index 00000000..86c977f1
Binary files /dev/null and b/static/icons/06003374.png differ
diff --git a/static/icons/06003375.png b/static/icons/06003375.png
new file mode 100755
index 00000000..9e552b75
Binary files /dev/null and b/static/icons/06003375.png differ
diff --git a/static/icons/06003376.png b/static/icons/06003376.png
new file mode 100755
index 00000000..28d62d21
Binary files /dev/null and b/static/icons/06003376.png differ
diff --git a/static/icons/06003377.png b/static/icons/06003377.png
new file mode 100755
index 00000000..983376ee
Binary files /dev/null and b/static/icons/06003377.png differ
diff --git a/static/icons/06003378.png b/static/icons/06003378.png
new file mode 100755
index 00000000..4a666e01
Binary files /dev/null and b/static/icons/06003378.png differ
diff --git a/static/icons/06003379.png b/static/icons/06003379.png
new file mode 100755
index 00000000..796b4eac
Binary files /dev/null and b/static/icons/06003379.png differ
diff --git a/static/icons/0600337A.png b/static/icons/0600337A.png
new file mode 100755
index 00000000..f6ae9c49
Binary files /dev/null and b/static/icons/0600337A.png differ
diff --git a/static/icons/0600337B.png b/static/icons/0600337B.png
new file mode 100755
index 00000000..9052ebbe
Binary files /dev/null and b/static/icons/0600337B.png differ
diff --git a/static/icons/0600337C.png b/static/icons/0600337C.png
new file mode 100755
index 00000000..6b04b3fb
Binary files /dev/null and b/static/icons/0600337C.png differ
diff --git a/static/icons/0600337D.png b/static/icons/0600337D.png
new file mode 100755
index 00000000..78d3c243
Binary files /dev/null and b/static/icons/0600337D.png differ
diff --git a/static/icons/0600337E.png b/static/icons/0600337E.png
new file mode 100755
index 00000000..30209c9d
Binary files /dev/null and b/static/icons/0600337E.png differ
diff --git a/static/icons/0600337F.png b/static/icons/0600337F.png
new file mode 100755
index 00000000..6ecacef2
Binary files /dev/null and b/static/icons/0600337F.png differ
diff --git a/static/icons/06003380.png b/static/icons/06003380.png
new file mode 100755
index 00000000..387d29be
Binary files /dev/null and b/static/icons/06003380.png differ
diff --git a/static/icons/06003383.png b/static/icons/06003383.png
new file mode 100755
index 00000000..ee83ce95
Binary files /dev/null and b/static/icons/06003383.png differ
diff --git a/static/icons/06003384.png b/static/icons/06003384.png
new file mode 100755
index 00000000..7ab5e486
Binary files /dev/null and b/static/icons/06003384.png differ
diff --git a/static/icons/06003385.png b/static/icons/06003385.png
new file mode 100755
index 00000000..6ace98e2
Binary files /dev/null and b/static/icons/06003385.png differ
diff --git a/static/icons/06003386.png b/static/icons/06003386.png
new file mode 100755
index 00000000..6de52b52
Binary files /dev/null and b/static/icons/06003386.png differ
diff --git a/static/icons/06003387.png b/static/icons/06003387.png
new file mode 100755
index 00000000..07cc081a
Binary files /dev/null and b/static/icons/06003387.png differ
diff --git a/static/icons/06003388.png b/static/icons/06003388.png
new file mode 100755
index 00000000..8a0842a2
Binary files /dev/null and b/static/icons/06003388.png differ
diff --git a/static/icons/06003389.png b/static/icons/06003389.png
new file mode 100755
index 00000000..6aa4f44e
Binary files /dev/null and b/static/icons/06003389.png differ
diff --git a/static/icons/0600338A.png b/static/icons/0600338A.png
new file mode 100755
index 00000000..b1c222f4
Binary files /dev/null and b/static/icons/0600338A.png differ
diff --git a/static/icons/0600338B.png b/static/icons/0600338B.png
new file mode 100755
index 00000000..86066a24
Binary files /dev/null and b/static/icons/0600338B.png differ
diff --git a/static/icons/0600338C.png b/static/icons/0600338C.png
new file mode 100755
index 00000000..8ab3a7b1
Binary files /dev/null and b/static/icons/0600338C.png differ
diff --git a/static/icons/0600338D.png b/static/icons/0600338D.png
new file mode 100755
index 00000000..254c2744
Binary files /dev/null and b/static/icons/0600338D.png differ
diff --git a/static/icons/0600338E.png b/static/icons/0600338E.png
new file mode 100755
index 00000000..ff64e837
Binary files /dev/null and b/static/icons/0600338E.png differ
diff --git a/static/icons/0600338F.png b/static/icons/0600338F.png
new file mode 100755
index 00000000..d661cdea
Binary files /dev/null and b/static/icons/0600338F.png differ
diff --git a/static/icons/06003390.png b/static/icons/06003390.png
new file mode 100755
index 00000000..e46f3a2e
Binary files /dev/null and b/static/icons/06003390.png differ
diff --git a/static/icons/06003391.png b/static/icons/06003391.png
new file mode 100755
index 00000000..f294dfd5
Binary files /dev/null and b/static/icons/06003391.png differ
diff --git a/static/icons/06003392.png b/static/icons/06003392.png
new file mode 100755
index 00000000..6debaf05
Binary files /dev/null and b/static/icons/06003392.png differ
diff --git a/static/icons/06003393.png b/static/icons/06003393.png
new file mode 100755
index 00000000..ac94dbe2
Binary files /dev/null and b/static/icons/06003393.png differ
diff --git a/static/icons/06003394.png b/static/icons/06003394.png
new file mode 100755
index 00000000..ead7e63b
Binary files /dev/null and b/static/icons/06003394.png differ
diff --git a/static/icons/0600339F.png b/static/icons/0600339F.png
new file mode 100755
index 00000000..2ee7f14e
Binary files /dev/null and b/static/icons/0600339F.png differ
diff --git a/static/icons/060033A0.png b/static/icons/060033A0.png
new file mode 100755
index 00000000..9a4e2ee1
Binary files /dev/null and b/static/icons/060033A0.png differ
diff --git a/static/icons/060033A1.png b/static/icons/060033A1.png
new file mode 100755
index 00000000..7949cd1b
Binary files /dev/null and b/static/icons/060033A1.png differ
diff --git a/static/icons/060033A2.png b/static/icons/060033A2.png
new file mode 100755
index 00000000..5453ebab
Binary files /dev/null and b/static/icons/060033A2.png differ
diff --git a/static/icons/060033A3.png b/static/icons/060033A3.png
new file mode 100755
index 00000000..1845ca21
Binary files /dev/null and b/static/icons/060033A3.png differ
diff --git a/static/icons/060033A4.png b/static/icons/060033A4.png
new file mode 100755
index 00000000..5f6bc92f
Binary files /dev/null and b/static/icons/060033A4.png differ
diff --git a/static/icons/060033A5.png b/static/icons/060033A5.png
new file mode 100755
index 00000000..60dc2e88
Binary files /dev/null and b/static/icons/060033A5.png differ
diff --git a/static/icons/060033A6.png b/static/icons/060033A6.png
new file mode 100755
index 00000000..3df1963a
Binary files /dev/null and b/static/icons/060033A6.png differ
diff --git a/static/icons/060033A7.png b/static/icons/060033A7.png
new file mode 100755
index 00000000..a28e1298
Binary files /dev/null and b/static/icons/060033A7.png differ
diff --git a/static/icons/060033A8.png b/static/icons/060033A8.png
new file mode 100755
index 00000000..f030c46c
Binary files /dev/null and b/static/icons/060033A8.png differ
diff --git a/static/icons/060033A9.png b/static/icons/060033A9.png
new file mode 100755
index 00000000..f08ec78b
Binary files /dev/null and b/static/icons/060033A9.png differ
diff --git a/static/icons/060033AA.png b/static/icons/060033AA.png
new file mode 100755
index 00000000..ed257323
Binary files /dev/null and b/static/icons/060033AA.png differ
diff --git a/static/icons/060033AB.png b/static/icons/060033AB.png
new file mode 100755
index 00000000..a92bc086
Binary files /dev/null and b/static/icons/060033AB.png differ
diff --git a/static/icons/060033AC.png b/static/icons/060033AC.png
new file mode 100755
index 00000000..30ddaefb
Binary files /dev/null and b/static/icons/060033AC.png differ
diff --git a/static/icons/060033AD.png b/static/icons/060033AD.png
new file mode 100755
index 00000000..f94054a4
Binary files /dev/null and b/static/icons/060033AD.png differ
diff --git a/static/icons/060033AE.png b/static/icons/060033AE.png
new file mode 100755
index 00000000..92290ea5
Binary files /dev/null and b/static/icons/060033AE.png differ
diff --git a/static/icons/060033AF.png b/static/icons/060033AF.png
new file mode 100755
index 00000000..44f48827
Binary files /dev/null and b/static/icons/060033AF.png differ
diff --git a/static/icons/060033B0.png b/static/icons/060033B0.png
new file mode 100755
index 00000000..7c0ccbb1
Binary files /dev/null and b/static/icons/060033B0.png differ
diff --git a/static/icons/060033B1.png b/static/icons/060033B1.png
new file mode 100755
index 00000000..1f56cce4
Binary files /dev/null and b/static/icons/060033B1.png differ
diff --git a/static/icons/060033B2.png b/static/icons/060033B2.png
new file mode 100755
index 00000000..4d880663
Binary files /dev/null and b/static/icons/060033B2.png differ
diff --git a/static/icons/060033B3.png b/static/icons/060033B3.png
new file mode 100755
index 00000000..a423a64d
Binary files /dev/null and b/static/icons/060033B3.png differ
diff --git a/static/icons/060033B4.png b/static/icons/060033B4.png
new file mode 100755
index 00000000..a3942139
Binary files /dev/null and b/static/icons/060033B4.png differ
diff --git a/static/icons/060033B5.png b/static/icons/060033B5.png
new file mode 100755
index 00000000..b8f54018
Binary files /dev/null and b/static/icons/060033B5.png differ
diff --git a/static/icons/060033B6.png b/static/icons/060033B6.png
new file mode 100755
index 00000000..e4be1260
Binary files /dev/null and b/static/icons/060033B6.png differ
diff --git a/static/icons/060033B7.png b/static/icons/060033B7.png
new file mode 100755
index 00000000..03eefe86
Binary files /dev/null and b/static/icons/060033B7.png differ
diff --git a/static/icons/060033B8.png b/static/icons/060033B8.png
new file mode 100755
index 00000000..e6b95343
Binary files /dev/null and b/static/icons/060033B8.png differ
diff --git a/static/icons/060033B9.png b/static/icons/060033B9.png
new file mode 100755
index 00000000..90e716a2
Binary files /dev/null and b/static/icons/060033B9.png differ
diff --git a/static/icons/060033BA.png b/static/icons/060033BA.png
new file mode 100755
index 00000000..54696997
Binary files /dev/null and b/static/icons/060033BA.png differ
diff --git a/static/icons/060033BB.png b/static/icons/060033BB.png
new file mode 100755
index 00000000..3902bb5a
Binary files /dev/null and b/static/icons/060033BB.png differ
diff --git a/static/icons/060033BC.png b/static/icons/060033BC.png
new file mode 100755
index 00000000..ca083545
Binary files /dev/null and b/static/icons/060033BC.png differ
diff --git a/static/icons/060033BD.png b/static/icons/060033BD.png
new file mode 100755
index 00000000..af25cba6
Binary files /dev/null and b/static/icons/060033BD.png differ
diff --git a/static/icons/060033BE.png b/static/icons/060033BE.png
new file mode 100755
index 00000000..7fe5c618
Binary files /dev/null and b/static/icons/060033BE.png differ
diff --git a/static/icons/060033BF.png b/static/icons/060033BF.png
new file mode 100755
index 00000000..c19cd8f6
Binary files /dev/null and b/static/icons/060033BF.png differ
diff --git a/static/icons/060033C0.png b/static/icons/060033C0.png
new file mode 100755
index 00000000..9fd0c4d1
Binary files /dev/null and b/static/icons/060033C0.png differ
diff --git a/static/icons/060033C1.png b/static/icons/060033C1.png
new file mode 100755
index 00000000..b8a5bc36
Binary files /dev/null and b/static/icons/060033C1.png differ
diff --git a/static/icons/060033C2.png b/static/icons/060033C2.png
new file mode 100755
index 00000000..1aed44ae
Binary files /dev/null and b/static/icons/060033C2.png differ
diff --git a/static/icons/060033C3.png b/static/icons/060033C3.png
new file mode 100755
index 00000000..18367126
Binary files /dev/null and b/static/icons/060033C3.png differ
diff --git a/static/icons/060033C4.png b/static/icons/060033C4.png
new file mode 100755
index 00000000..5687c107
Binary files /dev/null and b/static/icons/060033C4.png differ
diff --git a/static/icons/060033C5.png b/static/icons/060033C5.png
new file mode 100755
index 00000000..136a1bc5
Binary files /dev/null and b/static/icons/060033C5.png differ
diff --git a/static/icons/060033C6.png b/static/icons/060033C6.png
new file mode 100755
index 00000000..a4e9b306
Binary files /dev/null and b/static/icons/060033C6.png differ
diff --git a/static/icons/060033C7.png b/static/icons/060033C7.png
new file mode 100755
index 00000000..f4dfb712
Binary files /dev/null and b/static/icons/060033C7.png differ
diff --git a/static/icons/060033C8.png b/static/icons/060033C8.png
new file mode 100755
index 00000000..5a1b1a48
Binary files /dev/null and b/static/icons/060033C8.png differ
diff --git a/static/icons/060033C9.png b/static/icons/060033C9.png
new file mode 100755
index 00000000..f42004d9
Binary files /dev/null and b/static/icons/060033C9.png differ
diff --git a/static/icons/060033CA.png b/static/icons/060033CA.png
new file mode 100755
index 00000000..094a736e
Binary files /dev/null and b/static/icons/060033CA.png differ
diff --git a/static/icons/060033CB.png b/static/icons/060033CB.png
new file mode 100755
index 00000000..a5975a47
Binary files /dev/null and b/static/icons/060033CB.png differ
diff --git a/static/icons/060033CC.png b/static/icons/060033CC.png
new file mode 100755
index 00000000..a284fdd8
Binary files /dev/null and b/static/icons/060033CC.png differ
diff --git a/static/icons/060033CD.png b/static/icons/060033CD.png
new file mode 100755
index 00000000..5b2f2ac4
Binary files /dev/null and b/static/icons/060033CD.png differ
diff --git a/static/icons/060033CE.png b/static/icons/060033CE.png
new file mode 100755
index 00000000..bf54a280
Binary files /dev/null and b/static/icons/060033CE.png differ
diff --git a/static/icons/060033CF.png b/static/icons/060033CF.png
new file mode 100755
index 00000000..86029359
Binary files /dev/null and b/static/icons/060033CF.png differ
diff --git a/static/icons/060033D0.png b/static/icons/060033D0.png
new file mode 100755
index 00000000..d9508567
Binary files /dev/null and b/static/icons/060033D0.png differ
diff --git a/static/icons/060033D1.png b/static/icons/060033D1.png
new file mode 100755
index 00000000..89dde02f
Binary files /dev/null and b/static/icons/060033D1.png differ
diff --git a/static/icons/060033D2.png b/static/icons/060033D2.png
new file mode 100755
index 00000000..2af250b4
Binary files /dev/null and b/static/icons/060033D2.png differ
diff --git a/static/icons/060033D3.png b/static/icons/060033D3.png
new file mode 100755
index 00000000..9a58e97e
Binary files /dev/null and b/static/icons/060033D3.png differ
diff --git a/static/icons/060033D5.png b/static/icons/060033D5.png
new file mode 100755
index 00000000..d654fed9
Binary files /dev/null and b/static/icons/060033D5.png differ
diff --git a/static/icons/060033D6.png b/static/icons/060033D6.png
new file mode 100755
index 00000000..f05afb63
Binary files /dev/null and b/static/icons/060033D6.png differ
diff --git a/static/icons/060033D7.png b/static/icons/060033D7.png
new file mode 100755
index 00000000..8e8afa6a
Binary files /dev/null and b/static/icons/060033D7.png differ
diff --git a/static/icons/060033D8.png b/static/icons/060033D8.png
new file mode 100755
index 00000000..7de3a51d
Binary files /dev/null and b/static/icons/060033D8.png differ
diff --git a/static/icons/060033D9.png b/static/icons/060033D9.png
new file mode 100755
index 00000000..6c983ed0
Binary files /dev/null and b/static/icons/060033D9.png differ
diff --git a/static/icons/060033DA.png b/static/icons/060033DA.png
new file mode 100755
index 00000000..32b08f2d
Binary files /dev/null and b/static/icons/060033DA.png differ
diff --git a/static/icons/060033DB.png b/static/icons/060033DB.png
new file mode 100755
index 00000000..c84ea425
Binary files /dev/null and b/static/icons/060033DB.png differ
diff --git a/static/icons/060033DC.png b/static/icons/060033DC.png
new file mode 100755
index 00000000..c0d434fb
Binary files /dev/null and b/static/icons/060033DC.png differ
diff --git a/static/icons/060033DD.png b/static/icons/060033DD.png
new file mode 100755
index 00000000..f34c433f
Binary files /dev/null and b/static/icons/060033DD.png differ
diff --git a/static/icons/060033DE.png b/static/icons/060033DE.png
new file mode 100755
index 00000000..2ca2caeb
Binary files /dev/null and b/static/icons/060033DE.png differ
diff --git a/static/icons/060033DF.png b/static/icons/060033DF.png
new file mode 100755
index 00000000..ed5b15f3
Binary files /dev/null and b/static/icons/060033DF.png differ
diff --git a/static/icons/060033E0.png b/static/icons/060033E0.png
new file mode 100755
index 00000000..ff65692c
Binary files /dev/null and b/static/icons/060033E0.png differ
diff --git a/static/icons/060033E1.png b/static/icons/060033E1.png
new file mode 100755
index 00000000..36d6b237
Binary files /dev/null and b/static/icons/060033E1.png differ
diff --git a/static/icons/060033E2.png b/static/icons/060033E2.png
new file mode 100755
index 00000000..9b096646
Binary files /dev/null and b/static/icons/060033E2.png differ
diff --git a/static/icons/060033E3.png b/static/icons/060033E3.png
new file mode 100755
index 00000000..4ad73029
Binary files /dev/null and b/static/icons/060033E3.png differ
diff --git a/static/icons/060033E4.png b/static/icons/060033E4.png
new file mode 100755
index 00000000..668ef8ab
Binary files /dev/null and b/static/icons/060033E4.png differ
diff --git a/static/icons/060033E5.png b/static/icons/060033E5.png
new file mode 100755
index 00000000..caca25d9
Binary files /dev/null and b/static/icons/060033E5.png differ
diff --git a/static/icons/060033E6.png b/static/icons/060033E6.png
new file mode 100755
index 00000000..6336c060
Binary files /dev/null and b/static/icons/060033E6.png differ
diff --git a/static/icons/060033E7.png b/static/icons/060033E7.png
new file mode 100755
index 00000000..38e043b2
Binary files /dev/null and b/static/icons/060033E7.png differ
diff --git a/static/icons/060033E8.png b/static/icons/060033E8.png
new file mode 100755
index 00000000..1d562023
Binary files /dev/null and b/static/icons/060033E8.png differ
diff --git a/static/icons/060033E9.png b/static/icons/060033E9.png
new file mode 100755
index 00000000..9af7a8a5
Binary files /dev/null and b/static/icons/060033E9.png differ
diff --git a/static/icons/060033EA.png b/static/icons/060033EA.png
new file mode 100755
index 00000000..2888dd7e
Binary files /dev/null and b/static/icons/060033EA.png differ
diff --git a/static/icons/060033EB.png b/static/icons/060033EB.png
new file mode 100755
index 00000000..94d4f7a3
Binary files /dev/null and b/static/icons/060033EB.png differ
diff --git a/static/icons/060033EC.png b/static/icons/060033EC.png
new file mode 100755
index 00000000..931f130a
Binary files /dev/null and b/static/icons/060033EC.png differ
diff --git a/static/icons/060033ED.png b/static/icons/060033ED.png
new file mode 100755
index 00000000..1d4ccfef
Binary files /dev/null and b/static/icons/060033ED.png differ
diff --git a/static/icons/060033EE.png b/static/icons/060033EE.png
new file mode 100755
index 00000000..a66eb17c
Binary files /dev/null and b/static/icons/060033EE.png differ
diff --git a/static/icons/060033EF.png b/static/icons/060033EF.png
new file mode 100755
index 00000000..52f027db
Binary files /dev/null and b/static/icons/060033EF.png differ
diff --git a/static/icons/060033F0.png b/static/icons/060033F0.png
new file mode 100755
index 00000000..a2895def
Binary files /dev/null and b/static/icons/060033F0.png differ
diff --git a/static/icons/060033F1.png b/static/icons/060033F1.png
new file mode 100755
index 00000000..531ba4cf
Binary files /dev/null and b/static/icons/060033F1.png differ
diff --git a/static/icons/060033F2.png b/static/icons/060033F2.png
new file mode 100755
index 00000000..5ca3ae83
Binary files /dev/null and b/static/icons/060033F2.png differ
diff --git a/static/icons/060033F3.png b/static/icons/060033F3.png
new file mode 100755
index 00000000..5ed24d17
Binary files /dev/null and b/static/icons/060033F3.png differ
diff --git a/static/icons/060033F4.png b/static/icons/060033F4.png
new file mode 100755
index 00000000..d0ce8512
Binary files /dev/null and b/static/icons/060033F4.png differ
diff --git a/static/icons/060033F5.png b/static/icons/060033F5.png
new file mode 100755
index 00000000..3d3b037d
Binary files /dev/null and b/static/icons/060033F5.png differ
diff --git a/static/icons/060033F6.png b/static/icons/060033F6.png
new file mode 100755
index 00000000..847fcbc4
Binary files /dev/null and b/static/icons/060033F6.png differ
diff --git a/static/icons/060033F7.png b/static/icons/060033F7.png
new file mode 100755
index 00000000..5d463921
Binary files /dev/null and b/static/icons/060033F7.png differ
diff --git a/static/icons/060033F8.png b/static/icons/060033F8.png
new file mode 100755
index 00000000..894ade96
Binary files /dev/null and b/static/icons/060033F8.png differ
diff --git a/static/icons/060033F9.png b/static/icons/060033F9.png
new file mode 100755
index 00000000..9c920855
Binary files /dev/null and b/static/icons/060033F9.png differ
diff --git a/static/icons/060033FA.png b/static/icons/060033FA.png
new file mode 100755
index 00000000..ddd5361e
Binary files /dev/null and b/static/icons/060033FA.png differ
diff --git a/static/icons/060033FB.png b/static/icons/060033FB.png
new file mode 100755
index 00000000..69d7eaee
Binary files /dev/null and b/static/icons/060033FB.png differ
diff --git a/static/icons/060033FC.png b/static/icons/060033FC.png
new file mode 100755
index 00000000..efc53a03
Binary files /dev/null and b/static/icons/060033FC.png differ
diff --git a/static/icons/060033FD.png b/static/icons/060033FD.png
new file mode 100755
index 00000000..f5f96bb9
Binary files /dev/null and b/static/icons/060033FD.png differ
diff --git a/static/icons/060033FE.png b/static/icons/060033FE.png
new file mode 100755
index 00000000..1ee0827d
Binary files /dev/null and b/static/icons/060033FE.png differ
diff --git a/static/icons/060033FF.png b/static/icons/060033FF.png
new file mode 100755
index 00000000..dd69f82e
Binary files /dev/null and b/static/icons/060033FF.png differ
diff --git a/static/icons/06003400.png b/static/icons/06003400.png
new file mode 100755
index 00000000..d2a18c4b
Binary files /dev/null and b/static/icons/06003400.png differ
diff --git a/static/icons/06003401.png b/static/icons/06003401.png
new file mode 100755
index 00000000..e270bb7b
Binary files /dev/null and b/static/icons/06003401.png differ
diff --git a/static/icons/06003402.png b/static/icons/06003402.png
new file mode 100755
index 00000000..139baea7
Binary files /dev/null and b/static/icons/06003402.png differ
diff --git a/static/icons/06003403.png b/static/icons/06003403.png
new file mode 100755
index 00000000..c95a2af5
Binary files /dev/null and b/static/icons/06003403.png differ
diff --git a/static/icons/06003404.png b/static/icons/06003404.png
new file mode 100755
index 00000000..4be1b342
Binary files /dev/null and b/static/icons/06003404.png differ
diff --git a/static/icons/06003405.png b/static/icons/06003405.png
new file mode 100755
index 00000000..4421af3a
Binary files /dev/null and b/static/icons/06003405.png differ
diff --git a/static/icons/06003406.png b/static/icons/06003406.png
new file mode 100755
index 00000000..273e035a
Binary files /dev/null and b/static/icons/06003406.png differ
diff --git a/static/icons/06003407.png b/static/icons/06003407.png
new file mode 100755
index 00000000..5d59666f
Binary files /dev/null and b/static/icons/06003407.png differ
diff --git a/static/icons/06003408.png b/static/icons/06003408.png
new file mode 100755
index 00000000..66e827fa
Binary files /dev/null and b/static/icons/06003408.png differ
diff --git a/static/icons/06003409.png b/static/icons/06003409.png
new file mode 100755
index 00000000..85769ce6
Binary files /dev/null and b/static/icons/06003409.png differ
diff --git a/static/icons/0600340A.png b/static/icons/0600340A.png
new file mode 100755
index 00000000..55c897af
Binary files /dev/null and b/static/icons/0600340A.png differ
diff --git a/static/icons/0600340B.png b/static/icons/0600340B.png
new file mode 100755
index 00000000..4330a42d
Binary files /dev/null and b/static/icons/0600340B.png differ
diff --git a/static/icons/0600340C.png b/static/icons/0600340C.png
new file mode 100755
index 00000000..b29975ba
Binary files /dev/null and b/static/icons/0600340C.png differ
diff --git a/static/icons/0600340D.png b/static/icons/0600340D.png
new file mode 100755
index 00000000..9f1f9299
Binary files /dev/null and b/static/icons/0600340D.png differ
diff --git a/static/icons/0600340E.png b/static/icons/0600340E.png
new file mode 100755
index 00000000..bb83f56d
Binary files /dev/null and b/static/icons/0600340E.png differ
diff --git a/static/icons/0600340F.png b/static/icons/0600340F.png
new file mode 100755
index 00000000..5b3393a6
Binary files /dev/null and b/static/icons/0600340F.png differ
diff --git a/static/icons/06003410.png b/static/icons/06003410.png
new file mode 100755
index 00000000..601c53e4
Binary files /dev/null and b/static/icons/06003410.png differ
diff --git a/static/icons/06003411.png b/static/icons/06003411.png
new file mode 100755
index 00000000..93c0c57a
Binary files /dev/null and b/static/icons/06003411.png differ
diff --git a/static/icons/06003412.png b/static/icons/06003412.png
new file mode 100755
index 00000000..506dfab7
Binary files /dev/null and b/static/icons/06003412.png differ
diff --git a/static/icons/06003413.png b/static/icons/06003413.png
new file mode 100755
index 00000000..d7390bad
Binary files /dev/null and b/static/icons/06003413.png differ
diff --git a/static/icons/06003414.png b/static/icons/06003414.png
new file mode 100755
index 00000000..1e46c6b3
Binary files /dev/null and b/static/icons/06003414.png differ
diff --git a/static/icons/06003415.png b/static/icons/06003415.png
new file mode 100755
index 00000000..67e01dc4
Binary files /dev/null and b/static/icons/06003415.png differ
diff --git a/static/icons/06003416.png b/static/icons/06003416.png
new file mode 100755
index 00000000..eeaecb87
Binary files /dev/null and b/static/icons/06003416.png differ
diff --git a/static/icons/06003417.png b/static/icons/06003417.png
new file mode 100755
index 00000000..d4fca470
Binary files /dev/null and b/static/icons/06003417.png differ
diff --git a/static/icons/06003418.png b/static/icons/06003418.png
new file mode 100755
index 00000000..c4ee9866
Binary files /dev/null and b/static/icons/06003418.png differ
diff --git a/static/icons/06003419.png b/static/icons/06003419.png
new file mode 100755
index 00000000..89e9f62a
Binary files /dev/null and b/static/icons/06003419.png differ
diff --git a/static/icons/0600341A.png b/static/icons/0600341A.png
new file mode 100755
index 00000000..a30469ff
Binary files /dev/null and b/static/icons/0600341A.png differ
diff --git a/static/icons/0600341B.png b/static/icons/0600341B.png
new file mode 100755
index 00000000..a1ac602b
Binary files /dev/null and b/static/icons/0600341B.png differ
diff --git a/static/icons/0600341C.png b/static/icons/0600341C.png
new file mode 100755
index 00000000..171d654c
Binary files /dev/null and b/static/icons/0600341C.png differ
diff --git a/static/icons/0600341D.png b/static/icons/0600341D.png
new file mode 100755
index 00000000..746ab6df
Binary files /dev/null and b/static/icons/0600341D.png differ
diff --git a/static/icons/0600341E.png b/static/icons/0600341E.png
new file mode 100755
index 00000000..0586f991
Binary files /dev/null and b/static/icons/0600341E.png differ
diff --git a/static/icons/0600341F.png b/static/icons/0600341F.png
new file mode 100755
index 00000000..7b0eee3f
Binary files /dev/null and b/static/icons/0600341F.png differ
diff --git a/static/icons/06003420.png b/static/icons/06003420.png
new file mode 100755
index 00000000..1d68171c
Binary files /dev/null and b/static/icons/06003420.png differ
diff --git a/static/icons/06003421.png b/static/icons/06003421.png
new file mode 100755
index 00000000..3c893124
Binary files /dev/null and b/static/icons/06003421.png differ
diff --git a/static/icons/06003422.png b/static/icons/06003422.png
new file mode 100755
index 00000000..fe2af918
Binary files /dev/null and b/static/icons/06003422.png differ
diff --git a/static/icons/06003423.png b/static/icons/06003423.png
new file mode 100755
index 00000000..587dc90d
Binary files /dev/null and b/static/icons/06003423.png differ
diff --git a/static/icons/06003424.png b/static/icons/06003424.png
new file mode 100755
index 00000000..e4664179
Binary files /dev/null and b/static/icons/06003424.png differ
diff --git a/static/icons/06003425.png b/static/icons/06003425.png
new file mode 100755
index 00000000..40f747ae
Binary files /dev/null and b/static/icons/06003425.png differ
diff --git a/static/icons/06003426.png b/static/icons/06003426.png
new file mode 100755
index 00000000..99d64baa
Binary files /dev/null and b/static/icons/06003426.png differ
diff --git a/static/icons/06003427.png b/static/icons/06003427.png
new file mode 100755
index 00000000..f8c31448
Binary files /dev/null and b/static/icons/06003427.png differ
diff --git a/static/icons/06003428.png b/static/icons/06003428.png
new file mode 100755
index 00000000..44b95c56
Binary files /dev/null and b/static/icons/06003428.png differ
diff --git a/static/icons/06003429.png b/static/icons/06003429.png
new file mode 100755
index 00000000..4c2f55be
Binary files /dev/null and b/static/icons/06003429.png differ
diff --git a/static/icons/0600342A.png b/static/icons/0600342A.png
new file mode 100755
index 00000000..bf3f65da
Binary files /dev/null and b/static/icons/0600342A.png differ
diff --git a/static/icons/0600342B.png b/static/icons/0600342B.png
new file mode 100755
index 00000000..6ccc023f
Binary files /dev/null and b/static/icons/0600342B.png differ
diff --git a/static/icons/0600342C.png b/static/icons/0600342C.png
new file mode 100755
index 00000000..7dad662e
Binary files /dev/null and b/static/icons/0600342C.png differ
diff --git a/static/icons/0600342D.png b/static/icons/0600342D.png
new file mode 100755
index 00000000..46e654ad
Binary files /dev/null and b/static/icons/0600342D.png differ
diff --git a/static/icons/0600342E.png b/static/icons/0600342E.png
new file mode 100755
index 00000000..da3abc1a
Binary files /dev/null and b/static/icons/0600342E.png differ
diff --git a/static/icons/0600342F.png b/static/icons/0600342F.png
new file mode 100755
index 00000000..475f4990
Binary files /dev/null and b/static/icons/0600342F.png differ
diff --git a/static/icons/06003430.png b/static/icons/06003430.png
new file mode 100755
index 00000000..87b2b017
Binary files /dev/null and b/static/icons/06003430.png differ
diff --git a/static/icons/06003431.png b/static/icons/06003431.png
new file mode 100755
index 00000000..74d3e849
Binary files /dev/null and b/static/icons/06003431.png differ
diff --git a/static/icons/06003432.png b/static/icons/06003432.png
new file mode 100755
index 00000000..83c61cf8
Binary files /dev/null and b/static/icons/06003432.png differ
diff --git a/static/icons/06003433.png b/static/icons/06003433.png
new file mode 100755
index 00000000..b24a7c5b
Binary files /dev/null and b/static/icons/06003433.png differ
diff --git a/static/icons/06003434.png b/static/icons/06003434.png
new file mode 100755
index 00000000..8bc6b5be
Binary files /dev/null and b/static/icons/06003434.png differ
diff --git a/static/icons/06003435.png b/static/icons/06003435.png
new file mode 100755
index 00000000..a37e2233
Binary files /dev/null and b/static/icons/06003435.png differ
diff --git a/static/icons/06003436.png b/static/icons/06003436.png
new file mode 100755
index 00000000..991a6511
Binary files /dev/null and b/static/icons/06003436.png differ
diff --git a/static/icons/06003437.png b/static/icons/06003437.png
new file mode 100755
index 00000000..737bf35f
Binary files /dev/null and b/static/icons/06003437.png differ
diff --git a/static/icons/06003438.png b/static/icons/06003438.png
new file mode 100755
index 00000000..09ee49c4
Binary files /dev/null and b/static/icons/06003438.png differ
diff --git a/static/icons/06003439.png b/static/icons/06003439.png
new file mode 100755
index 00000000..9e085ffd
Binary files /dev/null and b/static/icons/06003439.png differ
diff --git a/static/icons/0600343A.png b/static/icons/0600343A.png
new file mode 100755
index 00000000..010bd640
Binary files /dev/null and b/static/icons/0600343A.png differ
diff --git a/static/icons/0600343B.png b/static/icons/0600343B.png
new file mode 100755
index 00000000..84a550d8
Binary files /dev/null and b/static/icons/0600343B.png differ
diff --git a/static/icons/0600343C.png b/static/icons/0600343C.png
new file mode 100755
index 00000000..4ab2930f
Binary files /dev/null and b/static/icons/0600343C.png differ
diff --git a/static/icons/0600343D.png b/static/icons/0600343D.png
new file mode 100755
index 00000000..c2fc809b
Binary files /dev/null and b/static/icons/0600343D.png differ
diff --git a/static/icons/0600343E.png b/static/icons/0600343E.png
new file mode 100755
index 00000000..1cd20d04
Binary files /dev/null and b/static/icons/0600343E.png differ
diff --git a/static/icons/0600343F.png b/static/icons/0600343F.png
new file mode 100755
index 00000000..2148575f
Binary files /dev/null and b/static/icons/0600343F.png differ
diff --git a/static/icons/06003440.png b/static/icons/06003440.png
new file mode 100755
index 00000000..a3f353a0
Binary files /dev/null and b/static/icons/06003440.png differ
diff --git a/static/icons/06003441.png b/static/icons/06003441.png
new file mode 100755
index 00000000..fc8c3eb2
Binary files /dev/null and b/static/icons/06003441.png differ
diff --git a/static/icons/06003442.png b/static/icons/06003442.png
new file mode 100755
index 00000000..017f2ad4
Binary files /dev/null and b/static/icons/06003442.png differ
diff --git a/static/icons/06003443.png b/static/icons/06003443.png
new file mode 100755
index 00000000..31a1d8f1
Binary files /dev/null and b/static/icons/06003443.png differ
diff --git a/static/icons/06003444.png b/static/icons/06003444.png
new file mode 100755
index 00000000..1a976636
Binary files /dev/null and b/static/icons/06003444.png differ
diff --git a/static/icons/06003445.png b/static/icons/06003445.png
new file mode 100755
index 00000000..abe6bcbb
Binary files /dev/null and b/static/icons/06003445.png differ
diff --git a/static/icons/06003446.png b/static/icons/06003446.png
new file mode 100755
index 00000000..5941d8be
Binary files /dev/null and b/static/icons/06003446.png differ
diff --git a/static/icons/06003447.png b/static/icons/06003447.png
new file mode 100755
index 00000000..397cd822
Binary files /dev/null and b/static/icons/06003447.png differ
diff --git a/static/icons/06003448.png b/static/icons/06003448.png
new file mode 100755
index 00000000..402613b0
Binary files /dev/null and b/static/icons/06003448.png differ
diff --git a/static/icons/06003449.png b/static/icons/06003449.png
new file mode 100755
index 00000000..2a35cd56
Binary files /dev/null and b/static/icons/06003449.png differ
diff --git a/static/icons/0600344A.png b/static/icons/0600344A.png
new file mode 100755
index 00000000..c85d7dc4
Binary files /dev/null and b/static/icons/0600344A.png differ
diff --git a/static/icons/0600344B.png b/static/icons/0600344B.png
new file mode 100755
index 00000000..5c06b93f
Binary files /dev/null and b/static/icons/0600344B.png differ
diff --git a/static/icons/0600344C.png b/static/icons/0600344C.png
new file mode 100755
index 00000000..9656290d
Binary files /dev/null and b/static/icons/0600344C.png differ
diff --git a/static/icons/0600344D.png b/static/icons/0600344D.png
new file mode 100755
index 00000000..545eee75
Binary files /dev/null and b/static/icons/0600344D.png differ
diff --git a/static/icons/0600344E.png b/static/icons/0600344E.png
new file mode 100755
index 00000000..34ecd1ee
Binary files /dev/null and b/static/icons/0600344E.png differ
diff --git a/static/icons/0600344F.png b/static/icons/0600344F.png
new file mode 100755
index 00000000..e61357b6
Binary files /dev/null and b/static/icons/0600344F.png differ
diff --git a/static/icons/06003450.png b/static/icons/06003450.png
new file mode 100755
index 00000000..6a3f4b01
Binary files /dev/null and b/static/icons/06003450.png differ
diff --git a/static/icons/06003451.png b/static/icons/06003451.png
new file mode 100755
index 00000000..69520470
Binary files /dev/null and b/static/icons/06003451.png differ
diff --git a/static/icons/06003452.png b/static/icons/06003452.png
new file mode 100755
index 00000000..8fa2933a
Binary files /dev/null and b/static/icons/06003452.png differ
diff --git a/static/icons/06003453.png b/static/icons/06003453.png
new file mode 100755
index 00000000..3e69afd4
Binary files /dev/null and b/static/icons/06003453.png differ
diff --git a/static/icons/06003454.png b/static/icons/06003454.png
new file mode 100755
index 00000000..44b2e813
Binary files /dev/null and b/static/icons/06003454.png differ
diff --git a/static/icons/06003455.png b/static/icons/06003455.png
new file mode 100755
index 00000000..b0e994f8
Binary files /dev/null and b/static/icons/06003455.png differ
diff --git a/static/icons/06003456.png b/static/icons/06003456.png
new file mode 100755
index 00000000..1c1374bc
Binary files /dev/null and b/static/icons/06003456.png differ
diff --git a/static/icons/06003457.png b/static/icons/06003457.png
new file mode 100755
index 00000000..f028cb1f
Binary files /dev/null and b/static/icons/06003457.png differ
diff --git a/static/icons/06003458.png b/static/icons/06003458.png
new file mode 100755
index 00000000..43e552c5
Binary files /dev/null and b/static/icons/06003458.png differ
diff --git a/static/icons/06003459.png b/static/icons/06003459.png
new file mode 100755
index 00000000..40c2c42e
Binary files /dev/null and b/static/icons/06003459.png differ
diff --git a/static/icons/0600345A.png b/static/icons/0600345A.png
new file mode 100755
index 00000000..08b49f59
Binary files /dev/null and b/static/icons/0600345A.png differ
diff --git a/static/icons/0600345B.png b/static/icons/0600345B.png
new file mode 100755
index 00000000..8add65ee
Binary files /dev/null and b/static/icons/0600345B.png differ
diff --git a/static/icons/0600345C.png b/static/icons/0600345C.png
new file mode 100755
index 00000000..0f98507d
Binary files /dev/null and b/static/icons/0600345C.png differ
diff --git a/static/icons/0600345D.png b/static/icons/0600345D.png
new file mode 100755
index 00000000..15620281
Binary files /dev/null and b/static/icons/0600345D.png differ
diff --git a/static/icons/0600345E.png b/static/icons/0600345E.png
new file mode 100755
index 00000000..2e204460
Binary files /dev/null and b/static/icons/0600345E.png differ
diff --git a/static/icons/0600345F.png b/static/icons/0600345F.png
new file mode 100755
index 00000000..08fb8382
Binary files /dev/null and b/static/icons/0600345F.png differ
diff --git a/static/icons/06003460.png b/static/icons/06003460.png
new file mode 100755
index 00000000..8db0e6ed
Binary files /dev/null and b/static/icons/06003460.png differ
diff --git a/static/icons/06003461.png b/static/icons/06003461.png
new file mode 100755
index 00000000..332b0429
Binary files /dev/null and b/static/icons/06003461.png differ
diff --git a/static/icons/06003462.png b/static/icons/06003462.png
new file mode 100755
index 00000000..29a2775d
Binary files /dev/null and b/static/icons/06003462.png differ
diff --git a/static/icons/06003463.png b/static/icons/06003463.png
new file mode 100755
index 00000000..db746413
Binary files /dev/null and b/static/icons/06003463.png differ
diff --git a/static/icons/06003464.png b/static/icons/06003464.png
new file mode 100755
index 00000000..d0acd550
Binary files /dev/null and b/static/icons/06003464.png differ
diff --git a/static/icons/06003465.png b/static/icons/06003465.png
new file mode 100755
index 00000000..530dda91
Binary files /dev/null and b/static/icons/06003465.png differ
diff --git a/static/icons/06003466.png b/static/icons/06003466.png
new file mode 100755
index 00000000..bc7f8a70
Binary files /dev/null and b/static/icons/06003466.png differ
diff --git a/static/icons/06003467.png b/static/icons/06003467.png
new file mode 100755
index 00000000..7df32d68
Binary files /dev/null and b/static/icons/06003467.png differ
diff --git a/static/icons/06003468.png b/static/icons/06003468.png
new file mode 100755
index 00000000..e41c6782
Binary files /dev/null and b/static/icons/06003468.png differ
diff --git a/static/icons/06003469.png b/static/icons/06003469.png
new file mode 100755
index 00000000..1059fc98
Binary files /dev/null and b/static/icons/06003469.png differ
diff --git a/static/icons/0600346A.png b/static/icons/0600346A.png
new file mode 100755
index 00000000..92762541
Binary files /dev/null and b/static/icons/0600346A.png differ
diff --git a/static/icons/0600346B.png b/static/icons/0600346B.png
new file mode 100755
index 00000000..27e8fc97
Binary files /dev/null and b/static/icons/0600346B.png differ
diff --git a/static/icons/0600346C.png b/static/icons/0600346C.png
new file mode 100755
index 00000000..e366dc2a
Binary files /dev/null and b/static/icons/0600346C.png differ
diff --git a/static/icons/0600346D.png b/static/icons/0600346D.png
new file mode 100755
index 00000000..691024fd
Binary files /dev/null and b/static/icons/0600346D.png differ
diff --git a/static/icons/0600346E.png b/static/icons/0600346E.png
new file mode 100755
index 00000000..c6dbe9cb
Binary files /dev/null and b/static/icons/0600346E.png differ
diff --git a/static/icons/0600346F.png b/static/icons/0600346F.png
new file mode 100755
index 00000000..8d2e5215
Binary files /dev/null and b/static/icons/0600346F.png differ
diff --git a/static/icons/06003470.png b/static/icons/06003470.png
new file mode 100755
index 00000000..9d014e28
Binary files /dev/null and b/static/icons/06003470.png differ
diff --git a/static/icons/06003471.png b/static/icons/06003471.png
new file mode 100755
index 00000000..e7a0011d
Binary files /dev/null and b/static/icons/06003471.png differ
diff --git a/static/icons/06003472.png b/static/icons/06003472.png
new file mode 100755
index 00000000..c87c1eb3
Binary files /dev/null and b/static/icons/06003472.png differ
diff --git a/static/icons/06003473.png b/static/icons/06003473.png
new file mode 100755
index 00000000..c7a7a4dd
Binary files /dev/null and b/static/icons/06003473.png differ
diff --git a/static/icons/06003474.png b/static/icons/06003474.png
new file mode 100755
index 00000000..6c451b16
Binary files /dev/null and b/static/icons/06003474.png differ
diff --git a/static/icons/06003475.png b/static/icons/06003475.png
new file mode 100755
index 00000000..13cadd13
Binary files /dev/null and b/static/icons/06003475.png differ
diff --git a/static/icons/06003476.png b/static/icons/06003476.png
new file mode 100755
index 00000000..43c734ed
Binary files /dev/null and b/static/icons/06003476.png differ
diff --git a/static/icons/06003477.png b/static/icons/06003477.png
new file mode 100755
index 00000000..73d4f8a9
Binary files /dev/null and b/static/icons/06003477.png differ
diff --git a/static/icons/06003478.png b/static/icons/06003478.png
new file mode 100755
index 00000000..871d888c
Binary files /dev/null and b/static/icons/06003478.png differ
diff --git a/static/icons/06003479.png b/static/icons/06003479.png
new file mode 100755
index 00000000..8f26b063
Binary files /dev/null and b/static/icons/06003479.png differ
diff --git a/static/icons/0600347A.png b/static/icons/0600347A.png
new file mode 100755
index 00000000..9f92c066
Binary files /dev/null and b/static/icons/0600347A.png differ
diff --git a/static/icons/0600347B.png b/static/icons/0600347B.png
new file mode 100755
index 00000000..11a33164
Binary files /dev/null and b/static/icons/0600347B.png differ
diff --git a/static/icons/0600347C.png b/static/icons/0600347C.png
new file mode 100755
index 00000000..2a019b81
Binary files /dev/null and b/static/icons/0600347C.png differ
diff --git a/static/icons/0600347D.png b/static/icons/0600347D.png
new file mode 100755
index 00000000..f31bde27
Binary files /dev/null and b/static/icons/0600347D.png differ
diff --git a/static/icons/0600347E.png b/static/icons/0600347E.png
new file mode 100755
index 00000000..5e6a0947
Binary files /dev/null and b/static/icons/0600347E.png differ
diff --git a/static/icons/0600347F.png b/static/icons/0600347F.png
new file mode 100755
index 00000000..333e8873
Binary files /dev/null and b/static/icons/0600347F.png differ
diff --git a/static/icons/06003480.png b/static/icons/06003480.png
new file mode 100755
index 00000000..641571a6
Binary files /dev/null and b/static/icons/06003480.png differ
diff --git a/static/icons/06003481.png b/static/icons/06003481.png
new file mode 100755
index 00000000..d43004e1
Binary files /dev/null and b/static/icons/06003481.png differ
diff --git a/static/icons/06003482.png b/static/icons/06003482.png
new file mode 100755
index 00000000..b17a7643
Binary files /dev/null and b/static/icons/06003482.png differ
diff --git a/static/icons/06003483.png b/static/icons/06003483.png
new file mode 100755
index 00000000..2866ee51
Binary files /dev/null and b/static/icons/06003483.png differ
diff --git a/static/icons/06003484.png b/static/icons/06003484.png
new file mode 100755
index 00000000..cf429e80
Binary files /dev/null and b/static/icons/06003484.png differ
diff --git a/static/icons/06003485.png b/static/icons/06003485.png
new file mode 100755
index 00000000..2fe78783
Binary files /dev/null and b/static/icons/06003485.png differ
diff --git a/static/icons/06003486.png b/static/icons/06003486.png
new file mode 100755
index 00000000..64979810
Binary files /dev/null and b/static/icons/06003486.png differ
diff --git a/static/icons/06003487.png b/static/icons/06003487.png
new file mode 100755
index 00000000..8d440e40
Binary files /dev/null and b/static/icons/06003487.png differ
diff --git a/static/icons/06003489.png b/static/icons/06003489.png
new file mode 100755
index 00000000..cc02ba92
Binary files /dev/null and b/static/icons/06003489.png differ
diff --git a/static/icons/0600348A.png b/static/icons/0600348A.png
new file mode 100755
index 00000000..d2cfa010
Binary files /dev/null and b/static/icons/0600348A.png differ
diff --git a/static/icons/0600348B.png b/static/icons/0600348B.png
new file mode 100755
index 00000000..deec10fd
Binary files /dev/null and b/static/icons/0600348B.png differ
diff --git a/static/icons/0600348C.png b/static/icons/0600348C.png
new file mode 100755
index 00000000..b29e613f
Binary files /dev/null and b/static/icons/0600348C.png differ
diff --git a/static/icons/0600348D.png b/static/icons/0600348D.png
new file mode 100755
index 00000000..13eb0bbd
Binary files /dev/null and b/static/icons/0600348D.png differ
diff --git a/static/icons/0600348E.png b/static/icons/0600348E.png
new file mode 100755
index 00000000..880415af
Binary files /dev/null and b/static/icons/0600348E.png differ
diff --git a/static/icons/0600348F.png b/static/icons/0600348F.png
new file mode 100755
index 00000000..77a7b434
Binary files /dev/null and b/static/icons/0600348F.png differ
diff --git a/static/icons/06003490.png b/static/icons/06003490.png
new file mode 100755
index 00000000..f5eb2c48
Binary files /dev/null and b/static/icons/06003490.png differ
diff --git a/static/icons/06003491.png b/static/icons/06003491.png
new file mode 100755
index 00000000..7817b025
Binary files /dev/null and b/static/icons/06003491.png differ
diff --git a/static/icons/06003492.png b/static/icons/06003492.png
new file mode 100755
index 00000000..9da563cf
Binary files /dev/null and b/static/icons/06003492.png differ
diff --git a/static/icons/06003493.png b/static/icons/06003493.png
new file mode 100755
index 00000000..b2d84786
Binary files /dev/null and b/static/icons/06003493.png differ
diff --git a/static/icons/06003494.png b/static/icons/06003494.png
new file mode 100755
index 00000000..c5416844
Binary files /dev/null and b/static/icons/06003494.png differ
diff --git a/static/icons/06003495.png b/static/icons/06003495.png
new file mode 100755
index 00000000..1ead17dc
Binary files /dev/null and b/static/icons/06003495.png differ
diff --git a/static/icons/06003496.png b/static/icons/06003496.png
new file mode 100755
index 00000000..a4f46c0c
Binary files /dev/null and b/static/icons/06003496.png differ
diff --git a/static/icons/06003497.png b/static/icons/06003497.png
new file mode 100755
index 00000000..9eb02e1d
Binary files /dev/null and b/static/icons/06003497.png differ
diff --git a/static/icons/06003498.png b/static/icons/06003498.png
new file mode 100755
index 00000000..c9f0684e
Binary files /dev/null and b/static/icons/06003498.png differ
diff --git a/static/icons/06003499.png b/static/icons/06003499.png
new file mode 100755
index 00000000..1084e920
Binary files /dev/null and b/static/icons/06003499.png differ
diff --git a/static/icons/0600349A.png b/static/icons/0600349A.png
new file mode 100755
index 00000000..51f1990f
Binary files /dev/null and b/static/icons/0600349A.png differ
diff --git a/static/icons/0600349B.png b/static/icons/0600349B.png
new file mode 100755
index 00000000..99d89f89
Binary files /dev/null and b/static/icons/0600349B.png differ
diff --git a/static/icons/0600349C.png b/static/icons/0600349C.png
new file mode 100755
index 00000000..6b8c6594
Binary files /dev/null and b/static/icons/0600349C.png differ
diff --git a/static/icons/0600349D.png b/static/icons/0600349D.png
new file mode 100755
index 00000000..f240c045
Binary files /dev/null and b/static/icons/0600349D.png differ
diff --git a/static/icons/0600349E.png b/static/icons/0600349E.png
new file mode 100755
index 00000000..eb597e15
Binary files /dev/null and b/static/icons/0600349E.png differ
diff --git a/static/icons/0600349F.png b/static/icons/0600349F.png
new file mode 100755
index 00000000..e013ee92
Binary files /dev/null and b/static/icons/0600349F.png differ
diff --git a/static/icons/060034A0.png b/static/icons/060034A0.png
new file mode 100755
index 00000000..3cc946b2
Binary files /dev/null and b/static/icons/060034A0.png differ
diff --git a/static/icons/060034A1.png b/static/icons/060034A1.png
new file mode 100755
index 00000000..2b7aeda7
Binary files /dev/null and b/static/icons/060034A1.png differ
diff --git a/static/icons/060034A2.png b/static/icons/060034A2.png
new file mode 100755
index 00000000..bfa89d2d
Binary files /dev/null and b/static/icons/060034A2.png differ
diff --git a/static/icons/060034A3.png b/static/icons/060034A3.png
new file mode 100755
index 00000000..639f6b67
Binary files /dev/null and b/static/icons/060034A3.png differ
diff --git a/static/icons/060034A4.png b/static/icons/060034A4.png
new file mode 100755
index 00000000..ac711a28
Binary files /dev/null and b/static/icons/060034A4.png differ
diff --git a/static/icons/060034A5.png b/static/icons/060034A5.png
new file mode 100755
index 00000000..1dd4e415
Binary files /dev/null and b/static/icons/060034A5.png differ
diff --git a/static/icons/060034A6.png b/static/icons/060034A6.png
new file mode 100755
index 00000000..d43461ef
Binary files /dev/null and b/static/icons/060034A6.png differ
diff --git a/static/icons/060034A7.png b/static/icons/060034A7.png
new file mode 100755
index 00000000..b3b278eb
Binary files /dev/null and b/static/icons/060034A7.png differ
diff --git a/static/icons/060034A8.png b/static/icons/060034A8.png
new file mode 100755
index 00000000..566c0bc0
Binary files /dev/null and b/static/icons/060034A8.png differ
diff --git a/static/icons/060034A9.png b/static/icons/060034A9.png
new file mode 100755
index 00000000..0768eaa1
Binary files /dev/null and b/static/icons/060034A9.png differ
diff --git a/static/icons/060034AA.png b/static/icons/060034AA.png
new file mode 100755
index 00000000..47265eed
Binary files /dev/null and b/static/icons/060034AA.png differ
diff --git a/static/icons/060034AB.png b/static/icons/060034AB.png
new file mode 100755
index 00000000..871209fe
Binary files /dev/null and b/static/icons/060034AB.png differ
diff --git a/static/icons/060034AC.png b/static/icons/060034AC.png
new file mode 100755
index 00000000..21aa2480
Binary files /dev/null and b/static/icons/060034AC.png differ
diff --git a/static/icons/060034AD.png b/static/icons/060034AD.png
new file mode 100755
index 00000000..1a0d360c
Binary files /dev/null and b/static/icons/060034AD.png differ
diff --git a/static/icons/060034AE.png b/static/icons/060034AE.png
new file mode 100755
index 00000000..4f65d325
Binary files /dev/null and b/static/icons/060034AE.png differ
diff --git a/static/icons/060034AF.png b/static/icons/060034AF.png
new file mode 100755
index 00000000..456a2f15
Binary files /dev/null and b/static/icons/060034AF.png differ
diff --git a/static/icons/060034B0.png b/static/icons/060034B0.png
new file mode 100755
index 00000000..68eb24c2
Binary files /dev/null and b/static/icons/060034B0.png differ
diff --git a/static/icons/060034B1.png b/static/icons/060034B1.png
new file mode 100755
index 00000000..04f40199
Binary files /dev/null and b/static/icons/060034B1.png differ
diff --git a/static/icons/060034B2.png b/static/icons/060034B2.png
new file mode 100755
index 00000000..634f2023
Binary files /dev/null and b/static/icons/060034B2.png differ
diff --git a/static/icons/060034B3.png b/static/icons/060034B3.png
new file mode 100755
index 00000000..9e07e7fd
Binary files /dev/null and b/static/icons/060034B3.png differ
diff --git a/static/icons/060034B4.png b/static/icons/060034B4.png
new file mode 100755
index 00000000..8694ffbb
Binary files /dev/null and b/static/icons/060034B4.png differ
diff --git a/static/icons/060034B5.png b/static/icons/060034B5.png
new file mode 100755
index 00000000..f53237a6
Binary files /dev/null and b/static/icons/060034B5.png differ
diff --git a/static/icons/060034B6.png b/static/icons/060034B6.png
new file mode 100755
index 00000000..c32c6849
Binary files /dev/null and b/static/icons/060034B6.png differ
diff --git a/static/icons/060034B7.png b/static/icons/060034B7.png
new file mode 100755
index 00000000..a17a3766
Binary files /dev/null and b/static/icons/060034B7.png differ
diff --git a/static/icons/060034B8.png b/static/icons/060034B8.png
new file mode 100755
index 00000000..9683fdcf
Binary files /dev/null and b/static/icons/060034B8.png differ
diff --git a/static/icons/060034B9.png b/static/icons/060034B9.png
new file mode 100755
index 00000000..0fa24818
Binary files /dev/null and b/static/icons/060034B9.png differ
diff --git a/static/icons/060034BA.png b/static/icons/060034BA.png
new file mode 100755
index 00000000..9daf29a1
Binary files /dev/null and b/static/icons/060034BA.png differ
diff --git a/static/icons/060034BB.png b/static/icons/060034BB.png
new file mode 100755
index 00000000..81be50b8
Binary files /dev/null and b/static/icons/060034BB.png differ
diff --git a/static/icons/060034BC.png b/static/icons/060034BC.png
new file mode 100755
index 00000000..18bf8fbf
Binary files /dev/null and b/static/icons/060034BC.png differ
diff --git a/static/icons/060034BD.png b/static/icons/060034BD.png
new file mode 100755
index 00000000..98a581b4
Binary files /dev/null and b/static/icons/060034BD.png differ
diff --git a/static/icons/060034BE.png b/static/icons/060034BE.png
new file mode 100755
index 00000000..c1f6ff0a
Binary files /dev/null and b/static/icons/060034BE.png differ
diff --git a/static/icons/060034BF.png b/static/icons/060034BF.png
new file mode 100755
index 00000000..ca06c057
Binary files /dev/null and b/static/icons/060034BF.png differ
diff --git a/static/icons/060034C0.png b/static/icons/060034C0.png
new file mode 100755
index 00000000..be5562f3
Binary files /dev/null and b/static/icons/060034C0.png differ
diff --git a/static/icons/060034C1.png b/static/icons/060034C1.png
new file mode 100755
index 00000000..ecab3261
Binary files /dev/null and b/static/icons/060034C1.png differ
diff --git a/static/icons/060034C2.png b/static/icons/060034C2.png
new file mode 100755
index 00000000..60b22cba
Binary files /dev/null and b/static/icons/060034C2.png differ
diff --git a/static/icons/060034C3.png b/static/icons/060034C3.png
new file mode 100755
index 00000000..15578dbc
Binary files /dev/null and b/static/icons/060034C3.png differ
diff --git a/static/icons/060034C4.png b/static/icons/060034C4.png
new file mode 100755
index 00000000..a804a170
Binary files /dev/null and b/static/icons/060034C4.png differ
diff --git a/static/icons/060034C5.png b/static/icons/060034C5.png
new file mode 100755
index 00000000..e0f572ed
Binary files /dev/null and b/static/icons/060034C5.png differ
diff --git a/static/icons/060034C6.png b/static/icons/060034C6.png
new file mode 100755
index 00000000..132ed528
Binary files /dev/null and b/static/icons/060034C6.png differ
diff --git a/static/icons/060034C7.png b/static/icons/060034C7.png
new file mode 100755
index 00000000..693e5cf2
Binary files /dev/null and b/static/icons/060034C7.png differ
diff --git a/static/icons/060034C8.png b/static/icons/060034C8.png
new file mode 100755
index 00000000..15299869
Binary files /dev/null and b/static/icons/060034C8.png differ
diff --git a/static/icons/060034C9.png b/static/icons/060034C9.png
new file mode 100755
index 00000000..41f68498
Binary files /dev/null and b/static/icons/060034C9.png differ
diff --git a/static/icons/060034CA.png b/static/icons/060034CA.png
new file mode 100755
index 00000000..deb00949
Binary files /dev/null and b/static/icons/060034CA.png differ
diff --git a/static/icons/060034CB.png b/static/icons/060034CB.png
new file mode 100755
index 00000000..3f07992f
Binary files /dev/null and b/static/icons/060034CB.png differ
diff --git a/static/icons/060034CC.png b/static/icons/060034CC.png
new file mode 100755
index 00000000..61722fe5
Binary files /dev/null and b/static/icons/060034CC.png differ
diff --git a/static/icons/060034CD.png b/static/icons/060034CD.png
new file mode 100755
index 00000000..04057451
Binary files /dev/null and b/static/icons/060034CD.png differ
diff --git a/static/icons/060034CE.png b/static/icons/060034CE.png
new file mode 100755
index 00000000..903bada3
Binary files /dev/null and b/static/icons/060034CE.png differ
diff --git a/static/icons/060034CF.png b/static/icons/060034CF.png
new file mode 100755
index 00000000..8eb12160
Binary files /dev/null and b/static/icons/060034CF.png differ
diff --git a/static/icons/060034D0.png b/static/icons/060034D0.png
new file mode 100755
index 00000000..7ce36431
Binary files /dev/null and b/static/icons/060034D0.png differ
diff --git a/static/icons/060034D1.png b/static/icons/060034D1.png
new file mode 100755
index 00000000..f2bbae02
Binary files /dev/null and b/static/icons/060034D1.png differ
diff --git a/static/icons/060034D2.png b/static/icons/060034D2.png
new file mode 100755
index 00000000..d46524f0
Binary files /dev/null and b/static/icons/060034D2.png differ
diff --git a/static/icons/060034D3.png b/static/icons/060034D3.png
new file mode 100755
index 00000000..ab302a3e
Binary files /dev/null and b/static/icons/060034D3.png differ
diff --git a/static/icons/060034D4.png b/static/icons/060034D4.png
new file mode 100755
index 00000000..af37f719
Binary files /dev/null and b/static/icons/060034D4.png differ
diff --git a/static/icons/060034D5.png b/static/icons/060034D5.png
new file mode 100755
index 00000000..648d613f
Binary files /dev/null and b/static/icons/060034D5.png differ
diff --git a/static/icons/060034D6.png b/static/icons/060034D6.png
new file mode 100755
index 00000000..9652b70a
Binary files /dev/null and b/static/icons/060034D6.png differ
diff --git a/static/icons/060034D7.png b/static/icons/060034D7.png
new file mode 100755
index 00000000..cc0e2e02
Binary files /dev/null and b/static/icons/060034D7.png differ
diff --git a/static/icons/060034D8.png b/static/icons/060034D8.png
new file mode 100755
index 00000000..cf135d85
Binary files /dev/null and b/static/icons/060034D8.png differ
diff --git a/static/icons/060034D9.png b/static/icons/060034D9.png
new file mode 100755
index 00000000..f3ed4244
Binary files /dev/null and b/static/icons/060034D9.png differ
diff --git a/static/icons/060034DA.png b/static/icons/060034DA.png
new file mode 100755
index 00000000..e56883cc
Binary files /dev/null and b/static/icons/060034DA.png differ
diff --git a/static/icons/060034DB.png b/static/icons/060034DB.png
new file mode 100755
index 00000000..a7bae987
Binary files /dev/null and b/static/icons/060034DB.png differ
diff --git a/static/icons/060034DC.png b/static/icons/060034DC.png
new file mode 100755
index 00000000..e17c3c90
Binary files /dev/null and b/static/icons/060034DC.png differ
diff --git a/static/icons/060034DD.png b/static/icons/060034DD.png
new file mode 100755
index 00000000..cdba50b7
Binary files /dev/null and b/static/icons/060034DD.png differ
diff --git a/static/icons/060034DE.png b/static/icons/060034DE.png
new file mode 100755
index 00000000..b4eb2089
Binary files /dev/null and b/static/icons/060034DE.png differ
diff --git a/static/icons/060034DF.png b/static/icons/060034DF.png
new file mode 100755
index 00000000..31b0b9a2
Binary files /dev/null and b/static/icons/060034DF.png differ
diff --git a/static/icons/060034E0.png b/static/icons/060034E0.png
new file mode 100755
index 00000000..c4002198
Binary files /dev/null and b/static/icons/060034E0.png differ
diff --git a/static/icons/060034E1.png b/static/icons/060034E1.png
new file mode 100755
index 00000000..23800c3c
Binary files /dev/null and b/static/icons/060034E1.png differ
diff --git a/static/icons/060034E2.png b/static/icons/060034E2.png
new file mode 100755
index 00000000..4f52390d
Binary files /dev/null and b/static/icons/060034E2.png differ
diff --git a/static/icons/060034E3.png b/static/icons/060034E3.png
new file mode 100755
index 00000000..d33beee6
Binary files /dev/null and b/static/icons/060034E3.png differ
diff --git a/static/icons/060034E4.png b/static/icons/060034E4.png
new file mode 100755
index 00000000..9b321ac2
Binary files /dev/null and b/static/icons/060034E4.png differ
diff --git a/static/icons/060034E5.png b/static/icons/060034E5.png
new file mode 100755
index 00000000..dc652436
Binary files /dev/null and b/static/icons/060034E5.png differ
diff --git a/static/icons/060034E6.png b/static/icons/060034E6.png
new file mode 100755
index 00000000..2de1cef7
Binary files /dev/null and b/static/icons/060034E6.png differ
diff --git a/static/icons/060034E7.png b/static/icons/060034E7.png
new file mode 100755
index 00000000..5097486d
Binary files /dev/null and b/static/icons/060034E7.png differ
diff --git a/static/icons/060034E8.png b/static/icons/060034E8.png
new file mode 100755
index 00000000..ec6a6fa0
Binary files /dev/null and b/static/icons/060034E8.png differ
diff --git a/static/icons/060034E9.png b/static/icons/060034E9.png
new file mode 100755
index 00000000..911309b1
Binary files /dev/null and b/static/icons/060034E9.png differ
diff --git a/static/icons/060034EA.png b/static/icons/060034EA.png
new file mode 100755
index 00000000..600b180b
Binary files /dev/null and b/static/icons/060034EA.png differ
diff --git a/static/icons/060034EB.png b/static/icons/060034EB.png
new file mode 100755
index 00000000..da29d30a
Binary files /dev/null and b/static/icons/060034EB.png differ
diff --git a/static/icons/060034EC.png b/static/icons/060034EC.png
new file mode 100755
index 00000000..92512416
Binary files /dev/null and b/static/icons/060034EC.png differ
diff --git a/static/icons/060034ED.png b/static/icons/060034ED.png
new file mode 100755
index 00000000..51670deb
Binary files /dev/null and b/static/icons/060034ED.png differ
diff --git a/static/icons/060034EE.png b/static/icons/060034EE.png
new file mode 100755
index 00000000..0a80c568
Binary files /dev/null and b/static/icons/060034EE.png differ
diff --git a/static/icons/060034EF.png b/static/icons/060034EF.png
new file mode 100755
index 00000000..494c8c1b
Binary files /dev/null and b/static/icons/060034EF.png differ
diff --git a/static/icons/060034F0.png b/static/icons/060034F0.png
new file mode 100755
index 00000000..f8fe73b2
Binary files /dev/null and b/static/icons/060034F0.png differ
diff --git a/static/icons/060034F1.png b/static/icons/060034F1.png
new file mode 100755
index 00000000..b9ccf33c
Binary files /dev/null and b/static/icons/060034F1.png differ
diff --git a/static/icons/060034F2.png b/static/icons/060034F2.png
new file mode 100755
index 00000000..aeab493f
Binary files /dev/null and b/static/icons/060034F2.png differ
diff --git a/static/icons/060034F3.png b/static/icons/060034F3.png
new file mode 100755
index 00000000..5a4b07e5
Binary files /dev/null and b/static/icons/060034F3.png differ
diff --git a/static/icons/060034F4.png b/static/icons/060034F4.png
new file mode 100755
index 00000000..67962088
Binary files /dev/null and b/static/icons/060034F4.png differ
diff --git a/static/icons/060034F5.png b/static/icons/060034F5.png
new file mode 100755
index 00000000..159ec61b
Binary files /dev/null and b/static/icons/060034F5.png differ
diff --git a/static/icons/060034F6.png b/static/icons/060034F6.png
new file mode 100755
index 00000000..0f9ff2e3
Binary files /dev/null and b/static/icons/060034F6.png differ
diff --git a/static/icons/060034F7.png b/static/icons/060034F7.png
new file mode 100755
index 00000000..171bed03
Binary files /dev/null and b/static/icons/060034F7.png differ
diff --git a/static/icons/060034F8.png b/static/icons/060034F8.png
new file mode 100755
index 00000000..9c5d8f60
Binary files /dev/null and b/static/icons/060034F8.png differ
diff --git a/static/icons/060034F9.png b/static/icons/060034F9.png
new file mode 100755
index 00000000..bf6191a5
Binary files /dev/null and b/static/icons/060034F9.png differ
diff --git a/static/icons/060034FA.png b/static/icons/060034FA.png
new file mode 100755
index 00000000..aad70961
Binary files /dev/null and b/static/icons/060034FA.png differ
diff --git a/static/icons/060034FB.png b/static/icons/060034FB.png
new file mode 100755
index 00000000..85691ba3
Binary files /dev/null and b/static/icons/060034FB.png differ
diff --git a/static/icons/060034FC.png b/static/icons/060034FC.png
new file mode 100755
index 00000000..7e73b45f
Binary files /dev/null and b/static/icons/060034FC.png differ
diff --git a/static/icons/060034FD.png b/static/icons/060034FD.png
new file mode 100755
index 00000000..82442d78
Binary files /dev/null and b/static/icons/060034FD.png differ
diff --git a/static/icons/060034FE.png b/static/icons/060034FE.png
new file mode 100755
index 00000000..78790781
Binary files /dev/null and b/static/icons/060034FE.png differ
diff --git a/static/icons/060034FF.png b/static/icons/060034FF.png
new file mode 100755
index 00000000..5cb056e5
Binary files /dev/null and b/static/icons/060034FF.png differ
diff --git a/static/icons/06003500.png b/static/icons/06003500.png
new file mode 100755
index 00000000..29a0f2c6
Binary files /dev/null and b/static/icons/06003500.png differ
diff --git a/static/icons/06003501.png b/static/icons/06003501.png
new file mode 100755
index 00000000..671bcb45
Binary files /dev/null and b/static/icons/06003501.png differ
diff --git a/static/icons/06003502.png b/static/icons/06003502.png
new file mode 100755
index 00000000..900e1858
Binary files /dev/null and b/static/icons/06003502.png differ
diff --git a/static/icons/06003503.png b/static/icons/06003503.png
new file mode 100755
index 00000000..30e9beb1
Binary files /dev/null and b/static/icons/06003503.png differ
diff --git a/static/icons/06003504.png b/static/icons/06003504.png
new file mode 100755
index 00000000..86a60720
Binary files /dev/null and b/static/icons/06003504.png differ
diff --git a/static/icons/06003505.png b/static/icons/06003505.png
new file mode 100755
index 00000000..8f25c70b
Binary files /dev/null and b/static/icons/06003505.png differ
diff --git a/static/icons/06003507.png b/static/icons/06003507.png
new file mode 100755
index 00000000..c084506f
Binary files /dev/null and b/static/icons/06003507.png differ
diff --git a/static/icons/06003508.png b/static/icons/06003508.png
new file mode 100755
index 00000000..5a07ee28
Binary files /dev/null and b/static/icons/06003508.png differ
diff --git a/static/icons/06003509.png b/static/icons/06003509.png
new file mode 100755
index 00000000..26a5aaf7
Binary files /dev/null and b/static/icons/06003509.png differ
diff --git a/static/icons/0600350A.png b/static/icons/0600350A.png
new file mode 100755
index 00000000..ff9372c0
Binary files /dev/null and b/static/icons/0600350A.png differ
diff --git a/static/icons/0600350B.png b/static/icons/0600350B.png
new file mode 100755
index 00000000..7bd1a9ce
Binary files /dev/null and b/static/icons/0600350B.png differ
diff --git a/static/icons/0600350C.png b/static/icons/0600350C.png
new file mode 100755
index 00000000..491edd6c
Binary files /dev/null and b/static/icons/0600350C.png differ
diff --git a/static/icons/0600350D.png b/static/icons/0600350D.png
new file mode 100755
index 00000000..4ad97d4b
Binary files /dev/null and b/static/icons/0600350D.png differ
diff --git a/static/icons/0600350E.png b/static/icons/0600350E.png
new file mode 100755
index 00000000..9c21eb74
Binary files /dev/null and b/static/icons/0600350E.png differ
diff --git a/static/icons/0600350F.png b/static/icons/0600350F.png
new file mode 100755
index 00000000..954054c1
Binary files /dev/null and b/static/icons/0600350F.png differ
diff --git a/static/icons/06003510.png b/static/icons/06003510.png
new file mode 100755
index 00000000..dff07a7d
Binary files /dev/null and b/static/icons/06003510.png differ
diff --git a/static/icons/06003511.png b/static/icons/06003511.png
new file mode 100755
index 00000000..33d55429
Binary files /dev/null and b/static/icons/06003511.png differ
diff --git a/static/icons/06003512.png b/static/icons/06003512.png
new file mode 100755
index 00000000..3e45b294
Binary files /dev/null and b/static/icons/06003512.png differ
diff --git a/static/icons/06003513.png b/static/icons/06003513.png
new file mode 100755
index 00000000..4372f3fa
Binary files /dev/null and b/static/icons/06003513.png differ
diff --git a/static/icons/06003514.png b/static/icons/06003514.png
new file mode 100755
index 00000000..879b464b
Binary files /dev/null and b/static/icons/06003514.png differ
diff --git a/static/icons/06003515.png b/static/icons/06003515.png
new file mode 100755
index 00000000..d2bb59fc
Binary files /dev/null and b/static/icons/06003515.png differ
diff --git a/static/icons/06003516.png b/static/icons/06003516.png
new file mode 100755
index 00000000..cbcc1ec3
Binary files /dev/null and b/static/icons/06003516.png differ
diff --git a/static/icons/06003517.png b/static/icons/06003517.png
new file mode 100755
index 00000000..54b1f311
Binary files /dev/null and b/static/icons/06003517.png differ
diff --git a/static/icons/06003518.png b/static/icons/06003518.png
new file mode 100755
index 00000000..86a27a0c
Binary files /dev/null and b/static/icons/06003518.png differ
diff --git a/static/icons/06003519.png b/static/icons/06003519.png
new file mode 100755
index 00000000..fe471977
Binary files /dev/null and b/static/icons/06003519.png differ
diff --git a/static/icons/0600351A.png b/static/icons/0600351A.png
new file mode 100755
index 00000000..cdfbb1eb
Binary files /dev/null and b/static/icons/0600351A.png differ
diff --git a/static/icons/0600351B.png b/static/icons/0600351B.png
new file mode 100755
index 00000000..f9ee057c
Binary files /dev/null and b/static/icons/0600351B.png differ
diff --git a/static/icons/0600351C.png b/static/icons/0600351C.png
new file mode 100755
index 00000000..533c2428
Binary files /dev/null and b/static/icons/0600351C.png differ
diff --git a/static/icons/0600351D.png b/static/icons/0600351D.png
new file mode 100755
index 00000000..448e609d
Binary files /dev/null and b/static/icons/0600351D.png differ
diff --git a/static/icons/0600351E.png b/static/icons/0600351E.png
new file mode 100755
index 00000000..1ac88613
Binary files /dev/null and b/static/icons/0600351E.png differ
diff --git a/static/icons/0600351F.png b/static/icons/0600351F.png
new file mode 100755
index 00000000..023b55c8
Binary files /dev/null and b/static/icons/0600351F.png differ
diff --git a/static/icons/06003520.png b/static/icons/06003520.png
new file mode 100755
index 00000000..81161239
Binary files /dev/null and b/static/icons/06003520.png differ
diff --git a/static/icons/06003521.png b/static/icons/06003521.png
new file mode 100755
index 00000000..ff15fa42
Binary files /dev/null and b/static/icons/06003521.png differ
diff --git a/static/icons/06003522.png b/static/icons/06003522.png
new file mode 100755
index 00000000..f5f35ac4
Binary files /dev/null and b/static/icons/06003522.png differ
diff --git a/static/icons/06003523.png b/static/icons/06003523.png
new file mode 100755
index 00000000..9fd5f1fb
Binary files /dev/null and b/static/icons/06003523.png differ
diff --git a/static/icons/06003524.png b/static/icons/06003524.png
new file mode 100755
index 00000000..cc7fce13
Binary files /dev/null and b/static/icons/06003524.png differ
diff --git a/static/icons/06003525.png b/static/icons/06003525.png
new file mode 100755
index 00000000..7316a1e0
Binary files /dev/null and b/static/icons/06003525.png differ
diff --git a/static/icons/06003526.png b/static/icons/06003526.png
new file mode 100755
index 00000000..b6837f5c
Binary files /dev/null and b/static/icons/06003526.png differ
diff --git a/static/icons/06003527.png b/static/icons/06003527.png
new file mode 100755
index 00000000..bfa8a1c4
Binary files /dev/null and b/static/icons/06003527.png differ
diff --git a/static/icons/06003528.png b/static/icons/06003528.png
new file mode 100755
index 00000000..f6e93f94
Binary files /dev/null and b/static/icons/06003528.png differ
diff --git a/static/icons/06003529.png b/static/icons/06003529.png
new file mode 100755
index 00000000..c60981db
Binary files /dev/null and b/static/icons/06003529.png differ
diff --git a/static/icons/0600352A.png b/static/icons/0600352A.png
new file mode 100755
index 00000000..9e4cea9e
Binary files /dev/null and b/static/icons/0600352A.png differ
diff --git a/static/icons/0600352B.png b/static/icons/0600352B.png
new file mode 100755
index 00000000..2361a147
Binary files /dev/null and b/static/icons/0600352B.png differ
diff --git a/static/icons/0600352C.png b/static/icons/0600352C.png
new file mode 100755
index 00000000..f9061d04
Binary files /dev/null and b/static/icons/0600352C.png differ
diff --git a/static/icons/0600352D.png b/static/icons/0600352D.png
new file mode 100755
index 00000000..b30a81f3
Binary files /dev/null and b/static/icons/0600352D.png differ
diff --git a/static/icons/0600352E.png b/static/icons/0600352E.png
new file mode 100755
index 00000000..e41ff858
Binary files /dev/null and b/static/icons/0600352E.png differ
diff --git a/static/icons/0600352F.png b/static/icons/0600352F.png
new file mode 100755
index 00000000..9e8cb794
Binary files /dev/null and b/static/icons/0600352F.png differ
diff --git a/static/icons/06003530.png b/static/icons/06003530.png
new file mode 100755
index 00000000..3f2c16b9
Binary files /dev/null and b/static/icons/06003530.png differ
diff --git a/static/icons/06003531.png b/static/icons/06003531.png
new file mode 100755
index 00000000..675f275d
Binary files /dev/null and b/static/icons/06003531.png differ
diff --git a/static/icons/06003532.png b/static/icons/06003532.png
new file mode 100755
index 00000000..affefb32
Binary files /dev/null and b/static/icons/06003532.png differ
diff --git a/static/icons/06003533.png b/static/icons/06003533.png
new file mode 100755
index 00000000..7c9914f2
Binary files /dev/null and b/static/icons/06003533.png differ
diff --git a/static/icons/06003534.png b/static/icons/06003534.png
new file mode 100755
index 00000000..760b9139
Binary files /dev/null and b/static/icons/06003534.png differ
diff --git a/static/icons/06003535.png b/static/icons/06003535.png
new file mode 100755
index 00000000..b1b3e441
Binary files /dev/null and b/static/icons/06003535.png differ
diff --git a/static/icons/06003536.png b/static/icons/06003536.png
new file mode 100755
index 00000000..d043c420
Binary files /dev/null and b/static/icons/06003536.png differ
diff --git a/static/icons/06003537.png b/static/icons/06003537.png
new file mode 100755
index 00000000..b22dd539
Binary files /dev/null and b/static/icons/06003537.png differ
diff --git a/static/icons/06003538.png b/static/icons/06003538.png
new file mode 100755
index 00000000..114a4c09
Binary files /dev/null and b/static/icons/06003538.png differ
diff --git a/static/icons/06003539.png b/static/icons/06003539.png
new file mode 100755
index 00000000..56098903
Binary files /dev/null and b/static/icons/06003539.png differ
diff --git a/static/icons/0600353A.png b/static/icons/0600353A.png
new file mode 100755
index 00000000..5633a41e
Binary files /dev/null and b/static/icons/0600353A.png differ
diff --git a/static/icons/0600353B.png b/static/icons/0600353B.png
new file mode 100755
index 00000000..f996a084
Binary files /dev/null and b/static/icons/0600353B.png differ
diff --git a/static/icons/0600353C.png b/static/icons/0600353C.png
new file mode 100755
index 00000000..b36d4ae0
Binary files /dev/null and b/static/icons/0600353C.png differ
diff --git a/static/icons/0600353D.png b/static/icons/0600353D.png
new file mode 100755
index 00000000..29a16fa6
Binary files /dev/null and b/static/icons/0600353D.png differ
diff --git a/static/icons/0600353E.png b/static/icons/0600353E.png
new file mode 100755
index 00000000..bc8ab7a0
Binary files /dev/null and b/static/icons/0600353E.png differ
diff --git a/static/icons/0600353F.png b/static/icons/0600353F.png
new file mode 100755
index 00000000..0137f33e
Binary files /dev/null and b/static/icons/0600353F.png differ
diff --git a/static/icons/06003540.png b/static/icons/06003540.png
new file mode 100755
index 00000000..ee131014
Binary files /dev/null and b/static/icons/06003540.png differ
diff --git a/static/icons/06003541.png b/static/icons/06003541.png
new file mode 100755
index 00000000..97c1998f
Binary files /dev/null and b/static/icons/06003541.png differ
diff --git a/static/icons/06003542.png b/static/icons/06003542.png
new file mode 100755
index 00000000..239a6ed6
Binary files /dev/null and b/static/icons/06003542.png differ
diff --git a/static/icons/06003543.png b/static/icons/06003543.png
new file mode 100755
index 00000000..b7ea8fc1
Binary files /dev/null and b/static/icons/06003543.png differ
diff --git a/static/icons/06003544.png b/static/icons/06003544.png
new file mode 100755
index 00000000..b82e089d
Binary files /dev/null and b/static/icons/06003544.png differ
diff --git a/static/icons/06003545.png b/static/icons/06003545.png
new file mode 100755
index 00000000..cb8e9d59
Binary files /dev/null and b/static/icons/06003545.png differ
diff --git a/static/icons/06003546.png b/static/icons/06003546.png
new file mode 100755
index 00000000..cf8b8487
Binary files /dev/null and b/static/icons/06003546.png differ
diff --git a/static/icons/06003547.png b/static/icons/06003547.png
new file mode 100755
index 00000000..fff78636
Binary files /dev/null and b/static/icons/06003547.png differ
diff --git a/static/icons/06003548.png b/static/icons/06003548.png
new file mode 100755
index 00000000..6f4506c5
Binary files /dev/null and b/static/icons/06003548.png differ
diff --git a/static/icons/06003549.png b/static/icons/06003549.png
new file mode 100755
index 00000000..5735d2f2
Binary files /dev/null and b/static/icons/06003549.png differ
diff --git a/static/icons/0600354A.png b/static/icons/0600354A.png
new file mode 100755
index 00000000..0632ad43
Binary files /dev/null and b/static/icons/0600354A.png differ
diff --git a/static/icons/0600354B.png b/static/icons/0600354B.png
new file mode 100755
index 00000000..84addb9c
Binary files /dev/null and b/static/icons/0600354B.png differ
diff --git a/static/icons/0600354C.png b/static/icons/0600354C.png
new file mode 100755
index 00000000..f27719fd
Binary files /dev/null and b/static/icons/0600354C.png differ
diff --git a/static/icons/0600354D.png b/static/icons/0600354D.png
new file mode 100755
index 00000000..146c016e
Binary files /dev/null and b/static/icons/0600354D.png differ
diff --git a/static/icons/0600354E.png b/static/icons/0600354E.png
new file mode 100755
index 00000000..465e7816
Binary files /dev/null and b/static/icons/0600354E.png differ
diff --git a/static/icons/0600354F.png b/static/icons/0600354F.png
new file mode 100755
index 00000000..9c59a839
Binary files /dev/null and b/static/icons/0600354F.png differ
diff --git a/static/icons/06003550.png b/static/icons/06003550.png
new file mode 100755
index 00000000..6bd0d864
Binary files /dev/null and b/static/icons/06003550.png differ
diff --git a/static/icons/06003551.png b/static/icons/06003551.png
new file mode 100755
index 00000000..c2a99d99
Binary files /dev/null and b/static/icons/06003551.png differ
diff --git a/static/icons/06003552.png b/static/icons/06003552.png
new file mode 100755
index 00000000..e40f4eb9
Binary files /dev/null and b/static/icons/06003552.png differ
diff --git a/static/icons/06003553.png b/static/icons/06003553.png
new file mode 100755
index 00000000..81565742
Binary files /dev/null and b/static/icons/06003553.png differ
diff --git a/static/icons/06003554.png b/static/icons/06003554.png
new file mode 100755
index 00000000..f6dfc230
Binary files /dev/null and b/static/icons/06003554.png differ
diff --git a/static/icons/06003555.png b/static/icons/06003555.png
new file mode 100755
index 00000000..1ac398fb
Binary files /dev/null and b/static/icons/06003555.png differ
diff --git a/static/icons/06003556.png b/static/icons/06003556.png
new file mode 100755
index 00000000..08c81c23
Binary files /dev/null and b/static/icons/06003556.png differ
diff --git a/static/icons/06003557.png b/static/icons/06003557.png
new file mode 100755
index 00000000..d6001490
Binary files /dev/null and b/static/icons/06003557.png differ
diff --git a/static/icons/06003558.png b/static/icons/06003558.png
new file mode 100755
index 00000000..75627452
Binary files /dev/null and b/static/icons/06003558.png differ
diff --git a/static/icons/06003559.png b/static/icons/06003559.png
new file mode 100755
index 00000000..93e5c2db
Binary files /dev/null and b/static/icons/06003559.png differ
diff --git a/static/icons/0600355A.png b/static/icons/0600355A.png
new file mode 100755
index 00000000..3645f51b
Binary files /dev/null and b/static/icons/0600355A.png differ
diff --git a/static/icons/0600355B.png b/static/icons/0600355B.png
new file mode 100755
index 00000000..0e9607ff
Binary files /dev/null and b/static/icons/0600355B.png differ
diff --git a/static/icons/0600355C.png b/static/icons/0600355C.png
new file mode 100755
index 00000000..eee4be0b
Binary files /dev/null and b/static/icons/0600355C.png differ
diff --git a/static/icons/0600355D.png b/static/icons/0600355D.png
new file mode 100755
index 00000000..2f57ce0d
Binary files /dev/null and b/static/icons/0600355D.png differ
diff --git a/static/icons/0600355E.png b/static/icons/0600355E.png
new file mode 100755
index 00000000..b72c2d9b
Binary files /dev/null and b/static/icons/0600355E.png differ
diff --git a/static/icons/0600355F.png b/static/icons/0600355F.png
new file mode 100755
index 00000000..80530994
Binary files /dev/null and b/static/icons/0600355F.png differ
diff --git a/static/icons/06003560.png b/static/icons/06003560.png
new file mode 100755
index 00000000..0f9d1d76
Binary files /dev/null and b/static/icons/06003560.png differ
diff --git a/static/icons/06003561.png b/static/icons/06003561.png
new file mode 100755
index 00000000..5f2e0038
Binary files /dev/null and b/static/icons/06003561.png differ
diff --git a/static/icons/06003562.png b/static/icons/06003562.png
new file mode 100755
index 00000000..fe3233c9
Binary files /dev/null and b/static/icons/06003562.png differ
diff --git a/static/icons/06003563.png b/static/icons/06003563.png
new file mode 100755
index 00000000..7c559182
Binary files /dev/null and b/static/icons/06003563.png differ
diff --git a/static/icons/06003564.png b/static/icons/06003564.png
new file mode 100755
index 00000000..17d6abe4
Binary files /dev/null and b/static/icons/06003564.png differ
diff --git a/static/icons/06003565.png b/static/icons/06003565.png
new file mode 100755
index 00000000..461ccf42
Binary files /dev/null and b/static/icons/06003565.png differ
diff --git a/static/icons/06003566.png b/static/icons/06003566.png
new file mode 100755
index 00000000..f5fbeef9
Binary files /dev/null and b/static/icons/06003566.png differ
diff --git a/static/icons/06003567.png b/static/icons/06003567.png
new file mode 100755
index 00000000..e4047366
Binary files /dev/null and b/static/icons/06003567.png differ
diff --git a/static/icons/06003568.png b/static/icons/06003568.png
new file mode 100755
index 00000000..d7585c71
Binary files /dev/null and b/static/icons/06003568.png differ
diff --git a/static/icons/06003569.png b/static/icons/06003569.png
new file mode 100755
index 00000000..053e5581
Binary files /dev/null and b/static/icons/06003569.png differ
diff --git a/static/icons/0600356A.png b/static/icons/0600356A.png
new file mode 100755
index 00000000..905b6bc5
Binary files /dev/null and b/static/icons/0600356A.png differ
diff --git a/static/icons/0600356B.png b/static/icons/0600356B.png
new file mode 100755
index 00000000..d03cf559
Binary files /dev/null and b/static/icons/0600356B.png differ
diff --git a/static/icons/0600356C.png b/static/icons/0600356C.png
new file mode 100755
index 00000000..3561c4b3
Binary files /dev/null and b/static/icons/0600356C.png differ
diff --git a/static/icons/0600356D.png b/static/icons/0600356D.png
new file mode 100755
index 00000000..52c56049
Binary files /dev/null and b/static/icons/0600356D.png differ
diff --git a/static/icons/0600356E.png b/static/icons/0600356E.png
new file mode 100755
index 00000000..2fb8b5f1
Binary files /dev/null and b/static/icons/0600356E.png differ
diff --git a/static/icons/0600356F.png b/static/icons/0600356F.png
new file mode 100755
index 00000000..91c57485
Binary files /dev/null and b/static/icons/0600356F.png differ
diff --git a/static/icons/06003570.png b/static/icons/06003570.png
new file mode 100755
index 00000000..e636d401
Binary files /dev/null and b/static/icons/06003570.png differ
diff --git a/static/icons/06003571.png b/static/icons/06003571.png
new file mode 100755
index 00000000..fd5008b5
Binary files /dev/null and b/static/icons/06003571.png differ
diff --git a/static/icons/06003572.png b/static/icons/06003572.png
new file mode 100755
index 00000000..e0c3d1db
Binary files /dev/null and b/static/icons/06003572.png differ
diff --git a/static/icons/06003573.png b/static/icons/06003573.png
new file mode 100755
index 00000000..ad5eb163
Binary files /dev/null and b/static/icons/06003573.png differ
diff --git a/static/icons/06003574.png b/static/icons/06003574.png
new file mode 100755
index 00000000..1efdb43d
Binary files /dev/null and b/static/icons/06003574.png differ
diff --git a/static/icons/06003575.png b/static/icons/06003575.png
new file mode 100755
index 00000000..9cb1547d
Binary files /dev/null and b/static/icons/06003575.png differ
diff --git a/static/icons/06003576.png b/static/icons/06003576.png
new file mode 100755
index 00000000..f8a9316f
Binary files /dev/null and b/static/icons/06003576.png differ
diff --git a/static/icons/06003577.png b/static/icons/06003577.png
new file mode 100755
index 00000000..9c767e76
Binary files /dev/null and b/static/icons/06003577.png differ
diff --git a/static/icons/06003578.png b/static/icons/06003578.png
new file mode 100755
index 00000000..71cde6a2
Binary files /dev/null and b/static/icons/06003578.png differ
diff --git a/static/icons/06003579.png b/static/icons/06003579.png
new file mode 100755
index 00000000..7bf311b0
Binary files /dev/null and b/static/icons/06003579.png differ
diff --git a/static/icons/0600357A.png b/static/icons/0600357A.png
new file mode 100755
index 00000000..afb4d31b
Binary files /dev/null and b/static/icons/0600357A.png differ
diff --git a/static/icons/0600357B.png b/static/icons/0600357B.png
new file mode 100755
index 00000000..9e7bd81c
Binary files /dev/null and b/static/icons/0600357B.png differ
diff --git a/static/icons/0600357C.png b/static/icons/0600357C.png
new file mode 100755
index 00000000..7aa18636
Binary files /dev/null and b/static/icons/0600357C.png differ
diff --git a/static/icons/0600357D.png b/static/icons/0600357D.png
new file mode 100755
index 00000000..96ae1883
Binary files /dev/null and b/static/icons/0600357D.png differ
diff --git a/static/icons/0600357E.png b/static/icons/0600357E.png
new file mode 100755
index 00000000..f1f37a0a
Binary files /dev/null and b/static/icons/0600357E.png differ
diff --git a/static/icons/0600357F.png b/static/icons/0600357F.png
new file mode 100755
index 00000000..92f2d800
Binary files /dev/null and b/static/icons/0600357F.png differ
diff --git a/static/icons/06003580.png b/static/icons/06003580.png
new file mode 100755
index 00000000..146ca744
Binary files /dev/null and b/static/icons/06003580.png differ
diff --git a/static/icons/06003581.png b/static/icons/06003581.png
new file mode 100755
index 00000000..289a71e1
Binary files /dev/null and b/static/icons/06003581.png differ
diff --git a/static/icons/06003582.png b/static/icons/06003582.png
new file mode 100755
index 00000000..e69ce9ae
Binary files /dev/null and b/static/icons/06003582.png differ
diff --git a/static/icons/06003583.png b/static/icons/06003583.png
new file mode 100755
index 00000000..39d4f2dc
Binary files /dev/null and b/static/icons/06003583.png differ
diff --git a/static/icons/06003584.png b/static/icons/06003584.png
new file mode 100755
index 00000000..44483867
Binary files /dev/null and b/static/icons/06003584.png differ
diff --git a/static/icons/06003585.png b/static/icons/06003585.png
new file mode 100755
index 00000000..d0257570
Binary files /dev/null and b/static/icons/06003585.png differ
diff --git a/static/icons/06003586.png b/static/icons/06003586.png
new file mode 100755
index 00000000..be794aa8
Binary files /dev/null and b/static/icons/06003586.png differ
diff --git a/static/icons/06003587.png b/static/icons/06003587.png
new file mode 100755
index 00000000..886c4c9c
Binary files /dev/null and b/static/icons/06003587.png differ
diff --git a/static/icons/06003588.png b/static/icons/06003588.png
new file mode 100755
index 00000000..dc66a922
Binary files /dev/null and b/static/icons/06003588.png differ
diff --git a/static/icons/06003589.png b/static/icons/06003589.png
new file mode 100755
index 00000000..bf2d3e21
Binary files /dev/null and b/static/icons/06003589.png differ
diff --git a/static/icons/0600358A.png b/static/icons/0600358A.png
new file mode 100755
index 00000000..cff38857
Binary files /dev/null and b/static/icons/0600358A.png differ
diff --git a/static/icons/0600358B.png b/static/icons/0600358B.png
new file mode 100755
index 00000000..3fb38e52
Binary files /dev/null and b/static/icons/0600358B.png differ
diff --git a/static/icons/0600358C.png b/static/icons/0600358C.png
new file mode 100755
index 00000000..e1fc7e3d
Binary files /dev/null and b/static/icons/0600358C.png differ
diff --git a/static/icons/0600358D.png b/static/icons/0600358D.png
new file mode 100755
index 00000000..a950a819
Binary files /dev/null and b/static/icons/0600358D.png differ
diff --git a/static/icons/0600358F.png b/static/icons/0600358F.png
new file mode 100755
index 00000000..89153c16
Binary files /dev/null and b/static/icons/0600358F.png differ
diff --git a/static/icons/06003590.png b/static/icons/06003590.png
new file mode 100755
index 00000000..51db08a3
Binary files /dev/null and b/static/icons/06003590.png differ
diff --git a/static/icons/06003591.png b/static/icons/06003591.png
new file mode 100755
index 00000000..bee80785
Binary files /dev/null and b/static/icons/06003591.png differ
diff --git a/static/icons/06003592.png b/static/icons/06003592.png
new file mode 100755
index 00000000..b5835aa9
Binary files /dev/null and b/static/icons/06003592.png differ
diff --git a/static/icons/06003593.png b/static/icons/06003593.png
new file mode 100755
index 00000000..9a242d47
Binary files /dev/null and b/static/icons/06003593.png differ
diff --git a/static/icons/06003594.png b/static/icons/06003594.png
new file mode 100755
index 00000000..1dee2df9
Binary files /dev/null and b/static/icons/06003594.png differ
diff --git a/static/icons/06003595.png b/static/icons/06003595.png
new file mode 100755
index 00000000..d9bcd371
Binary files /dev/null and b/static/icons/06003595.png differ
diff --git a/static/icons/06003596.png b/static/icons/06003596.png
new file mode 100755
index 00000000..6c87633f
Binary files /dev/null and b/static/icons/06003596.png differ
diff --git a/static/icons/06003597.png b/static/icons/06003597.png
new file mode 100755
index 00000000..262416f7
Binary files /dev/null and b/static/icons/06003597.png differ
diff --git a/static/icons/06003598.png b/static/icons/06003598.png
new file mode 100755
index 00000000..918d1db1
Binary files /dev/null and b/static/icons/06003598.png differ
diff --git a/static/icons/06003599.png b/static/icons/06003599.png
new file mode 100755
index 00000000..bc988d19
Binary files /dev/null and b/static/icons/06003599.png differ
diff --git a/static/icons/0600359A.png b/static/icons/0600359A.png
new file mode 100755
index 00000000..6e8f62d0
Binary files /dev/null and b/static/icons/0600359A.png differ
diff --git a/static/icons/0600359B.png b/static/icons/0600359B.png
new file mode 100755
index 00000000..7d3d4538
Binary files /dev/null and b/static/icons/0600359B.png differ
diff --git a/static/icons/0600359C.png b/static/icons/0600359C.png
new file mode 100755
index 00000000..fc2720b1
Binary files /dev/null and b/static/icons/0600359C.png differ
diff --git a/static/icons/0600359D.png b/static/icons/0600359D.png
new file mode 100755
index 00000000..cfbf5aa5
Binary files /dev/null and b/static/icons/0600359D.png differ
diff --git a/static/icons/0600359E.png b/static/icons/0600359E.png
new file mode 100755
index 00000000..f3af2891
Binary files /dev/null and b/static/icons/0600359E.png differ
diff --git a/static/icons/0600359F.png b/static/icons/0600359F.png
new file mode 100755
index 00000000..22de72d8
Binary files /dev/null and b/static/icons/0600359F.png differ
diff --git a/static/icons/060035A0.png b/static/icons/060035A0.png
new file mode 100755
index 00000000..4b1ba6d7
Binary files /dev/null and b/static/icons/060035A0.png differ
diff --git a/static/icons/060035A1.png b/static/icons/060035A1.png
new file mode 100755
index 00000000..20d5cffc
Binary files /dev/null and b/static/icons/060035A1.png differ
diff --git a/static/icons/060035A2.png b/static/icons/060035A2.png
new file mode 100755
index 00000000..bf8b08fc
Binary files /dev/null and b/static/icons/060035A2.png differ
diff --git a/static/icons/060035A3.png b/static/icons/060035A3.png
new file mode 100755
index 00000000..4cb77c4e
Binary files /dev/null and b/static/icons/060035A3.png differ
diff --git a/static/icons/060035A4.png b/static/icons/060035A4.png
new file mode 100755
index 00000000..b131abfb
Binary files /dev/null and b/static/icons/060035A4.png differ
diff --git a/static/icons/060035A5.png b/static/icons/060035A5.png
new file mode 100755
index 00000000..c7de37e8
Binary files /dev/null and b/static/icons/060035A5.png differ
diff --git a/static/icons/060035A6.png b/static/icons/060035A6.png
new file mode 100755
index 00000000..8f220f87
Binary files /dev/null and b/static/icons/060035A6.png differ
diff --git a/static/icons/060035A8.png b/static/icons/060035A8.png
new file mode 100755
index 00000000..fc08dc48
Binary files /dev/null and b/static/icons/060035A8.png differ
diff --git a/static/icons/060035A9.png b/static/icons/060035A9.png
new file mode 100755
index 00000000..ed72b0a6
Binary files /dev/null and b/static/icons/060035A9.png differ
diff --git a/static/icons/060035AA.png b/static/icons/060035AA.png
new file mode 100755
index 00000000..79c02c1c
Binary files /dev/null and b/static/icons/060035AA.png differ
diff --git a/static/icons/060035AB.png b/static/icons/060035AB.png
new file mode 100755
index 00000000..e2014e69
Binary files /dev/null and b/static/icons/060035AB.png differ
diff --git a/static/icons/060035AC.png b/static/icons/060035AC.png
new file mode 100755
index 00000000..35adaff3
Binary files /dev/null and b/static/icons/060035AC.png differ
diff --git a/static/icons/060035AD.png b/static/icons/060035AD.png
new file mode 100755
index 00000000..e6cd0b0a
Binary files /dev/null and b/static/icons/060035AD.png differ
diff --git a/static/icons/060035AE.png b/static/icons/060035AE.png
new file mode 100755
index 00000000..1f7f9868
Binary files /dev/null and b/static/icons/060035AE.png differ
diff --git a/static/icons/060035AF.png b/static/icons/060035AF.png
new file mode 100755
index 00000000..3e25c3ea
Binary files /dev/null and b/static/icons/060035AF.png differ
diff --git a/static/icons/060035B0.png b/static/icons/060035B0.png
new file mode 100755
index 00000000..bb4d12d5
Binary files /dev/null and b/static/icons/060035B0.png differ
diff --git a/static/icons/060035B1.png b/static/icons/060035B1.png
new file mode 100755
index 00000000..da4f9eb1
Binary files /dev/null and b/static/icons/060035B1.png differ
diff --git a/static/icons/060035B2.png b/static/icons/060035B2.png
new file mode 100755
index 00000000..912c896e
Binary files /dev/null and b/static/icons/060035B2.png differ
diff --git a/static/icons/060035B3.png b/static/icons/060035B3.png
new file mode 100755
index 00000000..63132573
Binary files /dev/null and b/static/icons/060035B3.png differ
diff --git a/static/icons/060035B4.png b/static/icons/060035B4.png
new file mode 100755
index 00000000..24895743
Binary files /dev/null and b/static/icons/060035B4.png differ
diff --git a/static/icons/060035B5.png b/static/icons/060035B5.png
new file mode 100755
index 00000000..873d2a4c
Binary files /dev/null and b/static/icons/060035B5.png differ
diff --git a/static/icons/060035B6.png b/static/icons/060035B6.png
new file mode 100755
index 00000000..70dc852f
Binary files /dev/null and b/static/icons/060035B6.png differ
diff --git a/static/icons/060035B7.png b/static/icons/060035B7.png
new file mode 100755
index 00000000..ad151232
Binary files /dev/null and b/static/icons/060035B7.png differ
diff --git a/static/icons/060035B8.png b/static/icons/060035B8.png
new file mode 100755
index 00000000..3bba75f1
Binary files /dev/null and b/static/icons/060035B8.png differ
diff --git a/static/icons/060035B9.png b/static/icons/060035B9.png
new file mode 100755
index 00000000..d8f584d6
Binary files /dev/null and b/static/icons/060035B9.png differ
diff --git a/static/icons/060035BA.png b/static/icons/060035BA.png
new file mode 100755
index 00000000..2a3ac47e
Binary files /dev/null and b/static/icons/060035BA.png differ
diff --git a/static/icons/060035BB.png b/static/icons/060035BB.png
new file mode 100755
index 00000000..9577c95f
Binary files /dev/null and b/static/icons/060035BB.png differ
diff --git a/static/icons/060035BC.png b/static/icons/060035BC.png
new file mode 100755
index 00000000..82e65be0
Binary files /dev/null and b/static/icons/060035BC.png differ
diff --git a/static/icons/060035BD.png b/static/icons/060035BD.png
new file mode 100755
index 00000000..fec46b6a
Binary files /dev/null and b/static/icons/060035BD.png differ
diff --git a/static/icons/060035BE.png b/static/icons/060035BE.png
new file mode 100755
index 00000000..0ba50ffd
Binary files /dev/null and b/static/icons/060035BE.png differ
diff --git a/static/icons/060035BF.png b/static/icons/060035BF.png
new file mode 100755
index 00000000..aa546b6d
Binary files /dev/null and b/static/icons/060035BF.png differ
diff --git a/static/icons/060035C0.png b/static/icons/060035C0.png
new file mode 100755
index 00000000..cc572527
Binary files /dev/null and b/static/icons/060035C0.png differ
diff --git a/static/icons/060035C1.png b/static/icons/060035C1.png
new file mode 100755
index 00000000..f48691da
Binary files /dev/null and b/static/icons/060035C1.png differ
diff --git a/static/icons/060035C2.png b/static/icons/060035C2.png
new file mode 100755
index 00000000..75f450d5
Binary files /dev/null and b/static/icons/060035C2.png differ
diff --git a/static/icons/060035C3.png b/static/icons/060035C3.png
new file mode 100755
index 00000000..34b727f2
Binary files /dev/null and b/static/icons/060035C3.png differ
diff --git a/static/icons/060035C4.png b/static/icons/060035C4.png
new file mode 100755
index 00000000..b437604d
Binary files /dev/null and b/static/icons/060035C4.png differ
diff --git a/static/icons/060035C5.png b/static/icons/060035C5.png
new file mode 100755
index 00000000..633fdd16
Binary files /dev/null and b/static/icons/060035C5.png differ
diff --git a/static/icons/060035C6.png b/static/icons/060035C6.png
new file mode 100755
index 00000000..1543a43b
Binary files /dev/null and b/static/icons/060035C6.png differ
diff --git a/static/icons/060035C7.png b/static/icons/060035C7.png
new file mode 100755
index 00000000..a0c7507d
Binary files /dev/null and b/static/icons/060035C7.png differ
diff --git a/static/icons/060035C8.png b/static/icons/060035C8.png
new file mode 100755
index 00000000..aabf5e94
Binary files /dev/null and b/static/icons/060035C8.png differ
diff --git a/static/icons/060035C9.png b/static/icons/060035C9.png
new file mode 100755
index 00000000..b0aa4a75
Binary files /dev/null and b/static/icons/060035C9.png differ
diff --git a/static/icons/060035CA.png b/static/icons/060035CA.png
new file mode 100755
index 00000000..4b891501
Binary files /dev/null and b/static/icons/060035CA.png differ
diff --git a/static/icons/060035CB.png b/static/icons/060035CB.png
new file mode 100755
index 00000000..28c25125
Binary files /dev/null and b/static/icons/060035CB.png differ
diff --git a/static/icons/060035CC.png b/static/icons/060035CC.png
new file mode 100755
index 00000000..e792d429
Binary files /dev/null and b/static/icons/060035CC.png differ
diff --git a/static/icons/060035CD.png b/static/icons/060035CD.png
new file mode 100755
index 00000000..7d8b197f
Binary files /dev/null and b/static/icons/060035CD.png differ
diff --git a/static/icons/060035CE.png b/static/icons/060035CE.png
new file mode 100755
index 00000000..d31f03b2
Binary files /dev/null and b/static/icons/060035CE.png differ
diff --git a/static/icons/060035CF.png b/static/icons/060035CF.png
new file mode 100755
index 00000000..60c3a133
Binary files /dev/null and b/static/icons/060035CF.png differ
diff --git a/static/icons/060035D0.png b/static/icons/060035D0.png
new file mode 100755
index 00000000..f1585bcc
Binary files /dev/null and b/static/icons/060035D0.png differ
diff --git a/static/icons/060035D1.png b/static/icons/060035D1.png
new file mode 100755
index 00000000..015d3f38
Binary files /dev/null and b/static/icons/060035D1.png differ
diff --git a/static/icons/060035D2.png b/static/icons/060035D2.png
new file mode 100755
index 00000000..77726bc4
Binary files /dev/null and b/static/icons/060035D2.png differ
diff --git a/static/icons/060035D3.png b/static/icons/060035D3.png
new file mode 100755
index 00000000..e8d31f52
Binary files /dev/null and b/static/icons/060035D3.png differ
diff --git a/static/icons/060035D4.png b/static/icons/060035D4.png
new file mode 100755
index 00000000..00a54f64
Binary files /dev/null and b/static/icons/060035D4.png differ
diff --git a/static/icons/060035D5.png b/static/icons/060035D5.png
new file mode 100755
index 00000000..3dd19787
Binary files /dev/null and b/static/icons/060035D5.png differ
diff --git a/static/icons/060035D6.png b/static/icons/060035D6.png
new file mode 100755
index 00000000..a13e639d
Binary files /dev/null and b/static/icons/060035D6.png differ
diff --git a/static/icons/060035D7.png b/static/icons/060035D7.png
new file mode 100755
index 00000000..b1fe647b
Binary files /dev/null and b/static/icons/060035D7.png differ
diff --git a/static/icons/060035D8.png b/static/icons/060035D8.png
new file mode 100755
index 00000000..0ff7341d
Binary files /dev/null and b/static/icons/060035D8.png differ
diff --git a/static/icons/060035D9.png b/static/icons/060035D9.png
new file mode 100755
index 00000000..701d9f37
Binary files /dev/null and b/static/icons/060035D9.png differ
diff --git a/static/icons/060035DA.png b/static/icons/060035DA.png
new file mode 100755
index 00000000..42379c33
Binary files /dev/null and b/static/icons/060035DA.png differ
diff --git a/static/icons/060035DB.png b/static/icons/060035DB.png
new file mode 100755
index 00000000..ce23e910
Binary files /dev/null and b/static/icons/060035DB.png differ
diff --git a/static/icons/060035DC.png b/static/icons/060035DC.png
new file mode 100755
index 00000000..db3d8ab6
Binary files /dev/null and b/static/icons/060035DC.png differ
diff --git a/static/icons/060035DD.png b/static/icons/060035DD.png
new file mode 100755
index 00000000..63068222
Binary files /dev/null and b/static/icons/060035DD.png differ
diff --git a/static/icons/060035DE.png b/static/icons/060035DE.png
new file mode 100755
index 00000000..bff56057
Binary files /dev/null and b/static/icons/060035DE.png differ
diff --git a/static/icons/060035DF.png b/static/icons/060035DF.png
new file mode 100755
index 00000000..bd14217a
Binary files /dev/null and b/static/icons/060035DF.png differ
diff --git a/static/icons/060035E0.png b/static/icons/060035E0.png
new file mode 100755
index 00000000..bdd7c898
Binary files /dev/null and b/static/icons/060035E0.png differ
diff --git a/static/icons/060035E1.png b/static/icons/060035E1.png
new file mode 100755
index 00000000..cf6ff7a3
Binary files /dev/null and b/static/icons/060035E1.png differ
diff --git a/static/icons/060035E2.png b/static/icons/060035E2.png
new file mode 100755
index 00000000..ce913e1c
Binary files /dev/null and b/static/icons/060035E2.png differ
diff --git a/static/icons/060035E3.png b/static/icons/060035E3.png
new file mode 100755
index 00000000..71ef1e65
Binary files /dev/null and b/static/icons/060035E3.png differ
diff --git a/static/icons/060035E4.png b/static/icons/060035E4.png
new file mode 100755
index 00000000..25ed0615
Binary files /dev/null and b/static/icons/060035E4.png differ
diff --git a/static/icons/060035E5.png b/static/icons/060035E5.png
new file mode 100755
index 00000000..d9966a1b
Binary files /dev/null and b/static/icons/060035E5.png differ
diff --git a/static/icons/060035E6.png b/static/icons/060035E6.png
new file mode 100755
index 00000000..cfb64fd6
Binary files /dev/null and b/static/icons/060035E6.png differ
diff --git a/static/icons/060035E7.png b/static/icons/060035E7.png
new file mode 100755
index 00000000..0a475436
Binary files /dev/null and b/static/icons/060035E7.png differ
diff --git a/static/icons/060035E8.png b/static/icons/060035E8.png
new file mode 100755
index 00000000..727629a8
Binary files /dev/null and b/static/icons/060035E8.png differ
diff --git a/static/icons/060035E9.png b/static/icons/060035E9.png
new file mode 100755
index 00000000..10369c22
Binary files /dev/null and b/static/icons/060035E9.png differ
diff --git a/static/icons/060035EA.png b/static/icons/060035EA.png
new file mode 100755
index 00000000..7328fa28
Binary files /dev/null and b/static/icons/060035EA.png differ
diff --git a/static/icons/060035EB.png b/static/icons/060035EB.png
new file mode 100755
index 00000000..d12f6237
Binary files /dev/null and b/static/icons/060035EB.png differ
diff --git a/static/icons/060035EC.png b/static/icons/060035EC.png
new file mode 100755
index 00000000..3e750be1
Binary files /dev/null and b/static/icons/060035EC.png differ
diff --git a/static/icons/060035ED.png b/static/icons/060035ED.png
new file mode 100755
index 00000000..0ee70875
Binary files /dev/null and b/static/icons/060035ED.png differ
diff --git a/static/icons/060035EE.png b/static/icons/060035EE.png
new file mode 100755
index 00000000..233b121c
Binary files /dev/null and b/static/icons/060035EE.png differ
diff --git a/static/icons/060035EF.png b/static/icons/060035EF.png
new file mode 100755
index 00000000..84bef8a3
Binary files /dev/null and b/static/icons/060035EF.png differ
diff --git a/static/icons/060035F0.png b/static/icons/060035F0.png
new file mode 100755
index 00000000..a494f808
Binary files /dev/null and b/static/icons/060035F0.png differ
diff --git a/static/icons/060035F1.png b/static/icons/060035F1.png
new file mode 100755
index 00000000..4846aad6
Binary files /dev/null and b/static/icons/060035F1.png differ
diff --git a/static/icons/060035F2.png b/static/icons/060035F2.png
new file mode 100755
index 00000000..15604b0b
Binary files /dev/null and b/static/icons/060035F2.png differ
diff --git a/static/icons/060035F3.png b/static/icons/060035F3.png
new file mode 100755
index 00000000..8e2672f9
Binary files /dev/null and b/static/icons/060035F3.png differ
diff --git a/static/icons/060035F4.png b/static/icons/060035F4.png
new file mode 100755
index 00000000..1e525517
Binary files /dev/null and b/static/icons/060035F4.png differ
diff --git a/static/icons/060035F5.png b/static/icons/060035F5.png
new file mode 100755
index 00000000..c21af5fa
Binary files /dev/null and b/static/icons/060035F5.png differ
diff --git a/static/icons/060035F6.png b/static/icons/060035F6.png
new file mode 100755
index 00000000..32417078
Binary files /dev/null and b/static/icons/060035F6.png differ
diff --git a/static/icons/060035F7.png b/static/icons/060035F7.png
new file mode 100755
index 00000000..cb3077c6
Binary files /dev/null and b/static/icons/060035F7.png differ
diff --git a/static/icons/060035F8.png b/static/icons/060035F8.png
new file mode 100755
index 00000000..d5467151
Binary files /dev/null and b/static/icons/060035F8.png differ
diff --git a/static/icons/060035F9.png b/static/icons/060035F9.png
new file mode 100755
index 00000000..64899abe
Binary files /dev/null and b/static/icons/060035F9.png differ
diff --git a/static/icons/060035FA.png b/static/icons/060035FA.png
new file mode 100755
index 00000000..a533da1c
Binary files /dev/null and b/static/icons/060035FA.png differ
diff --git a/static/icons/060035FB.png b/static/icons/060035FB.png
new file mode 100755
index 00000000..b4afac7f
Binary files /dev/null and b/static/icons/060035FB.png differ
diff --git a/static/icons/060035FC.png b/static/icons/060035FC.png
new file mode 100755
index 00000000..fc1a7740
Binary files /dev/null and b/static/icons/060035FC.png differ
diff --git a/static/icons/060035FD.png b/static/icons/060035FD.png
new file mode 100755
index 00000000..26ae2648
Binary files /dev/null and b/static/icons/060035FD.png differ
diff --git a/static/icons/060035FE.png b/static/icons/060035FE.png
new file mode 100755
index 00000000..719de31a
Binary files /dev/null and b/static/icons/060035FE.png differ
diff --git a/static/icons/060035FF.png b/static/icons/060035FF.png
new file mode 100755
index 00000000..af47a3a0
Binary files /dev/null and b/static/icons/060035FF.png differ
diff --git a/static/icons/06003600.png b/static/icons/06003600.png
new file mode 100755
index 00000000..8a7cbf36
Binary files /dev/null and b/static/icons/06003600.png differ
diff --git a/static/icons/06003601.png b/static/icons/06003601.png
new file mode 100755
index 00000000..b2e9a648
Binary files /dev/null and b/static/icons/06003601.png differ
diff --git a/static/icons/06003602.png b/static/icons/06003602.png
new file mode 100755
index 00000000..9be140a5
Binary files /dev/null and b/static/icons/06003602.png differ
diff --git a/static/icons/06003603.png b/static/icons/06003603.png
new file mode 100755
index 00000000..9f49b5c9
Binary files /dev/null and b/static/icons/06003603.png differ
diff --git a/static/icons/06003604.png b/static/icons/06003604.png
new file mode 100755
index 00000000..47cce0dc
Binary files /dev/null and b/static/icons/06003604.png differ
diff --git a/static/icons/06003605.png b/static/icons/06003605.png
new file mode 100755
index 00000000..20112829
Binary files /dev/null and b/static/icons/06003605.png differ
diff --git a/static/icons/06003606.png b/static/icons/06003606.png
new file mode 100755
index 00000000..3cc40743
Binary files /dev/null and b/static/icons/06003606.png differ
diff --git a/static/icons/06003607.png b/static/icons/06003607.png
new file mode 100755
index 00000000..fef449ec
Binary files /dev/null and b/static/icons/06003607.png differ
diff --git a/static/icons/06003608.png b/static/icons/06003608.png
new file mode 100755
index 00000000..a8d3fd85
Binary files /dev/null and b/static/icons/06003608.png differ
diff --git a/static/icons/06003609.png b/static/icons/06003609.png
new file mode 100755
index 00000000..a50340b9
Binary files /dev/null and b/static/icons/06003609.png differ
diff --git a/static/icons/0600360A.png b/static/icons/0600360A.png
new file mode 100755
index 00000000..1157dcb7
Binary files /dev/null and b/static/icons/0600360A.png differ
diff --git a/static/icons/0600360B.png b/static/icons/0600360B.png
new file mode 100755
index 00000000..d97e7d47
Binary files /dev/null and b/static/icons/0600360B.png differ
diff --git a/static/icons/0600360C.png b/static/icons/0600360C.png
new file mode 100755
index 00000000..ad44c228
Binary files /dev/null and b/static/icons/0600360C.png differ
diff --git a/static/icons/0600360D.png b/static/icons/0600360D.png
new file mode 100755
index 00000000..700ef223
Binary files /dev/null and b/static/icons/0600360D.png differ
diff --git a/static/icons/0600360E.png b/static/icons/0600360E.png
new file mode 100755
index 00000000..6d2b523f
Binary files /dev/null and b/static/icons/0600360E.png differ
diff --git a/static/icons/0600360F.png b/static/icons/0600360F.png
new file mode 100755
index 00000000..f5ed00ef
Binary files /dev/null and b/static/icons/0600360F.png differ
diff --git a/static/icons/06003610.png b/static/icons/06003610.png
new file mode 100755
index 00000000..9c16b187
Binary files /dev/null and b/static/icons/06003610.png differ
diff --git a/static/icons/06003611.png b/static/icons/06003611.png
new file mode 100755
index 00000000..f3ea876b
Binary files /dev/null and b/static/icons/06003611.png differ
diff --git a/static/icons/06003612.png b/static/icons/06003612.png
new file mode 100755
index 00000000..0cf72610
Binary files /dev/null and b/static/icons/06003612.png differ
diff --git a/static/icons/06003613.png b/static/icons/06003613.png
new file mode 100755
index 00000000..a0e07758
Binary files /dev/null and b/static/icons/06003613.png differ
diff --git a/static/icons/06003614.png b/static/icons/06003614.png
new file mode 100755
index 00000000..15ee1e71
Binary files /dev/null and b/static/icons/06003614.png differ
diff --git a/static/icons/06003615.png b/static/icons/06003615.png
new file mode 100755
index 00000000..84cae943
Binary files /dev/null and b/static/icons/06003615.png differ
diff --git a/static/icons/06003616.png b/static/icons/06003616.png
new file mode 100755
index 00000000..cd8cfb81
Binary files /dev/null and b/static/icons/06003616.png differ
diff --git a/static/icons/06003617.png b/static/icons/06003617.png
new file mode 100755
index 00000000..c3662d01
Binary files /dev/null and b/static/icons/06003617.png differ
diff --git a/static/icons/06003618.png b/static/icons/06003618.png
new file mode 100755
index 00000000..16ebdcf8
Binary files /dev/null and b/static/icons/06003618.png differ
diff --git a/static/icons/06003619.png b/static/icons/06003619.png
new file mode 100755
index 00000000..be2fc2ae
Binary files /dev/null and b/static/icons/06003619.png differ
diff --git a/static/icons/0600361A.png b/static/icons/0600361A.png
new file mode 100755
index 00000000..91d4b411
Binary files /dev/null and b/static/icons/0600361A.png differ
diff --git a/static/icons/0600361B.png b/static/icons/0600361B.png
new file mode 100755
index 00000000..44204415
Binary files /dev/null and b/static/icons/0600361B.png differ
diff --git a/static/icons/0600361C.png b/static/icons/0600361C.png
new file mode 100755
index 00000000..fb3e4f4a
Binary files /dev/null and b/static/icons/0600361C.png differ
diff --git a/static/icons/0600361D.png b/static/icons/0600361D.png
new file mode 100755
index 00000000..9145d479
Binary files /dev/null and b/static/icons/0600361D.png differ
diff --git a/static/icons/0600361E.png b/static/icons/0600361E.png
new file mode 100755
index 00000000..d1470d3a
Binary files /dev/null and b/static/icons/0600361E.png differ
diff --git a/static/icons/0600361F.png b/static/icons/0600361F.png
new file mode 100755
index 00000000..20654b69
Binary files /dev/null and b/static/icons/0600361F.png differ
diff --git a/static/icons/06003620.png b/static/icons/06003620.png
new file mode 100755
index 00000000..367b953f
Binary files /dev/null and b/static/icons/06003620.png differ
diff --git a/static/icons/06003621.png b/static/icons/06003621.png
new file mode 100755
index 00000000..2e96521c
Binary files /dev/null and b/static/icons/06003621.png differ
diff --git a/static/icons/06003622.png b/static/icons/06003622.png
new file mode 100755
index 00000000..90d84114
Binary files /dev/null and b/static/icons/06003622.png differ
diff --git a/static/icons/06003623.png b/static/icons/06003623.png
new file mode 100755
index 00000000..8f5c381e
Binary files /dev/null and b/static/icons/06003623.png differ
diff --git a/static/icons/06003624.png b/static/icons/06003624.png
new file mode 100755
index 00000000..46ec2898
Binary files /dev/null and b/static/icons/06003624.png differ
diff --git a/static/icons/06003625.png b/static/icons/06003625.png
new file mode 100755
index 00000000..675b5f64
Binary files /dev/null and b/static/icons/06003625.png differ
diff --git a/static/icons/06003626.png b/static/icons/06003626.png
new file mode 100755
index 00000000..8ff046b1
Binary files /dev/null and b/static/icons/06003626.png differ
diff --git a/static/icons/06003627.png b/static/icons/06003627.png
new file mode 100755
index 00000000..6d1b69fc
Binary files /dev/null and b/static/icons/06003627.png differ
diff --git a/static/icons/06003628.png b/static/icons/06003628.png
new file mode 100755
index 00000000..1fc8babc
Binary files /dev/null and b/static/icons/06003628.png differ
diff --git a/static/icons/06003629.png b/static/icons/06003629.png
new file mode 100755
index 00000000..e34c5613
Binary files /dev/null and b/static/icons/06003629.png differ
diff --git a/static/icons/0600362A.png b/static/icons/0600362A.png
new file mode 100755
index 00000000..b8c7f742
Binary files /dev/null and b/static/icons/0600362A.png differ
diff --git a/static/icons/0600362B.png b/static/icons/0600362B.png
new file mode 100755
index 00000000..caea9de5
Binary files /dev/null and b/static/icons/0600362B.png differ
diff --git a/static/icons/0600362C.png b/static/icons/0600362C.png
new file mode 100755
index 00000000..692c8b4c
Binary files /dev/null and b/static/icons/0600362C.png differ
diff --git a/static/icons/0600362D.png b/static/icons/0600362D.png
new file mode 100755
index 00000000..3c45082e
Binary files /dev/null and b/static/icons/0600362D.png differ
diff --git a/static/icons/0600362E.png b/static/icons/0600362E.png
new file mode 100755
index 00000000..6ca3d59a
Binary files /dev/null and b/static/icons/0600362E.png differ
diff --git a/static/icons/0600362F.png b/static/icons/0600362F.png
new file mode 100755
index 00000000..4a605b94
Binary files /dev/null and b/static/icons/0600362F.png differ
diff --git a/static/icons/06003630.png b/static/icons/06003630.png
new file mode 100755
index 00000000..d190998c
Binary files /dev/null and b/static/icons/06003630.png differ
diff --git a/static/icons/06003631.png b/static/icons/06003631.png
new file mode 100755
index 00000000..72c6c98a
Binary files /dev/null and b/static/icons/06003631.png differ
diff --git a/static/icons/06003632.png b/static/icons/06003632.png
new file mode 100755
index 00000000..5b00c929
Binary files /dev/null and b/static/icons/06003632.png differ
diff --git a/static/icons/06003633.png b/static/icons/06003633.png
new file mode 100755
index 00000000..87e8ed91
Binary files /dev/null and b/static/icons/06003633.png differ
diff --git a/static/icons/06003634.png b/static/icons/06003634.png
new file mode 100755
index 00000000..25de0094
Binary files /dev/null and b/static/icons/06003634.png differ
diff --git a/static/icons/06003635.png b/static/icons/06003635.png
new file mode 100755
index 00000000..263ad498
Binary files /dev/null and b/static/icons/06003635.png differ
diff --git a/static/icons/06003638.png b/static/icons/06003638.png
new file mode 100755
index 00000000..f88317ac
Binary files /dev/null and b/static/icons/06003638.png differ
diff --git a/static/icons/06003639.png b/static/icons/06003639.png
new file mode 100755
index 00000000..939500de
Binary files /dev/null and b/static/icons/06003639.png differ
diff --git a/static/icons/0600363A.png b/static/icons/0600363A.png
new file mode 100755
index 00000000..81a74d3e
Binary files /dev/null and b/static/icons/0600363A.png differ
diff --git a/static/icons/0600363B.png b/static/icons/0600363B.png
new file mode 100755
index 00000000..93a2534f
Binary files /dev/null and b/static/icons/0600363B.png differ
diff --git a/static/icons/0600363C.png b/static/icons/0600363C.png
new file mode 100755
index 00000000..4d649fda
Binary files /dev/null and b/static/icons/0600363C.png differ
diff --git a/static/icons/0600363D.png b/static/icons/0600363D.png
new file mode 100755
index 00000000..39550996
Binary files /dev/null and b/static/icons/0600363D.png differ
diff --git a/static/icons/0600363E.png b/static/icons/0600363E.png
new file mode 100755
index 00000000..a1544bff
Binary files /dev/null and b/static/icons/0600363E.png differ
diff --git a/static/icons/0600363F.png b/static/icons/0600363F.png
new file mode 100755
index 00000000..976965d2
Binary files /dev/null and b/static/icons/0600363F.png differ
diff --git a/static/icons/06003640.png b/static/icons/06003640.png
new file mode 100755
index 00000000..f047fa05
Binary files /dev/null and b/static/icons/06003640.png differ
diff --git a/static/icons/06003641.png b/static/icons/06003641.png
new file mode 100755
index 00000000..fb64cb42
Binary files /dev/null and b/static/icons/06003641.png differ
diff --git a/static/icons/06003642.png b/static/icons/06003642.png
new file mode 100755
index 00000000..35207169
Binary files /dev/null and b/static/icons/06003642.png differ
diff --git a/static/icons/06003643.png b/static/icons/06003643.png
new file mode 100755
index 00000000..416473cc
Binary files /dev/null and b/static/icons/06003643.png differ
diff --git a/static/icons/06003644.png b/static/icons/06003644.png
new file mode 100755
index 00000000..39d4892c
Binary files /dev/null and b/static/icons/06003644.png differ
diff --git a/static/icons/06003645.png b/static/icons/06003645.png
new file mode 100755
index 00000000..e3c9f01a
Binary files /dev/null and b/static/icons/06003645.png differ
diff --git a/static/icons/06003646.png b/static/icons/06003646.png
new file mode 100755
index 00000000..2bd30a50
Binary files /dev/null and b/static/icons/06003646.png differ
diff --git a/static/icons/06003647.png b/static/icons/06003647.png
new file mode 100755
index 00000000..a854f3be
Binary files /dev/null and b/static/icons/06003647.png differ
diff --git a/static/icons/06003648.png b/static/icons/06003648.png
new file mode 100755
index 00000000..f4b9d242
Binary files /dev/null and b/static/icons/06003648.png differ
diff --git a/static/icons/06003649.png b/static/icons/06003649.png
new file mode 100755
index 00000000..39efe36d
Binary files /dev/null and b/static/icons/06003649.png differ
diff --git a/static/icons/0600364A.png b/static/icons/0600364A.png
new file mode 100755
index 00000000..b1514610
Binary files /dev/null and b/static/icons/0600364A.png differ
diff --git a/static/icons/0600364B.png b/static/icons/0600364B.png
new file mode 100755
index 00000000..a886ac5f
Binary files /dev/null and b/static/icons/0600364B.png differ
diff --git a/static/icons/0600364C.png b/static/icons/0600364C.png
new file mode 100755
index 00000000..74b38dac
Binary files /dev/null and b/static/icons/0600364C.png differ
diff --git a/static/icons/0600364D.png b/static/icons/0600364D.png
new file mode 100755
index 00000000..73e04393
Binary files /dev/null and b/static/icons/0600364D.png differ
diff --git a/static/icons/0600364E.png b/static/icons/0600364E.png
new file mode 100755
index 00000000..3954e738
Binary files /dev/null and b/static/icons/0600364E.png differ
diff --git a/static/icons/0600364F.png b/static/icons/0600364F.png
new file mode 100755
index 00000000..959c3e7e
Binary files /dev/null and b/static/icons/0600364F.png differ
diff --git a/static/icons/06003650.png b/static/icons/06003650.png
new file mode 100755
index 00000000..49346231
Binary files /dev/null and b/static/icons/06003650.png differ
diff --git a/static/icons/06003651.png b/static/icons/06003651.png
new file mode 100755
index 00000000..e22b7115
Binary files /dev/null and b/static/icons/06003651.png differ
diff --git a/static/icons/06003652.png b/static/icons/06003652.png
new file mode 100755
index 00000000..51708f59
Binary files /dev/null and b/static/icons/06003652.png differ
diff --git a/static/icons/06003653.png b/static/icons/06003653.png
new file mode 100755
index 00000000..11c3eac1
Binary files /dev/null and b/static/icons/06003653.png differ
diff --git a/static/icons/06003654.png b/static/icons/06003654.png
new file mode 100755
index 00000000..6986f9ac
Binary files /dev/null and b/static/icons/06003654.png differ
diff --git a/static/icons/06003655.png b/static/icons/06003655.png
new file mode 100755
index 00000000..a168ac52
Binary files /dev/null and b/static/icons/06003655.png differ
diff --git a/static/icons/06003656.png b/static/icons/06003656.png
new file mode 100755
index 00000000..38807bae
Binary files /dev/null and b/static/icons/06003656.png differ
diff --git a/static/icons/06003657.png b/static/icons/06003657.png
new file mode 100755
index 00000000..0b4abba1
Binary files /dev/null and b/static/icons/06003657.png differ
diff --git a/static/icons/06003658.png b/static/icons/06003658.png
new file mode 100755
index 00000000..377ec141
Binary files /dev/null and b/static/icons/06003658.png differ
diff --git a/static/icons/06003659.png b/static/icons/06003659.png
new file mode 100755
index 00000000..6c1cb19a
Binary files /dev/null and b/static/icons/06003659.png differ
diff --git a/static/icons/0600365A.png b/static/icons/0600365A.png
new file mode 100755
index 00000000..84a60811
Binary files /dev/null and b/static/icons/0600365A.png differ
diff --git a/static/icons/0600365B.png b/static/icons/0600365B.png
new file mode 100755
index 00000000..9bd7bd78
Binary files /dev/null and b/static/icons/0600365B.png differ
diff --git a/static/icons/0600365C.png b/static/icons/0600365C.png
new file mode 100755
index 00000000..524b2fe8
Binary files /dev/null and b/static/icons/0600365C.png differ
diff --git a/static/icons/0600365D.png b/static/icons/0600365D.png
new file mode 100755
index 00000000..ca445fff
Binary files /dev/null and b/static/icons/0600365D.png differ
diff --git a/static/icons/0600365E.png b/static/icons/0600365E.png
new file mode 100755
index 00000000..8f111696
Binary files /dev/null and b/static/icons/0600365E.png differ
diff --git a/static/icons/0600365F.png b/static/icons/0600365F.png
new file mode 100755
index 00000000..92a7ae0f
Binary files /dev/null and b/static/icons/0600365F.png differ
diff --git a/static/icons/06003660.png b/static/icons/06003660.png
new file mode 100755
index 00000000..d34135bb
Binary files /dev/null and b/static/icons/06003660.png differ
diff --git a/static/icons/06003661.png b/static/icons/06003661.png
new file mode 100755
index 00000000..ebc93e9d
Binary files /dev/null and b/static/icons/06003661.png differ
diff --git a/static/icons/06003662.png b/static/icons/06003662.png
new file mode 100755
index 00000000..851856b9
Binary files /dev/null and b/static/icons/06003662.png differ
diff --git a/static/icons/06003663.png b/static/icons/06003663.png
new file mode 100755
index 00000000..af09a6bd
Binary files /dev/null and b/static/icons/06003663.png differ
diff --git a/static/icons/06003664.png b/static/icons/06003664.png
new file mode 100755
index 00000000..8f37e3d5
Binary files /dev/null and b/static/icons/06003664.png differ
diff --git a/static/icons/06003665.png b/static/icons/06003665.png
new file mode 100755
index 00000000..474460c6
Binary files /dev/null and b/static/icons/06003665.png differ
diff --git a/static/icons/06003666.png b/static/icons/06003666.png
new file mode 100755
index 00000000..df38c2c8
Binary files /dev/null and b/static/icons/06003666.png differ
diff --git a/static/icons/06003667.png b/static/icons/06003667.png
new file mode 100755
index 00000000..b9885386
Binary files /dev/null and b/static/icons/06003667.png differ
diff --git a/static/icons/06003668.png b/static/icons/06003668.png
new file mode 100755
index 00000000..ecd57dfc
Binary files /dev/null and b/static/icons/06003668.png differ
diff --git a/static/icons/06003669.png b/static/icons/06003669.png
new file mode 100755
index 00000000..2202aaf3
Binary files /dev/null and b/static/icons/06003669.png differ
diff --git a/static/icons/0600366A.png b/static/icons/0600366A.png
new file mode 100755
index 00000000..4d416cc2
Binary files /dev/null and b/static/icons/0600366A.png differ
diff --git a/static/icons/0600366B.png b/static/icons/0600366B.png
new file mode 100755
index 00000000..e2da4553
Binary files /dev/null and b/static/icons/0600366B.png differ
diff --git a/static/icons/0600366C.png b/static/icons/0600366C.png
new file mode 100755
index 00000000..a8f1216b
Binary files /dev/null and b/static/icons/0600366C.png differ
diff --git a/static/icons/0600366D.png b/static/icons/0600366D.png
new file mode 100755
index 00000000..f694ebe7
Binary files /dev/null and b/static/icons/0600366D.png differ
diff --git a/static/icons/0600366E.png b/static/icons/0600366E.png
new file mode 100755
index 00000000..ba1bb427
Binary files /dev/null and b/static/icons/0600366E.png differ
diff --git a/static/icons/0600366F.png b/static/icons/0600366F.png
new file mode 100755
index 00000000..bbe28454
Binary files /dev/null and b/static/icons/0600366F.png differ
diff --git a/static/icons/06003670.png b/static/icons/06003670.png
new file mode 100755
index 00000000..64e6741f
Binary files /dev/null and b/static/icons/06003670.png differ
diff --git a/static/icons/06003671.png b/static/icons/06003671.png
new file mode 100755
index 00000000..f84cf260
Binary files /dev/null and b/static/icons/06003671.png differ
diff --git a/static/icons/06003672.png b/static/icons/06003672.png
new file mode 100755
index 00000000..c2e44e00
Binary files /dev/null and b/static/icons/06003672.png differ
diff --git a/static/icons/06003673.png b/static/icons/06003673.png
new file mode 100755
index 00000000..50efcbd4
Binary files /dev/null and b/static/icons/06003673.png differ
diff --git a/static/icons/06003674.png b/static/icons/06003674.png
new file mode 100755
index 00000000..8a2129e6
Binary files /dev/null and b/static/icons/06003674.png differ
diff --git a/static/icons/06003675.png b/static/icons/06003675.png
new file mode 100755
index 00000000..eb8e7eea
Binary files /dev/null and b/static/icons/06003675.png differ
diff --git a/static/icons/06003676.png b/static/icons/06003676.png
new file mode 100755
index 00000000..1066dbca
Binary files /dev/null and b/static/icons/06003676.png differ
diff --git a/static/icons/06003677.png b/static/icons/06003677.png
new file mode 100755
index 00000000..e38b82b6
Binary files /dev/null and b/static/icons/06003677.png differ
diff --git a/static/icons/06003678.png b/static/icons/06003678.png
new file mode 100755
index 00000000..aaaaacad
Binary files /dev/null and b/static/icons/06003678.png differ
diff --git a/static/icons/06003679.png b/static/icons/06003679.png
new file mode 100755
index 00000000..16ac3ed4
Binary files /dev/null and b/static/icons/06003679.png differ
diff --git a/static/icons/0600367A.png b/static/icons/0600367A.png
new file mode 100755
index 00000000..dcc67a1f
Binary files /dev/null and b/static/icons/0600367A.png differ
diff --git a/static/icons/0600367B.png b/static/icons/0600367B.png
new file mode 100755
index 00000000..7e99ea53
Binary files /dev/null and b/static/icons/0600367B.png differ
diff --git a/static/icons/0600367C.png b/static/icons/0600367C.png
new file mode 100755
index 00000000..f2b0ba6b
Binary files /dev/null and b/static/icons/0600367C.png differ
diff --git a/static/icons/0600367D.png b/static/icons/0600367D.png
new file mode 100755
index 00000000..55843e14
Binary files /dev/null and b/static/icons/0600367D.png differ
diff --git a/static/icons/0600367E.png b/static/icons/0600367E.png
new file mode 100755
index 00000000..39b512e5
Binary files /dev/null and b/static/icons/0600367E.png differ
diff --git a/static/icons/0600367F.png b/static/icons/0600367F.png
new file mode 100755
index 00000000..091e645d
Binary files /dev/null and b/static/icons/0600367F.png differ
diff --git a/static/icons/06003680.png b/static/icons/06003680.png
new file mode 100755
index 00000000..b797c014
Binary files /dev/null and b/static/icons/06003680.png differ
diff --git a/static/icons/06003681.png b/static/icons/06003681.png
new file mode 100755
index 00000000..f8d7ed2a
Binary files /dev/null and b/static/icons/06003681.png differ
diff --git a/static/icons/06003682.png b/static/icons/06003682.png
new file mode 100755
index 00000000..6c48d6ed
Binary files /dev/null and b/static/icons/06003682.png differ
diff --git a/static/icons/06003683.png b/static/icons/06003683.png
new file mode 100755
index 00000000..0fe3efdb
Binary files /dev/null and b/static/icons/06003683.png differ
diff --git a/static/icons/06003684.png b/static/icons/06003684.png
new file mode 100755
index 00000000..ba3f6edd
Binary files /dev/null and b/static/icons/06003684.png differ
diff --git a/static/icons/06003685.png b/static/icons/06003685.png
new file mode 100755
index 00000000..0989b39f
Binary files /dev/null and b/static/icons/06003685.png differ
diff --git a/static/icons/06003686.png b/static/icons/06003686.png
new file mode 100755
index 00000000..250a0e35
Binary files /dev/null and b/static/icons/06003686.png differ
diff --git a/static/icons/06003687.png b/static/icons/06003687.png
new file mode 100755
index 00000000..9f6819e8
Binary files /dev/null and b/static/icons/06003687.png differ
diff --git a/static/icons/06003688.png b/static/icons/06003688.png
new file mode 100755
index 00000000..fc21de2e
Binary files /dev/null and b/static/icons/06003688.png differ
diff --git a/static/icons/06003689.png b/static/icons/06003689.png
new file mode 100755
index 00000000..ea53b8ec
Binary files /dev/null and b/static/icons/06003689.png differ
diff --git a/static/icons/0600368A.png b/static/icons/0600368A.png
new file mode 100755
index 00000000..1ffff969
Binary files /dev/null and b/static/icons/0600368A.png differ
diff --git a/static/icons/0600368B.png b/static/icons/0600368B.png
new file mode 100755
index 00000000..8b0b0d72
Binary files /dev/null and b/static/icons/0600368B.png differ
diff --git a/static/icons/0600368C.png b/static/icons/0600368C.png
new file mode 100755
index 00000000..3047eb0c
Binary files /dev/null and b/static/icons/0600368C.png differ
diff --git a/static/icons/0600368D.png b/static/icons/0600368D.png
new file mode 100755
index 00000000..55db0c76
Binary files /dev/null and b/static/icons/0600368D.png differ
diff --git a/static/icons/0600368E.png b/static/icons/0600368E.png
new file mode 100755
index 00000000..9dc882ac
Binary files /dev/null and b/static/icons/0600368E.png differ
diff --git a/static/icons/0600368F.png b/static/icons/0600368F.png
new file mode 100755
index 00000000..527a967e
Binary files /dev/null and b/static/icons/0600368F.png differ
diff --git a/static/icons/06003690.png b/static/icons/06003690.png
new file mode 100755
index 00000000..431e39e7
Binary files /dev/null and b/static/icons/06003690.png differ
diff --git a/static/icons/06003691.png b/static/icons/06003691.png
new file mode 100755
index 00000000..f576acee
Binary files /dev/null and b/static/icons/06003691.png differ
diff --git a/static/icons/06003692.png b/static/icons/06003692.png
new file mode 100755
index 00000000..80a38def
Binary files /dev/null and b/static/icons/06003692.png differ
diff --git a/static/icons/06003693.png b/static/icons/06003693.png
new file mode 100755
index 00000000..50a38db8
Binary files /dev/null and b/static/icons/06003693.png differ
diff --git a/static/icons/06003694.png b/static/icons/06003694.png
new file mode 100755
index 00000000..8614b41c
Binary files /dev/null and b/static/icons/06003694.png differ
diff --git a/static/icons/06003695.png b/static/icons/06003695.png
new file mode 100755
index 00000000..04f87381
Binary files /dev/null and b/static/icons/06003695.png differ
diff --git a/static/icons/06003696.png b/static/icons/06003696.png
new file mode 100755
index 00000000..683c5a6e
Binary files /dev/null and b/static/icons/06003696.png differ
diff --git a/static/icons/06003697.png b/static/icons/06003697.png
new file mode 100755
index 00000000..f1b3f688
Binary files /dev/null and b/static/icons/06003697.png differ
diff --git a/static/icons/06003698.png b/static/icons/06003698.png
new file mode 100755
index 00000000..27d33182
Binary files /dev/null and b/static/icons/06003698.png differ
diff --git a/static/icons/06003699.png b/static/icons/06003699.png
new file mode 100755
index 00000000..f515bda2
Binary files /dev/null and b/static/icons/06003699.png differ
diff --git a/static/icons/0600369A.png b/static/icons/0600369A.png
new file mode 100755
index 00000000..6b596611
Binary files /dev/null and b/static/icons/0600369A.png differ
diff --git a/static/icons/0600369B.png b/static/icons/0600369B.png
new file mode 100755
index 00000000..713be0a5
Binary files /dev/null and b/static/icons/0600369B.png differ
diff --git a/static/icons/0600369C.png b/static/icons/0600369C.png
new file mode 100755
index 00000000..4896eab0
Binary files /dev/null and b/static/icons/0600369C.png differ
diff --git a/static/icons/0600369D.png b/static/icons/0600369D.png
new file mode 100755
index 00000000..5a077fb3
Binary files /dev/null and b/static/icons/0600369D.png differ
diff --git a/static/icons/0600369E.png b/static/icons/0600369E.png
new file mode 100755
index 00000000..d59dcd83
Binary files /dev/null and b/static/icons/0600369E.png differ
diff --git a/static/icons/0600369F.png b/static/icons/0600369F.png
new file mode 100755
index 00000000..d6ac32a8
Binary files /dev/null and b/static/icons/0600369F.png differ
diff --git a/static/icons/060036A0.png b/static/icons/060036A0.png
new file mode 100755
index 00000000..21a328e1
Binary files /dev/null and b/static/icons/060036A0.png differ
diff --git a/static/icons/060036A1.png b/static/icons/060036A1.png
new file mode 100755
index 00000000..8d18c608
Binary files /dev/null and b/static/icons/060036A1.png differ
diff --git a/static/icons/060036A2.png b/static/icons/060036A2.png
new file mode 100755
index 00000000..56a4a30d
Binary files /dev/null and b/static/icons/060036A2.png differ
diff --git a/static/icons/060036A3.png b/static/icons/060036A3.png
new file mode 100755
index 00000000..8c9ca579
Binary files /dev/null and b/static/icons/060036A3.png differ
diff --git a/static/icons/060036A4.png b/static/icons/060036A4.png
new file mode 100755
index 00000000..c4f95654
Binary files /dev/null and b/static/icons/060036A4.png differ
diff --git a/static/icons/060036A5.png b/static/icons/060036A5.png
new file mode 100755
index 00000000..bdb77e89
Binary files /dev/null and b/static/icons/060036A5.png differ
diff --git a/static/icons/060036A6.png b/static/icons/060036A6.png
new file mode 100755
index 00000000..b51bf48e
Binary files /dev/null and b/static/icons/060036A6.png differ
diff --git a/static/icons/060036A7.png b/static/icons/060036A7.png
new file mode 100755
index 00000000..d321a651
Binary files /dev/null and b/static/icons/060036A7.png differ
diff --git a/static/icons/060036A8.png b/static/icons/060036A8.png
new file mode 100755
index 00000000..3d812ef1
Binary files /dev/null and b/static/icons/060036A8.png differ
diff --git a/static/icons/060036A9.png b/static/icons/060036A9.png
new file mode 100755
index 00000000..bbe92886
Binary files /dev/null and b/static/icons/060036A9.png differ
diff --git a/static/icons/060036AA.png b/static/icons/060036AA.png
new file mode 100755
index 00000000..321612e2
Binary files /dev/null and b/static/icons/060036AA.png differ
diff --git a/static/icons/060036AB.png b/static/icons/060036AB.png
new file mode 100755
index 00000000..3299261a
Binary files /dev/null and b/static/icons/060036AB.png differ
diff --git a/static/icons/060036AC.png b/static/icons/060036AC.png
new file mode 100755
index 00000000..17ae3a10
Binary files /dev/null and b/static/icons/060036AC.png differ
diff --git a/static/icons/060036AD.png b/static/icons/060036AD.png
new file mode 100755
index 00000000..32c6f0ae
Binary files /dev/null and b/static/icons/060036AD.png differ
diff --git a/static/icons/060036AE.png b/static/icons/060036AE.png
new file mode 100755
index 00000000..99ea1a0b
Binary files /dev/null and b/static/icons/060036AE.png differ
diff --git a/static/icons/060036AF.png b/static/icons/060036AF.png
new file mode 100755
index 00000000..f87de5a1
Binary files /dev/null and b/static/icons/060036AF.png differ
diff --git a/static/icons/060036B0.png b/static/icons/060036B0.png
new file mode 100755
index 00000000..ac91df7e
Binary files /dev/null and b/static/icons/060036B0.png differ
diff --git a/static/icons/060036B1.png b/static/icons/060036B1.png
new file mode 100755
index 00000000..904571bb
Binary files /dev/null and b/static/icons/060036B1.png differ
diff --git a/static/icons/060036B2.png b/static/icons/060036B2.png
new file mode 100755
index 00000000..a08b2152
Binary files /dev/null and b/static/icons/060036B2.png differ
diff --git a/static/icons/060036B3.png b/static/icons/060036B3.png
new file mode 100755
index 00000000..66158ab5
Binary files /dev/null and b/static/icons/060036B3.png differ
diff --git a/static/icons/060036B4.png b/static/icons/060036B4.png
new file mode 100755
index 00000000..1f284684
Binary files /dev/null and b/static/icons/060036B4.png differ
diff --git a/static/icons/060036B5.png b/static/icons/060036B5.png
new file mode 100755
index 00000000..a4c83ad2
Binary files /dev/null and b/static/icons/060036B5.png differ
diff --git a/static/icons/060036B6.png b/static/icons/060036B6.png
new file mode 100755
index 00000000..3f6983ac
Binary files /dev/null and b/static/icons/060036B6.png differ
diff --git a/static/icons/060036B7.png b/static/icons/060036B7.png
new file mode 100755
index 00000000..4d63a54e
Binary files /dev/null and b/static/icons/060036B7.png differ
diff --git a/static/icons/060036B8.png b/static/icons/060036B8.png
new file mode 100755
index 00000000..cbb3cfeb
Binary files /dev/null and b/static/icons/060036B8.png differ
diff --git a/static/icons/060036B9.png b/static/icons/060036B9.png
new file mode 100755
index 00000000..60f1afb7
Binary files /dev/null and b/static/icons/060036B9.png differ
diff --git a/static/icons/060036BA.png b/static/icons/060036BA.png
new file mode 100755
index 00000000..51297151
Binary files /dev/null and b/static/icons/060036BA.png differ
diff --git a/static/icons/060036BB.png b/static/icons/060036BB.png
new file mode 100755
index 00000000..a27a3641
Binary files /dev/null and b/static/icons/060036BB.png differ
diff --git a/static/icons/060036BC.png b/static/icons/060036BC.png
new file mode 100755
index 00000000..0bfe40ff
Binary files /dev/null and b/static/icons/060036BC.png differ
diff --git a/static/icons/060036BD.png b/static/icons/060036BD.png
new file mode 100755
index 00000000..7adda4ab
Binary files /dev/null and b/static/icons/060036BD.png differ
diff --git a/static/icons/060036BE.png b/static/icons/060036BE.png
new file mode 100755
index 00000000..09895e85
Binary files /dev/null and b/static/icons/060036BE.png differ
diff --git a/static/icons/060036BF.png b/static/icons/060036BF.png
new file mode 100755
index 00000000..ca7def9d
Binary files /dev/null and b/static/icons/060036BF.png differ
diff --git a/static/icons/060036C0.png b/static/icons/060036C0.png
new file mode 100755
index 00000000..4f4ddaea
Binary files /dev/null and b/static/icons/060036C0.png differ
diff --git a/static/icons/060036C1.png b/static/icons/060036C1.png
new file mode 100755
index 00000000..7f1bbe00
Binary files /dev/null and b/static/icons/060036C1.png differ
diff --git a/static/icons/060036C2.png b/static/icons/060036C2.png
new file mode 100755
index 00000000..0cfec0b7
Binary files /dev/null and b/static/icons/060036C2.png differ
diff --git a/static/icons/060036C3.png b/static/icons/060036C3.png
new file mode 100755
index 00000000..c6cea5aa
Binary files /dev/null and b/static/icons/060036C3.png differ
diff --git a/static/icons/060036C4.png b/static/icons/060036C4.png
new file mode 100755
index 00000000..4c1a0558
Binary files /dev/null and b/static/icons/060036C4.png differ
diff --git a/static/icons/060036C5.png b/static/icons/060036C5.png
new file mode 100755
index 00000000..98857056
Binary files /dev/null and b/static/icons/060036C5.png differ
diff --git a/static/icons/060036C6.png b/static/icons/060036C6.png
new file mode 100755
index 00000000..98c26b06
Binary files /dev/null and b/static/icons/060036C6.png differ
diff --git a/static/icons/060036C7.png b/static/icons/060036C7.png
new file mode 100755
index 00000000..2acfe916
Binary files /dev/null and b/static/icons/060036C7.png differ
diff --git a/static/icons/060036C8.png b/static/icons/060036C8.png
new file mode 100755
index 00000000..5948b4c2
Binary files /dev/null and b/static/icons/060036C8.png differ
diff --git a/static/icons/060036C9.png b/static/icons/060036C9.png
new file mode 100755
index 00000000..1ab4966c
Binary files /dev/null and b/static/icons/060036C9.png differ
diff --git a/static/icons/060036CA.png b/static/icons/060036CA.png
new file mode 100755
index 00000000..13e28821
Binary files /dev/null and b/static/icons/060036CA.png differ
diff --git a/static/icons/060036CB.png b/static/icons/060036CB.png
new file mode 100755
index 00000000..6ce56d06
Binary files /dev/null and b/static/icons/060036CB.png differ
diff --git a/static/icons/060036CC.png b/static/icons/060036CC.png
new file mode 100755
index 00000000..e524e5b8
Binary files /dev/null and b/static/icons/060036CC.png differ
diff --git a/static/icons/060036CD.png b/static/icons/060036CD.png
new file mode 100755
index 00000000..f5fab638
Binary files /dev/null and b/static/icons/060036CD.png differ
diff --git a/static/icons/060036CE.png b/static/icons/060036CE.png
new file mode 100755
index 00000000..2a217e3c
Binary files /dev/null and b/static/icons/060036CE.png differ
diff --git a/static/icons/060036CF.png b/static/icons/060036CF.png
new file mode 100755
index 00000000..13f4a823
Binary files /dev/null and b/static/icons/060036CF.png differ
diff --git a/static/icons/060036D0.png b/static/icons/060036D0.png
new file mode 100755
index 00000000..de01de65
Binary files /dev/null and b/static/icons/060036D0.png differ
diff --git a/static/icons/060036D1.png b/static/icons/060036D1.png
new file mode 100755
index 00000000..b1905bf0
Binary files /dev/null and b/static/icons/060036D1.png differ
diff --git a/static/icons/060036D2.png b/static/icons/060036D2.png
new file mode 100755
index 00000000..f82b16a3
Binary files /dev/null and b/static/icons/060036D2.png differ
diff --git a/static/icons/060036D3.png b/static/icons/060036D3.png
new file mode 100755
index 00000000..dab32799
Binary files /dev/null and b/static/icons/060036D3.png differ
diff --git a/static/icons/060036D4.png b/static/icons/060036D4.png
new file mode 100755
index 00000000..ddd017a9
Binary files /dev/null and b/static/icons/060036D4.png differ
diff --git a/static/icons/060036D5.png b/static/icons/060036D5.png
new file mode 100755
index 00000000..182dcf52
Binary files /dev/null and b/static/icons/060036D5.png differ
diff --git a/static/icons/060036D6.png b/static/icons/060036D6.png
new file mode 100755
index 00000000..38e15fe3
Binary files /dev/null and b/static/icons/060036D6.png differ
diff --git a/static/icons/060036D7.png b/static/icons/060036D7.png
new file mode 100755
index 00000000..bbd37365
Binary files /dev/null and b/static/icons/060036D7.png differ
diff --git a/static/icons/060036D8.png b/static/icons/060036D8.png
new file mode 100755
index 00000000..1251c480
Binary files /dev/null and b/static/icons/060036D8.png differ
diff --git a/static/icons/060036D9.png b/static/icons/060036D9.png
new file mode 100755
index 00000000..b8ed7e1f
Binary files /dev/null and b/static/icons/060036D9.png differ
diff --git a/static/icons/060036DA.png b/static/icons/060036DA.png
new file mode 100755
index 00000000..a8c12250
Binary files /dev/null and b/static/icons/060036DA.png differ
diff --git a/static/icons/060036DB.png b/static/icons/060036DB.png
new file mode 100755
index 00000000..7c9fa60e
Binary files /dev/null and b/static/icons/060036DB.png differ
diff --git a/static/icons/060036DC.png b/static/icons/060036DC.png
new file mode 100755
index 00000000..a11c9a1e
Binary files /dev/null and b/static/icons/060036DC.png differ
diff --git a/static/icons/060036DD.png b/static/icons/060036DD.png
new file mode 100755
index 00000000..0c76701f
Binary files /dev/null and b/static/icons/060036DD.png differ
diff --git a/static/icons/060036DE.png b/static/icons/060036DE.png
new file mode 100755
index 00000000..620f9552
Binary files /dev/null and b/static/icons/060036DE.png differ
diff --git a/static/icons/060036DF.png b/static/icons/060036DF.png
new file mode 100755
index 00000000..dfc15ce3
Binary files /dev/null and b/static/icons/060036DF.png differ
diff --git a/static/icons/060036E0.png b/static/icons/060036E0.png
new file mode 100755
index 00000000..45cd42b0
Binary files /dev/null and b/static/icons/060036E0.png differ
diff --git a/static/icons/060036E1.png b/static/icons/060036E1.png
new file mode 100755
index 00000000..dc162631
Binary files /dev/null and b/static/icons/060036E1.png differ
diff --git a/static/icons/060036E2.png b/static/icons/060036E2.png
new file mode 100755
index 00000000..e61689b5
Binary files /dev/null and b/static/icons/060036E2.png differ
diff --git a/static/icons/060036E3.png b/static/icons/060036E3.png
new file mode 100755
index 00000000..ae5762eb
Binary files /dev/null and b/static/icons/060036E3.png differ
diff --git a/static/icons/060036E4.png b/static/icons/060036E4.png
new file mode 100755
index 00000000..891c6533
Binary files /dev/null and b/static/icons/060036E4.png differ
diff --git a/static/icons/060036E5.png b/static/icons/060036E5.png
new file mode 100755
index 00000000..740c4f1e
Binary files /dev/null and b/static/icons/060036E5.png differ
diff --git a/static/icons/060036E6.png b/static/icons/060036E6.png
new file mode 100755
index 00000000..ee91d1f2
Binary files /dev/null and b/static/icons/060036E6.png differ
diff --git a/static/icons/060036E7.png b/static/icons/060036E7.png
new file mode 100755
index 00000000..93620b28
Binary files /dev/null and b/static/icons/060036E7.png differ
diff --git a/static/icons/060036E8.png b/static/icons/060036E8.png
new file mode 100755
index 00000000..363f1f4d
Binary files /dev/null and b/static/icons/060036E8.png differ
diff --git a/static/icons/060036E9.png b/static/icons/060036E9.png
new file mode 100755
index 00000000..e93a497e
Binary files /dev/null and b/static/icons/060036E9.png differ
diff --git a/static/icons/060036EA.png b/static/icons/060036EA.png
new file mode 100755
index 00000000..3acc28d7
Binary files /dev/null and b/static/icons/060036EA.png differ
diff --git a/static/icons/060036EB.png b/static/icons/060036EB.png
new file mode 100755
index 00000000..71052191
Binary files /dev/null and b/static/icons/060036EB.png differ
diff --git a/static/icons/060036EC.png b/static/icons/060036EC.png
new file mode 100755
index 00000000..249f6c2d
Binary files /dev/null and b/static/icons/060036EC.png differ
diff --git a/static/icons/060036ED.png b/static/icons/060036ED.png
new file mode 100755
index 00000000..2ff5e62f
Binary files /dev/null and b/static/icons/060036ED.png differ
diff --git a/static/icons/060036EE.png b/static/icons/060036EE.png
new file mode 100755
index 00000000..b4754346
Binary files /dev/null and b/static/icons/060036EE.png differ
diff --git a/static/icons/060036EF.png b/static/icons/060036EF.png
new file mode 100755
index 00000000..41c565fa
Binary files /dev/null and b/static/icons/060036EF.png differ
diff --git a/static/icons/060036F0.png b/static/icons/060036F0.png
new file mode 100755
index 00000000..a27b9acc
Binary files /dev/null and b/static/icons/060036F0.png differ
diff --git a/static/icons/060036F1.png b/static/icons/060036F1.png
new file mode 100755
index 00000000..69ab0a30
Binary files /dev/null and b/static/icons/060036F1.png differ
diff --git a/static/icons/060036F2.png b/static/icons/060036F2.png
new file mode 100755
index 00000000..7582d4e6
Binary files /dev/null and b/static/icons/060036F2.png differ
diff --git a/static/icons/060036F3.png b/static/icons/060036F3.png
new file mode 100755
index 00000000..f0a07818
Binary files /dev/null and b/static/icons/060036F3.png differ
diff --git a/static/icons/060036F4.png b/static/icons/060036F4.png
new file mode 100755
index 00000000..3dc1cba3
Binary files /dev/null and b/static/icons/060036F4.png differ
diff --git a/static/icons/060036F5.png b/static/icons/060036F5.png
new file mode 100755
index 00000000..f718378c
Binary files /dev/null and b/static/icons/060036F5.png differ
diff --git a/static/icons/060036F6.png b/static/icons/060036F6.png
new file mode 100755
index 00000000..a2e9e6c2
Binary files /dev/null and b/static/icons/060036F6.png differ
diff --git a/static/icons/060036F7.png b/static/icons/060036F7.png
new file mode 100755
index 00000000..1398a7b1
Binary files /dev/null and b/static/icons/060036F7.png differ
diff --git a/static/icons/060036F9.png b/static/icons/060036F9.png
new file mode 100755
index 00000000..fdc7816c
Binary files /dev/null and b/static/icons/060036F9.png differ
diff --git a/static/icons/060036FA.png b/static/icons/060036FA.png
new file mode 100755
index 00000000..8485d1fc
Binary files /dev/null and b/static/icons/060036FA.png differ
diff --git a/static/icons/060036FB.png b/static/icons/060036FB.png
new file mode 100755
index 00000000..d5c0eada
Binary files /dev/null and b/static/icons/060036FB.png differ
diff --git a/static/icons/060036FC.png b/static/icons/060036FC.png
new file mode 100755
index 00000000..51de8011
Binary files /dev/null and b/static/icons/060036FC.png differ
diff --git a/static/icons/060036FD.png b/static/icons/060036FD.png
new file mode 100755
index 00000000..75b1c074
Binary files /dev/null and b/static/icons/060036FD.png differ
diff --git a/static/icons/060036FE.png b/static/icons/060036FE.png
new file mode 100755
index 00000000..24d13ee3
Binary files /dev/null and b/static/icons/060036FE.png differ
diff --git a/static/icons/060036FF.png b/static/icons/060036FF.png
new file mode 100755
index 00000000..c23cafd9
Binary files /dev/null and b/static/icons/060036FF.png differ
diff --git a/static/icons/06003700.png b/static/icons/06003700.png
new file mode 100755
index 00000000..2b39a49e
Binary files /dev/null and b/static/icons/06003700.png differ
diff --git a/static/icons/06003701.png b/static/icons/06003701.png
new file mode 100755
index 00000000..167805f5
Binary files /dev/null and b/static/icons/06003701.png differ
diff --git a/static/icons/06003702.png b/static/icons/06003702.png
new file mode 100755
index 00000000..ec191245
Binary files /dev/null and b/static/icons/06003702.png differ
diff --git a/static/icons/06003703.png b/static/icons/06003703.png
new file mode 100755
index 00000000..07a3f02c
Binary files /dev/null and b/static/icons/06003703.png differ
diff --git a/static/icons/06003704.png b/static/icons/06003704.png
new file mode 100755
index 00000000..1c9d7590
Binary files /dev/null and b/static/icons/06003704.png differ
diff --git a/static/icons/06003705.png b/static/icons/06003705.png
new file mode 100755
index 00000000..a0b35a44
Binary files /dev/null and b/static/icons/06003705.png differ
diff --git a/static/icons/06003706.png b/static/icons/06003706.png
new file mode 100755
index 00000000..be08a5d8
Binary files /dev/null and b/static/icons/06003706.png differ
diff --git a/static/icons/06003707.png b/static/icons/06003707.png
new file mode 100755
index 00000000..af67b9a4
Binary files /dev/null and b/static/icons/06003707.png differ
diff --git a/static/icons/06003708.png b/static/icons/06003708.png
new file mode 100755
index 00000000..7baf961a
Binary files /dev/null and b/static/icons/06003708.png differ
diff --git a/static/icons/06003709.png b/static/icons/06003709.png
new file mode 100755
index 00000000..249cfa48
Binary files /dev/null and b/static/icons/06003709.png differ
diff --git a/static/icons/0600370A.png b/static/icons/0600370A.png
new file mode 100755
index 00000000..4f117218
Binary files /dev/null and b/static/icons/0600370A.png differ
diff --git a/static/icons/0600370B.png b/static/icons/0600370B.png
new file mode 100755
index 00000000..45ba4ab0
Binary files /dev/null and b/static/icons/0600370B.png differ
diff --git a/static/icons/0600370C.png b/static/icons/0600370C.png
new file mode 100755
index 00000000..8b87051c
Binary files /dev/null and b/static/icons/0600370C.png differ
diff --git a/static/icons/0600370D.png b/static/icons/0600370D.png
new file mode 100755
index 00000000..ffbf5efb
Binary files /dev/null and b/static/icons/0600370D.png differ
diff --git a/static/icons/0600370E.png b/static/icons/0600370E.png
new file mode 100755
index 00000000..815e019a
Binary files /dev/null and b/static/icons/0600370E.png differ
diff --git a/static/icons/0600370F.png b/static/icons/0600370F.png
new file mode 100755
index 00000000..2d78f088
Binary files /dev/null and b/static/icons/0600370F.png differ
diff --git a/static/icons/06003710.png b/static/icons/06003710.png
new file mode 100755
index 00000000..368350a5
Binary files /dev/null and b/static/icons/06003710.png differ
diff --git a/static/icons/06003711.png b/static/icons/06003711.png
new file mode 100755
index 00000000..d2e47eb2
Binary files /dev/null and b/static/icons/06003711.png differ
diff --git a/static/icons/06003712.png b/static/icons/06003712.png
new file mode 100755
index 00000000..cf02815e
Binary files /dev/null and b/static/icons/06003712.png differ
diff --git a/static/icons/06003713.png b/static/icons/06003713.png
new file mode 100755
index 00000000..2ed4a4dc
Binary files /dev/null and b/static/icons/06003713.png differ
diff --git a/static/icons/06003714.png b/static/icons/06003714.png
new file mode 100755
index 00000000..4b261a14
Binary files /dev/null and b/static/icons/06003714.png differ
diff --git a/static/icons/06003715.png b/static/icons/06003715.png
new file mode 100755
index 00000000..f309ac9a
Binary files /dev/null and b/static/icons/06003715.png differ
diff --git a/static/icons/06003716.png b/static/icons/06003716.png
new file mode 100755
index 00000000..c868814e
Binary files /dev/null and b/static/icons/06003716.png differ
diff --git a/static/icons/06003717.png b/static/icons/06003717.png
new file mode 100755
index 00000000..3ee63fec
Binary files /dev/null and b/static/icons/06003717.png differ
diff --git a/static/icons/06003718.png b/static/icons/06003718.png
new file mode 100755
index 00000000..f61ad395
Binary files /dev/null and b/static/icons/06003718.png differ
diff --git a/static/icons/06003719.png b/static/icons/06003719.png
new file mode 100755
index 00000000..dd5437a0
Binary files /dev/null and b/static/icons/06003719.png differ
diff --git a/static/icons/0600371A.png b/static/icons/0600371A.png
new file mode 100755
index 00000000..1437cff0
Binary files /dev/null and b/static/icons/0600371A.png differ
diff --git a/static/icons/0600371B.png b/static/icons/0600371B.png
new file mode 100755
index 00000000..e25b42de
Binary files /dev/null and b/static/icons/0600371B.png differ
diff --git a/static/icons/0600371C.png b/static/icons/0600371C.png
new file mode 100755
index 00000000..cdaa5536
Binary files /dev/null and b/static/icons/0600371C.png differ
diff --git a/static/icons/0600371D.png b/static/icons/0600371D.png
new file mode 100755
index 00000000..79cbae6d
Binary files /dev/null and b/static/icons/0600371D.png differ
diff --git a/static/icons/0600371E.png b/static/icons/0600371E.png
new file mode 100755
index 00000000..bb86bc43
Binary files /dev/null and b/static/icons/0600371E.png differ
diff --git a/static/icons/0600371F.png b/static/icons/0600371F.png
new file mode 100755
index 00000000..3cff0d3e
Binary files /dev/null and b/static/icons/0600371F.png differ
diff --git a/static/icons/06003720.png b/static/icons/06003720.png
new file mode 100755
index 00000000..d3337324
Binary files /dev/null and b/static/icons/06003720.png differ
diff --git a/static/icons/06003721.png b/static/icons/06003721.png
new file mode 100755
index 00000000..42df825d
Binary files /dev/null and b/static/icons/06003721.png differ
diff --git a/static/icons/06003722.png b/static/icons/06003722.png
new file mode 100755
index 00000000..02241564
Binary files /dev/null and b/static/icons/06003722.png differ
diff --git a/static/icons/06003723.png b/static/icons/06003723.png
new file mode 100755
index 00000000..9c5b8112
Binary files /dev/null and b/static/icons/06003723.png differ
diff --git a/static/icons/06003724.png b/static/icons/06003724.png
new file mode 100755
index 00000000..82331557
Binary files /dev/null and b/static/icons/06003724.png differ
diff --git a/static/icons/06003725.png b/static/icons/06003725.png
new file mode 100755
index 00000000..818921c9
Binary files /dev/null and b/static/icons/06003725.png differ
diff --git a/static/icons/06003726.png b/static/icons/06003726.png
new file mode 100755
index 00000000..6248bf3c
Binary files /dev/null and b/static/icons/06003726.png differ
diff --git a/static/icons/06003727.png b/static/icons/06003727.png
new file mode 100755
index 00000000..1ea822a8
Binary files /dev/null and b/static/icons/06003727.png differ
diff --git a/static/icons/06003728.png b/static/icons/06003728.png
new file mode 100755
index 00000000..f2e33c64
Binary files /dev/null and b/static/icons/06003728.png differ
diff --git a/static/icons/06003729.png b/static/icons/06003729.png
new file mode 100755
index 00000000..b99a9dba
Binary files /dev/null and b/static/icons/06003729.png differ
diff --git a/static/icons/0600372A.png b/static/icons/0600372A.png
new file mode 100755
index 00000000..d8d16263
Binary files /dev/null and b/static/icons/0600372A.png differ
diff --git a/static/icons/0600372B.png b/static/icons/0600372B.png
new file mode 100755
index 00000000..73a767ff
Binary files /dev/null and b/static/icons/0600372B.png differ
diff --git a/static/icons/0600372C.png b/static/icons/0600372C.png
new file mode 100755
index 00000000..6d74700e
Binary files /dev/null and b/static/icons/0600372C.png differ
diff --git a/static/icons/0600372D.png b/static/icons/0600372D.png
new file mode 100755
index 00000000..3ec597bb
Binary files /dev/null and b/static/icons/0600372D.png differ
diff --git a/static/icons/0600372E.png b/static/icons/0600372E.png
new file mode 100755
index 00000000..407b858c
Binary files /dev/null and b/static/icons/0600372E.png differ
diff --git a/static/icons/0600372F.png b/static/icons/0600372F.png
new file mode 100755
index 00000000..145b1fc8
Binary files /dev/null and b/static/icons/0600372F.png differ
diff --git a/static/icons/06003730.png b/static/icons/06003730.png
new file mode 100755
index 00000000..c29c0a08
Binary files /dev/null and b/static/icons/06003730.png differ
diff --git a/static/icons/06003731.png b/static/icons/06003731.png
new file mode 100755
index 00000000..21eb4e12
Binary files /dev/null and b/static/icons/06003731.png differ
diff --git a/static/icons/06003732.png b/static/icons/06003732.png
new file mode 100755
index 00000000..7b386f47
Binary files /dev/null and b/static/icons/06003732.png differ
diff --git a/static/icons/06003733.png b/static/icons/06003733.png
new file mode 100755
index 00000000..f42ad45e
Binary files /dev/null and b/static/icons/06003733.png differ
diff --git a/static/icons/06003734.png b/static/icons/06003734.png
new file mode 100755
index 00000000..5bbf9fd7
Binary files /dev/null and b/static/icons/06003734.png differ
diff --git a/static/icons/06003735.png b/static/icons/06003735.png
new file mode 100755
index 00000000..7188ff4b
Binary files /dev/null and b/static/icons/06003735.png differ
diff --git a/static/icons/06003736.png b/static/icons/06003736.png
new file mode 100755
index 00000000..f10b33d9
Binary files /dev/null and b/static/icons/06003736.png differ
diff --git a/static/icons/06003737.png b/static/icons/06003737.png
new file mode 100755
index 00000000..c5763b43
Binary files /dev/null and b/static/icons/06003737.png differ
diff --git a/static/icons/06003738.png b/static/icons/06003738.png
new file mode 100755
index 00000000..c133eb5e
Binary files /dev/null and b/static/icons/06003738.png differ
diff --git a/static/icons/06003739.png b/static/icons/06003739.png
new file mode 100755
index 00000000..99af837b
Binary files /dev/null and b/static/icons/06003739.png differ
diff --git a/static/icons/0600373A.png b/static/icons/0600373A.png
new file mode 100755
index 00000000..59fbd635
Binary files /dev/null and b/static/icons/0600373A.png differ
diff --git a/static/icons/0600373B.png b/static/icons/0600373B.png
new file mode 100755
index 00000000..bfc8c0dd
Binary files /dev/null and b/static/icons/0600373B.png differ
diff --git a/static/icons/0600373C.png b/static/icons/0600373C.png
new file mode 100755
index 00000000..e2c28dc4
Binary files /dev/null and b/static/icons/0600373C.png differ
diff --git a/static/icons/0600373D.png b/static/icons/0600373D.png
new file mode 100755
index 00000000..c77f4e3f
Binary files /dev/null and b/static/icons/0600373D.png differ
diff --git a/static/icons/0600373E.png b/static/icons/0600373E.png
new file mode 100755
index 00000000..85d7bcb6
Binary files /dev/null and b/static/icons/0600373E.png differ
diff --git a/static/icons/0600373F.png b/static/icons/0600373F.png
new file mode 100755
index 00000000..c2e9f0ae
Binary files /dev/null and b/static/icons/0600373F.png differ
diff --git a/static/icons/06003740.png b/static/icons/06003740.png
new file mode 100755
index 00000000..0f054b03
Binary files /dev/null and b/static/icons/06003740.png differ
diff --git a/static/icons/06003741.png b/static/icons/06003741.png
new file mode 100755
index 00000000..86a19f7e
Binary files /dev/null and b/static/icons/06003741.png differ
diff --git a/static/icons/06003742.png b/static/icons/06003742.png
new file mode 100755
index 00000000..9de337e1
Binary files /dev/null and b/static/icons/06003742.png differ
diff --git a/static/icons/06003743.png b/static/icons/06003743.png
new file mode 100755
index 00000000..f167f5ab
Binary files /dev/null and b/static/icons/06003743.png differ
diff --git a/static/icons/06003744.png b/static/icons/06003744.png
new file mode 100755
index 00000000..44931603
Binary files /dev/null and b/static/icons/06003744.png differ
diff --git a/static/icons/06003745.png b/static/icons/06003745.png
new file mode 100755
index 00000000..726560de
Binary files /dev/null and b/static/icons/06003745.png differ
diff --git a/static/icons/06003746.png b/static/icons/06003746.png
new file mode 100755
index 00000000..aec98f89
Binary files /dev/null and b/static/icons/06003746.png differ
diff --git a/static/icons/06003747.png b/static/icons/06003747.png
new file mode 100755
index 00000000..811c3720
Binary files /dev/null and b/static/icons/06003747.png differ
diff --git a/static/icons/06003748.png b/static/icons/06003748.png
new file mode 100755
index 00000000..3c3e611e
Binary files /dev/null and b/static/icons/06003748.png differ
diff --git a/static/icons/06003749.png b/static/icons/06003749.png
new file mode 100755
index 00000000..67096842
Binary files /dev/null and b/static/icons/06003749.png differ
diff --git a/static/icons/0600374A.png b/static/icons/0600374A.png
new file mode 100755
index 00000000..7bbc4217
Binary files /dev/null and b/static/icons/0600374A.png differ
diff --git a/static/icons/0600374B.png b/static/icons/0600374B.png
new file mode 100755
index 00000000..d84bf4d0
Binary files /dev/null and b/static/icons/0600374B.png differ
diff --git a/static/icons/0600374C.png b/static/icons/0600374C.png
new file mode 100755
index 00000000..0ea81997
Binary files /dev/null and b/static/icons/0600374C.png differ
diff --git a/static/icons/0600374D.png b/static/icons/0600374D.png
new file mode 100755
index 00000000..5ba19c82
Binary files /dev/null and b/static/icons/0600374D.png differ
diff --git a/static/icons/0600374E.png b/static/icons/0600374E.png
new file mode 100755
index 00000000..de6dab4a
Binary files /dev/null and b/static/icons/0600374E.png differ
diff --git a/static/icons/0600374F.png b/static/icons/0600374F.png
new file mode 100755
index 00000000..0e8fb6e3
Binary files /dev/null and b/static/icons/0600374F.png differ
diff --git a/static/icons/06003750.png b/static/icons/06003750.png
new file mode 100755
index 00000000..a1fe1485
Binary files /dev/null and b/static/icons/06003750.png differ
diff --git a/static/icons/06003751.png b/static/icons/06003751.png
new file mode 100755
index 00000000..69bc7250
Binary files /dev/null and b/static/icons/06003751.png differ
diff --git a/static/icons/06003752.png b/static/icons/06003752.png
new file mode 100755
index 00000000..5b0c206a
Binary files /dev/null and b/static/icons/06003752.png differ
diff --git a/static/icons/06003753.png b/static/icons/06003753.png
new file mode 100755
index 00000000..d08405d9
Binary files /dev/null and b/static/icons/06003753.png differ
diff --git a/static/icons/06003754.png b/static/icons/06003754.png
new file mode 100755
index 00000000..33793f0c
Binary files /dev/null and b/static/icons/06003754.png differ
diff --git a/static/icons/06003755.png b/static/icons/06003755.png
new file mode 100755
index 00000000..92eb49a8
Binary files /dev/null and b/static/icons/06003755.png differ
diff --git a/static/icons/06003756.png b/static/icons/06003756.png
new file mode 100755
index 00000000..9ebee811
Binary files /dev/null and b/static/icons/06003756.png differ
diff --git a/static/icons/06003757.png b/static/icons/06003757.png
new file mode 100755
index 00000000..44f10535
Binary files /dev/null and b/static/icons/06003757.png differ
diff --git a/static/icons/06003758.png b/static/icons/06003758.png
new file mode 100755
index 00000000..7900e9a2
Binary files /dev/null and b/static/icons/06003758.png differ
diff --git a/static/icons/06003759.png b/static/icons/06003759.png
new file mode 100755
index 00000000..61b14443
Binary files /dev/null and b/static/icons/06003759.png differ
diff --git a/static/icons/0600375A.png b/static/icons/0600375A.png
new file mode 100755
index 00000000..4c4c8fde
Binary files /dev/null and b/static/icons/0600375A.png differ
diff --git a/static/icons/0600375B.png b/static/icons/0600375B.png
new file mode 100755
index 00000000..f6635379
Binary files /dev/null and b/static/icons/0600375B.png differ
diff --git a/static/icons/0600375C.png b/static/icons/0600375C.png
new file mode 100755
index 00000000..460fc880
Binary files /dev/null and b/static/icons/0600375C.png differ
diff --git a/static/icons/0600375D.png b/static/icons/0600375D.png
new file mode 100755
index 00000000..8f82d391
Binary files /dev/null and b/static/icons/0600375D.png differ
diff --git a/static/icons/0600375E.png b/static/icons/0600375E.png
new file mode 100755
index 00000000..f8e4ec85
Binary files /dev/null and b/static/icons/0600375E.png differ
diff --git a/static/icons/0600375F.png b/static/icons/0600375F.png
new file mode 100755
index 00000000..8bb06791
Binary files /dev/null and b/static/icons/0600375F.png differ
diff --git a/static/icons/06003760.png b/static/icons/06003760.png
new file mode 100755
index 00000000..ee238b35
Binary files /dev/null and b/static/icons/06003760.png differ
diff --git a/static/icons/06003761.png b/static/icons/06003761.png
new file mode 100755
index 00000000..cbf63f5d
Binary files /dev/null and b/static/icons/06003761.png differ
diff --git a/static/icons/06003762.png b/static/icons/06003762.png
new file mode 100755
index 00000000..28ea3911
Binary files /dev/null and b/static/icons/06003762.png differ
diff --git a/static/icons/06003763.png b/static/icons/06003763.png
new file mode 100755
index 00000000..78316953
Binary files /dev/null and b/static/icons/06003763.png differ
diff --git a/static/icons/06003764.png b/static/icons/06003764.png
new file mode 100755
index 00000000..67d8aa6b
Binary files /dev/null and b/static/icons/06003764.png differ
diff --git a/static/icons/06003765.png b/static/icons/06003765.png
new file mode 100755
index 00000000..79c1374a
Binary files /dev/null and b/static/icons/06003765.png differ
diff --git a/static/icons/06003766.png b/static/icons/06003766.png
new file mode 100755
index 00000000..e32b73a2
Binary files /dev/null and b/static/icons/06003766.png differ
diff --git a/static/icons/06003767.png b/static/icons/06003767.png
new file mode 100755
index 00000000..0d123133
Binary files /dev/null and b/static/icons/06003767.png differ
diff --git a/static/icons/06003768.png b/static/icons/06003768.png
new file mode 100755
index 00000000..99c75081
Binary files /dev/null and b/static/icons/06003768.png differ
diff --git a/static/icons/06003769.png b/static/icons/06003769.png
new file mode 100755
index 00000000..6539fec4
Binary files /dev/null and b/static/icons/06003769.png differ
diff --git a/static/icons/0600376A.png b/static/icons/0600376A.png
new file mode 100755
index 00000000..478afe6c
Binary files /dev/null and b/static/icons/0600376A.png differ
diff --git a/static/icons/0600376B.png b/static/icons/0600376B.png
new file mode 100755
index 00000000..861262a4
Binary files /dev/null and b/static/icons/0600376B.png differ
diff --git a/static/icons/0600376C.png b/static/icons/0600376C.png
new file mode 100755
index 00000000..9b435529
Binary files /dev/null and b/static/icons/0600376C.png differ
diff --git a/static/icons/0600376D.png b/static/icons/0600376D.png
new file mode 100755
index 00000000..1217303c
Binary files /dev/null and b/static/icons/0600376D.png differ
diff --git a/static/icons/0600376E.png b/static/icons/0600376E.png
new file mode 100755
index 00000000..cdf9b6d1
Binary files /dev/null and b/static/icons/0600376E.png differ
diff --git a/static/icons/0600376F.png b/static/icons/0600376F.png
new file mode 100755
index 00000000..07054465
Binary files /dev/null and b/static/icons/0600376F.png differ
diff --git a/static/icons/06003770.png b/static/icons/06003770.png
new file mode 100755
index 00000000..a57d2f9d
Binary files /dev/null and b/static/icons/06003770.png differ
diff --git a/static/icons/06003771.png b/static/icons/06003771.png
new file mode 100755
index 00000000..e66ee265
Binary files /dev/null and b/static/icons/06003771.png differ
diff --git a/static/icons/06003772.png b/static/icons/06003772.png
new file mode 100755
index 00000000..e709b51e
Binary files /dev/null and b/static/icons/06003772.png differ
diff --git a/static/icons/06003773.png b/static/icons/06003773.png
new file mode 100755
index 00000000..de6f7be4
Binary files /dev/null and b/static/icons/06003773.png differ
diff --git a/static/icons/06003774.png b/static/icons/06003774.png
new file mode 100755
index 00000000..6b17fbc0
Binary files /dev/null and b/static/icons/06003774.png differ
diff --git a/static/icons/06003775.png b/static/icons/06003775.png
new file mode 100755
index 00000000..ac1d1209
Binary files /dev/null and b/static/icons/06003775.png differ
diff --git a/static/icons/06003776.png b/static/icons/06003776.png
new file mode 100755
index 00000000..ace9861f
Binary files /dev/null and b/static/icons/06003776.png differ
diff --git a/static/icons/06003777.png b/static/icons/06003777.png
new file mode 100755
index 00000000..9ef7244b
Binary files /dev/null and b/static/icons/06003777.png differ
diff --git a/static/icons/06003778.png b/static/icons/06003778.png
new file mode 100755
index 00000000..857281f7
Binary files /dev/null and b/static/icons/06003778.png differ
diff --git a/static/icons/06003779.png b/static/icons/06003779.png
new file mode 100755
index 00000000..331c04dc
Binary files /dev/null and b/static/icons/06003779.png differ
diff --git a/static/icons/0600377A.png b/static/icons/0600377A.png
new file mode 100755
index 00000000..854789b5
Binary files /dev/null and b/static/icons/0600377A.png differ
diff --git a/static/icons/0600377B.png b/static/icons/0600377B.png
new file mode 100755
index 00000000..f02257ed
Binary files /dev/null and b/static/icons/0600377B.png differ
diff --git a/static/icons/0600377C.png b/static/icons/0600377C.png
new file mode 100755
index 00000000..6ec21ef2
Binary files /dev/null and b/static/icons/0600377C.png differ
diff --git a/static/icons/0600377D.png b/static/icons/0600377D.png
new file mode 100755
index 00000000..57b186fa
Binary files /dev/null and b/static/icons/0600377D.png differ
diff --git a/static/icons/0600377E.png b/static/icons/0600377E.png
new file mode 100755
index 00000000..6b713350
Binary files /dev/null and b/static/icons/0600377E.png differ
diff --git a/static/icons/0600377F.png b/static/icons/0600377F.png
new file mode 100755
index 00000000..b51a7d17
Binary files /dev/null and b/static/icons/0600377F.png differ
diff --git a/static/icons/06003780.png b/static/icons/06003780.png
new file mode 100755
index 00000000..f05654ae
Binary files /dev/null and b/static/icons/06003780.png differ
diff --git a/static/icons/06003781.png b/static/icons/06003781.png
new file mode 100755
index 00000000..726c514f
Binary files /dev/null and b/static/icons/06003781.png differ
diff --git a/static/icons/06003782.png b/static/icons/06003782.png
new file mode 100755
index 00000000..64f1b8f6
Binary files /dev/null and b/static/icons/06003782.png differ
diff --git a/static/icons/06003783.png b/static/icons/06003783.png
new file mode 100755
index 00000000..68e0f527
Binary files /dev/null and b/static/icons/06003783.png differ
diff --git a/static/icons/06003784.png b/static/icons/06003784.png
new file mode 100755
index 00000000..e2faacba
Binary files /dev/null and b/static/icons/06003784.png differ
diff --git a/static/icons/06003785.png b/static/icons/06003785.png
new file mode 100755
index 00000000..b209de3a
Binary files /dev/null and b/static/icons/06003785.png differ
diff --git a/static/icons/06003786.png b/static/icons/06003786.png
new file mode 100755
index 00000000..6d272ee7
Binary files /dev/null and b/static/icons/06003786.png differ
diff --git a/static/icons/06003787.png b/static/icons/06003787.png
new file mode 100755
index 00000000..276dce05
Binary files /dev/null and b/static/icons/06003787.png differ
diff --git a/static/icons/06003788.png b/static/icons/06003788.png
new file mode 100755
index 00000000..1b21dfdd
Binary files /dev/null and b/static/icons/06003788.png differ
diff --git a/static/icons/06003789.png b/static/icons/06003789.png
new file mode 100755
index 00000000..2ba10bed
Binary files /dev/null and b/static/icons/06003789.png differ
diff --git a/static/icons/0600378A.png b/static/icons/0600378A.png
new file mode 100755
index 00000000..bef6f15e
Binary files /dev/null and b/static/icons/0600378A.png differ
diff --git a/static/icons/0600378B.png b/static/icons/0600378B.png
new file mode 100755
index 00000000..f2542c04
Binary files /dev/null and b/static/icons/0600378B.png differ
diff --git a/static/icons/0600378C.png b/static/icons/0600378C.png
new file mode 100755
index 00000000..85c2ddf2
Binary files /dev/null and b/static/icons/0600378C.png differ
diff --git a/static/icons/0600378D.png b/static/icons/0600378D.png
new file mode 100755
index 00000000..2721b3f3
Binary files /dev/null and b/static/icons/0600378D.png differ
diff --git a/static/icons/0600378F.png b/static/icons/0600378F.png
new file mode 100755
index 00000000..a27c08c6
Binary files /dev/null and b/static/icons/0600378F.png differ
diff --git a/static/icons/06003790.png b/static/icons/06003790.png
new file mode 100755
index 00000000..9fdd3675
Binary files /dev/null and b/static/icons/06003790.png differ
diff --git a/static/icons/06003791.png b/static/icons/06003791.png
new file mode 100755
index 00000000..5092e91c
Binary files /dev/null and b/static/icons/06003791.png differ
diff --git a/static/icons/06003794.png b/static/icons/06003794.png
new file mode 100755
index 00000000..79fd9f5e
Binary files /dev/null and b/static/icons/06003794.png differ
diff --git a/static/icons/0600379A.png b/static/icons/0600379A.png
new file mode 100755
index 00000000..f4187e2e
Binary files /dev/null and b/static/icons/0600379A.png differ
diff --git a/static/icons/0600379B.png b/static/icons/0600379B.png
new file mode 100755
index 00000000..31a2cf2e
Binary files /dev/null and b/static/icons/0600379B.png differ
diff --git a/static/icons/0600379F.png b/static/icons/0600379F.png
new file mode 100755
index 00000000..dc75c7cf
Binary files /dev/null and b/static/icons/0600379F.png differ
diff --git a/static/icons/060037A0.png b/static/icons/060037A0.png
new file mode 100755
index 00000000..0a83ffe6
Binary files /dev/null and b/static/icons/060037A0.png differ
diff --git a/static/icons/060037A1.png b/static/icons/060037A1.png
new file mode 100755
index 00000000..815d5cc8
Binary files /dev/null and b/static/icons/060037A1.png differ
diff --git a/static/icons/060037A6.png b/static/icons/060037A6.png
new file mode 100755
index 00000000..55f80c24
Binary files /dev/null and b/static/icons/060037A6.png differ
diff --git a/static/icons/060037A7.png b/static/icons/060037A7.png
new file mode 100755
index 00000000..b5f6790b
Binary files /dev/null and b/static/icons/060037A7.png differ
diff --git a/static/icons/060037A9.png b/static/icons/060037A9.png
new file mode 100755
index 00000000..dec7db63
Binary files /dev/null and b/static/icons/060037A9.png differ
diff --git a/static/icons/060037AA.png b/static/icons/060037AA.png
new file mode 100755
index 00000000..aab6cec3
Binary files /dev/null and b/static/icons/060037AA.png differ
diff --git a/static/icons/060037AB.png b/static/icons/060037AB.png
new file mode 100755
index 00000000..2260b78e
Binary files /dev/null and b/static/icons/060037AB.png differ
diff --git a/static/icons/060037AC.png b/static/icons/060037AC.png
new file mode 100755
index 00000000..f1167581
Binary files /dev/null and b/static/icons/060037AC.png differ
diff --git a/static/icons/060037AE.png b/static/icons/060037AE.png
new file mode 100755
index 00000000..4117ab9e
Binary files /dev/null and b/static/icons/060037AE.png differ
diff --git a/static/icons/060037AF.png b/static/icons/060037AF.png
new file mode 100755
index 00000000..72806362
Binary files /dev/null and b/static/icons/060037AF.png differ
diff --git a/static/icons/060037B0.png b/static/icons/060037B0.png
new file mode 100755
index 00000000..8b6c4591
Binary files /dev/null and b/static/icons/060037B0.png differ
diff --git a/static/icons/060037B1.png b/static/icons/060037B1.png
new file mode 100755
index 00000000..99cb9e55
Binary files /dev/null and b/static/icons/060037B1.png differ
diff --git a/static/icons/060037B9.png b/static/icons/060037B9.png
new file mode 100755
index 00000000..2c215d33
Binary files /dev/null and b/static/icons/060037B9.png differ
diff --git a/static/icons/060037BD.png b/static/icons/060037BD.png
new file mode 100755
index 00000000..1bd6d5c1
Binary files /dev/null and b/static/icons/060037BD.png differ
diff --git a/static/icons/060037C0.png b/static/icons/060037C0.png
new file mode 100755
index 00000000..ba5b93a5
Binary files /dev/null and b/static/icons/060037C0.png differ
diff --git a/static/icons/060037C1.png b/static/icons/060037C1.png
new file mode 100755
index 00000000..6d042bc2
Binary files /dev/null and b/static/icons/060037C1.png differ
diff --git a/static/icons/060037C2.png b/static/icons/060037C2.png
new file mode 100755
index 00000000..19c0985e
Binary files /dev/null and b/static/icons/060037C2.png differ
diff --git a/static/icons/060037CA.png b/static/icons/060037CA.png
new file mode 100755
index 00000000..b33f2513
Binary files /dev/null and b/static/icons/060037CA.png differ
diff --git a/static/icons/060037CB.png b/static/icons/060037CB.png
new file mode 100755
index 00000000..462dddb8
Binary files /dev/null and b/static/icons/060037CB.png differ
diff --git a/static/icons/060037CC.png b/static/icons/060037CC.png
new file mode 100755
index 00000000..99d3327f
Binary files /dev/null and b/static/icons/060037CC.png differ
diff --git a/static/icons/060037CD.png b/static/icons/060037CD.png
new file mode 100755
index 00000000..529d9952
Binary files /dev/null and b/static/icons/060037CD.png differ
diff --git a/static/icons/060037D2.png b/static/icons/060037D2.png
new file mode 100755
index 00000000..cbedbd0f
Binary files /dev/null and b/static/icons/060037D2.png differ
diff --git a/static/icons/060037D4.png b/static/icons/060037D4.png
new file mode 100755
index 00000000..91b45a5d
Binary files /dev/null and b/static/icons/060037D4.png differ
diff --git a/static/icons/060037D5.png b/static/icons/060037D5.png
new file mode 100755
index 00000000..6ee12591
Binary files /dev/null and b/static/icons/060037D5.png differ
diff --git a/static/icons/060037D6.png b/static/icons/060037D6.png
new file mode 100755
index 00000000..1a2accee
Binary files /dev/null and b/static/icons/060037D6.png differ
diff --git a/static/icons/060037D7.png b/static/icons/060037D7.png
new file mode 100755
index 00000000..369bab04
Binary files /dev/null and b/static/icons/060037D7.png differ
diff --git a/static/icons/060037D8.png b/static/icons/060037D8.png
new file mode 100755
index 00000000..7c59a4f9
Binary files /dev/null and b/static/icons/060037D8.png differ
diff --git a/static/icons/060037DA.png b/static/icons/060037DA.png
new file mode 100755
index 00000000..3e276692
Binary files /dev/null and b/static/icons/060037DA.png differ
diff --git a/static/icons/060037DB.png b/static/icons/060037DB.png
new file mode 100755
index 00000000..a3c21474
Binary files /dev/null and b/static/icons/060037DB.png differ
diff --git a/static/icons/060037DC.png b/static/icons/060037DC.png
new file mode 100755
index 00000000..3f5c5f5b
Binary files /dev/null and b/static/icons/060037DC.png differ
diff --git a/static/icons/060037DD.png b/static/icons/060037DD.png
new file mode 100755
index 00000000..90c423f9
Binary files /dev/null and b/static/icons/060037DD.png differ
diff --git a/static/icons/060037DE.png b/static/icons/060037DE.png
new file mode 100755
index 00000000..0fd187e8
Binary files /dev/null and b/static/icons/060037DE.png differ
diff --git a/static/icons/060037E1.png b/static/icons/060037E1.png
new file mode 100755
index 00000000..ebf965d0
Binary files /dev/null and b/static/icons/060037E1.png differ
diff --git a/static/icons/060037E2.png b/static/icons/060037E2.png
new file mode 100755
index 00000000..46a84e8b
Binary files /dev/null and b/static/icons/060037E2.png differ
diff --git a/static/icons/060037E3.png b/static/icons/060037E3.png
new file mode 100755
index 00000000..60ec6e9e
Binary files /dev/null and b/static/icons/060037E3.png differ
diff --git a/static/icons/060037E4.png b/static/icons/060037E4.png
new file mode 100755
index 00000000..3ddfdebf
Binary files /dev/null and b/static/icons/060037E4.png differ
diff --git a/static/icons/060037E5.png b/static/icons/060037E5.png
new file mode 100755
index 00000000..6934ce2d
Binary files /dev/null and b/static/icons/060037E5.png differ
diff --git a/static/icons/060037E6.png b/static/icons/060037E6.png
new file mode 100755
index 00000000..28d8258e
Binary files /dev/null and b/static/icons/060037E6.png differ
diff --git a/static/icons/060037E7.png b/static/icons/060037E7.png
new file mode 100755
index 00000000..12e57b65
Binary files /dev/null and b/static/icons/060037E7.png differ
diff --git a/static/icons/060037E8.png b/static/icons/060037E8.png
new file mode 100755
index 00000000..6a45999d
Binary files /dev/null and b/static/icons/060037E8.png differ
diff --git a/static/icons/060037EC.png b/static/icons/060037EC.png
new file mode 100755
index 00000000..a48c2f03
Binary files /dev/null and b/static/icons/060037EC.png differ
diff --git a/static/icons/060037ED.png b/static/icons/060037ED.png
new file mode 100755
index 00000000..707f2f9f
Binary files /dev/null and b/static/icons/060037ED.png differ
diff --git a/static/icons/060037F1.png b/static/icons/060037F1.png
new file mode 100755
index 00000000..4ec67002
Binary files /dev/null and b/static/icons/060037F1.png differ
diff --git a/static/icons/060037F2.png b/static/icons/060037F2.png
new file mode 100755
index 00000000..a4daa2ac
Binary files /dev/null and b/static/icons/060037F2.png differ
diff --git a/static/icons/060037F3.png b/static/icons/060037F3.png
new file mode 100755
index 00000000..6e21569b
Binary files /dev/null and b/static/icons/060037F3.png differ
diff --git a/static/icons/060037F4.png b/static/icons/060037F4.png
new file mode 100755
index 00000000..2aaf4455
Binary files /dev/null and b/static/icons/060037F4.png differ
diff --git a/static/icons/060037F8.png b/static/icons/060037F8.png
new file mode 100755
index 00000000..a87a745f
Binary files /dev/null and b/static/icons/060037F8.png differ
diff --git a/static/icons/060037F9.png b/static/icons/060037F9.png
new file mode 100755
index 00000000..daa78f68
Binary files /dev/null and b/static/icons/060037F9.png differ
diff --git a/static/icons/060037FA.png b/static/icons/060037FA.png
new file mode 100755
index 00000000..2f9097a5
Binary files /dev/null and b/static/icons/060037FA.png differ
diff --git a/static/icons/060037FB.png b/static/icons/060037FB.png
new file mode 100755
index 00000000..9137b90f
Binary files /dev/null and b/static/icons/060037FB.png differ
diff --git a/static/icons/060037FD.png b/static/icons/060037FD.png
new file mode 100755
index 00000000..2a9a521e
Binary files /dev/null and b/static/icons/060037FD.png differ
diff --git a/static/icons/06003807.png b/static/icons/06003807.png
new file mode 100755
index 00000000..1055fab3
Binary files /dev/null and b/static/icons/06003807.png differ
diff --git a/static/icons/06003808.png b/static/icons/06003808.png
new file mode 100755
index 00000000..10995ea2
Binary files /dev/null and b/static/icons/06003808.png differ
diff --git a/static/icons/06003809.png b/static/icons/06003809.png
new file mode 100755
index 00000000..bd623d42
Binary files /dev/null and b/static/icons/06003809.png differ
diff --git a/static/icons/0600380A.png b/static/icons/0600380A.png
new file mode 100755
index 00000000..4ae0ad1f
Binary files /dev/null and b/static/icons/0600380A.png differ
diff --git a/static/icons/0600380B.png b/static/icons/0600380B.png
new file mode 100755
index 00000000..7fc80029
Binary files /dev/null and b/static/icons/0600380B.png differ
diff --git a/static/icons/0600380C.png b/static/icons/0600380C.png
new file mode 100755
index 00000000..224e663d
Binary files /dev/null and b/static/icons/0600380C.png differ
diff --git a/static/icons/06003815.png b/static/icons/06003815.png
new file mode 100755
index 00000000..408225d6
Binary files /dev/null and b/static/icons/06003815.png differ
diff --git a/static/icons/06003816.png b/static/icons/06003816.png
new file mode 100755
index 00000000..dd744cd8
Binary files /dev/null and b/static/icons/06003816.png differ
diff --git a/static/icons/06003817.png b/static/icons/06003817.png
new file mode 100755
index 00000000..1eb7af50
Binary files /dev/null and b/static/icons/06003817.png differ
diff --git a/static/icons/06003819.png b/static/icons/06003819.png
new file mode 100755
index 00000000..bd6b1967
Binary files /dev/null and b/static/icons/06003819.png differ
diff --git a/static/icons/06003821.png b/static/icons/06003821.png
new file mode 100755
index 00000000..a8639667
Binary files /dev/null and b/static/icons/06003821.png differ
diff --git a/static/icons/06003824.png b/static/icons/06003824.png
new file mode 100755
index 00000000..fcf74cd4
Binary files /dev/null and b/static/icons/06003824.png differ
diff --git a/static/icons/06003826.png b/static/icons/06003826.png
new file mode 100755
index 00000000..022b9cd0
Binary files /dev/null and b/static/icons/06003826.png differ
diff --git a/static/icons/06003828.png b/static/icons/06003828.png
new file mode 100755
index 00000000..e3416a70
Binary files /dev/null and b/static/icons/06003828.png differ
diff --git a/static/icons/0600382A.png b/static/icons/0600382A.png
new file mode 100755
index 00000000..0eef18ff
Binary files /dev/null and b/static/icons/0600382A.png differ
diff --git a/static/icons/0600382C.png b/static/icons/0600382C.png
new file mode 100755
index 00000000..0a25b351
Binary files /dev/null and b/static/icons/0600382C.png differ
diff --git a/static/icons/0600382E.png b/static/icons/0600382E.png
new file mode 100755
index 00000000..9e95892f
Binary files /dev/null and b/static/icons/0600382E.png differ
diff --git a/static/icons/06003830.png b/static/icons/06003830.png
new file mode 100755
index 00000000..04e1b497
Binary files /dev/null and b/static/icons/06003830.png differ
diff --git a/static/icons/06003832.png b/static/icons/06003832.png
new file mode 100755
index 00000000..78e9ee24
Binary files /dev/null and b/static/icons/06003832.png differ
diff --git a/static/icons/06003833.png b/static/icons/06003833.png
new file mode 100755
index 00000000..d1794ff2
Binary files /dev/null and b/static/icons/06003833.png differ
diff --git a/static/icons/06003835.png b/static/icons/06003835.png
new file mode 100755
index 00000000..90a6a51b
Binary files /dev/null and b/static/icons/06003835.png differ
diff --git a/static/icons/06003837.png b/static/icons/06003837.png
new file mode 100755
index 00000000..a3a53070
Binary files /dev/null and b/static/icons/06003837.png differ
diff --git a/static/icons/06003839.png b/static/icons/06003839.png
new file mode 100755
index 00000000..86c3c3c0
Binary files /dev/null and b/static/icons/06003839.png differ
diff --git a/static/icons/0600383B.png b/static/icons/0600383B.png
new file mode 100755
index 00000000..a53f063e
Binary files /dev/null and b/static/icons/0600383B.png differ
diff --git a/static/icons/0600383D.png b/static/icons/0600383D.png
new file mode 100755
index 00000000..581b9ab1
Binary files /dev/null and b/static/icons/0600383D.png differ
diff --git a/static/icons/0600383F.png b/static/icons/0600383F.png
new file mode 100755
index 00000000..5cb58d91
Binary files /dev/null and b/static/icons/0600383F.png differ
diff --git a/static/icons/06003843.png b/static/icons/06003843.png
new file mode 100755
index 00000000..57381bb6
Binary files /dev/null and b/static/icons/06003843.png differ
diff --git a/static/icons/0600384C.png b/static/icons/0600384C.png
new file mode 100755
index 00000000..aa1d4e97
Binary files /dev/null and b/static/icons/0600384C.png differ
diff --git a/static/icons/06003851.png b/static/icons/06003851.png
new file mode 100755
index 00000000..ad78039e
Binary files /dev/null and b/static/icons/06003851.png differ
diff --git a/static/icons/06003853.png b/static/icons/06003853.png
new file mode 100755
index 00000000..c91f4475
Binary files /dev/null and b/static/icons/06003853.png differ
diff --git a/static/icons/06003856.png b/static/icons/06003856.png
new file mode 100755
index 00000000..85790320
Binary files /dev/null and b/static/icons/06003856.png differ
diff --git a/static/icons/06003858.png b/static/icons/06003858.png
new file mode 100755
index 00000000..ffaaa042
Binary files /dev/null and b/static/icons/06003858.png differ
diff --git a/static/icons/06003859.png b/static/icons/06003859.png
new file mode 100755
index 00000000..faa8d10d
Binary files /dev/null and b/static/icons/06003859.png differ
diff --git a/static/icons/06003865.png b/static/icons/06003865.png
new file mode 100755
index 00000000..4aebd6cd
Binary files /dev/null and b/static/icons/06003865.png differ
diff --git a/static/icons/0600387B.png b/static/icons/0600387B.png
new file mode 100755
index 00000000..7b3cc7ea
Binary files /dev/null and b/static/icons/0600387B.png differ
diff --git a/static/icons/0600387D.png b/static/icons/0600387D.png
new file mode 100755
index 00000000..5faf49ae
Binary files /dev/null and b/static/icons/0600387D.png differ
diff --git a/static/icons/0600387E.png b/static/icons/0600387E.png
new file mode 100755
index 00000000..0b9e4cfe
Binary files /dev/null and b/static/icons/0600387E.png differ
diff --git a/static/icons/0600387F.png b/static/icons/0600387F.png
new file mode 100755
index 00000000..6ed44037
Binary files /dev/null and b/static/icons/0600387F.png differ
diff --git a/static/icons/06003880.png b/static/icons/06003880.png
new file mode 100755
index 00000000..ea6b6ff0
Binary files /dev/null and b/static/icons/06003880.png differ
diff --git a/static/icons/06003881.png b/static/icons/06003881.png
new file mode 100755
index 00000000..beb28c81
Binary files /dev/null and b/static/icons/06003881.png differ
diff --git a/static/icons/06003882.png b/static/icons/06003882.png
new file mode 100755
index 00000000..cf43cb6d
Binary files /dev/null and b/static/icons/06003882.png differ
diff --git a/static/icons/06003883.png b/static/icons/06003883.png
new file mode 100755
index 00000000..f0b0ed87
Binary files /dev/null and b/static/icons/06003883.png differ
diff --git a/static/icons/06003884.png b/static/icons/06003884.png
new file mode 100755
index 00000000..8cbd00cc
Binary files /dev/null and b/static/icons/06003884.png differ
diff --git a/static/icons/06003885.png b/static/icons/06003885.png
new file mode 100755
index 00000000..246e02cc
Binary files /dev/null and b/static/icons/06003885.png differ
diff --git a/static/icons/0600388A.png b/static/icons/0600388A.png
new file mode 100755
index 00000000..341bd4c7
Binary files /dev/null and b/static/icons/0600388A.png differ
diff --git a/static/icons/0600388C.png b/static/icons/0600388C.png
new file mode 100755
index 00000000..7304f4b8
Binary files /dev/null and b/static/icons/0600388C.png differ
diff --git a/static/icons/0600388D.png b/static/icons/0600388D.png
new file mode 100755
index 00000000..5c2ee93c
Binary files /dev/null and b/static/icons/0600388D.png differ
diff --git a/static/icons/0600388E.png b/static/icons/0600388E.png
new file mode 100755
index 00000000..1d145630
Binary files /dev/null and b/static/icons/0600388E.png differ
diff --git a/static/icons/0600388F.png b/static/icons/0600388F.png
new file mode 100755
index 00000000..7a9b60d0
Binary files /dev/null and b/static/icons/0600388F.png differ
diff --git a/static/icons/06003891.png b/static/icons/06003891.png
new file mode 100755
index 00000000..013fc25e
Binary files /dev/null and b/static/icons/06003891.png differ
diff --git a/static/icons/06003893.png b/static/icons/06003893.png
new file mode 100755
index 00000000..01b0ef95
Binary files /dev/null and b/static/icons/06003893.png differ
diff --git a/static/icons/06003895.png b/static/icons/06003895.png
new file mode 100755
index 00000000..9cca57b2
Binary files /dev/null and b/static/icons/06003895.png differ
diff --git a/static/icons/06003896.png b/static/icons/06003896.png
new file mode 100755
index 00000000..293672e1
Binary files /dev/null and b/static/icons/06003896.png differ
diff --git a/static/icons/06003897.png b/static/icons/06003897.png
new file mode 100755
index 00000000..117df3e7
Binary files /dev/null and b/static/icons/06003897.png differ
diff --git a/static/icons/06003899.png b/static/icons/06003899.png
new file mode 100755
index 00000000..66099fd6
Binary files /dev/null and b/static/icons/06003899.png differ
diff --git a/static/icons/0600389A.png b/static/icons/0600389A.png
new file mode 100755
index 00000000..9cca57b2
Binary files /dev/null and b/static/icons/0600389A.png differ
diff --git a/static/icons/0600389C.png b/static/icons/0600389C.png
new file mode 100755
index 00000000..89f2e502
Binary files /dev/null and b/static/icons/0600389C.png differ
diff --git a/static/icons/0600389E.png b/static/icons/0600389E.png
new file mode 100755
index 00000000..f6537b49
Binary files /dev/null and b/static/icons/0600389E.png differ
diff --git a/static/icons/060038A0.png b/static/icons/060038A0.png
new file mode 100755
index 00000000..8c9b8afa
Binary files /dev/null and b/static/icons/060038A0.png differ
diff --git a/static/icons/060038A2.png b/static/icons/060038A2.png
new file mode 100755
index 00000000..664bfab4
Binary files /dev/null and b/static/icons/060038A2.png differ
diff --git a/static/icons/060038A4.png b/static/icons/060038A4.png
new file mode 100755
index 00000000..f3a4cc8b
Binary files /dev/null and b/static/icons/060038A4.png differ
diff --git a/static/icons/060038A6.png b/static/icons/060038A6.png
new file mode 100755
index 00000000..4a42c026
Binary files /dev/null and b/static/icons/060038A6.png differ
diff --git a/static/icons/060038A8.png b/static/icons/060038A8.png
new file mode 100755
index 00000000..0f1a5a3e
Binary files /dev/null and b/static/icons/060038A8.png differ
diff --git a/static/icons/060038AF.png b/static/icons/060038AF.png
new file mode 100755
index 00000000..cae1a946
Binary files /dev/null and b/static/icons/060038AF.png differ
diff --git a/static/icons/060038B0.png b/static/icons/060038B0.png
new file mode 100755
index 00000000..f3011964
Binary files /dev/null and b/static/icons/060038B0.png differ
diff --git a/static/icons/060038B1.png b/static/icons/060038B1.png
new file mode 100755
index 00000000..68b0d152
Binary files /dev/null and b/static/icons/060038B1.png differ
diff --git a/static/icons/060038D7.png b/static/icons/060038D7.png
new file mode 100755
index 00000000..33a70f13
Binary files /dev/null and b/static/icons/060038D7.png differ
diff --git a/static/icons/060038D8.png b/static/icons/060038D8.png
new file mode 100755
index 00000000..c0952be5
Binary files /dev/null and b/static/icons/060038D8.png differ
diff --git a/static/icons/060038E7.png b/static/icons/060038E7.png
new file mode 100755
index 00000000..a5590778
Binary files /dev/null and b/static/icons/060038E7.png differ
diff --git a/static/icons/060038E9.png b/static/icons/060038E9.png
new file mode 100755
index 00000000..f2a83618
Binary files /dev/null and b/static/icons/060038E9.png differ
diff --git a/static/icons/060038EE.png b/static/icons/060038EE.png
new file mode 100755
index 00000000..5a996d35
Binary files /dev/null and b/static/icons/060038EE.png differ
diff --git a/static/icons/060038F0.png b/static/icons/060038F0.png
new file mode 100755
index 00000000..0d65d626
Binary files /dev/null and b/static/icons/060038F0.png differ
diff --git a/static/icons/060038F2.png b/static/icons/060038F2.png
new file mode 100755
index 00000000..4c88d79e
Binary files /dev/null and b/static/icons/060038F2.png differ
diff --git a/static/icons/060038F4.png b/static/icons/060038F4.png
new file mode 100755
index 00000000..b0a384c1
Binary files /dev/null and b/static/icons/060038F4.png differ
diff --git a/static/icons/060038F6.png b/static/icons/060038F6.png
new file mode 100755
index 00000000..b2f671b0
Binary files /dev/null and b/static/icons/060038F6.png differ
diff --git a/static/icons/060038F8.png b/static/icons/060038F8.png
new file mode 100755
index 00000000..c61ece99
Binary files /dev/null and b/static/icons/060038F8.png differ
diff --git a/static/icons/060038FA.png b/static/icons/060038FA.png
new file mode 100755
index 00000000..2c33eb56
Binary files /dev/null and b/static/icons/060038FA.png differ
diff --git a/static/icons/060038FC.png b/static/icons/060038FC.png
new file mode 100755
index 00000000..8490cb8c
Binary files /dev/null and b/static/icons/060038FC.png differ
diff --git a/static/icons/060038FE.png b/static/icons/060038FE.png
new file mode 100755
index 00000000..32768f79
Binary files /dev/null and b/static/icons/060038FE.png differ
diff --git a/static/icons/06003900.png b/static/icons/06003900.png
new file mode 100755
index 00000000..2fe52f6a
Binary files /dev/null and b/static/icons/06003900.png differ
diff --git a/static/icons/06003902.png b/static/icons/06003902.png
new file mode 100755
index 00000000..cbbd5095
Binary files /dev/null and b/static/icons/06003902.png differ
diff --git a/static/icons/06003904.png b/static/icons/06003904.png
new file mode 100755
index 00000000..80bb7097
Binary files /dev/null and b/static/icons/06003904.png differ
diff --git a/static/icons/06003906.png b/static/icons/06003906.png
new file mode 100755
index 00000000..27e33d00
Binary files /dev/null and b/static/icons/06003906.png differ
diff --git a/static/icons/06003907.png b/static/icons/06003907.png
new file mode 100755
index 00000000..1051acba
Binary files /dev/null and b/static/icons/06003907.png differ
diff --git a/static/icons/06003909.png b/static/icons/06003909.png
new file mode 100755
index 00000000..3af81c43
Binary files /dev/null and b/static/icons/06003909.png differ
diff --git a/static/icons/0600390B.png b/static/icons/0600390B.png
new file mode 100755
index 00000000..9a7664e4
Binary files /dev/null and b/static/icons/0600390B.png differ
diff --git a/static/icons/0600390D.png b/static/icons/0600390D.png
new file mode 100755
index 00000000..fe59c034
Binary files /dev/null and b/static/icons/0600390D.png differ
diff --git a/static/icons/0600390F.png b/static/icons/0600390F.png
new file mode 100755
index 00000000..4b476457
Binary files /dev/null and b/static/icons/0600390F.png differ
diff --git a/static/icons/06003911.png b/static/icons/06003911.png
new file mode 100755
index 00000000..c01d6f33
Binary files /dev/null and b/static/icons/06003911.png differ
diff --git a/static/icons/06003913.png b/static/icons/06003913.png
new file mode 100755
index 00000000..cefdef86
Binary files /dev/null and b/static/icons/06003913.png differ
diff --git a/static/icons/06003914.png b/static/icons/06003914.png
new file mode 100755
index 00000000..b5d6eaa3
Binary files /dev/null and b/static/icons/06003914.png differ
diff --git a/static/icons/06003915.png b/static/icons/06003915.png
new file mode 100755
index 00000000..b9762cf0
Binary files /dev/null and b/static/icons/06003915.png differ
diff --git a/static/icons/06003918.png b/static/icons/06003918.png
new file mode 100755
index 00000000..ed3813ca
Binary files /dev/null and b/static/icons/06003918.png differ
diff --git a/static/icons/0600391B.png b/static/icons/0600391B.png
new file mode 100755
index 00000000..b2dfc4a1
Binary files /dev/null and b/static/icons/0600391B.png differ
diff --git a/static/icons/0600391D.png b/static/icons/0600391D.png
new file mode 100755
index 00000000..d75b476f
Binary files /dev/null and b/static/icons/0600391D.png differ
diff --git a/static/icons/06003933.png b/static/icons/06003933.png
new file mode 100755
index 00000000..d5fd0a94
Binary files /dev/null and b/static/icons/06003933.png differ
diff --git a/static/icons/06003935.png b/static/icons/06003935.png
new file mode 100755
index 00000000..88a588ba
Binary files /dev/null and b/static/icons/06003935.png differ
diff --git a/static/icons/06003937.png b/static/icons/06003937.png
new file mode 100755
index 00000000..e51621ec
Binary files /dev/null and b/static/icons/06003937.png differ
diff --git a/static/icons/06003939.png b/static/icons/06003939.png
new file mode 100755
index 00000000..c8314413
Binary files /dev/null and b/static/icons/06003939.png differ
diff --git a/static/icons/0600393B.png b/static/icons/0600393B.png
new file mode 100755
index 00000000..3ca8df87
Binary files /dev/null and b/static/icons/0600393B.png differ
diff --git a/static/icons/0600393D.png b/static/icons/0600393D.png
new file mode 100755
index 00000000..2e4ca070
Binary files /dev/null and b/static/icons/0600393D.png differ
diff --git a/static/icons/0600393F.png b/static/icons/0600393F.png
new file mode 100755
index 00000000..7e2872ee
Binary files /dev/null and b/static/icons/0600393F.png differ
diff --git a/static/icons/06003941.png b/static/icons/06003941.png
new file mode 100755
index 00000000..e3a57049
Binary files /dev/null and b/static/icons/06003941.png differ
diff --git a/static/icons/06003943.png b/static/icons/06003943.png
new file mode 100755
index 00000000..9e2e100b
Binary files /dev/null and b/static/icons/06003943.png differ
diff --git a/static/icons/06003944.png b/static/icons/06003944.png
new file mode 100755
index 00000000..63f86d6f
Binary files /dev/null and b/static/icons/06003944.png differ
diff --git a/static/icons/06003948.png b/static/icons/06003948.png
new file mode 100755
index 00000000..d73899b1
Binary files /dev/null and b/static/icons/06003948.png differ
diff --git a/static/icons/0600394C.png b/static/icons/0600394C.png
new file mode 100755
index 00000000..21f84e2c
Binary files /dev/null and b/static/icons/0600394C.png differ
diff --git a/static/icons/0600394E.png b/static/icons/0600394E.png
new file mode 100755
index 00000000..dae2a277
Binary files /dev/null and b/static/icons/0600394E.png differ
diff --git a/static/icons/0600394F.png b/static/icons/0600394F.png
new file mode 100755
index 00000000..977786d2
Binary files /dev/null and b/static/icons/0600394F.png differ
diff --git a/static/icons/06003951.png b/static/icons/06003951.png
new file mode 100755
index 00000000..4b538b37
Binary files /dev/null and b/static/icons/06003951.png differ
diff --git a/static/icons/06003953.png b/static/icons/06003953.png
new file mode 100755
index 00000000..aae6e999
Binary files /dev/null and b/static/icons/06003953.png differ
diff --git a/static/icons/06003955.png b/static/icons/06003955.png
new file mode 100755
index 00000000..2d740f55
Binary files /dev/null and b/static/icons/06003955.png differ
diff --git a/static/icons/06003957.png b/static/icons/06003957.png
new file mode 100755
index 00000000..0a7633f2
Binary files /dev/null and b/static/icons/06003957.png differ
diff --git a/static/icons/06003959.png b/static/icons/06003959.png
new file mode 100755
index 00000000..49701a25
Binary files /dev/null and b/static/icons/06003959.png differ
diff --git a/static/icons/0600395B.png b/static/icons/0600395B.png
new file mode 100755
index 00000000..817082e5
Binary files /dev/null and b/static/icons/0600395B.png differ
diff --git a/static/icons/0600395D.png b/static/icons/0600395D.png
new file mode 100755
index 00000000..c337a9fc
Binary files /dev/null and b/static/icons/0600395D.png differ
diff --git a/static/icons/0600395F.png b/static/icons/0600395F.png
new file mode 100755
index 00000000..88c3bb11
Binary files /dev/null and b/static/icons/0600395F.png differ
diff --git a/static/icons/06003961.png b/static/icons/06003961.png
new file mode 100755
index 00000000..d25441e4
Binary files /dev/null and b/static/icons/06003961.png differ
diff --git a/static/icons/06003963.png b/static/icons/06003963.png
new file mode 100755
index 00000000..43bc7c31
Binary files /dev/null and b/static/icons/06003963.png differ
diff --git a/static/icons/06003965.png b/static/icons/06003965.png
new file mode 100755
index 00000000..10e90dc4
Binary files /dev/null and b/static/icons/06003965.png differ
diff --git a/static/icons/06003968.png b/static/icons/06003968.png
new file mode 100755
index 00000000..68f6bc43
Binary files /dev/null and b/static/icons/06003968.png differ
diff --git a/static/icons/0600396A.png b/static/icons/0600396A.png
new file mode 100755
index 00000000..2ed7d29e
Binary files /dev/null and b/static/icons/0600396A.png differ
diff --git a/static/icons/0600396B.png b/static/icons/0600396B.png
new file mode 100755
index 00000000..6dcf7798
Binary files /dev/null and b/static/icons/0600396B.png differ
diff --git a/static/icons/0600396C.png b/static/icons/0600396C.png
new file mode 100755
index 00000000..4a2e3b6f
Binary files /dev/null and b/static/icons/0600396C.png differ
diff --git a/static/icons/0600396E.png b/static/icons/0600396E.png
new file mode 100755
index 00000000..148a1d6a
Binary files /dev/null and b/static/icons/0600396E.png differ
diff --git a/static/icons/06003971.png b/static/icons/06003971.png
new file mode 100755
index 00000000..751bd798
Binary files /dev/null and b/static/icons/06003971.png differ
diff --git a/static/icons/06003973.png b/static/icons/06003973.png
new file mode 100755
index 00000000..0f0c535e
Binary files /dev/null and b/static/icons/06003973.png differ
diff --git a/static/icons/06003975.png b/static/icons/06003975.png
new file mode 100755
index 00000000..f2b6fbfd
Binary files /dev/null and b/static/icons/06003975.png differ
diff --git a/static/icons/06003977.png b/static/icons/06003977.png
new file mode 100755
index 00000000..82b071a3
Binary files /dev/null and b/static/icons/06003977.png differ
diff --git a/static/icons/06003978.png b/static/icons/06003978.png
new file mode 100755
index 00000000..9c25bb2a
Binary files /dev/null and b/static/icons/06003978.png differ
diff --git a/static/icons/0600397B.png b/static/icons/0600397B.png
new file mode 100755
index 00000000..00d6e0f3
Binary files /dev/null and b/static/icons/0600397B.png differ
diff --git a/static/icons/0600397D.png b/static/icons/0600397D.png
new file mode 100755
index 00000000..146bd0af
Binary files /dev/null and b/static/icons/0600397D.png differ
diff --git a/static/icons/0600397F.png b/static/icons/0600397F.png
new file mode 100755
index 00000000..e43db16a
Binary files /dev/null and b/static/icons/0600397F.png differ
diff --git a/static/icons/06003981.png b/static/icons/06003981.png
new file mode 100755
index 00000000..f55b1a89
Binary files /dev/null and b/static/icons/06003981.png differ
diff --git a/static/icons/06003983.png b/static/icons/06003983.png
new file mode 100755
index 00000000..cc562dd4
Binary files /dev/null and b/static/icons/06003983.png differ
diff --git a/static/icons/06003985.png b/static/icons/06003985.png
new file mode 100755
index 00000000..8bc5db36
Binary files /dev/null and b/static/icons/06003985.png differ
diff --git a/static/icons/06003987.png b/static/icons/06003987.png
new file mode 100755
index 00000000..1cb1ad86
Binary files /dev/null and b/static/icons/06003987.png differ
diff --git a/static/icons/06003989.png b/static/icons/06003989.png
new file mode 100755
index 00000000..6b753d61
Binary files /dev/null and b/static/icons/06003989.png differ
diff --git a/static/icons/0600398B.png b/static/icons/0600398B.png
new file mode 100755
index 00000000..07034350
Binary files /dev/null and b/static/icons/0600398B.png differ
diff --git a/static/icons/0600398D.png b/static/icons/0600398D.png
new file mode 100755
index 00000000..20d5e2ea
Binary files /dev/null and b/static/icons/0600398D.png differ
diff --git a/static/icons/0600398F.png b/static/icons/0600398F.png
new file mode 100755
index 00000000..f6bf1b19
Binary files /dev/null and b/static/icons/0600398F.png differ
diff --git a/static/icons/06003991.png b/static/icons/06003991.png
new file mode 100755
index 00000000..e6ae5976
Binary files /dev/null and b/static/icons/06003991.png differ
diff --git a/static/icons/06003993.png b/static/icons/06003993.png
new file mode 100755
index 00000000..a05a583f
Binary files /dev/null and b/static/icons/06003993.png differ
diff --git a/static/icons/06003995.png b/static/icons/06003995.png
new file mode 100755
index 00000000..9488d085
Binary files /dev/null and b/static/icons/06003995.png differ
diff --git a/static/icons/06003997.png b/static/icons/06003997.png
new file mode 100755
index 00000000..66a4f9dd
Binary files /dev/null and b/static/icons/06003997.png differ
diff --git a/static/icons/06003999.png b/static/icons/06003999.png
new file mode 100755
index 00000000..375af3e2
Binary files /dev/null and b/static/icons/06003999.png differ
diff --git a/static/icons/0600399B.png b/static/icons/0600399B.png
new file mode 100755
index 00000000..d72a5418
Binary files /dev/null and b/static/icons/0600399B.png differ
diff --git a/static/icons/0600399D.png b/static/icons/0600399D.png
new file mode 100755
index 00000000..a7ae7cd8
Binary files /dev/null and b/static/icons/0600399D.png differ
diff --git a/static/icons/0600399F.png b/static/icons/0600399F.png
new file mode 100755
index 00000000..48cca317
Binary files /dev/null and b/static/icons/0600399F.png differ
diff --git a/static/icons/060039A1.png b/static/icons/060039A1.png
new file mode 100755
index 00000000..000b321d
Binary files /dev/null and b/static/icons/060039A1.png differ
diff --git a/static/icons/060039A3.png b/static/icons/060039A3.png
new file mode 100755
index 00000000..a1996b2a
Binary files /dev/null and b/static/icons/060039A3.png differ
diff --git a/static/icons/060039A5.png b/static/icons/060039A5.png
new file mode 100755
index 00000000..33951ce6
Binary files /dev/null and b/static/icons/060039A5.png differ
diff --git a/static/icons/060039A7.png b/static/icons/060039A7.png
new file mode 100755
index 00000000..93981bfd
Binary files /dev/null and b/static/icons/060039A7.png differ
diff --git a/static/icons/060039A9.png b/static/icons/060039A9.png
new file mode 100755
index 00000000..33951ce6
Binary files /dev/null and b/static/icons/060039A9.png differ
diff --git a/static/icons/060039AB.png b/static/icons/060039AB.png
new file mode 100755
index 00000000..f975ba24
Binary files /dev/null and b/static/icons/060039AB.png differ
diff --git a/static/icons/060039AD.png b/static/icons/060039AD.png
new file mode 100755
index 00000000..540f40c9
Binary files /dev/null and b/static/icons/060039AD.png differ
diff --git a/static/icons/060039AF.png b/static/icons/060039AF.png
new file mode 100755
index 00000000..1256ba8c
Binary files /dev/null and b/static/icons/060039AF.png differ
diff --git a/static/icons/060039B1.png b/static/icons/060039B1.png
new file mode 100755
index 00000000..ec9bd30b
Binary files /dev/null and b/static/icons/060039B1.png differ
diff --git a/static/icons/060039B3.png b/static/icons/060039B3.png
new file mode 100755
index 00000000..74be8cf9
Binary files /dev/null and b/static/icons/060039B3.png differ
diff --git a/static/icons/060039B5.png b/static/icons/060039B5.png
new file mode 100755
index 00000000..d6c777c1
Binary files /dev/null and b/static/icons/060039B5.png differ
diff --git a/static/icons/060039B7.png b/static/icons/060039B7.png
new file mode 100755
index 00000000..36fdee9d
Binary files /dev/null and b/static/icons/060039B7.png differ
diff --git a/static/icons/060039B9.png b/static/icons/060039B9.png
new file mode 100755
index 00000000..c5865f3c
Binary files /dev/null and b/static/icons/060039B9.png differ
diff --git a/static/icons/060039BB.png b/static/icons/060039BB.png
new file mode 100755
index 00000000..7d95c57c
Binary files /dev/null and b/static/icons/060039BB.png differ
diff --git a/static/icons/060039BD.png b/static/icons/060039BD.png
new file mode 100755
index 00000000..ea0710ba
Binary files /dev/null and b/static/icons/060039BD.png differ
diff --git a/static/icons/060039BF.png b/static/icons/060039BF.png
new file mode 100755
index 00000000..4cd629aa
Binary files /dev/null and b/static/icons/060039BF.png differ
diff --git a/static/icons/060039C1.png b/static/icons/060039C1.png
new file mode 100755
index 00000000..a5009a7f
Binary files /dev/null and b/static/icons/060039C1.png differ
diff --git a/static/icons/060039C3.png b/static/icons/060039C3.png
new file mode 100755
index 00000000..07f66b5e
Binary files /dev/null and b/static/icons/060039C3.png differ
diff --git a/static/icons/060039C5.png b/static/icons/060039C5.png
new file mode 100755
index 00000000..08ff6c66
Binary files /dev/null and b/static/icons/060039C5.png differ
diff --git a/static/icons/060039C7.png b/static/icons/060039C7.png
new file mode 100755
index 00000000..67c76726
Binary files /dev/null and b/static/icons/060039C7.png differ
diff --git a/static/icons/060039C9.png b/static/icons/060039C9.png
new file mode 100755
index 00000000..4309d136
Binary files /dev/null and b/static/icons/060039C9.png differ
diff --git a/static/icons/060039CB.png b/static/icons/060039CB.png
new file mode 100755
index 00000000..9b3ed79b
Binary files /dev/null and b/static/icons/060039CB.png differ
diff --git a/static/icons/060039CD.png b/static/icons/060039CD.png
new file mode 100755
index 00000000..866cbcc2
Binary files /dev/null and b/static/icons/060039CD.png differ
diff --git a/static/icons/060039CE.png b/static/icons/060039CE.png
new file mode 100755
index 00000000..49c4599f
Binary files /dev/null and b/static/icons/060039CE.png differ
diff --git a/static/icons/060039D0.png b/static/icons/060039D0.png
new file mode 100755
index 00000000..6cdd93be
Binary files /dev/null and b/static/icons/060039D0.png differ
diff --git a/static/icons/060039F2.png b/static/icons/060039F2.png
new file mode 100755
index 00000000..a2dfefe9
Binary files /dev/null and b/static/icons/060039F2.png differ
diff --git a/static/icons/060039F5.png b/static/icons/060039F5.png
new file mode 100755
index 00000000..2c96d3e4
Binary files /dev/null and b/static/icons/060039F5.png differ
diff --git a/static/icons/06003A17.png b/static/icons/06003A17.png
new file mode 100755
index 00000000..a04560d9
Binary files /dev/null and b/static/icons/06003A17.png differ
diff --git a/static/icons/06003A1E.png b/static/icons/06003A1E.png
new file mode 100755
index 00000000..232ef576
Binary files /dev/null and b/static/icons/06003A1E.png differ
diff --git a/static/icons/06003A22.png b/static/icons/06003A22.png
new file mode 100755
index 00000000..70daf390
Binary files /dev/null and b/static/icons/06003A22.png differ
diff --git a/static/icons/06003A23.png b/static/icons/06003A23.png
new file mode 100755
index 00000000..65622b23
Binary files /dev/null and b/static/icons/06003A23.png differ
diff --git a/static/icons/06003A25.png b/static/icons/06003A25.png
new file mode 100755
index 00000000..189cafbe
Binary files /dev/null and b/static/icons/06003A25.png differ
diff --git a/static/icons/06003A27.png b/static/icons/06003A27.png
new file mode 100755
index 00000000..b248a3ba
Binary files /dev/null and b/static/icons/06003A27.png differ
diff --git a/static/icons/06003A29.png b/static/icons/06003A29.png
new file mode 100755
index 00000000..fda6d000
Binary files /dev/null and b/static/icons/06003A29.png differ
diff --git a/static/icons/06003A2B.png b/static/icons/06003A2B.png
new file mode 100755
index 00000000..0acd1c9c
Binary files /dev/null and b/static/icons/06003A2B.png differ
diff --git a/static/icons/06003A2D.png b/static/icons/06003A2D.png
new file mode 100755
index 00000000..e3aef03c
Binary files /dev/null and b/static/icons/06003A2D.png differ
diff --git a/static/icons/06003A2F.png b/static/icons/06003A2F.png
new file mode 100755
index 00000000..882aaa2f
Binary files /dev/null and b/static/icons/06003A2F.png differ
diff --git a/static/icons/06003A31.png b/static/icons/06003A31.png
new file mode 100755
index 00000000..56710155
Binary files /dev/null and b/static/icons/06003A31.png differ
diff --git a/static/icons/06003A55.png b/static/icons/06003A55.png
new file mode 100755
index 00000000..70418171
Binary files /dev/null and b/static/icons/06003A55.png differ
diff --git a/static/icons/06003A57.png b/static/icons/06003A57.png
new file mode 100755
index 00000000..1a4eebfb
Binary files /dev/null and b/static/icons/06003A57.png differ
diff --git a/static/icons/06003A59.png b/static/icons/06003A59.png
new file mode 100755
index 00000000..bff221e2
Binary files /dev/null and b/static/icons/06003A59.png differ
diff --git a/static/icons/06003A5B.png b/static/icons/06003A5B.png
new file mode 100755
index 00000000..57a6e19a
Binary files /dev/null and b/static/icons/06003A5B.png differ
diff --git a/static/icons/06003A68.png b/static/icons/06003A68.png
new file mode 100755
index 00000000..d80cd2c7
Binary files /dev/null and b/static/icons/06003A68.png differ
diff --git a/static/icons/06003A6A.png b/static/icons/06003A6A.png
new file mode 100755
index 00000000..601a6bf6
Binary files /dev/null and b/static/icons/06003A6A.png differ
diff --git a/static/icons/06003A6C.png b/static/icons/06003A6C.png
new file mode 100755
index 00000000..1b1d7458
Binary files /dev/null and b/static/icons/06003A6C.png differ
diff --git a/static/icons/06003A7F.png b/static/icons/06003A7F.png
new file mode 100755
index 00000000..7e33532f
Binary files /dev/null and b/static/icons/06003A7F.png differ
diff --git a/static/icons/06003A81.png b/static/icons/06003A81.png
new file mode 100755
index 00000000..622b531f
Binary files /dev/null and b/static/icons/06003A81.png differ
diff --git a/static/icons/06003A83.png b/static/icons/06003A83.png
new file mode 100755
index 00000000..eec98b18
Binary files /dev/null and b/static/icons/06003A83.png differ
diff --git a/static/icons/06003AB0.png b/static/icons/06003AB0.png
new file mode 100755
index 00000000..3ca93376
Binary files /dev/null and b/static/icons/06003AB0.png differ
diff --git a/static/icons/06003AB2.png b/static/icons/06003AB2.png
new file mode 100755
index 00000000..801fa955
Binary files /dev/null and b/static/icons/06003AB2.png differ
diff --git a/static/icons/06003AB4.png b/static/icons/06003AB4.png
new file mode 100755
index 00000000..28ab97cb
Binary files /dev/null and b/static/icons/06003AB4.png differ
diff --git a/static/icons/06003AB6.png b/static/icons/06003AB6.png
new file mode 100755
index 00000000..31b1bff6
Binary files /dev/null and b/static/icons/06003AB6.png differ
diff --git a/static/icons/06003AC0.png b/static/icons/06003AC0.png
new file mode 100755
index 00000000..3ad5343f
Binary files /dev/null and b/static/icons/06003AC0.png differ
diff --git a/static/icons/06003AC4.png b/static/icons/06003AC4.png
new file mode 100755
index 00000000..d09da953
Binary files /dev/null and b/static/icons/06003AC4.png differ
diff --git a/static/icons/06003AC6.png b/static/icons/06003AC6.png
new file mode 100755
index 00000000..9f2e2ec9
Binary files /dev/null and b/static/icons/06003AC6.png differ
diff --git a/static/icons/06003ACE.png b/static/icons/06003ACE.png
new file mode 100755
index 00000000..741f693c
Binary files /dev/null and b/static/icons/06003ACE.png differ
diff --git a/static/icons/06003AD0.png b/static/icons/06003AD0.png
new file mode 100755
index 00000000..30a20adb
Binary files /dev/null and b/static/icons/06003AD0.png differ
diff --git a/static/icons/06003AD2.png b/static/icons/06003AD2.png
new file mode 100755
index 00000000..2d6818bc
Binary files /dev/null and b/static/icons/06003AD2.png differ
diff --git a/static/icons/06003AD4.png b/static/icons/06003AD4.png
new file mode 100755
index 00000000..ad75305f
Binary files /dev/null and b/static/icons/06003AD4.png differ
diff --git a/static/icons/06003AD6.png b/static/icons/06003AD6.png
new file mode 100755
index 00000000..437918bc
Binary files /dev/null and b/static/icons/06003AD6.png differ
diff --git a/static/icons/06003AD8.png b/static/icons/06003AD8.png
new file mode 100755
index 00000000..ac5c18e1
Binary files /dev/null and b/static/icons/06003AD8.png differ
diff --git a/static/icons/06003ADA.png b/static/icons/06003ADA.png
new file mode 100755
index 00000000..09b334d8
Binary files /dev/null and b/static/icons/06003ADA.png differ
diff --git a/static/icons/06003AE9.png b/static/icons/06003AE9.png
new file mode 100755
index 00000000..57e01d43
Binary files /dev/null and b/static/icons/06003AE9.png differ
diff --git a/static/icons/06003AEB.png b/static/icons/06003AEB.png
new file mode 100755
index 00000000..99f4538a
Binary files /dev/null and b/static/icons/06003AEB.png differ
diff --git a/static/icons/06003AED.png b/static/icons/06003AED.png
new file mode 100755
index 00000000..868a28d2
Binary files /dev/null and b/static/icons/06003AED.png differ
diff --git a/static/icons/06003AEF.png b/static/icons/06003AEF.png
new file mode 100755
index 00000000..b67f04a6
Binary files /dev/null and b/static/icons/06003AEF.png differ
diff --git a/static/icons/06003AF1.png b/static/icons/06003AF1.png
new file mode 100755
index 00000000..edb6a14a
Binary files /dev/null and b/static/icons/06003AF1.png differ
diff --git a/static/icons/06003AF3.png b/static/icons/06003AF3.png
new file mode 100755
index 00000000..4087216e
Binary files /dev/null and b/static/icons/06003AF3.png differ
diff --git a/static/icons/06003AF5.png b/static/icons/06003AF5.png
new file mode 100755
index 00000000..9892814c
Binary files /dev/null and b/static/icons/06003AF5.png differ
diff --git a/static/icons/06003AF7.png b/static/icons/06003AF7.png
new file mode 100755
index 00000000..dc13d163
Binary files /dev/null and b/static/icons/06003AF7.png differ
diff --git a/static/icons/06003AF9.png b/static/icons/06003AF9.png
new file mode 100755
index 00000000..654ada39
Binary files /dev/null and b/static/icons/06003AF9.png differ
diff --git a/static/icons/06003AFB.png b/static/icons/06003AFB.png
new file mode 100755
index 00000000..6a418d33
Binary files /dev/null and b/static/icons/06003AFB.png differ
diff --git a/static/icons/06003AFD.png b/static/icons/06003AFD.png
new file mode 100755
index 00000000..ac7534a1
Binary files /dev/null and b/static/icons/06003AFD.png differ
diff --git a/static/icons/06003AFF.png b/static/icons/06003AFF.png
new file mode 100755
index 00000000..ab0d5cd8
Binary files /dev/null and b/static/icons/06003AFF.png differ
diff --git a/static/icons/06003B01.png b/static/icons/06003B01.png
new file mode 100755
index 00000000..f63fe28d
Binary files /dev/null and b/static/icons/06003B01.png differ
diff --git a/static/icons/06003B03.png b/static/icons/06003B03.png
new file mode 100755
index 00000000..656f116f
Binary files /dev/null and b/static/icons/06003B03.png differ
diff --git a/static/icons/06003B05.png b/static/icons/06003B05.png
new file mode 100755
index 00000000..37d88515
Binary files /dev/null and b/static/icons/06003B05.png differ
diff --git a/static/icons/06003B07.png b/static/icons/06003B07.png
new file mode 100755
index 00000000..ffe14832
Binary files /dev/null and b/static/icons/06003B07.png differ
diff --git a/static/icons/06003B09.png b/static/icons/06003B09.png
new file mode 100755
index 00000000..f0a37882
Binary files /dev/null and b/static/icons/06003B09.png differ
diff --git a/static/icons/06003B0B.png b/static/icons/06003B0B.png
new file mode 100755
index 00000000..24651457
Binary files /dev/null and b/static/icons/06003B0B.png differ
diff --git a/static/icons/06003B0D.png b/static/icons/06003B0D.png
new file mode 100755
index 00000000..d8a09c6c
Binary files /dev/null and b/static/icons/06003B0D.png differ
diff --git a/static/icons/06003B0F.png b/static/icons/06003B0F.png
new file mode 100755
index 00000000..ff497445
Binary files /dev/null and b/static/icons/06003B0F.png differ
diff --git a/static/icons/06003B11.png b/static/icons/06003B11.png
new file mode 100755
index 00000000..b8685b77
Binary files /dev/null and b/static/icons/06003B11.png differ
diff --git a/static/icons/06003B13.png b/static/icons/06003B13.png
new file mode 100755
index 00000000..5dcc3726
Binary files /dev/null and b/static/icons/06003B13.png differ
diff --git a/static/icons/06003B15.png b/static/icons/06003B15.png
new file mode 100755
index 00000000..8b675d5d
Binary files /dev/null and b/static/icons/06003B15.png differ
diff --git a/static/icons/06003B16.png b/static/icons/06003B16.png
new file mode 100755
index 00000000..3ee7ce46
Binary files /dev/null and b/static/icons/06003B16.png differ
diff --git a/static/icons/06003B18.png b/static/icons/06003B18.png
new file mode 100755
index 00000000..225b130e
Binary files /dev/null and b/static/icons/06003B18.png differ
diff --git a/static/icons/06003B1C.png b/static/icons/06003B1C.png
new file mode 100755
index 00000000..11bbd9c1
Binary files /dev/null and b/static/icons/06003B1C.png differ
diff --git a/static/icons/06003B1E.png b/static/icons/06003B1E.png
new file mode 100755
index 00000000..636b55b7
Binary files /dev/null and b/static/icons/06003B1E.png differ
diff --git a/static/icons/06003B20.png b/static/icons/06003B20.png
new file mode 100755
index 00000000..c19dd777
Binary files /dev/null and b/static/icons/06003B20.png differ
diff --git a/static/icons/06003B22.png b/static/icons/06003B22.png
new file mode 100755
index 00000000..2ece12e2
Binary files /dev/null and b/static/icons/06003B22.png differ
diff --git a/static/icons/06003B24.png b/static/icons/06003B24.png
new file mode 100755
index 00000000..4b66646c
Binary files /dev/null and b/static/icons/06003B24.png differ
diff --git a/static/icons/06003B26.png b/static/icons/06003B26.png
new file mode 100755
index 00000000..9169b82e
Binary files /dev/null and b/static/icons/06003B26.png differ
diff --git a/static/icons/06003B28.png b/static/icons/06003B28.png
new file mode 100755
index 00000000..731360a1
Binary files /dev/null and b/static/icons/06003B28.png differ
diff --git a/static/icons/06003B2C.png b/static/icons/06003B2C.png
new file mode 100755
index 00000000..24f39022
Binary files /dev/null and b/static/icons/06003B2C.png differ
diff --git a/static/icons/06003B2E.png b/static/icons/06003B2E.png
new file mode 100755
index 00000000..0c8fee35
Binary files /dev/null and b/static/icons/06003B2E.png differ
diff --git a/static/icons/06003B30.png b/static/icons/06003B30.png
new file mode 100755
index 00000000..f9393673
Binary files /dev/null and b/static/icons/06003B30.png differ
diff --git a/static/icons/06003B32.png b/static/icons/06003B32.png
new file mode 100755
index 00000000..3e028874
Binary files /dev/null and b/static/icons/06003B32.png differ
diff --git a/static/icons/06003B34.png b/static/icons/06003B34.png
new file mode 100755
index 00000000..9ada146b
Binary files /dev/null and b/static/icons/06003B34.png differ
diff --git a/static/icons/06003B36.png b/static/icons/06003B36.png
new file mode 100755
index 00000000..70c31849
Binary files /dev/null and b/static/icons/06003B36.png differ
diff --git a/static/icons/06003B4E.png b/static/icons/06003B4E.png
new file mode 100755
index 00000000..c3dd6dc1
Binary files /dev/null and b/static/icons/06003B4E.png differ
diff --git a/static/icons/06003B63.png b/static/icons/06003B63.png
new file mode 100755
index 00000000..4a3f2349
Binary files /dev/null and b/static/icons/06003B63.png differ
diff --git a/static/icons/06003B8E.png b/static/icons/06003B8E.png
new file mode 100755
index 00000000..c9c0a84d
Binary files /dev/null and b/static/icons/06003B8E.png differ
diff --git a/static/icons/06003B90.png b/static/icons/06003B90.png
new file mode 100755
index 00000000..05ff7760
Binary files /dev/null and b/static/icons/06003B90.png differ
diff --git a/static/icons/06003B92.png b/static/icons/06003B92.png
new file mode 100755
index 00000000..f5be6bde
Binary files /dev/null and b/static/icons/06003B92.png differ
diff --git a/static/icons/06003B98.png b/static/icons/06003B98.png
new file mode 100755
index 00000000..88fb0fbc
Binary files /dev/null and b/static/icons/06003B98.png differ
diff --git a/static/icons/06003BC7.png b/static/icons/06003BC7.png
new file mode 100755
index 00000000..79c57b90
Binary files /dev/null and b/static/icons/06003BC7.png differ
diff --git a/static/icons/06003BC9.png b/static/icons/06003BC9.png
new file mode 100755
index 00000000..07530b02
Binary files /dev/null and b/static/icons/06003BC9.png differ
diff --git a/static/icons/06003BCB.png b/static/icons/06003BCB.png
new file mode 100755
index 00000000..ce172282
Binary files /dev/null and b/static/icons/06003BCB.png differ
diff --git a/static/icons/06003BD1.png b/static/icons/06003BD1.png
new file mode 100755
index 00000000..b097454a
Binary files /dev/null and b/static/icons/06003BD1.png differ
diff --git a/static/icons/06003BD3.png b/static/icons/06003BD3.png
new file mode 100755
index 00000000..fc6c6ca3
Binary files /dev/null and b/static/icons/06003BD3.png differ
diff --git a/static/icons/06003BD5.png b/static/icons/06003BD5.png
new file mode 100755
index 00000000..1e0ce6ce
Binary files /dev/null and b/static/icons/06003BD5.png differ
diff --git a/static/icons/06003BD7.png b/static/icons/06003BD7.png
new file mode 100755
index 00000000..2b700951
Binary files /dev/null and b/static/icons/06003BD7.png differ
diff --git a/static/icons/06003BD9.png b/static/icons/06003BD9.png
new file mode 100755
index 00000000..eac2893d
Binary files /dev/null and b/static/icons/06003BD9.png differ
diff --git a/static/icons/06003BDB.png b/static/icons/06003BDB.png
new file mode 100755
index 00000000..ecb4db7c
Binary files /dev/null and b/static/icons/06003BDB.png differ
diff --git a/static/icons/06003BE3.png b/static/icons/06003BE3.png
new file mode 100755
index 00000000..b1da43b2
Binary files /dev/null and b/static/icons/06003BE3.png differ
diff --git a/static/icons/06003BE5.png b/static/icons/06003BE5.png
new file mode 100755
index 00000000..82b07280
Binary files /dev/null and b/static/icons/06003BE5.png differ
diff --git a/static/icons/06003BE6.png b/static/icons/06003BE6.png
new file mode 100755
index 00000000..5f5827ff
Binary files /dev/null and b/static/icons/06003BE6.png differ
diff --git a/static/icons/06003BE8.png b/static/icons/06003BE8.png
new file mode 100755
index 00000000..8af36c69
Binary files /dev/null and b/static/icons/06003BE8.png differ
diff --git a/static/icons/06003BEA.png b/static/icons/06003BEA.png
new file mode 100755
index 00000000..f8b8ac01
Binary files /dev/null and b/static/icons/06003BEA.png differ
diff --git a/static/icons/06003BEC.png b/static/icons/06003BEC.png
new file mode 100755
index 00000000..47c83981
Binary files /dev/null and b/static/icons/06003BEC.png differ
diff --git a/static/icons/06003BEE.png b/static/icons/06003BEE.png
new file mode 100755
index 00000000..26f7b8e5
Binary files /dev/null and b/static/icons/06003BEE.png differ
diff --git a/static/icons/06003BF0.png b/static/icons/06003BF0.png
new file mode 100755
index 00000000..8eb47a09
Binary files /dev/null and b/static/icons/06003BF0.png differ
diff --git a/static/icons/06003BF2.png b/static/icons/06003BF2.png
new file mode 100755
index 00000000..c05f88c6
Binary files /dev/null and b/static/icons/06003BF2.png differ
diff --git a/static/icons/06003BF4.png b/static/icons/06003BF4.png
new file mode 100755
index 00000000..f445d1f5
Binary files /dev/null and b/static/icons/06003BF4.png differ
diff --git a/static/icons/06003BF6.png b/static/icons/06003BF6.png
new file mode 100755
index 00000000..018f7545
Binary files /dev/null and b/static/icons/06003BF6.png differ
diff --git a/static/icons/06003BF8.png b/static/icons/06003BF8.png
new file mode 100755
index 00000000..183bef40
Binary files /dev/null and b/static/icons/06003BF8.png differ
diff --git a/static/icons/06003BFA.png b/static/icons/06003BFA.png
new file mode 100755
index 00000000..6c0906ea
Binary files /dev/null and b/static/icons/06003BFA.png differ
diff --git a/static/icons/06003BFB.png b/static/icons/06003BFB.png
new file mode 100755
index 00000000..f894a5b9
Binary files /dev/null and b/static/icons/06003BFB.png differ
diff --git a/static/icons/06003BFD.png b/static/icons/06003BFD.png
new file mode 100755
index 00000000..6f9d8312
Binary files /dev/null and b/static/icons/06003BFD.png differ
diff --git a/static/icons/06003BFF.png b/static/icons/06003BFF.png
new file mode 100755
index 00000000..6a8ab64c
Binary files /dev/null and b/static/icons/06003BFF.png differ
diff --git a/static/icons/06003C00.png b/static/icons/06003C00.png
new file mode 100755
index 00000000..654000fc
Binary files /dev/null and b/static/icons/06003C00.png differ
diff --git a/static/icons/06003C02.png b/static/icons/06003C02.png
new file mode 100755
index 00000000..9968d36c
Binary files /dev/null and b/static/icons/06003C02.png differ
diff --git a/static/icons/06003C04.png b/static/icons/06003C04.png
new file mode 100755
index 00000000..29aac4f1
Binary files /dev/null and b/static/icons/06003C04.png differ
diff --git a/static/icons/06003C05.png b/static/icons/06003C05.png
new file mode 100755
index 00000000..000d96b0
Binary files /dev/null and b/static/icons/06003C05.png differ
diff --git a/static/icons/06003C07.png b/static/icons/06003C07.png
new file mode 100755
index 00000000..b7cfe665
Binary files /dev/null and b/static/icons/06003C07.png differ
diff --git a/static/icons/06003C09.png b/static/icons/06003C09.png
new file mode 100755
index 00000000..68ccffe4
Binary files /dev/null and b/static/icons/06003C09.png differ
diff --git a/static/icons/06003C0A.png b/static/icons/06003C0A.png
new file mode 100755
index 00000000..7847d8eb
Binary files /dev/null and b/static/icons/06003C0A.png differ
diff --git a/static/icons/06003C0C.png b/static/icons/06003C0C.png
new file mode 100755
index 00000000..f49017c0
Binary files /dev/null and b/static/icons/06003C0C.png differ
diff --git a/static/icons/06003C0E.png b/static/icons/06003C0E.png
new file mode 100755
index 00000000..b4815e98
Binary files /dev/null and b/static/icons/06003C0E.png differ
diff --git a/static/icons/06003C11.png b/static/icons/06003C11.png
new file mode 100755
index 00000000..4099154c
Binary files /dev/null and b/static/icons/06003C11.png differ
diff --git a/static/icons/06003C13.png b/static/icons/06003C13.png
new file mode 100755
index 00000000..a236bc3b
Binary files /dev/null and b/static/icons/06003C13.png differ
diff --git a/static/icons/06003C15.png b/static/icons/06003C15.png
new file mode 100755
index 00000000..769dec3e
Binary files /dev/null and b/static/icons/06003C15.png differ
diff --git a/static/icons/06003C18.png b/static/icons/06003C18.png
new file mode 100755
index 00000000..b63b54dc
Binary files /dev/null and b/static/icons/06003C18.png differ
diff --git a/static/icons/06003C1A.png b/static/icons/06003C1A.png
new file mode 100755
index 00000000..4b34d088
Binary files /dev/null and b/static/icons/06003C1A.png differ
diff --git a/static/icons/06003C1D.png b/static/icons/06003C1D.png
new file mode 100755
index 00000000..302f815e
Binary files /dev/null and b/static/icons/06003C1D.png differ
diff --git a/static/icons/06003C21.png b/static/icons/06003C21.png
new file mode 100755
index 00000000..bfc7265b
Binary files /dev/null and b/static/icons/06003C21.png differ
diff --git a/static/icons/06003C25.png b/static/icons/06003C25.png
new file mode 100755
index 00000000..8701ab1a
Binary files /dev/null and b/static/icons/06003C25.png differ
diff --git a/static/icons/06003C27.png b/static/icons/06003C27.png
new file mode 100755
index 00000000..25833a68
Binary files /dev/null and b/static/icons/06003C27.png differ
diff --git a/static/icons/06003C2A.png b/static/icons/06003C2A.png
new file mode 100755
index 00000000..706bff8e
Binary files /dev/null and b/static/icons/06003C2A.png differ
diff --git a/static/icons/06003C2B.png b/static/icons/06003C2B.png
new file mode 100755
index 00000000..0c7bf1ef
Binary files /dev/null and b/static/icons/06003C2B.png differ
diff --git a/static/icons/06003C2C.png b/static/icons/06003C2C.png
new file mode 100755
index 00000000..87411a7b
Binary files /dev/null and b/static/icons/06003C2C.png differ
diff --git a/static/icons/06003C2D.png b/static/icons/06003C2D.png
new file mode 100755
index 00000000..390c2487
Binary files /dev/null and b/static/icons/06003C2D.png differ
diff --git a/static/icons/06003C36.png b/static/icons/06003C36.png
new file mode 100755
index 00000000..96a1dce3
Binary files /dev/null and b/static/icons/06003C36.png differ
diff --git a/static/icons/06003C37.png b/static/icons/06003C37.png
new file mode 100755
index 00000000..b8a75603
Binary files /dev/null and b/static/icons/06003C37.png differ
diff --git a/static/icons/06003C38.png b/static/icons/06003C38.png
new file mode 100755
index 00000000..aeb961e6
Binary files /dev/null and b/static/icons/06003C38.png differ
diff --git a/static/icons/06003C39.png b/static/icons/06003C39.png
new file mode 100755
index 00000000..bdf8ee2f
Binary files /dev/null and b/static/icons/06003C39.png differ
diff --git a/static/icons/06003C3B.png b/static/icons/06003C3B.png
new file mode 100755
index 00000000..6db4f9a9
Binary files /dev/null and b/static/icons/06003C3B.png differ
diff --git a/static/icons/06003C3D.png b/static/icons/06003C3D.png
new file mode 100755
index 00000000..5046f1d1
Binary files /dev/null and b/static/icons/06003C3D.png differ
diff --git a/static/icons/06003C3E.png b/static/icons/06003C3E.png
new file mode 100755
index 00000000..6652b295
Binary files /dev/null and b/static/icons/06003C3E.png differ
diff --git a/static/icons/06003C3F.png b/static/icons/06003C3F.png
new file mode 100755
index 00000000..8169109e
Binary files /dev/null and b/static/icons/06003C3F.png differ
diff --git a/static/icons/06003C40.png b/static/icons/06003C40.png
new file mode 100755
index 00000000..824eea5b
Binary files /dev/null and b/static/icons/06003C40.png differ
diff --git a/static/icons/06003C45.png b/static/icons/06003C45.png
new file mode 100755
index 00000000..b31b4038
Binary files /dev/null and b/static/icons/06003C45.png differ
diff --git a/static/icons/06003C4A.png b/static/icons/06003C4A.png
new file mode 100755
index 00000000..c7e32bd3
Binary files /dev/null and b/static/icons/06003C4A.png differ
diff --git a/static/icons/06003C4C.png b/static/icons/06003C4C.png
new file mode 100755
index 00000000..fea33051
Binary files /dev/null and b/static/icons/06003C4C.png differ
diff --git a/static/icons/06003C4E.png b/static/icons/06003C4E.png
new file mode 100755
index 00000000..40f13e8a
Binary files /dev/null and b/static/icons/06003C4E.png differ
diff --git a/static/icons/06003C50.png b/static/icons/06003C50.png
new file mode 100755
index 00000000..a9874492
Binary files /dev/null and b/static/icons/06003C50.png differ
diff --git a/static/icons/06003C54.png b/static/icons/06003C54.png
new file mode 100755
index 00000000..59d6f55a
Binary files /dev/null and b/static/icons/06003C54.png differ
diff --git a/static/icons/06003C55.png b/static/icons/06003C55.png
new file mode 100755
index 00000000..95a26f6e
Binary files /dev/null and b/static/icons/06003C55.png differ
diff --git a/static/icons/06003C56.png b/static/icons/06003C56.png
new file mode 100755
index 00000000..0a2101ca
Binary files /dev/null and b/static/icons/06003C56.png differ
diff --git a/static/icons/06003C5E.png b/static/icons/06003C5E.png
new file mode 100755
index 00000000..e8253c8f
Binary files /dev/null and b/static/icons/06003C5E.png differ
diff --git a/static/icons/06003C7D.png b/static/icons/06003C7D.png
new file mode 100755
index 00000000..d7a9a633
Binary files /dev/null and b/static/icons/06003C7D.png differ
diff --git a/static/icons/06003C83.png b/static/icons/06003C83.png
new file mode 100755
index 00000000..a791da42
Binary files /dev/null and b/static/icons/06003C83.png differ
diff --git a/static/icons/06003C85.png b/static/icons/06003C85.png
new file mode 100755
index 00000000..8bf88ca0
Binary files /dev/null and b/static/icons/06003C85.png differ
diff --git a/static/icons/06003C87.png b/static/icons/06003C87.png
new file mode 100755
index 00000000..bb7367b1
Binary files /dev/null and b/static/icons/06003C87.png differ
diff --git a/static/icons/06003C89.png b/static/icons/06003C89.png
new file mode 100755
index 00000000..3cf9b36d
Binary files /dev/null and b/static/icons/06003C89.png differ
diff --git a/static/icons/06003C8B.png b/static/icons/06003C8B.png
new file mode 100755
index 00000000..564d4a4b
Binary files /dev/null and b/static/icons/06003C8B.png differ
diff --git a/static/icons/06003C8D.png b/static/icons/06003C8D.png
new file mode 100755
index 00000000..1b3900dc
Binary files /dev/null and b/static/icons/06003C8D.png differ
diff --git a/static/icons/06003C8F.png b/static/icons/06003C8F.png
new file mode 100755
index 00000000..624d0ce5
Binary files /dev/null and b/static/icons/06003C8F.png differ
diff --git a/static/icons/06003C92.png b/static/icons/06003C92.png
new file mode 100755
index 00000000..58fa7fac
Binary files /dev/null and b/static/icons/06003C92.png differ
diff --git a/static/icons/06003C93.png b/static/icons/06003C93.png
new file mode 100755
index 00000000..82e4dc13
Binary files /dev/null and b/static/icons/06003C93.png differ
diff --git a/static/icons/06003C96.png b/static/icons/06003C96.png
new file mode 100755
index 00000000..226ab5c4
Binary files /dev/null and b/static/icons/06003C96.png differ
diff --git a/static/icons/06003C97.png b/static/icons/06003C97.png
new file mode 100755
index 00000000..d253ad49
Binary files /dev/null and b/static/icons/06003C97.png differ
diff --git a/static/icons/06003C98.png b/static/icons/06003C98.png
new file mode 100755
index 00000000..0294adfe
Binary files /dev/null and b/static/icons/06003C98.png differ
diff --git a/static/icons/06003C9A.png b/static/icons/06003C9A.png
new file mode 100755
index 00000000..2a4b722b
Binary files /dev/null and b/static/icons/06003C9A.png differ
diff --git a/static/icons/06003C9C.png b/static/icons/06003C9C.png
new file mode 100755
index 00000000..7f8edc77
Binary files /dev/null and b/static/icons/06003C9C.png differ
diff --git a/static/icons/06003C9D.png b/static/icons/06003C9D.png
new file mode 100755
index 00000000..57d68e2c
Binary files /dev/null and b/static/icons/06003C9D.png differ
diff --git a/static/icons/06003C9E.png b/static/icons/06003C9E.png
new file mode 100755
index 00000000..f87c1023
Binary files /dev/null and b/static/icons/06003C9E.png differ
diff --git a/static/icons/06003C9F.png b/static/icons/06003C9F.png
new file mode 100755
index 00000000..0b32ba09
Binary files /dev/null and b/static/icons/06003C9F.png differ
diff --git a/static/icons/06003CA0.png b/static/icons/06003CA0.png
new file mode 100755
index 00000000..014fd980
Binary files /dev/null and b/static/icons/06003CA0.png differ
diff --git a/static/icons/06003CA1.png b/static/icons/06003CA1.png
new file mode 100755
index 00000000..549afaef
Binary files /dev/null and b/static/icons/06003CA1.png differ
diff --git a/static/icons/06003CA2.png b/static/icons/06003CA2.png
new file mode 100755
index 00000000..d07ed31e
Binary files /dev/null and b/static/icons/06003CA2.png differ
diff --git a/static/icons/06003CA3.png b/static/icons/06003CA3.png
new file mode 100755
index 00000000..03899435
Binary files /dev/null and b/static/icons/06003CA3.png differ
diff --git a/static/icons/06003CA5.png b/static/icons/06003CA5.png
new file mode 100755
index 00000000..fa3a385b
Binary files /dev/null and b/static/icons/06003CA5.png differ
diff --git a/static/icons/06003CA7.png b/static/icons/06003CA7.png
new file mode 100755
index 00000000..2c25129c
Binary files /dev/null and b/static/icons/06003CA7.png differ
diff --git a/static/icons/06003CA8.png b/static/icons/06003CA8.png
new file mode 100755
index 00000000..45869b08
Binary files /dev/null and b/static/icons/06003CA8.png differ
diff --git a/static/icons/06003CAA.png b/static/icons/06003CAA.png
new file mode 100755
index 00000000..e9f870fb
Binary files /dev/null and b/static/icons/06003CAA.png differ
diff --git a/static/icons/06003CAB.png b/static/icons/06003CAB.png
new file mode 100755
index 00000000..d7b51547
Binary files /dev/null and b/static/icons/06003CAB.png differ
diff --git a/static/icons/06003CAC.png b/static/icons/06003CAC.png
new file mode 100755
index 00000000..91c33411
Binary files /dev/null and b/static/icons/06003CAC.png differ
diff --git a/static/icons/06003CAD.png b/static/icons/06003CAD.png
new file mode 100755
index 00000000..8df7e0e7
Binary files /dev/null and b/static/icons/06003CAD.png differ
diff --git a/static/icons/06003CB3.png b/static/icons/06003CB3.png
new file mode 100755
index 00000000..e9b65ebf
Binary files /dev/null and b/static/icons/06003CB3.png differ
diff --git a/static/icons/06003CB5.png b/static/icons/06003CB5.png
new file mode 100755
index 00000000..736ca200
Binary files /dev/null and b/static/icons/06003CB5.png differ
diff --git a/static/icons/06003CB7.png b/static/icons/06003CB7.png
new file mode 100755
index 00000000..97f40e87
Binary files /dev/null and b/static/icons/06003CB7.png differ
diff --git a/static/icons/06003CB9.png b/static/icons/06003CB9.png
new file mode 100755
index 00000000..f19f6ff6
Binary files /dev/null and b/static/icons/06003CB9.png differ
diff --git a/static/icons/06003CBB.png b/static/icons/06003CBB.png
new file mode 100755
index 00000000..2358c116
Binary files /dev/null and b/static/icons/06003CBB.png differ
diff --git a/static/icons/06003CBD.png b/static/icons/06003CBD.png
new file mode 100755
index 00000000..012ebaa1
Binary files /dev/null and b/static/icons/06003CBD.png differ
diff --git a/static/icons/06003CBF.png b/static/icons/06003CBF.png
new file mode 100755
index 00000000..906f1c2f
Binary files /dev/null and b/static/icons/06003CBF.png differ
diff --git a/static/icons/06003CC1.png b/static/icons/06003CC1.png
new file mode 100755
index 00000000..18cc511f
Binary files /dev/null and b/static/icons/06003CC1.png differ
diff --git a/static/icons/06003CEF.png b/static/icons/06003CEF.png
new file mode 100755
index 00000000..a81e228f
Binary files /dev/null and b/static/icons/06003CEF.png differ
diff --git a/static/icons/06003CFA.png b/static/icons/06003CFA.png
new file mode 100755
index 00000000..7f3597a1
Binary files /dev/null and b/static/icons/06003CFA.png differ
diff --git a/static/icons/06003D0D.png b/static/icons/06003D0D.png
new file mode 100755
index 00000000..abfb4387
Binary files /dev/null and b/static/icons/06003D0D.png differ
diff --git a/static/icons/06003D0F.png b/static/icons/06003D0F.png
new file mode 100755
index 00000000..4f483b30
Binary files /dev/null and b/static/icons/06003D0F.png differ
diff --git a/static/icons/06003D11.png b/static/icons/06003D11.png
new file mode 100755
index 00000000..2ca18030
Binary files /dev/null and b/static/icons/06003D11.png differ
diff --git a/static/icons/06003D13.png b/static/icons/06003D13.png
new file mode 100755
index 00000000..66ef92b5
Binary files /dev/null and b/static/icons/06003D13.png differ
diff --git a/static/icons/06003D15.png b/static/icons/06003D15.png
new file mode 100755
index 00000000..150a094a
Binary files /dev/null and b/static/icons/06003D15.png differ
diff --git a/static/icons/06003D17.png b/static/icons/06003D17.png
new file mode 100755
index 00000000..9ae86a74
Binary files /dev/null and b/static/icons/06003D17.png differ
diff --git a/static/icons/06003D19.png b/static/icons/06003D19.png
new file mode 100755
index 00000000..d7f955c2
Binary files /dev/null and b/static/icons/06003D19.png differ
diff --git a/static/icons/06003D1B.png b/static/icons/06003D1B.png
new file mode 100755
index 00000000..fbeef95a
Binary files /dev/null and b/static/icons/06003D1B.png differ
diff --git a/static/icons/06003D1D.png b/static/icons/06003D1D.png
new file mode 100755
index 00000000..f5847142
Binary files /dev/null and b/static/icons/06003D1D.png differ
diff --git a/static/icons/06003D1F.png b/static/icons/06003D1F.png
new file mode 100755
index 00000000..6cfcfc3e
Binary files /dev/null and b/static/icons/06003D1F.png differ
diff --git a/static/icons/06003D21.png b/static/icons/06003D21.png
new file mode 100755
index 00000000..be3a619a
Binary files /dev/null and b/static/icons/06003D21.png differ
diff --git a/static/icons/06003D23.png b/static/icons/06003D23.png
new file mode 100755
index 00000000..c796072d
Binary files /dev/null and b/static/icons/06003D23.png differ
diff --git a/static/icons/06003D25.png b/static/icons/06003D25.png
new file mode 100755
index 00000000..5515ddc5
Binary files /dev/null and b/static/icons/06003D25.png differ
diff --git a/static/icons/06003D27.png b/static/icons/06003D27.png
new file mode 100755
index 00000000..5f9c360a
Binary files /dev/null and b/static/icons/06003D27.png differ
diff --git a/static/icons/06003D2A.png b/static/icons/06003D2A.png
new file mode 100755
index 00000000..46ba4769
Binary files /dev/null and b/static/icons/06003D2A.png differ
diff --git a/static/icons/06003D2C.png b/static/icons/06003D2C.png
new file mode 100755
index 00000000..ca082efd
Binary files /dev/null and b/static/icons/06003D2C.png differ
diff --git a/static/icons/06003D2E.png b/static/icons/06003D2E.png
new file mode 100755
index 00000000..b99e0674
Binary files /dev/null and b/static/icons/06003D2E.png differ
diff --git a/static/icons/06003D30.png b/static/icons/06003D30.png
new file mode 100755
index 00000000..7f4c3840
Binary files /dev/null and b/static/icons/06003D30.png differ
diff --git a/static/icons/06003D32.png b/static/icons/06003D32.png
new file mode 100755
index 00000000..bfab3d32
Binary files /dev/null and b/static/icons/06003D32.png differ
diff --git a/static/icons/06003D41.png b/static/icons/06003D41.png
new file mode 100755
index 00000000..d90c696f
Binary files /dev/null and b/static/icons/06003D41.png differ
diff --git a/static/icons/06003D42.png b/static/icons/06003D42.png
new file mode 100755
index 00000000..7e3d5819
Binary files /dev/null and b/static/icons/06003D42.png differ
diff --git a/static/icons/06003D43.png b/static/icons/06003D43.png
new file mode 100755
index 00000000..a54d27d3
Binary files /dev/null and b/static/icons/06003D43.png differ
diff --git a/static/icons/06003D44.png b/static/icons/06003D44.png
new file mode 100755
index 00000000..a88952fb
Binary files /dev/null and b/static/icons/06003D44.png differ
diff --git a/static/icons/06003D45.png b/static/icons/06003D45.png
new file mode 100755
index 00000000..ab7d09ce
Binary files /dev/null and b/static/icons/06003D45.png differ
diff --git a/static/icons/06003D46.png b/static/icons/06003D46.png
new file mode 100755
index 00000000..2ec3b424
Binary files /dev/null and b/static/icons/06003D46.png differ
diff --git a/static/icons/06003D47.png b/static/icons/06003D47.png
new file mode 100755
index 00000000..9e5509e3
Binary files /dev/null and b/static/icons/06003D47.png differ
diff --git a/static/icons/06003D49.png b/static/icons/06003D49.png
new file mode 100755
index 00000000..97c594fe
Binary files /dev/null and b/static/icons/06003D49.png differ
diff --git a/static/icons/06003D4A.png b/static/icons/06003D4A.png
new file mode 100755
index 00000000..f04ec23c
Binary files /dev/null and b/static/icons/06003D4A.png differ
diff --git a/static/icons/06003D50.png b/static/icons/06003D50.png
new file mode 100755
index 00000000..349c6e62
Binary files /dev/null and b/static/icons/06003D50.png differ
diff --git a/static/icons/06003D58.png b/static/icons/06003D58.png
new file mode 100755
index 00000000..7a39809c
Binary files /dev/null and b/static/icons/06003D58.png differ
diff --git a/static/icons/06003D5A.png b/static/icons/06003D5A.png
new file mode 100755
index 00000000..6bd75014
Binary files /dev/null and b/static/icons/06003D5A.png differ
diff --git a/static/icons/06003D5C.png b/static/icons/06003D5C.png
new file mode 100755
index 00000000..e2cf7871
Binary files /dev/null and b/static/icons/06003D5C.png differ
diff --git a/static/icons/06003D5E.png b/static/icons/06003D5E.png
new file mode 100755
index 00000000..f199ac14
Binary files /dev/null and b/static/icons/06003D5E.png differ
diff --git a/static/icons/06003D60.png b/static/icons/06003D60.png
new file mode 100755
index 00000000..b4abed8d
Binary files /dev/null and b/static/icons/06003D60.png differ
diff --git a/static/icons/06003D62.png b/static/icons/06003D62.png
new file mode 100755
index 00000000..572922c3
Binary files /dev/null and b/static/icons/06003D62.png differ
diff --git a/static/icons/06003D64.png b/static/icons/06003D64.png
new file mode 100755
index 00000000..ee030639
Binary files /dev/null and b/static/icons/06003D64.png differ
diff --git a/static/icons/06003D66.png b/static/icons/06003D66.png
new file mode 100755
index 00000000..0b318af8
Binary files /dev/null and b/static/icons/06003D66.png differ
diff --git a/static/icons/06003D68.png b/static/icons/06003D68.png
new file mode 100755
index 00000000..14f1d501
Binary files /dev/null and b/static/icons/06003D68.png differ
diff --git a/static/icons/06003D6A.png b/static/icons/06003D6A.png
new file mode 100755
index 00000000..5f6081a5
Binary files /dev/null and b/static/icons/06003D6A.png differ
diff --git a/static/icons/06003D6C.png b/static/icons/06003D6C.png
new file mode 100755
index 00000000..f77e6de4
Binary files /dev/null and b/static/icons/06003D6C.png differ
diff --git a/static/icons/06003D6E.png b/static/icons/06003D6E.png
new file mode 100755
index 00000000..a7b161b5
Binary files /dev/null and b/static/icons/06003D6E.png differ
diff --git a/static/icons/06003D70.png b/static/icons/06003D70.png
new file mode 100755
index 00000000..0e2fd0d6
Binary files /dev/null and b/static/icons/06003D70.png differ
diff --git a/static/icons/06003D72.png b/static/icons/06003D72.png
new file mode 100755
index 00000000..3f2d9a9c
Binary files /dev/null and b/static/icons/06003D72.png differ
diff --git a/static/icons/06003D74.png b/static/icons/06003D74.png
new file mode 100755
index 00000000..f415f9b7
Binary files /dev/null and b/static/icons/06003D74.png differ
diff --git a/static/icons/06003D76.png b/static/icons/06003D76.png
new file mode 100755
index 00000000..df067194
Binary files /dev/null and b/static/icons/06003D76.png differ
diff --git a/static/icons/06003D78.png b/static/icons/06003D78.png
new file mode 100755
index 00000000..6222b83c
Binary files /dev/null and b/static/icons/06003D78.png differ
diff --git a/static/icons/06003D87.png b/static/icons/06003D87.png
new file mode 100755
index 00000000..72ef4082
Binary files /dev/null and b/static/icons/06003D87.png differ
diff --git a/static/icons/06003D89.png b/static/icons/06003D89.png
new file mode 100755
index 00000000..44ac61fe
Binary files /dev/null and b/static/icons/06003D89.png differ
diff --git a/static/icons/06003D8B.png b/static/icons/06003D8B.png
new file mode 100755
index 00000000..558f5967
Binary files /dev/null and b/static/icons/06003D8B.png differ
diff --git a/static/icons/06003D8D.png b/static/icons/06003D8D.png
new file mode 100755
index 00000000..ade32eff
Binary files /dev/null and b/static/icons/06003D8D.png differ
diff --git a/static/icons/06003D8F.png b/static/icons/06003D8F.png
new file mode 100755
index 00000000..0fef0852
Binary files /dev/null and b/static/icons/06003D8F.png differ
diff --git a/static/icons/06003D91.png b/static/icons/06003D91.png
new file mode 100755
index 00000000..8a05961f
Binary files /dev/null and b/static/icons/06003D91.png differ
diff --git a/static/icons/06003D93.png b/static/icons/06003D93.png
new file mode 100755
index 00000000..4b0bfdaa
Binary files /dev/null and b/static/icons/06003D93.png differ
diff --git a/static/icons/06003D95.png b/static/icons/06003D95.png
new file mode 100755
index 00000000..b327e860
Binary files /dev/null and b/static/icons/06003D95.png differ
diff --git a/static/icons/06003D97.png b/static/icons/06003D97.png
new file mode 100755
index 00000000..f96b3be5
Binary files /dev/null and b/static/icons/06003D97.png differ
diff --git a/static/icons/06003D99.png b/static/icons/06003D99.png
new file mode 100755
index 00000000..34634865
Binary files /dev/null and b/static/icons/06003D99.png differ
diff --git a/static/icons/06003D9B.png b/static/icons/06003D9B.png
new file mode 100755
index 00000000..017dac44
Binary files /dev/null and b/static/icons/06003D9B.png differ
diff --git a/static/icons/06003D9D.png b/static/icons/06003D9D.png
new file mode 100755
index 00000000..3de3434e
Binary files /dev/null and b/static/icons/06003D9D.png differ
diff --git a/static/icons/06003D9F.png b/static/icons/06003D9F.png
new file mode 100755
index 00000000..4bf42991
Binary files /dev/null and b/static/icons/06003D9F.png differ
diff --git a/static/icons/06003DA1.png b/static/icons/06003DA1.png
new file mode 100755
index 00000000..31cc33b1
Binary files /dev/null and b/static/icons/06003DA1.png differ
diff --git a/static/icons/06003DA3.png b/static/icons/06003DA3.png
new file mode 100755
index 00000000..492e7bd1
Binary files /dev/null and b/static/icons/06003DA3.png differ
diff --git a/static/icons/06003DA5.png b/static/icons/06003DA5.png
new file mode 100755
index 00000000..31cc33b1
Binary files /dev/null and b/static/icons/06003DA5.png differ
diff --git a/static/icons/06003DA7.png b/static/icons/06003DA7.png
new file mode 100755
index 00000000..394eea79
Binary files /dev/null and b/static/icons/06003DA7.png differ
diff --git a/static/icons/06003DA9.png b/static/icons/06003DA9.png
new file mode 100755
index 00000000..b6647aac
Binary files /dev/null and b/static/icons/06003DA9.png differ
diff --git a/static/icons/06003DB0.png b/static/icons/06003DB0.png
new file mode 100755
index 00000000..97d1ef5d
Binary files /dev/null and b/static/icons/06003DB0.png differ
diff --git a/static/icons/06003DB2.png b/static/icons/06003DB2.png
new file mode 100755
index 00000000..6bd8430c
Binary files /dev/null and b/static/icons/06003DB2.png differ
diff --git a/static/icons/06003DB4.png b/static/icons/06003DB4.png
new file mode 100755
index 00000000..2b889316
Binary files /dev/null and b/static/icons/06003DB4.png differ
diff --git a/static/icons/06003DB6.png b/static/icons/06003DB6.png
new file mode 100755
index 00000000..db9d31fb
Binary files /dev/null and b/static/icons/06003DB6.png differ
diff --git a/static/icons/06003DB8.png b/static/icons/06003DB8.png
new file mode 100755
index 00000000..860337e6
Binary files /dev/null and b/static/icons/06003DB8.png differ
diff --git a/static/icons/06003DBA.png b/static/icons/06003DBA.png
new file mode 100755
index 00000000..6ed04dcc
Binary files /dev/null and b/static/icons/06003DBA.png differ
diff --git a/static/icons/06003DBC.png b/static/icons/06003DBC.png
new file mode 100755
index 00000000..2221aaef
Binary files /dev/null and b/static/icons/06003DBC.png differ
diff --git a/static/icons/06003DBD.png b/static/icons/06003DBD.png
new file mode 100755
index 00000000..c9ef014e
Binary files /dev/null and b/static/icons/06003DBD.png differ
diff --git a/static/icons/06003DC9.png b/static/icons/06003DC9.png
new file mode 100755
index 00000000..4264300f
Binary files /dev/null and b/static/icons/06003DC9.png differ
diff --git a/static/icons/06003DCB.png b/static/icons/06003DCB.png
new file mode 100755
index 00000000..7298d84d
Binary files /dev/null and b/static/icons/06003DCB.png differ
diff --git a/static/icons/06003DCD.png b/static/icons/06003DCD.png
new file mode 100755
index 00000000..e42810e1
Binary files /dev/null and b/static/icons/06003DCD.png differ
diff --git a/static/icons/06003DCF.png b/static/icons/06003DCF.png
new file mode 100755
index 00000000..c80a6cf9
Binary files /dev/null and b/static/icons/06003DCF.png differ
diff --git a/static/icons/06003DD1.png b/static/icons/06003DD1.png
new file mode 100755
index 00000000..a2366bcf
Binary files /dev/null and b/static/icons/06003DD1.png differ
diff --git a/static/icons/06003DD2.png b/static/icons/06003DD2.png
new file mode 100755
index 00000000..f6a9160e
Binary files /dev/null and b/static/icons/06003DD2.png differ
diff --git a/static/icons/06003DD5.png b/static/icons/06003DD5.png
new file mode 100755
index 00000000..70b54af2
Binary files /dev/null and b/static/icons/06003DD5.png differ
diff --git a/static/icons/06003DE9.png b/static/icons/06003DE9.png
new file mode 100755
index 00000000..711d0e66
Binary files /dev/null and b/static/icons/06003DE9.png differ
diff --git a/static/icons/06003DEB.png b/static/icons/06003DEB.png
new file mode 100755
index 00000000..3aee2cba
Binary files /dev/null and b/static/icons/06003DEB.png differ
diff --git a/static/icons/06003DED.png b/static/icons/06003DED.png
new file mode 100755
index 00000000..eed2675f
Binary files /dev/null and b/static/icons/06003DED.png differ
diff --git a/static/icons/06003DEF.png b/static/icons/06003DEF.png
new file mode 100755
index 00000000..d4345a50
Binary files /dev/null and b/static/icons/06003DEF.png differ
diff --git a/static/icons/06003DFD.png b/static/icons/06003DFD.png
new file mode 100755
index 00000000..29c00dc4
Binary files /dev/null and b/static/icons/06003DFD.png differ
diff --git a/static/icons/06003DFF.png b/static/icons/06003DFF.png
new file mode 100755
index 00000000..32dc45a4
Binary files /dev/null and b/static/icons/06003DFF.png differ
diff --git a/static/icons/06003E01.png b/static/icons/06003E01.png
new file mode 100755
index 00000000..b6c248c0
Binary files /dev/null and b/static/icons/06003E01.png differ
diff --git a/static/icons/06003E03.png b/static/icons/06003E03.png
new file mode 100755
index 00000000..a72b589e
Binary files /dev/null and b/static/icons/06003E03.png differ
diff --git a/static/icons/06003E10.png b/static/icons/06003E10.png
new file mode 100755
index 00000000..8bc4de35
Binary files /dev/null and b/static/icons/06003E10.png differ
diff --git a/static/icons/06003E11.png b/static/icons/06003E11.png
new file mode 100755
index 00000000..9acd8ad1
Binary files /dev/null and b/static/icons/06003E11.png differ
diff --git a/static/icons/06003E13.png b/static/icons/06003E13.png
new file mode 100755
index 00000000..7b99924f
Binary files /dev/null and b/static/icons/06003E13.png differ
diff --git a/static/icons/06003E15.png b/static/icons/06003E15.png
new file mode 100755
index 00000000..8b634df4
Binary files /dev/null and b/static/icons/06003E15.png differ
diff --git a/static/icons/06003E17.png b/static/icons/06003E17.png
new file mode 100755
index 00000000..d521b6ce
Binary files /dev/null and b/static/icons/06003E17.png differ
diff --git a/static/icons/06003E1A.png b/static/icons/06003E1A.png
new file mode 100755
index 00000000..ead8c2b4
Binary files /dev/null and b/static/icons/06003E1A.png differ
diff --git a/static/icons/06003E1B.png b/static/icons/06003E1B.png
new file mode 100755
index 00000000..0da59706
Binary files /dev/null and b/static/icons/06003E1B.png differ
diff --git a/static/icons/06003E1C.png b/static/icons/06003E1C.png
new file mode 100755
index 00000000..4ff27e72
Binary files /dev/null and b/static/icons/06003E1C.png differ
diff --git a/static/icons/06003E1D.png b/static/icons/06003E1D.png
new file mode 100755
index 00000000..aff9ce2e
Binary files /dev/null and b/static/icons/06003E1D.png differ
diff --git a/static/icons/06003E1E.png b/static/icons/06003E1E.png
new file mode 100755
index 00000000..ce30304d
Binary files /dev/null and b/static/icons/06003E1E.png differ
diff --git a/static/icons/06003E1F.png b/static/icons/06003E1F.png
new file mode 100755
index 00000000..8200cc66
Binary files /dev/null and b/static/icons/06003E1F.png differ
diff --git a/static/icons/06003E20.png b/static/icons/06003E20.png
new file mode 100755
index 00000000..d5b46457
Binary files /dev/null and b/static/icons/06003E20.png differ
diff --git a/static/icons/06003E21.png b/static/icons/06003E21.png
new file mode 100755
index 00000000..246d4d56
Binary files /dev/null and b/static/icons/06003E21.png differ
diff --git a/static/icons/06003E22.png b/static/icons/06003E22.png
new file mode 100755
index 00000000..9141d17a
Binary files /dev/null and b/static/icons/06003E22.png differ
diff --git a/static/icons/06003E29.png b/static/icons/06003E29.png
new file mode 100755
index 00000000..cd19daf2
Binary files /dev/null and b/static/icons/06003E29.png differ
diff --git a/static/icons/06003E2A.png b/static/icons/06003E2A.png
new file mode 100755
index 00000000..7afa09dd
Binary files /dev/null and b/static/icons/06003E2A.png differ
diff --git a/static/icons/06003E2B.png b/static/icons/06003E2B.png
new file mode 100755
index 00000000..cd19daf2
Binary files /dev/null and b/static/icons/06003E2B.png differ
diff --git a/static/icons/06003E2C.png b/static/icons/06003E2C.png
new file mode 100755
index 00000000..d2b5c2a0
Binary files /dev/null and b/static/icons/06003E2C.png differ
diff --git a/static/icons/06003E3B.png b/static/icons/06003E3B.png
new file mode 100755
index 00000000..b73f5352
Binary files /dev/null and b/static/icons/06003E3B.png differ
diff --git a/static/icons/06003E3E.png b/static/icons/06003E3E.png
new file mode 100755
index 00000000..e9fdaa84
Binary files /dev/null and b/static/icons/06003E3E.png differ
diff --git a/static/icons/06003E40.png b/static/icons/06003E40.png
new file mode 100755
index 00000000..ec414d62
Binary files /dev/null and b/static/icons/06003E40.png differ
diff --git a/static/icons/06003E42.png b/static/icons/06003E42.png
new file mode 100755
index 00000000..d1237123
Binary files /dev/null and b/static/icons/06003E42.png differ
diff --git a/static/icons/06003E44.png b/static/icons/06003E44.png
new file mode 100755
index 00000000..5910616d
Binary files /dev/null and b/static/icons/06003E44.png differ
diff --git a/static/icons/06003E46.png b/static/icons/06003E46.png
new file mode 100755
index 00000000..57e822cf
Binary files /dev/null and b/static/icons/06003E46.png differ
diff --git a/static/icons/06003E48.png b/static/icons/06003E48.png
new file mode 100755
index 00000000..e34e9ca4
Binary files /dev/null and b/static/icons/06003E48.png differ
diff --git a/static/icons/06003E4A.png b/static/icons/06003E4A.png
new file mode 100755
index 00000000..59631cb9
Binary files /dev/null and b/static/icons/06003E4A.png differ
diff --git a/static/icons/06003E4C.png b/static/icons/06003E4C.png
new file mode 100755
index 00000000..4edabc7f
Binary files /dev/null and b/static/icons/06003E4C.png differ
diff --git a/static/icons/06003E4E.png b/static/icons/06003E4E.png
new file mode 100755
index 00000000..ac76e12e
Binary files /dev/null and b/static/icons/06003E4E.png differ
diff --git a/static/icons/06003E50.png b/static/icons/06003E50.png
new file mode 100755
index 00000000..df0e8a6b
Binary files /dev/null and b/static/icons/06003E50.png differ
diff --git a/static/icons/06003E52.png b/static/icons/06003E52.png
new file mode 100755
index 00000000..1336660b
Binary files /dev/null and b/static/icons/06003E52.png differ
diff --git a/static/icons/06003E54.png b/static/icons/06003E54.png
new file mode 100755
index 00000000..18f8c08d
Binary files /dev/null and b/static/icons/06003E54.png differ
diff --git a/static/icons/06003E56.png b/static/icons/06003E56.png
new file mode 100755
index 00000000..76fe33f9
Binary files /dev/null and b/static/icons/06003E56.png differ
diff --git a/static/icons/06003E58.png b/static/icons/06003E58.png
new file mode 100755
index 00000000..14e8a87f
Binary files /dev/null and b/static/icons/06003E58.png differ
diff --git a/static/icons/06003E5A.png b/static/icons/06003E5A.png
new file mode 100755
index 00000000..9a941219
Binary files /dev/null and b/static/icons/06003E5A.png differ
diff --git a/static/icons/06003E5D.png b/static/icons/06003E5D.png
new file mode 100755
index 00000000..cdc3c500
Binary files /dev/null and b/static/icons/06003E5D.png differ
diff --git a/static/icons/06003E5F.png b/static/icons/06003E5F.png
new file mode 100755
index 00000000..15a4b103
Binary files /dev/null and b/static/icons/06003E5F.png differ
diff --git a/static/icons/06003E61.png b/static/icons/06003E61.png
new file mode 100755
index 00000000..1983f9ac
Binary files /dev/null and b/static/icons/06003E61.png differ
diff --git a/static/icons/06003E63.png b/static/icons/06003E63.png
new file mode 100755
index 00000000..d6a5e625
Binary files /dev/null and b/static/icons/06003E63.png differ
diff --git a/static/icons/06003E65.png b/static/icons/06003E65.png
new file mode 100755
index 00000000..2e86069d
Binary files /dev/null and b/static/icons/06003E65.png differ
diff --git a/static/icons/06003E67.png b/static/icons/06003E67.png
new file mode 100755
index 00000000..425edf4c
Binary files /dev/null and b/static/icons/06003E67.png differ
diff --git a/static/icons/06003E68.png b/static/icons/06003E68.png
new file mode 100755
index 00000000..990997fc
Binary files /dev/null and b/static/icons/06003E68.png differ
diff --git a/static/icons/06003E6B.png b/static/icons/06003E6B.png
new file mode 100755
index 00000000..b334094b
Binary files /dev/null and b/static/icons/06003E6B.png differ
diff --git a/static/icons/06003E79.png b/static/icons/06003E79.png
new file mode 100755
index 00000000..27b0a3fb
Binary files /dev/null and b/static/icons/06003E79.png differ
diff --git a/static/icons/06003E7C.png b/static/icons/06003E7C.png
new file mode 100755
index 00000000..280c82a9
Binary files /dev/null and b/static/icons/06003E7C.png differ
diff --git a/static/icons/06003E7E.png b/static/icons/06003E7E.png
new file mode 100755
index 00000000..cf072839
Binary files /dev/null and b/static/icons/06003E7E.png differ
diff --git a/static/icons/06003E80.png b/static/icons/06003E80.png
new file mode 100755
index 00000000..3551f3e2
Binary files /dev/null and b/static/icons/06003E80.png differ
diff --git a/static/icons/06003E82.png b/static/icons/06003E82.png
new file mode 100755
index 00000000..a5f5a422
Binary files /dev/null and b/static/icons/06003E82.png differ
diff --git a/static/icons/06003E84.png b/static/icons/06003E84.png
new file mode 100755
index 00000000..48e8ddd0
Binary files /dev/null and b/static/icons/06003E84.png differ
diff --git a/static/icons/06003E86.png b/static/icons/06003E86.png
new file mode 100755
index 00000000..cd10b6d7
Binary files /dev/null and b/static/icons/06003E86.png differ
diff --git a/static/icons/06003E88.png b/static/icons/06003E88.png
new file mode 100755
index 00000000..3b2c67d3
Binary files /dev/null and b/static/icons/06003E88.png differ
diff --git a/static/icons/06003E8A.png b/static/icons/06003E8A.png
new file mode 100755
index 00000000..45230760
Binary files /dev/null and b/static/icons/06003E8A.png differ
diff --git a/static/icons/06003E92.png b/static/icons/06003E92.png
new file mode 100755
index 00000000..bf618a5f
Binary files /dev/null and b/static/icons/06003E92.png differ
diff --git a/static/icons/06003E93.png b/static/icons/06003E93.png
new file mode 100755
index 00000000..46d214e3
Binary files /dev/null and b/static/icons/06003E93.png differ
diff --git a/static/icons/06003E97.png b/static/icons/06003E97.png
new file mode 100755
index 00000000..bdd1e900
Binary files /dev/null and b/static/icons/06003E97.png differ
diff --git a/static/icons/06003E9A.png b/static/icons/06003E9A.png
new file mode 100755
index 00000000..1e4e32ee
Binary files /dev/null and b/static/icons/06003E9A.png differ
diff --git a/static/icons/06003E9C.png b/static/icons/06003E9C.png
new file mode 100755
index 00000000..fe9c4d7b
Binary files /dev/null and b/static/icons/06003E9C.png differ
diff --git a/static/icons/06003E9E.png b/static/icons/06003E9E.png
new file mode 100755
index 00000000..5a0b60c6
Binary files /dev/null and b/static/icons/06003E9E.png differ
diff --git a/static/icons/06003EA0.png b/static/icons/06003EA0.png
new file mode 100755
index 00000000..64566fc0
Binary files /dev/null and b/static/icons/06003EA0.png differ
diff --git a/static/icons/06003EA2.png b/static/icons/06003EA2.png
new file mode 100755
index 00000000..da413f70
Binary files /dev/null and b/static/icons/06003EA2.png differ
diff --git a/static/icons/06003EA4.png b/static/icons/06003EA4.png
new file mode 100755
index 00000000..b05a30f5
Binary files /dev/null and b/static/icons/06003EA4.png differ
diff --git a/static/icons/06003EA6.png b/static/icons/06003EA6.png
new file mode 100755
index 00000000..33eb9ff6
Binary files /dev/null and b/static/icons/06003EA6.png differ
diff --git a/static/icons/06003EA8.png b/static/icons/06003EA8.png
new file mode 100755
index 00000000..41851836
Binary files /dev/null and b/static/icons/06003EA8.png differ
diff --git a/static/icons/06003EAC.png b/static/icons/06003EAC.png
new file mode 100755
index 00000000..a8d7e95e
Binary files /dev/null and b/static/icons/06003EAC.png differ
diff --git a/static/icons/06003EAE.png b/static/icons/06003EAE.png
new file mode 100755
index 00000000..daa7944d
Binary files /dev/null and b/static/icons/06003EAE.png differ
diff --git a/static/icons/06003EB0.png b/static/icons/06003EB0.png
new file mode 100755
index 00000000..d01a8a69
Binary files /dev/null and b/static/icons/06003EB0.png differ
diff --git a/static/icons/06003EB2.png b/static/icons/06003EB2.png
new file mode 100755
index 00000000..4165ea13
Binary files /dev/null and b/static/icons/06003EB2.png differ
diff --git a/static/icons/06003EBA.png b/static/icons/06003EBA.png
new file mode 100755
index 00000000..c839b733
Binary files /dev/null and b/static/icons/06003EBA.png differ
diff --git a/static/icons/06003EBC.png b/static/icons/06003EBC.png
new file mode 100755
index 00000000..bc886136
Binary files /dev/null and b/static/icons/06003EBC.png differ
diff --git a/static/icons/06003EBE.png b/static/icons/06003EBE.png
new file mode 100755
index 00000000..b66a6efd
Binary files /dev/null and b/static/icons/06003EBE.png differ
diff --git a/static/icons/06003EC4.png b/static/icons/06003EC4.png
new file mode 100755
index 00000000..10babe60
Binary files /dev/null and b/static/icons/06003EC4.png differ
diff --git a/static/icons/06003EC7.png b/static/icons/06003EC7.png
new file mode 100755
index 00000000..7447d5aa
Binary files /dev/null and b/static/icons/06003EC7.png differ
diff --git a/static/icons/06003EC9.png b/static/icons/06003EC9.png
new file mode 100755
index 00000000..0fe22c3a
Binary files /dev/null and b/static/icons/06003EC9.png differ
diff --git a/static/icons/06003ECB.png b/static/icons/06003ECB.png
new file mode 100755
index 00000000..b474083e
Binary files /dev/null and b/static/icons/06003ECB.png differ
diff --git a/static/icons/06003ECD.png b/static/icons/06003ECD.png
new file mode 100755
index 00000000..0d9ebdff
Binary files /dev/null and b/static/icons/06003ECD.png differ
diff --git a/static/icons/06003ECF.png b/static/icons/06003ECF.png
new file mode 100755
index 00000000..ab3a911d
Binary files /dev/null and b/static/icons/06003ECF.png differ
diff --git a/static/icons/06003ED1.png b/static/icons/06003ED1.png
new file mode 100755
index 00000000..4ceb930b
Binary files /dev/null and b/static/icons/06003ED1.png differ
diff --git a/static/icons/06003ED3.png b/static/icons/06003ED3.png
new file mode 100755
index 00000000..ab65d826
Binary files /dev/null and b/static/icons/06003ED3.png differ
diff --git a/static/icons/06003ED5.png b/static/icons/06003ED5.png
new file mode 100755
index 00000000..f66e59ad
Binary files /dev/null and b/static/icons/06003ED5.png differ
diff --git a/static/icons/06003ED6.png b/static/icons/06003ED6.png
new file mode 100755
index 00000000..4e6be4ad
Binary files /dev/null and b/static/icons/06003ED6.png differ
diff --git a/static/icons/06003ED7.png b/static/icons/06003ED7.png
new file mode 100755
index 00000000..ebdd812e
Binary files /dev/null and b/static/icons/06003ED7.png differ
diff --git a/static/icons/06003ED8.png b/static/icons/06003ED8.png
new file mode 100755
index 00000000..9d2109b5
Binary files /dev/null and b/static/icons/06003ED8.png differ
diff --git a/static/icons/06003EDA.png b/static/icons/06003EDA.png
new file mode 100755
index 00000000..f26d3279
Binary files /dev/null and b/static/icons/06003EDA.png differ
diff --git a/static/icons/06003EDC.png b/static/icons/06003EDC.png
new file mode 100755
index 00000000..c2b59905
Binary files /dev/null and b/static/icons/06003EDC.png differ
diff --git a/static/icons/06003EDE.png b/static/icons/06003EDE.png
new file mode 100755
index 00000000..ed4beb54
Binary files /dev/null and b/static/icons/06003EDE.png differ
diff --git a/static/icons/06003EDF.png b/static/icons/06003EDF.png
new file mode 100755
index 00000000..e03b10fa
Binary files /dev/null and b/static/icons/06003EDF.png differ
diff --git a/static/icons/06003EE1.png b/static/icons/06003EE1.png
new file mode 100755
index 00000000..a0a78886
Binary files /dev/null and b/static/icons/06003EE1.png differ
diff --git a/static/icons/06003EE9.png b/static/icons/06003EE9.png
new file mode 100755
index 00000000..7231f660
Binary files /dev/null and b/static/icons/06003EE9.png differ
diff --git a/static/icons/06003EEB.png b/static/icons/06003EEB.png
new file mode 100755
index 00000000..079b71ce
Binary files /dev/null and b/static/icons/06003EEB.png differ
diff --git a/static/icons/06003EEE.png b/static/icons/06003EEE.png
new file mode 100755
index 00000000..eb1bc981
Binary files /dev/null and b/static/icons/06003EEE.png differ
diff --git a/static/icons/06003EF0.png b/static/icons/06003EF0.png
new file mode 100755
index 00000000..b3fe681e
Binary files /dev/null and b/static/icons/06003EF0.png differ
diff --git a/static/icons/06003EF4.png b/static/icons/06003EF4.png
new file mode 100755
index 00000000..4d02e715
Binary files /dev/null and b/static/icons/06003EF4.png differ
diff --git a/static/icons/06003EF6.png b/static/icons/06003EF6.png
new file mode 100755
index 00000000..e0c4d868
Binary files /dev/null and b/static/icons/06003EF6.png differ
diff --git a/static/icons/06003F00.png b/static/icons/06003F00.png
new file mode 100755
index 00000000..8a9fb7c3
Binary files /dev/null and b/static/icons/06003F00.png differ
diff --git a/static/icons/06003F02.png b/static/icons/06003F02.png
new file mode 100755
index 00000000..2853295c
Binary files /dev/null and b/static/icons/06003F02.png differ
diff --git a/static/icons/06003F04.png b/static/icons/06003F04.png
new file mode 100755
index 00000000..5990fe67
Binary files /dev/null and b/static/icons/06003F04.png differ
diff --git a/static/icons/06003F06.png b/static/icons/06003F06.png
new file mode 100755
index 00000000..c3152fba
Binary files /dev/null and b/static/icons/06003F06.png differ
diff --git a/static/icons/06003F08.png b/static/icons/06003F08.png
new file mode 100755
index 00000000..b402f74a
Binary files /dev/null and b/static/icons/06003F08.png differ
diff --git a/static/icons/06003F0E.png b/static/icons/06003F0E.png
new file mode 100755
index 00000000..0ae81aa6
Binary files /dev/null and b/static/icons/06003F0E.png differ
diff --git a/static/icons/06003F10.png b/static/icons/06003F10.png
new file mode 100755
index 00000000..408295ca
Binary files /dev/null and b/static/icons/06003F10.png differ
diff --git a/static/icons/06003F12.png b/static/icons/06003F12.png
new file mode 100755
index 00000000..cb4fc4af
Binary files /dev/null and b/static/icons/06003F12.png differ
diff --git a/static/icons/06003F14.png b/static/icons/06003F14.png
new file mode 100755
index 00000000..bac9259c
Binary files /dev/null and b/static/icons/06003F14.png differ
diff --git a/static/icons/06003F16.png b/static/icons/06003F16.png
new file mode 100755
index 00000000..af3a52f5
Binary files /dev/null and b/static/icons/06003F16.png differ
diff --git a/static/icons/06003F18.png b/static/icons/06003F18.png
new file mode 100755
index 00000000..bfdd972d
Binary files /dev/null and b/static/icons/06003F18.png differ
diff --git a/static/icons/06003F1A.png b/static/icons/06003F1A.png
new file mode 100755
index 00000000..90de412d
Binary files /dev/null and b/static/icons/06003F1A.png differ
diff --git a/static/icons/06003F1C.png b/static/icons/06003F1C.png
new file mode 100755
index 00000000..aa7fd369
Binary files /dev/null and b/static/icons/06003F1C.png differ
diff --git a/static/icons/06003F1E.png b/static/icons/06003F1E.png
new file mode 100755
index 00000000..90701c4f
Binary files /dev/null and b/static/icons/06003F1E.png differ
diff --git a/static/icons/06003F26.png b/static/icons/06003F26.png
new file mode 100755
index 00000000..e875ee6b
Binary files /dev/null and b/static/icons/06003F26.png differ
diff --git a/static/icons/06003F28.png b/static/icons/06003F28.png
new file mode 100755
index 00000000..d94eb1b6
Binary files /dev/null and b/static/icons/06003F28.png differ
diff --git a/static/icons/06003F51.png b/static/icons/06003F51.png
new file mode 100755
index 00000000..429d66b3
Binary files /dev/null and b/static/icons/06003F51.png differ
diff --git a/static/icons/06003F53.png b/static/icons/06003F53.png
new file mode 100755
index 00000000..2d047fc5
Binary files /dev/null and b/static/icons/06003F53.png differ
diff --git a/static/icons/06003F55.png b/static/icons/06003F55.png
new file mode 100755
index 00000000..f1ae596e
Binary files /dev/null and b/static/icons/06003F55.png differ
diff --git a/static/icons/06003F72.png b/static/icons/06003F72.png
new file mode 100755
index 00000000..319f8ff9
Binary files /dev/null and b/static/icons/06003F72.png differ
diff --git a/static/icons/06003F74.png b/static/icons/06003F74.png
new file mode 100755
index 00000000..9a4c2a38
Binary files /dev/null and b/static/icons/06003F74.png differ
diff --git a/static/icons/06003F76.png b/static/icons/06003F76.png
new file mode 100755
index 00000000..78f40cb7
Binary files /dev/null and b/static/icons/06003F76.png differ
diff --git a/static/icons/06003F7B.png b/static/icons/06003F7B.png
new file mode 100755
index 00000000..7fefd11d
Binary files /dev/null and b/static/icons/06003F7B.png differ
diff --git a/static/icons/06003F89.png b/static/icons/06003F89.png
new file mode 100755
index 00000000..7b60e5ea
Binary files /dev/null and b/static/icons/06003F89.png differ
diff --git a/static/icons/06003F8B.png b/static/icons/06003F8B.png
new file mode 100755
index 00000000..d4805bed
Binary files /dev/null and b/static/icons/06003F8B.png differ
diff --git a/static/icons/06003F90.png b/static/icons/06003F90.png
new file mode 100755
index 00000000..749597f0
Binary files /dev/null and b/static/icons/06003F90.png differ
diff --git a/static/icons/06003F9A.png b/static/icons/06003F9A.png
new file mode 100755
index 00000000..7dcf6735
Binary files /dev/null and b/static/icons/06003F9A.png differ
diff --git a/static/icons/06003F9C.png b/static/icons/06003F9C.png
new file mode 100755
index 00000000..6263f947
Binary files /dev/null and b/static/icons/06003F9C.png differ
diff --git a/static/icons/06003F9E.png b/static/icons/06003F9E.png
new file mode 100755
index 00000000..ed37b69a
Binary files /dev/null and b/static/icons/06003F9E.png differ
diff --git a/static/icons/06003FA1.png b/static/icons/06003FA1.png
new file mode 100755
index 00000000..37da71b9
Binary files /dev/null and b/static/icons/06003FA1.png differ
diff --git a/static/icons/06003FA3.png b/static/icons/06003FA3.png
new file mode 100755
index 00000000..b3d12553
Binary files /dev/null and b/static/icons/06003FA3.png differ
diff --git a/static/icons/06003FA7.png b/static/icons/06003FA7.png
new file mode 100755
index 00000000..e69ff2b4
Binary files /dev/null and b/static/icons/06003FA7.png differ
diff --git a/static/icons/06003FAB.png b/static/icons/06003FAB.png
new file mode 100755
index 00000000..41d0769f
Binary files /dev/null and b/static/icons/06003FAB.png differ
diff --git a/static/icons/06003FAD.png b/static/icons/06003FAD.png
new file mode 100755
index 00000000..61dbf625
Binary files /dev/null and b/static/icons/06003FAD.png differ
diff --git a/static/icons/06003FB0.png b/static/icons/06003FB0.png
new file mode 100755
index 00000000..4cc1b32a
Binary files /dev/null and b/static/icons/06003FB0.png differ
diff --git a/static/icons/06003FB2.png b/static/icons/06003FB2.png
new file mode 100755
index 00000000..f57eab0f
Binary files /dev/null and b/static/icons/06003FB2.png differ
diff --git a/static/icons/06003FB4.png b/static/icons/06003FB4.png
new file mode 100755
index 00000000..b9849a3c
Binary files /dev/null and b/static/icons/06003FB4.png differ
diff --git a/static/icons/06003FBE.png b/static/icons/06003FBE.png
new file mode 100755
index 00000000..15684907
Binary files /dev/null and b/static/icons/06003FBE.png differ
diff --git a/static/icons/06003FC0.png b/static/icons/06003FC0.png
new file mode 100755
index 00000000..a1a73dfb
Binary files /dev/null and b/static/icons/06003FC0.png differ
diff --git a/static/icons/06003FC9.png b/static/icons/06003FC9.png
new file mode 100755
index 00000000..d02b7b5f
Binary files /dev/null and b/static/icons/06003FC9.png differ
diff --git a/static/icons/06003FCB.png b/static/icons/06003FCB.png
new file mode 100755
index 00000000..9d0a2917
Binary files /dev/null and b/static/icons/06003FCB.png differ
diff --git a/static/icons/06003FCD.png b/static/icons/06003FCD.png
new file mode 100755
index 00000000..4787d63d
Binary files /dev/null and b/static/icons/06003FCD.png differ
diff --git a/static/icons/06003FCF.png b/static/icons/06003FCF.png
new file mode 100755
index 00000000..aa37fcd5
Binary files /dev/null and b/static/icons/06003FCF.png differ
diff --git a/static/icons/06003FD1.png b/static/icons/06003FD1.png
new file mode 100755
index 00000000..04594e63
Binary files /dev/null and b/static/icons/06003FD1.png differ
diff --git a/static/icons/06003FD3.png b/static/icons/06003FD3.png
new file mode 100755
index 00000000..60eb3964
Binary files /dev/null and b/static/icons/06003FD3.png differ
diff --git a/static/icons/06003FDB.png b/static/icons/06003FDB.png
new file mode 100755
index 00000000..0d12084c
Binary files /dev/null and b/static/icons/06003FDB.png differ
diff --git a/static/icons/06003FDD.png b/static/icons/06003FDD.png
new file mode 100755
index 00000000..ffbc8510
Binary files /dev/null and b/static/icons/06003FDD.png differ
diff --git a/static/icons/06003FDF.png b/static/icons/06003FDF.png
new file mode 100755
index 00000000..60e1700c
Binary files /dev/null and b/static/icons/06003FDF.png differ
diff --git a/static/icons/06003FE3.png b/static/icons/06003FE3.png
new file mode 100755
index 00000000..782b186d
Binary files /dev/null and b/static/icons/06003FE3.png differ
diff --git a/static/icons/06003FE5.png b/static/icons/06003FE5.png
new file mode 100755
index 00000000..72024f6d
Binary files /dev/null and b/static/icons/06003FE5.png differ
diff --git a/static/icons/06003FE7.png b/static/icons/06003FE7.png
new file mode 100755
index 00000000..38d2a039
Binary files /dev/null and b/static/icons/06003FE7.png differ
diff --git a/static/icons/06003FE9.png b/static/icons/06003FE9.png
new file mode 100755
index 00000000..6203d60b
Binary files /dev/null and b/static/icons/06003FE9.png differ
diff --git a/static/icons/06003FEB.png b/static/icons/06003FEB.png
new file mode 100755
index 00000000..7e799a3d
Binary files /dev/null and b/static/icons/06003FEB.png differ
diff --git a/static/icons/06003FF3.png b/static/icons/06003FF3.png
new file mode 100755
index 00000000..a909dc65
Binary files /dev/null and b/static/icons/06003FF3.png differ
diff --git a/static/icons/06003FF5.png b/static/icons/06003FF5.png
new file mode 100755
index 00000000..dccbbb73
Binary files /dev/null and b/static/icons/06003FF5.png differ
diff --git a/static/icons/06004008.png b/static/icons/06004008.png
new file mode 100755
index 00000000..a6579607
Binary files /dev/null and b/static/icons/06004008.png differ
diff --git a/static/icons/0600400A.png b/static/icons/0600400A.png
new file mode 100755
index 00000000..611db53c
Binary files /dev/null and b/static/icons/0600400A.png differ
diff --git a/static/icons/0600400C.png b/static/icons/0600400C.png
new file mode 100755
index 00000000..749a683b
Binary files /dev/null and b/static/icons/0600400C.png differ
diff --git a/static/icons/0600400E.png b/static/icons/0600400E.png
new file mode 100755
index 00000000..45125bac
Binary files /dev/null and b/static/icons/0600400E.png differ
diff --git a/static/icons/06004012.png b/static/icons/06004012.png
new file mode 100755
index 00000000..7d63f460
Binary files /dev/null and b/static/icons/06004012.png differ
diff --git a/static/icons/06004014.png b/static/icons/06004014.png
new file mode 100755
index 00000000..97cd6f76
Binary files /dev/null and b/static/icons/06004014.png differ
diff --git a/static/icons/06004016.png b/static/icons/06004016.png
new file mode 100755
index 00000000..520fabbe
Binary files /dev/null and b/static/icons/06004016.png differ
diff --git a/static/icons/06004018.png b/static/icons/06004018.png
new file mode 100755
index 00000000..2643896e
Binary files /dev/null and b/static/icons/06004018.png differ
diff --git a/static/icons/0600401E.png b/static/icons/0600401E.png
new file mode 100755
index 00000000..c1dfab2f
Binary files /dev/null and b/static/icons/0600401E.png differ
diff --git a/static/icons/06004020.png b/static/icons/06004020.png
new file mode 100755
index 00000000..565e5f9f
Binary files /dev/null and b/static/icons/06004020.png differ
diff --git a/static/icons/06004022.png b/static/icons/06004022.png
new file mode 100755
index 00000000..ddce5ff6
Binary files /dev/null and b/static/icons/06004022.png differ
diff --git a/static/icons/06004027.png b/static/icons/06004027.png
new file mode 100755
index 00000000..aecf4e0f
Binary files /dev/null and b/static/icons/06004027.png differ
diff --git a/static/icons/0600402E.png b/static/icons/0600402E.png
new file mode 100755
index 00000000..d120a3d6
Binary files /dev/null and b/static/icons/0600402E.png differ
diff --git a/static/icons/06004032.png b/static/icons/06004032.png
new file mode 100755
index 00000000..dbf12760
Binary files /dev/null and b/static/icons/06004032.png differ
diff --git a/static/icons/06004033.png b/static/icons/06004033.png
new file mode 100755
index 00000000..12cb89bc
Binary files /dev/null and b/static/icons/06004033.png differ
diff --git a/static/icons/06004036.png b/static/icons/06004036.png
new file mode 100755
index 00000000..d6e9fff4
Binary files /dev/null and b/static/icons/06004036.png differ
diff --git a/static/icons/06004039.png b/static/icons/06004039.png
new file mode 100755
index 00000000..a5852dd8
Binary files /dev/null and b/static/icons/06004039.png differ
diff --git a/static/icons/0600403A.png b/static/icons/0600403A.png
new file mode 100755
index 00000000..fbe3ec51
Binary files /dev/null and b/static/icons/0600403A.png differ
diff --git a/static/icons/0600403B.png b/static/icons/0600403B.png
new file mode 100755
index 00000000..7e09ffa0
Binary files /dev/null and b/static/icons/0600403B.png differ
diff --git a/static/icons/0600403C.png b/static/icons/0600403C.png
new file mode 100755
index 00000000..10cec2d3
Binary files /dev/null and b/static/icons/0600403C.png differ
diff --git a/static/icons/0600403F.png b/static/icons/0600403F.png
new file mode 100755
index 00000000..49c41e9f
Binary files /dev/null and b/static/icons/0600403F.png differ
diff --git a/static/icons/06004040.png b/static/icons/06004040.png
new file mode 100755
index 00000000..243b2c95
Binary files /dev/null and b/static/icons/06004040.png differ
diff --git a/static/icons/06004041.png b/static/icons/06004041.png
new file mode 100755
index 00000000..093970ff
Binary files /dev/null and b/static/icons/06004041.png differ
diff --git a/static/icons/06004042.png b/static/icons/06004042.png
new file mode 100755
index 00000000..b97c15bf
Binary files /dev/null and b/static/icons/06004042.png differ
diff --git a/static/icons/06004045.png b/static/icons/06004045.png
new file mode 100755
index 00000000..4e80a190
Binary files /dev/null and b/static/icons/06004045.png differ
diff --git a/static/icons/06004047.png b/static/icons/06004047.png
new file mode 100755
index 00000000..b9f76e23
Binary files /dev/null and b/static/icons/06004047.png differ
diff --git a/static/icons/0600404F.png b/static/icons/0600404F.png
new file mode 100755
index 00000000..e05119fe
Binary files /dev/null and b/static/icons/0600404F.png differ
diff --git a/static/icons/06004050.png b/static/icons/06004050.png
new file mode 100755
index 00000000..661de70d
Binary files /dev/null and b/static/icons/06004050.png differ
diff --git a/static/icons/06004052.png b/static/icons/06004052.png
new file mode 100755
index 00000000..429ee6c9
Binary files /dev/null and b/static/icons/06004052.png differ
diff --git a/static/icons/06004054.png b/static/icons/06004054.png
new file mode 100755
index 00000000..f97194f8
Binary files /dev/null and b/static/icons/06004054.png differ
diff --git a/static/icons/0600405B.png b/static/icons/0600405B.png
new file mode 100755
index 00000000..4622e775
Binary files /dev/null and b/static/icons/0600405B.png differ
diff --git a/static/icons/0600405C.png b/static/icons/0600405C.png
new file mode 100755
index 00000000..dcc4a3ca
Binary files /dev/null and b/static/icons/0600405C.png differ
diff --git a/static/icons/0600405D.png b/static/icons/0600405D.png
new file mode 100755
index 00000000..14beab5a
Binary files /dev/null and b/static/icons/0600405D.png differ
diff --git a/static/icons/0600405E.png b/static/icons/0600405E.png
new file mode 100755
index 00000000..3b6b270b
Binary files /dev/null and b/static/icons/0600405E.png differ
diff --git a/static/icons/0600405F.png b/static/icons/0600405F.png
new file mode 100755
index 00000000..d2710a87
Binary files /dev/null and b/static/icons/0600405F.png differ
diff --git a/static/icons/06004060.png b/static/icons/06004060.png
new file mode 100755
index 00000000..64a66285
Binary files /dev/null and b/static/icons/06004060.png differ
diff --git a/static/icons/06004061.png b/static/icons/06004061.png
new file mode 100755
index 00000000..9a034c30
Binary files /dev/null and b/static/icons/06004061.png differ
diff --git a/static/icons/06004062.png b/static/icons/06004062.png
new file mode 100755
index 00000000..5f428c87
Binary files /dev/null and b/static/icons/06004062.png differ
diff --git a/static/icons/06004064.png b/static/icons/06004064.png
new file mode 100755
index 00000000..ced0061e
Binary files /dev/null and b/static/icons/06004064.png differ
diff --git a/static/icons/06004066.png b/static/icons/06004066.png
new file mode 100755
index 00000000..08ebf32b
Binary files /dev/null and b/static/icons/06004066.png differ
diff --git a/static/icons/06004075.png b/static/icons/06004075.png
new file mode 100755
index 00000000..ad2a92e4
Binary files /dev/null and b/static/icons/06004075.png differ
diff --git a/static/icons/06004077.png b/static/icons/06004077.png
new file mode 100755
index 00000000..129ba297
Binary files /dev/null and b/static/icons/06004077.png differ
diff --git a/static/icons/06004079.png b/static/icons/06004079.png
new file mode 100755
index 00000000..1f1201c0
Binary files /dev/null and b/static/icons/06004079.png differ
diff --git a/static/icons/0600407B.png b/static/icons/0600407B.png
new file mode 100755
index 00000000..50559722
Binary files /dev/null and b/static/icons/0600407B.png differ
diff --git a/static/icons/0600407D.png b/static/icons/0600407D.png
new file mode 100755
index 00000000..2de44b00
Binary files /dev/null and b/static/icons/0600407D.png differ
diff --git a/static/icons/0600407F.png b/static/icons/0600407F.png
new file mode 100755
index 00000000..c9a11d33
Binary files /dev/null and b/static/icons/0600407F.png differ
diff --git a/static/icons/06004081.png b/static/icons/06004081.png
new file mode 100755
index 00000000..32e4fa18
Binary files /dev/null and b/static/icons/06004081.png differ
diff --git a/static/icons/06004083.png b/static/icons/06004083.png
new file mode 100755
index 00000000..18158a37
Binary files /dev/null and b/static/icons/06004083.png differ
diff --git a/static/icons/06004085.png b/static/icons/06004085.png
new file mode 100755
index 00000000..c5133061
Binary files /dev/null and b/static/icons/06004085.png differ
diff --git a/static/icons/06004087.png b/static/icons/06004087.png
new file mode 100755
index 00000000..5a05784c
Binary files /dev/null and b/static/icons/06004087.png differ
diff --git a/static/icons/06004089.png b/static/icons/06004089.png
new file mode 100755
index 00000000..e02af8f5
Binary files /dev/null and b/static/icons/06004089.png differ
diff --git a/static/icons/0600408B.png b/static/icons/0600408B.png
new file mode 100755
index 00000000..0bd94c49
Binary files /dev/null and b/static/icons/0600408B.png differ
diff --git a/static/icons/0600408D.png b/static/icons/0600408D.png
new file mode 100755
index 00000000..1497c71a
Binary files /dev/null and b/static/icons/0600408D.png differ
diff --git a/static/icons/06004090.png b/static/icons/06004090.png
new file mode 100755
index 00000000..1497c71a
Binary files /dev/null and b/static/icons/06004090.png differ
diff --git a/static/icons/06004094.png b/static/icons/06004094.png
new file mode 100755
index 00000000..1169354d
Binary files /dev/null and b/static/icons/06004094.png differ
diff --git a/static/icons/06004096.png b/static/icons/06004096.png
new file mode 100755
index 00000000..a7545cd7
Binary files /dev/null and b/static/icons/06004096.png differ
diff --git a/static/icons/060040B4.png b/static/icons/060040B4.png
new file mode 100755
index 00000000..2e5ccbd2
Binary files /dev/null and b/static/icons/060040B4.png differ
diff --git a/static/icons/060040B6.png b/static/icons/060040B6.png
new file mode 100755
index 00000000..6e3ebef6
Binary files /dev/null and b/static/icons/060040B6.png differ
diff --git a/static/icons/060040B8.png b/static/icons/060040B8.png
new file mode 100755
index 00000000..e25d6c2b
Binary files /dev/null and b/static/icons/060040B8.png differ
diff --git a/static/icons/060040BA.png b/static/icons/060040BA.png
new file mode 100755
index 00000000..0996b785
Binary files /dev/null and b/static/icons/060040BA.png differ
diff --git a/static/icons/060040BC.png b/static/icons/060040BC.png
new file mode 100755
index 00000000..01d9ba35
Binary files /dev/null and b/static/icons/060040BC.png differ
diff --git a/static/icons/060040BE.png b/static/icons/060040BE.png
new file mode 100755
index 00000000..736cdfc6
Binary files /dev/null and b/static/icons/060040BE.png differ
diff --git a/static/icons/060040C0.png b/static/icons/060040C0.png
new file mode 100755
index 00000000..45dfc6c7
Binary files /dev/null and b/static/icons/060040C0.png differ
diff --git a/static/icons/060040C2.png b/static/icons/060040C2.png
new file mode 100755
index 00000000..927d2ee1
Binary files /dev/null and b/static/icons/060040C2.png differ
diff --git a/static/icons/060040C4.png b/static/icons/060040C4.png
new file mode 100755
index 00000000..6a510571
Binary files /dev/null and b/static/icons/060040C4.png differ
diff --git a/static/icons/060040C6.png b/static/icons/060040C6.png
new file mode 100755
index 00000000..e5411c56
Binary files /dev/null and b/static/icons/060040C6.png differ
diff --git a/static/icons/060040C8.png b/static/icons/060040C8.png
new file mode 100755
index 00000000..e43f516e
Binary files /dev/null and b/static/icons/060040C8.png differ
diff --git a/static/icons/060040CA.png b/static/icons/060040CA.png
new file mode 100755
index 00000000..e28cabc5
Binary files /dev/null and b/static/icons/060040CA.png differ
diff --git a/static/icons/060040CC.png b/static/icons/060040CC.png
new file mode 100755
index 00000000..9b990b52
Binary files /dev/null and b/static/icons/060040CC.png differ
diff --git a/static/icons/060040D4.png b/static/icons/060040D4.png
new file mode 100755
index 00000000..25d06d68
Binary files /dev/null and b/static/icons/060040D4.png differ
diff --git a/static/icons/060040D6.png b/static/icons/060040D6.png
new file mode 100755
index 00000000..225232c2
Binary files /dev/null and b/static/icons/060040D6.png differ
diff --git a/static/icons/060040D8.png b/static/icons/060040D8.png
new file mode 100755
index 00000000..7cd675bd
Binary files /dev/null and b/static/icons/060040D8.png differ
diff --git a/static/icons/060040DA.png b/static/icons/060040DA.png
new file mode 100755
index 00000000..844499e9
Binary files /dev/null and b/static/icons/060040DA.png differ
diff --git a/static/icons/060040DE.png b/static/icons/060040DE.png
new file mode 100755
index 00000000..5cff5f47
Binary files /dev/null and b/static/icons/060040DE.png differ
diff --git a/static/icons/060040E0.png b/static/icons/060040E0.png
new file mode 100755
index 00000000..b4e7f488
Binary files /dev/null and b/static/icons/060040E0.png differ
diff --git a/static/icons/06004100.png b/static/icons/06004100.png
new file mode 100755
index 00000000..8770fdfa
Binary files /dev/null and b/static/icons/06004100.png differ
diff --git a/static/icons/06004102.png b/static/icons/06004102.png
new file mode 100755
index 00000000..5c36de98
Binary files /dev/null and b/static/icons/06004102.png differ
diff --git a/static/icons/06004104.png b/static/icons/06004104.png
new file mode 100755
index 00000000..728e986b
Binary files /dev/null and b/static/icons/06004104.png differ
diff --git a/static/icons/06004106.png b/static/icons/06004106.png
new file mode 100755
index 00000000..3a85c059
Binary files /dev/null and b/static/icons/06004106.png differ
diff --git a/static/icons/06004108.png b/static/icons/06004108.png
new file mode 100755
index 00000000..22a884dd
Binary files /dev/null and b/static/icons/06004108.png differ
diff --git a/static/icons/0600410A.png b/static/icons/0600410A.png
new file mode 100755
index 00000000..54cecdde
Binary files /dev/null and b/static/icons/0600410A.png differ
diff --git a/static/icons/0600410D.png b/static/icons/0600410D.png
new file mode 100755
index 00000000..2f4e8815
Binary files /dev/null and b/static/icons/0600410D.png differ
diff --git a/static/icons/0600410F.png b/static/icons/0600410F.png
new file mode 100755
index 00000000..1d436257
Binary files /dev/null and b/static/icons/0600410F.png differ
diff --git a/static/icons/06004111.png b/static/icons/06004111.png
new file mode 100755
index 00000000..e8c93247
Binary files /dev/null and b/static/icons/06004111.png differ
diff --git a/static/icons/06004113.png b/static/icons/06004113.png
new file mode 100755
index 00000000..21832b36
Binary files /dev/null and b/static/icons/06004113.png differ
diff --git a/static/icons/06004129.png b/static/icons/06004129.png
new file mode 100755
index 00000000..682a5a42
Binary files /dev/null and b/static/icons/06004129.png differ
diff --git a/static/icons/06004131.png b/static/icons/06004131.png
new file mode 100755
index 00000000..fcc8f003
Binary files /dev/null and b/static/icons/06004131.png differ
diff --git a/static/icons/0600413B.png b/static/icons/0600413B.png
new file mode 100755
index 00000000..38e43431
Binary files /dev/null and b/static/icons/0600413B.png differ
diff --git a/static/icons/0600413D.png b/static/icons/0600413D.png
new file mode 100755
index 00000000..4e93b6c2
Binary files /dev/null and b/static/icons/0600413D.png differ
diff --git a/static/icons/06004140.png b/static/icons/06004140.png
new file mode 100755
index 00000000..eb93df47
Binary files /dev/null and b/static/icons/06004140.png differ
diff --git a/static/icons/06004141.png b/static/icons/06004141.png
new file mode 100755
index 00000000..364842fc
Binary files /dev/null and b/static/icons/06004141.png differ
diff --git a/static/icons/06004164.png b/static/icons/06004164.png
new file mode 100755
index 00000000..4841f897
Binary files /dev/null and b/static/icons/06004164.png differ
diff --git a/static/icons/06004165.png b/static/icons/06004165.png
new file mode 100755
index 00000000..1ba53c47
Binary files /dev/null and b/static/icons/06004165.png differ
diff --git a/static/icons/06004166.png b/static/icons/06004166.png
new file mode 100755
index 00000000..aeec7c63
Binary files /dev/null and b/static/icons/06004166.png differ
diff --git a/static/icons/06004167.png b/static/icons/06004167.png
new file mode 100755
index 00000000..6c78d27c
Binary files /dev/null and b/static/icons/06004167.png differ
diff --git a/static/icons/06004168.png b/static/icons/06004168.png
new file mode 100755
index 00000000..ffdc26ae
Binary files /dev/null and b/static/icons/06004168.png differ
diff --git a/static/icons/06004169.png b/static/icons/06004169.png
new file mode 100755
index 00000000..276b9263
Binary files /dev/null and b/static/icons/06004169.png differ
diff --git a/static/icons/0600416A.png b/static/icons/0600416A.png
new file mode 100755
index 00000000..064f9abe
Binary files /dev/null and b/static/icons/0600416A.png differ
diff --git a/static/icons/0600416B.png b/static/icons/0600416B.png
new file mode 100755
index 00000000..7f957cf9
Binary files /dev/null and b/static/icons/0600416B.png differ
diff --git a/static/icons/0600416C.png b/static/icons/0600416C.png
new file mode 100755
index 00000000..26522f7c
Binary files /dev/null and b/static/icons/0600416C.png differ
diff --git a/static/icons/0600416D.png b/static/icons/0600416D.png
new file mode 100755
index 00000000..26963ba8
Binary files /dev/null and b/static/icons/0600416D.png differ
diff --git a/static/icons/0600416E.png b/static/icons/0600416E.png
new file mode 100755
index 00000000..cd5cad99
Binary files /dev/null and b/static/icons/0600416E.png differ
diff --git a/static/icons/06004170.png b/static/icons/06004170.png
new file mode 100755
index 00000000..4f9a21dc
Binary files /dev/null and b/static/icons/06004170.png differ
diff --git a/static/icons/06004171.png b/static/icons/06004171.png
new file mode 100755
index 00000000..0d9ebdff
Binary files /dev/null and b/static/icons/06004171.png differ
diff --git a/static/icons/06004175.png b/static/icons/06004175.png
new file mode 100755
index 00000000..fc607f23
Binary files /dev/null and b/static/icons/06004175.png differ
diff --git a/static/icons/06004177.png b/static/icons/06004177.png
new file mode 100755
index 00000000..f4954bb6
Binary files /dev/null and b/static/icons/06004177.png differ
diff --git a/static/icons/06004179.png b/static/icons/06004179.png
new file mode 100755
index 00000000..0c03c86e
Binary files /dev/null and b/static/icons/06004179.png differ
diff --git a/static/icons/0600417B.png b/static/icons/0600417B.png
new file mode 100755
index 00000000..fdeeb04e
Binary files /dev/null and b/static/icons/0600417B.png differ
diff --git a/static/icons/0600417D.png b/static/icons/0600417D.png
new file mode 100755
index 00000000..2ce8593b
Binary files /dev/null and b/static/icons/0600417D.png differ
diff --git a/static/icons/06004180.png b/static/icons/06004180.png
new file mode 100755
index 00000000..6eae97ba
Binary files /dev/null and b/static/icons/06004180.png differ
diff --git a/static/icons/06004187.png b/static/icons/06004187.png
new file mode 100755
index 00000000..81d5e0a0
Binary files /dev/null and b/static/icons/06004187.png differ
diff --git a/static/icons/0600418D.png b/static/icons/0600418D.png
new file mode 100755
index 00000000..aec6fd53
Binary files /dev/null and b/static/icons/0600418D.png differ
diff --git a/static/icons/0600418F.png b/static/icons/0600418F.png
new file mode 100755
index 00000000..c65498cf
Binary files /dev/null and b/static/icons/0600418F.png differ
diff --git a/static/icons/06004192.png b/static/icons/06004192.png
new file mode 100755
index 00000000..efa54d85
Binary files /dev/null and b/static/icons/06004192.png differ
diff --git a/static/icons/06004194.png b/static/icons/06004194.png
new file mode 100755
index 00000000..85b417d8
Binary files /dev/null and b/static/icons/06004194.png differ
diff --git a/static/icons/06004196.png b/static/icons/06004196.png
new file mode 100755
index 00000000..d603fe06
Binary files /dev/null and b/static/icons/06004196.png differ
diff --git a/static/icons/0600419E.png b/static/icons/0600419E.png
new file mode 100755
index 00000000..4235d6ee
Binary files /dev/null and b/static/icons/0600419E.png differ
diff --git a/static/icons/060041A0.png b/static/icons/060041A0.png
new file mode 100755
index 00000000..4f63cdc0
Binary files /dev/null and b/static/icons/060041A0.png differ
diff --git a/static/icons/060041A2.png b/static/icons/060041A2.png
new file mode 100755
index 00000000..e74080f8
Binary files /dev/null and b/static/icons/060041A2.png differ
diff --git a/static/icons/060041A7.png b/static/icons/060041A7.png
new file mode 100755
index 00000000..5681ea2f
Binary files /dev/null and b/static/icons/060041A7.png differ
diff --git a/static/icons/060041A9.png b/static/icons/060041A9.png
new file mode 100755
index 00000000..2bd6813a
Binary files /dev/null and b/static/icons/060041A9.png differ
diff --git a/static/icons/060041AC.png b/static/icons/060041AC.png
new file mode 100755
index 00000000..f2330e51
Binary files /dev/null and b/static/icons/060041AC.png differ
diff --git a/static/icons/060041AD.png b/static/icons/060041AD.png
new file mode 100755
index 00000000..cc979478
Binary files /dev/null and b/static/icons/060041AD.png differ
diff --git a/static/icons/060041AF.png b/static/icons/060041AF.png
new file mode 100755
index 00000000..5722bfd3
Binary files /dev/null and b/static/icons/060041AF.png differ
diff --git a/static/icons/060041B2.png b/static/icons/060041B2.png
new file mode 100755
index 00000000..cb00f97c
Binary files /dev/null and b/static/icons/060041B2.png differ
diff --git a/static/icons/060041B5.png b/static/icons/060041B5.png
new file mode 100755
index 00000000..8136e530
Binary files /dev/null and b/static/icons/060041B5.png differ
diff --git a/static/icons/060041B7.png b/static/icons/060041B7.png
new file mode 100755
index 00000000..0038101c
Binary files /dev/null and b/static/icons/060041B7.png differ
diff --git a/static/icons/060041B9.png b/static/icons/060041B9.png
new file mode 100755
index 00000000..e3f6e137
Binary files /dev/null and b/static/icons/060041B9.png differ
diff --git a/static/icons/060041BB.png b/static/icons/060041BB.png
new file mode 100755
index 00000000..c20cb533
Binary files /dev/null and b/static/icons/060041BB.png differ
diff --git a/static/icons/060041BD.png b/static/icons/060041BD.png
new file mode 100755
index 00000000..98c85682
Binary files /dev/null and b/static/icons/060041BD.png differ
diff --git a/static/icons/060041C0.png b/static/icons/060041C0.png
new file mode 100755
index 00000000..f0e52b7c
Binary files /dev/null and b/static/icons/060041C0.png differ
diff --git a/static/icons/060041C2.png b/static/icons/060041C2.png
new file mode 100755
index 00000000..583821dc
Binary files /dev/null and b/static/icons/060041C2.png differ
diff --git a/static/icons/060041C4.png b/static/icons/060041C4.png
new file mode 100755
index 00000000..2896a23a
Binary files /dev/null and b/static/icons/060041C4.png differ
diff --git a/static/icons/060041C6.png b/static/icons/060041C6.png
new file mode 100755
index 00000000..f31772bd
Binary files /dev/null and b/static/icons/060041C6.png differ
diff --git a/static/icons/060041C9.png b/static/icons/060041C9.png
new file mode 100755
index 00000000..f0a22a88
Binary files /dev/null and b/static/icons/060041C9.png differ
diff --git a/static/icons/060041CE.png b/static/icons/060041CE.png
new file mode 100755
index 00000000..a8f78ba0
Binary files /dev/null and b/static/icons/060041CE.png differ
diff --git a/static/icons/060041D0.png b/static/icons/060041D0.png
new file mode 100755
index 00000000..bde460d2
Binary files /dev/null and b/static/icons/060041D0.png differ
diff --git a/static/icons/060041D2.png b/static/icons/060041D2.png
new file mode 100755
index 00000000..1430d79a
Binary files /dev/null and b/static/icons/060041D2.png differ
diff --git a/static/icons/060041D7.png b/static/icons/060041D7.png
new file mode 100755
index 00000000..823473fc
Binary files /dev/null and b/static/icons/060041D7.png differ
diff --git a/static/icons/060041D9.png b/static/icons/060041D9.png
new file mode 100755
index 00000000..a1d6bb0d
Binary files /dev/null and b/static/icons/060041D9.png differ
diff --git a/static/icons/060041DB.png b/static/icons/060041DB.png
new file mode 100755
index 00000000..7a5f5ddc
Binary files /dev/null and b/static/icons/060041DB.png differ
diff --git a/static/icons/060041DD.png b/static/icons/060041DD.png
new file mode 100755
index 00000000..cfd01c24
Binary files /dev/null and b/static/icons/060041DD.png differ
diff --git a/static/icons/060041DF.png b/static/icons/060041DF.png
new file mode 100755
index 00000000..f80df9e3
Binary files /dev/null and b/static/icons/060041DF.png differ
diff --git a/static/icons/060041E1.png b/static/icons/060041E1.png
new file mode 100755
index 00000000..5d1bdd53
Binary files /dev/null and b/static/icons/060041E1.png differ
diff --git a/static/icons/060041E3.png b/static/icons/060041E3.png
new file mode 100755
index 00000000..d2c40c1d
Binary files /dev/null and b/static/icons/060041E3.png differ
diff --git a/static/icons/060041E5.png b/static/icons/060041E5.png
new file mode 100755
index 00000000..dc6b7f11
Binary files /dev/null and b/static/icons/060041E5.png differ
diff --git a/static/icons/060041E8.png b/static/icons/060041E8.png
new file mode 100755
index 00000000..6a85852f
Binary files /dev/null and b/static/icons/060041E8.png differ
diff --git a/static/icons/060041EC.png b/static/icons/060041EC.png
new file mode 100755
index 00000000..eb556d3f
Binary files /dev/null and b/static/icons/060041EC.png differ
diff --git a/static/icons/060041F1.png b/static/icons/060041F1.png
new file mode 100755
index 00000000..3afc148a
Binary files /dev/null and b/static/icons/060041F1.png differ
diff --git a/static/icons/060041F3.png b/static/icons/060041F3.png
new file mode 100755
index 00000000..414a9d82
Binary files /dev/null and b/static/icons/060041F3.png differ
diff --git a/static/icons/060041F5.png b/static/icons/060041F5.png
new file mode 100755
index 00000000..0bd94c49
Binary files /dev/null and b/static/icons/060041F5.png differ
diff --git a/static/icons/060041F7.png b/static/icons/060041F7.png
new file mode 100755
index 00000000..4a7f78b5
Binary files /dev/null and b/static/icons/060041F7.png differ
diff --git a/static/icons/060041F9.png b/static/icons/060041F9.png
new file mode 100755
index 00000000..4b9a1daf
Binary files /dev/null and b/static/icons/060041F9.png differ
diff --git a/static/icons/060041FB.png b/static/icons/060041FB.png
new file mode 100755
index 00000000..a5638aa6
Binary files /dev/null and b/static/icons/060041FB.png differ
diff --git a/static/icons/060041FD.png b/static/icons/060041FD.png
new file mode 100755
index 00000000..94df6499
Binary files /dev/null and b/static/icons/060041FD.png differ
diff --git a/static/icons/060041FF.png b/static/icons/060041FF.png
new file mode 100755
index 00000000..8b6e8498
Binary files /dev/null and b/static/icons/060041FF.png differ
diff --git a/static/icons/06004201.png b/static/icons/06004201.png
new file mode 100755
index 00000000..880938a1
Binary files /dev/null and b/static/icons/06004201.png differ
diff --git a/static/icons/06004203.png b/static/icons/06004203.png
new file mode 100755
index 00000000..6870e5b4
Binary files /dev/null and b/static/icons/06004203.png differ
diff --git a/static/icons/06004204.png b/static/icons/06004204.png
new file mode 100755
index 00000000..0cc60d29
Binary files /dev/null and b/static/icons/06004204.png differ
diff --git a/static/icons/06004205.png b/static/icons/06004205.png
new file mode 100755
index 00000000..1d7d21cf
Binary files /dev/null and b/static/icons/06004205.png differ
diff --git a/static/icons/06004207.png b/static/icons/06004207.png
new file mode 100755
index 00000000..d7645e16
Binary files /dev/null and b/static/icons/06004207.png differ
diff --git a/static/icons/06004209.png b/static/icons/06004209.png
new file mode 100755
index 00000000..559e615d
Binary files /dev/null and b/static/icons/06004209.png differ
diff --git a/static/icons/0600420B.png b/static/icons/0600420B.png
new file mode 100755
index 00000000..11e47203
Binary files /dev/null and b/static/icons/0600420B.png differ
diff --git a/static/icons/0600420D.png b/static/icons/0600420D.png
new file mode 100755
index 00000000..e9228288
Binary files /dev/null and b/static/icons/0600420D.png differ
diff --git a/static/icons/0600420F.png b/static/icons/0600420F.png
new file mode 100755
index 00000000..2fe335e8
Binary files /dev/null and b/static/icons/0600420F.png differ
diff --git a/static/icons/06004211.png b/static/icons/06004211.png
new file mode 100755
index 00000000..6c0de0af
Binary files /dev/null and b/static/icons/06004211.png differ
diff --git a/static/icons/06004213.png b/static/icons/06004213.png
new file mode 100755
index 00000000..d6c8a8c8
Binary files /dev/null and b/static/icons/06004213.png differ
diff --git a/static/icons/06004215.png b/static/icons/06004215.png
new file mode 100755
index 00000000..8aca25ff
Binary files /dev/null and b/static/icons/06004215.png differ
diff --git a/static/icons/06004217.png b/static/icons/06004217.png
new file mode 100755
index 00000000..f864c750
Binary files /dev/null and b/static/icons/06004217.png differ
diff --git a/static/icons/06004219.png b/static/icons/06004219.png
new file mode 100755
index 00000000..e7a8bace
Binary files /dev/null and b/static/icons/06004219.png differ
diff --git a/static/icons/0600421B.png b/static/icons/0600421B.png
new file mode 100755
index 00000000..1d9ac672
Binary files /dev/null and b/static/icons/0600421B.png differ
diff --git a/static/icons/0600421D.png b/static/icons/0600421D.png
new file mode 100755
index 00000000..9d79b156
Binary files /dev/null and b/static/icons/0600421D.png differ
diff --git a/static/icons/0600421F.png b/static/icons/0600421F.png
new file mode 100755
index 00000000..0a86df8c
Binary files /dev/null and b/static/icons/0600421F.png differ
diff --git a/static/icons/06004221.png b/static/icons/06004221.png
new file mode 100755
index 00000000..d7142f8f
Binary files /dev/null and b/static/icons/06004221.png differ
diff --git a/static/icons/06004223.png b/static/icons/06004223.png
new file mode 100755
index 00000000..e5d53fc4
Binary files /dev/null and b/static/icons/06004223.png differ
diff --git a/static/icons/06004225.png b/static/icons/06004225.png
new file mode 100755
index 00000000..b5ba3510
Binary files /dev/null and b/static/icons/06004225.png differ
diff --git a/static/icons/06004227.png b/static/icons/06004227.png
new file mode 100755
index 00000000..38d0611e
Binary files /dev/null and b/static/icons/06004227.png differ
diff --git a/static/icons/06004229.png b/static/icons/06004229.png
new file mode 100755
index 00000000..eb926578
Binary files /dev/null and b/static/icons/06004229.png differ
diff --git a/static/icons/0600422B.png b/static/icons/0600422B.png
new file mode 100755
index 00000000..8bf0a4c0
Binary files /dev/null and b/static/icons/0600422B.png differ
diff --git a/static/icons/0600422E.png b/static/icons/0600422E.png
new file mode 100755
index 00000000..848341dd
Binary files /dev/null and b/static/icons/0600422E.png differ
diff --git a/static/icons/06004231.png b/static/icons/06004231.png
new file mode 100755
index 00000000..3159b7e0
Binary files /dev/null and b/static/icons/06004231.png differ
diff --git a/static/icons/06004234.png b/static/icons/06004234.png
new file mode 100755
index 00000000..099725a3
Binary files /dev/null and b/static/icons/06004234.png differ
diff --git a/static/icons/06004236.png b/static/icons/06004236.png
new file mode 100755
index 00000000..7835fa63
Binary files /dev/null and b/static/icons/06004236.png differ
diff --git a/static/icons/06004238.png b/static/icons/06004238.png
new file mode 100755
index 00000000..52c793bc
Binary files /dev/null and b/static/icons/06004238.png differ
diff --git a/static/icons/0600423A.png b/static/icons/0600423A.png
new file mode 100755
index 00000000..ca66106c
Binary files /dev/null and b/static/icons/0600423A.png differ
diff --git a/static/icons/0600423E.png b/static/icons/0600423E.png
new file mode 100755
index 00000000..bfa46bfb
Binary files /dev/null and b/static/icons/0600423E.png differ
diff --git a/static/icons/0600423F.png b/static/icons/0600423F.png
new file mode 100755
index 00000000..9090d51f
Binary files /dev/null and b/static/icons/0600423F.png differ
diff --git a/static/icons/06004241.png b/static/icons/06004241.png
new file mode 100755
index 00000000..25eb4534
Binary files /dev/null and b/static/icons/06004241.png differ
diff --git a/static/icons/06004243.png b/static/icons/06004243.png
new file mode 100755
index 00000000..2b2ada0b
Binary files /dev/null and b/static/icons/06004243.png differ
diff --git a/static/icons/06004245.png b/static/icons/06004245.png
new file mode 100755
index 00000000..85b196d9
Binary files /dev/null and b/static/icons/06004245.png differ
diff --git a/static/icons/06004247.png b/static/icons/06004247.png
new file mode 100755
index 00000000..0c358782
Binary files /dev/null and b/static/icons/06004247.png differ
diff --git a/static/icons/06004249.png b/static/icons/06004249.png
new file mode 100755
index 00000000..8a0f7423
Binary files /dev/null and b/static/icons/06004249.png differ
diff --git a/static/icons/0600424B.png b/static/icons/0600424B.png
new file mode 100755
index 00000000..f1e746ef
Binary files /dev/null and b/static/icons/0600424B.png differ
diff --git a/static/icons/0600424D.png b/static/icons/0600424D.png
new file mode 100755
index 00000000..8d05b2ad
Binary files /dev/null and b/static/icons/0600424D.png differ
diff --git a/static/icons/06004251.png b/static/icons/06004251.png
new file mode 100755
index 00000000..882d3945
Binary files /dev/null and b/static/icons/06004251.png differ
diff --git a/static/icons/06004253.png b/static/icons/06004253.png
new file mode 100755
index 00000000..241f404a
Binary files /dev/null and b/static/icons/06004253.png differ
diff --git a/static/icons/06004256.png b/static/icons/06004256.png
new file mode 100755
index 00000000..02b7c165
Binary files /dev/null and b/static/icons/06004256.png differ
diff --git a/static/icons/06004258.png b/static/icons/06004258.png
new file mode 100755
index 00000000..4f53698a
Binary files /dev/null and b/static/icons/06004258.png differ
diff --git a/static/icons/0600425A.png b/static/icons/0600425A.png
new file mode 100755
index 00000000..034db58f
Binary files /dev/null and b/static/icons/0600425A.png differ
diff --git a/static/icons/0600425C.png b/static/icons/0600425C.png
new file mode 100755
index 00000000..a4610bc5
Binary files /dev/null and b/static/icons/0600425C.png differ
diff --git a/static/icons/0600425F.png b/static/icons/0600425F.png
new file mode 100755
index 00000000..89779edc
Binary files /dev/null and b/static/icons/0600425F.png differ
diff --git a/static/icons/06004261.png b/static/icons/06004261.png
new file mode 100755
index 00000000..641b299d
Binary files /dev/null and b/static/icons/06004261.png differ
diff --git a/static/icons/06004263.png b/static/icons/06004263.png
new file mode 100755
index 00000000..b5212edb
Binary files /dev/null and b/static/icons/06004263.png differ
diff --git a/static/icons/06004265.png b/static/icons/06004265.png
new file mode 100755
index 00000000..4f3f8736
Binary files /dev/null and b/static/icons/06004265.png differ
diff --git a/static/icons/06004267.png b/static/icons/06004267.png
new file mode 100755
index 00000000..6340b358
Binary files /dev/null and b/static/icons/06004267.png differ
diff --git a/static/icons/06004269.png b/static/icons/06004269.png
new file mode 100755
index 00000000..48ca50f8
Binary files /dev/null and b/static/icons/06004269.png differ
diff --git a/static/icons/06004274.png b/static/icons/06004274.png
new file mode 100755
index 00000000..01f222e3
Binary files /dev/null and b/static/icons/06004274.png differ
diff --git a/static/icons/06004276.png b/static/icons/06004276.png
new file mode 100755
index 00000000..c82dea68
Binary files /dev/null and b/static/icons/06004276.png differ
diff --git a/static/icons/06004278.png b/static/icons/06004278.png
new file mode 100755
index 00000000..8cf2a4ac
Binary files /dev/null and b/static/icons/06004278.png differ
diff --git a/static/icons/0600427A.png b/static/icons/0600427A.png
new file mode 100755
index 00000000..0461f4b0
Binary files /dev/null and b/static/icons/0600427A.png differ
diff --git a/static/icons/0600427C.png b/static/icons/0600427C.png
new file mode 100755
index 00000000..5bc1da34
Binary files /dev/null and b/static/icons/0600427C.png differ
diff --git a/static/icons/0600427E.png b/static/icons/0600427E.png
new file mode 100755
index 00000000..be7abc1f
Binary files /dev/null and b/static/icons/0600427E.png differ
diff --git a/static/icons/06004280.png b/static/icons/06004280.png
new file mode 100755
index 00000000..3d87fb88
Binary files /dev/null and b/static/icons/06004280.png differ
diff --git a/static/icons/06004282.png b/static/icons/06004282.png
new file mode 100755
index 00000000..d9ce8882
Binary files /dev/null and b/static/icons/06004282.png differ
diff --git a/static/icons/06004284.png b/static/icons/06004284.png
new file mode 100755
index 00000000..7e5d8541
Binary files /dev/null and b/static/icons/06004284.png differ
diff --git a/static/icons/06004286.png b/static/icons/06004286.png
new file mode 100755
index 00000000..4c85f5b0
Binary files /dev/null and b/static/icons/06004286.png differ
diff --git a/static/icons/0600428B.png b/static/icons/0600428B.png
new file mode 100755
index 00000000..6f8ae54e
Binary files /dev/null and b/static/icons/0600428B.png differ
diff --git a/static/icons/0600428E.png b/static/icons/0600428E.png
new file mode 100755
index 00000000..2b811c96
Binary files /dev/null and b/static/icons/0600428E.png differ
diff --git a/static/icons/06004290.png b/static/icons/06004290.png
new file mode 100755
index 00000000..addc32f4
Binary files /dev/null and b/static/icons/06004290.png differ
diff --git a/static/icons/06004292.png b/static/icons/06004292.png
new file mode 100755
index 00000000..888ef5e7
Binary files /dev/null and b/static/icons/06004292.png differ
diff --git a/static/icons/06004294.png b/static/icons/06004294.png
new file mode 100755
index 00000000..b79b6720
Binary files /dev/null and b/static/icons/06004294.png differ
diff --git a/static/icons/06004296.png b/static/icons/06004296.png
new file mode 100755
index 00000000..8bdc6a6d
Binary files /dev/null and b/static/icons/06004296.png differ
diff --git a/static/icons/06004298.png b/static/icons/06004298.png
new file mode 100755
index 00000000..122b9ceb
Binary files /dev/null and b/static/icons/06004298.png differ
diff --git a/static/icons/060042A2.png b/static/icons/060042A2.png
new file mode 100755
index 00000000..93749d8a
Binary files /dev/null and b/static/icons/060042A2.png differ
diff --git a/static/icons/060042A8.png b/static/icons/060042A8.png
new file mode 100755
index 00000000..2f26fb44
Binary files /dev/null and b/static/icons/060042A8.png differ
diff --git a/static/icons/060042AA.png b/static/icons/060042AA.png
new file mode 100755
index 00000000..54406131
Binary files /dev/null and b/static/icons/060042AA.png differ
diff --git a/static/icons/060042AC.png b/static/icons/060042AC.png
new file mode 100755
index 00000000..a284f853
Binary files /dev/null and b/static/icons/060042AC.png differ
diff --git a/static/icons/060042AE.png b/static/icons/060042AE.png
new file mode 100755
index 00000000..57c07ba7
Binary files /dev/null and b/static/icons/060042AE.png differ
diff --git a/static/icons/060042B0.png b/static/icons/060042B0.png
new file mode 100755
index 00000000..c7b7a0d6
Binary files /dev/null and b/static/icons/060042B0.png differ
diff --git a/static/icons/060042B2.png b/static/icons/060042B2.png
new file mode 100755
index 00000000..bc5e958b
Binary files /dev/null and b/static/icons/060042B2.png differ
diff --git a/static/icons/060042B4.png b/static/icons/060042B4.png
new file mode 100755
index 00000000..32d52c32
Binary files /dev/null and b/static/icons/060042B4.png differ
diff --git a/static/icons/060042B6.png b/static/icons/060042B6.png
new file mode 100755
index 00000000..55f11c9e
Binary files /dev/null and b/static/icons/060042B6.png differ
diff --git a/static/icons/060042B8.png b/static/icons/060042B8.png
new file mode 100755
index 00000000..099b34dd
Binary files /dev/null and b/static/icons/060042B8.png differ
diff --git a/static/icons/060042BA.png b/static/icons/060042BA.png
new file mode 100755
index 00000000..5f2035c3
Binary files /dev/null and b/static/icons/060042BA.png differ
diff --git a/static/icons/060042BC.png b/static/icons/060042BC.png
new file mode 100755
index 00000000..02881817
Binary files /dev/null and b/static/icons/060042BC.png differ
diff --git a/static/icons/060042BE.png b/static/icons/060042BE.png
new file mode 100755
index 00000000..8d986554
Binary files /dev/null and b/static/icons/060042BE.png differ
diff --git a/static/icons/060042C0.png b/static/icons/060042C0.png
new file mode 100755
index 00000000..1b4f19c7
Binary files /dev/null and b/static/icons/060042C0.png differ
diff --git a/static/icons/060042C1.png b/static/icons/060042C1.png
new file mode 100755
index 00000000..b4826ede
Binary files /dev/null and b/static/icons/060042C1.png differ
diff --git a/static/icons/060042C2.png b/static/icons/060042C2.png
new file mode 100755
index 00000000..87a0ea00
Binary files /dev/null and b/static/icons/060042C2.png differ
diff --git a/static/icons/060042C4.png b/static/icons/060042C4.png
new file mode 100755
index 00000000..56a10c25
Binary files /dev/null and b/static/icons/060042C4.png differ
diff --git a/static/icons/060042C6.png b/static/icons/060042C6.png
new file mode 100755
index 00000000..b526cbdd
Binary files /dev/null and b/static/icons/060042C6.png differ
diff --git a/static/icons/060042C8.png b/static/icons/060042C8.png
new file mode 100755
index 00000000..4d90db2c
Binary files /dev/null and b/static/icons/060042C8.png differ
diff --git a/static/icons/060042CA.png b/static/icons/060042CA.png
new file mode 100755
index 00000000..c7edc8d8
Binary files /dev/null and b/static/icons/060042CA.png differ
diff --git a/static/icons/060042CD.png b/static/icons/060042CD.png
new file mode 100755
index 00000000..971ca92c
Binary files /dev/null and b/static/icons/060042CD.png differ
diff --git a/static/icons/060042CF.png b/static/icons/060042CF.png
new file mode 100755
index 00000000..1d859731
Binary files /dev/null and b/static/icons/060042CF.png differ
diff --git a/static/icons/060042D4.png b/static/icons/060042D4.png
new file mode 100755
index 00000000..66e8ea43
Binary files /dev/null and b/static/icons/060042D4.png differ
diff --git a/static/icons/060042D6.png b/static/icons/060042D6.png
new file mode 100755
index 00000000..cdf3406e
Binary files /dev/null and b/static/icons/060042D6.png differ
diff --git a/static/icons/060042D8.png b/static/icons/060042D8.png
new file mode 100755
index 00000000..1dedd156
Binary files /dev/null and b/static/icons/060042D8.png differ
diff --git a/static/icons/060042DA.png b/static/icons/060042DA.png
new file mode 100755
index 00000000..d120a3d6
Binary files /dev/null and b/static/icons/060042DA.png differ
diff --git a/static/icons/060042DC.png b/static/icons/060042DC.png
new file mode 100755
index 00000000..b1f3ce7e
Binary files /dev/null and b/static/icons/060042DC.png differ
diff --git a/static/icons/060042DF.png b/static/icons/060042DF.png
new file mode 100755
index 00000000..25249ae9
Binary files /dev/null and b/static/icons/060042DF.png differ
diff --git a/static/icons/060042E0.png b/static/icons/060042E0.png
new file mode 100755
index 00000000..881fb2c1
Binary files /dev/null and b/static/icons/060042E0.png differ
diff --git a/static/icons/060042E1.png b/static/icons/060042E1.png
new file mode 100755
index 00000000..127fe95e
Binary files /dev/null and b/static/icons/060042E1.png differ
diff --git a/static/icons/060042E2.png b/static/icons/060042E2.png
new file mode 100755
index 00000000..997d131e
Binary files /dev/null and b/static/icons/060042E2.png differ
diff --git a/static/icons/060042E3.png b/static/icons/060042E3.png
new file mode 100755
index 00000000..763814d5
Binary files /dev/null and b/static/icons/060042E3.png differ
diff --git a/static/icons/060042E4.png b/static/icons/060042E4.png
new file mode 100755
index 00000000..4dbb0af1
Binary files /dev/null and b/static/icons/060042E4.png differ
diff --git a/static/icons/060042E5.png b/static/icons/060042E5.png
new file mode 100755
index 00000000..88eae907
Binary files /dev/null and b/static/icons/060042E5.png differ
diff --git a/static/icons/060042E6.png b/static/icons/060042E6.png
new file mode 100755
index 00000000..99f13d54
Binary files /dev/null and b/static/icons/060042E6.png differ
diff --git a/static/icons/060042E7.png b/static/icons/060042E7.png
new file mode 100755
index 00000000..f6bb9ae2
Binary files /dev/null and b/static/icons/060042E7.png differ
diff --git a/static/icons/060042E8.png b/static/icons/060042E8.png
new file mode 100755
index 00000000..b7f6860d
Binary files /dev/null and b/static/icons/060042E8.png differ
diff --git a/static/icons/060042E9.png b/static/icons/060042E9.png
new file mode 100755
index 00000000..ab63c1ce
Binary files /dev/null and b/static/icons/060042E9.png differ
diff --git a/static/icons/060042EA.png b/static/icons/060042EA.png
new file mode 100755
index 00000000..c78a1aa3
Binary files /dev/null and b/static/icons/060042EA.png differ
diff --git a/static/icons/060042EB.png b/static/icons/060042EB.png
new file mode 100755
index 00000000..b9bf3c0c
Binary files /dev/null and b/static/icons/060042EB.png differ
diff --git a/static/icons/060042EC.png b/static/icons/060042EC.png
new file mode 100755
index 00000000..22136fad
Binary files /dev/null and b/static/icons/060042EC.png differ
diff --git a/static/icons/060042ED.png b/static/icons/060042ED.png
new file mode 100755
index 00000000..1b4b004d
Binary files /dev/null and b/static/icons/060042ED.png differ
diff --git a/static/icons/060042EE.png b/static/icons/060042EE.png
new file mode 100755
index 00000000..7f830090
Binary files /dev/null and b/static/icons/060042EE.png differ
diff --git a/static/icons/060042EF.png b/static/icons/060042EF.png
new file mode 100755
index 00000000..cb07fece
Binary files /dev/null and b/static/icons/060042EF.png differ
diff --git a/static/icons/060042F0.png b/static/icons/060042F0.png
new file mode 100755
index 00000000..272a83c3
Binary files /dev/null and b/static/icons/060042F0.png differ
diff --git a/static/icons/060042F1.png b/static/icons/060042F1.png
new file mode 100755
index 00000000..a94c40e9
Binary files /dev/null and b/static/icons/060042F1.png differ
diff --git a/static/icons/060042F2.png b/static/icons/060042F2.png
new file mode 100755
index 00000000..5f65beb7
Binary files /dev/null and b/static/icons/060042F2.png differ
diff --git a/static/icons/060042F3.png b/static/icons/060042F3.png
new file mode 100755
index 00000000..c232fc8a
Binary files /dev/null and b/static/icons/060042F3.png differ
diff --git a/static/icons/060042F4.png b/static/icons/060042F4.png
new file mode 100755
index 00000000..83130e5e
Binary files /dev/null and b/static/icons/060042F4.png differ
diff --git a/static/icons/060042F5.png b/static/icons/060042F5.png
new file mode 100755
index 00000000..d6e7d9f2
Binary files /dev/null and b/static/icons/060042F5.png differ
diff --git a/static/icons/060042F7.png b/static/icons/060042F7.png
new file mode 100755
index 00000000..9c022937
Binary files /dev/null and b/static/icons/060042F7.png differ
diff --git a/static/icons/060042F9.png b/static/icons/060042F9.png
new file mode 100755
index 00000000..aa3ba800
Binary files /dev/null and b/static/icons/060042F9.png differ
diff --git a/static/icons/060042FB.png b/static/icons/060042FB.png
new file mode 100755
index 00000000..1af28664
Binary files /dev/null and b/static/icons/060042FB.png differ
diff --git a/static/icons/060042FD.png b/static/icons/060042FD.png
new file mode 100755
index 00000000..3ee9d095
Binary files /dev/null and b/static/icons/060042FD.png differ
diff --git a/static/icons/060042FF.png b/static/icons/060042FF.png
new file mode 100755
index 00000000..e4cea7e2
Binary files /dev/null and b/static/icons/060042FF.png differ
diff --git a/static/icons/06004302.png b/static/icons/06004302.png
new file mode 100755
index 00000000..81f9728c
Binary files /dev/null and b/static/icons/06004302.png differ
diff --git a/static/icons/06004304.png b/static/icons/06004304.png
new file mode 100755
index 00000000..a219bb16
Binary files /dev/null and b/static/icons/06004304.png differ
diff --git a/static/icons/06004306.png b/static/icons/06004306.png
new file mode 100755
index 00000000..76824ca1
Binary files /dev/null and b/static/icons/06004306.png differ
diff --git a/static/icons/06004308.png b/static/icons/06004308.png
new file mode 100755
index 00000000..788412cd
Binary files /dev/null and b/static/icons/06004308.png differ
diff --git a/static/icons/0600430A.png b/static/icons/0600430A.png
new file mode 100755
index 00000000..a11aad5f
Binary files /dev/null and b/static/icons/0600430A.png differ
diff --git a/static/icons/0600430D.png b/static/icons/0600430D.png
new file mode 100755
index 00000000..0435bc4b
Binary files /dev/null and b/static/icons/0600430D.png differ
diff --git a/static/icons/0600430F.png b/static/icons/0600430F.png
new file mode 100755
index 00000000..1cdd40f9
Binary files /dev/null and b/static/icons/0600430F.png differ
diff --git a/static/icons/06004311.png b/static/icons/06004311.png
new file mode 100755
index 00000000..98a790f5
Binary files /dev/null and b/static/icons/06004311.png differ
diff --git a/static/icons/06004313.png b/static/icons/06004313.png
new file mode 100755
index 00000000..c73d7ba8
Binary files /dev/null and b/static/icons/06004313.png differ
diff --git a/static/icons/06004315.png b/static/icons/06004315.png
new file mode 100755
index 00000000..2ab4432e
Binary files /dev/null and b/static/icons/06004315.png differ
diff --git a/static/icons/06004317.png b/static/icons/06004317.png
new file mode 100755
index 00000000..a3f6de32
Binary files /dev/null and b/static/icons/06004317.png differ
diff --git a/static/icons/06004319.png b/static/icons/06004319.png
new file mode 100755
index 00000000..cc9f2764
Binary files /dev/null and b/static/icons/06004319.png differ
diff --git a/static/icons/0600431B.png b/static/icons/0600431B.png
new file mode 100755
index 00000000..617e34ee
Binary files /dev/null and b/static/icons/0600431B.png differ
diff --git a/static/icons/0600431D.png b/static/icons/0600431D.png
new file mode 100755
index 00000000..91ef088b
Binary files /dev/null and b/static/icons/0600431D.png differ
diff --git a/static/icons/0600431E.png b/static/icons/0600431E.png
new file mode 100755
index 00000000..7de30925
Binary files /dev/null and b/static/icons/0600431E.png differ
diff --git a/static/icons/06004321.png b/static/icons/06004321.png
new file mode 100755
index 00000000..244c67df
Binary files /dev/null and b/static/icons/06004321.png differ
diff --git a/static/icons/06004322.png b/static/icons/06004322.png
new file mode 100755
index 00000000..0a9eb379
Binary files /dev/null and b/static/icons/06004322.png differ
diff --git a/static/icons/06004323.png b/static/icons/06004323.png
new file mode 100755
index 00000000..fc6bdf25
Binary files /dev/null and b/static/icons/06004323.png differ
diff --git a/static/icons/06004324.png b/static/icons/06004324.png
new file mode 100755
index 00000000..2fb626c9
Binary files /dev/null and b/static/icons/06004324.png differ
diff --git a/static/icons/06004325.png b/static/icons/06004325.png
new file mode 100755
index 00000000..83db1616
Binary files /dev/null and b/static/icons/06004325.png differ
diff --git a/static/icons/06004326.png b/static/icons/06004326.png
new file mode 100755
index 00000000..031713aa
Binary files /dev/null and b/static/icons/06004326.png differ
diff --git a/static/icons/06004327.png b/static/icons/06004327.png
new file mode 100755
index 00000000..2329758d
Binary files /dev/null and b/static/icons/06004327.png differ
diff --git a/static/icons/06004328.png b/static/icons/06004328.png
new file mode 100755
index 00000000..8a152fd9
Binary files /dev/null and b/static/icons/06004328.png differ
diff --git a/static/icons/0600432D.png b/static/icons/0600432D.png
new file mode 100755
index 00000000..83b9cf17
Binary files /dev/null and b/static/icons/0600432D.png differ
diff --git a/static/icons/0600432E.png b/static/icons/0600432E.png
new file mode 100755
index 00000000..8e90f927
Binary files /dev/null and b/static/icons/0600432E.png differ
diff --git a/static/icons/0600432F.png b/static/icons/0600432F.png
new file mode 100755
index 00000000..813bee97
Binary files /dev/null and b/static/icons/0600432F.png differ
diff --git a/static/icons/06004330.png b/static/icons/06004330.png
new file mode 100755
index 00000000..6c52dee4
Binary files /dev/null and b/static/icons/06004330.png differ
diff --git a/static/icons/06004331.png b/static/icons/06004331.png
new file mode 100755
index 00000000..a79719a6
Binary files /dev/null and b/static/icons/06004331.png differ
diff --git a/static/icons/06004332.png b/static/icons/06004332.png
new file mode 100755
index 00000000..275b08b4
Binary files /dev/null and b/static/icons/06004332.png differ
diff --git a/static/icons/06004333.png b/static/icons/06004333.png
new file mode 100755
index 00000000..c045161c
Binary files /dev/null and b/static/icons/06004333.png differ
diff --git a/static/icons/06004334.png b/static/icons/06004334.png
new file mode 100755
index 00000000..a87fd3d6
Binary files /dev/null and b/static/icons/06004334.png differ
diff --git a/static/icons/06004335.png b/static/icons/06004335.png
new file mode 100755
index 00000000..571b0c3e
Binary files /dev/null and b/static/icons/06004335.png differ
diff --git a/static/icons/06004336.png b/static/icons/06004336.png
new file mode 100755
index 00000000..ea21f96b
Binary files /dev/null and b/static/icons/06004336.png differ
diff --git a/static/icons/06004337.png b/static/icons/06004337.png
new file mode 100755
index 00000000..f8752b54
Binary files /dev/null and b/static/icons/06004337.png differ
diff --git a/static/icons/06004338.png b/static/icons/06004338.png
new file mode 100755
index 00000000..ebdcdd24
Binary files /dev/null and b/static/icons/06004338.png differ
diff --git a/static/icons/06004339.png b/static/icons/06004339.png
new file mode 100755
index 00000000..14035e03
Binary files /dev/null and b/static/icons/06004339.png differ
diff --git a/static/icons/0600433A.png b/static/icons/0600433A.png
new file mode 100755
index 00000000..6e59bbee
Binary files /dev/null and b/static/icons/0600433A.png differ
diff --git a/static/icons/0600433B.png b/static/icons/0600433B.png
new file mode 100755
index 00000000..2652dbee
Binary files /dev/null and b/static/icons/0600433B.png differ
diff --git a/static/icons/0600433C.png b/static/icons/0600433C.png
new file mode 100755
index 00000000..c53445d1
Binary files /dev/null and b/static/icons/0600433C.png differ
diff --git a/static/icons/0600433F.png b/static/icons/0600433F.png
new file mode 100755
index 00000000..ce9d939c
Binary files /dev/null and b/static/icons/0600433F.png differ
diff --git a/static/icons/06004348.png b/static/icons/06004348.png
new file mode 100755
index 00000000..37efb993
Binary files /dev/null and b/static/icons/06004348.png differ
diff --git a/static/icons/06004349.png b/static/icons/06004349.png
new file mode 100755
index 00000000..533e608a
Binary files /dev/null and b/static/icons/06004349.png differ
diff --git a/static/icons/0600434A.png b/static/icons/0600434A.png
new file mode 100755
index 00000000..6f38c990
Binary files /dev/null and b/static/icons/0600434A.png differ
diff --git a/static/icons/0600436B.png b/static/icons/0600436B.png
new file mode 100755
index 00000000..6e65cfbc
Binary files /dev/null and b/static/icons/0600436B.png differ
diff --git a/static/icons/0600436E.png b/static/icons/0600436E.png
new file mode 100755
index 00000000..bcb98bfd
Binary files /dev/null and b/static/icons/0600436E.png differ
diff --git a/static/icons/0600436F.png b/static/icons/0600436F.png
new file mode 100755
index 00000000..33b42428
Binary files /dev/null and b/static/icons/0600436F.png differ
diff --git a/static/icons/06004370.png b/static/icons/06004370.png
new file mode 100755
index 00000000..e55ae8cd
Binary files /dev/null and b/static/icons/06004370.png differ
diff --git a/static/icons/06004372.png b/static/icons/06004372.png
new file mode 100755
index 00000000..cddcbc20
Binary files /dev/null and b/static/icons/06004372.png differ
diff --git a/static/icons/06004374.png b/static/icons/06004374.png
new file mode 100755
index 00000000..51cb3f90
Binary files /dev/null and b/static/icons/06004374.png differ
diff --git a/static/icons/06004376.png b/static/icons/06004376.png
new file mode 100755
index 00000000..f680deb7
Binary files /dev/null and b/static/icons/06004376.png differ
diff --git a/static/icons/06004378.png b/static/icons/06004378.png
new file mode 100755
index 00000000..e3614a0c
Binary files /dev/null and b/static/icons/06004378.png differ
diff --git a/static/icons/0600437A.png b/static/icons/0600437A.png
new file mode 100755
index 00000000..7790df08
Binary files /dev/null and b/static/icons/0600437A.png differ
diff --git a/static/icons/0600437C.png b/static/icons/0600437C.png
new file mode 100755
index 00000000..6773f4b7
Binary files /dev/null and b/static/icons/0600437C.png differ
diff --git a/static/icons/0600437E.png b/static/icons/0600437E.png
new file mode 100755
index 00000000..dc1259f3
Binary files /dev/null and b/static/icons/0600437E.png differ
diff --git a/static/icons/06004381.png b/static/icons/06004381.png
new file mode 100755
index 00000000..ffddf8d8
Binary files /dev/null and b/static/icons/06004381.png differ
diff --git a/static/icons/06004383.png b/static/icons/06004383.png
new file mode 100755
index 00000000..d5b47178
Binary files /dev/null and b/static/icons/06004383.png differ
diff --git a/static/icons/06004385.png b/static/icons/06004385.png
new file mode 100755
index 00000000..1beaad91
Binary files /dev/null and b/static/icons/06004385.png differ
diff --git a/static/icons/06004387.png b/static/icons/06004387.png
new file mode 100755
index 00000000..efe27376
Binary files /dev/null and b/static/icons/06004387.png differ
diff --git a/static/icons/06004389.png b/static/icons/06004389.png
new file mode 100755
index 00000000..d9c2ba34
Binary files /dev/null and b/static/icons/06004389.png differ
diff --git a/static/icons/0600438B.png b/static/icons/0600438B.png
new file mode 100755
index 00000000..c41fc452
Binary files /dev/null and b/static/icons/0600438B.png differ
diff --git a/static/icons/0600438D.png b/static/icons/0600438D.png
new file mode 100755
index 00000000..cb0ab34d
Binary files /dev/null and b/static/icons/0600438D.png differ
diff --git a/static/icons/0600438F.png b/static/icons/0600438F.png
new file mode 100755
index 00000000..7ddab2e9
Binary files /dev/null and b/static/icons/0600438F.png differ
diff --git a/static/icons/06004392.png b/static/icons/06004392.png
new file mode 100755
index 00000000..12029f2a
Binary files /dev/null and b/static/icons/06004392.png differ
diff --git a/static/icons/060043B9.png b/static/icons/060043B9.png
new file mode 100755
index 00000000..159aa12a
Binary files /dev/null and b/static/icons/060043B9.png differ
diff --git a/static/icons/060043BB.png b/static/icons/060043BB.png
new file mode 100755
index 00000000..146f7355
Binary files /dev/null and b/static/icons/060043BB.png differ
diff --git a/static/icons/060043BD.png b/static/icons/060043BD.png
new file mode 100755
index 00000000..3ff2a251
Binary files /dev/null and b/static/icons/060043BD.png differ
diff --git a/static/icons/060043BF.png b/static/icons/060043BF.png
new file mode 100755
index 00000000..e1aa78f5
Binary files /dev/null and b/static/icons/060043BF.png differ
diff --git a/static/icons/060043C7.png b/static/icons/060043C7.png
new file mode 100755
index 00000000..d91306d4
Binary files /dev/null and b/static/icons/060043C7.png differ
diff --git a/static/icons/060043C9.png b/static/icons/060043C9.png
new file mode 100755
index 00000000..959c1bef
Binary files /dev/null and b/static/icons/060043C9.png differ
diff --git a/static/icons/060043CB.png b/static/icons/060043CB.png
new file mode 100755
index 00000000..9d356829
Binary files /dev/null and b/static/icons/060043CB.png differ
diff --git a/static/icons/060043CD.png b/static/icons/060043CD.png
new file mode 100755
index 00000000..330ad1e0
Binary files /dev/null and b/static/icons/060043CD.png differ
diff --git a/static/icons/060043D3.png b/static/icons/060043D3.png
new file mode 100755
index 00000000..74ff6f68
Binary files /dev/null and b/static/icons/060043D3.png differ
diff --git a/static/icons/060043E8.png b/static/icons/060043E8.png
new file mode 100755
index 00000000..4b974a18
Binary files /dev/null and b/static/icons/060043E8.png differ
diff --git a/static/icons/060043E9.png b/static/icons/060043E9.png
new file mode 100755
index 00000000..1f730863
Binary files /dev/null and b/static/icons/060043E9.png differ
diff --git a/static/icons/060043EA.png b/static/icons/060043EA.png
new file mode 100755
index 00000000..b6b02567
Binary files /dev/null and b/static/icons/060043EA.png differ
diff --git a/static/icons/060043ED.png b/static/icons/060043ED.png
new file mode 100755
index 00000000..47d682cd
Binary files /dev/null and b/static/icons/060043ED.png differ
diff --git a/static/icons/060043EF.png b/static/icons/060043EF.png
new file mode 100755
index 00000000..76569c62
Binary files /dev/null and b/static/icons/060043EF.png differ
diff --git a/static/icons/060043F4.png b/static/icons/060043F4.png
new file mode 100755
index 00000000..a3a6e66b
Binary files /dev/null and b/static/icons/060043F4.png differ
diff --git a/static/icons/060043F5.png b/static/icons/060043F5.png
new file mode 100755
index 00000000..35237e62
Binary files /dev/null and b/static/icons/060043F5.png differ
diff --git a/static/icons/060043F6.png b/static/icons/060043F6.png
new file mode 100755
index 00000000..1da02b94
Binary files /dev/null and b/static/icons/060043F6.png differ
diff --git a/static/icons/060043F7.png b/static/icons/060043F7.png
new file mode 100755
index 00000000..39724171
Binary files /dev/null and b/static/icons/060043F7.png differ
diff --git a/static/icons/060043F8.png b/static/icons/060043F8.png
new file mode 100755
index 00000000..c7cafc89
Binary files /dev/null and b/static/icons/060043F8.png differ
diff --git a/static/icons/060043F9.png b/static/icons/060043F9.png
new file mode 100755
index 00000000..09b6f80b
Binary files /dev/null and b/static/icons/060043F9.png differ
diff --git a/static/icons/060043FA.png b/static/icons/060043FA.png
new file mode 100755
index 00000000..c57435bf
Binary files /dev/null and b/static/icons/060043FA.png differ
diff --git a/static/icons/060043FB.png b/static/icons/060043FB.png
new file mode 100755
index 00000000..a5190ff7
Binary files /dev/null and b/static/icons/060043FB.png differ
diff --git a/static/icons/060043FC.png b/static/icons/060043FC.png
new file mode 100755
index 00000000..9aba79c3
Binary files /dev/null and b/static/icons/060043FC.png differ
diff --git a/static/icons/060043FD.png b/static/icons/060043FD.png
new file mode 100755
index 00000000..3596aff0
Binary files /dev/null and b/static/icons/060043FD.png differ
diff --git a/static/icons/060043FE.png b/static/icons/060043FE.png
new file mode 100755
index 00000000..c128f088
Binary files /dev/null and b/static/icons/060043FE.png differ
diff --git a/static/icons/060043FF.png b/static/icons/060043FF.png
new file mode 100755
index 00000000..02ed559f
Binary files /dev/null and b/static/icons/060043FF.png differ
diff --git a/static/icons/06004400.png b/static/icons/06004400.png
new file mode 100755
index 00000000..7e73dd78
Binary files /dev/null and b/static/icons/06004400.png differ
diff --git a/static/icons/06004401.png b/static/icons/06004401.png
new file mode 100755
index 00000000..4e473f24
Binary files /dev/null and b/static/icons/06004401.png differ
diff --git a/static/icons/06004402.png b/static/icons/06004402.png
new file mode 100755
index 00000000..6af86776
Binary files /dev/null and b/static/icons/06004402.png differ
diff --git a/static/icons/06004403.png b/static/icons/06004403.png
new file mode 100755
index 00000000..76992c16
Binary files /dev/null and b/static/icons/06004403.png differ
diff --git a/static/icons/06004404.png b/static/icons/06004404.png
new file mode 100755
index 00000000..b939a438
Binary files /dev/null and b/static/icons/06004404.png differ
diff --git a/static/icons/06004405.png b/static/icons/06004405.png
new file mode 100755
index 00000000..f5f92d97
Binary files /dev/null and b/static/icons/06004405.png differ
diff --git a/static/icons/06004406.png b/static/icons/06004406.png
new file mode 100755
index 00000000..7c4f98d0
Binary files /dev/null and b/static/icons/06004406.png differ
diff --git a/static/icons/06004407.png b/static/icons/06004407.png
new file mode 100755
index 00000000..6fbf11e1
Binary files /dev/null and b/static/icons/06004407.png differ
diff --git a/static/icons/06004408.png b/static/icons/06004408.png
new file mode 100755
index 00000000..b46b5cfd
Binary files /dev/null and b/static/icons/06004408.png differ
diff --git a/static/icons/06004409.png b/static/icons/06004409.png
new file mode 100755
index 00000000..618b8ace
Binary files /dev/null and b/static/icons/06004409.png differ
diff --git a/static/icons/0600440A.png b/static/icons/0600440A.png
new file mode 100755
index 00000000..57258fd5
Binary files /dev/null and b/static/icons/0600440A.png differ
diff --git a/static/icons/06004417.png b/static/icons/06004417.png
new file mode 100755
index 00000000..e500e03e
Binary files /dev/null and b/static/icons/06004417.png differ
diff --git a/static/icons/06004419.png b/static/icons/06004419.png
new file mode 100755
index 00000000..131871b3
Binary files /dev/null and b/static/icons/06004419.png differ
diff --git a/static/icons/0600441B.png b/static/icons/0600441B.png
new file mode 100755
index 00000000..c0f502d9
Binary files /dev/null and b/static/icons/0600441B.png differ
diff --git a/static/icons/0600441D.png b/static/icons/0600441D.png
new file mode 100755
index 00000000..9c5e054e
Binary files /dev/null and b/static/icons/0600441D.png differ
diff --git a/static/icons/0600441F.png b/static/icons/0600441F.png
new file mode 100755
index 00000000..6e666f29
Binary files /dev/null and b/static/icons/0600441F.png differ
diff --git a/static/icons/06004421.png b/static/icons/06004421.png
new file mode 100755
index 00000000..64e1b5c2
Binary files /dev/null and b/static/icons/06004421.png differ
diff --git a/static/icons/06004423.png b/static/icons/06004423.png
new file mode 100755
index 00000000..bcac3614
Binary files /dev/null and b/static/icons/06004423.png differ
diff --git a/static/icons/06004425.png b/static/icons/06004425.png
new file mode 100755
index 00000000..291acc92
Binary files /dev/null and b/static/icons/06004425.png differ
diff --git a/static/icons/06004427.png b/static/icons/06004427.png
new file mode 100755
index 00000000..80bb431a
Binary files /dev/null and b/static/icons/06004427.png differ
diff --git a/static/icons/06004429.png b/static/icons/06004429.png
new file mode 100755
index 00000000..bd4a1767
Binary files /dev/null and b/static/icons/06004429.png differ
diff --git a/static/icons/0600442B.png b/static/icons/0600442B.png
new file mode 100755
index 00000000..07e85634
Binary files /dev/null and b/static/icons/0600442B.png differ
diff --git a/static/icons/0600442D.png b/static/icons/0600442D.png
new file mode 100755
index 00000000..255cdbf9
Binary files /dev/null and b/static/icons/0600442D.png differ
diff --git a/static/icons/0600442F.png b/static/icons/0600442F.png
new file mode 100755
index 00000000..ae589821
Binary files /dev/null and b/static/icons/0600442F.png differ
diff --git a/static/icons/06004431.png b/static/icons/06004431.png
new file mode 100755
index 00000000..59aef83c
Binary files /dev/null and b/static/icons/06004431.png differ
diff --git a/static/icons/06004433.png b/static/icons/06004433.png
new file mode 100755
index 00000000..6effc9e7
Binary files /dev/null and b/static/icons/06004433.png differ
diff --git a/static/icons/06004435.png b/static/icons/06004435.png
new file mode 100755
index 00000000..e5d2fb87
Binary files /dev/null and b/static/icons/06004435.png differ
diff --git a/static/icons/06004437.png b/static/icons/06004437.png
new file mode 100755
index 00000000..fd595051
Binary files /dev/null and b/static/icons/06004437.png differ
diff --git a/static/icons/06004438.png b/static/icons/06004438.png
new file mode 100755
index 00000000..38012862
Binary files /dev/null and b/static/icons/06004438.png differ
diff --git a/static/icons/0600443A.png b/static/icons/0600443A.png
new file mode 100755
index 00000000..467197ac
Binary files /dev/null and b/static/icons/0600443A.png differ
diff --git a/static/icons/0600443C.png b/static/icons/0600443C.png
new file mode 100755
index 00000000..a6596c78
Binary files /dev/null and b/static/icons/0600443C.png differ
diff --git a/static/icons/0600443E.png b/static/icons/0600443E.png
new file mode 100755
index 00000000..32609e41
Binary files /dev/null and b/static/icons/0600443E.png differ
diff --git a/static/icons/06004440.png b/static/icons/06004440.png
new file mode 100755
index 00000000..81936d7e
Binary files /dev/null and b/static/icons/06004440.png differ
diff --git a/static/icons/06004442.png b/static/icons/06004442.png
new file mode 100755
index 00000000..a2fa9426
Binary files /dev/null and b/static/icons/06004442.png differ
diff --git a/static/icons/06004444.png b/static/icons/06004444.png
new file mode 100755
index 00000000..4c3d9ac7
Binary files /dev/null and b/static/icons/06004444.png differ
diff --git a/static/icons/06004446.png b/static/icons/06004446.png
new file mode 100755
index 00000000..b5873ea7
Binary files /dev/null and b/static/icons/06004446.png differ
diff --git a/static/icons/06004448.png b/static/icons/06004448.png
new file mode 100755
index 00000000..bf4e2113
Binary files /dev/null and b/static/icons/06004448.png differ
diff --git a/static/icons/0600444A.png b/static/icons/0600444A.png
new file mode 100755
index 00000000..7058c455
Binary files /dev/null and b/static/icons/0600444A.png differ
diff --git a/static/icons/0600444C.png b/static/icons/0600444C.png
new file mode 100755
index 00000000..fa8d5ed7
Binary files /dev/null and b/static/icons/0600444C.png differ
diff --git a/static/icons/0600444F.png b/static/icons/0600444F.png
new file mode 100755
index 00000000..37675bdc
Binary files /dev/null and b/static/icons/0600444F.png differ
diff --git a/static/icons/06004451.png b/static/icons/06004451.png
new file mode 100755
index 00000000..774dac18
Binary files /dev/null and b/static/icons/06004451.png differ
diff --git a/static/icons/06004453.png b/static/icons/06004453.png
new file mode 100755
index 00000000..f1b08baa
Binary files /dev/null and b/static/icons/06004453.png differ
diff --git a/static/icons/06004455.png b/static/icons/06004455.png
new file mode 100755
index 00000000..97ece1b0
Binary files /dev/null and b/static/icons/06004455.png differ
diff --git a/static/icons/06004457.png b/static/icons/06004457.png
new file mode 100755
index 00000000..32f0d7ee
Binary files /dev/null and b/static/icons/06004457.png differ
diff --git a/static/icons/06004459.png b/static/icons/06004459.png
new file mode 100755
index 00000000..da233d17
Binary files /dev/null and b/static/icons/06004459.png differ
diff --git a/static/icons/0600445B.png b/static/icons/0600445B.png
new file mode 100755
index 00000000..9e0e0bb7
Binary files /dev/null and b/static/icons/0600445B.png differ
diff --git a/static/icons/0600445D.png b/static/icons/0600445D.png
new file mode 100755
index 00000000..578eeaa7
Binary files /dev/null and b/static/icons/0600445D.png differ
diff --git a/static/icons/0600445F.png b/static/icons/0600445F.png
new file mode 100755
index 00000000..7d367f1a
Binary files /dev/null and b/static/icons/0600445F.png differ
diff --git a/static/icons/06004461.png b/static/icons/06004461.png
new file mode 100755
index 00000000..24f1b246
Binary files /dev/null and b/static/icons/06004461.png differ
diff --git a/static/icons/06004463.png b/static/icons/06004463.png
new file mode 100755
index 00000000..8ec2d6cd
Binary files /dev/null and b/static/icons/06004463.png differ
diff --git a/static/icons/06004465.png b/static/icons/06004465.png
new file mode 100755
index 00000000..0a2cfdb2
Binary files /dev/null and b/static/icons/06004465.png differ
diff --git a/static/icons/06004467.png b/static/icons/06004467.png
new file mode 100755
index 00000000..62559941
Binary files /dev/null and b/static/icons/06004467.png differ
diff --git a/static/icons/06004469.png b/static/icons/06004469.png
new file mode 100755
index 00000000..5fdbdd55
Binary files /dev/null and b/static/icons/06004469.png differ
diff --git a/static/icons/0600446B.png b/static/icons/0600446B.png
new file mode 100755
index 00000000..64fe51ad
Binary files /dev/null and b/static/icons/0600446B.png differ
diff --git a/static/icons/0600446D.png b/static/icons/0600446D.png
new file mode 100755
index 00000000..97862339
Binary files /dev/null and b/static/icons/0600446D.png differ
diff --git a/static/icons/0600446F.png b/static/icons/0600446F.png
new file mode 100755
index 00000000..52d17975
Binary files /dev/null and b/static/icons/0600446F.png differ
diff --git a/static/icons/06004471.png b/static/icons/06004471.png
new file mode 100755
index 00000000..581291a5
Binary files /dev/null and b/static/icons/06004471.png differ
diff --git a/static/icons/06004473.png b/static/icons/06004473.png
new file mode 100755
index 00000000..a1e73904
Binary files /dev/null and b/static/icons/06004473.png differ
diff --git a/static/icons/06004475.png b/static/icons/06004475.png
new file mode 100755
index 00000000..02bef662
Binary files /dev/null and b/static/icons/06004475.png differ
diff --git a/static/icons/06004477.png b/static/icons/06004477.png
new file mode 100755
index 00000000..48f50e39
Binary files /dev/null and b/static/icons/06004477.png differ
diff --git a/static/icons/06004479.png b/static/icons/06004479.png
new file mode 100755
index 00000000..ec0ca884
Binary files /dev/null and b/static/icons/06004479.png differ
diff --git a/static/icons/0600447B.png b/static/icons/0600447B.png
new file mode 100755
index 00000000..1cad1e74
Binary files /dev/null and b/static/icons/0600447B.png differ
diff --git a/static/icons/0600447D.png b/static/icons/0600447D.png
new file mode 100755
index 00000000..178b139f
Binary files /dev/null and b/static/icons/0600447D.png differ
diff --git a/static/icons/0600447F.png b/static/icons/0600447F.png
new file mode 100755
index 00000000..6966d4f0
Binary files /dev/null and b/static/icons/0600447F.png differ
diff --git a/static/icons/06004481.png b/static/icons/06004481.png
new file mode 100755
index 00000000..3929f7f0
Binary files /dev/null and b/static/icons/06004481.png differ
diff --git a/static/icons/06004483.png b/static/icons/06004483.png
new file mode 100755
index 00000000..8888347e
Binary files /dev/null and b/static/icons/06004483.png differ
diff --git a/static/icons/06004485.png b/static/icons/06004485.png
new file mode 100755
index 00000000..70b116da
Binary files /dev/null and b/static/icons/06004485.png differ
diff --git a/static/icons/06004487.png b/static/icons/06004487.png
new file mode 100755
index 00000000..2ab0efac
Binary files /dev/null and b/static/icons/06004487.png differ
diff --git a/static/icons/06004489.png b/static/icons/06004489.png
new file mode 100755
index 00000000..d2f6e6df
Binary files /dev/null and b/static/icons/06004489.png differ
diff --git a/static/icons/0600448B.png b/static/icons/0600448B.png
new file mode 100755
index 00000000..0b952ef5
Binary files /dev/null and b/static/icons/0600448B.png differ
diff --git a/static/icons/0600448D.png b/static/icons/0600448D.png
new file mode 100755
index 00000000..d9721d10
Binary files /dev/null and b/static/icons/0600448D.png differ
diff --git a/static/icons/0600448E.png b/static/icons/0600448E.png
new file mode 100755
index 00000000..b04108a0
Binary files /dev/null and b/static/icons/0600448E.png differ
diff --git a/static/icons/0600448F.png b/static/icons/0600448F.png
new file mode 100755
index 00000000..ab355657
Binary files /dev/null and b/static/icons/0600448F.png differ
diff --git a/static/icons/06004491.png b/static/icons/06004491.png
new file mode 100755
index 00000000..02ed24ff
Binary files /dev/null and b/static/icons/06004491.png differ
diff --git a/static/icons/06004493.png b/static/icons/06004493.png
new file mode 100755
index 00000000..2741e9b9
Binary files /dev/null and b/static/icons/06004493.png differ
diff --git a/static/icons/06004495.png b/static/icons/06004495.png
new file mode 100755
index 00000000..9979bc1f
Binary files /dev/null and b/static/icons/06004495.png differ
diff --git a/static/icons/06004497.png b/static/icons/06004497.png
new file mode 100755
index 00000000..c06e3f68
Binary files /dev/null and b/static/icons/06004497.png differ
diff --git a/static/icons/06004499.png b/static/icons/06004499.png
new file mode 100755
index 00000000..86369cdd
Binary files /dev/null and b/static/icons/06004499.png differ
diff --git a/static/icons/060044A6.png b/static/icons/060044A6.png
new file mode 100755
index 00000000..edd40872
Binary files /dev/null and b/static/icons/060044A6.png differ
diff --git a/static/icons/060044A8.png b/static/icons/060044A8.png
new file mode 100755
index 00000000..fc4b25a6
Binary files /dev/null and b/static/icons/060044A8.png differ
diff --git a/static/icons/060044AA.png b/static/icons/060044AA.png
new file mode 100755
index 00000000..bc762e44
Binary files /dev/null and b/static/icons/060044AA.png differ
diff --git a/static/icons/060044AC.png b/static/icons/060044AC.png
new file mode 100755
index 00000000..6fcdc550
Binary files /dev/null and b/static/icons/060044AC.png differ
diff --git a/static/icons/060044AE.png b/static/icons/060044AE.png
new file mode 100755
index 00000000..4dc076af
Binary files /dev/null and b/static/icons/060044AE.png differ
diff --git a/static/icons/060044B0.png b/static/icons/060044B0.png
new file mode 100755
index 00000000..03fcb689
Binary files /dev/null and b/static/icons/060044B0.png differ
diff --git a/static/icons/060044B2.png b/static/icons/060044B2.png
new file mode 100755
index 00000000..7a573f47
Binary files /dev/null and b/static/icons/060044B2.png differ
diff --git a/static/icons/060044B4.png b/static/icons/060044B4.png
new file mode 100755
index 00000000..0601b54f
Binary files /dev/null and b/static/icons/060044B4.png differ
diff --git a/static/icons/060044B6.png b/static/icons/060044B6.png
new file mode 100755
index 00000000..dcbff05c
Binary files /dev/null and b/static/icons/060044B6.png differ
diff --git a/static/icons/060044B8.png b/static/icons/060044B8.png
new file mode 100755
index 00000000..4355eb80
Binary files /dev/null and b/static/icons/060044B8.png differ
diff --git a/static/icons/060044BA.png b/static/icons/060044BA.png
new file mode 100755
index 00000000..fca42b78
Binary files /dev/null and b/static/icons/060044BA.png differ
diff --git a/static/icons/060044BC.png b/static/icons/060044BC.png
new file mode 100755
index 00000000..adf73fbb
Binary files /dev/null and b/static/icons/060044BC.png differ
diff --git a/static/icons/060044BE.png b/static/icons/060044BE.png
new file mode 100755
index 00000000..0b4e5dca
Binary files /dev/null and b/static/icons/060044BE.png differ
diff --git a/static/icons/060044C0.png b/static/icons/060044C0.png
new file mode 100755
index 00000000..8f129263
Binary files /dev/null and b/static/icons/060044C0.png differ
diff --git a/static/icons/060044C2.png b/static/icons/060044C2.png
new file mode 100755
index 00000000..3c788349
Binary files /dev/null and b/static/icons/060044C2.png differ
diff --git a/static/icons/060044C4.png b/static/icons/060044C4.png
new file mode 100755
index 00000000..4ab404d9
Binary files /dev/null and b/static/icons/060044C4.png differ
diff --git a/static/icons/060044C6.png b/static/icons/060044C6.png
new file mode 100755
index 00000000..54ac043e
Binary files /dev/null and b/static/icons/060044C6.png differ
diff --git a/static/icons/060044C8.png b/static/icons/060044C8.png
new file mode 100755
index 00000000..a586a52b
Binary files /dev/null and b/static/icons/060044C8.png differ
diff --git a/static/icons/060044CA.png b/static/icons/060044CA.png
new file mode 100755
index 00000000..77e695f8
Binary files /dev/null and b/static/icons/060044CA.png differ
diff --git a/static/icons/060044CC.png b/static/icons/060044CC.png
new file mode 100755
index 00000000..1a8fbb05
Binary files /dev/null and b/static/icons/060044CC.png differ
diff --git a/static/icons/060044CE.png b/static/icons/060044CE.png
new file mode 100755
index 00000000..acbae585
Binary files /dev/null and b/static/icons/060044CE.png differ
diff --git a/static/icons/060044D0.png b/static/icons/060044D0.png
new file mode 100755
index 00000000..0412b273
Binary files /dev/null and b/static/icons/060044D0.png differ
diff --git a/static/icons/060044D2.png b/static/icons/060044D2.png
new file mode 100755
index 00000000..b548dea8
Binary files /dev/null and b/static/icons/060044D2.png differ
diff --git a/static/icons/060044D4.png b/static/icons/060044D4.png
new file mode 100755
index 00000000..93487a09
Binary files /dev/null and b/static/icons/060044D4.png differ
diff --git a/static/icons/060044D6.png b/static/icons/060044D6.png
new file mode 100755
index 00000000..47a61a24
Binary files /dev/null and b/static/icons/060044D6.png differ
diff --git a/static/icons/060044D8.png b/static/icons/060044D8.png
new file mode 100755
index 00000000..c2572f70
Binary files /dev/null and b/static/icons/060044D8.png differ
diff --git a/static/icons/060044DA.png b/static/icons/060044DA.png
new file mode 100755
index 00000000..0aa325f2
Binary files /dev/null and b/static/icons/060044DA.png differ
diff --git a/static/icons/060044DC.png b/static/icons/060044DC.png
new file mode 100755
index 00000000..56ef3c03
Binary files /dev/null and b/static/icons/060044DC.png differ
diff --git a/static/icons/060044DE.png b/static/icons/060044DE.png
new file mode 100755
index 00000000..43ac6260
Binary files /dev/null and b/static/icons/060044DE.png differ
diff --git a/static/icons/060044E0.png b/static/icons/060044E0.png
new file mode 100755
index 00000000..3fc679ff
Binary files /dev/null and b/static/icons/060044E0.png differ
diff --git a/static/icons/060044E2.png b/static/icons/060044E2.png
new file mode 100755
index 00000000..4380dcfd
Binary files /dev/null and b/static/icons/060044E2.png differ
diff --git a/static/icons/060044E4.png b/static/icons/060044E4.png
new file mode 100755
index 00000000..b232f6d3
Binary files /dev/null and b/static/icons/060044E4.png differ
diff --git a/static/icons/060044E6.png b/static/icons/060044E6.png
new file mode 100755
index 00000000..80d50dd5
Binary files /dev/null and b/static/icons/060044E6.png differ
diff --git a/static/icons/060044E8.png b/static/icons/060044E8.png
new file mode 100755
index 00000000..7091a432
Binary files /dev/null and b/static/icons/060044E8.png differ
diff --git a/static/icons/060044EA.png b/static/icons/060044EA.png
new file mode 100755
index 00000000..2044b2a1
Binary files /dev/null and b/static/icons/060044EA.png differ
diff --git a/static/icons/060044EC.png b/static/icons/060044EC.png
new file mode 100755
index 00000000..50bbb02e
Binary files /dev/null and b/static/icons/060044EC.png differ
diff --git a/static/icons/060044EE.png b/static/icons/060044EE.png
new file mode 100755
index 00000000..39b5c2e2
Binary files /dev/null and b/static/icons/060044EE.png differ
diff --git a/static/icons/060044F0.png b/static/icons/060044F0.png
new file mode 100755
index 00000000..34c5b3f4
Binary files /dev/null and b/static/icons/060044F0.png differ
diff --git a/static/icons/060044F2.png b/static/icons/060044F2.png
new file mode 100755
index 00000000..fcf781f2
Binary files /dev/null and b/static/icons/060044F2.png differ
diff --git a/static/icons/060044F4.png b/static/icons/060044F4.png
new file mode 100755
index 00000000..31b08226
Binary files /dev/null and b/static/icons/060044F4.png differ
diff --git a/static/icons/060044F6.png b/static/icons/060044F6.png
new file mode 100755
index 00000000..fb552b7e
Binary files /dev/null and b/static/icons/060044F6.png differ
diff --git a/static/icons/060044F8.png b/static/icons/060044F8.png
new file mode 100755
index 00000000..5818c21b
Binary files /dev/null and b/static/icons/060044F8.png differ
diff --git a/static/icons/060044FA.png b/static/icons/060044FA.png
new file mode 100755
index 00000000..06788a03
Binary files /dev/null and b/static/icons/060044FA.png differ
diff --git a/static/icons/060044FC.png b/static/icons/060044FC.png
new file mode 100755
index 00000000..6b7d874f
Binary files /dev/null and b/static/icons/060044FC.png differ
diff --git a/static/icons/060044FE.png b/static/icons/060044FE.png
new file mode 100755
index 00000000..835ba9d1
Binary files /dev/null and b/static/icons/060044FE.png differ
diff --git a/static/icons/06004500.png b/static/icons/06004500.png
new file mode 100755
index 00000000..4369e5ea
Binary files /dev/null and b/static/icons/06004500.png differ
diff --git a/static/icons/06004502.png b/static/icons/06004502.png
new file mode 100755
index 00000000..4e7fc60a
Binary files /dev/null and b/static/icons/06004502.png differ
diff --git a/static/icons/06004504.png b/static/icons/06004504.png
new file mode 100755
index 00000000..3cec3025
Binary files /dev/null and b/static/icons/06004504.png differ
diff --git a/static/icons/06004506.png b/static/icons/06004506.png
new file mode 100755
index 00000000..77b4aef6
Binary files /dev/null and b/static/icons/06004506.png differ
diff --git a/static/icons/06004508.png b/static/icons/06004508.png
new file mode 100755
index 00000000..9df2decd
Binary files /dev/null and b/static/icons/06004508.png differ
diff --git a/static/icons/0600450A.png b/static/icons/0600450A.png
new file mode 100755
index 00000000..4e8a2b36
Binary files /dev/null and b/static/icons/0600450A.png differ
diff --git a/static/icons/0600450C.png b/static/icons/0600450C.png
new file mode 100755
index 00000000..0583cc5c
Binary files /dev/null and b/static/icons/0600450C.png differ
diff --git a/static/icons/0600450E.png b/static/icons/0600450E.png
new file mode 100755
index 00000000..14285bf0
Binary files /dev/null and b/static/icons/0600450E.png differ
diff --git a/static/icons/06004510.png b/static/icons/06004510.png
new file mode 100755
index 00000000..5fc15981
Binary files /dev/null and b/static/icons/06004510.png differ
diff --git a/static/icons/06004512.png b/static/icons/06004512.png
new file mode 100755
index 00000000..39130698
Binary files /dev/null and b/static/icons/06004512.png differ
diff --git a/static/icons/06004518.png b/static/icons/06004518.png
new file mode 100755
index 00000000..0c38796e
Binary files /dev/null and b/static/icons/06004518.png differ
diff --git a/static/icons/0600451A.png b/static/icons/0600451A.png
new file mode 100755
index 00000000..4f467775
Binary files /dev/null and b/static/icons/0600451A.png differ
diff --git a/static/icons/0600451C.png b/static/icons/0600451C.png
new file mode 100755
index 00000000..afc835e3
Binary files /dev/null and b/static/icons/0600451C.png differ
diff --git a/static/icons/0600451E.png b/static/icons/0600451E.png
new file mode 100755
index 00000000..6e101179
Binary files /dev/null and b/static/icons/0600451E.png differ
diff --git a/static/icons/06004520.png b/static/icons/06004520.png
new file mode 100755
index 00000000..caac18e6
Binary files /dev/null and b/static/icons/06004520.png differ
diff --git a/static/icons/06004522.png b/static/icons/06004522.png
new file mode 100755
index 00000000..e564c615
Binary files /dev/null and b/static/icons/06004522.png differ
diff --git a/static/icons/06004524.png b/static/icons/06004524.png
new file mode 100755
index 00000000..5b1d5310
Binary files /dev/null and b/static/icons/06004524.png differ
diff --git a/static/icons/06004527.png b/static/icons/06004527.png
new file mode 100755
index 00000000..bd832967
Binary files /dev/null and b/static/icons/06004527.png differ
diff --git a/static/icons/0600452A.png b/static/icons/0600452A.png
new file mode 100755
index 00000000..a840f28b
Binary files /dev/null and b/static/icons/0600452A.png differ
diff --git a/static/icons/0600452C.png b/static/icons/0600452C.png
new file mode 100755
index 00000000..02a7969f
Binary files /dev/null and b/static/icons/0600452C.png differ
diff --git a/static/icons/0600452E.png b/static/icons/0600452E.png
new file mode 100755
index 00000000..a96a46be
Binary files /dev/null and b/static/icons/0600452E.png differ
diff --git a/static/icons/06004531.png b/static/icons/06004531.png
new file mode 100755
index 00000000..fed24592
Binary files /dev/null and b/static/icons/06004531.png differ
diff --git a/static/icons/06004533.png b/static/icons/06004533.png
new file mode 100755
index 00000000..f89b4bff
Binary files /dev/null and b/static/icons/06004533.png differ
diff --git a/static/icons/06004535.png b/static/icons/06004535.png
new file mode 100755
index 00000000..69e8e6d2
Binary files /dev/null and b/static/icons/06004535.png differ
diff --git a/static/icons/06004537.png b/static/icons/06004537.png
new file mode 100755
index 00000000..1c521a51
Binary files /dev/null and b/static/icons/06004537.png differ
diff --git a/static/icons/06004539.png b/static/icons/06004539.png
new file mode 100755
index 00000000..ea13e78b
Binary files /dev/null and b/static/icons/06004539.png differ
diff --git a/static/icons/0600453A.png b/static/icons/0600453A.png
new file mode 100755
index 00000000..05cf839a
Binary files /dev/null and b/static/icons/0600453A.png differ
diff --git a/static/icons/0600453B.png b/static/icons/0600453B.png
new file mode 100755
index 00000000..409f5671
Binary files /dev/null and b/static/icons/0600453B.png differ
diff --git a/static/icons/0600453D.png b/static/icons/0600453D.png
new file mode 100755
index 00000000..c7cb9220
Binary files /dev/null and b/static/icons/0600453D.png differ
diff --git a/static/icons/0600453F.png b/static/icons/0600453F.png
new file mode 100755
index 00000000..9fc239c6
Binary files /dev/null and b/static/icons/0600453F.png differ
diff --git a/static/icons/06004541.png b/static/icons/06004541.png
new file mode 100755
index 00000000..56ebb370
Binary files /dev/null and b/static/icons/06004541.png differ
diff --git a/static/icons/06004543.png b/static/icons/06004543.png
new file mode 100755
index 00000000..739ed874
Binary files /dev/null and b/static/icons/06004543.png differ
diff --git a/static/icons/06004545.png b/static/icons/06004545.png
new file mode 100755
index 00000000..9d515c96
Binary files /dev/null and b/static/icons/06004545.png differ
diff --git a/static/icons/06004546.png b/static/icons/06004546.png
new file mode 100755
index 00000000..cdd95020
Binary files /dev/null and b/static/icons/06004546.png differ
diff --git a/static/icons/06004547.png b/static/icons/06004547.png
new file mode 100755
index 00000000..d3eb5265
Binary files /dev/null and b/static/icons/06004547.png differ
diff --git a/static/icons/06004548.png b/static/icons/06004548.png
new file mode 100755
index 00000000..35aa8d82
Binary files /dev/null and b/static/icons/06004548.png differ
diff --git a/static/icons/0600454A.png b/static/icons/0600454A.png
new file mode 100755
index 00000000..e3e9a73f
Binary files /dev/null and b/static/icons/0600454A.png differ
diff --git a/static/icons/0600454C.png b/static/icons/0600454C.png
new file mode 100755
index 00000000..63fb8c9b
Binary files /dev/null and b/static/icons/0600454C.png differ
diff --git a/static/icons/0600454E.png b/static/icons/0600454E.png
new file mode 100755
index 00000000..dcfd1dbf
Binary files /dev/null and b/static/icons/0600454E.png differ
diff --git a/static/icons/06004550.png b/static/icons/06004550.png
new file mode 100755
index 00000000..7f678b82
Binary files /dev/null and b/static/icons/06004550.png differ
diff --git a/static/icons/06004551.png b/static/icons/06004551.png
new file mode 100755
index 00000000..5a5ad4db
Binary files /dev/null and b/static/icons/06004551.png differ
diff --git a/static/icons/06004553.png b/static/icons/06004553.png
new file mode 100755
index 00000000..06fb31a8
Binary files /dev/null and b/static/icons/06004553.png differ
diff --git a/static/icons/0600458C.png b/static/icons/0600458C.png
new file mode 100755
index 00000000..d0b79b00
Binary files /dev/null and b/static/icons/0600458C.png differ
diff --git a/static/icons/060045B2.png b/static/icons/060045B2.png
new file mode 100755
index 00000000..7a4630d2
Binary files /dev/null and b/static/icons/060045B2.png differ
diff --git a/static/icons/060045B6.png b/static/icons/060045B6.png
new file mode 100755
index 00000000..f813dc60
Binary files /dev/null and b/static/icons/060045B6.png differ
diff --git a/static/icons/060045C1.png b/static/icons/060045C1.png
new file mode 100755
index 00000000..9e71063d
Binary files /dev/null and b/static/icons/060045C1.png differ
diff --git a/static/icons/06004625.png b/static/icons/06004625.png
new file mode 100755
index 00000000..b0fdc946
Binary files /dev/null and b/static/icons/06004625.png differ
diff --git a/static/icons/06004627.png b/static/icons/06004627.png
new file mode 100755
index 00000000..5aa7bea6
Binary files /dev/null and b/static/icons/06004627.png differ
diff --git a/static/icons/06004635.png b/static/icons/06004635.png
new file mode 100755
index 00000000..4b3c9804
Binary files /dev/null and b/static/icons/06004635.png differ
diff --git a/static/icons/06004637.png b/static/icons/06004637.png
new file mode 100755
index 00000000..71d78a51
Binary files /dev/null and b/static/icons/06004637.png differ
diff --git a/static/icons/06004638.png b/static/icons/06004638.png
new file mode 100755
index 00000000..ee11c449
Binary files /dev/null and b/static/icons/06004638.png differ
diff --git a/static/icons/0600463A.png b/static/icons/0600463A.png
new file mode 100755
index 00000000..a08aafb4
Binary files /dev/null and b/static/icons/0600463A.png differ
diff --git a/static/icons/06004658.png b/static/icons/06004658.png
new file mode 100755
index 00000000..e02a1d43
Binary files /dev/null and b/static/icons/06004658.png differ
diff --git a/static/icons/06004677.png b/static/icons/06004677.png
new file mode 100755
index 00000000..7e87e5ff
Binary files /dev/null and b/static/icons/06004677.png differ
diff --git a/static/icons/06004679.png b/static/icons/06004679.png
new file mode 100755
index 00000000..ad04e0b7
Binary files /dev/null and b/static/icons/06004679.png differ
diff --git a/static/icons/060046CF.png b/static/icons/060046CF.png
new file mode 100755
index 00000000..f1783d06
Binary files /dev/null and b/static/icons/060046CF.png differ
diff --git a/static/icons/060046EB.png b/static/icons/060046EB.png
new file mode 100755
index 00000000..c47f3b50
Binary files /dev/null and b/static/icons/060046EB.png differ
diff --git a/static/icons/060046F8.png b/static/icons/060046F8.png
new file mode 100755
index 00000000..93b85fdb
Binary files /dev/null and b/static/icons/060046F8.png differ
diff --git a/static/icons/060046FF.png b/static/icons/060046FF.png
new file mode 100755
index 00000000..d3eb800b
Binary files /dev/null and b/static/icons/060046FF.png differ
diff --git a/static/icons/06004701.png b/static/icons/06004701.png
new file mode 100755
index 00000000..d75e7484
Binary files /dev/null and b/static/icons/06004701.png differ
diff --git a/static/icons/06004705.png b/static/icons/06004705.png
new file mode 100755
index 00000000..b2f51d6d
Binary files /dev/null and b/static/icons/06004705.png differ
diff --git a/static/icons/06004707.png b/static/icons/06004707.png
new file mode 100755
index 00000000..4defe0c7
Binary files /dev/null and b/static/icons/06004707.png differ
diff --git a/static/icons/06004709.png b/static/icons/06004709.png
new file mode 100755
index 00000000..95d60fed
Binary files /dev/null and b/static/icons/06004709.png differ
diff --git a/static/icons/06004711.png b/static/icons/06004711.png
new file mode 100755
index 00000000..3d80b014
Binary files /dev/null and b/static/icons/06004711.png differ
diff --git a/static/icons/06004713.png b/static/icons/06004713.png
new file mode 100755
index 00000000..ff3985af
Binary files /dev/null and b/static/icons/06004713.png differ
diff --git a/static/icons/0600471E.png b/static/icons/0600471E.png
new file mode 100755
index 00000000..6bb3e211
Binary files /dev/null and b/static/icons/0600471E.png differ
diff --git a/static/icons/0600471F.png b/static/icons/0600471F.png
new file mode 100755
index 00000000..5c619bd6
Binary files /dev/null and b/static/icons/0600471F.png differ
diff --git a/static/icons/06004727.png b/static/icons/06004727.png
new file mode 100755
index 00000000..20c3d4ff
Binary files /dev/null and b/static/icons/06004727.png differ
diff --git a/static/icons/06004729.png b/static/icons/06004729.png
new file mode 100755
index 00000000..71de00e2
Binary files /dev/null and b/static/icons/06004729.png differ
diff --git a/static/icons/0600472B.png b/static/icons/0600472B.png
new file mode 100755
index 00000000..3eb58335
Binary files /dev/null and b/static/icons/0600472B.png differ
diff --git a/static/icons/06004749.png b/static/icons/06004749.png
new file mode 100755
index 00000000..1ffa73c9
Binary files /dev/null and b/static/icons/06004749.png differ
diff --git a/static/icons/0600474B.png b/static/icons/0600474B.png
new file mode 100755
index 00000000..cc54d3a3
Binary files /dev/null and b/static/icons/0600474B.png differ
diff --git a/static/icons/0600474D.png b/static/icons/0600474D.png
new file mode 100755
index 00000000..d5e98fc9
Binary files /dev/null and b/static/icons/0600474D.png differ
diff --git a/static/icons/0600474F.png b/static/icons/0600474F.png
new file mode 100755
index 00000000..8413c04c
Binary files /dev/null and b/static/icons/0600474F.png differ
diff --git a/static/icons/06004751.png b/static/icons/06004751.png
new file mode 100755
index 00000000..81431587
Binary files /dev/null and b/static/icons/06004751.png differ
diff --git a/static/icons/06004753.png b/static/icons/06004753.png
new file mode 100755
index 00000000..eaef6bc5
Binary files /dev/null and b/static/icons/06004753.png differ
diff --git a/static/icons/06004756.png b/static/icons/06004756.png
new file mode 100755
index 00000000..0a68d9cf
Binary files /dev/null and b/static/icons/06004756.png differ
diff --git a/static/icons/06004759.png b/static/icons/06004759.png
new file mode 100755
index 00000000..cb4ec09f
Binary files /dev/null and b/static/icons/06004759.png differ
diff --git a/static/icons/0600475B.png b/static/icons/0600475B.png
new file mode 100755
index 00000000..a67087eb
Binary files /dev/null and b/static/icons/0600475B.png differ
diff --git a/static/icons/0600475E.png b/static/icons/0600475E.png
new file mode 100755
index 00000000..68605e7a
Binary files /dev/null and b/static/icons/0600475E.png differ
diff --git a/static/icons/06004760.png b/static/icons/06004760.png
new file mode 100755
index 00000000..94a5a78e
Binary files /dev/null and b/static/icons/06004760.png differ
diff --git a/static/icons/0600476A.png b/static/icons/0600476A.png
new file mode 100755
index 00000000..f1c4dd3c
Binary files /dev/null and b/static/icons/0600476A.png differ
diff --git a/static/icons/0600476C.png b/static/icons/0600476C.png
new file mode 100755
index 00000000..87ef5bf4
Binary files /dev/null and b/static/icons/0600476C.png differ
diff --git a/static/icons/0600476E.png b/static/icons/0600476E.png
new file mode 100755
index 00000000..926a86f5
Binary files /dev/null and b/static/icons/0600476E.png differ
diff --git a/static/icons/0600477E.png b/static/icons/0600477E.png
new file mode 100755
index 00000000..3c4e77d5
Binary files /dev/null and b/static/icons/0600477E.png differ
diff --git a/static/icons/06004780.png b/static/icons/06004780.png
new file mode 100755
index 00000000..49b8a4a9
Binary files /dev/null and b/static/icons/06004780.png differ
diff --git a/static/icons/06004782.png b/static/icons/06004782.png
new file mode 100755
index 00000000..5b953df7
Binary files /dev/null and b/static/icons/06004782.png differ
diff --git a/static/icons/06004784.png b/static/icons/06004784.png
new file mode 100755
index 00000000..d0b46818
Binary files /dev/null and b/static/icons/06004784.png differ
diff --git a/static/icons/06004786.png b/static/icons/06004786.png
new file mode 100755
index 00000000..5c3075d6
Binary files /dev/null and b/static/icons/06004786.png differ
diff --git a/static/icons/06004798.png b/static/icons/06004798.png
new file mode 100755
index 00000000..afcfda5b
Binary files /dev/null and b/static/icons/06004798.png differ
diff --git a/static/icons/060047A4.png b/static/icons/060047A4.png
new file mode 100755
index 00000000..630f924e
Binary files /dev/null and b/static/icons/060047A4.png differ
diff --git a/static/icons/060047A6.png b/static/icons/060047A6.png
new file mode 100755
index 00000000..706399ae
Binary files /dev/null and b/static/icons/060047A6.png differ
diff --git a/static/icons/060047C0.png b/static/icons/060047C0.png
new file mode 100755
index 00000000..0dd02e01
Binary files /dev/null and b/static/icons/060047C0.png differ
diff --git a/static/icons/060047D8.png b/static/icons/060047D8.png
new file mode 100755
index 00000000..387ca606
Binary files /dev/null and b/static/icons/060047D8.png differ
diff --git a/static/icons/060047DC.png b/static/icons/060047DC.png
new file mode 100755
index 00000000..82dec57a
Binary files /dev/null and b/static/icons/060047DC.png differ
diff --git a/static/icons/060047E0.png b/static/icons/060047E0.png
new file mode 100755
index 00000000..1ac02c00
Binary files /dev/null and b/static/icons/060047E0.png differ
diff --git a/static/icons/060047E2.png b/static/icons/060047E2.png
new file mode 100755
index 00000000..69768ff1
Binary files /dev/null and b/static/icons/060047E2.png differ
diff --git a/static/icons/0600480F.png b/static/icons/0600480F.png
new file mode 100755
index 00000000..a4d17e6a
Binary files /dev/null and b/static/icons/0600480F.png differ
diff --git a/static/icons/06004812.png b/static/icons/06004812.png
new file mode 100755
index 00000000..cc8fa4ec
Binary files /dev/null and b/static/icons/06004812.png differ
diff --git a/static/icons/06004814.png b/static/icons/06004814.png
new file mode 100755
index 00000000..6ad1ef22
Binary files /dev/null and b/static/icons/06004814.png differ
diff --git a/static/icons/06004816.png b/static/icons/06004816.png
new file mode 100755
index 00000000..98825f8f
Binary files /dev/null and b/static/icons/06004816.png differ
diff --git a/static/icons/06004818.png b/static/icons/06004818.png
new file mode 100755
index 00000000..bef332d2
Binary files /dev/null and b/static/icons/06004818.png differ
diff --git a/static/icons/0600481A.png b/static/icons/0600481A.png
new file mode 100755
index 00000000..06381397
Binary files /dev/null and b/static/icons/0600481A.png differ
diff --git a/static/icons/0600481C.png b/static/icons/0600481C.png
new file mode 100755
index 00000000..3ceb7281
Binary files /dev/null and b/static/icons/0600481C.png differ
diff --git a/static/icons/0600481E.png b/static/icons/0600481E.png
new file mode 100755
index 00000000..705458d2
Binary files /dev/null and b/static/icons/0600481E.png differ
diff --git a/static/icons/06004820.png b/static/icons/06004820.png
new file mode 100755
index 00000000..ba6375b6
Binary files /dev/null and b/static/icons/06004820.png differ
diff --git a/static/icons/06004823.png b/static/icons/06004823.png
new file mode 100755
index 00000000..cf5d7db8
Binary files /dev/null and b/static/icons/06004823.png differ
diff --git a/static/icons/06004825.png b/static/icons/06004825.png
new file mode 100755
index 00000000..3bd54404
Binary files /dev/null and b/static/icons/06004825.png differ
diff --git a/static/icons/06004827.png b/static/icons/06004827.png
new file mode 100755
index 00000000..55965f6f
Binary files /dev/null and b/static/icons/06004827.png differ
diff --git a/static/icons/06004829.png b/static/icons/06004829.png
new file mode 100755
index 00000000..2b1bc884
Binary files /dev/null and b/static/icons/06004829.png differ
diff --git a/static/icons/0600482B.png b/static/icons/0600482B.png
new file mode 100755
index 00000000..b763eabf
Binary files /dev/null and b/static/icons/0600482B.png differ
diff --git a/static/icons/0600482D.png b/static/icons/0600482D.png
new file mode 100755
index 00000000..148bb73d
Binary files /dev/null and b/static/icons/0600482D.png differ
diff --git a/static/icons/0600482F.png b/static/icons/0600482F.png
new file mode 100755
index 00000000..61108149
Binary files /dev/null and b/static/icons/0600482F.png differ
diff --git a/static/icons/06004831.png b/static/icons/06004831.png
new file mode 100755
index 00000000..6b3ac85a
Binary files /dev/null and b/static/icons/06004831.png differ
diff --git a/static/icons/06004833.png b/static/icons/06004833.png
new file mode 100755
index 00000000..f443b5fd
Binary files /dev/null and b/static/icons/06004833.png differ
diff --git a/static/icons/06004835.png b/static/icons/06004835.png
new file mode 100755
index 00000000..5548d22b
Binary files /dev/null and b/static/icons/06004835.png differ
diff --git a/static/icons/06004837.png b/static/icons/06004837.png
new file mode 100755
index 00000000..e9b0761c
Binary files /dev/null and b/static/icons/06004837.png differ
diff --git a/static/icons/06004839.png b/static/icons/06004839.png
new file mode 100755
index 00000000..7cca8945
Binary files /dev/null and b/static/icons/06004839.png differ
diff --git a/static/icons/06004845.png b/static/icons/06004845.png
new file mode 100755
index 00000000..c7d82ef3
Binary files /dev/null and b/static/icons/06004845.png differ
diff --git a/static/icons/06004847.png b/static/icons/06004847.png
new file mode 100755
index 00000000..55cdf90a
Binary files /dev/null and b/static/icons/06004847.png differ
diff --git a/static/icons/06004849.png b/static/icons/06004849.png
new file mode 100755
index 00000000..a5062654
Binary files /dev/null and b/static/icons/06004849.png differ
diff --git a/static/icons/0600484B.png b/static/icons/0600484B.png
new file mode 100755
index 00000000..05abf087
Binary files /dev/null and b/static/icons/0600484B.png differ
diff --git a/static/icons/0600484D.png b/static/icons/0600484D.png
new file mode 100755
index 00000000..a7eec602
Binary files /dev/null and b/static/icons/0600484D.png differ
diff --git a/static/icons/06004850.png b/static/icons/06004850.png
new file mode 100755
index 00000000..8e8f3539
Binary files /dev/null and b/static/icons/06004850.png differ
diff --git a/static/icons/06004852.png b/static/icons/06004852.png
new file mode 100755
index 00000000..2b901e28
Binary files /dev/null and b/static/icons/06004852.png differ
diff --git a/static/icons/06004854.png b/static/icons/06004854.png
new file mode 100755
index 00000000..613d3a63
Binary files /dev/null and b/static/icons/06004854.png differ
diff --git a/static/icons/06004856.png b/static/icons/06004856.png
new file mode 100755
index 00000000..40bfe7e8
Binary files /dev/null and b/static/icons/06004856.png differ
diff --git a/static/icons/06004859.png b/static/icons/06004859.png
new file mode 100755
index 00000000..04a3601a
Binary files /dev/null and b/static/icons/06004859.png differ
diff --git a/static/icons/0600485B.png b/static/icons/0600485B.png
new file mode 100755
index 00000000..7933480f
Binary files /dev/null and b/static/icons/0600485B.png differ
diff --git a/static/icons/0600485E.png b/static/icons/0600485E.png
new file mode 100755
index 00000000..32452cba
Binary files /dev/null and b/static/icons/0600485E.png differ
diff --git a/static/icons/06004860.png b/static/icons/06004860.png
new file mode 100755
index 00000000..869999ee
Binary files /dev/null and b/static/icons/06004860.png differ
diff --git a/static/icons/06004862.png b/static/icons/06004862.png
new file mode 100755
index 00000000..cce94de1
Binary files /dev/null and b/static/icons/06004862.png differ
diff --git a/static/icons/06004867.png b/static/icons/06004867.png
new file mode 100755
index 00000000..5be0bffb
Binary files /dev/null and b/static/icons/06004867.png differ
diff --git a/static/icons/0600486B.png b/static/icons/0600486B.png
new file mode 100755
index 00000000..a2f4074a
Binary files /dev/null and b/static/icons/0600486B.png differ
diff --git a/static/icons/0600486D.png b/static/icons/0600486D.png
new file mode 100755
index 00000000..e741926c
Binary files /dev/null and b/static/icons/0600486D.png differ
diff --git a/static/icons/0600486F.png b/static/icons/0600486F.png
new file mode 100755
index 00000000..657e40b3
Binary files /dev/null and b/static/icons/0600486F.png differ
diff --git a/static/icons/06004871.png b/static/icons/06004871.png
new file mode 100755
index 00000000..492ab893
Binary files /dev/null and b/static/icons/06004871.png differ
diff --git a/static/icons/06004873.png b/static/icons/06004873.png
new file mode 100755
index 00000000..0ca9de94
Binary files /dev/null and b/static/icons/06004873.png differ
diff --git a/static/icons/06004875.png b/static/icons/06004875.png
new file mode 100755
index 00000000..a6daad26
Binary files /dev/null and b/static/icons/06004875.png differ
diff --git a/static/icons/06004877.png b/static/icons/06004877.png
new file mode 100755
index 00000000..8a83681b
Binary files /dev/null and b/static/icons/06004877.png differ
diff --git a/static/icons/06004879.png b/static/icons/06004879.png
new file mode 100755
index 00000000..96de6df4
Binary files /dev/null and b/static/icons/06004879.png differ
diff --git a/static/icons/0600487B.png b/static/icons/0600487B.png
new file mode 100755
index 00000000..795113e5
Binary files /dev/null and b/static/icons/0600487B.png differ
diff --git a/static/icons/0600487D.png b/static/icons/0600487D.png
new file mode 100755
index 00000000..6bfbd761
Binary files /dev/null and b/static/icons/0600487D.png differ
diff --git a/static/icons/0600487F.png b/static/icons/0600487F.png
new file mode 100755
index 00000000..a719ce5f
Binary files /dev/null and b/static/icons/0600487F.png differ
diff --git a/static/icons/06004881.png b/static/icons/06004881.png
new file mode 100755
index 00000000..4dbb370e
Binary files /dev/null and b/static/icons/06004881.png differ
diff --git a/static/icons/06004883.png b/static/icons/06004883.png
new file mode 100755
index 00000000..b838ca2c
Binary files /dev/null and b/static/icons/06004883.png differ
diff --git a/static/icons/06004885.png b/static/icons/06004885.png
new file mode 100755
index 00000000..8e7ac1c3
Binary files /dev/null and b/static/icons/06004885.png differ
diff --git a/static/icons/06004889.png b/static/icons/06004889.png
new file mode 100755
index 00000000..5cf4a4d0
Binary files /dev/null and b/static/icons/06004889.png differ
diff --git a/static/icons/0600488B.png b/static/icons/0600488B.png
new file mode 100755
index 00000000..2ce6b8f3
Binary files /dev/null and b/static/icons/0600488B.png differ
diff --git a/static/icons/0600488D.png b/static/icons/0600488D.png
new file mode 100755
index 00000000..05079140
Binary files /dev/null and b/static/icons/0600488D.png differ
diff --git a/static/icons/0600488F.png b/static/icons/0600488F.png
new file mode 100755
index 00000000..830689b7
Binary files /dev/null and b/static/icons/0600488F.png differ
diff --git a/static/icons/06004891.png b/static/icons/06004891.png
new file mode 100755
index 00000000..e859d64d
Binary files /dev/null and b/static/icons/06004891.png differ
diff --git a/static/icons/06004894.png b/static/icons/06004894.png
new file mode 100755
index 00000000..19748997
Binary files /dev/null and b/static/icons/06004894.png differ
diff --git a/static/icons/06004896.png b/static/icons/06004896.png
new file mode 100755
index 00000000..6c2299a0
Binary files /dev/null and b/static/icons/06004896.png differ
diff --git a/static/icons/06004898.png b/static/icons/06004898.png
new file mode 100755
index 00000000..a01c0fef
Binary files /dev/null and b/static/icons/06004898.png differ
diff --git a/static/icons/0600489E.png b/static/icons/0600489E.png
new file mode 100755
index 00000000..7cb364fd
Binary files /dev/null and b/static/icons/0600489E.png differ
diff --git a/static/icons/060048A0.png b/static/icons/060048A0.png
new file mode 100755
index 00000000..14b21f76
Binary files /dev/null and b/static/icons/060048A0.png differ
diff --git a/static/icons/060048A2.png b/static/icons/060048A2.png
new file mode 100755
index 00000000..49f35da2
Binary files /dev/null and b/static/icons/060048A2.png differ
diff --git a/static/icons/060048A4.png b/static/icons/060048A4.png
new file mode 100755
index 00000000..88a374e8
Binary files /dev/null and b/static/icons/060048A4.png differ
diff --git a/static/icons/060048A6.png b/static/icons/060048A6.png
new file mode 100755
index 00000000..bc459563
Binary files /dev/null and b/static/icons/060048A6.png differ
diff --git a/static/icons/060048A8.png b/static/icons/060048A8.png
new file mode 100755
index 00000000..81ca9c75
Binary files /dev/null and b/static/icons/060048A8.png differ
diff --git a/static/icons/060048AA.png b/static/icons/060048AA.png
new file mode 100755
index 00000000..d3453775
Binary files /dev/null and b/static/icons/060048AA.png differ
diff --git a/static/icons/060048AC.png b/static/icons/060048AC.png
new file mode 100755
index 00000000..3a5422ce
Binary files /dev/null and b/static/icons/060048AC.png differ
diff --git a/static/icons/060048AE.png b/static/icons/060048AE.png
new file mode 100755
index 00000000..47321583
Binary files /dev/null and b/static/icons/060048AE.png differ
diff --git a/static/icons/060048B0.png b/static/icons/060048B0.png
new file mode 100755
index 00000000..f6732e98
Binary files /dev/null and b/static/icons/060048B0.png differ
diff --git a/static/icons/060048B4.png b/static/icons/060048B4.png
new file mode 100755
index 00000000..7a05b071
Binary files /dev/null and b/static/icons/060048B4.png differ
diff --git a/static/icons/060048B6.png b/static/icons/060048B6.png
new file mode 100755
index 00000000..0375eca4
Binary files /dev/null and b/static/icons/060048B6.png differ
diff --git a/static/icons/060048B8.png b/static/icons/060048B8.png
new file mode 100755
index 00000000..530097e0
Binary files /dev/null and b/static/icons/060048B8.png differ
diff --git a/static/icons/060048BA.png b/static/icons/060048BA.png
new file mode 100755
index 00000000..ad67c691
Binary files /dev/null and b/static/icons/060048BA.png differ
diff --git a/static/icons/060048BD.png b/static/icons/060048BD.png
new file mode 100755
index 00000000..ae5b23e5
Binary files /dev/null and b/static/icons/060048BD.png differ
diff --git a/static/icons/060048BF.png b/static/icons/060048BF.png
new file mode 100755
index 00000000..fc09cedb
Binary files /dev/null and b/static/icons/060048BF.png differ
diff --git a/static/icons/060048C1.png b/static/icons/060048C1.png
new file mode 100755
index 00000000..203ee682
Binary files /dev/null and b/static/icons/060048C1.png differ
diff --git a/static/icons/060048C3.png b/static/icons/060048C3.png
new file mode 100755
index 00000000..cd377963
Binary files /dev/null and b/static/icons/060048C3.png differ
diff --git a/static/icons/060048C5.png b/static/icons/060048C5.png
new file mode 100755
index 00000000..04c5148f
Binary files /dev/null and b/static/icons/060048C5.png differ
diff --git a/static/icons/060048C7.png b/static/icons/060048C7.png
new file mode 100755
index 00000000..0c79dbb8
Binary files /dev/null and b/static/icons/060048C7.png differ
diff --git a/static/icons/060048C9.png b/static/icons/060048C9.png
new file mode 100755
index 00000000..e2e19724
Binary files /dev/null and b/static/icons/060048C9.png differ
diff --git a/static/icons/060048CC.png b/static/icons/060048CC.png
new file mode 100755
index 00000000..bb3b0ef4
Binary files /dev/null and b/static/icons/060048CC.png differ
diff --git a/static/icons/060048CE.png b/static/icons/060048CE.png
new file mode 100755
index 00000000..922336cd
Binary files /dev/null and b/static/icons/060048CE.png differ
diff --git a/static/icons/060048E1.png b/static/icons/060048E1.png
new file mode 100755
index 00000000..a00a07a0
Binary files /dev/null and b/static/icons/060048E1.png differ
diff --git a/static/icons/060048E3.png b/static/icons/060048E3.png
new file mode 100755
index 00000000..6b06c83b
Binary files /dev/null and b/static/icons/060048E3.png differ
diff --git a/static/icons/060048E5.png b/static/icons/060048E5.png
new file mode 100755
index 00000000..6867e9c4
Binary files /dev/null and b/static/icons/060048E5.png differ
diff --git a/static/icons/060048E7.png b/static/icons/060048E7.png
new file mode 100755
index 00000000..417caf62
Binary files /dev/null and b/static/icons/060048E7.png differ
diff --git a/static/icons/060048E9.png b/static/icons/060048E9.png
new file mode 100755
index 00000000..ac4a47fa
Binary files /dev/null and b/static/icons/060048E9.png differ
diff --git a/static/icons/060048F0.png b/static/icons/060048F0.png
new file mode 100755
index 00000000..ad2145fe
Binary files /dev/null and b/static/icons/060048F0.png differ
diff --git a/static/icons/060048F2.png b/static/icons/060048F2.png
new file mode 100755
index 00000000..a836a4ad
Binary files /dev/null and b/static/icons/060048F2.png differ
diff --git a/static/icons/060048F4.png b/static/icons/060048F4.png
new file mode 100755
index 00000000..33f359f6
Binary files /dev/null and b/static/icons/060048F4.png differ
diff --git a/static/icons/060048F6.png b/static/icons/060048F6.png
new file mode 100755
index 00000000..2362826d
Binary files /dev/null and b/static/icons/060048F6.png differ
diff --git a/static/icons/060048F8.png b/static/icons/060048F8.png
new file mode 100755
index 00000000..e4a9dfb0
Binary files /dev/null and b/static/icons/060048F8.png differ
diff --git a/static/icons/060048FA.png b/static/icons/060048FA.png
new file mode 100755
index 00000000..28787b42
Binary files /dev/null and b/static/icons/060048FA.png differ
diff --git a/static/icons/060048FC.png b/static/icons/060048FC.png
new file mode 100755
index 00000000..6505074e
Binary files /dev/null and b/static/icons/060048FC.png differ
diff --git a/static/icons/06004908.png b/static/icons/06004908.png
new file mode 100755
index 00000000..7db246b5
Binary files /dev/null and b/static/icons/06004908.png differ
diff --git a/static/icons/0600490A.png b/static/icons/0600490A.png
new file mode 100755
index 00000000..3256335d
Binary files /dev/null and b/static/icons/0600490A.png differ
diff --git a/static/icons/0600490C.png b/static/icons/0600490C.png
new file mode 100755
index 00000000..9b08aef7
Binary files /dev/null and b/static/icons/0600490C.png differ
diff --git a/static/icons/0600490E.png b/static/icons/0600490E.png
new file mode 100755
index 00000000..d75c0936
Binary files /dev/null and b/static/icons/0600490E.png differ
diff --git a/static/icons/06004911.png b/static/icons/06004911.png
new file mode 100755
index 00000000..56557811
Binary files /dev/null and b/static/icons/06004911.png differ
diff --git a/static/icons/06004914.png b/static/icons/06004914.png
new file mode 100755
index 00000000..5ef6641d
Binary files /dev/null and b/static/icons/06004914.png differ
diff --git a/static/icons/06004916.png b/static/icons/06004916.png
new file mode 100755
index 00000000..0c2ac236
Binary files /dev/null and b/static/icons/06004916.png differ
diff --git a/static/icons/0600491A.png b/static/icons/0600491A.png
new file mode 100755
index 00000000..f81a41f3
Binary files /dev/null and b/static/icons/0600491A.png differ
diff --git a/static/icons/0600492A.png b/static/icons/0600492A.png
new file mode 100755
index 00000000..a6e320e7
Binary files /dev/null and b/static/icons/0600492A.png differ
diff --git a/static/icons/060049E6.png b/static/icons/060049E6.png
new file mode 100755
index 00000000..50330f5b
Binary files /dev/null and b/static/icons/060049E6.png differ
diff --git a/static/icons/060049E8.png b/static/icons/060049E8.png
new file mode 100755
index 00000000..9693eef6
Binary files /dev/null and b/static/icons/060049E8.png differ
diff --git a/static/icons/06004A40.png b/static/icons/06004A40.png
new file mode 100755
index 00000000..d3bc8340
Binary files /dev/null and b/static/icons/06004A40.png differ
diff --git a/static/icons/06004A41.png b/static/icons/06004A41.png
new file mode 100755
index 00000000..2b302c32
Binary files /dev/null and b/static/icons/06004A41.png differ
diff --git a/static/icons/06004A42.png b/static/icons/06004A42.png
new file mode 100755
index 00000000..2f285952
Binary files /dev/null and b/static/icons/06004A42.png differ
diff --git a/static/icons/06004A43.png b/static/icons/06004A43.png
new file mode 100755
index 00000000..19203b50
Binary files /dev/null and b/static/icons/06004A43.png differ
diff --git a/static/icons/06004A44.png b/static/icons/06004A44.png
new file mode 100755
index 00000000..cf313ad3
Binary files /dev/null and b/static/icons/06004A44.png differ
diff --git a/static/icons/06004A45.png b/static/icons/06004A45.png
new file mode 100755
index 00000000..76baebfa
Binary files /dev/null and b/static/icons/06004A45.png differ
diff --git a/static/icons/06004A46.png b/static/icons/06004A46.png
new file mode 100755
index 00000000..19ee3909
Binary files /dev/null and b/static/icons/06004A46.png differ
diff --git a/static/icons/06004A47.png b/static/icons/06004A47.png
new file mode 100755
index 00000000..7910b45b
Binary files /dev/null and b/static/icons/06004A47.png differ
diff --git a/static/icons/06004A48.png b/static/icons/06004A48.png
new file mode 100755
index 00000000..f0f8979e
Binary files /dev/null and b/static/icons/06004A48.png differ
diff --git a/static/icons/06004A49.png b/static/icons/06004A49.png
new file mode 100755
index 00000000..3a5b69f3
Binary files /dev/null and b/static/icons/06004A49.png differ
diff --git a/static/icons/06004A4A.png b/static/icons/06004A4A.png
new file mode 100755
index 00000000..26a2c9dc
Binary files /dev/null and b/static/icons/06004A4A.png differ
diff --git a/static/icons/06004A4B.png b/static/icons/06004A4B.png
new file mode 100755
index 00000000..e78e8130
Binary files /dev/null and b/static/icons/06004A4B.png differ
diff --git a/static/icons/06004A4C.png b/static/icons/06004A4C.png
new file mode 100755
index 00000000..d3407c3a
Binary files /dev/null and b/static/icons/06004A4C.png differ
diff --git a/static/icons/06004A4D.png b/static/icons/06004A4D.png
new file mode 100755
index 00000000..7fd7b38c
Binary files /dev/null and b/static/icons/06004A4D.png differ
diff --git a/static/icons/06004A4E.png b/static/icons/06004A4E.png
new file mode 100755
index 00000000..44f9630c
Binary files /dev/null and b/static/icons/06004A4E.png differ
diff --git a/static/icons/06004A4F.png b/static/icons/06004A4F.png
new file mode 100755
index 00000000..ca81077d
Binary files /dev/null and b/static/icons/06004A4F.png differ
diff --git a/static/icons/06004A50.png b/static/icons/06004A50.png
new file mode 100755
index 00000000..aebcab17
Binary files /dev/null and b/static/icons/06004A50.png differ
diff --git a/static/icons/06004A51.png b/static/icons/06004A51.png
new file mode 100755
index 00000000..5520b61f
Binary files /dev/null and b/static/icons/06004A51.png differ
diff --git a/static/icons/06004A52.png b/static/icons/06004A52.png
new file mode 100755
index 00000000..df3fc600
Binary files /dev/null and b/static/icons/06004A52.png differ
diff --git a/static/icons/06004A53.png b/static/icons/06004A53.png
new file mode 100755
index 00000000..2f1fe160
Binary files /dev/null and b/static/icons/06004A53.png differ
diff --git a/static/icons/06004A54.png b/static/icons/06004A54.png
new file mode 100755
index 00000000..0490b583
Binary files /dev/null and b/static/icons/06004A54.png differ
diff --git a/static/icons/06004A55.png b/static/icons/06004A55.png
new file mode 100755
index 00000000..313fa290
Binary files /dev/null and b/static/icons/06004A55.png differ
diff --git a/static/icons/06004A56.png b/static/icons/06004A56.png
new file mode 100755
index 00000000..470f4029
Binary files /dev/null and b/static/icons/06004A56.png differ
diff --git a/static/icons/06004A57.png b/static/icons/06004A57.png
new file mode 100755
index 00000000..e03f584f
Binary files /dev/null and b/static/icons/06004A57.png differ
diff --git a/static/icons/06004A58.png b/static/icons/06004A58.png
new file mode 100755
index 00000000..e48536ef
Binary files /dev/null and b/static/icons/06004A58.png differ
diff --git a/static/icons/06004A59.png b/static/icons/06004A59.png
new file mode 100755
index 00000000..bc481603
Binary files /dev/null and b/static/icons/06004A59.png differ
diff --git a/static/icons/06004A5A.png b/static/icons/06004A5A.png
new file mode 100755
index 00000000..c5c6f298
Binary files /dev/null and b/static/icons/06004A5A.png differ
diff --git a/static/icons/06004A5B.png b/static/icons/06004A5B.png
new file mode 100755
index 00000000..8f57ffca
Binary files /dev/null and b/static/icons/06004A5B.png differ
diff --git a/static/icons/06004A5C.png b/static/icons/06004A5C.png
new file mode 100755
index 00000000..e3d6bdf1
Binary files /dev/null and b/static/icons/06004A5C.png differ
diff --git a/static/icons/06004A60.png b/static/icons/06004A60.png
new file mode 100755
index 00000000..82cab845
Binary files /dev/null and b/static/icons/06004A60.png differ
diff --git a/static/icons/06004A61.png b/static/icons/06004A61.png
new file mode 100755
index 00000000..f87a83f2
Binary files /dev/null and b/static/icons/06004A61.png differ
diff --git a/static/icons/06004A62.png b/static/icons/06004A62.png
new file mode 100755
index 00000000..e0a47530
Binary files /dev/null and b/static/icons/06004A62.png differ
diff --git a/static/icons/06004A63.png b/static/icons/06004A63.png
new file mode 100755
index 00000000..f59a1cf5
Binary files /dev/null and b/static/icons/06004A63.png differ
diff --git a/static/icons/06004A64.png b/static/icons/06004A64.png
new file mode 100755
index 00000000..e0a47530
Binary files /dev/null and b/static/icons/06004A64.png differ
diff --git a/static/icons/06004A65.png b/static/icons/06004A65.png
new file mode 100755
index 00000000..6d2f08d1
Binary files /dev/null and b/static/icons/06004A65.png differ
diff --git a/static/icons/06004A66.png b/static/icons/06004A66.png
new file mode 100755
index 00000000..c9de5c2c
Binary files /dev/null and b/static/icons/06004A66.png differ
diff --git a/static/icons/06004A67.png b/static/icons/06004A67.png
new file mode 100755
index 00000000..92c26259
Binary files /dev/null and b/static/icons/06004A67.png differ
diff --git a/static/icons/06004A68.png b/static/icons/06004A68.png
new file mode 100755
index 00000000..0ec46387
Binary files /dev/null and b/static/icons/06004A68.png differ
diff --git a/static/icons/06004A69.png b/static/icons/06004A69.png
new file mode 100755
index 00000000..48559056
Binary files /dev/null and b/static/icons/06004A69.png differ
diff --git a/static/icons/06004A6A.png b/static/icons/06004A6A.png
new file mode 100755
index 00000000..fb409086
Binary files /dev/null and b/static/icons/06004A6A.png differ
diff --git a/static/icons/06004A6B.png b/static/icons/06004A6B.png
new file mode 100755
index 00000000..b22b13fa
Binary files /dev/null and b/static/icons/06004A6B.png differ
diff --git a/static/icons/06004A6C.png b/static/icons/06004A6C.png
new file mode 100755
index 00000000..aa90d7f4
Binary files /dev/null and b/static/icons/06004A6C.png differ
diff --git a/static/icons/06004A6D.png b/static/icons/06004A6D.png
new file mode 100755
index 00000000..e637ffb3
Binary files /dev/null and b/static/icons/06004A6D.png differ
diff --git a/static/icons/06004A6E.png b/static/icons/06004A6E.png
new file mode 100755
index 00000000..071baa9a
Binary files /dev/null and b/static/icons/06004A6E.png differ
diff --git a/static/icons/06004A6F.png b/static/icons/06004A6F.png
new file mode 100755
index 00000000..cd38205c
Binary files /dev/null and b/static/icons/06004A6F.png differ
diff --git a/static/icons/06004A70.png b/static/icons/06004A70.png
new file mode 100755
index 00000000..166ba6e0
Binary files /dev/null and b/static/icons/06004A70.png differ
diff --git a/static/icons/06004A71.png b/static/icons/06004A71.png
new file mode 100755
index 00000000..13e81690
Binary files /dev/null and b/static/icons/06004A71.png differ
diff --git a/static/icons/06004A72.png b/static/icons/06004A72.png
new file mode 100755
index 00000000..4a97af20
Binary files /dev/null and b/static/icons/06004A72.png differ
diff --git a/static/icons/06004A73.png b/static/icons/06004A73.png
new file mode 100755
index 00000000..12aa667d
Binary files /dev/null and b/static/icons/06004A73.png differ
diff --git a/static/icons/06004A74.png b/static/icons/06004A74.png
new file mode 100755
index 00000000..15f5299e
Binary files /dev/null and b/static/icons/06004A74.png differ
diff --git a/static/icons/06004A75.png b/static/icons/06004A75.png
new file mode 100755
index 00000000..fadf2a2e
Binary files /dev/null and b/static/icons/06004A75.png differ
diff --git a/static/icons/06004A76.png b/static/icons/06004A76.png
new file mode 100755
index 00000000..cf1d1cd9
Binary files /dev/null and b/static/icons/06004A76.png differ
diff --git a/static/icons/06004A77.png b/static/icons/06004A77.png
new file mode 100755
index 00000000..11a256ab
Binary files /dev/null and b/static/icons/06004A77.png differ
diff --git a/static/icons/06004A78.png b/static/icons/06004A78.png
new file mode 100755
index 00000000..b810d86e
Binary files /dev/null and b/static/icons/06004A78.png differ
diff --git a/static/icons/06004A79.png b/static/icons/06004A79.png
new file mode 100755
index 00000000..c9dab774
Binary files /dev/null and b/static/icons/06004A79.png differ
diff --git a/static/icons/06004A7A.png b/static/icons/06004A7A.png
new file mode 100755
index 00000000..c87cdde8
Binary files /dev/null and b/static/icons/06004A7A.png differ
diff --git a/static/icons/06004A7B.png b/static/icons/06004A7B.png
new file mode 100755
index 00000000..3c57012d
Binary files /dev/null and b/static/icons/06004A7B.png differ
diff --git a/static/icons/06004A83.png b/static/icons/06004A83.png
new file mode 100755
index 00000000..406de2b9
Binary files /dev/null and b/static/icons/06004A83.png differ
diff --git a/static/icons/06004A84.png b/static/icons/06004A84.png
new file mode 100755
index 00000000..adc43777
Binary files /dev/null and b/static/icons/06004A84.png differ
diff --git a/static/icons/06004A85.png b/static/icons/06004A85.png
new file mode 100755
index 00000000..3857501d
Binary files /dev/null and b/static/icons/06004A85.png differ
diff --git a/static/icons/06004A86.png b/static/icons/06004A86.png
new file mode 100755
index 00000000..e5d696df
Binary files /dev/null and b/static/icons/06004A86.png differ
diff --git a/static/icons/06004A87.png b/static/icons/06004A87.png
new file mode 100755
index 00000000..adec2d80
Binary files /dev/null and b/static/icons/06004A87.png differ
diff --git a/static/icons/06004A88.png b/static/icons/06004A88.png
new file mode 100755
index 00000000..c64efcf1
Binary files /dev/null and b/static/icons/06004A88.png differ
diff --git a/static/icons/06004A89.png b/static/icons/06004A89.png
new file mode 100755
index 00000000..5b0bb6c1
Binary files /dev/null and b/static/icons/06004A89.png differ
diff --git a/static/icons/06004A8A.png b/static/icons/06004A8A.png
new file mode 100755
index 00000000..f8f6e1ee
Binary files /dev/null and b/static/icons/06004A8A.png differ
diff --git a/static/icons/06004A8B.png b/static/icons/06004A8B.png
new file mode 100755
index 00000000..0f92533d
Binary files /dev/null and b/static/icons/06004A8B.png differ
diff --git a/static/icons/06004A8C.png b/static/icons/06004A8C.png
new file mode 100755
index 00000000..26d4dcd9
Binary files /dev/null and b/static/icons/06004A8C.png differ
diff --git a/static/icons/06004A8D.png b/static/icons/06004A8D.png
new file mode 100755
index 00000000..d7795877
Binary files /dev/null and b/static/icons/06004A8D.png differ
diff --git a/static/icons/06004A8E.png b/static/icons/06004A8E.png
new file mode 100755
index 00000000..b1217d86
Binary files /dev/null and b/static/icons/06004A8E.png differ
diff --git a/static/icons/06004A8F.png b/static/icons/06004A8F.png
new file mode 100755
index 00000000..3f2d6282
Binary files /dev/null and b/static/icons/06004A8F.png differ
diff --git a/static/icons/06004A90.png b/static/icons/06004A90.png
new file mode 100755
index 00000000..c5c4206e
Binary files /dev/null and b/static/icons/06004A90.png differ
diff --git a/static/icons/06004A91.png b/static/icons/06004A91.png
new file mode 100755
index 00000000..f2170d79
Binary files /dev/null and b/static/icons/06004A91.png differ
diff --git a/static/icons/06004A92.png b/static/icons/06004A92.png
new file mode 100755
index 00000000..cea751f4
Binary files /dev/null and b/static/icons/06004A92.png differ
diff --git a/static/icons/06004A93.png b/static/icons/06004A93.png
new file mode 100755
index 00000000..1954c0fb
Binary files /dev/null and b/static/icons/06004A93.png differ
diff --git a/static/icons/06004A94.png b/static/icons/06004A94.png
new file mode 100755
index 00000000..5303971f
Binary files /dev/null and b/static/icons/06004A94.png differ
diff --git a/static/icons/06004A95.png b/static/icons/06004A95.png
new file mode 100755
index 00000000..d9b872b5
Binary files /dev/null and b/static/icons/06004A95.png differ
diff --git a/static/icons/06004A96.png b/static/icons/06004A96.png
new file mode 100755
index 00000000..a9ed1939
Binary files /dev/null and b/static/icons/06004A96.png differ
diff --git a/static/icons/06004A97.png b/static/icons/06004A97.png
new file mode 100755
index 00000000..e0dbe830
Binary files /dev/null and b/static/icons/06004A97.png differ
diff --git a/static/icons/06004A98.png b/static/icons/06004A98.png
new file mode 100755
index 00000000..2f9ba1c9
Binary files /dev/null and b/static/icons/06004A98.png differ
diff --git a/static/icons/06004A99.png b/static/icons/06004A99.png
new file mode 100755
index 00000000..490df491
Binary files /dev/null and b/static/icons/06004A99.png differ
diff --git a/static/icons/06004A9A.png b/static/icons/06004A9A.png
new file mode 100755
index 00000000..e89941db
Binary files /dev/null and b/static/icons/06004A9A.png differ
diff --git a/static/icons/06004A9B.png b/static/icons/06004A9B.png
new file mode 100755
index 00000000..3853dc1b
Binary files /dev/null and b/static/icons/06004A9B.png differ
diff --git a/static/icons/06004A9C.png b/static/icons/06004A9C.png
new file mode 100755
index 00000000..ff71dcfa
Binary files /dev/null and b/static/icons/06004A9C.png differ
diff --git a/static/icons/06004A9D.png b/static/icons/06004A9D.png
new file mode 100755
index 00000000..ed0dbe5a
Binary files /dev/null and b/static/icons/06004A9D.png differ
diff --git a/static/icons/06004A9E.png b/static/icons/06004A9E.png
new file mode 100755
index 00000000..fe194cd5
Binary files /dev/null and b/static/icons/06004A9E.png differ
diff --git a/static/icons/06004AA6.png b/static/icons/06004AA6.png
new file mode 100755
index 00000000..2f7ac34d
Binary files /dev/null and b/static/icons/06004AA6.png differ
diff --git a/static/icons/06004AA7.png b/static/icons/06004AA7.png
new file mode 100755
index 00000000..a8a358c9
Binary files /dev/null and b/static/icons/06004AA7.png differ
diff --git a/static/icons/06004AA8.png b/static/icons/06004AA8.png
new file mode 100755
index 00000000..40f531f8
Binary files /dev/null and b/static/icons/06004AA8.png differ
diff --git a/static/icons/06004AA9.png b/static/icons/06004AA9.png
new file mode 100755
index 00000000..220dc4b4
Binary files /dev/null and b/static/icons/06004AA9.png differ
diff --git a/static/icons/06004AAA.png b/static/icons/06004AAA.png
new file mode 100755
index 00000000..578dffa6
Binary files /dev/null and b/static/icons/06004AAA.png differ
diff --git a/static/icons/06004AAB.png b/static/icons/06004AAB.png
new file mode 100755
index 00000000..c018b24a
Binary files /dev/null and b/static/icons/06004AAB.png differ
diff --git a/static/icons/06004AAC.png b/static/icons/06004AAC.png
new file mode 100755
index 00000000..f3bc884c
Binary files /dev/null and b/static/icons/06004AAC.png differ
diff --git a/static/icons/06004AAD.png b/static/icons/06004AAD.png
new file mode 100755
index 00000000..07814231
Binary files /dev/null and b/static/icons/06004AAD.png differ
diff --git a/static/icons/06004AAE.png b/static/icons/06004AAE.png
new file mode 100755
index 00000000..30f5103f
Binary files /dev/null and b/static/icons/06004AAE.png differ
diff --git a/static/icons/06004AAF.png b/static/icons/06004AAF.png
new file mode 100755
index 00000000..43aadb32
Binary files /dev/null and b/static/icons/06004AAF.png differ
diff --git a/static/icons/06004AB0.png b/static/icons/06004AB0.png
new file mode 100755
index 00000000..f635dbbb
Binary files /dev/null and b/static/icons/06004AB0.png differ
diff --git a/static/icons/06004AB1.png b/static/icons/06004AB1.png
new file mode 100755
index 00000000..5919a20c
Binary files /dev/null and b/static/icons/06004AB1.png differ
diff --git a/static/icons/06004AB2.png b/static/icons/06004AB2.png
new file mode 100755
index 00000000..d61a4c0a
Binary files /dev/null and b/static/icons/06004AB2.png differ
diff --git a/static/icons/06004AB3.png b/static/icons/06004AB3.png
new file mode 100755
index 00000000..db8f9dff
Binary files /dev/null and b/static/icons/06004AB3.png differ
diff --git a/static/icons/06004AB4.png b/static/icons/06004AB4.png
new file mode 100755
index 00000000..29ec69d9
Binary files /dev/null and b/static/icons/06004AB4.png differ
diff --git a/static/icons/06004AB5.png b/static/icons/06004AB5.png
new file mode 100755
index 00000000..b2ad2192
Binary files /dev/null and b/static/icons/06004AB5.png differ
diff --git a/static/icons/06004AB6.png b/static/icons/06004AB6.png
new file mode 100755
index 00000000..32498800
Binary files /dev/null and b/static/icons/06004AB6.png differ
diff --git a/static/icons/06004AB7.png b/static/icons/06004AB7.png
new file mode 100755
index 00000000..db9f6a80
Binary files /dev/null and b/static/icons/06004AB7.png differ
diff --git a/static/icons/06004AB8.png b/static/icons/06004AB8.png
new file mode 100755
index 00000000..a4d45aa6
Binary files /dev/null and b/static/icons/06004AB8.png differ
diff --git a/static/icons/06004AB9.png b/static/icons/06004AB9.png
new file mode 100755
index 00000000..1349f208
Binary files /dev/null and b/static/icons/06004AB9.png differ
diff --git a/static/icons/06004ABA.png b/static/icons/06004ABA.png
new file mode 100755
index 00000000..a85d3881
Binary files /dev/null and b/static/icons/06004ABA.png differ
diff --git a/static/icons/06004ABB.png b/static/icons/06004ABB.png
new file mode 100755
index 00000000..6cdcf685
Binary files /dev/null and b/static/icons/06004ABB.png differ
diff --git a/static/icons/06004ABC.png b/static/icons/06004ABC.png
new file mode 100755
index 00000000..0d83485d
Binary files /dev/null and b/static/icons/06004ABC.png differ
diff --git a/static/icons/06004ABD.png b/static/icons/06004ABD.png
new file mode 100755
index 00000000..1d0f6fcb
Binary files /dev/null and b/static/icons/06004ABD.png differ
diff --git a/static/icons/06004ABE.png b/static/icons/06004ABE.png
new file mode 100755
index 00000000..b37527e7
Binary files /dev/null and b/static/icons/06004ABE.png differ
diff --git a/static/icons/06004ABF.png b/static/icons/06004ABF.png
new file mode 100755
index 00000000..899429d2
Binary files /dev/null and b/static/icons/06004ABF.png differ
diff --git a/static/icons/06004AC0.png b/static/icons/06004AC0.png
new file mode 100755
index 00000000..f00a5e8f
Binary files /dev/null and b/static/icons/06004AC0.png differ
diff --git a/static/icons/06004AC1.png b/static/icons/06004AC1.png
new file mode 100755
index 00000000..b7e907be
Binary files /dev/null and b/static/icons/06004AC1.png differ
diff --git a/static/icons/06004AC4.png b/static/icons/06004AC4.png
new file mode 100755
index 00000000..4de99723
Binary files /dev/null and b/static/icons/06004AC4.png differ
diff --git a/static/icons/06004AC5.png b/static/icons/06004AC5.png
new file mode 100755
index 00000000..6d54157d
Binary files /dev/null and b/static/icons/06004AC5.png differ
diff --git a/static/icons/06004AC6.png b/static/icons/06004AC6.png
new file mode 100755
index 00000000..f571d119
Binary files /dev/null and b/static/icons/06004AC6.png differ
diff --git a/static/icons/06004AC7.png b/static/icons/06004AC7.png
new file mode 100755
index 00000000..fb90a5bc
Binary files /dev/null and b/static/icons/06004AC7.png differ
diff --git a/static/icons/06004AC8.png b/static/icons/06004AC8.png
new file mode 100755
index 00000000..5b13a386
Binary files /dev/null and b/static/icons/06004AC8.png differ
diff --git a/static/icons/06004AC9.png b/static/icons/06004AC9.png
new file mode 100755
index 00000000..ee58dcca
Binary files /dev/null and b/static/icons/06004AC9.png differ
diff --git a/static/icons/06004ACA.png b/static/icons/06004ACA.png
new file mode 100755
index 00000000..a885e1ad
Binary files /dev/null and b/static/icons/06004ACA.png differ
diff --git a/static/icons/06004ACB.png b/static/icons/06004ACB.png
new file mode 100755
index 00000000..70cb69b3
Binary files /dev/null and b/static/icons/06004ACB.png differ
diff --git a/static/icons/06004ACC.png b/static/icons/06004ACC.png
new file mode 100755
index 00000000..6b8c91c5
Binary files /dev/null and b/static/icons/06004ACC.png differ
diff --git a/static/icons/06004ACD.png b/static/icons/06004ACD.png
new file mode 100755
index 00000000..b73492dc
Binary files /dev/null and b/static/icons/06004ACD.png differ
diff --git a/static/icons/06004ACE.png b/static/icons/06004ACE.png
new file mode 100755
index 00000000..155bec98
Binary files /dev/null and b/static/icons/06004ACE.png differ
diff --git a/static/icons/06004ACF.png b/static/icons/06004ACF.png
new file mode 100755
index 00000000..d877cb54
Binary files /dev/null and b/static/icons/06004ACF.png differ
diff --git a/static/icons/06004AD0.png b/static/icons/06004AD0.png
new file mode 100755
index 00000000..6d787393
Binary files /dev/null and b/static/icons/06004AD0.png differ
diff --git a/static/icons/06004AD1.png b/static/icons/06004AD1.png
new file mode 100755
index 00000000..8ecd37b1
Binary files /dev/null and b/static/icons/06004AD1.png differ
diff --git a/static/icons/06004AD2.png b/static/icons/06004AD2.png
new file mode 100755
index 00000000..81cae0b4
Binary files /dev/null and b/static/icons/06004AD2.png differ
diff --git a/static/icons/06004AD3.png b/static/icons/06004AD3.png
new file mode 100755
index 00000000..089844d5
Binary files /dev/null and b/static/icons/06004AD3.png differ
diff --git a/static/icons/06004AD4.png b/static/icons/06004AD4.png
new file mode 100755
index 00000000..e108f6ce
Binary files /dev/null and b/static/icons/06004AD4.png differ
diff --git a/static/icons/06004AD5.png b/static/icons/06004AD5.png
new file mode 100755
index 00000000..cb3939df
Binary files /dev/null and b/static/icons/06004AD5.png differ
diff --git a/static/icons/06004AD6.png b/static/icons/06004AD6.png
new file mode 100755
index 00000000..b38898bb
Binary files /dev/null and b/static/icons/06004AD6.png differ
diff --git a/static/icons/06004AD7.png b/static/icons/06004AD7.png
new file mode 100755
index 00000000..dfc85c19
Binary files /dev/null and b/static/icons/06004AD7.png differ
diff --git a/static/icons/06004AD8.png b/static/icons/06004AD8.png
new file mode 100755
index 00000000..3586ac7c
Binary files /dev/null and b/static/icons/06004AD8.png differ
diff --git a/static/icons/06004AD9.png b/static/icons/06004AD9.png
new file mode 100755
index 00000000..bc74875d
Binary files /dev/null and b/static/icons/06004AD9.png differ
diff --git a/static/icons/06004ADA.png b/static/icons/06004ADA.png
new file mode 100755
index 00000000..def4eaca
Binary files /dev/null and b/static/icons/06004ADA.png differ
diff --git a/static/icons/06004ADB.png b/static/icons/06004ADB.png
new file mode 100755
index 00000000..fe602979
Binary files /dev/null and b/static/icons/06004ADB.png differ
diff --git a/static/icons/06004ADC.png b/static/icons/06004ADC.png
new file mode 100755
index 00000000..5b363f82
Binary files /dev/null and b/static/icons/06004ADC.png differ
diff --git a/static/icons/06004ADD.png b/static/icons/06004ADD.png
new file mode 100755
index 00000000..9cafb851
Binary files /dev/null and b/static/icons/06004ADD.png differ
diff --git a/static/icons/06004ADE.png b/static/icons/06004ADE.png
new file mode 100755
index 00000000..e5159749
Binary files /dev/null and b/static/icons/06004ADE.png differ
diff --git a/static/icons/06004ADF.png b/static/icons/06004ADF.png
new file mode 100755
index 00000000..424d4ba0
Binary files /dev/null and b/static/icons/06004ADF.png differ
diff --git a/static/icons/06004B91.png b/static/icons/06004B91.png
new file mode 100755
index 00000000..5c97c4ba
Binary files /dev/null and b/static/icons/06004B91.png differ
diff --git a/static/icons/06004B92.png b/static/icons/06004B92.png
new file mode 100755
index 00000000..31458dec
Binary files /dev/null and b/static/icons/06004B92.png differ
diff --git a/static/icons/06004B93.png b/static/icons/06004B93.png
new file mode 100755
index 00000000..f62ed2f2
Binary files /dev/null and b/static/icons/06004B93.png differ
diff --git a/static/icons/06004C3B.png b/static/icons/06004C3B.png
new file mode 100755
index 00000000..98b59790
Binary files /dev/null and b/static/icons/06004C3B.png differ
diff --git a/static/icons/06004C3C.png b/static/icons/06004C3C.png
new file mode 100755
index 00000000..3144fff1
Binary files /dev/null and b/static/icons/06004C3C.png differ
diff --git a/static/icons/06004C3D.png b/static/icons/06004C3D.png
new file mode 100755
index 00000000..5d93b6f7
Binary files /dev/null and b/static/icons/06004C3D.png differ
diff --git a/static/icons/06004C3E.png b/static/icons/06004C3E.png
new file mode 100755
index 00000000..2cf12ef9
Binary files /dev/null and b/static/icons/06004C3E.png differ
diff --git a/static/icons/06004C3F.png b/static/icons/06004C3F.png
new file mode 100755
index 00000000..ca21c619
Binary files /dev/null and b/static/icons/06004C3F.png differ
diff --git a/static/icons/06004C40.png b/static/icons/06004C40.png
new file mode 100755
index 00000000..6cd553bd
Binary files /dev/null and b/static/icons/06004C40.png differ
diff --git a/static/icons/06004C41.png b/static/icons/06004C41.png
new file mode 100755
index 00000000..e5dc68db
Binary files /dev/null and b/static/icons/06004C41.png differ
diff --git a/static/icons/06004C42.png b/static/icons/06004C42.png
new file mode 100755
index 00000000..06f6d11b
Binary files /dev/null and b/static/icons/06004C42.png differ
diff --git a/static/icons/06004C43.png b/static/icons/06004C43.png
new file mode 100755
index 00000000..9da51792
Binary files /dev/null and b/static/icons/06004C43.png differ
diff --git a/static/icons/06004C44.png b/static/icons/06004C44.png
new file mode 100755
index 00000000..fdd32dac
Binary files /dev/null and b/static/icons/06004C44.png differ
diff --git a/static/icons/06004C45.png b/static/icons/06004C45.png
new file mode 100755
index 00000000..53720f62
Binary files /dev/null and b/static/icons/06004C45.png differ
diff --git a/static/icons/06004C46.png b/static/icons/06004C46.png
new file mode 100755
index 00000000..4ebc837b
Binary files /dev/null and b/static/icons/06004C46.png differ
diff --git a/static/icons/06004C47.png b/static/icons/06004C47.png
new file mode 100755
index 00000000..726f9070
Binary files /dev/null and b/static/icons/06004C47.png differ
diff --git a/static/icons/06004C48.png b/static/icons/06004C48.png
new file mode 100755
index 00000000..53551a18
Binary files /dev/null and b/static/icons/06004C48.png differ
diff --git a/static/icons/06004C49.png b/static/icons/06004C49.png
new file mode 100755
index 00000000..39fc55b1
Binary files /dev/null and b/static/icons/06004C49.png differ
diff --git a/static/icons/06004C4A.png b/static/icons/06004C4A.png
new file mode 100755
index 00000000..3454bb86
Binary files /dev/null and b/static/icons/06004C4A.png differ
diff --git a/static/icons/06004C4B.png b/static/icons/06004C4B.png
new file mode 100755
index 00000000..42ab3ed2
Binary files /dev/null and b/static/icons/06004C4B.png differ
diff --git a/static/icons/06004C4C.png b/static/icons/06004C4C.png
new file mode 100755
index 00000000..138e27ae
Binary files /dev/null and b/static/icons/06004C4C.png differ
diff --git a/static/icons/06004C4D.png b/static/icons/06004C4D.png
new file mode 100755
index 00000000..e7c424cb
Binary files /dev/null and b/static/icons/06004C4D.png differ
diff --git a/static/icons/06004C4E.png b/static/icons/06004C4E.png
new file mode 100755
index 00000000..7ab613e0
Binary files /dev/null and b/static/icons/06004C4E.png differ
diff --git a/static/icons/06004C5F.png b/static/icons/06004C5F.png
new file mode 100755
index 00000000..00419dab
Binary files /dev/null and b/static/icons/06004C5F.png differ
diff --git a/static/icons/06004C60.png b/static/icons/06004C60.png
new file mode 100755
index 00000000..77995d7a
Binary files /dev/null and b/static/icons/06004C60.png differ
diff --git a/static/icons/06004C61.png b/static/icons/06004C61.png
new file mode 100755
index 00000000..77995d7a
Binary files /dev/null and b/static/icons/06004C61.png differ
diff --git a/static/icons/06004C62.png b/static/icons/06004C62.png
new file mode 100755
index 00000000..77995d7a
Binary files /dev/null and b/static/icons/06004C62.png differ
diff --git a/static/icons/06004C63.png b/static/icons/06004C63.png
new file mode 100755
index 00000000..a3087244
Binary files /dev/null and b/static/icons/06004C63.png differ
diff --git a/static/icons/06004C64.png b/static/icons/06004C64.png
new file mode 100755
index 00000000..deb453f5
Binary files /dev/null and b/static/icons/06004C64.png differ
diff --git a/static/icons/06004C65.png b/static/icons/06004C65.png
new file mode 100755
index 00000000..1517e0fe
Binary files /dev/null and b/static/icons/06004C65.png differ
diff --git a/static/icons/06004C66.png b/static/icons/06004C66.png
new file mode 100755
index 00000000..7dc0fce2
Binary files /dev/null and b/static/icons/06004C66.png differ
diff --git a/static/icons/06004C67.png b/static/icons/06004C67.png
new file mode 100755
index 00000000..8d54be68
Binary files /dev/null and b/static/icons/06004C67.png differ
diff --git a/static/icons/06004C68.png b/static/icons/06004C68.png
new file mode 100755
index 00000000..ae47765b
Binary files /dev/null and b/static/icons/06004C68.png differ
diff --git a/static/icons/06004C69.png b/static/icons/06004C69.png
new file mode 100755
index 00000000..e4bdbf20
Binary files /dev/null and b/static/icons/06004C69.png differ
diff --git a/static/icons/06004C6A.png b/static/icons/06004C6A.png
new file mode 100755
index 00000000..abb7e99c
Binary files /dev/null and b/static/icons/06004C6A.png differ
diff --git a/static/icons/06004C6B.png b/static/icons/06004C6B.png
new file mode 100755
index 00000000..4680faeb
Binary files /dev/null and b/static/icons/06004C6B.png differ
diff --git a/static/icons/06004C6C.png b/static/icons/06004C6C.png
new file mode 100755
index 00000000..c44a2343
Binary files /dev/null and b/static/icons/06004C6C.png differ
diff --git a/static/icons/06004C6D.png b/static/icons/06004C6D.png
new file mode 100755
index 00000000..06c946f1
Binary files /dev/null and b/static/icons/06004C6D.png differ
diff --git a/static/icons/06004C6E.png b/static/icons/06004C6E.png
new file mode 100755
index 00000000..1627be3a
Binary files /dev/null and b/static/icons/06004C6E.png differ
diff --git a/static/icons/06004C6F.png b/static/icons/06004C6F.png
new file mode 100755
index 00000000..6aea97af
Binary files /dev/null and b/static/icons/06004C6F.png differ
diff --git a/static/icons/06004C70.png b/static/icons/06004C70.png
new file mode 100755
index 00000000..4a03c75d
Binary files /dev/null and b/static/icons/06004C70.png differ
diff --git a/static/icons/06004C71.png b/static/icons/06004C71.png
new file mode 100755
index 00000000..4a03c75d
Binary files /dev/null and b/static/icons/06004C71.png differ
diff --git a/static/icons/06004C72.png b/static/icons/06004C72.png
new file mode 100755
index 00000000..4a03c75d
Binary files /dev/null and b/static/icons/06004C72.png differ
diff --git a/static/icons/06004C73.png b/static/icons/06004C73.png
new file mode 100755
index 00000000..0176d97f
Binary files /dev/null and b/static/icons/06004C73.png differ
diff --git a/static/icons/06004C74.png b/static/icons/06004C74.png
new file mode 100755
index 00000000..ec27ccda
Binary files /dev/null and b/static/icons/06004C74.png differ
diff --git a/static/icons/06004C75.png b/static/icons/06004C75.png
new file mode 100755
index 00000000..e7ba1e17
Binary files /dev/null and b/static/icons/06004C75.png differ
diff --git a/static/icons/06004C76.png b/static/icons/06004C76.png
new file mode 100755
index 00000000..4a03c75d
Binary files /dev/null and b/static/icons/06004C76.png differ
diff --git a/static/icons/06004C77.png b/static/icons/06004C77.png
new file mode 100755
index 00000000..4a03c75d
Binary files /dev/null and b/static/icons/06004C77.png differ
diff --git a/static/icons/06004C78.png b/static/icons/06004C78.png
new file mode 100755
index 00000000..4a03c75d
Binary files /dev/null and b/static/icons/06004C78.png differ
diff --git a/static/icons/06004C79.png b/static/icons/06004C79.png
new file mode 100755
index 00000000..2e074906
Binary files /dev/null and b/static/icons/06004C79.png differ
diff --git a/static/icons/06004C7A.png b/static/icons/06004C7A.png
new file mode 100755
index 00000000..de551df3
Binary files /dev/null and b/static/icons/06004C7A.png differ
diff --git a/static/icons/06004C7B.png b/static/icons/06004C7B.png
new file mode 100755
index 00000000..531dc93e
Binary files /dev/null and b/static/icons/06004C7B.png differ
diff --git a/static/icons/06004C7C.png b/static/icons/06004C7C.png
new file mode 100755
index 00000000..185136be
Binary files /dev/null and b/static/icons/06004C7C.png differ
diff --git a/static/icons/06004C7D.png b/static/icons/06004C7D.png
new file mode 100755
index 00000000..3baa1cac
Binary files /dev/null and b/static/icons/06004C7D.png differ
diff --git a/static/icons/06004C7E.png b/static/icons/06004C7E.png
new file mode 100755
index 00000000..eb6243df
Binary files /dev/null and b/static/icons/06004C7E.png differ
diff --git a/static/icons/06004C7F.png b/static/icons/06004C7F.png
new file mode 100755
index 00000000..6df47850
Binary files /dev/null and b/static/icons/06004C7F.png differ
diff --git a/static/icons/06004C80.png b/static/icons/06004C80.png
new file mode 100755
index 00000000..3a5b4a29
Binary files /dev/null and b/static/icons/06004C80.png differ
diff --git a/static/icons/06004C81.png b/static/icons/06004C81.png
new file mode 100755
index 00000000..3a5b4a29
Binary files /dev/null and b/static/icons/06004C81.png differ
diff --git a/static/icons/06004C82.png b/static/icons/06004C82.png
new file mode 100755
index 00000000..3a5b4a29
Binary files /dev/null and b/static/icons/06004C82.png differ
diff --git a/static/icons/06004C83.png b/static/icons/06004C83.png
new file mode 100755
index 00000000..ba9fcaa1
Binary files /dev/null and b/static/icons/06004C83.png differ
diff --git a/static/icons/06004C84.png b/static/icons/06004C84.png
new file mode 100755
index 00000000..85cd9584
Binary files /dev/null and b/static/icons/06004C84.png differ
diff --git a/static/icons/06004C85.png b/static/icons/06004C85.png
new file mode 100755
index 00000000..dd68df75
Binary files /dev/null and b/static/icons/06004C85.png differ
diff --git a/static/icons/06004C86.png b/static/icons/06004C86.png
new file mode 100755
index 00000000..3a5b4a29
Binary files /dev/null and b/static/icons/06004C86.png differ
diff --git a/static/icons/06004C87.png b/static/icons/06004C87.png
new file mode 100755
index 00000000..3a5b4a29
Binary files /dev/null and b/static/icons/06004C87.png differ
diff --git a/static/icons/06004C88.png b/static/icons/06004C88.png
new file mode 100755
index 00000000..3a5b4a29
Binary files /dev/null and b/static/icons/06004C88.png differ
diff --git a/static/icons/06004C89.png b/static/icons/06004C89.png
new file mode 100755
index 00000000..9f770f05
Binary files /dev/null and b/static/icons/06004C89.png differ
diff --git a/static/icons/06004C8A.png b/static/icons/06004C8A.png
new file mode 100755
index 00000000..7b5dea33
Binary files /dev/null and b/static/icons/06004C8A.png differ
diff --git a/static/icons/06004C8B.png b/static/icons/06004C8B.png
new file mode 100755
index 00000000..b1754f6b
Binary files /dev/null and b/static/icons/06004C8B.png differ
diff --git a/static/icons/06004C8C.png b/static/icons/06004C8C.png
new file mode 100755
index 00000000..63767d90
Binary files /dev/null and b/static/icons/06004C8C.png differ
diff --git a/static/icons/06004C8D.png b/static/icons/06004C8D.png
new file mode 100755
index 00000000..915aa9aa
Binary files /dev/null and b/static/icons/06004C8D.png differ
diff --git a/static/icons/06004C8E.png b/static/icons/06004C8E.png
new file mode 100755
index 00000000..c0d06fdc
Binary files /dev/null and b/static/icons/06004C8E.png differ
diff --git a/static/icons/06004C8F.png b/static/icons/06004C8F.png
new file mode 100755
index 00000000..12c559f4
Binary files /dev/null and b/static/icons/06004C8F.png differ
diff --git a/static/icons/06004C90.png b/static/icons/06004C90.png
new file mode 100755
index 00000000..18279da9
Binary files /dev/null and b/static/icons/06004C90.png differ
diff --git a/static/icons/06004C91.png b/static/icons/06004C91.png
new file mode 100755
index 00000000..cc396029
Binary files /dev/null and b/static/icons/06004C91.png differ
diff --git a/static/icons/06004C92.png b/static/icons/06004C92.png
new file mode 100755
index 00000000..8836786f
Binary files /dev/null and b/static/icons/06004C92.png differ
diff --git a/static/icons/06004C93.png b/static/icons/06004C93.png
new file mode 100755
index 00000000..bd849862
Binary files /dev/null and b/static/icons/06004C93.png differ
diff --git a/static/icons/06004C94.png b/static/icons/06004C94.png
new file mode 100755
index 00000000..e8378fb0
Binary files /dev/null and b/static/icons/06004C94.png differ
diff --git a/static/icons/06004C95.png b/static/icons/06004C95.png
new file mode 100755
index 00000000..3c21322b
Binary files /dev/null and b/static/icons/06004C95.png differ
diff --git a/static/icons/06004C96.png b/static/icons/06004C96.png
new file mode 100755
index 00000000..a46a92df
Binary files /dev/null and b/static/icons/06004C96.png differ
diff --git a/static/icons/06004C97.png b/static/icons/06004C97.png
new file mode 100755
index 00000000..fd52468a
Binary files /dev/null and b/static/icons/06004C97.png differ
diff --git a/static/icons/06004C98.png b/static/icons/06004C98.png
new file mode 100755
index 00000000..79694c56
Binary files /dev/null and b/static/icons/06004C98.png differ
diff --git a/static/icons/06004C99.png b/static/icons/06004C99.png
new file mode 100755
index 00000000..d353a69c
Binary files /dev/null and b/static/icons/06004C99.png differ
diff --git a/static/icons/06004C9A.png b/static/icons/06004C9A.png
new file mode 100755
index 00000000..4d349cb7
Binary files /dev/null and b/static/icons/06004C9A.png differ
diff --git a/static/icons/06004C9B.png b/static/icons/06004C9B.png
new file mode 100755
index 00000000..67418cf5
Binary files /dev/null and b/static/icons/06004C9B.png differ
diff --git a/static/icons/06004C9C.png b/static/icons/06004C9C.png
new file mode 100755
index 00000000..60826c95
Binary files /dev/null and b/static/icons/06004C9C.png differ
diff --git a/static/icons/06004C9D.png b/static/icons/06004C9D.png
new file mode 100755
index 00000000..f7e7d7a3
Binary files /dev/null and b/static/icons/06004C9D.png differ
diff --git a/static/icons/06004C9E.png b/static/icons/06004C9E.png
new file mode 100755
index 00000000..0798a81f
Binary files /dev/null and b/static/icons/06004C9E.png differ
diff --git a/static/icons/06004C9F.png b/static/icons/06004C9F.png
new file mode 100755
index 00000000..f1f81088
Binary files /dev/null and b/static/icons/06004C9F.png differ
diff --git a/static/icons/06004CA0.png b/static/icons/06004CA0.png
new file mode 100755
index 00000000..b5356c92
Binary files /dev/null and b/static/icons/06004CA0.png differ
diff --git a/static/icons/06004CA1.png b/static/icons/06004CA1.png
new file mode 100755
index 00000000..7df5c454
Binary files /dev/null and b/static/icons/06004CA1.png differ
diff --git a/static/icons/06004CA2.png b/static/icons/06004CA2.png
new file mode 100755
index 00000000..5726828c
Binary files /dev/null and b/static/icons/06004CA2.png differ
diff --git a/static/icons/06004CA3.png b/static/icons/06004CA3.png
new file mode 100755
index 00000000..9b57fdd1
Binary files /dev/null and b/static/icons/06004CA3.png differ
diff --git a/static/icons/06004CA4.png b/static/icons/06004CA4.png
new file mode 100755
index 00000000..5b680fc9
Binary files /dev/null and b/static/icons/06004CA4.png differ
diff --git a/static/icons/06004CA5.png b/static/icons/06004CA5.png
new file mode 100755
index 00000000..ebbdae16
Binary files /dev/null and b/static/icons/06004CA5.png differ
diff --git a/static/icons/06004CA6.png b/static/icons/06004CA6.png
new file mode 100755
index 00000000..e5af50ae
Binary files /dev/null and b/static/icons/06004CA6.png differ
diff --git a/static/icons/06004CA7.png b/static/icons/06004CA7.png
new file mode 100755
index 00000000..f240094e
Binary files /dev/null and b/static/icons/06004CA7.png differ
diff --git a/static/icons/06004CA8.png b/static/icons/06004CA8.png
new file mode 100755
index 00000000..7588fd53
Binary files /dev/null and b/static/icons/06004CA8.png differ
diff --git a/static/icons/06004CA9.png b/static/icons/06004CA9.png
new file mode 100755
index 00000000..85f8efac
Binary files /dev/null and b/static/icons/06004CA9.png differ
diff --git a/static/icons/06004CAA.png b/static/icons/06004CAA.png
new file mode 100755
index 00000000..fd753e6d
Binary files /dev/null and b/static/icons/06004CAA.png differ
diff --git a/static/icons/06004CAB.png b/static/icons/06004CAB.png
new file mode 100755
index 00000000..08478908
Binary files /dev/null and b/static/icons/06004CAB.png differ
diff --git a/static/icons/06004CAC.png b/static/icons/06004CAC.png
new file mode 100755
index 00000000..08f2df95
Binary files /dev/null and b/static/icons/06004CAC.png differ
diff --git a/static/icons/06004CAD.png b/static/icons/06004CAD.png
new file mode 100755
index 00000000..6e517e79
Binary files /dev/null and b/static/icons/06004CAD.png differ
diff --git a/static/icons/06004CAE.png b/static/icons/06004CAE.png
new file mode 100755
index 00000000..58e544b4
Binary files /dev/null and b/static/icons/06004CAE.png differ
diff --git a/static/icons/06004CAF.png b/static/icons/06004CAF.png
new file mode 100755
index 00000000..2d69fc1f
Binary files /dev/null and b/static/icons/06004CAF.png differ
diff --git a/static/icons/06004CB0.png b/static/icons/06004CB0.png
new file mode 100755
index 00000000..2449f43d
Binary files /dev/null and b/static/icons/06004CB0.png differ
diff --git a/static/icons/06004CB1.png b/static/icons/06004CB1.png
new file mode 100755
index 00000000..a850a0d7
Binary files /dev/null and b/static/icons/06004CB1.png differ
diff --git a/static/icons/06004CB2.png b/static/icons/06004CB2.png
new file mode 100755
index 00000000..68aff885
Binary files /dev/null and b/static/icons/06004CB2.png differ
diff --git a/static/icons/06004CB3.png b/static/icons/06004CB3.png
new file mode 100755
index 00000000..ff6b36b7
Binary files /dev/null and b/static/icons/06004CB3.png differ
diff --git a/static/icons/06004CB5.png b/static/icons/06004CB5.png
new file mode 100755
index 00000000..c793476c
Binary files /dev/null and b/static/icons/06004CB5.png differ
diff --git a/static/icons/06004CB6.png b/static/icons/06004CB6.png
new file mode 100755
index 00000000..b7629f9e
Binary files /dev/null and b/static/icons/06004CB6.png differ
diff --git a/static/icons/06004CB7.png b/static/icons/06004CB7.png
new file mode 100755
index 00000000..2fe691c4
Binary files /dev/null and b/static/icons/06004CB7.png differ
diff --git a/static/icons/06004CB8.png b/static/icons/06004CB8.png
new file mode 100755
index 00000000..a9ff8288
Binary files /dev/null and b/static/icons/06004CB8.png differ
diff --git a/static/icons/06004CB9.png b/static/icons/06004CB9.png
new file mode 100755
index 00000000..c6a071d7
Binary files /dev/null and b/static/icons/06004CB9.png differ
diff --git a/static/icons/06004CBA.png b/static/icons/06004CBA.png
new file mode 100755
index 00000000..6991148f
Binary files /dev/null and b/static/icons/06004CBA.png differ
diff --git a/static/icons/06004CBB.png b/static/icons/06004CBB.png
new file mode 100755
index 00000000..5a75494a
Binary files /dev/null and b/static/icons/06004CBB.png differ
diff --git a/static/icons/06004CBC.png b/static/icons/06004CBC.png
new file mode 100755
index 00000000..00bec772
Binary files /dev/null and b/static/icons/06004CBC.png differ
diff --git a/static/icons/06004CBD.png b/static/icons/06004CBD.png
new file mode 100755
index 00000000..028656e9
Binary files /dev/null and b/static/icons/06004CBD.png differ
diff --git a/static/icons/06004CBE.png b/static/icons/06004CBE.png
new file mode 100755
index 00000000..aba4ae0d
Binary files /dev/null and b/static/icons/06004CBE.png differ
diff --git a/static/icons/06004CBF.png b/static/icons/06004CBF.png
new file mode 100755
index 00000000..9b8e7fb4
Binary files /dev/null and b/static/icons/06004CBF.png differ
diff --git a/static/icons/06004CC0.png b/static/icons/06004CC0.png
new file mode 100755
index 00000000..fb093f29
Binary files /dev/null and b/static/icons/06004CC0.png differ
diff --git a/static/icons/06004CC1.png b/static/icons/06004CC1.png
new file mode 100755
index 00000000..ffbe4d26
Binary files /dev/null and b/static/icons/06004CC1.png differ
diff --git a/static/icons/06004CC2.png b/static/icons/06004CC2.png
new file mode 100755
index 00000000..99fd8c35
Binary files /dev/null and b/static/icons/06004CC2.png differ
diff --git a/static/icons/06004CC3.png b/static/icons/06004CC3.png
new file mode 100755
index 00000000..31ba2c38
Binary files /dev/null and b/static/icons/06004CC3.png differ
diff --git a/static/icons/06004CC4.png b/static/icons/06004CC4.png
new file mode 100755
index 00000000..5445e1bb
Binary files /dev/null and b/static/icons/06004CC4.png differ
diff --git a/static/icons/06004CC5.png b/static/icons/06004CC5.png
new file mode 100755
index 00000000..75b70dac
Binary files /dev/null and b/static/icons/06004CC5.png differ
diff --git a/static/icons/06004CC6.png b/static/icons/06004CC6.png
new file mode 100755
index 00000000..49db8b16
Binary files /dev/null and b/static/icons/06004CC6.png differ
diff --git a/static/icons/06004CC7.png b/static/icons/06004CC7.png
new file mode 100755
index 00000000..0afa6d7e
Binary files /dev/null and b/static/icons/06004CC7.png differ
diff --git a/static/icons/06004CC8.png b/static/icons/06004CC8.png
new file mode 100755
index 00000000..182415ee
Binary files /dev/null and b/static/icons/06004CC8.png differ
diff --git a/static/icons/06004CC9.png b/static/icons/06004CC9.png
new file mode 100755
index 00000000..489f3329
Binary files /dev/null and b/static/icons/06004CC9.png differ
diff --git a/static/icons/06004CCA.png b/static/icons/06004CCA.png
new file mode 100755
index 00000000..da320a86
Binary files /dev/null and b/static/icons/06004CCA.png differ
diff --git a/static/icons/06004CDA.png b/static/icons/06004CDA.png
new file mode 100755
index 00000000..b10e1572
Binary files /dev/null and b/static/icons/06004CDA.png differ
diff --git a/static/icons/06004CDB.png b/static/icons/06004CDB.png
new file mode 100755
index 00000000..604ec430
Binary files /dev/null and b/static/icons/06004CDB.png differ
diff --git a/static/icons/06004CDC.png b/static/icons/06004CDC.png
new file mode 100755
index 00000000..91658014
Binary files /dev/null and b/static/icons/06004CDC.png differ
diff --git a/static/icons/06004CDD.png b/static/icons/06004CDD.png
new file mode 100755
index 00000000..45196489
Binary files /dev/null and b/static/icons/06004CDD.png differ
diff --git a/static/icons/06004CDE.png b/static/icons/06004CDE.png
new file mode 100755
index 00000000..6b355ae6
Binary files /dev/null and b/static/icons/06004CDE.png differ
diff --git a/static/icons/06004CDF.png b/static/icons/06004CDF.png
new file mode 100755
index 00000000..59203892
Binary files /dev/null and b/static/icons/06004CDF.png differ
diff --git a/static/icons/06004CE4.png b/static/icons/06004CE4.png
new file mode 100755
index 00000000..155218fb
Binary files /dev/null and b/static/icons/06004CE4.png differ
diff --git a/static/icons/06004CE5.png b/static/icons/06004CE5.png
new file mode 100755
index 00000000..910c8ce3
Binary files /dev/null and b/static/icons/06004CE5.png differ
diff --git a/static/icons/06004CE6.png b/static/icons/06004CE6.png
new file mode 100755
index 00000000..8c2522e6
Binary files /dev/null and b/static/icons/06004CE6.png differ
diff --git a/static/icons/06004CE7.png b/static/icons/06004CE7.png
new file mode 100755
index 00000000..bf0db2fc
Binary files /dev/null and b/static/icons/06004CE7.png differ
diff --git a/static/icons/06004CE8.png b/static/icons/06004CE8.png
new file mode 100755
index 00000000..b064cf43
Binary files /dev/null and b/static/icons/06004CE8.png differ
diff --git a/static/icons/06004CE9.png b/static/icons/06004CE9.png
new file mode 100755
index 00000000..eb8e25fd
Binary files /dev/null and b/static/icons/06004CE9.png differ
diff --git a/static/icons/06004CEA.png b/static/icons/06004CEA.png
new file mode 100755
index 00000000..bcd59e31
Binary files /dev/null and b/static/icons/06004CEA.png differ
diff --git a/static/icons/06004CEB.png b/static/icons/06004CEB.png
new file mode 100755
index 00000000..5c8afb2d
Binary files /dev/null and b/static/icons/06004CEB.png differ
diff --git a/static/icons/06004CEC.png b/static/icons/06004CEC.png
new file mode 100755
index 00000000..d1832ef6
Binary files /dev/null and b/static/icons/06004CEC.png differ
diff --git a/static/icons/06004CED.png b/static/icons/06004CED.png
new file mode 100755
index 00000000..1056e0d9
Binary files /dev/null and b/static/icons/06004CED.png differ
diff --git a/static/icons/06004CEE.png b/static/icons/06004CEE.png
new file mode 100755
index 00000000..72721784
Binary files /dev/null and b/static/icons/06004CEE.png differ
diff --git a/static/icons/06004CEF.png b/static/icons/06004CEF.png
new file mode 100755
index 00000000..c757a39f
Binary files /dev/null and b/static/icons/06004CEF.png differ
diff --git a/static/icons/06004CF0.png b/static/icons/06004CF0.png
new file mode 100755
index 00000000..3a4bb6ef
Binary files /dev/null and b/static/icons/06004CF0.png differ
diff --git a/static/icons/06004CF1.png b/static/icons/06004CF1.png
new file mode 100755
index 00000000..83bc7ff4
Binary files /dev/null and b/static/icons/06004CF1.png differ
diff --git a/static/icons/06004CF2.png b/static/icons/06004CF2.png
new file mode 100755
index 00000000..6d0ddc2e
Binary files /dev/null and b/static/icons/06004CF2.png differ
diff --git a/static/icons/06004CF3.png b/static/icons/06004CF3.png
new file mode 100755
index 00000000..8b9a18c4
Binary files /dev/null and b/static/icons/06004CF3.png differ
diff --git a/static/icons/06004CF4.png b/static/icons/06004CF4.png
new file mode 100755
index 00000000..08d75a1e
Binary files /dev/null and b/static/icons/06004CF4.png differ
diff --git a/static/icons/06004CF5.png b/static/icons/06004CF5.png
new file mode 100755
index 00000000..3892298c
Binary files /dev/null and b/static/icons/06004CF5.png differ
diff --git a/static/icons/06004CF6.png b/static/icons/06004CF6.png
new file mode 100755
index 00000000..cfe87fcd
Binary files /dev/null and b/static/icons/06004CF6.png differ
diff --git a/static/icons/06004CF7.png b/static/icons/06004CF7.png
new file mode 100755
index 00000000..0635d2a3
Binary files /dev/null and b/static/icons/06004CF7.png differ
diff --git a/static/icons/06004CF8.png b/static/icons/06004CF8.png
new file mode 100755
index 00000000..2f4a43db
Binary files /dev/null and b/static/icons/06004CF8.png differ
diff --git a/static/icons/06004CF9.png b/static/icons/06004CF9.png
new file mode 100755
index 00000000..e6e24c78
Binary files /dev/null and b/static/icons/06004CF9.png differ
diff --git a/static/icons/06004CFA.png b/static/icons/06004CFA.png
new file mode 100755
index 00000000..3af10bac
Binary files /dev/null and b/static/icons/06004CFA.png differ
diff --git a/static/icons/06004CFB.png b/static/icons/06004CFB.png
new file mode 100755
index 00000000..eaaab6f6
Binary files /dev/null and b/static/icons/06004CFB.png differ
diff --git a/static/icons/06004CFC.png b/static/icons/06004CFC.png
new file mode 100755
index 00000000..f33b9963
Binary files /dev/null and b/static/icons/06004CFC.png differ
diff --git a/static/icons/06004CFD.png b/static/icons/06004CFD.png
new file mode 100755
index 00000000..bce98001
Binary files /dev/null and b/static/icons/06004CFD.png differ
diff --git a/static/icons/06004CFE.png b/static/icons/06004CFE.png
new file mode 100755
index 00000000..9553102e
Binary files /dev/null and b/static/icons/06004CFE.png differ
diff --git a/static/icons/06004CFF.png b/static/icons/06004CFF.png
new file mode 100755
index 00000000..de2f359a
Binary files /dev/null and b/static/icons/06004CFF.png differ
diff --git a/static/icons/06004D00.png b/static/icons/06004D00.png
new file mode 100755
index 00000000..3174a1f8
Binary files /dev/null and b/static/icons/06004D00.png differ
diff --git a/static/icons/06004D01.png b/static/icons/06004D01.png
new file mode 100755
index 00000000..db5987d0
Binary files /dev/null and b/static/icons/06004D01.png differ
diff --git a/static/icons/06004D02.png b/static/icons/06004D02.png
new file mode 100755
index 00000000..fcad34ef
Binary files /dev/null and b/static/icons/06004D02.png differ
diff --git a/static/icons/06004D03.png b/static/icons/06004D03.png
new file mode 100755
index 00000000..ba01988e
Binary files /dev/null and b/static/icons/06004D03.png differ
diff --git a/static/icons/06004D04.png b/static/icons/06004D04.png
new file mode 100755
index 00000000..fcca27d0
Binary files /dev/null and b/static/icons/06004D04.png differ
diff --git a/static/icons/06004D05.png b/static/icons/06004D05.png
new file mode 100755
index 00000000..756f2648
Binary files /dev/null and b/static/icons/06004D05.png differ
diff --git a/static/icons/06004D06.png b/static/icons/06004D06.png
new file mode 100755
index 00000000..406b0d4e
Binary files /dev/null and b/static/icons/06004D06.png differ
diff --git a/static/icons/06004D07.png b/static/icons/06004D07.png
new file mode 100755
index 00000000..ed2c7ac2
Binary files /dev/null and b/static/icons/06004D07.png differ
diff --git a/static/icons/06004D08.png b/static/icons/06004D08.png
new file mode 100755
index 00000000..830e80ad
Binary files /dev/null and b/static/icons/06004D08.png differ
diff --git a/static/icons/06004D09.png b/static/icons/06004D09.png
new file mode 100755
index 00000000..2f8bf39e
Binary files /dev/null and b/static/icons/06004D09.png differ
diff --git a/static/icons/06004D0A.png b/static/icons/06004D0A.png
new file mode 100755
index 00000000..c145fa83
Binary files /dev/null and b/static/icons/06004D0A.png differ
diff --git a/static/icons/06004D0B.png b/static/icons/06004D0B.png
new file mode 100755
index 00000000..fe9b2b80
Binary files /dev/null and b/static/icons/06004D0B.png differ
diff --git a/static/icons/06004D0C.png b/static/icons/06004D0C.png
new file mode 100755
index 00000000..ec41a84a
Binary files /dev/null and b/static/icons/06004D0C.png differ
diff --git a/static/icons/06004D0D.png b/static/icons/06004D0D.png
new file mode 100755
index 00000000..484f8f88
Binary files /dev/null and b/static/icons/06004D0D.png differ
diff --git a/static/icons/06004D10.png b/static/icons/06004D10.png
new file mode 100755
index 00000000..50f52cac
Binary files /dev/null and b/static/icons/06004D10.png differ
diff --git a/static/icons/06004D11.png b/static/icons/06004D11.png
new file mode 100755
index 00000000..e9c5b76f
Binary files /dev/null and b/static/icons/06004D11.png differ
diff --git a/static/icons/06004D15.png b/static/icons/06004D15.png
new file mode 100755
index 00000000..30112f19
Binary files /dev/null and b/static/icons/06004D15.png differ
diff --git a/static/icons/06004D16.png b/static/icons/06004D16.png
new file mode 100755
index 00000000..4b59eabf
Binary files /dev/null and b/static/icons/06004D16.png differ
diff --git a/static/icons/06004D17.png b/static/icons/06004D17.png
new file mode 100755
index 00000000..e893bd92
Binary files /dev/null and b/static/icons/06004D17.png differ
diff --git a/static/icons/06004D18.png b/static/icons/06004D18.png
new file mode 100755
index 00000000..f273d0b0
Binary files /dev/null and b/static/icons/06004D18.png differ
diff --git a/static/icons/06004D19.png b/static/icons/06004D19.png
new file mode 100755
index 00000000..49e62afa
Binary files /dev/null and b/static/icons/06004D19.png differ
diff --git a/static/icons/06004D1C.png b/static/icons/06004D1C.png
new file mode 100755
index 00000000..110d09e5
Binary files /dev/null and b/static/icons/06004D1C.png differ
diff --git a/static/icons/06004D1D.png b/static/icons/06004D1D.png
new file mode 100755
index 00000000..d0944cb2
Binary files /dev/null and b/static/icons/06004D1D.png differ
diff --git a/static/icons/06004D1E.png b/static/icons/06004D1E.png
new file mode 100755
index 00000000..e5d40b4e
Binary files /dev/null and b/static/icons/06004D1E.png differ
diff --git a/static/icons/06004D1F.png b/static/icons/06004D1F.png
new file mode 100755
index 00000000..56bfe8f2
Binary files /dev/null and b/static/icons/06004D1F.png differ
diff --git a/static/icons/06004D20.png b/static/icons/06004D20.png
new file mode 100755
index 00000000..a0e02906
Binary files /dev/null and b/static/icons/06004D20.png differ
diff --git a/static/icons/06004D21.png b/static/icons/06004D21.png
new file mode 100755
index 00000000..84088a5c
Binary files /dev/null and b/static/icons/06004D21.png differ
diff --git a/static/icons/06004D22.png b/static/icons/06004D22.png
new file mode 100755
index 00000000..a67d8bd1
Binary files /dev/null and b/static/icons/06004D22.png differ
diff --git a/static/icons/06004D23.png b/static/icons/06004D23.png
new file mode 100755
index 00000000..eeb29ec8
Binary files /dev/null and b/static/icons/06004D23.png differ
diff --git a/static/icons/06004D24.png b/static/icons/06004D24.png
new file mode 100755
index 00000000..a03bc2f5
Binary files /dev/null and b/static/icons/06004D24.png differ
diff --git a/static/icons/06004D25.png b/static/icons/06004D25.png
new file mode 100755
index 00000000..d1a79124
Binary files /dev/null and b/static/icons/06004D25.png differ
diff --git a/static/icons/06004D26.png b/static/icons/06004D26.png
new file mode 100755
index 00000000..d870f967
Binary files /dev/null and b/static/icons/06004D26.png differ
diff --git a/static/icons/06004D27.png b/static/icons/06004D27.png
new file mode 100755
index 00000000..1cc7276d
Binary files /dev/null and b/static/icons/06004D27.png differ
diff --git a/static/icons/06004D28.png b/static/icons/06004D28.png
new file mode 100755
index 00000000..b373bfa2
Binary files /dev/null and b/static/icons/06004D28.png differ
diff --git a/static/icons/06004D29.png b/static/icons/06004D29.png
new file mode 100755
index 00000000..58c0fbea
Binary files /dev/null and b/static/icons/06004D29.png differ
diff --git a/static/icons/06004D2A.png b/static/icons/06004D2A.png
new file mode 100755
index 00000000..0b826ea5
Binary files /dev/null and b/static/icons/06004D2A.png differ
diff --git a/static/icons/06004D2B.png b/static/icons/06004D2B.png
new file mode 100755
index 00000000..549632c1
Binary files /dev/null and b/static/icons/06004D2B.png differ
diff --git a/static/icons/06004D2C.png b/static/icons/06004D2C.png
new file mode 100755
index 00000000..035f241c
Binary files /dev/null and b/static/icons/06004D2C.png differ
diff --git a/static/icons/06004D2D.png b/static/icons/06004D2D.png
new file mode 100755
index 00000000..3d27900c
Binary files /dev/null and b/static/icons/06004D2D.png differ
diff --git a/static/icons/06004D2E.png b/static/icons/06004D2E.png
new file mode 100755
index 00000000..85f38f86
Binary files /dev/null and b/static/icons/06004D2E.png differ
diff --git a/static/icons/06004D2F.png b/static/icons/06004D2F.png
new file mode 100755
index 00000000..d5fd9e86
Binary files /dev/null and b/static/icons/06004D2F.png differ
diff --git a/static/icons/06004D30.png b/static/icons/06004D30.png
new file mode 100755
index 00000000..e2840187
Binary files /dev/null and b/static/icons/06004D30.png differ
diff --git a/static/icons/06004D31.png b/static/icons/06004D31.png
new file mode 100755
index 00000000..0c1fbeaa
Binary files /dev/null and b/static/icons/06004D31.png differ
diff --git a/static/icons/06004D32.png b/static/icons/06004D32.png
new file mode 100755
index 00000000..3184753e
Binary files /dev/null and b/static/icons/06004D32.png differ
diff --git a/static/icons/06004D33.png b/static/icons/06004D33.png
new file mode 100755
index 00000000..5f0d5579
Binary files /dev/null and b/static/icons/06004D33.png differ
diff --git a/static/icons/06004D34.png b/static/icons/06004D34.png
new file mode 100755
index 00000000..46ff3ff1
Binary files /dev/null and b/static/icons/06004D34.png differ
diff --git a/static/icons/06004D35.png b/static/icons/06004D35.png
new file mode 100755
index 00000000..ad52ede4
Binary files /dev/null and b/static/icons/06004D35.png differ
diff --git a/static/icons/06004D36.png b/static/icons/06004D36.png
new file mode 100755
index 00000000..54a9a0ef
Binary files /dev/null and b/static/icons/06004D36.png differ
diff --git a/static/icons/06004D37.png b/static/icons/06004D37.png
new file mode 100755
index 00000000..ffd2628a
Binary files /dev/null and b/static/icons/06004D37.png differ
diff --git a/static/icons/06004D38.png b/static/icons/06004D38.png
new file mode 100755
index 00000000..91420673
Binary files /dev/null and b/static/icons/06004D38.png differ
diff --git a/static/icons/06004D39.png b/static/icons/06004D39.png
new file mode 100755
index 00000000..d7676fbe
Binary files /dev/null and b/static/icons/06004D39.png differ
diff --git a/static/icons/06004D3A.png b/static/icons/06004D3A.png
new file mode 100755
index 00000000..a6684341
Binary files /dev/null and b/static/icons/06004D3A.png differ
diff --git a/static/icons/06004D3B.png b/static/icons/06004D3B.png
new file mode 100755
index 00000000..071ff1ad
Binary files /dev/null and b/static/icons/06004D3B.png differ
diff --git a/static/icons/06004D3C.png b/static/icons/06004D3C.png
new file mode 100755
index 00000000..d73089ae
Binary files /dev/null and b/static/icons/06004D3C.png differ
diff --git a/static/icons/06004D3D.png b/static/icons/06004D3D.png
new file mode 100755
index 00000000..bc7901ea
Binary files /dev/null and b/static/icons/06004D3D.png differ
diff --git a/static/icons/06004D3E.png b/static/icons/06004D3E.png
new file mode 100755
index 00000000..d67690ef
Binary files /dev/null and b/static/icons/06004D3E.png differ
diff --git a/static/icons/06004D3F.png b/static/icons/06004D3F.png
new file mode 100755
index 00000000..ec24684e
Binary files /dev/null and b/static/icons/06004D3F.png differ
diff --git a/static/icons/06004D40.png b/static/icons/06004D40.png
new file mode 100755
index 00000000..821c3c67
Binary files /dev/null and b/static/icons/06004D40.png differ
diff --git a/static/icons/06004D41.png b/static/icons/06004D41.png
new file mode 100755
index 00000000..1a7476ed
Binary files /dev/null and b/static/icons/06004D41.png differ
diff --git a/static/icons/06004D42.png b/static/icons/06004D42.png
new file mode 100755
index 00000000..87ec34b8
Binary files /dev/null and b/static/icons/06004D42.png differ
diff --git a/static/icons/06004D43.png b/static/icons/06004D43.png
new file mode 100755
index 00000000..2ae22bdd
Binary files /dev/null and b/static/icons/06004D43.png differ
diff --git a/static/icons/06004D44.png b/static/icons/06004D44.png
new file mode 100755
index 00000000..3924bfd7
Binary files /dev/null and b/static/icons/06004D44.png differ
diff --git a/static/icons/06004D45.png b/static/icons/06004D45.png
new file mode 100755
index 00000000..a287c4a7
Binary files /dev/null and b/static/icons/06004D45.png differ
diff --git a/static/icons/06004D46.png b/static/icons/06004D46.png
new file mode 100755
index 00000000..807521a3
Binary files /dev/null and b/static/icons/06004D46.png differ
diff --git a/static/icons/06004D47.png b/static/icons/06004D47.png
new file mode 100755
index 00000000..fc295144
Binary files /dev/null and b/static/icons/06004D47.png differ
diff --git a/static/icons/06004D48.png b/static/icons/06004D48.png
new file mode 100755
index 00000000..e0b9a505
Binary files /dev/null and b/static/icons/06004D48.png differ
diff --git a/static/icons/06004D49.png b/static/icons/06004D49.png
new file mode 100755
index 00000000..a5dba701
Binary files /dev/null and b/static/icons/06004D49.png differ
diff --git a/static/icons/06004D4A.png b/static/icons/06004D4A.png
new file mode 100755
index 00000000..b7d35198
Binary files /dev/null and b/static/icons/06004D4A.png differ
diff --git a/static/icons/06004D4B.png b/static/icons/06004D4B.png
new file mode 100755
index 00000000..6ccc0c39
Binary files /dev/null and b/static/icons/06004D4B.png differ
diff --git a/static/icons/06004D4C.png b/static/icons/06004D4C.png
new file mode 100755
index 00000000..699c627a
Binary files /dev/null and b/static/icons/06004D4C.png differ
diff --git a/static/icons/06004D4D.png b/static/icons/06004D4D.png
new file mode 100755
index 00000000..6b2d8a03
Binary files /dev/null and b/static/icons/06004D4D.png differ
diff --git a/static/icons/06004D4E.png b/static/icons/06004D4E.png
new file mode 100755
index 00000000..85f7b637
Binary files /dev/null and b/static/icons/06004D4E.png differ
diff --git a/static/icons/06004D4F.png b/static/icons/06004D4F.png
new file mode 100755
index 00000000..2e7eec7b
Binary files /dev/null and b/static/icons/06004D4F.png differ
diff --git a/static/icons/06004D50.png b/static/icons/06004D50.png
new file mode 100755
index 00000000..80c18307
Binary files /dev/null and b/static/icons/06004D50.png differ
diff --git a/static/icons/06004D51.png b/static/icons/06004D51.png
new file mode 100755
index 00000000..63f76368
Binary files /dev/null and b/static/icons/06004D51.png differ
diff --git a/static/icons/06004D52.png b/static/icons/06004D52.png
new file mode 100755
index 00000000..96ac1a30
Binary files /dev/null and b/static/icons/06004D52.png differ
diff --git a/static/icons/06004D53.png b/static/icons/06004D53.png
new file mode 100755
index 00000000..e9a5c162
Binary files /dev/null and b/static/icons/06004D53.png differ
diff --git a/static/icons/06004D54.png b/static/icons/06004D54.png
new file mode 100755
index 00000000..ba8f7306
Binary files /dev/null and b/static/icons/06004D54.png differ
diff --git a/static/icons/06004D55.png b/static/icons/06004D55.png
new file mode 100755
index 00000000..54163f55
Binary files /dev/null and b/static/icons/06004D55.png differ
diff --git a/static/icons/06004D56.png b/static/icons/06004D56.png
new file mode 100755
index 00000000..4d7a74c2
Binary files /dev/null and b/static/icons/06004D56.png differ
diff --git a/static/icons/06004D57.png b/static/icons/06004D57.png
new file mode 100755
index 00000000..a9e2fe0a
Binary files /dev/null and b/static/icons/06004D57.png differ
diff --git a/static/icons/06004D58.png b/static/icons/06004D58.png
new file mode 100755
index 00000000..8d22a459
Binary files /dev/null and b/static/icons/06004D58.png differ
diff --git a/static/icons/06004D59.png b/static/icons/06004D59.png
new file mode 100755
index 00000000..bd585a59
Binary files /dev/null and b/static/icons/06004D59.png differ
diff --git a/static/icons/06004D5A.png b/static/icons/06004D5A.png
new file mode 100755
index 00000000..b8186f28
Binary files /dev/null and b/static/icons/06004D5A.png differ
diff --git a/static/icons/06004D5B.png b/static/icons/06004D5B.png
new file mode 100755
index 00000000..119d23dc
Binary files /dev/null and b/static/icons/06004D5B.png differ
diff --git a/static/icons/06004D5C.png b/static/icons/06004D5C.png
new file mode 100755
index 00000000..03f545f9
Binary files /dev/null and b/static/icons/06004D5C.png differ
diff --git a/static/icons/06004D5D.png b/static/icons/06004D5D.png
new file mode 100755
index 00000000..ae5659fb
Binary files /dev/null and b/static/icons/06004D5D.png differ
diff --git a/static/icons/06004D5E.png b/static/icons/06004D5E.png
new file mode 100755
index 00000000..fdc04b65
Binary files /dev/null and b/static/icons/06004D5E.png differ
diff --git a/static/icons/06004D5F.png b/static/icons/06004D5F.png
new file mode 100755
index 00000000..b503dd84
Binary files /dev/null and b/static/icons/06004D5F.png differ
diff --git a/static/icons/06004D60.png b/static/icons/06004D60.png
new file mode 100755
index 00000000..5456ea48
Binary files /dev/null and b/static/icons/06004D60.png differ
diff --git a/static/icons/06004D61.png b/static/icons/06004D61.png
new file mode 100755
index 00000000..67a23fb2
Binary files /dev/null and b/static/icons/06004D61.png differ
diff --git a/static/icons/06004D63.png b/static/icons/06004D63.png
new file mode 100755
index 00000000..fb10182a
Binary files /dev/null and b/static/icons/06004D63.png differ
diff --git a/static/icons/06004D64.png b/static/icons/06004D64.png
new file mode 100755
index 00000000..b2bd1a59
Binary files /dev/null and b/static/icons/06004D64.png differ
diff --git a/static/icons/06004D65.png b/static/icons/06004D65.png
new file mode 100755
index 00000000..8b0eca64
Binary files /dev/null and b/static/icons/06004D65.png differ
diff --git a/static/icons/06004D66.png b/static/icons/06004D66.png
new file mode 100755
index 00000000..d4c7531c
Binary files /dev/null and b/static/icons/06004D66.png differ
diff --git a/static/icons/06004D67.png b/static/icons/06004D67.png
new file mode 100755
index 00000000..6c0f1b36
Binary files /dev/null and b/static/icons/06004D67.png differ
diff --git a/static/icons/06004D68.png b/static/icons/06004D68.png
new file mode 100755
index 00000000..8d9f43e9
Binary files /dev/null and b/static/icons/06004D68.png differ
diff --git a/static/icons/06004D69.png b/static/icons/06004D69.png
new file mode 100755
index 00000000..948ecd4f
Binary files /dev/null and b/static/icons/06004D69.png differ
diff --git a/static/icons/06004D6A.png b/static/icons/06004D6A.png
new file mode 100755
index 00000000..6857ea4d
Binary files /dev/null and b/static/icons/06004D6A.png differ
diff --git a/static/icons/06004D6B.png b/static/icons/06004D6B.png
new file mode 100755
index 00000000..88eaa943
Binary files /dev/null and b/static/icons/06004D6B.png differ
diff --git a/static/icons/06004D6C.png b/static/icons/06004D6C.png
new file mode 100755
index 00000000..4b17b826
Binary files /dev/null and b/static/icons/06004D6C.png differ
diff --git a/static/icons/06004D6D.png b/static/icons/06004D6D.png
new file mode 100755
index 00000000..aa9a358f
Binary files /dev/null and b/static/icons/06004D6D.png differ
diff --git a/static/icons/06004D6E.png b/static/icons/06004D6E.png
new file mode 100755
index 00000000..a81a8f8b
Binary files /dev/null and b/static/icons/06004D6E.png differ
diff --git a/static/icons/06004D6F.png b/static/icons/06004D6F.png
new file mode 100755
index 00000000..163dd82e
Binary files /dev/null and b/static/icons/06004D6F.png differ
diff --git a/static/icons/06004D70.png b/static/icons/06004D70.png
new file mode 100755
index 00000000..e0415f80
Binary files /dev/null and b/static/icons/06004D70.png differ
diff --git a/static/icons/06004D71.png b/static/icons/06004D71.png
new file mode 100755
index 00000000..d33b526b
Binary files /dev/null and b/static/icons/06004D71.png differ
diff --git a/static/icons/06004D72.png b/static/icons/06004D72.png
new file mode 100755
index 00000000..e6d0f0d7
Binary files /dev/null and b/static/icons/06004D72.png differ
diff --git a/static/icons/06004D73.png b/static/icons/06004D73.png
new file mode 100755
index 00000000..84249b5a
Binary files /dev/null and b/static/icons/06004D73.png differ
diff --git a/static/icons/06004D74.png b/static/icons/06004D74.png
new file mode 100755
index 00000000..b052a6de
Binary files /dev/null and b/static/icons/06004D74.png differ
diff --git a/static/icons/06004D75.png b/static/icons/06004D75.png
new file mode 100755
index 00000000..09af1e33
Binary files /dev/null and b/static/icons/06004D75.png differ
diff --git a/static/icons/06004D76.png b/static/icons/06004D76.png
new file mode 100755
index 00000000..b5f943f5
Binary files /dev/null and b/static/icons/06004D76.png differ
diff --git a/static/icons/06004D77.png b/static/icons/06004D77.png
new file mode 100755
index 00000000..c31e653a
Binary files /dev/null and b/static/icons/06004D77.png differ
diff --git a/static/icons/06004D78.png b/static/icons/06004D78.png
new file mode 100755
index 00000000..e451929e
Binary files /dev/null and b/static/icons/06004D78.png differ
diff --git a/static/icons/06004D79.png b/static/icons/06004D79.png
new file mode 100755
index 00000000..5fc6a477
Binary files /dev/null and b/static/icons/06004D79.png differ
diff --git a/static/icons/06004D7A.png b/static/icons/06004D7A.png
new file mode 100755
index 00000000..c0df03da
Binary files /dev/null and b/static/icons/06004D7A.png differ
diff --git a/static/icons/06004D7B.png b/static/icons/06004D7B.png
new file mode 100755
index 00000000..2850cb0b
Binary files /dev/null and b/static/icons/06004D7B.png differ
diff --git a/static/icons/06004D7C.png b/static/icons/06004D7C.png
new file mode 100755
index 00000000..aa34a224
Binary files /dev/null and b/static/icons/06004D7C.png differ
diff --git a/static/icons/06004D7D.png b/static/icons/06004D7D.png
new file mode 100755
index 00000000..2c8eb011
Binary files /dev/null and b/static/icons/06004D7D.png differ
diff --git a/static/icons/06004D7E.png b/static/icons/06004D7E.png
new file mode 100755
index 00000000..41ba002d
Binary files /dev/null and b/static/icons/06004D7E.png differ
diff --git a/static/icons/06004D7F.png b/static/icons/06004D7F.png
new file mode 100755
index 00000000..c2387c08
Binary files /dev/null and b/static/icons/06004D7F.png differ
diff --git a/static/icons/06004D80.png b/static/icons/06004D80.png
new file mode 100755
index 00000000..a5b10012
Binary files /dev/null and b/static/icons/06004D80.png differ
diff --git a/static/icons/06004D81.png b/static/icons/06004D81.png
new file mode 100755
index 00000000..8ba1f236
Binary files /dev/null and b/static/icons/06004D81.png differ
diff --git a/static/icons/06004D82.png b/static/icons/06004D82.png
new file mode 100755
index 00000000..27593bec
Binary files /dev/null and b/static/icons/06004D82.png differ
diff --git a/static/icons/06004D83.png b/static/icons/06004D83.png
new file mode 100755
index 00000000..ccf5c650
Binary files /dev/null and b/static/icons/06004D83.png differ
diff --git a/static/icons/06004D84.png b/static/icons/06004D84.png
new file mode 100755
index 00000000..857c7d5c
Binary files /dev/null and b/static/icons/06004D84.png differ
diff --git a/static/icons/06004D85.png b/static/icons/06004D85.png
new file mode 100755
index 00000000..d395a15d
Binary files /dev/null and b/static/icons/06004D85.png differ
diff --git a/static/icons/06004D86.png b/static/icons/06004D86.png
new file mode 100755
index 00000000..ca504dec
Binary files /dev/null and b/static/icons/06004D86.png differ
diff --git a/static/icons/06004D87.png b/static/icons/06004D87.png
new file mode 100755
index 00000000..b8cfa44a
Binary files /dev/null and b/static/icons/06004D87.png differ
diff --git a/static/icons/06004D88.png b/static/icons/06004D88.png
new file mode 100755
index 00000000..517c4095
Binary files /dev/null and b/static/icons/06004D88.png differ
diff --git a/static/icons/06004D89.png b/static/icons/06004D89.png
new file mode 100755
index 00000000..a7f2c7f4
Binary files /dev/null and b/static/icons/06004D89.png differ
diff --git a/static/icons/06004D8A.png b/static/icons/06004D8A.png
new file mode 100755
index 00000000..d18902a1
Binary files /dev/null and b/static/icons/06004D8A.png differ
diff --git a/static/icons/06004D8B.png b/static/icons/06004D8B.png
new file mode 100755
index 00000000..6b047d50
Binary files /dev/null and b/static/icons/06004D8B.png differ
diff --git a/static/icons/06004D8D.png b/static/icons/06004D8D.png
new file mode 100755
index 00000000..41e71c04
Binary files /dev/null and b/static/icons/06004D8D.png differ
diff --git a/static/icons/06004D8E.png b/static/icons/06004D8E.png
new file mode 100755
index 00000000..64da5126
Binary files /dev/null and b/static/icons/06004D8E.png differ
diff --git a/static/icons/06004D92.png b/static/icons/06004D92.png
new file mode 100755
index 00000000..367a377f
Binary files /dev/null and b/static/icons/06004D92.png differ
diff --git a/static/icons/06004D94.png b/static/icons/06004D94.png
new file mode 100755
index 00000000..50383fa8
Binary files /dev/null and b/static/icons/06004D94.png differ
diff --git a/static/icons/06004D98.png b/static/icons/06004D98.png
new file mode 100755
index 00000000..c6f282ef
Binary files /dev/null and b/static/icons/06004D98.png differ
diff --git a/static/icons/06004D9B.png b/static/icons/06004D9B.png
new file mode 100755
index 00000000..49809c8a
Binary files /dev/null and b/static/icons/06004D9B.png differ
diff --git a/static/icons/06004D9C.png b/static/icons/06004D9C.png
new file mode 100755
index 00000000..4a2b81d0
Binary files /dev/null and b/static/icons/06004D9C.png differ
diff --git a/static/icons/06004D9E.png b/static/icons/06004D9E.png
new file mode 100755
index 00000000..fb172951
Binary files /dev/null and b/static/icons/06004D9E.png differ
diff --git a/static/icons/06004DA0.png b/static/icons/06004DA0.png
new file mode 100755
index 00000000..b4826ede
Binary files /dev/null and b/static/icons/06004DA0.png differ
diff --git a/static/icons/06004DBC.png b/static/icons/06004DBC.png
new file mode 100755
index 00000000..b3339f66
Binary files /dev/null and b/static/icons/06004DBC.png differ
diff --git a/static/icons/06004DC3.png b/static/icons/06004DC3.png
new file mode 100755
index 00000000..c5ee5567
Binary files /dev/null and b/static/icons/06004DC3.png differ
diff --git a/static/icons/06004DC5.png b/static/icons/06004DC5.png
new file mode 100755
index 00000000..b3453a6b
Binary files /dev/null and b/static/icons/06004DC5.png differ
diff --git a/static/icons/06004DD7.png b/static/icons/06004DD7.png
new file mode 100755
index 00000000..10cdd730
Binary files /dev/null and b/static/icons/06004DD7.png differ
diff --git a/static/icons/06004DE5.png b/static/icons/06004DE5.png
new file mode 100755
index 00000000..36cc06c0
Binary files /dev/null and b/static/icons/06004DE5.png differ
diff --git a/static/icons/06004E3F.png b/static/icons/06004E3F.png
new file mode 100755
index 00000000..a572dee3
Binary files /dev/null and b/static/icons/06004E3F.png differ
diff --git a/static/icons/06004E62.png b/static/icons/06004E62.png
new file mode 100755
index 00000000..4223d24e
Binary files /dev/null and b/static/icons/06004E62.png differ
diff --git a/static/icons/06004E64.png b/static/icons/06004E64.png
new file mode 100755
index 00000000..15e78643
Binary files /dev/null and b/static/icons/06004E64.png differ
diff --git a/static/icons/06004F23.png b/static/icons/06004F23.png
new file mode 100755
index 00000000..bbd187ed
Binary files /dev/null and b/static/icons/06004F23.png differ
diff --git a/static/icons/06004F25.png b/static/icons/06004F25.png
new file mode 100755
index 00000000..9e95efee
Binary files /dev/null and b/static/icons/06004F25.png differ
diff --git a/static/icons/06004FF1.png b/static/icons/06004FF1.png
new file mode 100755
index 00000000..005c3438
Binary files /dev/null and b/static/icons/06004FF1.png differ
diff --git a/static/icons/06004FF3.png b/static/icons/06004FF3.png
new file mode 100755
index 00000000..b49a5f21
Binary files /dev/null and b/static/icons/06004FF3.png differ
diff --git a/static/icons/06004FF7.png b/static/icons/06004FF7.png
new file mode 100755
index 00000000..42224da8
Binary files /dev/null and b/static/icons/06004FF7.png differ
diff --git a/static/icons/06004FFC.png b/static/icons/06004FFC.png
new file mode 100755
index 00000000..5650e6ff
Binary files /dev/null and b/static/icons/06004FFC.png differ
diff --git a/static/icons/06005008.png b/static/icons/06005008.png
new file mode 100755
index 00000000..71b4ad60
Binary files /dev/null and b/static/icons/06005008.png differ
diff --git a/static/icons/06005017.png b/static/icons/06005017.png
new file mode 100755
index 00000000..53f38964
Binary files /dev/null and b/static/icons/06005017.png differ
diff --git a/static/icons/0600505A.png b/static/icons/0600505A.png
new file mode 100755
index 00000000..493c7598
Binary files /dev/null and b/static/icons/0600505A.png differ
diff --git a/static/icons/0600505C.png b/static/icons/0600505C.png
new file mode 100755
index 00000000..99879838
Binary files /dev/null and b/static/icons/0600505C.png differ
diff --git a/static/icons/0600507D.png b/static/icons/0600507D.png
new file mode 100755
index 00000000..4ab69e21
Binary files /dev/null and b/static/icons/0600507D.png differ
diff --git a/static/icons/0600507F.png b/static/icons/0600507F.png
new file mode 100755
index 00000000..ee0c6280
Binary files /dev/null and b/static/icons/0600507F.png differ
diff --git a/static/icons/06005087.png b/static/icons/06005087.png
new file mode 100755
index 00000000..30594d9b
Binary files /dev/null and b/static/icons/06005087.png differ
diff --git a/static/icons/060050A5.png b/static/icons/060050A5.png
new file mode 100755
index 00000000..a6bf3cae
Binary files /dev/null and b/static/icons/060050A5.png differ
diff --git a/static/icons/060050A7.png b/static/icons/060050A7.png
new file mode 100755
index 00000000..161910d0
Binary files /dev/null and b/static/icons/060050A7.png differ
diff --git a/static/icons/060050C3.png b/static/icons/060050C3.png
new file mode 100755
index 00000000..b1ad0c23
Binary files /dev/null and b/static/icons/060050C3.png differ
diff --git a/static/icons/06005130.png b/static/icons/06005130.png
new file mode 100755
index 00000000..1716ef5c
Binary files /dev/null and b/static/icons/06005130.png differ
diff --git a/static/icons/0600513A.png b/static/icons/0600513A.png
new file mode 100755
index 00000000..eee950e4
Binary files /dev/null and b/static/icons/0600513A.png differ
diff --git a/static/icons/06005146.png b/static/icons/06005146.png
new file mode 100755
index 00000000..9802534c
Binary files /dev/null and b/static/icons/06005146.png differ
diff --git a/static/icons/06005147.png b/static/icons/06005147.png
new file mode 100755
index 00000000..1896c009
Binary files /dev/null and b/static/icons/06005147.png differ
diff --git a/static/icons/06005149.png b/static/icons/06005149.png
new file mode 100755
index 00000000..f79a24c5
Binary files /dev/null and b/static/icons/06005149.png differ
diff --git a/static/icons/060051A5.png b/static/icons/060051A5.png
new file mode 100755
index 00000000..ee030639
Binary files /dev/null and b/static/icons/060051A5.png differ
diff --git a/static/icons/060051AF.png b/static/icons/060051AF.png
new file mode 100755
index 00000000..ece2a1d0
Binary files /dev/null and b/static/icons/060051AF.png differ
diff --git a/static/icons/060051E6.png b/static/icons/060051E6.png
new file mode 100755
index 00000000..f9d56294
Binary files /dev/null and b/static/icons/060051E6.png differ
diff --git a/static/icons/060051F6.png b/static/icons/060051F6.png
new file mode 100755
index 00000000..045494a2
Binary files /dev/null and b/static/icons/060051F6.png differ
diff --git a/static/icons/060051F8.png b/static/icons/060051F8.png
new file mode 100755
index 00000000..6636d9a9
Binary files /dev/null and b/static/icons/060051F8.png differ
diff --git a/static/icons/060051FA.png b/static/icons/060051FA.png
new file mode 100755
index 00000000..8173ca1a
Binary files /dev/null and b/static/icons/060051FA.png differ
diff --git a/static/icons/0600526A.png b/static/icons/0600526A.png
new file mode 100755
index 00000000..7fb568b8
Binary files /dev/null and b/static/icons/0600526A.png differ
diff --git a/static/icons/0600526C.png b/static/icons/0600526C.png
new file mode 100755
index 00000000..e73801f6
Binary files /dev/null and b/static/icons/0600526C.png differ
diff --git a/static/icons/060052A7.png b/static/icons/060052A7.png
new file mode 100755
index 00000000..87dfbbcb
Binary files /dev/null and b/static/icons/060052A7.png differ
diff --git a/static/icons/060052B1.png b/static/icons/060052B1.png
new file mode 100755
index 00000000..cad7a356
Binary files /dev/null and b/static/icons/060052B1.png differ
diff --git a/static/icons/060052B3.png b/static/icons/060052B3.png
new file mode 100755
index 00000000..321c40a0
Binary files /dev/null and b/static/icons/060052B3.png differ
diff --git a/static/icons/06005318.png b/static/icons/06005318.png
new file mode 100755
index 00000000..7031b40f
Binary files /dev/null and b/static/icons/06005318.png differ
diff --git a/static/icons/06005339.png b/static/icons/06005339.png
new file mode 100755
index 00000000..da1a8705
Binary files /dev/null and b/static/icons/06005339.png differ
diff --git a/static/icons/060053B0.png b/static/icons/060053B0.png
new file mode 100755
index 00000000..74fabab5
Binary files /dev/null and b/static/icons/060053B0.png differ
diff --git a/static/icons/060054D6.png b/static/icons/060054D6.png
new file mode 100755
index 00000000..bf6c7c92
Binary files /dev/null and b/static/icons/060054D6.png differ
diff --git a/static/icons/06005585.png b/static/icons/06005585.png
new file mode 100755
index 00000000..3a42c7a4
Binary files /dev/null and b/static/icons/06005585.png differ
diff --git a/static/icons/06005608.png b/static/icons/06005608.png
new file mode 100755
index 00000000..db0dc56b
Binary files /dev/null and b/static/icons/06005608.png differ
diff --git a/static/icons/06005642.png b/static/icons/06005642.png
new file mode 100755
index 00000000..c78e3c91
Binary files /dev/null and b/static/icons/06005642.png differ
diff --git a/static/icons/060056AA.png b/static/icons/060056AA.png
new file mode 100755
index 00000000..47e4160b
Binary files /dev/null and b/static/icons/060056AA.png differ
diff --git a/static/icons/06005706.png b/static/icons/06005706.png
new file mode 100755
index 00000000..093e6a6e
Binary files /dev/null and b/static/icons/06005706.png differ
diff --git a/static/icons/0600574F.png b/static/icons/0600574F.png
new file mode 100755
index 00000000..7b2779cc
Binary files /dev/null and b/static/icons/0600574F.png differ
diff --git a/static/icons/06005750.png b/static/icons/06005750.png
new file mode 100755
index 00000000..26e7ae6c
Binary files /dev/null and b/static/icons/06005750.png differ
diff --git a/static/icons/06005751.png b/static/icons/06005751.png
new file mode 100755
index 00000000..dbd931d7
Binary files /dev/null and b/static/icons/06005751.png differ
diff --git a/static/icons/06005752.png b/static/icons/06005752.png
new file mode 100755
index 00000000..efbb7a33
Binary files /dev/null and b/static/icons/06005752.png differ
diff --git a/static/icons/06005753.png b/static/icons/06005753.png
new file mode 100755
index 00000000..db71ffd8
Binary files /dev/null and b/static/icons/06005753.png differ
diff --git a/static/icons/06005754.png b/static/icons/06005754.png
new file mode 100755
index 00000000..2cc00871
Binary files /dev/null and b/static/icons/06005754.png differ
diff --git a/static/icons/06005767.png b/static/icons/06005767.png
new file mode 100755
index 00000000..2795c025
Binary files /dev/null and b/static/icons/06005767.png differ
diff --git a/static/icons/0600576A.png b/static/icons/0600576A.png
new file mode 100755
index 00000000..0a6c034c
Binary files /dev/null and b/static/icons/0600576A.png differ
diff --git a/static/icons/0600576B.png b/static/icons/0600576B.png
new file mode 100755
index 00000000..7d63b693
Binary files /dev/null and b/static/icons/0600576B.png differ
diff --git a/static/icons/0600576C.png b/static/icons/0600576C.png
new file mode 100755
index 00000000..c7378faf
Binary files /dev/null and b/static/icons/0600576C.png differ
diff --git a/static/icons/0600576D.png b/static/icons/0600576D.png
new file mode 100755
index 00000000..4281f00e
Binary files /dev/null and b/static/icons/0600576D.png differ
diff --git a/static/icons/0600576E.png b/static/icons/0600576E.png
new file mode 100755
index 00000000..29872dca
Binary files /dev/null and b/static/icons/0600576E.png differ
diff --git a/static/icons/0600576F.png b/static/icons/0600576F.png
new file mode 100755
index 00000000..cef4121e
Binary files /dev/null and b/static/icons/0600576F.png differ
diff --git a/static/icons/060057E1.png b/static/icons/060057E1.png
new file mode 100755
index 00000000..262bb28d
Binary files /dev/null and b/static/icons/060057E1.png differ
diff --git a/static/icons/060057E5.png b/static/icons/060057E5.png
new file mode 100755
index 00000000..1abc9c8b
Binary files /dev/null and b/static/icons/060057E5.png differ
diff --git a/static/icons/060057E6.png b/static/icons/060057E6.png
new file mode 100755
index 00000000..3e2560e3
Binary files /dev/null and b/static/icons/060057E6.png differ
diff --git a/static/icons/060057E7.png b/static/icons/060057E7.png
new file mode 100755
index 00000000..ac8d2f57
Binary files /dev/null and b/static/icons/060057E7.png differ
diff --git a/static/icons/060057E8.png b/static/icons/060057E8.png
new file mode 100755
index 00000000..5d43e443
Binary files /dev/null and b/static/icons/060057E8.png differ
diff --git a/static/icons/060057E9.png b/static/icons/060057E9.png
new file mode 100755
index 00000000..ae3592bd
Binary files /dev/null and b/static/icons/060057E9.png differ
diff --git a/static/icons/060057EA.png b/static/icons/060057EA.png
new file mode 100755
index 00000000..5f1852c0
Binary files /dev/null and b/static/icons/060057EA.png differ
diff --git a/static/icons/060057EF.png b/static/icons/060057EF.png
new file mode 100755
index 00000000..80831c29
Binary files /dev/null and b/static/icons/060057EF.png differ
diff --git a/static/icons/060057F0.png b/static/icons/060057F0.png
new file mode 100755
index 00000000..be706a22
Binary files /dev/null and b/static/icons/060057F0.png differ
diff --git a/static/icons/060057F1.png b/static/icons/060057F1.png
new file mode 100755
index 00000000..cb8c1d42
Binary files /dev/null and b/static/icons/060057F1.png differ
diff --git a/static/icons/060057F2.png b/static/icons/060057F2.png
new file mode 100755
index 00000000..389d7136
Binary files /dev/null and b/static/icons/060057F2.png differ
diff --git a/static/icons/060057F3.png b/static/icons/060057F3.png
new file mode 100755
index 00000000..edcda0a4
Binary files /dev/null and b/static/icons/060057F3.png differ
diff --git a/static/icons/060057F4.png b/static/icons/060057F4.png
new file mode 100755
index 00000000..0fa257c4
Binary files /dev/null and b/static/icons/060057F4.png differ
diff --git a/static/icons/060057F5.png b/static/icons/060057F5.png
new file mode 100755
index 00000000..adfe0fc5
Binary files /dev/null and b/static/icons/060057F5.png differ
diff --git a/static/icons/060057F6.png b/static/icons/060057F6.png
new file mode 100755
index 00000000..09f534e2
Binary files /dev/null and b/static/icons/060057F6.png differ
diff --git a/static/icons/060057F7.png b/static/icons/060057F7.png
new file mode 100755
index 00000000..97ffd4e3
Binary files /dev/null and b/static/icons/060057F7.png differ
diff --git a/static/icons/060057F8.png b/static/icons/060057F8.png
new file mode 100755
index 00000000..a625df47
Binary files /dev/null and b/static/icons/060057F8.png differ
diff --git a/static/icons/060057F9.png b/static/icons/060057F9.png
new file mode 100755
index 00000000..9df2b384
Binary files /dev/null and b/static/icons/060057F9.png differ
diff --git a/static/icons/060057FA.png b/static/icons/060057FA.png
new file mode 100755
index 00000000..c5488e0f
Binary files /dev/null and b/static/icons/060057FA.png differ
diff --git a/static/icons/060057FB.png b/static/icons/060057FB.png
new file mode 100755
index 00000000..ed23f55f
Binary files /dev/null and b/static/icons/060057FB.png differ
diff --git a/static/icons/060057FC.png b/static/icons/060057FC.png
new file mode 100755
index 00000000..a6901f87
Binary files /dev/null and b/static/icons/060057FC.png differ
diff --git a/static/icons/060057FD.png b/static/icons/060057FD.png
new file mode 100755
index 00000000..9be9eccf
Binary files /dev/null and b/static/icons/060057FD.png differ
diff --git a/static/icons/060057FE.png b/static/icons/060057FE.png
new file mode 100755
index 00000000..f35f0915
Binary files /dev/null and b/static/icons/060057FE.png differ
diff --git a/static/icons/060057FF.png b/static/icons/060057FF.png
new file mode 100755
index 00000000..262ecb31
Binary files /dev/null and b/static/icons/060057FF.png differ
diff --git a/static/icons/06005800.png b/static/icons/06005800.png
new file mode 100755
index 00000000..2730e0d1
Binary files /dev/null and b/static/icons/06005800.png differ
diff --git a/static/icons/06005801.png b/static/icons/06005801.png
new file mode 100755
index 00000000..07c42fe0
Binary files /dev/null and b/static/icons/06005801.png differ
diff --git a/static/icons/06005802.png b/static/icons/06005802.png
new file mode 100755
index 00000000..56800966
Binary files /dev/null and b/static/icons/06005802.png differ
diff --git a/static/icons/06005803.png b/static/icons/06005803.png
new file mode 100755
index 00000000..5b7c4f0c
Binary files /dev/null and b/static/icons/06005803.png differ
diff --git a/static/icons/06005804.png b/static/icons/06005804.png
new file mode 100755
index 00000000..60f1cd14
Binary files /dev/null and b/static/icons/06005804.png differ
diff --git a/static/icons/06005805.png b/static/icons/06005805.png
new file mode 100755
index 00000000..7c384237
Binary files /dev/null and b/static/icons/06005805.png differ
diff --git a/static/icons/06005806.png b/static/icons/06005806.png
new file mode 100755
index 00000000..dc8d92a0
Binary files /dev/null and b/static/icons/06005806.png differ
diff --git a/static/icons/06005807.png b/static/icons/06005807.png
new file mode 100755
index 00000000..cae88b8a
Binary files /dev/null and b/static/icons/06005807.png differ
diff --git a/static/icons/06005808.png b/static/icons/06005808.png
new file mode 100755
index 00000000..0b3d0881
Binary files /dev/null and b/static/icons/06005808.png differ
diff --git a/static/icons/06005809.png b/static/icons/06005809.png
new file mode 100755
index 00000000..13d1ffd0
Binary files /dev/null and b/static/icons/06005809.png differ
diff --git a/static/icons/0600580A.png b/static/icons/0600580A.png
new file mode 100755
index 00000000..c11e765f
Binary files /dev/null and b/static/icons/0600580A.png differ
diff --git a/static/icons/0600580F.png b/static/icons/0600580F.png
new file mode 100755
index 00000000..50cee3ef
Binary files /dev/null and b/static/icons/0600580F.png differ
diff --git a/static/icons/06005810.png b/static/icons/06005810.png
new file mode 100755
index 00000000..6b855a59
Binary files /dev/null and b/static/icons/06005810.png differ
diff --git a/static/icons/06005811.png b/static/icons/06005811.png
new file mode 100755
index 00000000..dc79de98
Binary files /dev/null and b/static/icons/06005811.png differ
diff --git a/static/icons/06005812.png b/static/icons/06005812.png
new file mode 100755
index 00000000..77015445
Binary files /dev/null and b/static/icons/06005812.png differ
diff --git a/static/icons/06005813.png b/static/icons/06005813.png
new file mode 100755
index 00000000..c5b7cad7
Binary files /dev/null and b/static/icons/06005813.png differ
diff --git a/static/icons/06005814.png b/static/icons/06005814.png
new file mode 100755
index 00000000..1f51f614
Binary files /dev/null and b/static/icons/06005814.png differ
diff --git a/static/icons/06005815.png b/static/icons/06005815.png
new file mode 100755
index 00000000..58dc7a83
Binary files /dev/null and b/static/icons/06005815.png differ
diff --git a/static/icons/06005816.png b/static/icons/06005816.png
new file mode 100755
index 00000000..f9187a46
Binary files /dev/null and b/static/icons/06005816.png differ
diff --git a/static/icons/06005817.png b/static/icons/06005817.png
new file mode 100755
index 00000000..760a2c78
Binary files /dev/null and b/static/icons/06005817.png differ
diff --git a/static/icons/06005818.png b/static/icons/06005818.png
new file mode 100755
index 00000000..27d7a9ff
Binary files /dev/null and b/static/icons/06005818.png differ
diff --git a/static/icons/06005819.png b/static/icons/06005819.png
new file mode 100755
index 00000000..d786b167
Binary files /dev/null and b/static/icons/06005819.png differ
diff --git a/static/icons/0600581A.png b/static/icons/0600581A.png
new file mode 100755
index 00000000..95a4f35f
Binary files /dev/null and b/static/icons/0600581A.png differ
diff --git a/static/icons/0600581B.png b/static/icons/0600581B.png
new file mode 100755
index 00000000..4f888107
Binary files /dev/null and b/static/icons/0600581B.png differ
diff --git a/static/icons/0600581C.png b/static/icons/0600581C.png
new file mode 100755
index 00000000..6e653388
Binary files /dev/null and b/static/icons/0600581C.png differ
diff --git a/static/icons/0600581D.png b/static/icons/0600581D.png
new file mode 100755
index 00000000..09df0848
Binary files /dev/null and b/static/icons/0600581D.png differ
diff --git a/static/icons/0600581E.png b/static/icons/0600581E.png
new file mode 100755
index 00000000..8c3daa36
Binary files /dev/null and b/static/icons/0600581E.png differ
diff --git a/static/icons/0600581F.png b/static/icons/0600581F.png
new file mode 100755
index 00000000..2626a322
Binary files /dev/null and b/static/icons/0600581F.png differ
diff --git a/static/icons/06005820.png b/static/icons/06005820.png
new file mode 100755
index 00000000..5d06e116
Binary files /dev/null and b/static/icons/06005820.png differ
diff --git a/static/icons/06005821.png b/static/icons/06005821.png
new file mode 100755
index 00000000..1f8c1912
Binary files /dev/null and b/static/icons/06005821.png differ
diff --git a/static/icons/06005822.png b/static/icons/06005822.png
new file mode 100755
index 00000000..7c42078f
Binary files /dev/null and b/static/icons/06005822.png differ
diff --git a/static/icons/06005823.png b/static/icons/06005823.png
new file mode 100755
index 00000000..2b6b0983
Binary files /dev/null and b/static/icons/06005823.png differ
diff --git a/static/icons/06005824.png b/static/icons/06005824.png
new file mode 100755
index 00000000..74507612
Binary files /dev/null and b/static/icons/06005824.png differ
diff --git a/static/icons/06005825.png b/static/icons/06005825.png
new file mode 100755
index 00000000..adcfa2d9
Binary files /dev/null and b/static/icons/06005825.png differ
diff --git a/static/icons/06005826.png b/static/icons/06005826.png
new file mode 100755
index 00000000..1a94d9f5
Binary files /dev/null and b/static/icons/06005826.png differ
diff --git a/static/icons/06005827.png b/static/icons/06005827.png
new file mode 100755
index 00000000..a26c11f7
Binary files /dev/null and b/static/icons/06005827.png differ
diff --git a/static/icons/06005828.png b/static/icons/06005828.png
new file mode 100755
index 00000000..6d5abd03
Binary files /dev/null and b/static/icons/06005828.png differ
diff --git a/static/icons/06005829.png b/static/icons/06005829.png
new file mode 100755
index 00000000..4e65f67f
Binary files /dev/null and b/static/icons/06005829.png differ
diff --git a/static/icons/0600582A.png b/static/icons/0600582A.png
new file mode 100755
index 00000000..d8306d36
Binary files /dev/null and b/static/icons/0600582A.png differ
diff --git a/static/icons/0600582B.png b/static/icons/0600582B.png
new file mode 100755
index 00000000..b538c4f1
Binary files /dev/null and b/static/icons/0600582B.png differ
diff --git a/static/icons/0600582C.png b/static/icons/0600582C.png
new file mode 100755
index 00000000..479eec44
Binary files /dev/null and b/static/icons/0600582C.png differ
diff --git a/static/icons/0600582D.png b/static/icons/0600582D.png
new file mode 100755
index 00000000..f8536886
Binary files /dev/null and b/static/icons/0600582D.png differ
diff --git a/static/icons/0600582E.png b/static/icons/0600582E.png
new file mode 100755
index 00000000..6a2d2ee4
Binary files /dev/null and b/static/icons/0600582E.png differ
diff --git a/static/icons/0600582F.png b/static/icons/0600582F.png
new file mode 100755
index 00000000..39651a62
Binary files /dev/null and b/static/icons/0600582F.png differ
diff --git a/static/icons/06005830.png b/static/icons/06005830.png
new file mode 100755
index 00000000..1a251e17
Binary files /dev/null and b/static/icons/06005830.png differ
diff --git a/static/icons/06005831.png b/static/icons/06005831.png
new file mode 100755
index 00000000..23b841d7
Binary files /dev/null and b/static/icons/06005831.png differ
diff --git a/static/icons/06005832.png b/static/icons/06005832.png
new file mode 100755
index 00000000..60b8ede1
Binary files /dev/null and b/static/icons/06005832.png differ
diff --git a/static/icons/06005833.png b/static/icons/06005833.png
new file mode 100755
index 00000000..57b6762f
Binary files /dev/null and b/static/icons/06005833.png differ
diff --git a/static/icons/06005834.png b/static/icons/06005834.png
new file mode 100755
index 00000000..736d67fd
Binary files /dev/null and b/static/icons/06005834.png differ
diff --git a/static/icons/06005835.png b/static/icons/06005835.png
new file mode 100755
index 00000000..496d8715
Binary files /dev/null and b/static/icons/06005835.png differ
diff --git a/static/icons/06005836.png b/static/icons/06005836.png
new file mode 100755
index 00000000..2846e35b
Binary files /dev/null and b/static/icons/06005836.png differ
diff --git a/static/icons/06005837.png b/static/icons/06005837.png
new file mode 100755
index 00000000..a93f3cfa
Binary files /dev/null and b/static/icons/06005837.png differ
diff --git a/static/icons/06005838.png b/static/icons/06005838.png
new file mode 100755
index 00000000..ad503d7b
Binary files /dev/null and b/static/icons/06005838.png differ
diff --git a/static/icons/06005839.png b/static/icons/06005839.png
new file mode 100755
index 00000000..e531b121
Binary files /dev/null and b/static/icons/06005839.png differ
diff --git a/static/icons/0600583A.png b/static/icons/0600583A.png
new file mode 100755
index 00000000..68cb0d7f
Binary files /dev/null and b/static/icons/0600583A.png differ
diff --git a/static/icons/0600583B.png b/static/icons/0600583B.png
new file mode 100755
index 00000000..2f2a1325
Binary files /dev/null and b/static/icons/0600583B.png differ
diff --git a/static/icons/0600583C.png b/static/icons/0600583C.png
new file mode 100755
index 00000000..4deda51e
Binary files /dev/null and b/static/icons/0600583C.png differ
diff --git a/static/icons/0600583D.png b/static/icons/0600583D.png
new file mode 100755
index 00000000..c9dd3ebb
Binary files /dev/null and b/static/icons/0600583D.png differ
diff --git a/static/icons/0600583E.png b/static/icons/0600583E.png
new file mode 100755
index 00000000..768d6950
Binary files /dev/null and b/static/icons/0600583E.png differ
diff --git a/static/icons/0600583F.png b/static/icons/0600583F.png
new file mode 100755
index 00000000..6a046dc2
Binary files /dev/null and b/static/icons/0600583F.png differ
diff --git a/static/icons/06005840.png b/static/icons/06005840.png
new file mode 100755
index 00000000..32205372
Binary files /dev/null and b/static/icons/06005840.png differ
diff --git a/static/icons/06005841.png b/static/icons/06005841.png
new file mode 100755
index 00000000..e4861628
Binary files /dev/null and b/static/icons/06005841.png differ
diff --git a/static/icons/06005842.png b/static/icons/06005842.png
new file mode 100755
index 00000000..7484d694
Binary files /dev/null and b/static/icons/06005842.png differ
diff --git a/static/icons/06005843.png b/static/icons/06005843.png
new file mode 100755
index 00000000..b4cbe162
Binary files /dev/null and b/static/icons/06005843.png differ
diff --git a/static/icons/06005844.png b/static/icons/06005844.png
new file mode 100755
index 00000000..9fb501e2
Binary files /dev/null and b/static/icons/06005844.png differ
diff --git a/static/icons/06005845.png b/static/icons/06005845.png
new file mode 100755
index 00000000..26b55efd
Binary files /dev/null and b/static/icons/06005845.png differ
diff --git a/static/icons/06005846.png b/static/icons/06005846.png
new file mode 100755
index 00000000..eed266bd
Binary files /dev/null and b/static/icons/06005846.png differ
diff --git a/static/icons/06005848.png b/static/icons/06005848.png
new file mode 100755
index 00000000..a83d1cec
Binary files /dev/null and b/static/icons/06005848.png differ
diff --git a/static/icons/06005849.png b/static/icons/06005849.png
new file mode 100755
index 00000000..a7fe7fc3
Binary files /dev/null and b/static/icons/06005849.png differ
diff --git a/static/icons/0600584A.png b/static/icons/0600584A.png
new file mode 100755
index 00000000..bbc32ac3
Binary files /dev/null and b/static/icons/0600584A.png differ
diff --git a/static/icons/0600584B.png b/static/icons/0600584B.png
new file mode 100755
index 00000000..7c955bae
Binary files /dev/null and b/static/icons/0600584B.png differ
diff --git a/static/icons/0600584C.png b/static/icons/0600584C.png
new file mode 100755
index 00000000..7fda5d8a
Binary files /dev/null and b/static/icons/0600584C.png differ
diff --git a/static/icons/0600584D.png b/static/icons/0600584D.png
new file mode 100755
index 00000000..71f47b23
Binary files /dev/null and b/static/icons/0600584D.png differ
diff --git a/static/icons/0600584E.png b/static/icons/0600584E.png
new file mode 100755
index 00000000..7ff232b9
Binary files /dev/null and b/static/icons/0600584E.png differ
diff --git a/static/icons/0600584F.png b/static/icons/0600584F.png
new file mode 100755
index 00000000..11b1f65a
Binary files /dev/null and b/static/icons/0600584F.png differ
diff --git a/static/icons/06005850.png b/static/icons/06005850.png
new file mode 100755
index 00000000..1db5115c
Binary files /dev/null and b/static/icons/06005850.png differ
diff --git a/static/icons/06005851.png b/static/icons/06005851.png
new file mode 100755
index 00000000..43bf3dcd
Binary files /dev/null and b/static/icons/06005851.png differ
diff --git a/static/icons/06005852.png b/static/icons/06005852.png
new file mode 100755
index 00000000..72f38ee1
Binary files /dev/null and b/static/icons/06005852.png differ
diff --git a/static/icons/06005853.png b/static/icons/06005853.png
new file mode 100755
index 00000000..839d2c24
Binary files /dev/null and b/static/icons/06005853.png differ
diff --git a/static/icons/06005854.png b/static/icons/06005854.png
new file mode 100755
index 00000000..c473c0fb
Binary files /dev/null and b/static/icons/06005854.png differ
diff --git a/static/icons/06005855.png b/static/icons/06005855.png
new file mode 100755
index 00000000..efd76d33
Binary files /dev/null and b/static/icons/06005855.png differ
diff --git a/static/icons/06005856.png b/static/icons/06005856.png
new file mode 100755
index 00000000..ac49a5c0
Binary files /dev/null and b/static/icons/06005856.png differ
diff --git a/static/icons/06005857.png b/static/icons/06005857.png
new file mode 100755
index 00000000..476bc6cc
Binary files /dev/null and b/static/icons/06005857.png differ
diff --git a/static/icons/06005858.png b/static/icons/06005858.png
new file mode 100755
index 00000000..12263597
Binary files /dev/null and b/static/icons/06005858.png differ
diff --git a/static/icons/06005859.png b/static/icons/06005859.png
new file mode 100755
index 00000000..5de4b2d7
Binary files /dev/null and b/static/icons/06005859.png differ
diff --git a/static/icons/0600585A.png b/static/icons/0600585A.png
new file mode 100755
index 00000000..25e1cf55
Binary files /dev/null and b/static/icons/0600585A.png differ
diff --git a/static/icons/0600585B.png b/static/icons/0600585B.png
new file mode 100755
index 00000000..7e026ed0
Binary files /dev/null and b/static/icons/0600585B.png differ
diff --git a/static/icons/0600585C.png b/static/icons/0600585C.png
new file mode 100755
index 00000000..f745c327
Binary files /dev/null and b/static/icons/0600585C.png differ
diff --git a/static/icons/0600585D.png b/static/icons/0600585D.png
new file mode 100755
index 00000000..8b74bf9a
Binary files /dev/null and b/static/icons/0600585D.png differ
diff --git a/static/icons/0600585E.png b/static/icons/0600585E.png
new file mode 100755
index 00000000..5fd7bc77
Binary files /dev/null and b/static/icons/0600585E.png differ
diff --git a/static/icons/0600585F.png b/static/icons/0600585F.png
new file mode 100755
index 00000000..4b25a826
Binary files /dev/null and b/static/icons/0600585F.png differ
diff --git a/static/icons/06005860.png b/static/icons/06005860.png
new file mode 100755
index 00000000..44c6a04f
Binary files /dev/null and b/static/icons/06005860.png differ
diff --git a/static/icons/06005861.png b/static/icons/06005861.png
new file mode 100755
index 00000000..b4878d34
Binary files /dev/null and b/static/icons/06005861.png differ
diff --git a/static/icons/06005862.png b/static/icons/06005862.png
new file mode 100755
index 00000000..07d694de
Binary files /dev/null and b/static/icons/06005862.png differ
diff --git a/static/icons/06005863.png b/static/icons/06005863.png
new file mode 100755
index 00000000..3edccccc
Binary files /dev/null and b/static/icons/06005863.png differ
diff --git a/static/icons/06005871.png b/static/icons/06005871.png
new file mode 100755
index 00000000..c82e2c87
Binary files /dev/null and b/static/icons/06005871.png differ
diff --git a/static/icons/06005872.png b/static/icons/06005872.png
new file mode 100755
index 00000000..f1a42bfc
Binary files /dev/null and b/static/icons/06005872.png differ
diff --git a/static/icons/06005873.png b/static/icons/06005873.png
new file mode 100755
index 00000000..a70d6131
Binary files /dev/null and b/static/icons/06005873.png differ
diff --git a/static/icons/06005874.png b/static/icons/06005874.png
new file mode 100755
index 00000000..0d41f41f
Binary files /dev/null and b/static/icons/06005874.png differ
diff --git a/static/icons/06005875.png b/static/icons/06005875.png
new file mode 100755
index 00000000..5cded2a7
Binary files /dev/null and b/static/icons/06005875.png differ
diff --git a/static/icons/06005876.png b/static/icons/06005876.png
new file mode 100755
index 00000000..7c24242f
Binary files /dev/null and b/static/icons/06005876.png differ
diff --git a/static/icons/06005877.png b/static/icons/06005877.png
new file mode 100755
index 00000000..26a1b569
Binary files /dev/null and b/static/icons/06005877.png differ
diff --git a/static/icons/06005878.png b/static/icons/06005878.png
new file mode 100755
index 00000000..52b842c0
Binary files /dev/null and b/static/icons/06005878.png differ
diff --git a/static/icons/06005879.png b/static/icons/06005879.png
new file mode 100755
index 00000000..a34e5730
Binary files /dev/null and b/static/icons/06005879.png differ
diff --git a/static/icons/0600587A.png b/static/icons/0600587A.png
new file mode 100755
index 00000000..41777d6b
Binary files /dev/null and b/static/icons/0600587A.png differ
diff --git a/static/icons/0600587B.png b/static/icons/0600587B.png
new file mode 100755
index 00000000..0cf0af4e
Binary files /dev/null and b/static/icons/0600587B.png differ
diff --git a/static/icons/0600587C.png b/static/icons/0600587C.png
new file mode 100755
index 00000000..1fad5acd
Binary files /dev/null and b/static/icons/0600587C.png differ
diff --git a/static/icons/0600587D.png b/static/icons/0600587D.png
new file mode 100755
index 00000000..437cf436
Binary files /dev/null and b/static/icons/0600587D.png differ
diff --git a/static/icons/0600587E.png b/static/icons/0600587E.png
new file mode 100755
index 00000000..253fc7e5
Binary files /dev/null and b/static/icons/0600587E.png differ
diff --git a/static/icons/0600587F.png b/static/icons/0600587F.png
new file mode 100755
index 00000000..a4fd9644
Binary files /dev/null and b/static/icons/0600587F.png differ
diff --git a/static/icons/06005880.png b/static/icons/06005880.png
new file mode 100755
index 00000000..d9d49ec0
Binary files /dev/null and b/static/icons/06005880.png differ
diff --git a/static/icons/06005881.png b/static/icons/06005881.png
new file mode 100755
index 00000000..622c6a39
Binary files /dev/null and b/static/icons/06005881.png differ
diff --git a/static/icons/06005882.png b/static/icons/06005882.png
new file mode 100755
index 00000000..7c9546ee
Binary files /dev/null and b/static/icons/06005882.png differ
diff --git a/static/icons/06005883.png b/static/icons/06005883.png
new file mode 100755
index 00000000..a5a2becb
Binary files /dev/null and b/static/icons/06005883.png differ
diff --git a/static/icons/06005884.png b/static/icons/06005884.png
new file mode 100755
index 00000000..ce2d3bae
Binary files /dev/null and b/static/icons/06005884.png differ
diff --git a/static/icons/06005885.png b/static/icons/06005885.png
new file mode 100755
index 00000000..80fc6818
Binary files /dev/null and b/static/icons/06005885.png differ
diff --git a/static/icons/06005886.png b/static/icons/06005886.png
new file mode 100755
index 00000000..d80293a1
Binary files /dev/null and b/static/icons/06005886.png differ
diff --git a/static/icons/06005887.png b/static/icons/06005887.png
new file mode 100755
index 00000000..d183f4fa
Binary files /dev/null and b/static/icons/06005887.png differ
diff --git a/static/icons/06005888.png b/static/icons/06005888.png
new file mode 100755
index 00000000..20c38fce
Binary files /dev/null and b/static/icons/06005888.png differ
diff --git a/static/icons/06005889.png b/static/icons/06005889.png
new file mode 100755
index 00000000..cb57c6e0
Binary files /dev/null and b/static/icons/06005889.png differ
diff --git a/static/icons/0600588A.png b/static/icons/0600588A.png
new file mode 100755
index 00000000..a113fcbb
Binary files /dev/null and b/static/icons/0600588A.png differ
diff --git a/static/icons/0600588B.png b/static/icons/0600588B.png
new file mode 100755
index 00000000..37283411
Binary files /dev/null and b/static/icons/0600588B.png differ
diff --git a/static/icons/0600588C.png b/static/icons/0600588C.png
new file mode 100755
index 00000000..f05182ac
Binary files /dev/null and b/static/icons/0600588C.png differ
diff --git a/static/icons/0600588E.png b/static/icons/0600588E.png
new file mode 100755
index 00000000..e491fb8e
Binary files /dev/null and b/static/icons/0600588E.png differ
diff --git a/static/icons/0600588F.png b/static/icons/0600588F.png
new file mode 100755
index 00000000..5c49200d
Binary files /dev/null and b/static/icons/0600588F.png differ
diff --git a/static/icons/06005890.png b/static/icons/06005890.png
new file mode 100755
index 00000000..a987821a
Binary files /dev/null and b/static/icons/06005890.png differ
diff --git a/static/icons/06005891.png b/static/icons/06005891.png
new file mode 100755
index 00000000..18224eb9
Binary files /dev/null and b/static/icons/06005891.png differ
diff --git a/static/icons/06005892.png b/static/icons/06005892.png
new file mode 100755
index 00000000..d362e216
Binary files /dev/null and b/static/icons/06005892.png differ
diff --git a/static/icons/06005893.png b/static/icons/06005893.png
new file mode 100755
index 00000000..09c4db7b
Binary files /dev/null and b/static/icons/06005893.png differ
diff --git a/static/icons/06005894.png b/static/icons/06005894.png
new file mode 100755
index 00000000..2cc39709
Binary files /dev/null and b/static/icons/06005894.png differ
diff --git a/static/icons/06005895.png b/static/icons/06005895.png
new file mode 100755
index 00000000..af294afe
Binary files /dev/null and b/static/icons/06005895.png differ
diff --git a/static/icons/06005896.png b/static/icons/06005896.png
new file mode 100755
index 00000000..d4ab1562
Binary files /dev/null and b/static/icons/06005896.png differ
diff --git a/static/icons/06005897.png b/static/icons/06005897.png
new file mode 100755
index 00000000..ccf6033f
Binary files /dev/null and b/static/icons/06005897.png differ
diff --git a/static/icons/06005898.png b/static/icons/06005898.png
new file mode 100755
index 00000000..20cc17d4
Binary files /dev/null and b/static/icons/06005898.png differ
diff --git a/static/icons/06005899.png b/static/icons/06005899.png
new file mode 100755
index 00000000..85f31185
Binary files /dev/null and b/static/icons/06005899.png differ
diff --git a/static/icons/0600589A.png b/static/icons/0600589A.png
new file mode 100755
index 00000000..2ca0d958
Binary files /dev/null and b/static/icons/0600589A.png differ
diff --git a/static/icons/0600589B.png b/static/icons/0600589B.png
new file mode 100755
index 00000000..c696eeed
Binary files /dev/null and b/static/icons/0600589B.png differ
diff --git a/static/icons/0600589C.png b/static/icons/0600589C.png
new file mode 100755
index 00000000..f7e3b246
Binary files /dev/null and b/static/icons/0600589C.png differ
diff --git a/static/icons/0600589D.png b/static/icons/0600589D.png
new file mode 100755
index 00000000..6e9056c7
Binary files /dev/null and b/static/icons/0600589D.png differ
diff --git a/static/icons/0600589E.png b/static/icons/0600589E.png
new file mode 100755
index 00000000..278167a5
Binary files /dev/null and b/static/icons/0600589E.png differ
diff --git a/static/icons/0600589F.png b/static/icons/0600589F.png
new file mode 100755
index 00000000..0d510a60
Binary files /dev/null and b/static/icons/0600589F.png differ
diff --git a/static/icons/060058A0.png b/static/icons/060058A0.png
new file mode 100755
index 00000000..368b7f00
Binary files /dev/null and b/static/icons/060058A0.png differ
diff --git a/static/icons/060058A1.png b/static/icons/060058A1.png
new file mode 100755
index 00000000..f37ee670
Binary files /dev/null and b/static/icons/060058A1.png differ
diff --git a/static/icons/060058A2.png b/static/icons/060058A2.png
new file mode 100755
index 00000000..c13cba8b
Binary files /dev/null and b/static/icons/060058A2.png differ
diff --git a/static/icons/060058A3.png b/static/icons/060058A3.png
new file mode 100755
index 00000000..0ce33351
Binary files /dev/null and b/static/icons/060058A3.png differ
diff --git a/static/icons/060058A4.png b/static/icons/060058A4.png
new file mode 100755
index 00000000..872dcc30
Binary files /dev/null and b/static/icons/060058A4.png differ
diff --git a/static/icons/060058A5.png b/static/icons/060058A5.png
new file mode 100755
index 00000000..689c6ccf
Binary files /dev/null and b/static/icons/060058A5.png differ
diff --git a/static/icons/060058A6.png b/static/icons/060058A6.png
new file mode 100755
index 00000000..0c754ba9
Binary files /dev/null and b/static/icons/060058A6.png differ
diff --git a/static/icons/060058A7.png b/static/icons/060058A7.png
new file mode 100755
index 00000000..4913dc00
Binary files /dev/null and b/static/icons/060058A7.png differ
diff --git a/static/icons/060058A8.png b/static/icons/060058A8.png
new file mode 100755
index 00000000..18ef8ca5
Binary files /dev/null and b/static/icons/060058A8.png differ
diff --git a/static/icons/060058A9.png b/static/icons/060058A9.png
new file mode 100755
index 00000000..e1f0836a
Binary files /dev/null and b/static/icons/060058A9.png differ
diff --git a/static/icons/060058AD.png b/static/icons/060058AD.png
new file mode 100755
index 00000000..a7870f88
Binary files /dev/null and b/static/icons/060058AD.png differ
diff --git a/static/icons/060058AE.png b/static/icons/060058AE.png
new file mode 100755
index 00000000..b57f2c94
Binary files /dev/null and b/static/icons/060058AE.png differ
diff --git a/static/icons/060058AF.png b/static/icons/060058AF.png
new file mode 100755
index 00000000..cd848955
Binary files /dev/null and b/static/icons/060058AF.png differ
diff --git a/static/icons/060058B0.png b/static/icons/060058B0.png
new file mode 100755
index 00000000..13507c93
Binary files /dev/null and b/static/icons/060058B0.png differ
diff --git a/static/icons/060058B1.png b/static/icons/060058B1.png
new file mode 100755
index 00000000..7df181ec
Binary files /dev/null and b/static/icons/060058B1.png differ
diff --git a/static/icons/060058B2.png b/static/icons/060058B2.png
new file mode 100755
index 00000000..1815a82b
Binary files /dev/null and b/static/icons/060058B2.png differ
diff --git a/static/icons/060058B3.png b/static/icons/060058B3.png
new file mode 100755
index 00000000..3076146c
Binary files /dev/null and b/static/icons/060058B3.png differ
diff --git a/static/icons/060058B4.png b/static/icons/060058B4.png
new file mode 100755
index 00000000..7173f023
Binary files /dev/null and b/static/icons/060058B4.png differ
diff --git a/static/icons/060058B5.png b/static/icons/060058B5.png
new file mode 100755
index 00000000..780b9121
Binary files /dev/null and b/static/icons/060058B5.png differ
diff --git a/static/icons/060058B6.png b/static/icons/060058B6.png
new file mode 100755
index 00000000..e91b9f05
Binary files /dev/null and b/static/icons/060058B6.png differ
diff --git a/static/icons/060058B7.png b/static/icons/060058B7.png
new file mode 100755
index 00000000..c5bcde6c
Binary files /dev/null and b/static/icons/060058B7.png differ
diff --git a/static/icons/060058B8.png b/static/icons/060058B8.png
new file mode 100755
index 00000000..2223a7bf
Binary files /dev/null and b/static/icons/060058B8.png differ
diff --git a/static/icons/060058B9.png b/static/icons/060058B9.png
new file mode 100755
index 00000000..a8bc145c
Binary files /dev/null and b/static/icons/060058B9.png differ
diff --git a/static/icons/060058BA.png b/static/icons/060058BA.png
new file mode 100755
index 00000000..80199b54
Binary files /dev/null and b/static/icons/060058BA.png differ
diff --git a/static/icons/060058BB.png b/static/icons/060058BB.png
new file mode 100755
index 00000000..70c7eea3
Binary files /dev/null and b/static/icons/060058BB.png differ
diff --git a/static/icons/060058BC.png b/static/icons/060058BC.png
new file mode 100755
index 00000000..ea11d18e
Binary files /dev/null and b/static/icons/060058BC.png differ
diff --git a/static/icons/060058BD.png b/static/icons/060058BD.png
new file mode 100755
index 00000000..ebb635e7
Binary files /dev/null and b/static/icons/060058BD.png differ
diff --git a/static/icons/060058BE.png b/static/icons/060058BE.png
new file mode 100755
index 00000000..83c6afe6
Binary files /dev/null and b/static/icons/060058BE.png differ
diff --git a/static/icons/060058BF.png b/static/icons/060058BF.png
new file mode 100755
index 00000000..a9571450
Binary files /dev/null and b/static/icons/060058BF.png differ
diff --git a/static/icons/060058C1.png b/static/icons/060058C1.png
new file mode 100755
index 00000000..4f73d4ce
Binary files /dev/null and b/static/icons/060058C1.png differ
diff --git a/static/icons/060058C2.png b/static/icons/060058C2.png
new file mode 100755
index 00000000..3f2aeaeb
Binary files /dev/null and b/static/icons/060058C2.png differ
diff --git a/static/icons/060058C3.png b/static/icons/060058C3.png
new file mode 100755
index 00000000..d1830740
Binary files /dev/null and b/static/icons/060058C3.png differ
diff --git a/static/icons/060058C4.png b/static/icons/060058C4.png
new file mode 100755
index 00000000..02e76f52
Binary files /dev/null and b/static/icons/060058C4.png differ
diff --git a/static/icons/060058C5.png b/static/icons/060058C5.png
new file mode 100755
index 00000000..4fd6b19d
Binary files /dev/null and b/static/icons/060058C5.png differ
diff --git a/static/icons/060058C6.png b/static/icons/060058C6.png
new file mode 100755
index 00000000..00f53ac6
Binary files /dev/null and b/static/icons/060058C6.png differ
diff --git a/static/icons/060058C7.png b/static/icons/060058C7.png
new file mode 100755
index 00000000..7362e821
Binary files /dev/null and b/static/icons/060058C7.png differ
diff --git a/static/icons/060058C8.png b/static/icons/060058C8.png
new file mode 100755
index 00000000..a5f7bc84
Binary files /dev/null and b/static/icons/060058C8.png differ
diff --git a/static/icons/060058C9.png b/static/icons/060058C9.png
new file mode 100755
index 00000000..9bc64253
Binary files /dev/null and b/static/icons/060058C9.png differ
diff --git a/static/icons/060058CA.png b/static/icons/060058CA.png
new file mode 100755
index 00000000..2cb55a63
Binary files /dev/null and b/static/icons/060058CA.png differ
diff --git a/static/icons/060058CB.png b/static/icons/060058CB.png
new file mode 100755
index 00000000..67f5be28
Binary files /dev/null and b/static/icons/060058CB.png differ
diff --git a/static/icons/060058CC.png b/static/icons/060058CC.png
new file mode 100755
index 00000000..e0934bd1
Binary files /dev/null and b/static/icons/060058CC.png differ
diff --git a/static/icons/060058CD.png b/static/icons/060058CD.png
new file mode 100755
index 00000000..a18324de
Binary files /dev/null and b/static/icons/060058CD.png differ
diff --git a/static/icons/060058CE.png b/static/icons/060058CE.png
new file mode 100755
index 00000000..69518060
Binary files /dev/null and b/static/icons/060058CE.png differ
diff --git a/static/icons/060058CF.png b/static/icons/060058CF.png
new file mode 100755
index 00000000..08ce0845
Binary files /dev/null and b/static/icons/060058CF.png differ
diff --git a/static/icons/060058D0.png b/static/icons/060058D0.png
new file mode 100755
index 00000000..dfebb552
Binary files /dev/null and b/static/icons/060058D0.png differ
diff --git a/static/icons/060058D1.png b/static/icons/060058D1.png
new file mode 100755
index 00000000..0c5336b5
Binary files /dev/null and b/static/icons/060058D1.png differ
diff --git a/static/icons/060058D2.png b/static/icons/060058D2.png
new file mode 100755
index 00000000..7338f9a0
Binary files /dev/null and b/static/icons/060058D2.png differ
diff --git a/static/icons/060058D3.png b/static/icons/060058D3.png
new file mode 100755
index 00000000..140a92ca
Binary files /dev/null and b/static/icons/060058D3.png differ
diff --git a/static/icons/060058D5.png b/static/icons/060058D5.png
new file mode 100755
index 00000000..a0626410
Binary files /dev/null and b/static/icons/060058D5.png differ
diff --git a/static/icons/060058D6.png b/static/icons/060058D6.png
new file mode 100755
index 00000000..c23639a4
Binary files /dev/null and b/static/icons/060058D6.png differ
diff --git a/static/icons/060058D7.png b/static/icons/060058D7.png
new file mode 100755
index 00000000..5168296f
Binary files /dev/null and b/static/icons/060058D7.png differ
diff --git a/static/icons/060058D8.png b/static/icons/060058D8.png
new file mode 100755
index 00000000..f9949435
Binary files /dev/null and b/static/icons/060058D8.png differ
diff --git a/static/icons/060058D9.png b/static/icons/060058D9.png
new file mode 100755
index 00000000..60f955fe
Binary files /dev/null and b/static/icons/060058D9.png differ
diff --git a/static/icons/060058DA.png b/static/icons/060058DA.png
new file mode 100755
index 00000000..4da6fdd0
Binary files /dev/null and b/static/icons/060058DA.png differ
diff --git a/static/icons/060058DB.png b/static/icons/060058DB.png
new file mode 100755
index 00000000..2a999d3b
Binary files /dev/null and b/static/icons/060058DB.png differ
diff --git a/static/icons/060058DC.png b/static/icons/060058DC.png
new file mode 100755
index 00000000..a7225480
Binary files /dev/null and b/static/icons/060058DC.png differ
diff --git a/static/icons/060058DD.png b/static/icons/060058DD.png
new file mode 100755
index 00000000..a728a9d5
Binary files /dev/null and b/static/icons/060058DD.png differ
diff --git a/static/icons/060058DE.png b/static/icons/060058DE.png
new file mode 100755
index 00000000..79f84654
Binary files /dev/null and b/static/icons/060058DE.png differ
diff --git a/static/icons/060058DF.png b/static/icons/060058DF.png
new file mode 100755
index 00000000..0c9ee443
Binary files /dev/null and b/static/icons/060058DF.png differ
diff --git a/static/icons/060058E0.png b/static/icons/060058E0.png
new file mode 100755
index 00000000..b8e62ea9
Binary files /dev/null and b/static/icons/060058E0.png differ
diff --git a/static/icons/060058E1.png b/static/icons/060058E1.png
new file mode 100755
index 00000000..ff8d2b0b
Binary files /dev/null and b/static/icons/060058E1.png differ
diff --git a/static/icons/060058E2.png b/static/icons/060058E2.png
new file mode 100755
index 00000000..316e4bcd
Binary files /dev/null and b/static/icons/060058E2.png differ
diff --git a/static/icons/060058E3.png b/static/icons/060058E3.png
new file mode 100755
index 00000000..dae2f802
Binary files /dev/null and b/static/icons/060058E3.png differ
diff --git a/static/icons/060058E4.png b/static/icons/060058E4.png
new file mode 100755
index 00000000..d8108686
Binary files /dev/null and b/static/icons/060058E4.png differ
diff --git a/static/icons/060058E5.png b/static/icons/060058E5.png
new file mode 100755
index 00000000..c2f5420d
Binary files /dev/null and b/static/icons/060058E5.png differ
diff --git a/static/icons/060058E6.png b/static/icons/060058E6.png
new file mode 100755
index 00000000..03810d51
Binary files /dev/null and b/static/icons/060058E6.png differ
diff --git a/static/icons/060058E7.png b/static/icons/060058E7.png
new file mode 100755
index 00000000..31136dcb
Binary files /dev/null and b/static/icons/060058E7.png differ
diff --git a/static/icons/060058E8.png b/static/icons/060058E8.png
new file mode 100755
index 00000000..5c11980e
Binary files /dev/null and b/static/icons/060058E8.png differ
diff --git a/static/icons/060058E9.png b/static/icons/060058E9.png
new file mode 100755
index 00000000..139ce586
Binary files /dev/null and b/static/icons/060058E9.png differ
diff --git a/static/icons/060058EA.png b/static/icons/060058EA.png
new file mode 100755
index 00000000..d5ce641b
Binary files /dev/null and b/static/icons/060058EA.png differ
diff --git a/static/icons/060058EB.png b/static/icons/060058EB.png
new file mode 100755
index 00000000..beae80a1
Binary files /dev/null and b/static/icons/060058EB.png differ
diff --git a/static/icons/060058EC.png b/static/icons/060058EC.png
new file mode 100755
index 00000000..05f606d4
Binary files /dev/null and b/static/icons/060058EC.png differ
diff --git a/static/icons/060058ED.png b/static/icons/060058ED.png
new file mode 100755
index 00000000..84629796
Binary files /dev/null and b/static/icons/060058ED.png differ
diff --git a/static/icons/060058EE.png b/static/icons/060058EE.png
new file mode 100755
index 00000000..9a5ee071
Binary files /dev/null and b/static/icons/060058EE.png differ
diff --git a/static/icons/060058EF.png b/static/icons/060058EF.png
new file mode 100755
index 00000000..b7020384
Binary files /dev/null and b/static/icons/060058EF.png differ
diff --git a/static/icons/060058F0.png b/static/icons/060058F0.png
new file mode 100755
index 00000000..168b2c0b
Binary files /dev/null and b/static/icons/060058F0.png differ
diff --git a/static/icons/060058F1.png b/static/icons/060058F1.png
new file mode 100755
index 00000000..6306681c
Binary files /dev/null and b/static/icons/060058F1.png differ
diff --git a/static/icons/060058F2.png b/static/icons/060058F2.png
new file mode 100755
index 00000000..8f3fd31a
Binary files /dev/null and b/static/icons/060058F2.png differ
diff --git a/static/icons/060058F3.png b/static/icons/060058F3.png
new file mode 100755
index 00000000..50f89539
Binary files /dev/null and b/static/icons/060058F3.png differ
diff --git a/static/icons/060058F4.png b/static/icons/060058F4.png
new file mode 100755
index 00000000..9b832e14
Binary files /dev/null and b/static/icons/060058F4.png differ
diff --git a/static/icons/060058F5.png b/static/icons/060058F5.png
new file mode 100755
index 00000000..3c2d1359
Binary files /dev/null and b/static/icons/060058F5.png differ
diff --git a/static/icons/060058F6.png b/static/icons/060058F6.png
new file mode 100755
index 00000000..71fb8971
Binary files /dev/null and b/static/icons/060058F6.png differ
diff --git a/static/icons/060058F7.png b/static/icons/060058F7.png
new file mode 100755
index 00000000..24ab66eb
Binary files /dev/null and b/static/icons/060058F7.png differ
diff --git a/static/icons/060058F8.png b/static/icons/060058F8.png
new file mode 100755
index 00000000..f23329d2
Binary files /dev/null and b/static/icons/060058F8.png differ
diff --git a/static/icons/060058F9.png b/static/icons/060058F9.png
new file mode 100755
index 00000000..3f92ac00
Binary files /dev/null and b/static/icons/060058F9.png differ
diff --git a/static/icons/060058FA.png b/static/icons/060058FA.png
new file mode 100755
index 00000000..9dda9e0e
Binary files /dev/null and b/static/icons/060058FA.png differ
diff --git a/static/icons/060058FB.png b/static/icons/060058FB.png
new file mode 100755
index 00000000..0cd89860
Binary files /dev/null and b/static/icons/060058FB.png differ
diff --git a/static/icons/060058FC.png b/static/icons/060058FC.png
new file mode 100755
index 00000000..945e5eff
Binary files /dev/null and b/static/icons/060058FC.png differ
diff --git a/static/icons/060058FD.png b/static/icons/060058FD.png
new file mode 100755
index 00000000..39467bdd
Binary files /dev/null and b/static/icons/060058FD.png differ
diff --git a/static/icons/060058FE.png b/static/icons/060058FE.png
new file mode 100755
index 00000000..d69ba00f
Binary files /dev/null and b/static/icons/060058FE.png differ
diff --git a/static/icons/060058FF.png b/static/icons/060058FF.png
new file mode 100755
index 00000000..1d4f4688
Binary files /dev/null and b/static/icons/060058FF.png differ
diff --git a/static/icons/06005900.png b/static/icons/06005900.png
new file mode 100755
index 00000000..8eaef85a
Binary files /dev/null and b/static/icons/06005900.png differ
diff --git a/static/icons/06005901.png b/static/icons/06005901.png
new file mode 100755
index 00000000..0496317c
Binary files /dev/null and b/static/icons/06005901.png differ
diff --git a/static/icons/06005902.png b/static/icons/06005902.png
new file mode 100755
index 00000000..b0353ae2
Binary files /dev/null and b/static/icons/06005902.png differ
diff --git a/static/icons/06005903.png b/static/icons/06005903.png
new file mode 100755
index 00000000..56ad1feb
Binary files /dev/null and b/static/icons/06005903.png differ
diff --git a/static/icons/06005904.png b/static/icons/06005904.png
new file mode 100755
index 00000000..b3018806
Binary files /dev/null and b/static/icons/06005904.png differ
diff --git a/static/icons/06005905.png b/static/icons/06005905.png
new file mode 100755
index 00000000..ea765ae4
Binary files /dev/null and b/static/icons/06005905.png differ
diff --git a/static/icons/06005906.png b/static/icons/06005906.png
new file mode 100755
index 00000000..3906f50f
Binary files /dev/null and b/static/icons/06005906.png differ
diff --git a/static/icons/06005907.png b/static/icons/06005907.png
new file mode 100755
index 00000000..d3b893f0
Binary files /dev/null and b/static/icons/06005907.png differ
diff --git a/static/icons/06005908.png b/static/icons/06005908.png
new file mode 100755
index 00000000..67f1a05f
Binary files /dev/null and b/static/icons/06005908.png differ
diff --git a/static/icons/06005909.png b/static/icons/06005909.png
new file mode 100755
index 00000000..a5bce6f5
Binary files /dev/null and b/static/icons/06005909.png differ
diff --git a/static/icons/0600590A.png b/static/icons/0600590A.png
new file mode 100755
index 00000000..0dc2e539
Binary files /dev/null and b/static/icons/0600590A.png differ
diff --git a/static/icons/0600590B.png b/static/icons/0600590B.png
new file mode 100755
index 00000000..cfd8a98a
Binary files /dev/null and b/static/icons/0600590B.png differ
diff --git a/static/icons/0600590C.png b/static/icons/0600590C.png
new file mode 100755
index 00000000..f9dd06ff
Binary files /dev/null and b/static/icons/0600590C.png differ
diff --git a/static/icons/0600590E.png b/static/icons/0600590E.png
new file mode 100755
index 00000000..c8f4d4ec
Binary files /dev/null and b/static/icons/0600590E.png differ
diff --git a/static/icons/0600590F.png b/static/icons/0600590F.png
new file mode 100755
index 00000000..f14f9a48
Binary files /dev/null and b/static/icons/0600590F.png differ
diff --git a/static/icons/06005910.png b/static/icons/06005910.png
new file mode 100755
index 00000000..22035b84
Binary files /dev/null and b/static/icons/06005910.png differ
diff --git a/static/icons/06005911.png b/static/icons/06005911.png
new file mode 100755
index 00000000..0028f9ae
Binary files /dev/null and b/static/icons/06005911.png differ
diff --git a/static/icons/06005912.png b/static/icons/06005912.png
new file mode 100755
index 00000000..6235301f
Binary files /dev/null and b/static/icons/06005912.png differ
diff --git a/static/icons/06005913.png b/static/icons/06005913.png
new file mode 100755
index 00000000..a89734b8
Binary files /dev/null and b/static/icons/06005913.png differ
diff --git a/static/icons/06005914.png b/static/icons/06005914.png
new file mode 100755
index 00000000..14d23a29
Binary files /dev/null and b/static/icons/06005914.png differ
diff --git a/static/icons/06005915.png b/static/icons/06005915.png
new file mode 100755
index 00000000..cf66af5d
Binary files /dev/null and b/static/icons/06005915.png differ
diff --git a/static/icons/06005916.png b/static/icons/06005916.png
new file mode 100755
index 00000000..0de5a5fe
Binary files /dev/null and b/static/icons/06005916.png differ
diff --git a/static/icons/06005917.png b/static/icons/06005917.png
new file mode 100755
index 00000000..fd95967b
Binary files /dev/null and b/static/icons/06005917.png differ
diff --git a/static/icons/06005918.png b/static/icons/06005918.png
new file mode 100755
index 00000000..606bfe77
Binary files /dev/null and b/static/icons/06005918.png differ
diff --git a/static/icons/06005919.png b/static/icons/06005919.png
new file mode 100755
index 00000000..7a6ed150
Binary files /dev/null and b/static/icons/06005919.png differ
diff --git a/static/icons/0600591A.png b/static/icons/0600591A.png
new file mode 100755
index 00000000..0bbc61f5
Binary files /dev/null and b/static/icons/0600591A.png differ
diff --git a/static/icons/0600591B.png b/static/icons/0600591B.png
new file mode 100755
index 00000000..384e4f97
Binary files /dev/null and b/static/icons/0600591B.png differ
diff --git a/static/icons/0600591C.png b/static/icons/0600591C.png
new file mode 100755
index 00000000..ee842232
Binary files /dev/null and b/static/icons/0600591C.png differ
diff --git a/static/icons/0600591D.png b/static/icons/0600591D.png
new file mode 100755
index 00000000..4a9607a3
Binary files /dev/null and b/static/icons/0600591D.png differ
diff --git a/static/icons/0600591E.png b/static/icons/0600591E.png
new file mode 100755
index 00000000..4ae297c3
Binary files /dev/null and b/static/icons/0600591E.png differ
diff --git a/static/icons/0600591F.png b/static/icons/0600591F.png
new file mode 100755
index 00000000..2211b3eb
Binary files /dev/null and b/static/icons/0600591F.png differ
diff --git a/static/icons/06005920.png b/static/icons/06005920.png
new file mode 100755
index 00000000..5ec5c7b7
Binary files /dev/null and b/static/icons/06005920.png differ
diff --git a/static/icons/06005921.png b/static/icons/06005921.png
new file mode 100755
index 00000000..f5a375f4
Binary files /dev/null and b/static/icons/06005921.png differ
diff --git a/static/icons/06005922.png b/static/icons/06005922.png
new file mode 100755
index 00000000..eba8cafa
Binary files /dev/null and b/static/icons/06005922.png differ
diff --git a/static/icons/06005923.png b/static/icons/06005923.png
new file mode 100755
index 00000000..c14a7e9b
Binary files /dev/null and b/static/icons/06005923.png differ
diff --git a/static/icons/06005924.png b/static/icons/06005924.png
new file mode 100755
index 00000000..7fa7ca04
Binary files /dev/null and b/static/icons/06005924.png differ
diff --git a/static/icons/06005925.png b/static/icons/06005925.png
new file mode 100755
index 00000000..d3aa16f1
Binary files /dev/null and b/static/icons/06005925.png differ
diff --git a/static/icons/06005926.png b/static/icons/06005926.png
new file mode 100755
index 00000000..f531e787
Binary files /dev/null and b/static/icons/06005926.png differ
diff --git a/static/icons/06005927.png b/static/icons/06005927.png
new file mode 100755
index 00000000..afa881ae
Binary files /dev/null and b/static/icons/06005927.png differ
diff --git a/static/icons/06005928.png b/static/icons/06005928.png
new file mode 100755
index 00000000..cb9cf8d7
Binary files /dev/null and b/static/icons/06005928.png differ
diff --git a/static/icons/06005929.png b/static/icons/06005929.png
new file mode 100755
index 00000000..90f27921
Binary files /dev/null and b/static/icons/06005929.png differ
diff --git a/static/icons/0600592A.png b/static/icons/0600592A.png
new file mode 100755
index 00000000..2f5502d6
Binary files /dev/null and b/static/icons/0600592A.png differ
diff --git a/static/icons/0600592B.png b/static/icons/0600592B.png
new file mode 100755
index 00000000..579cbdc4
Binary files /dev/null and b/static/icons/0600592B.png differ
diff --git a/static/icons/0600592C.png b/static/icons/0600592C.png
new file mode 100755
index 00000000..abda6602
Binary files /dev/null and b/static/icons/0600592C.png differ
diff --git a/static/icons/0600592D.png b/static/icons/0600592D.png
new file mode 100755
index 00000000..c6b66084
Binary files /dev/null and b/static/icons/0600592D.png differ
diff --git a/static/icons/0600592E.png b/static/icons/0600592E.png
new file mode 100755
index 00000000..bccf49b6
Binary files /dev/null and b/static/icons/0600592E.png differ
diff --git a/static/icons/0600592F.png b/static/icons/0600592F.png
new file mode 100755
index 00000000..9fd84b9e
Binary files /dev/null and b/static/icons/0600592F.png differ
diff --git a/static/icons/06005930.png b/static/icons/06005930.png
new file mode 100755
index 00000000..e391f1b5
Binary files /dev/null and b/static/icons/06005930.png differ
diff --git a/static/icons/06005931.png b/static/icons/06005931.png
new file mode 100755
index 00000000..0370ec63
Binary files /dev/null and b/static/icons/06005931.png differ
diff --git a/static/icons/06005932.png b/static/icons/06005932.png
new file mode 100755
index 00000000..e110fb9a
Binary files /dev/null and b/static/icons/06005932.png differ
diff --git a/static/icons/06005933.png b/static/icons/06005933.png
new file mode 100755
index 00000000..8086147c
Binary files /dev/null and b/static/icons/06005933.png differ
diff --git a/static/icons/06005934.png b/static/icons/06005934.png
new file mode 100755
index 00000000..297e4204
Binary files /dev/null and b/static/icons/06005934.png differ
diff --git a/static/icons/06005935.png b/static/icons/06005935.png
new file mode 100755
index 00000000..d30a6922
Binary files /dev/null and b/static/icons/06005935.png differ
diff --git a/static/icons/06005936.png b/static/icons/06005936.png
new file mode 100755
index 00000000..3263fd34
Binary files /dev/null and b/static/icons/06005936.png differ
diff --git a/static/icons/06005937.png b/static/icons/06005937.png
new file mode 100755
index 00000000..1bac1c33
Binary files /dev/null and b/static/icons/06005937.png differ
diff --git a/static/icons/06005938.png b/static/icons/06005938.png
new file mode 100755
index 00000000..87500971
Binary files /dev/null and b/static/icons/06005938.png differ
diff --git a/static/icons/06005939.png b/static/icons/06005939.png
new file mode 100755
index 00000000..d292a465
Binary files /dev/null and b/static/icons/06005939.png differ
diff --git a/static/icons/0600593A.png b/static/icons/0600593A.png
new file mode 100755
index 00000000..59207f05
Binary files /dev/null and b/static/icons/0600593A.png differ
diff --git a/static/icons/0600593B.png b/static/icons/0600593B.png
new file mode 100755
index 00000000..3e565007
Binary files /dev/null and b/static/icons/0600593B.png differ
diff --git a/static/icons/0600593C.png b/static/icons/0600593C.png
new file mode 100755
index 00000000..ec2b8930
Binary files /dev/null and b/static/icons/0600593C.png differ
diff --git a/static/icons/0600593D.png b/static/icons/0600593D.png
new file mode 100755
index 00000000..82f47500
Binary files /dev/null and b/static/icons/0600593D.png differ
diff --git a/static/icons/0600593E.png b/static/icons/0600593E.png
new file mode 100755
index 00000000..23ae2975
Binary files /dev/null and b/static/icons/0600593E.png differ
diff --git a/static/icons/0600593F.png b/static/icons/0600593F.png
new file mode 100755
index 00000000..3bea2d20
Binary files /dev/null and b/static/icons/0600593F.png differ
diff --git a/static/icons/06005940.png b/static/icons/06005940.png
new file mode 100755
index 00000000..3ac4f4af
Binary files /dev/null and b/static/icons/06005940.png differ
diff --git a/static/icons/06005941.png b/static/icons/06005941.png
new file mode 100755
index 00000000..dea19d84
Binary files /dev/null and b/static/icons/06005941.png differ
diff --git a/static/icons/06005942.png b/static/icons/06005942.png
new file mode 100755
index 00000000..1bb33f2b
Binary files /dev/null and b/static/icons/06005942.png differ
diff --git a/static/icons/06005943.png b/static/icons/06005943.png
new file mode 100755
index 00000000..ec2b8930
Binary files /dev/null and b/static/icons/06005943.png differ
diff --git a/static/icons/06005944.png b/static/icons/06005944.png
new file mode 100755
index 00000000..3fb2381f
Binary files /dev/null and b/static/icons/06005944.png differ
diff --git a/static/icons/06005945.png b/static/icons/06005945.png
new file mode 100755
index 00000000..fb0aea3a
Binary files /dev/null and b/static/icons/06005945.png differ
diff --git a/static/icons/06005946.png b/static/icons/06005946.png
new file mode 100755
index 00000000..03396a81
Binary files /dev/null and b/static/icons/06005946.png differ
diff --git a/static/icons/06005947.png b/static/icons/06005947.png
new file mode 100755
index 00000000..6867fc0b
Binary files /dev/null and b/static/icons/06005947.png differ
diff --git a/static/icons/06005948.png b/static/icons/06005948.png
new file mode 100755
index 00000000..ed78a228
Binary files /dev/null and b/static/icons/06005948.png differ
diff --git a/static/icons/06005949.png b/static/icons/06005949.png
new file mode 100755
index 00000000..9c6657d1
Binary files /dev/null and b/static/icons/06005949.png differ
diff --git a/static/icons/0600594A.png b/static/icons/0600594A.png
new file mode 100755
index 00000000..7ecbcdd5
Binary files /dev/null and b/static/icons/0600594A.png differ
diff --git a/static/icons/0600594B.png b/static/icons/0600594B.png
new file mode 100755
index 00000000..9eab389a
Binary files /dev/null and b/static/icons/0600594B.png differ
diff --git a/static/icons/0600594C.png b/static/icons/0600594C.png
new file mode 100755
index 00000000..b0a9c659
Binary files /dev/null and b/static/icons/0600594C.png differ
diff --git a/static/icons/0600594D.png b/static/icons/0600594D.png
new file mode 100755
index 00000000..4fdc0b48
Binary files /dev/null and b/static/icons/0600594D.png differ
diff --git a/static/icons/0600594E.png b/static/icons/0600594E.png
new file mode 100755
index 00000000..a6de15b9
Binary files /dev/null and b/static/icons/0600594E.png differ
diff --git a/static/icons/0600594F.png b/static/icons/0600594F.png
new file mode 100755
index 00000000..eec2072f
Binary files /dev/null and b/static/icons/0600594F.png differ
diff --git a/static/icons/06005950.png b/static/icons/06005950.png
new file mode 100755
index 00000000..7e19a8fd
Binary files /dev/null and b/static/icons/06005950.png differ
diff --git a/static/icons/06005951.png b/static/icons/06005951.png
new file mode 100755
index 00000000..e313655c
Binary files /dev/null and b/static/icons/06005951.png differ
diff --git a/static/icons/06005952.png b/static/icons/06005952.png
new file mode 100755
index 00000000..42072918
Binary files /dev/null and b/static/icons/06005952.png differ
diff --git a/static/icons/06005953.png b/static/icons/06005953.png
new file mode 100755
index 00000000..9b8cd95a
Binary files /dev/null and b/static/icons/06005953.png differ
diff --git a/static/icons/06005954.png b/static/icons/06005954.png
new file mode 100755
index 00000000..082c157f
Binary files /dev/null and b/static/icons/06005954.png differ
diff --git a/static/icons/06005955.png b/static/icons/06005955.png
new file mode 100755
index 00000000..52d144bf
Binary files /dev/null and b/static/icons/06005955.png differ
diff --git a/static/icons/06005956.png b/static/icons/06005956.png
new file mode 100755
index 00000000..1189b747
Binary files /dev/null and b/static/icons/06005956.png differ
diff --git a/static/icons/06005957.png b/static/icons/06005957.png
new file mode 100755
index 00000000..d242c98a
Binary files /dev/null and b/static/icons/06005957.png differ
diff --git a/static/icons/06005958.png b/static/icons/06005958.png
new file mode 100755
index 00000000..e12a1859
Binary files /dev/null and b/static/icons/06005958.png differ
diff --git a/static/icons/06005959.png b/static/icons/06005959.png
new file mode 100755
index 00000000..158bc9d0
Binary files /dev/null and b/static/icons/06005959.png differ
diff --git a/static/icons/0600595A.png b/static/icons/0600595A.png
new file mode 100755
index 00000000..7ffb24ea
Binary files /dev/null and b/static/icons/0600595A.png differ
diff --git a/static/icons/0600595B.png b/static/icons/0600595B.png
new file mode 100755
index 00000000..1e9b2454
Binary files /dev/null and b/static/icons/0600595B.png differ
diff --git a/static/icons/0600595C.png b/static/icons/0600595C.png
new file mode 100755
index 00000000..a6d2b0a6
Binary files /dev/null and b/static/icons/0600595C.png differ
diff --git a/static/icons/0600595D.png b/static/icons/0600595D.png
new file mode 100755
index 00000000..fb82f6a7
Binary files /dev/null and b/static/icons/0600595D.png differ
diff --git a/static/icons/0600595E.png b/static/icons/0600595E.png
new file mode 100755
index 00000000..3737969f
Binary files /dev/null and b/static/icons/0600595E.png differ
diff --git a/static/icons/0600595F.png b/static/icons/0600595F.png
new file mode 100755
index 00000000..111b91fd
Binary files /dev/null and b/static/icons/0600595F.png differ
diff --git a/static/icons/06005960.png b/static/icons/06005960.png
new file mode 100755
index 00000000..b8ce9ec9
Binary files /dev/null and b/static/icons/06005960.png differ
diff --git a/static/icons/06005961.png b/static/icons/06005961.png
new file mode 100755
index 00000000..be74dc8d
Binary files /dev/null and b/static/icons/06005961.png differ
diff --git a/static/icons/06005962.png b/static/icons/06005962.png
new file mode 100755
index 00000000..16c200a4
Binary files /dev/null and b/static/icons/06005962.png differ
diff --git a/static/icons/06005963.png b/static/icons/06005963.png
new file mode 100755
index 00000000..fc244685
Binary files /dev/null and b/static/icons/06005963.png differ
diff --git a/static/icons/06005964.png b/static/icons/06005964.png
new file mode 100755
index 00000000..c1ca28e5
Binary files /dev/null and b/static/icons/06005964.png differ
diff --git a/static/icons/06005965.png b/static/icons/06005965.png
new file mode 100755
index 00000000..a24768a3
Binary files /dev/null and b/static/icons/06005965.png differ
diff --git a/static/icons/06005966.png b/static/icons/06005966.png
new file mode 100755
index 00000000..2f30992e
Binary files /dev/null and b/static/icons/06005966.png differ
diff --git a/static/icons/06005967.png b/static/icons/06005967.png
new file mode 100755
index 00000000..245b09ab
Binary files /dev/null and b/static/icons/06005967.png differ
diff --git a/static/icons/06005968.png b/static/icons/06005968.png
new file mode 100755
index 00000000..d1ebf345
Binary files /dev/null and b/static/icons/06005968.png differ
diff --git a/static/icons/06005969.png b/static/icons/06005969.png
new file mode 100755
index 00000000..9b672d72
Binary files /dev/null and b/static/icons/06005969.png differ
diff --git a/static/icons/0600596A.png b/static/icons/0600596A.png
new file mode 100755
index 00000000..d3c1e55f
Binary files /dev/null and b/static/icons/0600596A.png differ
diff --git a/static/icons/0600596B.png b/static/icons/0600596B.png
new file mode 100755
index 00000000..41c581ab
Binary files /dev/null and b/static/icons/0600596B.png differ
diff --git a/static/icons/0600596C.png b/static/icons/0600596C.png
new file mode 100755
index 00000000..af56522a
Binary files /dev/null and b/static/icons/0600596C.png differ
diff --git a/static/icons/0600596D.png b/static/icons/0600596D.png
new file mode 100755
index 00000000..0160b115
Binary files /dev/null and b/static/icons/0600596D.png differ
diff --git a/static/icons/0600596E.png b/static/icons/0600596E.png
new file mode 100755
index 00000000..f9b80870
Binary files /dev/null and b/static/icons/0600596E.png differ
diff --git a/static/icons/0600596F.png b/static/icons/0600596F.png
new file mode 100755
index 00000000..5f63e09b
Binary files /dev/null and b/static/icons/0600596F.png differ
diff --git a/static/icons/06005970.png b/static/icons/06005970.png
new file mode 100755
index 00000000..daccb4b2
Binary files /dev/null and b/static/icons/06005970.png differ
diff --git a/static/icons/06005971.png b/static/icons/06005971.png
new file mode 100755
index 00000000..d69c83cf
Binary files /dev/null and b/static/icons/06005971.png differ
diff --git a/static/icons/06005972.png b/static/icons/06005972.png
new file mode 100755
index 00000000..0bd53034
Binary files /dev/null and b/static/icons/06005972.png differ
diff --git a/static/icons/06005973.png b/static/icons/06005973.png
new file mode 100755
index 00000000..8bcb1bf2
Binary files /dev/null and b/static/icons/06005973.png differ
diff --git a/static/icons/06005974.png b/static/icons/06005974.png
new file mode 100755
index 00000000..00fcfb2c
Binary files /dev/null and b/static/icons/06005974.png differ
diff --git a/static/icons/06005975.png b/static/icons/06005975.png
new file mode 100755
index 00000000..75b54986
Binary files /dev/null and b/static/icons/06005975.png differ
diff --git a/static/icons/06005976.png b/static/icons/06005976.png
new file mode 100755
index 00000000..79dc8b96
Binary files /dev/null and b/static/icons/06005976.png differ
diff --git a/static/icons/06005977.png b/static/icons/06005977.png
new file mode 100755
index 00000000..2bb8581b
Binary files /dev/null and b/static/icons/06005977.png differ
diff --git a/static/icons/06005978.png b/static/icons/06005978.png
new file mode 100755
index 00000000..5800caad
Binary files /dev/null and b/static/icons/06005978.png differ
diff --git a/static/icons/06005979.png b/static/icons/06005979.png
new file mode 100755
index 00000000..7ed741fd
Binary files /dev/null and b/static/icons/06005979.png differ
diff --git a/static/icons/0600597A.png b/static/icons/0600597A.png
new file mode 100755
index 00000000..e40228be
Binary files /dev/null and b/static/icons/0600597A.png differ
diff --git a/static/icons/0600597B.png b/static/icons/0600597B.png
new file mode 100755
index 00000000..ffb79160
Binary files /dev/null and b/static/icons/0600597B.png differ
diff --git a/static/icons/0600597C.png b/static/icons/0600597C.png
new file mode 100755
index 00000000..d49ec756
Binary files /dev/null and b/static/icons/0600597C.png differ
diff --git a/static/icons/0600597D.png b/static/icons/0600597D.png
new file mode 100755
index 00000000..dd48642c
Binary files /dev/null and b/static/icons/0600597D.png differ
diff --git a/static/icons/0600597E.png b/static/icons/0600597E.png
new file mode 100755
index 00000000..26c54de0
Binary files /dev/null and b/static/icons/0600597E.png differ
diff --git a/static/icons/0600597F.png b/static/icons/0600597F.png
new file mode 100755
index 00000000..e32a860b
Binary files /dev/null and b/static/icons/0600597F.png differ
diff --git a/static/icons/06005980.png b/static/icons/06005980.png
new file mode 100755
index 00000000..45861769
Binary files /dev/null and b/static/icons/06005980.png differ
diff --git a/static/icons/06005981.png b/static/icons/06005981.png
new file mode 100755
index 00000000..f91d8067
Binary files /dev/null and b/static/icons/06005981.png differ
diff --git a/static/icons/06005982.png b/static/icons/06005982.png
new file mode 100755
index 00000000..1a6bccec
Binary files /dev/null and b/static/icons/06005982.png differ
diff --git a/static/icons/06005983.png b/static/icons/06005983.png
new file mode 100755
index 00000000..6d3f7416
Binary files /dev/null and b/static/icons/06005983.png differ
diff --git a/static/icons/06005984.png b/static/icons/06005984.png
new file mode 100755
index 00000000..967a9c5e
Binary files /dev/null and b/static/icons/06005984.png differ
diff --git a/static/icons/06005985.png b/static/icons/06005985.png
new file mode 100755
index 00000000..4888acf7
Binary files /dev/null and b/static/icons/06005985.png differ
diff --git a/static/icons/06005986.png b/static/icons/06005986.png
new file mode 100755
index 00000000..1e2cb55a
Binary files /dev/null and b/static/icons/06005986.png differ
diff --git a/static/icons/06005987.png b/static/icons/06005987.png
new file mode 100755
index 00000000..a7cbe92a
Binary files /dev/null and b/static/icons/06005987.png differ
diff --git a/static/icons/06005988.png b/static/icons/06005988.png
new file mode 100755
index 00000000..9d6de34b
Binary files /dev/null and b/static/icons/06005988.png differ
diff --git a/static/icons/06005989.png b/static/icons/06005989.png
new file mode 100755
index 00000000..9392a401
Binary files /dev/null and b/static/icons/06005989.png differ
diff --git a/static/icons/0600598A.png b/static/icons/0600598A.png
new file mode 100755
index 00000000..c5432038
Binary files /dev/null and b/static/icons/0600598A.png differ
diff --git a/static/icons/0600598B.png b/static/icons/0600598B.png
new file mode 100755
index 00000000..a6500546
Binary files /dev/null and b/static/icons/0600598B.png differ
diff --git a/static/icons/0600598C.png b/static/icons/0600598C.png
new file mode 100755
index 00000000..2426ee2c
Binary files /dev/null and b/static/icons/0600598C.png differ
diff --git a/static/icons/0600598D.png b/static/icons/0600598D.png
new file mode 100755
index 00000000..393e0626
Binary files /dev/null and b/static/icons/0600598D.png differ
diff --git a/static/icons/0600598E.png b/static/icons/0600598E.png
new file mode 100755
index 00000000..b04ecc08
Binary files /dev/null and b/static/icons/0600598E.png differ
diff --git a/static/icons/0600598F.png b/static/icons/0600598F.png
new file mode 100755
index 00000000..f390f697
Binary files /dev/null and b/static/icons/0600598F.png differ
diff --git a/static/icons/06005990.png b/static/icons/06005990.png
new file mode 100755
index 00000000..616e8f66
Binary files /dev/null and b/static/icons/06005990.png differ
diff --git a/static/icons/06005991.png b/static/icons/06005991.png
new file mode 100755
index 00000000..74f5291c
Binary files /dev/null and b/static/icons/06005991.png differ
diff --git a/static/icons/06005992.png b/static/icons/06005992.png
new file mode 100755
index 00000000..780cfa3e
Binary files /dev/null and b/static/icons/06005992.png differ
diff --git a/static/icons/06005993.png b/static/icons/06005993.png
new file mode 100755
index 00000000..2b531ad8
Binary files /dev/null and b/static/icons/06005993.png differ
diff --git a/static/icons/06005994.png b/static/icons/06005994.png
new file mode 100755
index 00000000..751887e2
Binary files /dev/null and b/static/icons/06005994.png differ
diff --git a/static/icons/06005995.png b/static/icons/06005995.png
new file mode 100755
index 00000000..292f821a
Binary files /dev/null and b/static/icons/06005995.png differ
diff --git a/static/icons/06005996.png b/static/icons/06005996.png
new file mode 100755
index 00000000..9a3eeb0d
Binary files /dev/null and b/static/icons/06005996.png differ
diff --git a/static/icons/06005997.png b/static/icons/06005997.png
new file mode 100755
index 00000000..95c28744
Binary files /dev/null and b/static/icons/06005997.png differ
diff --git a/static/icons/06005998.png b/static/icons/06005998.png
new file mode 100755
index 00000000..76236b1e
Binary files /dev/null and b/static/icons/06005998.png differ
diff --git a/static/icons/06005999.png b/static/icons/06005999.png
new file mode 100755
index 00000000..c89a926a
Binary files /dev/null and b/static/icons/06005999.png differ
diff --git a/static/icons/0600599A.png b/static/icons/0600599A.png
new file mode 100755
index 00000000..54d47325
Binary files /dev/null and b/static/icons/0600599A.png differ
diff --git a/static/icons/0600599B.png b/static/icons/0600599B.png
new file mode 100755
index 00000000..a8cd9839
Binary files /dev/null and b/static/icons/0600599B.png differ
diff --git a/static/icons/0600599C.png b/static/icons/0600599C.png
new file mode 100755
index 00000000..1cc687ee
Binary files /dev/null and b/static/icons/0600599C.png differ
diff --git a/static/icons/0600599D.png b/static/icons/0600599D.png
new file mode 100755
index 00000000..54fb24ae
Binary files /dev/null and b/static/icons/0600599D.png differ
diff --git a/static/icons/0600599E.png b/static/icons/0600599E.png
new file mode 100755
index 00000000..e5b47b16
Binary files /dev/null and b/static/icons/0600599E.png differ
diff --git a/static/icons/0600599F.png b/static/icons/0600599F.png
new file mode 100755
index 00000000..f1c5e5e0
Binary files /dev/null and b/static/icons/0600599F.png differ
diff --git a/static/icons/060059A0.png b/static/icons/060059A0.png
new file mode 100755
index 00000000..e6eea5c4
Binary files /dev/null and b/static/icons/060059A0.png differ
diff --git a/static/icons/060059A1.png b/static/icons/060059A1.png
new file mode 100755
index 00000000..3bd0cd66
Binary files /dev/null and b/static/icons/060059A1.png differ
diff --git a/static/icons/060059A2.png b/static/icons/060059A2.png
new file mode 100755
index 00000000..25beaa30
Binary files /dev/null and b/static/icons/060059A2.png differ
diff --git a/static/icons/060059A3.png b/static/icons/060059A3.png
new file mode 100755
index 00000000..b9dbb348
Binary files /dev/null and b/static/icons/060059A3.png differ
diff --git a/static/icons/060059A4.png b/static/icons/060059A4.png
new file mode 100755
index 00000000..f3a0146e
Binary files /dev/null and b/static/icons/060059A4.png differ
diff --git a/static/icons/060059A5.png b/static/icons/060059A5.png
new file mode 100755
index 00000000..fefb27a2
Binary files /dev/null and b/static/icons/060059A5.png differ
diff --git a/static/icons/060059A6.png b/static/icons/060059A6.png
new file mode 100755
index 00000000..6225fef7
Binary files /dev/null and b/static/icons/060059A6.png differ
diff --git a/static/icons/060059A7.png b/static/icons/060059A7.png
new file mode 100755
index 00000000..85d1bf0c
Binary files /dev/null and b/static/icons/060059A7.png differ
diff --git a/static/icons/060059A8.png b/static/icons/060059A8.png
new file mode 100755
index 00000000..47346c77
Binary files /dev/null and b/static/icons/060059A8.png differ
diff --git a/static/icons/060059A9.png b/static/icons/060059A9.png
new file mode 100755
index 00000000..d6a93d74
Binary files /dev/null and b/static/icons/060059A9.png differ
diff --git a/static/icons/060059AA.png b/static/icons/060059AA.png
new file mode 100755
index 00000000..4f5a10cf
Binary files /dev/null and b/static/icons/060059AA.png differ
diff --git a/static/icons/060059AB.png b/static/icons/060059AB.png
new file mode 100755
index 00000000..d7dfa1f0
Binary files /dev/null and b/static/icons/060059AB.png differ
diff --git a/static/icons/060059AC.png b/static/icons/060059AC.png
new file mode 100755
index 00000000..5381fd20
Binary files /dev/null and b/static/icons/060059AC.png differ
diff --git a/static/icons/060059AD.png b/static/icons/060059AD.png
new file mode 100755
index 00000000..2ce39cad
Binary files /dev/null and b/static/icons/060059AD.png differ
diff --git a/static/icons/060059AE.png b/static/icons/060059AE.png
new file mode 100755
index 00000000..ebbd1156
Binary files /dev/null and b/static/icons/060059AE.png differ
diff --git a/static/icons/060059AF.png b/static/icons/060059AF.png
new file mode 100755
index 00000000..f7b9dc75
Binary files /dev/null and b/static/icons/060059AF.png differ
diff --git a/static/icons/060059B0.png b/static/icons/060059B0.png
new file mode 100755
index 00000000..0dd1a661
Binary files /dev/null and b/static/icons/060059B0.png differ
diff --git a/static/icons/060059B1.png b/static/icons/060059B1.png
new file mode 100755
index 00000000..810fbc1a
Binary files /dev/null and b/static/icons/060059B1.png differ
diff --git a/static/icons/060059B2.png b/static/icons/060059B2.png
new file mode 100755
index 00000000..6ddab5b9
Binary files /dev/null and b/static/icons/060059B2.png differ
diff --git a/static/icons/060059B3.png b/static/icons/060059B3.png
new file mode 100755
index 00000000..62eba826
Binary files /dev/null and b/static/icons/060059B3.png differ
diff --git a/static/icons/060059B4.png b/static/icons/060059B4.png
new file mode 100755
index 00000000..b39ad40c
Binary files /dev/null and b/static/icons/060059B4.png differ
diff --git a/static/icons/060059B5.png b/static/icons/060059B5.png
new file mode 100755
index 00000000..ae075cf1
Binary files /dev/null and b/static/icons/060059B5.png differ
diff --git a/static/icons/060059B6.png b/static/icons/060059B6.png
new file mode 100755
index 00000000..1e7de21d
Binary files /dev/null and b/static/icons/060059B6.png differ
diff --git a/static/icons/060059B7.png b/static/icons/060059B7.png
new file mode 100755
index 00000000..b5ba4dcd
Binary files /dev/null and b/static/icons/060059B7.png differ
diff --git a/static/icons/060059B8.png b/static/icons/060059B8.png
new file mode 100755
index 00000000..3843e281
Binary files /dev/null and b/static/icons/060059B8.png differ
diff --git a/static/icons/060059B9.png b/static/icons/060059B9.png
new file mode 100755
index 00000000..8ad83f83
Binary files /dev/null and b/static/icons/060059B9.png differ
diff --git a/static/icons/060059BA.png b/static/icons/060059BA.png
new file mode 100755
index 00000000..64a1107d
Binary files /dev/null and b/static/icons/060059BA.png differ
diff --git a/static/icons/060059BB.png b/static/icons/060059BB.png
new file mode 100755
index 00000000..c59ee2f2
Binary files /dev/null and b/static/icons/060059BB.png differ
diff --git a/static/icons/060059BC.png b/static/icons/060059BC.png
new file mode 100755
index 00000000..8bf5db99
Binary files /dev/null and b/static/icons/060059BC.png differ
diff --git a/static/icons/060059BD.png b/static/icons/060059BD.png
new file mode 100755
index 00000000..f89d949b
Binary files /dev/null and b/static/icons/060059BD.png differ
diff --git a/static/icons/060059BE.png b/static/icons/060059BE.png
new file mode 100755
index 00000000..177430f9
Binary files /dev/null and b/static/icons/060059BE.png differ
diff --git a/static/icons/060059BF.png b/static/icons/060059BF.png
new file mode 100755
index 00000000..1d6b4311
Binary files /dev/null and b/static/icons/060059BF.png differ
diff --git a/static/icons/060059C0.png b/static/icons/060059C0.png
new file mode 100755
index 00000000..13ade190
Binary files /dev/null and b/static/icons/060059C0.png differ
diff --git a/static/icons/060059C1.png b/static/icons/060059C1.png
new file mode 100755
index 00000000..ce812a09
Binary files /dev/null and b/static/icons/060059C1.png differ
diff --git a/static/icons/060059C2.png b/static/icons/060059C2.png
new file mode 100755
index 00000000..8d0a9289
Binary files /dev/null and b/static/icons/060059C2.png differ
diff --git a/static/icons/060059C3.png b/static/icons/060059C3.png
new file mode 100755
index 00000000..7041b75d
Binary files /dev/null and b/static/icons/060059C3.png differ
diff --git a/static/icons/060059C4.png b/static/icons/060059C4.png
new file mode 100755
index 00000000..f3c95708
Binary files /dev/null and b/static/icons/060059C4.png differ
diff --git a/static/icons/060059C5.png b/static/icons/060059C5.png
new file mode 100755
index 00000000..88b0e434
Binary files /dev/null and b/static/icons/060059C5.png differ
diff --git a/static/icons/060059C6.png b/static/icons/060059C6.png
new file mode 100755
index 00000000..60e1f6dc
Binary files /dev/null and b/static/icons/060059C6.png differ
diff --git a/static/icons/060059C7.png b/static/icons/060059C7.png
new file mode 100755
index 00000000..e6c64b9b
Binary files /dev/null and b/static/icons/060059C7.png differ
diff --git a/static/icons/060059C8.png b/static/icons/060059C8.png
new file mode 100755
index 00000000..e582a42b
Binary files /dev/null and b/static/icons/060059C8.png differ
diff --git a/static/icons/060059C9.png b/static/icons/060059C9.png
new file mode 100755
index 00000000..6fb1bd6c
Binary files /dev/null and b/static/icons/060059C9.png differ
diff --git a/static/icons/060059CA.png b/static/icons/060059CA.png
new file mode 100755
index 00000000..dd6ecbf5
Binary files /dev/null and b/static/icons/060059CA.png differ
diff --git a/static/icons/060059CB.png b/static/icons/060059CB.png
new file mode 100755
index 00000000..e41d2072
Binary files /dev/null and b/static/icons/060059CB.png differ
diff --git a/static/icons/060059CC.png b/static/icons/060059CC.png
new file mode 100755
index 00000000..d13edfae
Binary files /dev/null and b/static/icons/060059CC.png differ
diff --git a/static/icons/060059CD.png b/static/icons/060059CD.png
new file mode 100755
index 00000000..1101e781
Binary files /dev/null and b/static/icons/060059CD.png differ
diff --git a/static/icons/060059CE.png b/static/icons/060059CE.png
new file mode 100755
index 00000000..5e517d40
Binary files /dev/null and b/static/icons/060059CE.png differ
diff --git a/static/icons/060059CF.png b/static/icons/060059CF.png
new file mode 100755
index 00000000..94cc27f6
Binary files /dev/null and b/static/icons/060059CF.png differ
diff --git a/static/icons/060059D0.png b/static/icons/060059D0.png
new file mode 100755
index 00000000..170e39f5
Binary files /dev/null and b/static/icons/060059D0.png differ
diff --git a/static/icons/060059D1.png b/static/icons/060059D1.png
new file mode 100755
index 00000000..fa0e0cb4
Binary files /dev/null and b/static/icons/060059D1.png differ
diff --git a/static/icons/060059D2.png b/static/icons/060059D2.png
new file mode 100755
index 00000000..60cfdf96
Binary files /dev/null and b/static/icons/060059D2.png differ
diff --git a/static/icons/060059D3.png b/static/icons/060059D3.png
new file mode 100755
index 00000000..91bc4882
Binary files /dev/null and b/static/icons/060059D3.png differ
diff --git a/static/icons/060059D4.png b/static/icons/060059D4.png
new file mode 100755
index 00000000..8fae3cf2
Binary files /dev/null and b/static/icons/060059D4.png differ
diff --git a/static/icons/060059D5.png b/static/icons/060059D5.png
new file mode 100755
index 00000000..dde49e96
Binary files /dev/null and b/static/icons/060059D5.png differ
diff --git a/static/icons/060059D6.png b/static/icons/060059D6.png
new file mode 100755
index 00000000..07fd6717
Binary files /dev/null and b/static/icons/060059D6.png differ
diff --git a/static/icons/060059D7.png b/static/icons/060059D7.png
new file mode 100755
index 00000000..8f593dbf
Binary files /dev/null and b/static/icons/060059D7.png differ
diff --git a/static/icons/060059D8.png b/static/icons/060059D8.png
new file mode 100755
index 00000000..8d20335c
Binary files /dev/null and b/static/icons/060059D8.png differ
diff --git a/static/icons/060059D9.png b/static/icons/060059D9.png
new file mode 100755
index 00000000..f85da377
Binary files /dev/null and b/static/icons/060059D9.png differ
diff --git a/static/icons/060059DA.png b/static/icons/060059DA.png
new file mode 100755
index 00000000..c6ce8532
Binary files /dev/null and b/static/icons/060059DA.png differ
diff --git a/static/icons/060059DB.png b/static/icons/060059DB.png
new file mode 100755
index 00000000..d90b4bb4
Binary files /dev/null and b/static/icons/060059DB.png differ
diff --git a/static/icons/060059DC.png b/static/icons/060059DC.png
new file mode 100755
index 00000000..7f8930a5
Binary files /dev/null and b/static/icons/060059DC.png differ
diff --git a/static/icons/060059DD.png b/static/icons/060059DD.png
new file mode 100755
index 00000000..90933da6
Binary files /dev/null and b/static/icons/060059DD.png differ
diff --git a/static/icons/060059DE.png b/static/icons/060059DE.png
new file mode 100755
index 00000000..1ed83450
Binary files /dev/null and b/static/icons/060059DE.png differ
diff --git a/static/icons/060059DF.png b/static/icons/060059DF.png
new file mode 100755
index 00000000..8fb1e10d
Binary files /dev/null and b/static/icons/060059DF.png differ
diff --git a/static/icons/060059E0.png b/static/icons/060059E0.png
new file mode 100755
index 00000000..60cfbb82
Binary files /dev/null and b/static/icons/060059E0.png differ
diff --git a/static/icons/060059E1.png b/static/icons/060059E1.png
new file mode 100755
index 00000000..04831147
Binary files /dev/null and b/static/icons/060059E1.png differ
diff --git a/static/icons/060059E2.png b/static/icons/060059E2.png
new file mode 100755
index 00000000..dc659fd2
Binary files /dev/null and b/static/icons/060059E2.png differ
diff --git a/static/icons/060059E3.png b/static/icons/060059E3.png
new file mode 100755
index 00000000..f2addbae
Binary files /dev/null and b/static/icons/060059E3.png differ
diff --git a/static/icons/060059E4.png b/static/icons/060059E4.png
new file mode 100755
index 00000000..8ad99bf3
Binary files /dev/null and b/static/icons/060059E4.png differ
diff --git a/static/icons/060059E5.png b/static/icons/060059E5.png
new file mode 100755
index 00000000..ba90796a
Binary files /dev/null and b/static/icons/060059E5.png differ
diff --git a/static/icons/060059E6.png b/static/icons/060059E6.png
new file mode 100755
index 00000000..e68dd9cd
Binary files /dev/null and b/static/icons/060059E6.png differ
diff --git a/static/icons/060059E7.png b/static/icons/060059E7.png
new file mode 100755
index 00000000..1240dbda
Binary files /dev/null and b/static/icons/060059E7.png differ
diff --git a/static/icons/060059E8.png b/static/icons/060059E8.png
new file mode 100755
index 00000000..8ce04a0b
Binary files /dev/null and b/static/icons/060059E8.png differ
diff --git a/static/icons/060059E9.png b/static/icons/060059E9.png
new file mode 100755
index 00000000..47554b13
Binary files /dev/null and b/static/icons/060059E9.png differ
diff --git a/static/icons/060059EA.png b/static/icons/060059EA.png
new file mode 100755
index 00000000..376edd80
Binary files /dev/null and b/static/icons/060059EA.png differ
diff --git a/static/icons/060059EB.png b/static/icons/060059EB.png
new file mode 100755
index 00000000..a3eee6b9
Binary files /dev/null and b/static/icons/060059EB.png differ
diff --git a/static/icons/060059EC.png b/static/icons/060059EC.png
new file mode 100755
index 00000000..792c4023
Binary files /dev/null and b/static/icons/060059EC.png differ
diff --git a/static/icons/060059ED.png b/static/icons/060059ED.png
new file mode 100755
index 00000000..c4bc66f4
Binary files /dev/null and b/static/icons/060059ED.png differ
diff --git a/static/icons/060059EE.png b/static/icons/060059EE.png
new file mode 100755
index 00000000..a3b52166
Binary files /dev/null and b/static/icons/060059EE.png differ
diff --git a/static/icons/060059EF.png b/static/icons/060059EF.png
new file mode 100755
index 00000000..9df7c67d
Binary files /dev/null and b/static/icons/060059EF.png differ
diff --git a/static/icons/060059F0.png b/static/icons/060059F0.png
new file mode 100755
index 00000000..4d197248
Binary files /dev/null and b/static/icons/060059F0.png differ
diff --git a/static/icons/060059F1.png b/static/icons/060059F1.png
new file mode 100755
index 00000000..1741aa0b
Binary files /dev/null and b/static/icons/060059F1.png differ
diff --git a/static/icons/060059FA.png b/static/icons/060059FA.png
new file mode 100755
index 00000000..045b64c7
Binary files /dev/null and b/static/icons/060059FA.png differ
diff --git a/static/icons/060059FB.png b/static/icons/060059FB.png
new file mode 100755
index 00000000..c6dead1a
Binary files /dev/null and b/static/icons/060059FB.png differ
diff --git a/static/icons/060059FC.png b/static/icons/060059FC.png
new file mode 100755
index 00000000..12531d19
Binary files /dev/null and b/static/icons/060059FC.png differ
diff --git a/static/icons/060059FD.png b/static/icons/060059FD.png
new file mode 100755
index 00000000..e94a7979
Binary files /dev/null and b/static/icons/060059FD.png differ
diff --git a/static/icons/060059FE.png b/static/icons/060059FE.png
new file mode 100755
index 00000000..ca35bac5
Binary files /dev/null and b/static/icons/060059FE.png differ
diff --git a/static/icons/060059FF.png b/static/icons/060059FF.png
new file mode 100755
index 00000000..4255ad3c
Binary files /dev/null and b/static/icons/060059FF.png differ
diff --git a/static/icons/06005A00.png b/static/icons/06005A00.png
new file mode 100755
index 00000000..d781c664
Binary files /dev/null and b/static/icons/06005A00.png differ
diff --git a/static/icons/06005A01.png b/static/icons/06005A01.png
new file mode 100755
index 00000000..97500fa2
Binary files /dev/null and b/static/icons/06005A01.png differ
diff --git a/static/icons/06005A02.png b/static/icons/06005A02.png
new file mode 100755
index 00000000..3fad0cc1
Binary files /dev/null and b/static/icons/06005A02.png differ
diff --git a/static/icons/06005A03.png b/static/icons/06005A03.png
new file mode 100755
index 00000000..911cec43
Binary files /dev/null and b/static/icons/06005A03.png differ
diff --git a/static/icons/06005A04.png b/static/icons/06005A04.png
new file mode 100755
index 00000000..5061f709
Binary files /dev/null and b/static/icons/06005A04.png differ
diff --git a/static/icons/06005A05.png b/static/icons/06005A05.png
new file mode 100755
index 00000000..454653de
Binary files /dev/null and b/static/icons/06005A05.png differ
diff --git a/static/icons/06005A06.png b/static/icons/06005A06.png
new file mode 100755
index 00000000..50282904
Binary files /dev/null and b/static/icons/06005A06.png differ
diff --git a/static/icons/06005A07.png b/static/icons/06005A07.png
new file mode 100755
index 00000000..229644af
Binary files /dev/null and b/static/icons/06005A07.png differ
diff --git a/static/icons/06005A08.png b/static/icons/06005A08.png
new file mode 100755
index 00000000..97500fa2
Binary files /dev/null and b/static/icons/06005A08.png differ
diff --git a/static/icons/06005A09.png b/static/icons/06005A09.png
new file mode 100755
index 00000000..3d8fa075
Binary files /dev/null and b/static/icons/06005A09.png differ
diff --git a/static/icons/06005A0A.png b/static/icons/06005A0A.png
new file mode 100755
index 00000000..054f6378
Binary files /dev/null and b/static/icons/06005A0A.png differ
diff --git a/static/icons/06005A0B.png b/static/icons/06005A0B.png
new file mode 100755
index 00000000..b64db7ba
Binary files /dev/null and b/static/icons/06005A0B.png differ
diff --git a/static/icons/06005A0C.png b/static/icons/06005A0C.png
new file mode 100755
index 00000000..f60a128d
Binary files /dev/null and b/static/icons/06005A0C.png differ
diff --git a/static/icons/06005A0D.png b/static/icons/06005A0D.png
new file mode 100755
index 00000000..997aa481
Binary files /dev/null and b/static/icons/06005A0D.png differ
diff --git a/static/icons/06005A0E.png b/static/icons/06005A0E.png
new file mode 100755
index 00000000..94a820b1
Binary files /dev/null and b/static/icons/06005A0E.png differ
diff --git a/static/icons/06005A0F.png b/static/icons/06005A0F.png
new file mode 100755
index 00000000..8906a394
Binary files /dev/null and b/static/icons/06005A0F.png differ
diff --git a/static/icons/06005A10.png b/static/icons/06005A10.png
new file mode 100755
index 00000000..7ec275f4
Binary files /dev/null and b/static/icons/06005A10.png differ
diff --git a/static/icons/06005A11.png b/static/icons/06005A11.png
new file mode 100755
index 00000000..00d75feb
Binary files /dev/null and b/static/icons/06005A11.png differ
diff --git a/static/icons/06005A12.png b/static/icons/06005A12.png
new file mode 100755
index 00000000..a3855191
Binary files /dev/null and b/static/icons/06005A12.png differ
diff --git a/static/icons/06005A13.png b/static/icons/06005A13.png
new file mode 100755
index 00000000..5647eed4
Binary files /dev/null and b/static/icons/06005A13.png differ
diff --git a/static/icons/06005A14.png b/static/icons/06005A14.png
new file mode 100755
index 00000000..d2f85e17
Binary files /dev/null and b/static/icons/06005A14.png differ
diff --git a/static/icons/06005A15.png b/static/icons/06005A15.png
new file mode 100755
index 00000000..6f058b4c
Binary files /dev/null and b/static/icons/06005A15.png differ
diff --git a/static/icons/06005A16.png b/static/icons/06005A16.png
new file mode 100755
index 00000000..d716dda5
Binary files /dev/null and b/static/icons/06005A16.png differ
diff --git a/static/icons/06005A17.png b/static/icons/06005A17.png
new file mode 100755
index 00000000..cfcc9a45
Binary files /dev/null and b/static/icons/06005A17.png differ
diff --git a/static/icons/06005A18.png b/static/icons/06005A18.png
new file mode 100755
index 00000000..7537950b
Binary files /dev/null and b/static/icons/06005A18.png differ
diff --git a/static/icons/06005A19.png b/static/icons/06005A19.png
new file mode 100755
index 00000000..2b2d56b3
Binary files /dev/null and b/static/icons/06005A19.png differ
diff --git a/static/icons/06005A1A.png b/static/icons/06005A1A.png
new file mode 100755
index 00000000..ef27d289
Binary files /dev/null and b/static/icons/06005A1A.png differ
diff --git a/static/icons/06005A1B.png b/static/icons/06005A1B.png
new file mode 100755
index 00000000..2265384e
Binary files /dev/null and b/static/icons/06005A1B.png differ
diff --git a/static/icons/06005A1C.png b/static/icons/06005A1C.png
new file mode 100755
index 00000000..dc60ad87
Binary files /dev/null and b/static/icons/06005A1C.png differ
diff --git a/static/icons/06005A1D.png b/static/icons/06005A1D.png
new file mode 100755
index 00000000..84d41a58
Binary files /dev/null and b/static/icons/06005A1D.png differ
diff --git a/static/icons/06005A1E.png b/static/icons/06005A1E.png
new file mode 100755
index 00000000..ea45f7b9
Binary files /dev/null and b/static/icons/06005A1E.png differ
diff --git a/static/icons/06005A1F.png b/static/icons/06005A1F.png
new file mode 100755
index 00000000..2af641e7
Binary files /dev/null and b/static/icons/06005A1F.png differ
diff --git a/static/icons/06005A20.png b/static/icons/06005A20.png
new file mode 100755
index 00000000..4c5333ed
Binary files /dev/null and b/static/icons/06005A20.png differ
diff --git a/static/icons/06005A21.png b/static/icons/06005A21.png
new file mode 100755
index 00000000..fff1aca5
Binary files /dev/null and b/static/icons/06005A21.png differ
diff --git a/static/icons/06005A22.png b/static/icons/06005A22.png
new file mode 100755
index 00000000..d62a441d
Binary files /dev/null and b/static/icons/06005A22.png differ
diff --git a/static/icons/06005A23.png b/static/icons/06005A23.png
new file mode 100755
index 00000000..a8085f2a
Binary files /dev/null and b/static/icons/06005A23.png differ
diff --git a/static/icons/06005A24.png b/static/icons/06005A24.png
new file mode 100755
index 00000000..c0ad5dc1
Binary files /dev/null and b/static/icons/06005A24.png differ
diff --git a/static/icons/06005A25.png b/static/icons/06005A25.png
new file mode 100755
index 00000000..2fce4c60
Binary files /dev/null and b/static/icons/06005A25.png differ
diff --git a/static/icons/06005A26.png b/static/icons/06005A26.png
new file mode 100755
index 00000000..78e58ce1
Binary files /dev/null and b/static/icons/06005A26.png differ
diff --git a/static/icons/06005A27.png b/static/icons/06005A27.png
new file mode 100755
index 00000000..e9fbad99
Binary files /dev/null and b/static/icons/06005A27.png differ
diff --git a/static/icons/06005A28.png b/static/icons/06005A28.png
new file mode 100755
index 00000000..e07f8395
Binary files /dev/null and b/static/icons/06005A28.png differ
diff --git a/static/icons/06005A29.png b/static/icons/06005A29.png
new file mode 100755
index 00000000..5f30aa06
Binary files /dev/null and b/static/icons/06005A29.png differ
diff --git a/static/icons/06005A2A.png b/static/icons/06005A2A.png
new file mode 100755
index 00000000..b28cc435
Binary files /dev/null and b/static/icons/06005A2A.png differ
diff --git a/static/icons/06005A2B.png b/static/icons/06005A2B.png
new file mode 100755
index 00000000..038b229e
Binary files /dev/null and b/static/icons/06005A2B.png differ
diff --git a/static/icons/06005A2C.png b/static/icons/06005A2C.png
new file mode 100755
index 00000000..6c85bfd2
Binary files /dev/null and b/static/icons/06005A2C.png differ
diff --git a/static/icons/06005A2D.png b/static/icons/06005A2D.png
new file mode 100755
index 00000000..0c6b14ac
Binary files /dev/null and b/static/icons/06005A2D.png differ
diff --git a/static/icons/06005A2E.png b/static/icons/06005A2E.png
new file mode 100755
index 00000000..e8fe0f22
Binary files /dev/null and b/static/icons/06005A2E.png differ
diff --git a/static/icons/06005A2F.png b/static/icons/06005A2F.png
new file mode 100755
index 00000000..be067e32
Binary files /dev/null and b/static/icons/06005A2F.png differ
diff --git a/static/icons/06005A30.png b/static/icons/06005A30.png
new file mode 100755
index 00000000..90edef92
Binary files /dev/null and b/static/icons/06005A30.png differ
diff --git a/static/icons/06005A31.png b/static/icons/06005A31.png
new file mode 100755
index 00000000..18ce3276
Binary files /dev/null and b/static/icons/06005A31.png differ
diff --git a/static/icons/06005A32.png b/static/icons/06005A32.png
new file mode 100755
index 00000000..c8736550
Binary files /dev/null and b/static/icons/06005A32.png differ
diff --git a/static/icons/06005A33.png b/static/icons/06005A33.png
new file mode 100755
index 00000000..381d6ca7
Binary files /dev/null and b/static/icons/06005A33.png differ
diff --git a/static/icons/06005A34.png b/static/icons/06005A34.png
new file mode 100755
index 00000000..e3ff8bab
Binary files /dev/null and b/static/icons/06005A34.png differ
diff --git a/static/icons/06005A35.png b/static/icons/06005A35.png
new file mode 100755
index 00000000..2b51bfb6
Binary files /dev/null and b/static/icons/06005A35.png differ
diff --git a/static/icons/06005A36.png b/static/icons/06005A36.png
new file mode 100755
index 00000000..fd50af56
Binary files /dev/null and b/static/icons/06005A36.png differ
diff --git a/static/icons/06005A37.png b/static/icons/06005A37.png
new file mode 100755
index 00000000..5878d3e1
Binary files /dev/null and b/static/icons/06005A37.png differ
diff --git a/static/icons/06005A38.png b/static/icons/06005A38.png
new file mode 100755
index 00000000..b47d6790
Binary files /dev/null and b/static/icons/06005A38.png differ
diff --git a/static/icons/06005A39.png b/static/icons/06005A39.png
new file mode 100755
index 00000000..567c9343
Binary files /dev/null and b/static/icons/06005A39.png differ
diff --git a/static/icons/06005A3A.png b/static/icons/06005A3A.png
new file mode 100755
index 00000000..edc337bd
Binary files /dev/null and b/static/icons/06005A3A.png differ
diff --git a/static/icons/06005A3B.png b/static/icons/06005A3B.png
new file mode 100755
index 00000000..82cdac79
Binary files /dev/null and b/static/icons/06005A3B.png differ
diff --git a/static/icons/06005A3C.png b/static/icons/06005A3C.png
new file mode 100755
index 00000000..237fae75
Binary files /dev/null and b/static/icons/06005A3C.png differ
diff --git a/static/icons/06005A3D.png b/static/icons/06005A3D.png
new file mode 100755
index 00000000..fbb20cbb
Binary files /dev/null and b/static/icons/06005A3D.png differ
diff --git a/static/icons/06005A3E.png b/static/icons/06005A3E.png
new file mode 100755
index 00000000..3ec979eb
Binary files /dev/null and b/static/icons/06005A3E.png differ
diff --git a/static/icons/06005A3F.png b/static/icons/06005A3F.png
new file mode 100755
index 00000000..57f57d0e
Binary files /dev/null and b/static/icons/06005A3F.png differ
diff --git a/static/icons/06005A40.png b/static/icons/06005A40.png
new file mode 100755
index 00000000..814e7db2
Binary files /dev/null and b/static/icons/06005A40.png differ
diff --git a/static/icons/06005A4D.png b/static/icons/06005A4D.png
new file mode 100755
index 00000000..de972d28
Binary files /dev/null and b/static/icons/06005A4D.png differ
diff --git a/static/icons/06005A4E.png b/static/icons/06005A4E.png
new file mode 100755
index 00000000..5df1f351
Binary files /dev/null and b/static/icons/06005A4E.png differ
diff --git a/static/icons/06005A4F.png b/static/icons/06005A4F.png
new file mode 100755
index 00000000..f2813e5b
Binary files /dev/null and b/static/icons/06005A4F.png differ
diff --git a/static/icons/06005A50.png b/static/icons/06005A50.png
new file mode 100755
index 00000000..e082baf3
Binary files /dev/null and b/static/icons/06005A50.png differ
diff --git a/static/icons/06005A51.png b/static/icons/06005A51.png
new file mode 100755
index 00000000..60373f9f
Binary files /dev/null and b/static/icons/06005A51.png differ
diff --git a/static/icons/06005A52.png b/static/icons/06005A52.png
new file mode 100755
index 00000000..0dd56144
Binary files /dev/null and b/static/icons/06005A52.png differ
diff --git a/static/icons/06005A53.png b/static/icons/06005A53.png
new file mode 100755
index 00000000..1cf17499
Binary files /dev/null and b/static/icons/06005A53.png differ
diff --git a/static/icons/06005A54.png b/static/icons/06005A54.png
new file mode 100755
index 00000000..2a67e7c1
Binary files /dev/null and b/static/icons/06005A54.png differ
diff --git a/static/icons/06005A55.png b/static/icons/06005A55.png
new file mode 100755
index 00000000..e204281c
Binary files /dev/null and b/static/icons/06005A55.png differ
diff --git a/static/icons/06005A56.png b/static/icons/06005A56.png
new file mode 100755
index 00000000..ddaed03d
Binary files /dev/null and b/static/icons/06005A56.png differ
diff --git a/static/icons/06005A57.png b/static/icons/06005A57.png
new file mode 100755
index 00000000..941937b5
Binary files /dev/null and b/static/icons/06005A57.png differ
diff --git a/static/icons/06005A58.png b/static/icons/06005A58.png
new file mode 100755
index 00000000..c532bcc8
Binary files /dev/null and b/static/icons/06005A58.png differ
diff --git a/static/icons/06005A59.png b/static/icons/06005A59.png
new file mode 100755
index 00000000..443d301e
Binary files /dev/null and b/static/icons/06005A59.png differ
diff --git a/static/icons/06005A5A.png b/static/icons/06005A5A.png
new file mode 100755
index 00000000..09d20898
Binary files /dev/null and b/static/icons/06005A5A.png differ
diff --git a/static/icons/06005A5B.png b/static/icons/06005A5B.png
new file mode 100755
index 00000000..1fa1523a
Binary files /dev/null and b/static/icons/06005A5B.png differ
diff --git a/static/icons/06005A5C.png b/static/icons/06005A5C.png
new file mode 100755
index 00000000..e133ea75
Binary files /dev/null and b/static/icons/06005A5C.png differ
diff --git a/static/icons/06005A5D.png b/static/icons/06005A5D.png
new file mode 100755
index 00000000..60b5bdd0
Binary files /dev/null and b/static/icons/06005A5D.png differ
diff --git a/static/icons/06005A5E.png b/static/icons/06005A5E.png
new file mode 100755
index 00000000..bd237eb3
Binary files /dev/null and b/static/icons/06005A5E.png differ
diff --git a/static/icons/06005A5F.png b/static/icons/06005A5F.png
new file mode 100755
index 00000000..6c8e1d71
Binary files /dev/null and b/static/icons/06005A5F.png differ
diff --git a/static/icons/06005A60.png b/static/icons/06005A60.png
new file mode 100755
index 00000000..6b0f2b69
Binary files /dev/null and b/static/icons/06005A60.png differ
diff --git a/static/icons/06005A61.png b/static/icons/06005A61.png
new file mode 100755
index 00000000..5c83c2bf
Binary files /dev/null and b/static/icons/06005A61.png differ
diff --git a/static/icons/06005A62.png b/static/icons/06005A62.png
new file mode 100755
index 00000000..7eb1e87c
Binary files /dev/null and b/static/icons/06005A62.png differ
diff --git a/static/icons/06005A63.png b/static/icons/06005A63.png
new file mode 100755
index 00000000..398dbc1c
Binary files /dev/null and b/static/icons/06005A63.png differ
diff --git a/static/icons/06005A64.png b/static/icons/06005A64.png
new file mode 100755
index 00000000..4c9e79dc
Binary files /dev/null and b/static/icons/06005A64.png differ
diff --git a/static/icons/06005A65.png b/static/icons/06005A65.png
new file mode 100755
index 00000000..2cfdc665
Binary files /dev/null and b/static/icons/06005A65.png differ
diff --git a/static/icons/06005A66.png b/static/icons/06005A66.png
new file mode 100755
index 00000000..6ddd12d3
Binary files /dev/null and b/static/icons/06005A66.png differ
diff --git a/static/icons/06005A67.png b/static/icons/06005A67.png
new file mode 100755
index 00000000..31291ff8
Binary files /dev/null and b/static/icons/06005A67.png differ
diff --git a/static/icons/06005A68.png b/static/icons/06005A68.png
new file mode 100755
index 00000000..05d44aac
Binary files /dev/null and b/static/icons/06005A68.png differ
diff --git a/static/icons/06005A69.png b/static/icons/06005A69.png
new file mode 100755
index 00000000..6837bf7d
Binary files /dev/null and b/static/icons/06005A69.png differ
diff --git a/static/icons/06005A6A.png b/static/icons/06005A6A.png
new file mode 100755
index 00000000..7f1898b8
Binary files /dev/null and b/static/icons/06005A6A.png differ
diff --git a/static/icons/06005A6B.png b/static/icons/06005A6B.png
new file mode 100755
index 00000000..92732026
Binary files /dev/null and b/static/icons/06005A6B.png differ
diff --git a/static/icons/06005A6C.png b/static/icons/06005A6C.png
new file mode 100755
index 00000000..fd59e5ae
Binary files /dev/null and b/static/icons/06005A6C.png differ
diff --git a/static/icons/06005A6D.png b/static/icons/06005A6D.png
new file mode 100755
index 00000000..17b5dd38
Binary files /dev/null and b/static/icons/06005A6D.png differ
diff --git a/static/icons/06005A6E.png b/static/icons/06005A6E.png
new file mode 100755
index 00000000..d47f290d
Binary files /dev/null and b/static/icons/06005A6E.png differ
diff --git a/static/icons/06005A6F.png b/static/icons/06005A6F.png
new file mode 100755
index 00000000..83090ee6
Binary files /dev/null and b/static/icons/06005A6F.png differ
diff --git a/static/icons/06005A70.png b/static/icons/06005A70.png
new file mode 100755
index 00000000..6a997918
Binary files /dev/null and b/static/icons/06005A70.png differ
diff --git a/static/icons/06005A71.png b/static/icons/06005A71.png
new file mode 100755
index 00000000..2b8ccacf
Binary files /dev/null and b/static/icons/06005A71.png differ
diff --git a/static/icons/06005A72.png b/static/icons/06005A72.png
new file mode 100755
index 00000000..b2f88a49
Binary files /dev/null and b/static/icons/06005A72.png differ
diff --git a/static/icons/06005A73.png b/static/icons/06005A73.png
new file mode 100755
index 00000000..911fa5b8
Binary files /dev/null and b/static/icons/06005A73.png differ
diff --git a/static/icons/06005A74.png b/static/icons/06005A74.png
new file mode 100755
index 00000000..05f50641
Binary files /dev/null and b/static/icons/06005A74.png differ
diff --git a/static/icons/06005A75.png b/static/icons/06005A75.png
new file mode 100755
index 00000000..898d8182
Binary files /dev/null and b/static/icons/06005A75.png differ
diff --git a/static/icons/06005A76.png b/static/icons/06005A76.png
new file mode 100755
index 00000000..24b3e341
Binary files /dev/null and b/static/icons/06005A76.png differ
diff --git a/static/icons/06005A77.png b/static/icons/06005A77.png
new file mode 100755
index 00000000..e66ec35d
Binary files /dev/null and b/static/icons/06005A77.png differ
diff --git a/static/icons/06005A78.png b/static/icons/06005A78.png
new file mode 100755
index 00000000..86d3875c
Binary files /dev/null and b/static/icons/06005A78.png differ
diff --git a/static/icons/06005A79.png b/static/icons/06005A79.png
new file mode 100755
index 00000000..0fc5513b
Binary files /dev/null and b/static/icons/06005A79.png differ
diff --git a/static/icons/06005A7A.png b/static/icons/06005A7A.png
new file mode 100755
index 00000000..c60b1031
Binary files /dev/null and b/static/icons/06005A7A.png differ
diff --git a/static/icons/06005A7B.png b/static/icons/06005A7B.png
new file mode 100755
index 00000000..c02afef3
Binary files /dev/null and b/static/icons/06005A7B.png differ
diff --git a/static/icons/06005A7C.png b/static/icons/06005A7C.png
new file mode 100755
index 00000000..9d5ccbf5
Binary files /dev/null and b/static/icons/06005A7C.png differ
diff --git a/static/icons/06005A7D.png b/static/icons/06005A7D.png
new file mode 100755
index 00000000..7c1a982d
Binary files /dev/null and b/static/icons/06005A7D.png differ
diff --git a/static/icons/06005A7E.png b/static/icons/06005A7E.png
new file mode 100755
index 00000000..4c3da89c
Binary files /dev/null and b/static/icons/06005A7E.png differ
diff --git a/static/icons/06005A7F.png b/static/icons/06005A7F.png
new file mode 100755
index 00000000..69363714
Binary files /dev/null and b/static/icons/06005A7F.png differ
diff --git a/static/icons/06005A80.png b/static/icons/06005A80.png
new file mode 100755
index 00000000..aa84e0ad
Binary files /dev/null and b/static/icons/06005A80.png differ
diff --git a/static/icons/06005A81.png b/static/icons/06005A81.png
new file mode 100755
index 00000000..5cfe9bee
Binary files /dev/null and b/static/icons/06005A81.png differ
diff --git a/static/icons/06005A82.png b/static/icons/06005A82.png
new file mode 100755
index 00000000..1a31a3c5
Binary files /dev/null and b/static/icons/06005A82.png differ
diff --git a/static/icons/06005A83.png b/static/icons/06005A83.png
new file mode 100755
index 00000000..7354eacf
Binary files /dev/null and b/static/icons/06005A83.png differ
diff --git a/static/icons/06005A84.png b/static/icons/06005A84.png
new file mode 100755
index 00000000..204048af
Binary files /dev/null and b/static/icons/06005A84.png differ
diff --git a/static/icons/06005A85.png b/static/icons/06005A85.png
new file mode 100755
index 00000000..1f71f2a9
Binary files /dev/null and b/static/icons/06005A85.png differ
diff --git a/static/icons/06005A86.png b/static/icons/06005A86.png
new file mode 100755
index 00000000..84e4774b
Binary files /dev/null and b/static/icons/06005A86.png differ
diff --git a/static/icons/06005A87.png b/static/icons/06005A87.png
new file mode 100755
index 00000000..45869f73
Binary files /dev/null and b/static/icons/06005A87.png differ
diff --git a/static/icons/06005A88.png b/static/icons/06005A88.png
new file mode 100755
index 00000000..4ee53f5d
Binary files /dev/null and b/static/icons/06005A88.png differ
diff --git a/static/icons/06005A8A.png b/static/icons/06005A8A.png
new file mode 100755
index 00000000..f9f1f4f0
Binary files /dev/null and b/static/icons/06005A8A.png differ
diff --git a/static/icons/06005A8B.png b/static/icons/06005A8B.png
new file mode 100755
index 00000000..28a03f69
Binary files /dev/null and b/static/icons/06005A8B.png differ
diff --git a/static/icons/06005A8C.png b/static/icons/06005A8C.png
new file mode 100755
index 00000000..07c99392
Binary files /dev/null and b/static/icons/06005A8C.png differ
diff --git a/static/icons/06005A8D.png b/static/icons/06005A8D.png
new file mode 100755
index 00000000..a86810b6
Binary files /dev/null and b/static/icons/06005A8D.png differ
diff --git a/static/icons/06005A8E.png b/static/icons/06005A8E.png
new file mode 100755
index 00000000..6f87d525
Binary files /dev/null and b/static/icons/06005A8E.png differ
diff --git a/static/icons/06005A8F.png b/static/icons/06005A8F.png
new file mode 100755
index 00000000..44434b94
Binary files /dev/null and b/static/icons/06005A8F.png differ
diff --git a/static/icons/06005A90.png b/static/icons/06005A90.png
new file mode 100755
index 00000000..fd6ac5bf
Binary files /dev/null and b/static/icons/06005A90.png differ
diff --git a/static/icons/06005A91.png b/static/icons/06005A91.png
new file mode 100755
index 00000000..61769e9e
Binary files /dev/null and b/static/icons/06005A91.png differ
diff --git a/static/icons/06005A92.png b/static/icons/06005A92.png
new file mode 100755
index 00000000..65876338
Binary files /dev/null and b/static/icons/06005A92.png differ
diff --git a/static/icons/06005A93.png b/static/icons/06005A93.png
new file mode 100755
index 00000000..14ce04e7
Binary files /dev/null and b/static/icons/06005A93.png differ
diff --git a/static/icons/06005A94.png b/static/icons/06005A94.png
new file mode 100755
index 00000000..ae8586f9
Binary files /dev/null and b/static/icons/06005A94.png differ
diff --git a/static/icons/06005A95.png b/static/icons/06005A95.png
new file mode 100755
index 00000000..d7a32818
Binary files /dev/null and b/static/icons/06005A95.png differ
diff --git a/static/icons/06005A96.png b/static/icons/06005A96.png
new file mode 100755
index 00000000..b764cbcb
Binary files /dev/null and b/static/icons/06005A96.png differ
diff --git a/static/icons/06005A97.png b/static/icons/06005A97.png
new file mode 100755
index 00000000..1aa0b81c
Binary files /dev/null and b/static/icons/06005A97.png differ
diff --git a/static/icons/06005A98.png b/static/icons/06005A98.png
new file mode 100755
index 00000000..09212325
Binary files /dev/null and b/static/icons/06005A98.png differ
diff --git a/static/icons/06005A99.png b/static/icons/06005A99.png
new file mode 100755
index 00000000..3502bd19
Binary files /dev/null and b/static/icons/06005A99.png differ
diff --git a/static/icons/06005A9A.png b/static/icons/06005A9A.png
new file mode 100755
index 00000000..09e8213b
Binary files /dev/null and b/static/icons/06005A9A.png differ
diff --git a/static/icons/06005A9B.png b/static/icons/06005A9B.png
new file mode 100755
index 00000000..ea9cb3b2
Binary files /dev/null and b/static/icons/06005A9B.png differ
diff --git a/static/icons/06005A9C.png b/static/icons/06005A9C.png
new file mode 100755
index 00000000..30ae1a18
Binary files /dev/null and b/static/icons/06005A9C.png differ
diff --git a/static/icons/06005A9D.png b/static/icons/06005A9D.png
new file mode 100755
index 00000000..d11beead
Binary files /dev/null and b/static/icons/06005A9D.png differ
diff --git a/static/icons/06005A9E.png b/static/icons/06005A9E.png
new file mode 100755
index 00000000..14939ccc
Binary files /dev/null and b/static/icons/06005A9E.png differ
diff --git a/static/icons/06005A9F.png b/static/icons/06005A9F.png
new file mode 100755
index 00000000..5de29d6b
Binary files /dev/null and b/static/icons/06005A9F.png differ
diff --git a/static/icons/06005AA0.png b/static/icons/06005AA0.png
new file mode 100755
index 00000000..8fb7fd38
Binary files /dev/null and b/static/icons/06005AA0.png differ
diff --git a/static/icons/06005AA1.png b/static/icons/06005AA1.png
new file mode 100755
index 00000000..a0f0ec55
Binary files /dev/null and b/static/icons/06005AA1.png differ
diff --git a/static/icons/06005AA2.png b/static/icons/06005AA2.png
new file mode 100755
index 00000000..981402f1
Binary files /dev/null and b/static/icons/06005AA2.png differ
diff --git a/static/icons/06005AA3.png b/static/icons/06005AA3.png
new file mode 100755
index 00000000..ad4d38ec
Binary files /dev/null and b/static/icons/06005AA3.png differ
diff --git a/static/icons/06005AA4.png b/static/icons/06005AA4.png
new file mode 100755
index 00000000..225f943c
Binary files /dev/null and b/static/icons/06005AA4.png differ
diff --git a/static/icons/06005AA5.png b/static/icons/06005AA5.png
new file mode 100755
index 00000000..4063e0d0
Binary files /dev/null and b/static/icons/06005AA5.png differ
diff --git a/static/icons/06005AA6.png b/static/icons/06005AA6.png
new file mode 100755
index 00000000..5a935ca8
Binary files /dev/null and b/static/icons/06005AA6.png differ
diff --git a/static/icons/06005AA7.png b/static/icons/06005AA7.png
new file mode 100755
index 00000000..d180492c
Binary files /dev/null and b/static/icons/06005AA7.png differ
diff --git a/static/icons/06005AA8.png b/static/icons/06005AA8.png
new file mode 100755
index 00000000..fb35c117
Binary files /dev/null and b/static/icons/06005AA8.png differ
diff --git a/static/icons/06005AA9.png b/static/icons/06005AA9.png
new file mode 100755
index 00000000..c6ff80c3
Binary files /dev/null and b/static/icons/06005AA9.png differ
diff --git a/static/icons/06005AAA.png b/static/icons/06005AAA.png
new file mode 100755
index 00000000..1275323b
Binary files /dev/null and b/static/icons/06005AAA.png differ
diff --git a/static/icons/06005AAB.png b/static/icons/06005AAB.png
new file mode 100755
index 00000000..9b2ed572
Binary files /dev/null and b/static/icons/06005AAB.png differ
diff --git a/static/icons/06005AAC.png b/static/icons/06005AAC.png
new file mode 100755
index 00000000..0e7f97a9
Binary files /dev/null and b/static/icons/06005AAC.png differ
diff --git a/static/icons/06005AAD.png b/static/icons/06005AAD.png
new file mode 100755
index 00000000..d0dc9a66
Binary files /dev/null and b/static/icons/06005AAD.png differ
diff --git a/static/icons/06005AAE.png b/static/icons/06005AAE.png
new file mode 100755
index 00000000..28e98679
Binary files /dev/null and b/static/icons/06005AAE.png differ
diff --git a/static/icons/06005AAF.png b/static/icons/06005AAF.png
new file mode 100755
index 00000000..f05bd479
Binary files /dev/null and b/static/icons/06005AAF.png differ
diff --git a/static/icons/06005AB0.png b/static/icons/06005AB0.png
new file mode 100755
index 00000000..57c1ac69
Binary files /dev/null and b/static/icons/06005AB0.png differ
diff --git a/static/icons/06005AB1.png b/static/icons/06005AB1.png
new file mode 100755
index 00000000..a382bcf1
Binary files /dev/null and b/static/icons/06005AB1.png differ
diff --git a/static/icons/06005AB2.png b/static/icons/06005AB2.png
new file mode 100755
index 00000000..696f39ce
Binary files /dev/null and b/static/icons/06005AB2.png differ
diff --git a/static/icons/06005AE8.png b/static/icons/06005AE8.png
new file mode 100755
index 00000000..77b4f9eb
Binary files /dev/null and b/static/icons/06005AE8.png differ
diff --git a/static/icons/06005AE9.png b/static/icons/06005AE9.png
new file mode 100755
index 00000000..a72f9f6c
Binary files /dev/null and b/static/icons/06005AE9.png differ
diff --git a/static/icons/06005AEA.png b/static/icons/06005AEA.png
new file mode 100755
index 00000000..bef4073a
Binary files /dev/null and b/static/icons/06005AEA.png differ
diff --git a/static/icons/06005AEB.png b/static/icons/06005AEB.png
new file mode 100755
index 00000000..50473def
Binary files /dev/null and b/static/icons/06005AEB.png differ
diff --git a/static/icons/06005AEC.png b/static/icons/06005AEC.png
new file mode 100755
index 00000000..618b4235
Binary files /dev/null and b/static/icons/06005AEC.png differ
diff --git a/static/icons/06005AED.png b/static/icons/06005AED.png
new file mode 100755
index 00000000..a3c1f58b
Binary files /dev/null and b/static/icons/06005AED.png differ
diff --git a/static/icons/06005AEE.png b/static/icons/06005AEE.png
new file mode 100755
index 00000000..25c026d9
Binary files /dev/null and b/static/icons/06005AEE.png differ
diff --git a/static/icons/06005AEF.png b/static/icons/06005AEF.png
new file mode 100755
index 00000000..ec1823a3
Binary files /dev/null and b/static/icons/06005AEF.png differ
diff --git a/static/icons/06005AF0.png b/static/icons/06005AF0.png
new file mode 100755
index 00000000..8dbca040
Binary files /dev/null and b/static/icons/06005AF0.png differ
diff --git a/static/icons/06005AF1.png b/static/icons/06005AF1.png
new file mode 100755
index 00000000..b4b85d6e
Binary files /dev/null and b/static/icons/06005AF1.png differ
diff --git a/static/icons/06005AF2.png b/static/icons/06005AF2.png
new file mode 100755
index 00000000..35b12e5d
Binary files /dev/null and b/static/icons/06005AF2.png differ
diff --git a/static/icons/06005AF3.png b/static/icons/06005AF3.png
new file mode 100755
index 00000000..eedd9e07
Binary files /dev/null and b/static/icons/06005AF3.png differ
diff --git a/static/icons/06005AF4.png b/static/icons/06005AF4.png
new file mode 100755
index 00000000..66ffb538
Binary files /dev/null and b/static/icons/06005AF4.png differ
diff --git a/static/icons/06005AF5.png b/static/icons/06005AF5.png
new file mode 100755
index 00000000..f43ffa5f
Binary files /dev/null and b/static/icons/06005AF5.png differ
diff --git a/static/icons/06005AF6.png b/static/icons/06005AF6.png
new file mode 100755
index 00000000..0f3c0543
Binary files /dev/null and b/static/icons/06005AF6.png differ
diff --git a/static/icons/06005AF7.png b/static/icons/06005AF7.png
new file mode 100755
index 00000000..ecbbddd1
Binary files /dev/null and b/static/icons/06005AF7.png differ
diff --git a/static/icons/06005AF8.png b/static/icons/06005AF8.png
new file mode 100755
index 00000000..82f2a243
Binary files /dev/null and b/static/icons/06005AF8.png differ
diff --git a/static/icons/06005AF9.png b/static/icons/06005AF9.png
new file mode 100755
index 00000000..6c818cdf
Binary files /dev/null and b/static/icons/06005AF9.png differ
diff --git a/static/icons/06005AFA.png b/static/icons/06005AFA.png
new file mode 100755
index 00000000..26cf55de
Binary files /dev/null and b/static/icons/06005AFA.png differ
diff --git a/static/icons/06005AFB.png b/static/icons/06005AFB.png
new file mode 100755
index 00000000..bc670611
Binary files /dev/null and b/static/icons/06005AFB.png differ
diff --git a/static/icons/06005AFC.png b/static/icons/06005AFC.png
new file mode 100755
index 00000000..aa30428b
Binary files /dev/null and b/static/icons/06005AFC.png differ
diff --git a/static/icons/06005AFD.png b/static/icons/06005AFD.png
new file mode 100755
index 00000000..01efdad0
Binary files /dev/null and b/static/icons/06005AFD.png differ
diff --git a/static/icons/06005AFE.png b/static/icons/06005AFE.png
new file mode 100755
index 00000000..56948669
Binary files /dev/null and b/static/icons/06005AFE.png differ
diff --git a/static/icons/06005AFF.png b/static/icons/06005AFF.png
new file mode 100755
index 00000000..66ef2b64
Binary files /dev/null and b/static/icons/06005AFF.png differ
diff --git a/static/icons/06005B00.png b/static/icons/06005B00.png
new file mode 100755
index 00000000..bb56aa4f
Binary files /dev/null and b/static/icons/06005B00.png differ
diff --git a/static/icons/06005B01.png b/static/icons/06005B01.png
new file mode 100755
index 00000000..c0c7ce8b
Binary files /dev/null and b/static/icons/06005B01.png differ
diff --git a/static/icons/06005B02.png b/static/icons/06005B02.png
new file mode 100755
index 00000000..00b36488
Binary files /dev/null and b/static/icons/06005B02.png differ
diff --git a/static/icons/06005B03.png b/static/icons/06005B03.png
new file mode 100755
index 00000000..28497089
Binary files /dev/null and b/static/icons/06005B03.png differ
diff --git a/static/icons/06005B04.png b/static/icons/06005B04.png
new file mode 100755
index 00000000..e113987b
Binary files /dev/null and b/static/icons/06005B04.png differ
diff --git a/static/icons/06005B05.png b/static/icons/06005B05.png
new file mode 100755
index 00000000..2f8c57c4
Binary files /dev/null and b/static/icons/06005B05.png differ
diff --git a/static/icons/06005B06.png b/static/icons/06005B06.png
new file mode 100755
index 00000000..bdcb85fd
Binary files /dev/null and b/static/icons/06005B06.png differ
diff --git a/static/icons/06005B07.png b/static/icons/06005B07.png
new file mode 100755
index 00000000..c539c4dd
Binary files /dev/null and b/static/icons/06005B07.png differ
diff --git a/static/icons/06005B08.png b/static/icons/06005B08.png
new file mode 100755
index 00000000..31470ff2
Binary files /dev/null and b/static/icons/06005B08.png differ
diff --git a/static/icons/06005B09.png b/static/icons/06005B09.png
new file mode 100755
index 00000000..80ebdff0
Binary files /dev/null and b/static/icons/06005B09.png differ
diff --git a/static/icons/06005B0A.png b/static/icons/06005B0A.png
new file mode 100755
index 00000000..bfdad19b
Binary files /dev/null and b/static/icons/06005B0A.png differ
diff --git a/static/icons/06005B0B.png b/static/icons/06005B0B.png
new file mode 100755
index 00000000..9298af75
Binary files /dev/null and b/static/icons/06005B0B.png differ
diff --git a/static/icons/06005B0C.png b/static/icons/06005B0C.png
new file mode 100755
index 00000000..b413dbae
Binary files /dev/null and b/static/icons/06005B0C.png differ
diff --git a/static/icons/06005B0D.png b/static/icons/06005B0D.png
new file mode 100755
index 00000000..c3a5fa3e
Binary files /dev/null and b/static/icons/06005B0D.png differ
diff --git a/static/icons/06005B0E.png b/static/icons/06005B0E.png
new file mode 100755
index 00000000..3bf99ebe
Binary files /dev/null and b/static/icons/06005B0E.png differ
diff --git a/static/icons/06005B0F.png b/static/icons/06005B0F.png
new file mode 100755
index 00000000..a5b00e36
Binary files /dev/null and b/static/icons/06005B0F.png differ
diff --git a/static/icons/06005B10.png b/static/icons/06005B10.png
new file mode 100755
index 00000000..99dcf3d6
Binary files /dev/null and b/static/icons/06005B10.png differ
diff --git a/static/icons/06005B11.png b/static/icons/06005B11.png
new file mode 100755
index 00000000..725cfd43
Binary files /dev/null and b/static/icons/06005B11.png differ
diff --git a/static/icons/06005B12.png b/static/icons/06005B12.png
new file mode 100755
index 00000000..a495e3e2
Binary files /dev/null and b/static/icons/06005B12.png differ
diff --git a/static/icons/06005B13.png b/static/icons/06005B13.png
new file mode 100755
index 00000000..34ca8379
Binary files /dev/null and b/static/icons/06005B13.png differ
diff --git a/static/icons/06005B14.png b/static/icons/06005B14.png
new file mode 100755
index 00000000..401e9790
Binary files /dev/null and b/static/icons/06005B14.png differ
diff --git a/static/icons/06005B15.png b/static/icons/06005B15.png
new file mode 100755
index 00000000..b3bf69b0
Binary files /dev/null and b/static/icons/06005B15.png differ
diff --git a/static/icons/06005B16.png b/static/icons/06005B16.png
new file mode 100755
index 00000000..5417f2ff
Binary files /dev/null and b/static/icons/06005B16.png differ
diff --git a/static/icons/06005B17.png b/static/icons/06005B17.png
new file mode 100755
index 00000000..14281110
Binary files /dev/null and b/static/icons/06005B17.png differ
diff --git a/static/icons/06005B18.png b/static/icons/06005B18.png
new file mode 100755
index 00000000..4b95434e
Binary files /dev/null and b/static/icons/06005B18.png differ
diff --git a/static/icons/06005B19.png b/static/icons/06005B19.png
new file mode 100755
index 00000000..f6cddacd
Binary files /dev/null and b/static/icons/06005B19.png differ
diff --git a/static/icons/06005B1A.png b/static/icons/06005B1A.png
new file mode 100755
index 00000000..782d578b
Binary files /dev/null and b/static/icons/06005B1A.png differ
diff --git a/static/icons/06005B1B.png b/static/icons/06005B1B.png
new file mode 100755
index 00000000..5e94def7
Binary files /dev/null and b/static/icons/06005B1B.png differ
diff --git a/static/icons/06005B1C.png b/static/icons/06005B1C.png
new file mode 100755
index 00000000..aeb75c09
Binary files /dev/null and b/static/icons/06005B1C.png differ
diff --git a/static/icons/06005B1D.png b/static/icons/06005B1D.png
new file mode 100755
index 00000000..0036b41f
Binary files /dev/null and b/static/icons/06005B1D.png differ
diff --git a/static/icons/06005B1E.png b/static/icons/06005B1E.png
new file mode 100755
index 00000000..d36c42cd
Binary files /dev/null and b/static/icons/06005B1E.png differ
diff --git a/static/icons/06005B1F.png b/static/icons/06005B1F.png
new file mode 100755
index 00000000..1d1d324d
Binary files /dev/null and b/static/icons/06005B1F.png differ
diff --git a/static/icons/06005B20.png b/static/icons/06005B20.png
new file mode 100755
index 00000000..28c75648
Binary files /dev/null and b/static/icons/06005B20.png differ
diff --git a/static/icons/06005B21.png b/static/icons/06005B21.png
new file mode 100755
index 00000000..137cd4fb
Binary files /dev/null and b/static/icons/06005B21.png differ
diff --git a/static/icons/06005B22.png b/static/icons/06005B22.png
new file mode 100755
index 00000000..98c0b72d
Binary files /dev/null and b/static/icons/06005B22.png differ
diff --git a/static/icons/06005B23.png b/static/icons/06005B23.png
new file mode 100755
index 00000000..cc1a93c9
Binary files /dev/null and b/static/icons/06005B23.png differ
diff --git a/static/icons/06005B24.png b/static/icons/06005B24.png
new file mode 100755
index 00000000..8df6d490
Binary files /dev/null and b/static/icons/06005B24.png differ
diff --git a/static/icons/06005B25.png b/static/icons/06005B25.png
new file mode 100755
index 00000000..09440e58
Binary files /dev/null and b/static/icons/06005B25.png differ
diff --git a/static/icons/06005B26.png b/static/icons/06005B26.png
new file mode 100755
index 00000000..c8d24cf1
Binary files /dev/null and b/static/icons/06005B26.png differ
diff --git a/static/icons/06005B27.png b/static/icons/06005B27.png
new file mode 100755
index 00000000..ae56f1cd
Binary files /dev/null and b/static/icons/06005B27.png differ
diff --git a/static/icons/06005B28.png b/static/icons/06005B28.png
new file mode 100755
index 00000000..89ecc4d4
Binary files /dev/null and b/static/icons/06005B28.png differ
diff --git a/static/icons/06005B29.png b/static/icons/06005B29.png
new file mode 100755
index 00000000..deb34545
Binary files /dev/null and b/static/icons/06005B29.png differ
diff --git a/static/icons/06005B2A.png b/static/icons/06005B2A.png
new file mode 100755
index 00000000..c3426a39
Binary files /dev/null and b/static/icons/06005B2A.png differ
diff --git a/static/icons/06005B2B.png b/static/icons/06005B2B.png
new file mode 100755
index 00000000..de56a446
Binary files /dev/null and b/static/icons/06005B2B.png differ
diff --git a/static/icons/06005B2C.png b/static/icons/06005B2C.png
new file mode 100755
index 00000000..7e1b73f2
Binary files /dev/null and b/static/icons/06005B2C.png differ
diff --git a/static/icons/06005B2D.png b/static/icons/06005B2D.png
new file mode 100755
index 00000000..6271d609
Binary files /dev/null and b/static/icons/06005B2D.png differ
diff --git a/static/icons/06005B2E.png b/static/icons/06005B2E.png
new file mode 100755
index 00000000..267f8db7
Binary files /dev/null and b/static/icons/06005B2E.png differ
diff --git a/static/icons/06005B2F.png b/static/icons/06005B2F.png
new file mode 100755
index 00000000..7fc731dd
Binary files /dev/null and b/static/icons/06005B2F.png differ
diff --git a/static/icons/06005B30.png b/static/icons/06005B30.png
new file mode 100755
index 00000000..b50b4499
Binary files /dev/null and b/static/icons/06005B30.png differ
diff --git a/static/icons/06005B31.png b/static/icons/06005B31.png
new file mode 100755
index 00000000..4a6c8a9c
Binary files /dev/null and b/static/icons/06005B31.png differ
diff --git a/static/icons/06005B32.png b/static/icons/06005B32.png
new file mode 100755
index 00000000..c4a8a876
Binary files /dev/null and b/static/icons/06005B32.png differ
diff --git a/static/icons/06005B33.png b/static/icons/06005B33.png
new file mode 100755
index 00000000..82792201
Binary files /dev/null and b/static/icons/06005B33.png differ
diff --git a/static/icons/06005B34.png b/static/icons/06005B34.png
new file mode 100755
index 00000000..b0408032
Binary files /dev/null and b/static/icons/06005B34.png differ
diff --git a/static/icons/06005B35.png b/static/icons/06005B35.png
new file mode 100755
index 00000000..01cf4c19
Binary files /dev/null and b/static/icons/06005B35.png differ
diff --git a/static/icons/06005B36.png b/static/icons/06005B36.png
new file mode 100755
index 00000000..18f3af28
Binary files /dev/null and b/static/icons/06005B36.png differ
diff --git a/static/icons/06005B37.png b/static/icons/06005B37.png
new file mode 100755
index 00000000..0574e15f
Binary files /dev/null and b/static/icons/06005B37.png differ
diff --git a/static/icons/06005B38.png b/static/icons/06005B38.png
new file mode 100755
index 00000000..66540f57
Binary files /dev/null and b/static/icons/06005B38.png differ
diff --git a/static/icons/06005B39.png b/static/icons/06005B39.png
new file mode 100755
index 00000000..c8cf0d95
Binary files /dev/null and b/static/icons/06005B39.png differ
diff --git a/static/icons/06005B3A.png b/static/icons/06005B3A.png
new file mode 100755
index 00000000..bfc2f7c5
Binary files /dev/null and b/static/icons/06005B3A.png differ
diff --git a/static/icons/06005B3B.png b/static/icons/06005B3B.png
new file mode 100755
index 00000000..6472e429
Binary files /dev/null and b/static/icons/06005B3B.png differ
diff --git a/static/icons/06005B3C.png b/static/icons/06005B3C.png
new file mode 100755
index 00000000..876970be
Binary files /dev/null and b/static/icons/06005B3C.png differ
diff --git a/static/icons/06005B3D.png b/static/icons/06005B3D.png
new file mode 100755
index 00000000..1968af75
Binary files /dev/null and b/static/icons/06005B3D.png differ
diff --git a/static/icons/06005B3E.png b/static/icons/06005B3E.png
new file mode 100755
index 00000000..edfcc42b
Binary files /dev/null and b/static/icons/06005B3E.png differ
diff --git a/static/icons/06005B3F.png b/static/icons/06005B3F.png
new file mode 100755
index 00000000..c0a563ec
Binary files /dev/null and b/static/icons/06005B3F.png differ
diff --git a/static/icons/06005B40.png b/static/icons/06005B40.png
new file mode 100755
index 00000000..edb74e92
Binary files /dev/null and b/static/icons/06005B40.png differ
diff --git a/static/icons/06005B41.png b/static/icons/06005B41.png
new file mode 100755
index 00000000..b61681b6
Binary files /dev/null and b/static/icons/06005B41.png differ
diff --git a/static/icons/06005B42.png b/static/icons/06005B42.png
new file mode 100755
index 00000000..6ff42d10
Binary files /dev/null and b/static/icons/06005B42.png differ
diff --git a/static/icons/06005B43.png b/static/icons/06005B43.png
new file mode 100755
index 00000000..17240760
Binary files /dev/null and b/static/icons/06005B43.png differ
diff --git a/static/icons/06005B44.png b/static/icons/06005B44.png
new file mode 100755
index 00000000..4e1db816
Binary files /dev/null and b/static/icons/06005B44.png differ
diff --git a/static/icons/06005B45.png b/static/icons/06005B45.png
new file mode 100755
index 00000000..8a17df97
Binary files /dev/null and b/static/icons/06005B45.png differ
diff --git a/static/icons/06005B46.png b/static/icons/06005B46.png
new file mode 100755
index 00000000..67afde35
Binary files /dev/null and b/static/icons/06005B46.png differ
diff --git a/static/icons/06005B47.png b/static/icons/06005B47.png
new file mode 100755
index 00000000..68cd8c17
Binary files /dev/null and b/static/icons/06005B47.png differ
diff --git a/static/icons/06005B48.png b/static/icons/06005B48.png
new file mode 100755
index 00000000..1a8b9dbc
Binary files /dev/null and b/static/icons/06005B48.png differ
diff --git a/static/icons/06005B49.png b/static/icons/06005B49.png
new file mode 100755
index 00000000..3b0defb7
Binary files /dev/null and b/static/icons/06005B49.png differ
diff --git a/static/icons/06005B4A.png b/static/icons/06005B4A.png
new file mode 100755
index 00000000..4416fa44
Binary files /dev/null and b/static/icons/06005B4A.png differ
diff --git a/static/icons/06005B4B.png b/static/icons/06005B4B.png
new file mode 100755
index 00000000..916204e1
Binary files /dev/null and b/static/icons/06005B4B.png differ
diff --git a/static/icons/06005B4C.png b/static/icons/06005B4C.png
new file mode 100755
index 00000000..bc2f4018
Binary files /dev/null and b/static/icons/06005B4C.png differ
diff --git a/static/icons/06005B4D.png b/static/icons/06005B4D.png
new file mode 100755
index 00000000..329a0bf1
Binary files /dev/null and b/static/icons/06005B4D.png differ
diff --git a/static/icons/06005B4E.png b/static/icons/06005B4E.png
new file mode 100755
index 00000000..28a3d246
Binary files /dev/null and b/static/icons/06005B4E.png differ
diff --git a/static/icons/06005B4F.png b/static/icons/06005B4F.png
new file mode 100755
index 00000000..12774d94
Binary files /dev/null and b/static/icons/06005B4F.png differ
diff --git a/static/icons/06005B50.png b/static/icons/06005B50.png
new file mode 100755
index 00000000..07c39ba8
Binary files /dev/null and b/static/icons/06005B50.png differ
diff --git a/static/icons/06005B51.png b/static/icons/06005B51.png
new file mode 100755
index 00000000..1b43b322
Binary files /dev/null and b/static/icons/06005B51.png differ
diff --git a/static/icons/06005B52.png b/static/icons/06005B52.png
new file mode 100755
index 00000000..39198175
Binary files /dev/null and b/static/icons/06005B52.png differ
diff --git a/static/icons/06005B53.png b/static/icons/06005B53.png
new file mode 100755
index 00000000..5a405a12
Binary files /dev/null and b/static/icons/06005B53.png differ
diff --git a/static/icons/06005B54.png b/static/icons/06005B54.png
new file mode 100755
index 00000000..d55f2fca
Binary files /dev/null and b/static/icons/06005B54.png differ
diff --git a/static/icons/06005B55.png b/static/icons/06005B55.png
new file mode 100755
index 00000000..a0dbb597
Binary files /dev/null and b/static/icons/06005B55.png differ
diff --git a/static/icons/06005B56.png b/static/icons/06005B56.png
new file mode 100755
index 00000000..866fafff
Binary files /dev/null and b/static/icons/06005B56.png differ
diff --git a/static/icons/06005B57.png b/static/icons/06005B57.png
new file mode 100755
index 00000000..a03672f9
Binary files /dev/null and b/static/icons/06005B57.png differ
diff --git a/static/icons/06005B58.png b/static/icons/06005B58.png
new file mode 100755
index 00000000..1b792c26
Binary files /dev/null and b/static/icons/06005B58.png differ
diff --git a/static/icons/06005B59.png b/static/icons/06005B59.png
new file mode 100755
index 00000000..c10f48d5
Binary files /dev/null and b/static/icons/06005B59.png differ
diff --git a/static/icons/06005B5A.png b/static/icons/06005B5A.png
new file mode 100755
index 00000000..6cd275d7
Binary files /dev/null and b/static/icons/06005B5A.png differ
diff --git a/static/icons/06005B5B.png b/static/icons/06005B5B.png
new file mode 100755
index 00000000..fa891252
Binary files /dev/null and b/static/icons/06005B5B.png differ
diff --git a/static/icons/06005B5C.png b/static/icons/06005B5C.png
new file mode 100755
index 00000000..9c7264b1
Binary files /dev/null and b/static/icons/06005B5C.png differ
diff --git a/static/icons/06005B5D.png b/static/icons/06005B5D.png
new file mode 100755
index 00000000..fad248ba
Binary files /dev/null and b/static/icons/06005B5D.png differ
diff --git a/static/icons/06005B5E.png b/static/icons/06005B5E.png
new file mode 100755
index 00000000..a2acc53c
Binary files /dev/null and b/static/icons/06005B5E.png differ
diff --git a/static/icons/06005B5F.png b/static/icons/06005B5F.png
new file mode 100755
index 00000000..dfa97bf3
Binary files /dev/null and b/static/icons/06005B5F.png differ
diff --git a/static/icons/06005B60.png b/static/icons/06005B60.png
new file mode 100755
index 00000000..46cddaa3
Binary files /dev/null and b/static/icons/06005B60.png differ
diff --git a/static/icons/06005B61.png b/static/icons/06005B61.png
new file mode 100755
index 00000000..f3c4b10f
Binary files /dev/null and b/static/icons/06005B61.png differ
diff --git a/static/icons/06005B62.png b/static/icons/06005B62.png
new file mode 100755
index 00000000..60b2ffb6
Binary files /dev/null and b/static/icons/06005B62.png differ
diff --git a/static/icons/06005B63.png b/static/icons/06005B63.png
new file mode 100755
index 00000000..c9ffcea8
Binary files /dev/null and b/static/icons/06005B63.png differ
diff --git a/static/icons/06005B64.png b/static/icons/06005B64.png
new file mode 100755
index 00000000..6ad8da11
Binary files /dev/null and b/static/icons/06005B64.png differ
diff --git a/static/icons/06005B65.png b/static/icons/06005B65.png
new file mode 100755
index 00000000..32786919
Binary files /dev/null and b/static/icons/06005B65.png differ
diff --git a/static/icons/06005B66.png b/static/icons/06005B66.png
new file mode 100755
index 00000000..c1e8ab91
Binary files /dev/null and b/static/icons/06005B66.png differ
diff --git a/static/icons/06005B67.png b/static/icons/06005B67.png
new file mode 100755
index 00000000..275fa90c
Binary files /dev/null and b/static/icons/06005B67.png differ
diff --git a/static/icons/06005B68.png b/static/icons/06005B68.png
new file mode 100755
index 00000000..8e38d12d
Binary files /dev/null and b/static/icons/06005B68.png differ
diff --git a/static/icons/06005B69.png b/static/icons/06005B69.png
new file mode 100755
index 00000000..4e23d226
Binary files /dev/null and b/static/icons/06005B69.png differ
diff --git a/static/icons/06005B6A.png b/static/icons/06005B6A.png
new file mode 100755
index 00000000..a125a842
Binary files /dev/null and b/static/icons/06005B6A.png differ
diff --git a/static/icons/06005B6B.png b/static/icons/06005B6B.png
new file mode 100755
index 00000000..60dc4acb
Binary files /dev/null and b/static/icons/06005B6B.png differ
diff --git a/static/icons/06005B6C.png b/static/icons/06005B6C.png
new file mode 100755
index 00000000..77484222
Binary files /dev/null and b/static/icons/06005B6C.png differ
diff --git a/static/icons/06005B6D.png b/static/icons/06005B6D.png
new file mode 100755
index 00000000..239b8383
Binary files /dev/null and b/static/icons/06005B6D.png differ
diff --git a/static/icons/06005B6E.png b/static/icons/06005B6E.png
new file mode 100755
index 00000000..8c7ae4fe
Binary files /dev/null and b/static/icons/06005B6E.png differ
diff --git a/static/icons/06005B6F.png b/static/icons/06005B6F.png
new file mode 100755
index 00000000..df69162d
Binary files /dev/null and b/static/icons/06005B6F.png differ
diff --git a/static/icons/06005B70.png b/static/icons/06005B70.png
new file mode 100755
index 00000000..dea5af4c
Binary files /dev/null and b/static/icons/06005B70.png differ
diff --git a/static/icons/06005B71.png b/static/icons/06005B71.png
new file mode 100755
index 00000000..86cff16d
Binary files /dev/null and b/static/icons/06005B71.png differ
diff --git a/static/icons/06005B72.png b/static/icons/06005B72.png
new file mode 100755
index 00000000..a3e1c4f2
Binary files /dev/null and b/static/icons/06005B72.png differ
diff --git a/static/icons/06005B73.png b/static/icons/06005B73.png
new file mode 100755
index 00000000..9200500f
Binary files /dev/null and b/static/icons/06005B73.png differ
diff --git a/static/icons/06005B74.png b/static/icons/06005B74.png
new file mode 100755
index 00000000..afe22658
Binary files /dev/null and b/static/icons/06005B74.png differ
diff --git a/static/icons/06005B75.png b/static/icons/06005B75.png
new file mode 100755
index 00000000..fdf07302
Binary files /dev/null and b/static/icons/06005B75.png differ
diff --git a/static/icons/06005B76.png b/static/icons/06005B76.png
new file mode 100755
index 00000000..3c91b17a
Binary files /dev/null and b/static/icons/06005B76.png differ
diff --git a/static/icons/06005B7B.png b/static/icons/06005B7B.png
new file mode 100755
index 00000000..66c63360
Binary files /dev/null and b/static/icons/06005B7B.png differ
diff --git a/static/icons/06005B7C.png b/static/icons/06005B7C.png
new file mode 100755
index 00000000..7fd5ccb5
Binary files /dev/null and b/static/icons/06005B7C.png differ
diff --git a/static/icons/06005B7D.png b/static/icons/06005B7D.png
new file mode 100755
index 00000000..c4e97f22
Binary files /dev/null and b/static/icons/06005B7D.png differ
diff --git a/static/icons/06005B7E.png b/static/icons/06005B7E.png
new file mode 100755
index 00000000..2d97303f
Binary files /dev/null and b/static/icons/06005B7E.png differ
diff --git a/static/icons/06005B7F.png b/static/icons/06005B7F.png
new file mode 100755
index 00000000..98a197a6
Binary files /dev/null and b/static/icons/06005B7F.png differ
diff --git a/static/icons/06005B80.png b/static/icons/06005B80.png
new file mode 100755
index 00000000..ad5778d2
Binary files /dev/null and b/static/icons/06005B80.png differ
diff --git a/static/icons/06005B81.png b/static/icons/06005B81.png
new file mode 100755
index 00000000..67721997
Binary files /dev/null and b/static/icons/06005B81.png differ
diff --git a/static/icons/06005B82.png b/static/icons/06005B82.png
new file mode 100755
index 00000000..957e9e4b
Binary files /dev/null and b/static/icons/06005B82.png differ
diff --git a/static/icons/06005B83.png b/static/icons/06005B83.png
new file mode 100755
index 00000000..5d46a87b
Binary files /dev/null and b/static/icons/06005B83.png differ
diff --git a/static/icons/06005B84.png b/static/icons/06005B84.png
new file mode 100755
index 00000000..15208fa3
Binary files /dev/null and b/static/icons/06005B84.png differ
diff --git a/static/icons/06005B85.png b/static/icons/06005B85.png
new file mode 100755
index 00000000..f6c8d47c
Binary files /dev/null and b/static/icons/06005B85.png differ
diff --git a/static/icons/06005B86.png b/static/icons/06005B86.png
new file mode 100755
index 00000000..2bcd288f
Binary files /dev/null and b/static/icons/06005B86.png differ
diff --git a/static/icons/06005B87.png b/static/icons/06005B87.png
new file mode 100755
index 00000000..c93b9d65
Binary files /dev/null and b/static/icons/06005B87.png differ
diff --git a/static/icons/06005B88.png b/static/icons/06005B88.png
new file mode 100755
index 00000000..f6b9bd07
Binary files /dev/null and b/static/icons/06005B88.png differ
diff --git a/static/icons/06005B89.png b/static/icons/06005B89.png
new file mode 100755
index 00000000..44eac737
Binary files /dev/null and b/static/icons/06005B89.png differ
diff --git a/static/icons/06005B8A.png b/static/icons/06005B8A.png
new file mode 100755
index 00000000..52490d7b
Binary files /dev/null and b/static/icons/06005B8A.png differ
diff --git a/static/icons/06005B8B.png b/static/icons/06005B8B.png
new file mode 100755
index 00000000..3e636953
Binary files /dev/null and b/static/icons/06005B8B.png differ
diff --git a/static/icons/06005B8C.png b/static/icons/06005B8C.png
new file mode 100755
index 00000000..3c7dea10
Binary files /dev/null and b/static/icons/06005B8C.png differ
diff --git a/static/icons/06005B8D.png b/static/icons/06005B8D.png
new file mode 100755
index 00000000..d6d37501
Binary files /dev/null and b/static/icons/06005B8D.png differ
diff --git a/static/icons/06005B8E.png b/static/icons/06005B8E.png
new file mode 100755
index 00000000..974d582c
Binary files /dev/null and b/static/icons/06005B8E.png differ
diff --git a/static/icons/06005B8F.png b/static/icons/06005B8F.png
new file mode 100755
index 00000000..de40462d
Binary files /dev/null and b/static/icons/06005B8F.png differ
diff --git a/static/icons/06005B90.png b/static/icons/06005B90.png
new file mode 100755
index 00000000..95ebd7ed
Binary files /dev/null and b/static/icons/06005B90.png differ
diff --git a/static/icons/06005B91.png b/static/icons/06005B91.png
new file mode 100755
index 00000000..3da36b01
Binary files /dev/null and b/static/icons/06005B91.png differ
diff --git a/static/icons/06005B92.png b/static/icons/06005B92.png
new file mode 100755
index 00000000..87545c47
Binary files /dev/null and b/static/icons/06005B92.png differ
diff --git a/static/icons/06005B93.png b/static/icons/06005B93.png
new file mode 100755
index 00000000..a5663e36
Binary files /dev/null and b/static/icons/06005B93.png differ
diff --git a/static/icons/06005B94.png b/static/icons/06005B94.png
new file mode 100755
index 00000000..9d36a5a1
Binary files /dev/null and b/static/icons/06005B94.png differ
diff --git a/static/icons/06005B95.png b/static/icons/06005B95.png
new file mode 100755
index 00000000..0b84f6b9
Binary files /dev/null and b/static/icons/06005B95.png differ
diff --git a/static/icons/06005B96.png b/static/icons/06005B96.png
new file mode 100755
index 00000000..ba525b4f
Binary files /dev/null and b/static/icons/06005B96.png differ
diff --git a/static/icons/06005B97.png b/static/icons/06005B97.png
new file mode 100755
index 00000000..a78b2ec1
Binary files /dev/null and b/static/icons/06005B97.png differ
diff --git a/static/icons/06005B98.png b/static/icons/06005B98.png
new file mode 100755
index 00000000..3f6a4d09
Binary files /dev/null and b/static/icons/06005B98.png differ
diff --git a/static/icons/06005B99.png b/static/icons/06005B99.png
new file mode 100755
index 00000000..7a0a683e
Binary files /dev/null and b/static/icons/06005B99.png differ
diff --git a/static/icons/06005B9A.png b/static/icons/06005B9A.png
new file mode 100755
index 00000000..b43feb81
Binary files /dev/null and b/static/icons/06005B9A.png differ
diff --git a/static/icons/06005B9B.png b/static/icons/06005B9B.png
new file mode 100755
index 00000000..903d891b
Binary files /dev/null and b/static/icons/06005B9B.png differ
diff --git a/static/icons/06005B9C.png b/static/icons/06005B9C.png
new file mode 100755
index 00000000..7a2a7a7c
Binary files /dev/null and b/static/icons/06005B9C.png differ
diff --git a/static/icons/06005B9D.png b/static/icons/06005B9D.png
new file mode 100755
index 00000000..c99313d5
Binary files /dev/null and b/static/icons/06005B9D.png differ
diff --git a/static/icons/06005B9E.png b/static/icons/06005B9E.png
new file mode 100755
index 00000000..6760ae67
Binary files /dev/null and b/static/icons/06005B9E.png differ
diff --git a/static/icons/06005B9F.png b/static/icons/06005B9F.png
new file mode 100755
index 00000000..b0573277
Binary files /dev/null and b/static/icons/06005B9F.png differ
diff --git a/static/icons/06005BA0.png b/static/icons/06005BA0.png
new file mode 100755
index 00000000..48b794e1
Binary files /dev/null and b/static/icons/06005BA0.png differ
diff --git a/static/icons/06005BA1.png b/static/icons/06005BA1.png
new file mode 100755
index 00000000..f17a82e4
Binary files /dev/null and b/static/icons/06005BA1.png differ
diff --git a/static/icons/06005BA2.png b/static/icons/06005BA2.png
new file mode 100755
index 00000000..af4c2b11
Binary files /dev/null and b/static/icons/06005BA2.png differ
diff --git a/static/icons/06005BA3.png b/static/icons/06005BA3.png
new file mode 100755
index 00000000..802a984c
Binary files /dev/null and b/static/icons/06005BA3.png differ
diff --git a/static/icons/06005BA4.png b/static/icons/06005BA4.png
new file mode 100755
index 00000000..b8eb9461
Binary files /dev/null and b/static/icons/06005BA4.png differ
diff --git a/static/icons/06005BA5.png b/static/icons/06005BA5.png
new file mode 100755
index 00000000..00a79084
Binary files /dev/null and b/static/icons/06005BA5.png differ
diff --git a/static/icons/06005BA6.png b/static/icons/06005BA6.png
new file mode 100755
index 00000000..0ed9830f
Binary files /dev/null and b/static/icons/06005BA6.png differ
diff --git a/static/icons/06005BA7.png b/static/icons/06005BA7.png
new file mode 100755
index 00000000..d9cc9a58
Binary files /dev/null and b/static/icons/06005BA7.png differ
diff --git a/static/icons/06005BA8.png b/static/icons/06005BA8.png
new file mode 100755
index 00000000..f1de6c46
Binary files /dev/null and b/static/icons/06005BA8.png differ
diff --git a/static/icons/06005BA9.png b/static/icons/06005BA9.png
new file mode 100755
index 00000000..7c642380
Binary files /dev/null and b/static/icons/06005BA9.png differ
diff --git a/static/icons/06005BAA.png b/static/icons/06005BAA.png
new file mode 100755
index 00000000..e23218c6
Binary files /dev/null and b/static/icons/06005BAA.png differ
diff --git a/static/icons/06005BAB.png b/static/icons/06005BAB.png
new file mode 100755
index 00000000..a7a6a0fe
Binary files /dev/null and b/static/icons/06005BAB.png differ
diff --git a/static/icons/06005BAC.png b/static/icons/06005BAC.png
new file mode 100755
index 00000000..8be55501
Binary files /dev/null and b/static/icons/06005BAC.png differ
diff --git a/static/icons/06005BAD.png b/static/icons/06005BAD.png
new file mode 100755
index 00000000..8c1f4200
Binary files /dev/null and b/static/icons/06005BAD.png differ
diff --git a/static/icons/06005BAE.png b/static/icons/06005BAE.png
new file mode 100755
index 00000000..6d853ba2
Binary files /dev/null and b/static/icons/06005BAE.png differ
diff --git a/static/icons/06005BAF.png b/static/icons/06005BAF.png
new file mode 100755
index 00000000..c5085aec
Binary files /dev/null and b/static/icons/06005BAF.png differ
diff --git a/static/icons/06005BB0.png b/static/icons/06005BB0.png
new file mode 100755
index 00000000..223d2ccb
Binary files /dev/null and b/static/icons/06005BB0.png differ
diff --git a/static/icons/06005BB1.png b/static/icons/06005BB1.png
new file mode 100755
index 00000000..cc68af68
Binary files /dev/null and b/static/icons/06005BB1.png differ
diff --git a/static/icons/06005BB2.png b/static/icons/06005BB2.png
new file mode 100755
index 00000000..7c742575
Binary files /dev/null and b/static/icons/06005BB2.png differ
diff --git a/static/icons/06005BB3.png b/static/icons/06005BB3.png
new file mode 100755
index 00000000..9d3f5bf5
Binary files /dev/null and b/static/icons/06005BB3.png differ
diff --git a/static/icons/06005BB4.png b/static/icons/06005BB4.png
new file mode 100755
index 00000000..c60c2d70
Binary files /dev/null and b/static/icons/06005BB4.png differ
diff --git a/static/icons/06005BB5.png b/static/icons/06005BB5.png
new file mode 100755
index 00000000..d68910a4
Binary files /dev/null and b/static/icons/06005BB5.png differ
diff --git a/static/icons/06005BB6.png b/static/icons/06005BB6.png
new file mode 100755
index 00000000..854768d7
Binary files /dev/null and b/static/icons/06005BB6.png differ
diff --git a/static/icons/06005BB7.png b/static/icons/06005BB7.png
new file mode 100755
index 00000000..0ff0b478
Binary files /dev/null and b/static/icons/06005BB7.png differ
diff --git a/static/icons/06005BB8.png b/static/icons/06005BB8.png
new file mode 100755
index 00000000..7c2fdbd8
Binary files /dev/null and b/static/icons/06005BB8.png differ
diff --git a/static/icons/06005BB9.png b/static/icons/06005BB9.png
new file mode 100755
index 00000000..1aefc94b
Binary files /dev/null and b/static/icons/06005BB9.png differ
diff --git a/static/icons/06005BBA.png b/static/icons/06005BBA.png
new file mode 100755
index 00000000..c0afc2f9
Binary files /dev/null and b/static/icons/06005BBA.png differ
diff --git a/static/icons/06005BBB.png b/static/icons/06005BBB.png
new file mode 100755
index 00000000..5a083f01
Binary files /dev/null and b/static/icons/06005BBB.png differ
diff --git a/static/icons/06005BBC.png b/static/icons/06005BBC.png
new file mode 100755
index 00000000..c3134f4c
Binary files /dev/null and b/static/icons/06005BBC.png differ
diff --git a/static/icons/06005BBD.png b/static/icons/06005BBD.png
new file mode 100755
index 00000000..9d1742d2
Binary files /dev/null and b/static/icons/06005BBD.png differ
diff --git a/static/icons/06005BBE.png b/static/icons/06005BBE.png
new file mode 100755
index 00000000..290f1e94
Binary files /dev/null and b/static/icons/06005BBE.png differ
diff --git a/static/icons/06005BBF.png b/static/icons/06005BBF.png
new file mode 100755
index 00000000..cd459c26
Binary files /dev/null and b/static/icons/06005BBF.png differ
diff --git a/static/icons/06005BC0.png b/static/icons/06005BC0.png
new file mode 100755
index 00000000..0ce7435c
Binary files /dev/null and b/static/icons/06005BC0.png differ
diff --git a/static/icons/06005BC1.png b/static/icons/06005BC1.png
new file mode 100755
index 00000000..f5598264
Binary files /dev/null and b/static/icons/06005BC1.png differ
diff --git a/static/icons/06005BC2.png b/static/icons/06005BC2.png
new file mode 100755
index 00000000..6e94678a
Binary files /dev/null and b/static/icons/06005BC2.png differ
diff --git a/static/icons/06005BC3.png b/static/icons/06005BC3.png
new file mode 100755
index 00000000..c48c5af8
Binary files /dev/null and b/static/icons/06005BC3.png differ
diff --git a/static/icons/06005BC4.png b/static/icons/06005BC4.png
new file mode 100755
index 00000000..2034bb12
Binary files /dev/null and b/static/icons/06005BC4.png differ
diff --git a/static/icons/06005BC5.png b/static/icons/06005BC5.png
new file mode 100755
index 00000000..483ad99a
Binary files /dev/null and b/static/icons/06005BC5.png differ
diff --git a/static/icons/06005BC6.png b/static/icons/06005BC6.png
new file mode 100755
index 00000000..a70207e9
Binary files /dev/null and b/static/icons/06005BC6.png differ
diff --git a/static/icons/06005BC7.png b/static/icons/06005BC7.png
new file mode 100755
index 00000000..f28c8640
Binary files /dev/null and b/static/icons/06005BC7.png differ
diff --git a/static/icons/06005BC8.png b/static/icons/06005BC8.png
new file mode 100755
index 00000000..b7a8b7f0
Binary files /dev/null and b/static/icons/06005BC8.png differ
diff --git a/static/icons/06005BC9.png b/static/icons/06005BC9.png
new file mode 100755
index 00000000..9207b1a0
Binary files /dev/null and b/static/icons/06005BC9.png differ
diff --git a/static/icons/06005BCA.png b/static/icons/06005BCA.png
new file mode 100755
index 00000000..510ac340
Binary files /dev/null and b/static/icons/06005BCA.png differ
diff --git a/static/icons/06005BCB.png b/static/icons/06005BCB.png
new file mode 100755
index 00000000..6f911499
Binary files /dev/null and b/static/icons/06005BCB.png differ
diff --git a/static/icons/06005BCC.png b/static/icons/06005BCC.png
new file mode 100755
index 00000000..810a2844
Binary files /dev/null and b/static/icons/06005BCC.png differ
diff --git a/static/icons/06005BCD.png b/static/icons/06005BCD.png
new file mode 100755
index 00000000..ec895e16
Binary files /dev/null and b/static/icons/06005BCD.png differ
diff --git a/static/icons/06005BCE.png b/static/icons/06005BCE.png
new file mode 100755
index 00000000..3ecc1cd8
Binary files /dev/null and b/static/icons/06005BCE.png differ
diff --git a/static/icons/06005BCF.png b/static/icons/06005BCF.png
new file mode 100755
index 00000000..1bb808aa
Binary files /dev/null and b/static/icons/06005BCF.png differ
diff --git a/static/icons/06005BD0.png b/static/icons/06005BD0.png
new file mode 100755
index 00000000..12d409dc
Binary files /dev/null and b/static/icons/06005BD0.png differ
diff --git a/static/icons/06005BD1.png b/static/icons/06005BD1.png
new file mode 100755
index 00000000..902fbde4
Binary files /dev/null and b/static/icons/06005BD1.png differ
diff --git a/static/icons/06005BD2.png b/static/icons/06005BD2.png
new file mode 100755
index 00000000..9b9bfd85
Binary files /dev/null and b/static/icons/06005BD2.png differ
diff --git a/static/icons/06005BD3.png b/static/icons/06005BD3.png
new file mode 100755
index 00000000..716fa0c9
Binary files /dev/null and b/static/icons/06005BD3.png differ
diff --git a/static/icons/06005BD4.png b/static/icons/06005BD4.png
new file mode 100755
index 00000000..0ac2be4c
Binary files /dev/null and b/static/icons/06005BD4.png differ
diff --git a/static/icons/06005BD5.png b/static/icons/06005BD5.png
new file mode 100755
index 00000000..3d257211
Binary files /dev/null and b/static/icons/06005BD5.png differ
diff --git a/static/icons/06005BD6.png b/static/icons/06005BD6.png
new file mode 100755
index 00000000..759265e0
Binary files /dev/null and b/static/icons/06005BD6.png differ
diff --git a/static/icons/06005BD7.png b/static/icons/06005BD7.png
new file mode 100755
index 00000000..6fed13fd
Binary files /dev/null and b/static/icons/06005BD7.png differ
diff --git a/static/icons/06005BD8.png b/static/icons/06005BD8.png
new file mode 100755
index 00000000..aa1b7871
Binary files /dev/null and b/static/icons/06005BD8.png differ
diff --git a/static/icons/06005BD9.png b/static/icons/06005BD9.png
new file mode 100755
index 00000000..7288adb4
Binary files /dev/null and b/static/icons/06005BD9.png differ
diff --git a/static/icons/06005BDA.png b/static/icons/06005BDA.png
new file mode 100755
index 00000000..37279a50
Binary files /dev/null and b/static/icons/06005BDA.png differ
diff --git a/static/icons/06005BDB.png b/static/icons/06005BDB.png
new file mode 100755
index 00000000..a8ed76d1
Binary files /dev/null and b/static/icons/06005BDB.png differ
diff --git a/static/icons/06005BDC.png b/static/icons/06005BDC.png
new file mode 100755
index 00000000..749efecf
Binary files /dev/null and b/static/icons/06005BDC.png differ
diff --git a/static/icons/06005BDD.png b/static/icons/06005BDD.png
new file mode 100755
index 00000000..dab068f3
Binary files /dev/null and b/static/icons/06005BDD.png differ
diff --git a/static/icons/06005BDE.png b/static/icons/06005BDE.png
new file mode 100755
index 00000000..7942e71e
Binary files /dev/null and b/static/icons/06005BDE.png differ
diff --git a/static/icons/06005BDF.png b/static/icons/06005BDF.png
new file mode 100755
index 00000000..83ded28d
Binary files /dev/null and b/static/icons/06005BDF.png differ
diff --git a/static/icons/06005BE0.png b/static/icons/06005BE0.png
new file mode 100755
index 00000000..17e7016e
Binary files /dev/null and b/static/icons/06005BE0.png differ
diff --git a/static/icons/06005BE1.png b/static/icons/06005BE1.png
new file mode 100755
index 00000000..a4ddb139
Binary files /dev/null and b/static/icons/06005BE1.png differ
diff --git a/static/icons/06005BE2.png b/static/icons/06005BE2.png
new file mode 100755
index 00000000..eaf4650d
Binary files /dev/null and b/static/icons/06005BE2.png differ
diff --git a/static/icons/06005BE3.png b/static/icons/06005BE3.png
new file mode 100755
index 00000000..3001074a
Binary files /dev/null and b/static/icons/06005BE3.png differ
diff --git a/static/icons/06005BE4.png b/static/icons/06005BE4.png
new file mode 100755
index 00000000..372b3339
Binary files /dev/null and b/static/icons/06005BE4.png differ
diff --git a/static/icons/06005BE5.png b/static/icons/06005BE5.png
new file mode 100755
index 00000000..2ca79d4e
Binary files /dev/null and b/static/icons/06005BE5.png differ
diff --git a/static/icons/06005BE6.png b/static/icons/06005BE6.png
new file mode 100755
index 00000000..23c136ac
Binary files /dev/null and b/static/icons/06005BE6.png differ
diff --git a/static/icons/06005BE7.png b/static/icons/06005BE7.png
new file mode 100755
index 00000000..e77e1843
Binary files /dev/null and b/static/icons/06005BE7.png differ
diff --git a/static/icons/06005BE8.png b/static/icons/06005BE8.png
new file mode 100755
index 00000000..05b98c28
Binary files /dev/null and b/static/icons/06005BE8.png differ
diff --git a/static/icons/06005BE9.png b/static/icons/06005BE9.png
new file mode 100755
index 00000000..ff877cc7
Binary files /dev/null and b/static/icons/06005BE9.png differ
diff --git a/static/icons/06005BEA.png b/static/icons/06005BEA.png
new file mode 100755
index 00000000..751bd23e
Binary files /dev/null and b/static/icons/06005BEA.png differ
diff --git a/static/icons/06005BEB.png b/static/icons/06005BEB.png
new file mode 100755
index 00000000..bb2bd04e
Binary files /dev/null and b/static/icons/06005BEB.png differ
diff --git a/static/icons/06005BEC.png b/static/icons/06005BEC.png
new file mode 100755
index 00000000..a4785d17
Binary files /dev/null and b/static/icons/06005BEC.png differ
diff --git a/static/icons/06005BED.png b/static/icons/06005BED.png
new file mode 100755
index 00000000..6178fb67
Binary files /dev/null and b/static/icons/06005BED.png differ
diff --git a/static/icons/06005BEE.png b/static/icons/06005BEE.png
new file mode 100755
index 00000000..2470979f
Binary files /dev/null and b/static/icons/06005BEE.png differ
diff --git a/static/icons/06005BEF.png b/static/icons/06005BEF.png
new file mode 100755
index 00000000..a1be60c8
Binary files /dev/null and b/static/icons/06005BEF.png differ
diff --git a/static/icons/06005BF0.png b/static/icons/06005BF0.png
new file mode 100755
index 00000000..678e1fe2
Binary files /dev/null and b/static/icons/06005BF0.png differ
diff --git a/static/icons/06005BF1.png b/static/icons/06005BF1.png
new file mode 100755
index 00000000..e072059e
Binary files /dev/null and b/static/icons/06005BF1.png differ
diff --git a/static/icons/06005BF2.png b/static/icons/06005BF2.png
new file mode 100755
index 00000000..25b5cde5
Binary files /dev/null and b/static/icons/06005BF2.png differ
diff --git a/static/icons/06005BF3.png b/static/icons/06005BF3.png
new file mode 100755
index 00000000..0505572f
Binary files /dev/null and b/static/icons/06005BF3.png differ
diff --git a/static/icons/06005BF4.png b/static/icons/06005BF4.png
new file mode 100755
index 00000000..24d3c1b2
Binary files /dev/null and b/static/icons/06005BF4.png differ
diff --git a/static/icons/06005BF5.png b/static/icons/06005BF5.png
new file mode 100755
index 00000000..f4fd7f2d
Binary files /dev/null and b/static/icons/06005BF5.png differ
diff --git a/static/icons/06005BF6.png b/static/icons/06005BF6.png
new file mode 100755
index 00000000..7648c72a
Binary files /dev/null and b/static/icons/06005BF6.png differ
diff --git a/static/icons/06005BF7.png b/static/icons/06005BF7.png
new file mode 100755
index 00000000..474fe31c
Binary files /dev/null and b/static/icons/06005BF7.png differ
diff --git a/static/icons/06005BF8.png b/static/icons/06005BF8.png
new file mode 100755
index 00000000..e142ab1f
Binary files /dev/null and b/static/icons/06005BF8.png differ
diff --git a/static/icons/06005BF9.png b/static/icons/06005BF9.png
new file mode 100755
index 00000000..4e52eb55
Binary files /dev/null and b/static/icons/06005BF9.png differ
diff --git a/static/icons/06005BFA.png b/static/icons/06005BFA.png
new file mode 100755
index 00000000..78683771
Binary files /dev/null and b/static/icons/06005BFA.png differ
diff --git a/static/icons/06005BFB.png b/static/icons/06005BFB.png
new file mode 100755
index 00000000..6f29ee82
Binary files /dev/null and b/static/icons/06005BFB.png differ
diff --git a/static/icons/06005BFC.png b/static/icons/06005BFC.png
new file mode 100755
index 00000000..dea9f4be
Binary files /dev/null and b/static/icons/06005BFC.png differ
diff --git a/static/icons/06005BFD.png b/static/icons/06005BFD.png
new file mode 100755
index 00000000..e1987735
Binary files /dev/null and b/static/icons/06005BFD.png differ
diff --git a/static/icons/06005BFE.png b/static/icons/06005BFE.png
new file mode 100755
index 00000000..c7a7c84f
Binary files /dev/null and b/static/icons/06005BFE.png differ
diff --git a/static/icons/06005BFF.png b/static/icons/06005BFF.png
new file mode 100755
index 00000000..fa0a66e9
Binary files /dev/null and b/static/icons/06005BFF.png differ
diff --git a/static/icons/06005C00.png b/static/icons/06005C00.png
new file mode 100755
index 00000000..79365238
Binary files /dev/null and b/static/icons/06005C00.png differ
diff --git a/static/icons/06005C01.png b/static/icons/06005C01.png
new file mode 100755
index 00000000..8b25d9b7
Binary files /dev/null and b/static/icons/06005C01.png differ
diff --git a/static/icons/06005C02.png b/static/icons/06005C02.png
new file mode 100755
index 00000000..f277c5fe
Binary files /dev/null and b/static/icons/06005C02.png differ
diff --git a/static/icons/06005C03.png b/static/icons/06005C03.png
new file mode 100755
index 00000000..8d3af739
Binary files /dev/null and b/static/icons/06005C03.png differ
diff --git a/static/icons/06005C04.png b/static/icons/06005C04.png
new file mode 100755
index 00000000..89d3c796
Binary files /dev/null and b/static/icons/06005C04.png differ
diff --git a/static/icons/06005C05.png b/static/icons/06005C05.png
new file mode 100755
index 00000000..9c44b437
Binary files /dev/null and b/static/icons/06005C05.png differ
diff --git a/static/icons/06005C06.png b/static/icons/06005C06.png
new file mode 100755
index 00000000..3c5d44a6
Binary files /dev/null and b/static/icons/06005C06.png differ
diff --git a/static/icons/06005C07.png b/static/icons/06005C07.png
new file mode 100755
index 00000000..5cc519dc
Binary files /dev/null and b/static/icons/06005C07.png differ
diff --git a/static/icons/06005C08.png b/static/icons/06005C08.png
new file mode 100755
index 00000000..deb5470c
Binary files /dev/null and b/static/icons/06005C08.png differ
diff --git a/static/icons/06005C0C.png b/static/icons/06005C0C.png
new file mode 100755
index 00000000..d9ab54a3
Binary files /dev/null and b/static/icons/06005C0C.png differ
diff --git a/static/icons/06005C0D.png b/static/icons/06005C0D.png
new file mode 100755
index 00000000..70f8396a
Binary files /dev/null and b/static/icons/06005C0D.png differ
diff --git a/static/icons/06005C0E.png b/static/icons/06005C0E.png
new file mode 100755
index 00000000..c3631afb
Binary files /dev/null and b/static/icons/06005C0E.png differ
diff --git a/static/icons/06005C0F.png b/static/icons/06005C0F.png
new file mode 100755
index 00000000..dc2ed3ea
Binary files /dev/null and b/static/icons/06005C0F.png differ
diff --git a/static/icons/06005C10.png b/static/icons/06005C10.png
new file mode 100755
index 00000000..7851d5f9
Binary files /dev/null and b/static/icons/06005C10.png differ
diff --git a/static/icons/06005C11.png b/static/icons/06005C11.png
new file mode 100755
index 00000000..3e858129
Binary files /dev/null and b/static/icons/06005C11.png differ
diff --git a/static/icons/06005C12.png b/static/icons/06005C12.png
new file mode 100755
index 00000000..8ab01c47
Binary files /dev/null and b/static/icons/06005C12.png differ
diff --git a/static/icons/06005C13.png b/static/icons/06005C13.png
new file mode 100755
index 00000000..0abd1f27
Binary files /dev/null and b/static/icons/06005C13.png differ
diff --git a/static/icons/06005C14.png b/static/icons/06005C14.png
new file mode 100755
index 00000000..5cf64dae
Binary files /dev/null and b/static/icons/06005C14.png differ
diff --git a/static/icons/06005C15.png b/static/icons/06005C15.png
new file mode 100755
index 00000000..5298d29e
Binary files /dev/null and b/static/icons/06005C15.png differ
diff --git a/static/icons/06005C16.png b/static/icons/06005C16.png
new file mode 100755
index 00000000..f229c533
Binary files /dev/null and b/static/icons/06005C16.png differ
diff --git a/static/icons/06005C17.png b/static/icons/06005C17.png
new file mode 100755
index 00000000..81139f61
Binary files /dev/null and b/static/icons/06005C17.png differ
diff --git a/static/icons/06005C18.png b/static/icons/06005C18.png
new file mode 100755
index 00000000..bdbf6600
Binary files /dev/null and b/static/icons/06005C18.png differ
diff --git a/static/icons/06005C19.png b/static/icons/06005C19.png
new file mode 100755
index 00000000..1715b6df
Binary files /dev/null and b/static/icons/06005C19.png differ
diff --git a/static/icons/06005C1A.png b/static/icons/06005C1A.png
new file mode 100755
index 00000000..87c97b9e
Binary files /dev/null and b/static/icons/06005C1A.png differ
diff --git a/static/icons/06005C1B.png b/static/icons/06005C1B.png
new file mode 100755
index 00000000..a45dbe5d
Binary files /dev/null and b/static/icons/06005C1B.png differ
diff --git a/static/icons/06005C1C.png b/static/icons/06005C1C.png
new file mode 100755
index 00000000..1839d6df
Binary files /dev/null and b/static/icons/06005C1C.png differ
diff --git a/static/icons/06005C1D.png b/static/icons/06005C1D.png
new file mode 100755
index 00000000..0e20cbb7
Binary files /dev/null and b/static/icons/06005C1D.png differ
diff --git a/static/icons/06005C1E.png b/static/icons/06005C1E.png
new file mode 100755
index 00000000..80a032c6
Binary files /dev/null and b/static/icons/06005C1E.png differ
diff --git a/static/icons/06005C1F.png b/static/icons/06005C1F.png
new file mode 100755
index 00000000..8dc4640a
Binary files /dev/null and b/static/icons/06005C1F.png differ
diff --git a/static/icons/06005C20.png b/static/icons/06005C20.png
new file mode 100755
index 00000000..e634ebdd
Binary files /dev/null and b/static/icons/06005C20.png differ
diff --git a/static/icons/06005C21.png b/static/icons/06005C21.png
new file mode 100755
index 00000000..1e1f6e89
Binary files /dev/null and b/static/icons/06005C21.png differ
diff --git a/static/icons/06005C22.png b/static/icons/06005C22.png
new file mode 100755
index 00000000..12ce9790
Binary files /dev/null and b/static/icons/06005C22.png differ
diff --git a/static/icons/06005C23.png b/static/icons/06005C23.png
new file mode 100755
index 00000000..331fab72
Binary files /dev/null and b/static/icons/06005C23.png differ
diff --git a/static/icons/06005C24.png b/static/icons/06005C24.png
new file mode 100755
index 00000000..6ead6d29
Binary files /dev/null and b/static/icons/06005C24.png differ
diff --git a/static/icons/06005C25.png b/static/icons/06005C25.png
new file mode 100755
index 00000000..bd9e290a
Binary files /dev/null and b/static/icons/06005C25.png differ
diff --git a/static/icons/06005C26.png b/static/icons/06005C26.png
new file mode 100755
index 00000000..559d37c3
Binary files /dev/null and b/static/icons/06005C26.png differ
diff --git a/static/icons/06005C27.png b/static/icons/06005C27.png
new file mode 100755
index 00000000..91860322
Binary files /dev/null and b/static/icons/06005C27.png differ
diff --git a/static/icons/06005C28.png b/static/icons/06005C28.png
new file mode 100755
index 00000000..38e6f2e1
Binary files /dev/null and b/static/icons/06005C28.png differ
diff --git a/static/icons/06005C29.png b/static/icons/06005C29.png
new file mode 100755
index 00000000..1f7cbf0a
Binary files /dev/null and b/static/icons/06005C29.png differ
diff --git a/static/icons/06005C2A.png b/static/icons/06005C2A.png
new file mode 100755
index 00000000..4cf8a72f
Binary files /dev/null and b/static/icons/06005C2A.png differ
diff --git a/static/icons/06005C2B.png b/static/icons/06005C2B.png
new file mode 100755
index 00000000..02b5e133
Binary files /dev/null and b/static/icons/06005C2B.png differ
diff --git a/static/icons/06005C2C.png b/static/icons/06005C2C.png
new file mode 100755
index 00000000..26393951
Binary files /dev/null and b/static/icons/06005C2C.png differ
diff --git a/static/icons/06005C2D.png b/static/icons/06005C2D.png
new file mode 100755
index 00000000..791d50ce
Binary files /dev/null and b/static/icons/06005C2D.png differ
diff --git a/static/icons/06005C2E.png b/static/icons/06005C2E.png
new file mode 100755
index 00000000..fbfb613f
Binary files /dev/null and b/static/icons/06005C2E.png differ
diff --git a/static/icons/06005C2F.png b/static/icons/06005C2F.png
new file mode 100755
index 00000000..d5ba09d1
Binary files /dev/null and b/static/icons/06005C2F.png differ
diff --git a/static/icons/06005C30.png b/static/icons/06005C30.png
new file mode 100755
index 00000000..1496d1f3
Binary files /dev/null and b/static/icons/06005C30.png differ
diff --git a/static/icons/06005C31.png b/static/icons/06005C31.png
new file mode 100755
index 00000000..5fea59ed
Binary files /dev/null and b/static/icons/06005C31.png differ
diff --git a/static/icons/06005C32.png b/static/icons/06005C32.png
new file mode 100755
index 00000000..6a6fde79
Binary files /dev/null and b/static/icons/06005C32.png differ
diff --git a/static/icons/06005C33.png b/static/icons/06005C33.png
new file mode 100755
index 00000000..b97d99d1
Binary files /dev/null and b/static/icons/06005C33.png differ
diff --git a/static/icons/06005C34.png b/static/icons/06005C34.png
new file mode 100755
index 00000000..68883091
Binary files /dev/null and b/static/icons/06005C34.png differ
diff --git a/static/icons/06005C35.png b/static/icons/06005C35.png
new file mode 100755
index 00000000..ea79bc4f
Binary files /dev/null and b/static/icons/06005C35.png differ
diff --git a/static/icons/06005C36.png b/static/icons/06005C36.png
new file mode 100755
index 00000000..7f4d436b
Binary files /dev/null and b/static/icons/06005C36.png differ
diff --git a/static/icons/06005C37.png b/static/icons/06005C37.png
new file mode 100755
index 00000000..07f9be3d
Binary files /dev/null and b/static/icons/06005C37.png differ
diff --git a/static/icons/06005C38.png b/static/icons/06005C38.png
new file mode 100755
index 00000000..0aeebf84
Binary files /dev/null and b/static/icons/06005C38.png differ
diff --git a/static/icons/06005C39.png b/static/icons/06005C39.png
new file mode 100755
index 00000000..0d16b117
Binary files /dev/null and b/static/icons/06005C39.png differ
diff --git a/static/icons/06005C3A.png b/static/icons/06005C3A.png
new file mode 100755
index 00000000..7937f539
Binary files /dev/null and b/static/icons/06005C3A.png differ
diff --git a/static/icons/06005C3B.png b/static/icons/06005C3B.png
new file mode 100755
index 00000000..14e0d532
Binary files /dev/null and b/static/icons/06005C3B.png differ
diff --git a/static/icons/06005C3C.png b/static/icons/06005C3C.png
new file mode 100755
index 00000000..c688a081
Binary files /dev/null and b/static/icons/06005C3C.png differ
diff --git a/static/icons/06005C3D.png b/static/icons/06005C3D.png
new file mode 100755
index 00000000..f80ca0fc
Binary files /dev/null and b/static/icons/06005C3D.png differ
diff --git a/static/icons/06005C3E.png b/static/icons/06005C3E.png
new file mode 100755
index 00000000..a0842e0e
Binary files /dev/null and b/static/icons/06005C3E.png differ
diff --git a/static/icons/06005C3F.png b/static/icons/06005C3F.png
new file mode 100755
index 00000000..6e3a57fd
Binary files /dev/null and b/static/icons/06005C3F.png differ
diff --git a/static/icons/06005C40.png b/static/icons/06005C40.png
new file mode 100755
index 00000000..1141bb3a
Binary files /dev/null and b/static/icons/06005C40.png differ
diff --git a/static/icons/06005C41.png b/static/icons/06005C41.png
new file mode 100755
index 00000000..f16673d0
Binary files /dev/null and b/static/icons/06005C41.png differ
diff --git a/static/icons/06005C42.png b/static/icons/06005C42.png
new file mode 100755
index 00000000..117c0a7c
Binary files /dev/null and b/static/icons/06005C42.png differ
diff --git a/static/icons/06005C43.png b/static/icons/06005C43.png
new file mode 100755
index 00000000..d492f854
Binary files /dev/null and b/static/icons/06005C43.png differ
diff --git a/static/icons/06005C44.png b/static/icons/06005C44.png
new file mode 100755
index 00000000..d73b5d7f
Binary files /dev/null and b/static/icons/06005C44.png differ
diff --git a/static/icons/06005C45.png b/static/icons/06005C45.png
new file mode 100755
index 00000000..7283dcd7
Binary files /dev/null and b/static/icons/06005C45.png differ
diff --git a/static/icons/06005C46.png b/static/icons/06005C46.png
new file mode 100755
index 00000000..1dc6de66
Binary files /dev/null and b/static/icons/06005C46.png differ
diff --git a/static/icons/06005C47.png b/static/icons/06005C47.png
new file mode 100755
index 00000000..9abeb7ba
Binary files /dev/null and b/static/icons/06005C47.png differ
diff --git a/static/icons/06005C48.png b/static/icons/06005C48.png
new file mode 100755
index 00000000..edd2ad47
Binary files /dev/null and b/static/icons/06005C48.png differ
diff --git a/static/icons/06005C49.png b/static/icons/06005C49.png
new file mode 100755
index 00000000..1d44d3bd
Binary files /dev/null and b/static/icons/06005C49.png differ
diff --git a/static/icons/06005C4A.png b/static/icons/06005C4A.png
new file mode 100755
index 00000000..8c2fbd8b
Binary files /dev/null and b/static/icons/06005C4A.png differ
diff --git a/static/icons/06005C4B.png b/static/icons/06005C4B.png
new file mode 100755
index 00000000..7cc4ebb9
Binary files /dev/null and b/static/icons/06005C4B.png differ
diff --git a/static/icons/06005C4C.png b/static/icons/06005C4C.png
new file mode 100755
index 00000000..42bcb24b
Binary files /dev/null and b/static/icons/06005C4C.png differ
diff --git a/static/icons/06005C4D.png b/static/icons/06005C4D.png
new file mode 100755
index 00000000..efa08358
Binary files /dev/null and b/static/icons/06005C4D.png differ
diff --git a/static/icons/06005C4E.png b/static/icons/06005C4E.png
new file mode 100755
index 00000000..d665a767
Binary files /dev/null and b/static/icons/06005C4E.png differ
diff --git a/static/icons/06005C4F.png b/static/icons/06005C4F.png
new file mode 100755
index 00000000..6e1ac9de
Binary files /dev/null and b/static/icons/06005C4F.png differ
diff --git a/static/icons/06005C50.png b/static/icons/06005C50.png
new file mode 100755
index 00000000..9da773bf
Binary files /dev/null and b/static/icons/06005C50.png differ
diff --git a/static/icons/06005C51.png b/static/icons/06005C51.png
new file mode 100755
index 00000000..d3ac07f3
Binary files /dev/null and b/static/icons/06005C51.png differ
diff --git a/static/icons/06005C52.png b/static/icons/06005C52.png
new file mode 100755
index 00000000..b328e282
Binary files /dev/null and b/static/icons/06005C52.png differ
diff --git a/static/icons/06005C53.png b/static/icons/06005C53.png
new file mode 100755
index 00000000..549b5516
Binary files /dev/null and b/static/icons/06005C53.png differ
diff --git a/static/icons/06005C54.png b/static/icons/06005C54.png
new file mode 100755
index 00000000..8b93d200
Binary files /dev/null and b/static/icons/06005C54.png differ
diff --git a/static/icons/06005C55.png b/static/icons/06005C55.png
new file mode 100755
index 00000000..18329ca3
Binary files /dev/null and b/static/icons/06005C55.png differ
diff --git a/static/icons/06005C56.png b/static/icons/06005C56.png
new file mode 100755
index 00000000..fc9684f6
Binary files /dev/null and b/static/icons/06005C56.png differ
diff --git a/static/icons/06005C57.png b/static/icons/06005C57.png
new file mode 100755
index 00000000..96c915a2
Binary files /dev/null and b/static/icons/06005C57.png differ
diff --git a/static/icons/06005C58.png b/static/icons/06005C58.png
new file mode 100755
index 00000000..80205115
Binary files /dev/null and b/static/icons/06005C58.png differ
diff --git a/static/icons/06005C59.png b/static/icons/06005C59.png
new file mode 100755
index 00000000..441d90f5
Binary files /dev/null and b/static/icons/06005C59.png differ
diff --git a/static/icons/06005C5A.png b/static/icons/06005C5A.png
new file mode 100755
index 00000000..c1a8b5e2
Binary files /dev/null and b/static/icons/06005C5A.png differ
diff --git a/static/icons/06005C5B.png b/static/icons/06005C5B.png
new file mode 100755
index 00000000..3ef0ec6d
Binary files /dev/null and b/static/icons/06005C5B.png differ
diff --git a/static/icons/06005C5C.png b/static/icons/06005C5C.png
new file mode 100755
index 00000000..1ea70fea
Binary files /dev/null and b/static/icons/06005C5C.png differ
diff --git a/static/icons/06005C5D.png b/static/icons/06005C5D.png
new file mode 100755
index 00000000..357dec54
Binary files /dev/null and b/static/icons/06005C5D.png differ
diff --git a/static/icons/06005C5E.png b/static/icons/06005C5E.png
new file mode 100755
index 00000000..e3d254a1
Binary files /dev/null and b/static/icons/06005C5E.png differ
diff --git a/static/icons/06005C5F.png b/static/icons/06005C5F.png
new file mode 100755
index 00000000..f46faf9e
Binary files /dev/null and b/static/icons/06005C5F.png differ
diff --git a/static/icons/06005C60.png b/static/icons/06005C60.png
new file mode 100755
index 00000000..3b76f17a
Binary files /dev/null and b/static/icons/06005C60.png differ
diff --git a/static/icons/06005C61.png b/static/icons/06005C61.png
new file mode 100755
index 00000000..e4f3468d
Binary files /dev/null and b/static/icons/06005C61.png differ
diff --git a/static/icons/06005C62.png b/static/icons/06005C62.png
new file mode 100755
index 00000000..92d71419
Binary files /dev/null and b/static/icons/06005C62.png differ
diff --git a/static/icons/06005C63.png b/static/icons/06005C63.png
new file mode 100755
index 00000000..af6a56ae
Binary files /dev/null and b/static/icons/06005C63.png differ
diff --git a/static/icons/06005C64.png b/static/icons/06005C64.png
new file mode 100755
index 00000000..63b7c019
Binary files /dev/null and b/static/icons/06005C64.png differ
diff --git a/static/icons/06005C65.png b/static/icons/06005C65.png
new file mode 100755
index 00000000..f83938c6
Binary files /dev/null and b/static/icons/06005C65.png differ
diff --git a/static/icons/06005C66.png b/static/icons/06005C66.png
new file mode 100755
index 00000000..2d2e3b64
Binary files /dev/null and b/static/icons/06005C66.png differ
diff --git a/static/icons/06005C67.png b/static/icons/06005C67.png
new file mode 100755
index 00000000..ea30b97e
Binary files /dev/null and b/static/icons/06005C67.png differ
diff --git a/static/icons/06005C68.png b/static/icons/06005C68.png
new file mode 100755
index 00000000..457a755c
Binary files /dev/null and b/static/icons/06005C68.png differ
diff --git a/static/icons/06005C69.png b/static/icons/06005C69.png
new file mode 100755
index 00000000..949980f2
Binary files /dev/null and b/static/icons/06005C69.png differ
diff --git a/static/icons/06005C6A.png b/static/icons/06005C6A.png
new file mode 100755
index 00000000..a62e3a7b
Binary files /dev/null and b/static/icons/06005C6A.png differ
diff --git a/static/icons/06005C6B.png b/static/icons/06005C6B.png
new file mode 100755
index 00000000..069dfbe1
Binary files /dev/null and b/static/icons/06005C6B.png differ
diff --git a/static/icons/06005C6C.png b/static/icons/06005C6C.png
new file mode 100755
index 00000000..aadcc87f
Binary files /dev/null and b/static/icons/06005C6C.png differ
diff --git a/static/icons/06005C6D.png b/static/icons/06005C6D.png
new file mode 100755
index 00000000..8727924e
Binary files /dev/null and b/static/icons/06005C6D.png differ
diff --git a/static/icons/06005C6E.png b/static/icons/06005C6E.png
new file mode 100755
index 00000000..47c247b9
Binary files /dev/null and b/static/icons/06005C6E.png differ
diff --git a/static/icons/06005C6F.png b/static/icons/06005C6F.png
new file mode 100755
index 00000000..4875957c
Binary files /dev/null and b/static/icons/06005C6F.png differ
diff --git a/static/icons/06005C70.png b/static/icons/06005C70.png
new file mode 100755
index 00000000..33d98bcf
Binary files /dev/null and b/static/icons/06005C70.png differ
diff --git a/static/icons/06005C71.png b/static/icons/06005C71.png
new file mode 100755
index 00000000..9d27135b
Binary files /dev/null and b/static/icons/06005C71.png differ
diff --git a/static/icons/06005C72.png b/static/icons/06005C72.png
new file mode 100755
index 00000000..9fa49999
Binary files /dev/null and b/static/icons/06005C72.png differ
diff --git a/static/icons/06005C73.png b/static/icons/06005C73.png
new file mode 100755
index 00000000..0c959c5c
Binary files /dev/null and b/static/icons/06005C73.png differ
diff --git a/static/icons/06005C74.png b/static/icons/06005C74.png
new file mode 100755
index 00000000..ad706b50
Binary files /dev/null and b/static/icons/06005C74.png differ
diff --git a/static/icons/06005C75.png b/static/icons/06005C75.png
new file mode 100755
index 00000000..06eb55d9
Binary files /dev/null and b/static/icons/06005C75.png differ
diff --git a/static/icons/06005C76.png b/static/icons/06005C76.png
new file mode 100755
index 00000000..4d938d2a
Binary files /dev/null and b/static/icons/06005C76.png differ
diff --git a/static/icons/06005C77.png b/static/icons/06005C77.png
new file mode 100755
index 00000000..5c8a11a6
Binary files /dev/null and b/static/icons/06005C77.png differ
diff --git a/static/icons/06005C78.png b/static/icons/06005C78.png
new file mode 100755
index 00000000..76068fba
Binary files /dev/null and b/static/icons/06005C78.png differ
diff --git a/static/icons/06005C79.png b/static/icons/06005C79.png
new file mode 100755
index 00000000..ff3eb253
Binary files /dev/null and b/static/icons/06005C79.png differ
diff --git a/static/icons/06005C7A.png b/static/icons/06005C7A.png
new file mode 100755
index 00000000..fb1652a3
Binary files /dev/null and b/static/icons/06005C7A.png differ
diff --git a/static/icons/06005C7B.png b/static/icons/06005C7B.png
new file mode 100755
index 00000000..530ff0d7
Binary files /dev/null and b/static/icons/06005C7B.png differ
diff --git a/static/icons/06005C7C.png b/static/icons/06005C7C.png
new file mode 100755
index 00000000..a2bdaa0e
Binary files /dev/null and b/static/icons/06005C7C.png differ
diff --git a/static/icons/06005C7D.png b/static/icons/06005C7D.png
new file mode 100755
index 00000000..6f37cc12
Binary files /dev/null and b/static/icons/06005C7D.png differ
diff --git a/static/icons/06005C7E.png b/static/icons/06005C7E.png
new file mode 100755
index 00000000..b1a83e6d
Binary files /dev/null and b/static/icons/06005C7E.png differ
diff --git a/static/icons/06005C7F.png b/static/icons/06005C7F.png
new file mode 100755
index 00000000..128c52be
Binary files /dev/null and b/static/icons/06005C7F.png differ
diff --git a/static/icons/06005C80.png b/static/icons/06005C80.png
new file mode 100755
index 00000000..7e0dc2b9
Binary files /dev/null and b/static/icons/06005C80.png differ
diff --git a/static/icons/06005C81.png b/static/icons/06005C81.png
new file mode 100755
index 00000000..74360005
Binary files /dev/null and b/static/icons/06005C81.png differ
diff --git a/static/icons/06005C82.png b/static/icons/06005C82.png
new file mode 100755
index 00000000..abe8833c
Binary files /dev/null and b/static/icons/06005C82.png differ
diff --git a/static/icons/06005C83.png b/static/icons/06005C83.png
new file mode 100755
index 00000000..d63ac4a5
Binary files /dev/null and b/static/icons/06005C83.png differ
diff --git a/static/icons/06005C84.png b/static/icons/06005C84.png
new file mode 100755
index 00000000..9b209137
Binary files /dev/null and b/static/icons/06005C84.png differ
diff --git a/static/icons/06005C85.png b/static/icons/06005C85.png
new file mode 100755
index 00000000..32c262ca
Binary files /dev/null and b/static/icons/06005C85.png differ
diff --git a/static/icons/06005C86.png b/static/icons/06005C86.png
new file mode 100755
index 00000000..7d437882
Binary files /dev/null and b/static/icons/06005C86.png differ
diff --git a/static/icons/06005C87.png b/static/icons/06005C87.png
new file mode 100755
index 00000000..0bd883c5
Binary files /dev/null and b/static/icons/06005C87.png differ
diff --git a/static/icons/06005C88.png b/static/icons/06005C88.png
new file mode 100755
index 00000000..faa42a28
Binary files /dev/null and b/static/icons/06005C88.png differ
diff --git a/static/icons/06005C89.png b/static/icons/06005C89.png
new file mode 100755
index 00000000..3f203e46
Binary files /dev/null and b/static/icons/06005C89.png differ
diff --git a/static/icons/06005C8A.png b/static/icons/06005C8A.png
new file mode 100755
index 00000000..583e3f64
Binary files /dev/null and b/static/icons/06005C8A.png differ
diff --git a/static/icons/06005C8B.png b/static/icons/06005C8B.png
new file mode 100755
index 00000000..a28848ea
Binary files /dev/null and b/static/icons/06005C8B.png differ
diff --git a/static/icons/06005C8C.png b/static/icons/06005C8C.png
new file mode 100755
index 00000000..848d87e6
Binary files /dev/null and b/static/icons/06005C8C.png differ
diff --git a/static/icons/06005C8D.png b/static/icons/06005C8D.png
new file mode 100755
index 00000000..c9063ec1
Binary files /dev/null and b/static/icons/06005C8D.png differ
diff --git a/static/icons/06005C8E.png b/static/icons/06005C8E.png
new file mode 100755
index 00000000..fdb47926
Binary files /dev/null and b/static/icons/06005C8E.png differ
diff --git a/static/icons/06005C8F.png b/static/icons/06005C8F.png
new file mode 100755
index 00000000..ecdbdf58
Binary files /dev/null and b/static/icons/06005C8F.png differ
diff --git a/static/icons/06005C90.png b/static/icons/06005C90.png
new file mode 100755
index 00000000..98783d27
Binary files /dev/null and b/static/icons/06005C90.png differ
diff --git a/static/icons/06005C91.png b/static/icons/06005C91.png
new file mode 100755
index 00000000..3977fc0b
Binary files /dev/null and b/static/icons/06005C91.png differ
diff --git a/static/icons/06005C92.png b/static/icons/06005C92.png
new file mode 100755
index 00000000..7f259f12
Binary files /dev/null and b/static/icons/06005C92.png differ
diff --git a/static/icons/06005C93.png b/static/icons/06005C93.png
new file mode 100755
index 00000000..3ed8ec21
Binary files /dev/null and b/static/icons/06005C93.png differ
diff --git a/static/icons/06005C94.png b/static/icons/06005C94.png
new file mode 100755
index 00000000..ed00d55a
Binary files /dev/null and b/static/icons/06005C94.png differ
diff --git a/static/icons/06005C95.png b/static/icons/06005C95.png
new file mode 100755
index 00000000..fbe7eea7
Binary files /dev/null and b/static/icons/06005C95.png differ
diff --git a/static/icons/06005C96.png b/static/icons/06005C96.png
new file mode 100755
index 00000000..3cbc4f75
Binary files /dev/null and b/static/icons/06005C96.png differ
diff --git a/static/icons/06005C97.png b/static/icons/06005C97.png
new file mode 100755
index 00000000..f41d24eb
Binary files /dev/null and b/static/icons/06005C97.png differ
diff --git a/static/icons/06005C98.png b/static/icons/06005C98.png
new file mode 100755
index 00000000..8eae3077
Binary files /dev/null and b/static/icons/06005C98.png differ
diff --git a/static/icons/06005C99.png b/static/icons/06005C99.png
new file mode 100755
index 00000000..f3edadbf
Binary files /dev/null and b/static/icons/06005C99.png differ
diff --git a/static/icons/06005C9A.png b/static/icons/06005C9A.png
new file mode 100755
index 00000000..414a3737
Binary files /dev/null and b/static/icons/06005C9A.png differ
diff --git a/static/icons/06005C9B.png b/static/icons/06005C9B.png
new file mode 100755
index 00000000..5e41f31e
Binary files /dev/null and b/static/icons/06005C9B.png differ
diff --git a/static/icons/06005C9D.png b/static/icons/06005C9D.png
new file mode 100755
index 00000000..ad1fb0c9
Binary files /dev/null and b/static/icons/06005C9D.png differ
diff --git a/static/icons/06005C9E.png b/static/icons/06005C9E.png
new file mode 100755
index 00000000..1d46b4f9
Binary files /dev/null and b/static/icons/06005C9E.png differ
diff --git a/static/icons/06005C9F.png b/static/icons/06005C9F.png
new file mode 100755
index 00000000..50c18ceb
Binary files /dev/null and b/static/icons/06005C9F.png differ
diff --git a/static/icons/06005CA0.png b/static/icons/06005CA0.png
new file mode 100755
index 00000000..55d22800
Binary files /dev/null and b/static/icons/06005CA0.png differ
diff --git a/static/icons/06005CA1.png b/static/icons/06005CA1.png
new file mode 100755
index 00000000..e89406c6
Binary files /dev/null and b/static/icons/06005CA1.png differ
diff --git a/static/icons/06005CA2.png b/static/icons/06005CA2.png
new file mode 100755
index 00000000..1bda532b
Binary files /dev/null and b/static/icons/06005CA2.png differ
diff --git a/static/icons/06005CA3.png b/static/icons/06005CA3.png
new file mode 100755
index 00000000..19725625
Binary files /dev/null and b/static/icons/06005CA3.png differ
diff --git a/static/icons/06005CA4.png b/static/icons/06005CA4.png
new file mode 100755
index 00000000..860aab20
Binary files /dev/null and b/static/icons/06005CA4.png differ
diff --git a/static/icons/06005CA5.png b/static/icons/06005CA5.png
new file mode 100755
index 00000000..4453fde5
Binary files /dev/null and b/static/icons/06005CA5.png differ
diff --git a/static/icons/06005CA6.png b/static/icons/06005CA6.png
new file mode 100755
index 00000000..0442d407
Binary files /dev/null and b/static/icons/06005CA6.png differ
diff --git a/static/icons/06005CA8.png b/static/icons/06005CA8.png
new file mode 100755
index 00000000..15ad35b0
Binary files /dev/null and b/static/icons/06005CA8.png differ
diff --git a/static/icons/06005CA9.png b/static/icons/06005CA9.png
new file mode 100755
index 00000000..63239c0a
Binary files /dev/null and b/static/icons/06005CA9.png differ
diff --git a/static/icons/06005CAA.png b/static/icons/06005CAA.png
new file mode 100755
index 00000000..7addda80
Binary files /dev/null and b/static/icons/06005CAA.png differ
diff --git a/static/icons/06005CAB.png b/static/icons/06005CAB.png
new file mode 100755
index 00000000..2b9c0da2
Binary files /dev/null and b/static/icons/06005CAB.png differ
diff --git a/static/icons/06005CAC.png b/static/icons/06005CAC.png
new file mode 100755
index 00000000..8cc00f59
Binary files /dev/null and b/static/icons/06005CAC.png differ
diff --git a/static/icons/06005CAD.png b/static/icons/06005CAD.png
new file mode 100755
index 00000000..cd4e8607
Binary files /dev/null and b/static/icons/06005CAD.png differ
diff --git a/static/icons/06005CAE.png b/static/icons/06005CAE.png
new file mode 100755
index 00000000..2739b21c
Binary files /dev/null and b/static/icons/06005CAE.png differ
diff --git a/static/icons/06005CAF.png b/static/icons/06005CAF.png
new file mode 100755
index 00000000..97054d98
Binary files /dev/null and b/static/icons/06005CAF.png differ
diff --git a/static/icons/06005CB0.png b/static/icons/06005CB0.png
new file mode 100755
index 00000000..54b4df8f
Binary files /dev/null and b/static/icons/06005CB0.png differ
diff --git a/static/icons/06005CB1.png b/static/icons/06005CB1.png
new file mode 100755
index 00000000..28bbc0e3
Binary files /dev/null and b/static/icons/06005CB1.png differ
diff --git a/static/icons/06005CB2.png b/static/icons/06005CB2.png
new file mode 100755
index 00000000..9ab7641c
Binary files /dev/null and b/static/icons/06005CB2.png differ
diff --git a/static/icons/06005CB3.png b/static/icons/06005CB3.png
new file mode 100755
index 00000000..5143cba3
Binary files /dev/null and b/static/icons/06005CB3.png differ
diff --git a/static/icons/06005CB4.png b/static/icons/06005CB4.png
new file mode 100755
index 00000000..ef8c8ede
Binary files /dev/null and b/static/icons/06005CB4.png differ
diff --git a/static/icons/06005CB5.png b/static/icons/06005CB5.png
new file mode 100755
index 00000000..2128d3f6
Binary files /dev/null and b/static/icons/06005CB5.png differ
diff --git a/static/icons/06005CB6.png b/static/icons/06005CB6.png
new file mode 100755
index 00000000..f289ad1f
Binary files /dev/null and b/static/icons/06005CB6.png differ
diff --git a/static/icons/06005CB7.png b/static/icons/06005CB7.png
new file mode 100755
index 00000000..b29c1d63
Binary files /dev/null and b/static/icons/06005CB7.png differ
diff --git a/static/icons/06005CB8.png b/static/icons/06005CB8.png
new file mode 100755
index 00000000..19dc7c03
Binary files /dev/null and b/static/icons/06005CB8.png differ
diff --git a/static/icons/06005CB9.png b/static/icons/06005CB9.png
new file mode 100755
index 00000000..e738da63
Binary files /dev/null and b/static/icons/06005CB9.png differ
diff --git a/static/icons/06005CBA.png b/static/icons/06005CBA.png
new file mode 100755
index 00000000..023db057
Binary files /dev/null and b/static/icons/06005CBA.png differ
diff --git a/static/icons/06005CBB.png b/static/icons/06005CBB.png
new file mode 100755
index 00000000..335f1134
Binary files /dev/null and b/static/icons/06005CBB.png differ
diff --git a/static/icons/06005CBC.png b/static/icons/06005CBC.png
new file mode 100755
index 00000000..5f4b9e48
Binary files /dev/null and b/static/icons/06005CBC.png differ
diff --git a/static/icons/06005CBD.png b/static/icons/06005CBD.png
new file mode 100755
index 00000000..bdc930d4
Binary files /dev/null and b/static/icons/06005CBD.png differ
diff --git a/static/icons/06005CBE.png b/static/icons/06005CBE.png
new file mode 100755
index 00000000..1ea71df6
Binary files /dev/null and b/static/icons/06005CBE.png differ
diff --git a/static/icons/06005CBF.png b/static/icons/06005CBF.png
new file mode 100755
index 00000000..5e000e95
Binary files /dev/null and b/static/icons/06005CBF.png differ
diff --git a/static/icons/06005CC0.png b/static/icons/06005CC0.png
new file mode 100755
index 00000000..fca21dd6
Binary files /dev/null and b/static/icons/06005CC0.png differ
diff --git a/static/icons/06005CC1.png b/static/icons/06005CC1.png
new file mode 100755
index 00000000..c18a6b82
Binary files /dev/null and b/static/icons/06005CC1.png differ
diff --git a/static/icons/06005CC2.png b/static/icons/06005CC2.png
new file mode 100755
index 00000000..893bac15
Binary files /dev/null and b/static/icons/06005CC2.png differ
diff --git a/static/icons/06005CC3.png b/static/icons/06005CC3.png
new file mode 100755
index 00000000..4c1b26a6
Binary files /dev/null and b/static/icons/06005CC3.png differ
diff --git a/static/icons/06005CC4.png b/static/icons/06005CC4.png
new file mode 100755
index 00000000..8ff825da
Binary files /dev/null and b/static/icons/06005CC4.png differ
diff --git a/static/icons/06005CC5.png b/static/icons/06005CC5.png
new file mode 100755
index 00000000..092f9c6c
Binary files /dev/null and b/static/icons/06005CC5.png differ
diff --git a/static/icons/06005CC6.png b/static/icons/06005CC6.png
new file mode 100755
index 00000000..ca5582fc
Binary files /dev/null and b/static/icons/06005CC6.png differ
diff --git a/static/icons/06005CC7.png b/static/icons/06005CC7.png
new file mode 100755
index 00000000..ce55c0f2
Binary files /dev/null and b/static/icons/06005CC7.png differ
diff --git a/static/icons/06005CC8.png b/static/icons/06005CC8.png
new file mode 100755
index 00000000..70d19bf0
Binary files /dev/null and b/static/icons/06005CC8.png differ
diff --git a/static/icons/06005CC9.png b/static/icons/06005CC9.png
new file mode 100755
index 00000000..12dbf210
Binary files /dev/null and b/static/icons/06005CC9.png differ
diff --git a/static/icons/06005CCA.png b/static/icons/06005CCA.png
new file mode 100755
index 00000000..ea5f4d37
Binary files /dev/null and b/static/icons/06005CCA.png differ
diff --git a/static/icons/06005CCB.png b/static/icons/06005CCB.png
new file mode 100755
index 00000000..495c46f1
Binary files /dev/null and b/static/icons/06005CCB.png differ
diff --git a/static/icons/06005CCC.png b/static/icons/06005CCC.png
new file mode 100755
index 00000000..b63aaaa7
Binary files /dev/null and b/static/icons/06005CCC.png differ
diff --git a/static/icons/06005CCD.png b/static/icons/06005CCD.png
new file mode 100755
index 00000000..bbce7092
Binary files /dev/null and b/static/icons/06005CCD.png differ
diff --git a/static/icons/06005CCE.png b/static/icons/06005CCE.png
new file mode 100755
index 00000000..df6aee23
Binary files /dev/null and b/static/icons/06005CCE.png differ
diff --git a/static/icons/06005CCF.png b/static/icons/06005CCF.png
new file mode 100755
index 00000000..1ae0100e
Binary files /dev/null and b/static/icons/06005CCF.png differ
diff --git a/static/icons/06005CE5.png b/static/icons/06005CE5.png
new file mode 100755
index 00000000..e2487cfc
Binary files /dev/null and b/static/icons/06005CE5.png differ
diff --git a/static/icons/06005CE6.png b/static/icons/06005CE6.png
new file mode 100755
index 00000000..5e164612
Binary files /dev/null and b/static/icons/06005CE6.png differ
diff --git a/static/icons/06005CE8.png b/static/icons/06005CE8.png
new file mode 100755
index 00000000..d52ef06d
Binary files /dev/null and b/static/icons/06005CE8.png differ
diff --git a/static/icons/06005CE9.png b/static/icons/06005CE9.png
new file mode 100755
index 00000000..38c753b0
Binary files /dev/null and b/static/icons/06005CE9.png differ
diff --git a/static/icons/06005CEA.png b/static/icons/06005CEA.png
new file mode 100755
index 00000000..3f03971a
Binary files /dev/null and b/static/icons/06005CEA.png differ
diff --git a/static/icons/06005CEB.png b/static/icons/06005CEB.png
new file mode 100755
index 00000000..30be73fb
Binary files /dev/null and b/static/icons/06005CEB.png differ
diff --git a/static/icons/06005CEC.png b/static/icons/06005CEC.png
new file mode 100755
index 00000000..3942593d
Binary files /dev/null and b/static/icons/06005CEC.png differ
diff --git a/static/icons/06005CED.png b/static/icons/06005CED.png
new file mode 100755
index 00000000..03645477
Binary files /dev/null and b/static/icons/06005CED.png differ
diff --git a/static/icons/06005CEE.png b/static/icons/06005CEE.png
new file mode 100755
index 00000000..eccd8749
Binary files /dev/null and b/static/icons/06005CEE.png differ
diff --git a/static/icons/06005CEF.png b/static/icons/06005CEF.png
new file mode 100755
index 00000000..676411c7
Binary files /dev/null and b/static/icons/06005CEF.png differ
diff --git a/static/icons/06005CF0.png b/static/icons/06005CF0.png
new file mode 100755
index 00000000..5257ec4a
Binary files /dev/null and b/static/icons/06005CF0.png differ
diff --git a/static/icons/06005CF1.png b/static/icons/06005CF1.png
new file mode 100755
index 00000000..7deb5a37
Binary files /dev/null and b/static/icons/06005CF1.png differ
diff --git a/static/icons/06005D14.png b/static/icons/06005D14.png
new file mode 100755
index 00000000..d66f28d5
Binary files /dev/null and b/static/icons/06005D14.png differ
diff --git a/static/icons/06005D15.png b/static/icons/06005D15.png
new file mode 100755
index 00000000..6be810d9
Binary files /dev/null and b/static/icons/06005D15.png differ
diff --git a/static/icons/06005D16.png b/static/icons/06005D16.png
new file mode 100755
index 00000000..577bc672
Binary files /dev/null and b/static/icons/06005D16.png differ
diff --git a/static/icons/06005D17.png b/static/icons/06005D17.png
new file mode 100755
index 00000000..842f69f8
Binary files /dev/null and b/static/icons/06005D17.png differ
diff --git a/static/icons/06005D18.png b/static/icons/06005D18.png
new file mode 100755
index 00000000..1cdd72a7
Binary files /dev/null and b/static/icons/06005D18.png differ
diff --git a/static/icons/06005D19.png b/static/icons/06005D19.png
new file mode 100755
index 00000000..798a4a84
Binary files /dev/null and b/static/icons/06005D19.png differ
diff --git a/static/icons/06005D1A.png b/static/icons/06005D1A.png
new file mode 100755
index 00000000..64b03974
Binary files /dev/null and b/static/icons/06005D1A.png differ
diff --git a/static/icons/06005D1B.png b/static/icons/06005D1B.png
new file mode 100755
index 00000000..ec1b2bf2
Binary files /dev/null and b/static/icons/06005D1B.png differ
diff --git a/static/icons/06005D1C.png b/static/icons/06005D1C.png
new file mode 100755
index 00000000..c7b2cd66
Binary files /dev/null and b/static/icons/06005D1C.png differ
diff --git a/static/icons/06005D1D.png b/static/icons/06005D1D.png
new file mode 100755
index 00000000..80562d33
Binary files /dev/null and b/static/icons/06005D1D.png differ
diff --git a/static/icons/06005D1E.png b/static/icons/06005D1E.png
new file mode 100755
index 00000000..5abdba07
Binary files /dev/null and b/static/icons/06005D1E.png differ
diff --git a/static/icons/06005D1F.png b/static/icons/06005D1F.png
new file mode 100755
index 00000000..b451ef17
Binary files /dev/null and b/static/icons/06005D1F.png differ
diff --git a/static/icons/06005D20.png b/static/icons/06005D20.png
new file mode 100755
index 00000000..cae95910
Binary files /dev/null and b/static/icons/06005D20.png differ
diff --git a/static/icons/06005D21.png b/static/icons/06005D21.png
new file mode 100755
index 00000000..7575f62b
Binary files /dev/null and b/static/icons/06005D21.png differ
diff --git a/static/icons/06005D22.png b/static/icons/06005D22.png
new file mode 100755
index 00000000..4388fc8f
Binary files /dev/null and b/static/icons/06005D22.png differ
diff --git a/static/icons/06005D23.png b/static/icons/06005D23.png
new file mode 100755
index 00000000..e8bae1e9
Binary files /dev/null and b/static/icons/06005D23.png differ
diff --git a/static/icons/06005D24.png b/static/icons/06005D24.png
new file mode 100755
index 00000000..c0810f12
Binary files /dev/null and b/static/icons/06005D24.png differ
diff --git a/static/icons/06005D25.png b/static/icons/06005D25.png
new file mode 100755
index 00000000..fce8522c
Binary files /dev/null and b/static/icons/06005D25.png differ
diff --git a/static/icons/06005D26.png b/static/icons/06005D26.png
new file mode 100755
index 00000000..ee688d5f
Binary files /dev/null and b/static/icons/06005D26.png differ
diff --git a/static/icons/06005D27.png b/static/icons/06005D27.png
new file mode 100755
index 00000000..c99d0a14
Binary files /dev/null and b/static/icons/06005D27.png differ
diff --git a/static/icons/06005D28.png b/static/icons/06005D28.png
new file mode 100755
index 00000000..4952d504
Binary files /dev/null and b/static/icons/06005D28.png differ
diff --git a/static/icons/06005D29.png b/static/icons/06005D29.png
new file mode 100755
index 00000000..4bfdea18
Binary files /dev/null and b/static/icons/06005D29.png differ
diff --git a/static/icons/06005D2A.png b/static/icons/06005D2A.png
new file mode 100755
index 00000000..cf3df560
Binary files /dev/null and b/static/icons/06005D2A.png differ
diff --git a/static/icons/06005D2B.png b/static/icons/06005D2B.png
new file mode 100755
index 00000000..99b66d9b
Binary files /dev/null and b/static/icons/06005D2B.png differ
diff --git a/static/icons/06005D2C.png b/static/icons/06005D2C.png
new file mode 100755
index 00000000..fbeeb6e6
Binary files /dev/null and b/static/icons/06005D2C.png differ
diff --git a/static/icons/06005D2D.png b/static/icons/06005D2D.png
new file mode 100755
index 00000000..a6d5ef3c
Binary files /dev/null and b/static/icons/06005D2D.png differ
diff --git a/static/icons/06005D2E.png b/static/icons/06005D2E.png
new file mode 100755
index 00000000..402a7284
Binary files /dev/null and b/static/icons/06005D2E.png differ
diff --git a/static/icons/06005D2F.png b/static/icons/06005D2F.png
new file mode 100755
index 00000000..f66f735b
Binary files /dev/null and b/static/icons/06005D2F.png differ
diff --git a/static/icons/06005D30.png b/static/icons/06005D30.png
new file mode 100755
index 00000000..ca2b42bd
Binary files /dev/null and b/static/icons/06005D30.png differ
diff --git a/static/icons/06005D31.png b/static/icons/06005D31.png
new file mode 100755
index 00000000..f731164b
Binary files /dev/null and b/static/icons/06005D31.png differ
diff --git a/static/icons/06005D32.png b/static/icons/06005D32.png
new file mode 100755
index 00000000..935cfdd5
Binary files /dev/null and b/static/icons/06005D32.png differ
diff --git a/static/icons/06005D33.png b/static/icons/06005D33.png
new file mode 100755
index 00000000..9ff7549b
Binary files /dev/null and b/static/icons/06005D33.png differ
diff --git a/static/icons/06005D34.png b/static/icons/06005D34.png
new file mode 100755
index 00000000..c67a2168
Binary files /dev/null and b/static/icons/06005D34.png differ
diff --git a/static/icons/06005D35.png b/static/icons/06005D35.png
new file mode 100755
index 00000000..2cade75a
Binary files /dev/null and b/static/icons/06005D35.png differ
diff --git a/static/icons/06005D36.png b/static/icons/06005D36.png
new file mode 100755
index 00000000..2af8d556
Binary files /dev/null and b/static/icons/06005D36.png differ
diff --git a/static/icons/06005D39.png b/static/icons/06005D39.png
new file mode 100755
index 00000000..74209741
Binary files /dev/null and b/static/icons/06005D39.png differ
diff --git a/static/icons/06005D3A.png b/static/icons/06005D3A.png
new file mode 100755
index 00000000..3ee04fa2
Binary files /dev/null and b/static/icons/06005D3A.png differ
diff --git a/static/icons/06005D3B.png b/static/icons/06005D3B.png
new file mode 100755
index 00000000..4af2cc05
Binary files /dev/null and b/static/icons/06005D3B.png differ
diff --git a/static/icons/06005D3C.png b/static/icons/06005D3C.png
new file mode 100755
index 00000000..3fc590ae
Binary files /dev/null and b/static/icons/06005D3C.png differ
diff --git a/static/icons/06005D3D.png b/static/icons/06005D3D.png
new file mode 100755
index 00000000..a5c8c581
Binary files /dev/null and b/static/icons/06005D3D.png differ
diff --git a/static/icons/06005D3E.png b/static/icons/06005D3E.png
new file mode 100755
index 00000000..58a5e10a
Binary files /dev/null and b/static/icons/06005D3E.png differ
diff --git a/static/icons/06005D3F.png b/static/icons/06005D3F.png
new file mode 100755
index 00000000..068126dd
Binary files /dev/null and b/static/icons/06005D3F.png differ
diff --git a/static/icons/06005D40.png b/static/icons/06005D40.png
new file mode 100755
index 00000000..169af618
Binary files /dev/null and b/static/icons/06005D40.png differ
diff --git a/static/icons/06005D41.png b/static/icons/06005D41.png
new file mode 100755
index 00000000..cd19daf2
Binary files /dev/null and b/static/icons/06005D41.png differ
diff --git a/static/icons/06005D45.png b/static/icons/06005D45.png
new file mode 100755
index 00000000..44b37064
Binary files /dev/null and b/static/icons/06005D45.png differ
diff --git a/static/icons/06005D46.png b/static/icons/06005D46.png
new file mode 100755
index 00000000..5409df98
Binary files /dev/null and b/static/icons/06005D46.png differ
diff --git a/static/icons/06005D47.png b/static/icons/06005D47.png
new file mode 100755
index 00000000..bc3db258
Binary files /dev/null and b/static/icons/06005D47.png differ
diff --git a/static/icons/06005D48.png b/static/icons/06005D48.png
new file mode 100755
index 00000000..d4bf485b
Binary files /dev/null and b/static/icons/06005D48.png differ
diff --git a/static/icons/06005D49.png b/static/icons/06005D49.png
new file mode 100755
index 00000000..0d55d18e
Binary files /dev/null and b/static/icons/06005D49.png differ
diff --git a/static/icons/06005D4A.png b/static/icons/06005D4A.png
new file mode 100755
index 00000000..64becbf6
Binary files /dev/null and b/static/icons/06005D4A.png differ
diff --git a/static/icons/06005D4B.png b/static/icons/06005D4B.png
new file mode 100755
index 00000000..256dd65c
Binary files /dev/null and b/static/icons/06005D4B.png differ
diff --git a/static/icons/06005D4C.png b/static/icons/06005D4C.png
new file mode 100755
index 00000000..06eee384
Binary files /dev/null and b/static/icons/06005D4C.png differ
diff --git a/static/icons/06005D58.png b/static/icons/06005D58.png
new file mode 100755
index 00000000..2294308f
Binary files /dev/null and b/static/icons/06005D58.png differ
diff --git a/static/icons/06005D59.png b/static/icons/06005D59.png
new file mode 100755
index 00000000..00f1b980
Binary files /dev/null and b/static/icons/06005D59.png differ
diff --git a/static/icons/06005D5A.png b/static/icons/06005D5A.png
new file mode 100755
index 00000000..58e6df3e
Binary files /dev/null and b/static/icons/06005D5A.png differ
diff --git a/static/icons/06005D5B.png b/static/icons/06005D5B.png
new file mode 100755
index 00000000..2b0b785f
Binary files /dev/null and b/static/icons/06005D5B.png differ
diff --git a/static/icons/06005D5C.png b/static/icons/06005D5C.png
new file mode 100755
index 00000000..a3df0714
Binary files /dev/null and b/static/icons/06005D5C.png differ
diff --git a/static/icons/06005D5D.png b/static/icons/06005D5D.png
new file mode 100755
index 00000000..2312eb2d
Binary files /dev/null and b/static/icons/06005D5D.png differ
diff --git a/static/icons/06005D5E.png b/static/icons/06005D5E.png
new file mode 100755
index 00000000..60cafa92
Binary files /dev/null and b/static/icons/06005D5E.png differ
diff --git a/static/icons/06005D5F.png b/static/icons/06005D5F.png
new file mode 100755
index 00000000..e2d61693
Binary files /dev/null and b/static/icons/06005D5F.png differ
diff --git a/static/icons/06005D60.png b/static/icons/06005D60.png
new file mode 100755
index 00000000..c135ee81
Binary files /dev/null and b/static/icons/06005D60.png differ
diff --git a/static/icons/06005D61.png b/static/icons/06005D61.png
new file mode 100755
index 00000000..cfb86750
Binary files /dev/null and b/static/icons/06005D61.png differ
diff --git a/static/icons/06005D62.png b/static/icons/06005D62.png
new file mode 100755
index 00000000..129eb778
Binary files /dev/null and b/static/icons/06005D62.png differ
diff --git a/static/icons/06005D63.png b/static/icons/06005D63.png
new file mode 100755
index 00000000..b3cdbd6b
Binary files /dev/null and b/static/icons/06005D63.png differ
diff --git a/static/icons/06005D64.png b/static/icons/06005D64.png
new file mode 100755
index 00000000..1ad45d57
Binary files /dev/null and b/static/icons/06005D64.png differ
diff --git a/static/icons/06005D65.png b/static/icons/06005D65.png
new file mode 100755
index 00000000..c125dba3
Binary files /dev/null and b/static/icons/06005D65.png differ
diff --git a/static/icons/06005D66.png b/static/icons/06005D66.png
new file mode 100755
index 00000000..af797226
Binary files /dev/null and b/static/icons/06005D66.png differ
diff --git a/static/icons/06005D67.png b/static/icons/06005D67.png
new file mode 100755
index 00000000..99d98a11
Binary files /dev/null and b/static/icons/06005D67.png differ
diff --git a/static/icons/06005D68.png b/static/icons/06005D68.png
new file mode 100755
index 00000000..d58aaf10
Binary files /dev/null and b/static/icons/06005D68.png differ
diff --git a/static/icons/06005D6A.png b/static/icons/06005D6A.png
new file mode 100755
index 00000000..7f58d22f
Binary files /dev/null and b/static/icons/06005D6A.png differ
diff --git a/static/icons/06005D6B.png b/static/icons/06005D6B.png
new file mode 100755
index 00000000..21bbaf4d
Binary files /dev/null and b/static/icons/06005D6B.png differ
diff --git a/static/icons/06005D6C.png b/static/icons/06005D6C.png
new file mode 100755
index 00000000..b72515f4
Binary files /dev/null and b/static/icons/06005D6C.png differ
diff --git a/static/icons/06005D6D.png b/static/icons/06005D6D.png
new file mode 100755
index 00000000..6c30e5ff
Binary files /dev/null and b/static/icons/06005D6D.png differ
diff --git a/static/icons/06005D6E.png b/static/icons/06005D6E.png
new file mode 100755
index 00000000..8c3e9c92
Binary files /dev/null and b/static/icons/06005D6E.png differ
diff --git a/static/icons/06005D6F.png b/static/icons/06005D6F.png
new file mode 100755
index 00000000..7d97afc5
Binary files /dev/null and b/static/icons/06005D6F.png differ
diff --git a/static/icons/06005D70.png b/static/icons/06005D70.png
new file mode 100755
index 00000000..00317922
Binary files /dev/null and b/static/icons/06005D70.png differ
diff --git a/static/icons/06005D71.png b/static/icons/06005D71.png
new file mode 100755
index 00000000..df6509b9
Binary files /dev/null and b/static/icons/06005D71.png differ
diff --git a/static/icons/06005D72.png b/static/icons/06005D72.png
new file mode 100755
index 00000000..17d66751
Binary files /dev/null and b/static/icons/06005D72.png differ
diff --git a/static/icons/06005D73.png b/static/icons/06005D73.png
new file mode 100755
index 00000000..b0096610
Binary files /dev/null and b/static/icons/06005D73.png differ
diff --git a/static/icons/06005D74.png b/static/icons/06005D74.png
new file mode 100755
index 00000000..8eff0424
Binary files /dev/null and b/static/icons/06005D74.png differ
diff --git a/static/icons/06005D75.png b/static/icons/06005D75.png
new file mode 100755
index 00000000..f4721608
Binary files /dev/null and b/static/icons/06005D75.png differ
diff --git a/static/icons/06005D78.png b/static/icons/06005D78.png
new file mode 100755
index 00000000..96548291
Binary files /dev/null and b/static/icons/06005D78.png differ
diff --git a/static/icons/06005D90.png b/static/icons/06005D90.png
new file mode 100755
index 00000000..2863a770
Binary files /dev/null and b/static/icons/06005D90.png differ
diff --git a/static/icons/06005D91.png b/static/icons/06005D91.png
new file mode 100755
index 00000000..f905c600
Binary files /dev/null and b/static/icons/06005D91.png differ
diff --git a/static/icons/06005D92.png b/static/icons/06005D92.png
new file mode 100755
index 00000000..9525f6b2
Binary files /dev/null and b/static/icons/06005D92.png differ
diff --git a/static/icons/06005D93.png b/static/icons/06005D93.png
new file mode 100755
index 00000000..b5108566
Binary files /dev/null and b/static/icons/06005D93.png differ
diff --git a/static/icons/06005D94.png b/static/icons/06005D94.png
new file mode 100755
index 00000000..3f45226e
Binary files /dev/null and b/static/icons/06005D94.png differ
diff --git a/static/icons/06005D95.png b/static/icons/06005D95.png
new file mode 100755
index 00000000..ab28474d
Binary files /dev/null and b/static/icons/06005D95.png differ
diff --git a/static/icons/06005D96.png b/static/icons/06005D96.png
new file mode 100755
index 00000000..0e2079ba
Binary files /dev/null and b/static/icons/06005D96.png differ
diff --git a/static/icons/06005D97.png b/static/icons/06005D97.png
new file mode 100755
index 00000000..110fc80e
Binary files /dev/null and b/static/icons/06005D97.png differ
diff --git a/static/icons/06005D98.png b/static/icons/06005D98.png
new file mode 100755
index 00000000..403e915b
Binary files /dev/null and b/static/icons/06005D98.png differ
diff --git a/static/icons/06005D9C.png b/static/icons/06005D9C.png
new file mode 100755
index 00000000..39d2871f
Binary files /dev/null and b/static/icons/06005D9C.png differ
diff --git a/static/icons/06005D9D.png b/static/icons/06005D9D.png
new file mode 100755
index 00000000..35f94d66
Binary files /dev/null and b/static/icons/06005D9D.png differ
diff --git a/static/icons/06005D9E.png b/static/icons/06005D9E.png
new file mode 100755
index 00000000..d20e4753
Binary files /dev/null and b/static/icons/06005D9E.png differ
diff --git a/static/icons/06005D9F.png b/static/icons/06005D9F.png
new file mode 100755
index 00000000..f7b48e51
Binary files /dev/null and b/static/icons/06005D9F.png differ
diff --git a/static/icons/06005DA0.png b/static/icons/06005DA0.png
new file mode 100755
index 00000000..0c1c38e9
Binary files /dev/null and b/static/icons/06005DA0.png differ
diff --git a/static/icons/06005DA1.png b/static/icons/06005DA1.png
new file mode 100755
index 00000000..6f1dabb4
Binary files /dev/null and b/static/icons/06005DA1.png differ
diff --git a/static/icons/06005DA2.png b/static/icons/06005DA2.png
new file mode 100755
index 00000000..d66d19e4
Binary files /dev/null and b/static/icons/06005DA2.png differ
diff --git a/static/icons/06005DA3.png b/static/icons/06005DA3.png
new file mode 100755
index 00000000..3854d37c
Binary files /dev/null and b/static/icons/06005DA3.png differ
diff --git a/static/icons/06005DA4.png b/static/icons/06005DA4.png
new file mode 100755
index 00000000..052b5b41
Binary files /dev/null and b/static/icons/06005DA4.png differ
diff --git a/static/icons/06005DA5.png b/static/icons/06005DA5.png
new file mode 100755
index 00000000..67f44717
Binary files /dev/null and b/static/icons/06005DA5.png differ
diff --git a/static/icons/06005DA6.png b/static/icons/06005DA6.png
new file mode 100755
index 00000000..06715e77
Binary files /dev/null and b/static/icons/06005DA6.png differ
diff --git a/static/icons/06005DA7.png b/static/icons/06005DA7.png
new file mode 100755
index 00000000..b8f48d4c
Binary files /dev/null and b/static/icons/06005DA7.png differ
diff --git a/static/icons/06005DA8.png b/static/icons/06005DA8.png
new file mode 100755
index 00000000..a4e03792
Binary files /dev/null and b/static/icons/06005DA8.png differ
diff --git a/static/icons/06005DA9.png b/static/icons/06005DA9.png
new file mode 100755
index 00000000..9c0b3ff8
Binary files /dev/null and b/static/icons/06005DA9.png differ
diff --git a/static/icons/06005DAA.png b/static/icons/06005DAA.png
new file mode 100755
index 00000000..858108c4
Binary files /dev/null and b/static/icons/06005DAA.png differ
diff --git a/static/icons/06005DAB.png b/static/icons/06005DAB.png
new file mode 100755
index 00000000..b0360d75
Binary files /dev/null and b/static/icons/06005DAB.png differ
diff --git a/static/icons/06005DAC.png b/static/icons/06005DAC.png
new file mode 100755
index 00000000..925faab6
Binary files /dev/null and b/static/icons/06005DAC.png differ
diff --git a/static/icons/06005DAD.png b/static/icons/06005DAD.png
new file mode 100755
index 00000000..908c7ceb
Binary files /dev/null and b/static/icons/06005DAD.png differ
diff --git a/static/icons/06005DAF.png b/static/icons/06005DAF.png
new file mode 100755
index 00000000..bdb05a08
Binary files /dev/null and b/static/icons/06005DAF.png differ
diff --git a/static/icons/06005DB0.png b/static/icons/06005DB0.png
new file mode 100755
index 00000000..9eb53484
Binary files /dev/null and b/static/icons/06005DB0.png differ
diff --git a/static/icons/06005DB1.png b/static/icons/06005DB1.png
new file mode 100755
index 00000000..cbe7c744
Binary files /dev/null and b/static/icons/06005DB1.png differ
diff --git a/static/icons/06005DBE.png b/static/icons/06005DBE.png
new file mode 100755
index 00000000..40218310
Binary files /dev/null and b/static/icons/06005DBE.png differ
diff --git a/static/icons/06005DBF.png b/static/icons/06005DBF.png
new file mode 100755
index 00000000..8d06f8c7
Binary files /dev/null and b/static/icons/06005DBF.png differ
diff --git a/static/icons/06005DC0.png b/static/icons/06005DC0.png
new file mode 100755
index 00000000..a59ee416
Binary files /dev/null and b/static/icons/06005DC0.png differ
diff --git a/static/icons/06005DC1.png b/static/icons/06005DC1.png
new file mode 100755
index 00000000..c790dc50
Binary files /dev/null and b/static/icons/06005DC1.png differ
diff --git a/static/icons/06005DC3.png b/static/icons/06005DC3.png
new file mode 100755
index 00000000..7e19ea67
Binary files /dev/null and b/static/icons/06005DC3.png differ
diff --git a/static/icons/06005DC6.png b/static/icons/06005DC6.png
new file mode 100755
index 00000000..b9895b84
Binary files /dev/null and b/static/icons/06005DC6.png differ
diff --git a/static/icons/06005DC7.png b/static/icons/06005DC7.png
new file mode 100755
index 00000000..ce37bd93
Binary files /dev/null and b/static/icons/06005DC7.png differ
diff --git a/static/icons/06005DC8.png b/static/icons/06005DC8.png
new file mode 100755
index 00000000..3b346aeb
Binary files /dev/null and b/static/icons/06005DC8.png differ
diff --git a/static/icons/06005DC9.png b/static/icons/06005DC9.png
new file mode 100755
index 00000000..d9a7e514
Binary files /dev/null and b/static/icons/06005DC9.png differ
diff --git a/static/icons/06005DCA.png b/static/icons/06005DCA.png
new file mode 100755
index 00000000..2aed3dbd
Binary files /dev/null and b/static/icons/06005DCA.png differ
diff --git a/static/icons/06005DCB.png b/static/icons/06005DCB.png
new file mode 100755
index 00000000..c6bc1d60
Binary files /dev/null and b/static/icons/06005DCB.png differ
diff --git a/static/icons/06005DCC.png b/static/icons/06005DCC.png
new file mode 100755
index 00000000..b6ffbe17
Binary files /dev/null and b/static/icons/06005DCC.png differ
diff --git a/static/icons/06005DCD.png b/static/icons/06005DCD.png
new file mode 100755
index 00000000..5288223f
Binary files /dev/null and b/static/icons/06005DCD.png differ
diff --git a/static/icons/06005DD5.png b/static/icons/06005DD5.png
new file mode 100755
index 00000000..af6f676e
Binary files /dev/null and b/static/icons/06005DD5.png differ
diff --git a/static/icons/06005DD6.png b/static/icons/06005DD6.png
new file mode 100755
index 00000000..9ae03238
Binary files /dev/null and b/static/icons/06005DD6.png differ
diff --git a/static/icons/06005DD7.png b/static/icons/06005DD7.png
new file mode 100755
index 00000000..236db4cd
Binary files /dev/null and b/static/icons/06005DD7.png differ
diff --git a/static/icons/06005DD8.png b/static/icons/06005DD8.png
new file mode 100755
index 00000000..321c7a19
Binary files /dev/null and b/static/icons/06005DD8.png differ
diff --git a/static/icons/06005DDB.png b/static/icons/06005DDB.png
new file mode 100755
index 00000000..71dd72fb
Binary files /dev/null and b/static/icons/06005DDB.png differ
diff --git a/static/icons/06005DDC.png b/static/icons/06005DDC.png
new file mode 100755
index 00000000..eaae7dcb
Binary files /dev/null and b/static/icons/06005DDC.png differ
diff --git a/static/icons/06005DDD.png b/static/icons/06005DDD.png
new file mode 100755
index 00000000..43e16e81
Binary files /dev/null and b/static/icons/06005DDD.png differ
diff --git a/static/icons/06005DDE.png b/static/icons/06005DDE.png
new file mode 100755
index 00000000..b42ebb77
Binary files /dev/null and b/static/icons/06005DDE.png differ
diff --git a/static/icons/06005DE0.png b/static/icons/06005DE0.png
new file mode 100755
index 00000000..b775a8d8
Binary files /dev/null and b/static/icons/06005DE0.png differ
diff --git a/static/icons/06005DE1.png b/static/icons/06005DE1.png
new file mode 100755
index 00000000..57ecf314
Binary files /dev/null and b/static/icons/06005DE1.png differ
diff --git a/static/icons/06005DE2.png b/static/icons/06005DE2.png
new file mode 100755
index 00000000..bd60773f
Binary files /dev/null and b/static/icons/06005DE2.png differ
diff --git a/static/icons/06005DE4.png b/static/icons/06005DE4.png
new file mode 100755
index 00000000..25ad98ee
Binary files /dev/null and b/static/icons/06005DE4.png differ
diff --git a/static/icons/06005DE5.png b/static/icons/06005DE5.png
new file mode 100755
index 00000000..a5c85e82
Binary files /dev/null and b/static/icons/06005DE5.png differ
diff --git a/static/icons/06005DE6.png b/static/icons/06005DE6.png
new file mode 100755
index 00000000..b976a198
Binary files /dev/null and b/static/icons/06005DE6.png differ
diff --git a/static/icons/06005DE7.png b/static/icons/06005DE7.png
new file mode 100755
index 00000000..3316d323
Binary files /dev/null and b/static/icons/06005DE7.png differ
diff --git a/static/icons/06005E03.png b/static/icons/06005E03.png
new file mode 100755
index 00000000..cab0442a
Binary files /dev/null and b/static/icons/06005E03.png differ
diff --git a/static/icons/06005E04.png b/static/icons/06005E04.png
new file mode 100755
index 00000000..4b4e78e8
Binary files /dev/null and b/static/icons/06005E04.png differ
diff --git a/static/icons/06005E10.png b/static/icons/06005E10.png
new file mode 100755
index 00000000..74b89c71
Binary files /dev/null and b/static/icons/06005E10.png differ
diff --git a/static/icons/06005E11.png b/static/icons/06005E11.png
new file mode 100755
index 00000000..9087ba59
Binary files /dev/null and b/static/icons/06005E11.png differ
diff --git a/static/icons/06005E12.png b/static/icons/06005E12.png
new file mode 100755
index 00000000..9f9720dc
Binary files /dev/null and b/static/icons/06005E12.png differ
diff --git a/static/icons/06005E13.png b/static/icons/06005E13.png
new file mode 100755
index 00000000..e8270401
Binary files /dev/null and b/static/icons/06005E13.png differ
diff --git a/static/icons/06005E14.png b/static/icons/06005E14.png
new file mode 100755
index 00000000..8365fcea
Binary files /dev/null and b/static/icons/06005E14.png differ
diff --git a/static/icons/06005E15.png b/static/icons/06005E15.png
new file mode 100755
index 00000000..8cf70f0a
Binary files /dev/null and b/static/icons/06005E15.png differ
diff --git a/static/icons/06005E16.png b/static/icons/06005E16.png
new file mode 100755
index 00000000..10e9ba24
Binary files /dev/null and b/static/icons/06005E16.png differ
diff --git a/static/icons/06005E17.png b/static/icons/06005E17.png
new file mode 100755
index 00000000..1e8c58fd
Binary files /dev/null and b/static/icons/06005E17.png differ
diff --git a/static/icons/06005E18.png b/static/icons/06005E18.png
new file mode 100755
index 00000000..99568210
Binary files /dev/null and b/static/icons/06005E18.png differ
diff --git a/static/icons/06005E1B.png b/static/icons/06005E1B.png
new file mode 100755
index 00000000..a46a7e48
Binary files /dev/null and b/static/icons/06005E1B.png differ
diff --git a/static/icons/06005E21.png b/static/icons/06005E21.png
new file mode 100755
index 00000000..250eb3c1
Binary files /dev/null and b/static/icons/06005E21.png differ
diff --git a/static/icons/06005E22.png b/static/icons/06005E22.png
new file mode 100755
index 00000000..da0a65ae
Binary files /dev/null and b/static/icons/06005E22.png differ
diff --git a/static/icons/06005E23.png b/static/icons/06005E23.png
new file mode 100755
index 00000000..eddc385a
Binary files /dev/null and b/static/icons/06005E23.png differ
diff --git a/static/icons/06005E37.png b/static/icons/06005E37.png
new file mode 100755
index 00000000..24cec876
Binary files /dev/null and b/static/icons/06005E37.png differ
diff --git a/static/icons/06005E38.png b/static/icons/06005E38.png
new file mode 100755
index 00000000..a4924ee6
Binary files /dev/null and b/static/icons/06005E38.png differ
diff --git a/static/icons/06005E39.png b/static/icons/06005E39.png
new file mode 100755
index 00000000..1b0f149a
Binary files /dev/null and b/static/icons/06005E39.png differ
diff --git a/static/icons/06005E3A.png b/static/icons/06005E3A.png
new file mode 100755
index 00000000..4998404e
Binary files /dev/null and b/static/icons/06005E3A.png differ
diff --git a/static/icons/06005E3D.png b/static/icons/06005E3D.png
new file mode 100755
index 00000000..98bf2e4b
Binary files /dev/null and b/static/icons/06005E3D.png differ
diff --git a/static/icons/06005E3E.png b/static/icons/06005E3E.png
new file mode 100755
index 00000000..520a6a4a
Binary files /dev/null and b/static/icons/06005E3E.png differ
diff --git a/static/icons/06005E3F.png b/static/icons/06005E3F.png
new file mode 100755
index 00000000..5d5697f3
Binary files /dev/null and b/static/icons/06005E3F.png differ
diff --git a/static/icons/06005E40.png b/static/icons/06005E40.png
new file mode 100755
index 00000000..9de6cc54
Binary files /dev/null and b/static/icons/06005E40.png differ
diff --git a/static/icons/06005E41.png b/static/icons/06005E41.png
new file mode 100755
index 00000000..7cd171fd
Binary files /dev/null and b/static/icons/06005E41.png differ
diff --git a/static/icons/06005E42.png b/static/icons/06005E42.png
new file mode 100755
index 00000000..712829b2
Binary files /dev/null and b/static/icons/06005E42.png differ
diff --git a/static/icons/06005E43.png b/static/icons/06005E43.png
new file mode 100755
index 00000000..9248b1a0
Binary files /dev/null and b/static/icons/06005E43.png differ
diff --git a/static/icons/06005E44.png b/static/icons/06005E44.png
new file mode 100755
index 00000000..8f2e53f6
Binary files /dev/null and b/static/icons/06005E44.png differ
diff --git a/static/icons/06005E45.png b/static/icons/06005E45.png
new file mode 100755
index 00000000..cb48c266
Binary files /dev/null and b/static/icons/06005E45.png differ
diff --git a/static/icons/06005E46.png b/static/icons/06005E46.png
new file mode 100755
index 00000000..a6f96448
Binary files /dev/null and b/static/icons/06005E46.png differ
diff --git a/static/icons/06005E47.png b/static/icons/06005E47.png
new file mode 100755
index 00000000..fee164d8
Binary files /dev/null and b/static/icons/06005E47.png differ
diff --git a/static/icons/06005E48.png b/static/icons/06005E48.png
new file mode 100755
index 00000000..2db6da44
Binary files /dev/null and b/static/icons/06005E48.png differ
diff --git a/static/icons/06005E49.png b/static/icons/06005E49.png
new file mode 100755
index 00000000..90c00030
Binary files /dev/null and b/static/icons/06005E49.png differ
diff --git a/static/icons/06005E4A.png b/static/icons/06005E4A.png
new file mode 100755
index 00000000..7167e3d1
Binary files /dev/null and b/static/icons/06005E4A.png differ
diff --git a/static/icons/06005E4B.png b/static/icons/06005E4B.png
new file mode 100755
index 00000000..40be2653
Binary files /dev/null and b/static/icons/06005E4B.png differ
diff --git a/static/icons/06005E4C.png b/static/icons/06005E4C.png
new file mode 100755
index 00000000..e43a3b43
Binary files /dev/null and b/static/icons/06005E4C.png differ
diff --git a/static/icons/06005E4D.png b/static/icons/06005E4D.png
new file mode 100755
index 00000000..c96e14ef
Binary files /dev/null and b/static/icons/06005E4D.png differ
diff --git a/static/icons/06005E4E.png b/static/icons/06005E4E.png
new file mode 100755
index 00000000..5c47e604
Binary files /dev/null and b/static/icons/06005E4E.png differ
diff --git a/static/icons/06005E4F.png b/static/icons/06005E4F.png
new file mode 100755
index 00000000..e8e694c4
Binary files /dev/null and b/static/icons/06005E4F.png differ
diff --git a/static/icons/06005E50.png b/static/icons/06005E50.png
new file mode 100755
index 00000000..f77326f2
Binary files /dev/null and b/static/icons/06005E50.png differ
diff --git a/static/icons/06005E51.png b/static/icons/06005E51.png
new file mode 100755
index 00000000..22aad607
Binary files /dev/null and b/static/icons/06005E51.png differ
diff --git a/static/icons/06005E52.png b/static/icons/06005E52.png
new file mode 100755
index 00000000..54226e70
Binary files /dev/null and b/static/icons/06005E52.png differ
diff --git a/static/icons/06005E53.png b/static/icons/06005E53.png
new file mode 100755
index 00000000..ca2e5cdb
Binary files /dev/null and b/static/icons/06005E53.png differ
diff --git a/static/icons/06005E54.png b/static/icons/06005E54.png
new file mode 100755
index 00000000..807ef8e3
Binary files /dev/null and b/static/icons/06005E54.png differ
diff --git a/static/icons/06005E55.png b/static/icons/06005E55.png
new file mode 100755
index 00000000..04d1f246
Binary files /dev/null and b/static/icons/06005E55.png differ
diff --git a/static/icons/06005E56.png b/static/icons/06005E56.png
new file mode 100755
index 00000000..bf993d89
Binary files /dev/null and b/static/icons/06005E56.png differ
diff --git a/static/icons/06005E57.png b/static/icons/06005E57.png
new file mode 100755
index 00000000..29e182d1
Binary files /dev/null and b/static/icons/06005E57.png differ
diff --git a/static/icons/06005E58.png b/static/icons/06005E58.png
new file mode 100755
index 00000000..c9460ab7
Binary files /dev/null and b/static/icons/06005E58.png differ
diff --git a/static/icons/06005E59.png b/static/icons/06005E59.png
new file mode 100755
index 00000000..5cf1f819
Binary files /dev/null and b/static/icons/06005E59.png differ
diff --git a/static/icons/06005E5A.png b/static/icons/06005E5A.png
new file mode 100755
index 00000000..da3f8a92
Binary files /dev/null and b/static/icons/06005E5A.png differ
diff --git a/static/icons/06005E5B.png b/static/icons/06005E5B.png
new file mode 100755
index 00000000..85bb9074
Binary files /dev/null and b/static/icons/06005E5B.png differ
diff --git a/static/icons/06005E5C.png b/static/icons/06005E5C.png
new file mode 100755
index 00000000..b94eddcb
Binary files /dev/null and b/static/icons/06005E5C.png differ
diff --git a/static/icons/06005E5D.png b/static/icons/06005E5D.png
new file mode 100755
index 00000000..bd32b1e8
Binary files /dev/null and b/static/icons/06005E5D.png differ
diff --git a/static/icons/06005E60.png b/static/icons/06005E60.png
new file mode 100755
index 00000000..3dd943d8
Binary files /dev/null and b/static/icons/06005E60.png differ
diff --git a/static/icons/06005E63.png b/static/icons/06005E63.png
new file mode 100755
index 00000000..23f5d0fa
Binary files /dev/null and b/static/icons/06005E63.png differ
diff --git a/static/icons/06005E64.png b/static/icons/06005E64.png
new file mode 100755
index 00000000..cc21eabd
Binary files /dev/null and b/static/icons/06005E64.png differ
diff --git a/static/icons/06005E65.png b/static/icons/06005E65.png
new file mode 100755
index 00000000..dffcec28
Binary files /dev/null and b/static/icons/06005E65.png differ
diff --git a/static/icons/06005E66.png b/static/icons/06005E66.png
new file mode 100755
index 00000000..343eb084
Binary files /dev/null and b/static/icons/06005E66.png differ
diff --git a/static/icons/06005E6A.png b/static/icons/06005E6A.png
new file mode 100755
index 00000000..6eb07cd9
Binary files /dev/null and b/static/icons/06005E6A.png differ
diff --git a/static/icons/06005E6B.png b/static/icons/06005E6B.png
new file mode 100755
index 00000000..21608ade
Binary files /dev/null and b/static/icons/06005E6B.png differ
diff --git a/static/icons/06005E92.png b/static/icons/06005E92.png
new file mode 100755
index 00000000..29476f7e
Binary files /dev/null and b/static/icons/06005E92.png differ
diff --git a/static/icons/06005EA7.png b/static/icons/06005EA7.png
new file mode 100755
index 00000000..d8a712ef
Binary files /dev/null and b/static/icons/06005EA7.png differ
diff --git a/static/icons/06005EA9.png b/static/icons/06005EA9.png
new file mode 100755
index 00000000..57f7773d
Binary files /dev/null and b/static/icons/06005EA9.png differ
diff --git a/static/icons/06005EAB.png b/static/icons/06005EAB.png
new file mode 100755
index 00000000..ba4c5e0a
Binary files /dev/null and b/static/icons/06005EAB.png differ
diff --git a/static/icons/06005EAD.png b/static/icons/06005EAD.png
new file mode 100755
index 00000000..2ab770f9
Binary files /dev/null and b/static/icons/06005EAD.png differ
diff --git a/static/icons/06005EAE.png b/static/icons/06005EAE.png
new file mode 100755
index 00000000..c70e5a61
Binary files /dev/null and b/static/icons/06005EAE.png differ
diff --git a/static/icons/06005EAF.png b/static/icons/06005EAF.png
new file mode 100755
index 00000000..adf96817
Binary files /dev/null and b/static/icons/06005EAF.png differ
diff --git a/static/icons/06005EB4.png b/static/icons/06005EB4.png
new file mode 100755
index 00000000..42866ccc
Binary files /dev/null and b/static/icons/06005EB4.png differ
diff --git a/static/icons/06005EB5.png b/static/icons/06005EB5.png
new file mode 100755
index 00000000..62b4a84e
Binary files /dev/null and b/static/icons/06005EB5.png differ
diff --git a/static/icons/06005EB6.png b/static/icons/06005EB6.png
new file mode 100755
index 00000000..1dd5db91
Binary files /dev/null and b/static/icons/06005EB6.png differ
diff --git a/static/icons/06005EB8.png b/static/icons/06005EB8.png
new file mode 100755
index 00000000..fe153702
Binary files /dev/null and b/static/icons/06005EB8.png differ
diff --git a/static/icons/06005EB9.png b/static/icons/06005EB9.png
new file mode 100755
index 00000000..b7255d57
Binary files /dev/null and b/static/icons/06005EB9.png differ
diff --git a/static/icons/06005EBA.png b/static/icons/06005EBA.png
new file mode 100755
index 00000000..122d2e42
Binary files /dev/null and b/static/icons/06005EBA.png differ
diff --git a/static/icons/06005EBB.png b/static/icons/06005EBB.png
new file mode 100755
index 00000000..2a04ed7a
Binary files /dev/null and b/static/icons/06005EBB.png differ
diff --git a/static/icons/06005EBC.png b/static/icons/06005EBC.png
new file mode 100755
index 00000000..1b6d6560
Binary files /dev/null and b/static/icons/06005EBC.png differ
diff --git a/static/icons/06005EBD.png b/static/icons/06005EBD.png
new file mode 100755
index 00000000..2ed4908f
Binary files /dev/null and b/static/icons/06005EBD.png differ
diff --git a/static/icons/06005EBE.png b/static/icons/06005EBE.png
new file mode 100755
index 00000000..2f204163
Binary files /dev/null and b/static/icons/06005EBE.png differ
diff --git a/static/icons/06005EBF.png b/static/icons/06005EBF.png
new file mode 100755
index 00000000..4cb00b71
Binary files /dev/null and b/static/icons/06005EBF.png differ
diff --git a/static/icons/06005EC0.png b/static/icons/06005EC0.png
new file mode 100755
index 00000000..db5aa345
Binary files /dev/null and b/static/icons/06005EC0.png differ
diff --git a/static/icons/06005EC1.png b/static/icons/06005EC1.png
new file mode 100755
index 00000000..43987e0a
Binary files /dev/null and b/static/icons/06005EC1.png differ
diff --git a/static/icons/06005EC2.png b/static/icons/06005EC2.png
new file mode 100755
index 00000000..bfe289ba
Binary files /dev/null and b/static/icons/06005EC2.png differ
diff --git a/static/icons/06005EC3.png b/static/icons/06005EC3.png
new file mode 100755
index 00000000..6195d07c
Binary files /dev/null and b/static/icons/06005EC3.png differ
diff --git a/static/icons/06005ECE.png b/static/icons/06005ECE.png
new file mode 100755
index 00000000..4178f30d
Binary files /dev/null and b/static/icons/06005ECE.png differ
diff --git a/static/icons/06005ECF.png b/static/icons/06005ECF.png
new file mode 100755
index 00000000..ede24ed4
Binary files /dev/null and b/static/icons/06005ECF.png differ
diff --git a/static/icons/06005ED0.png b/static/icons/06005ED0.png
new file mode 100755
index 00000000..f45b4db3
Binary files /dev/null and b/static/icons/06005ED0.png differ
diff --git a/static/icons/06005ED1.png b/static/icons/06005ED1.png
new file mode 100755
index 00000000..11e8081e
Binary files /dev/null and b/static/icons/06005ED1.png differ
diff --git a/static/icons/06005ED2.png b/static/icons/06005ED2.png
new file mode 100755
index 00000000..37312bf1
Binary files /dev/null and b/static/icons/06005ED2.png differ
diff --git a/static/icons/06005ED3.png b/static/icons/06005ED3.png
new file mode 100755
index 00000000..e8a0872b
Binary files /dev/null and b/static/icons/06005ED3.png differ
diff --git a/static/icons/06005ED4.png b/static/icons/06005ED4.png
new file mode 100755
index 00000000..4b6ab0e8
Binary files /dev/null and b/static/icons/06005ED4.png differ
diff --git a/static/icons/06005ED5.png b/static/icons/06005ED5.png
new file mode 100755
index 00000000..44e4eb58
Binary files /dev/null and b/static/icons/06005ED5.png differ
diff --git a/static/icons/06005ED6.png b/static/icons/06005ED6.png
new file mode 100755
index 00000000..30674abc
Binary files /dev/null and b/static/icons/06005ED6.png differ
diff --git a/static/icons/06005ED7.png b/static/icons/06005ED7.png
new file mode 100755
index 00000000..b850ac41
Binary files /dev/null and b/static/icons/06005ED7.png differ
diff --git a/static/icons/06005ED8.png b/static/icons/06005ED8.png
new file mode 100755
index 00000000..d1ce3df7
Binary files /dev/null and b/static/icons/06005ED8.png differ
diff --git a/static/icons/06005ED9.png b/static/icons/06005ED9.png
new file mode 100755
index 00000000..e7f7aaf3
Binary files /dev/null and b/static/icons/06005ED9.png differ
diff --git a/static/icons/06005EDA.png b/static/icons/06005EDA.png
new file mode 100755
index 00000000..ffa45f33
Binary files /dev/null and b/static/icons/06005EDA.png differ
diff --git a/static/icons/06005EDB.png b/static/icons/06005EDB.png
new file mode 100755
index 00000000..2f33d061
Binary files /dev/null and b/static/icons/06005EDB.png differ
diff --git a/static/icons/06005EDC.png b/static/icons/06005EDC.png
new file mode 100755
index 00000000..a326c326
Binary files /dev/null and b/static/icons/06005EDC.png differ
diff --git a/static/icons/06005EDD.png b/static/icons/06005EDD.png
new file mode 100755
index 00000000..21ee0c42
Binary files /dev/null and b/static/icons/06005EDD.png differ
diff --git a/static/icons/06005EDE.png b/static/icons/06005EDE.png
new file mode 100755
index 00000000..4056a5b9
Binary files /dev/null and b/static/icons/06005EDE.png differ
diff --git a/static/icons/06005EDF.png b/static/icons/06005EDF.png
new file mode 100755
index 00000000..f27d0e5e
Binary files /dev/null and b/static/icons/06005EDF.png differ
diff --git a/static/icons/06005EE0.png b/static/icons/06005EE0.png
new file mode 100755
index 00000000..7931ab63
Binary files /dev/null and b/static/icons/06005EE0.png differ
diff --git a/static/icons/06005EE1.png b/static/icons/06005EE1.png
new file mode 100755
index 00000000..a009906a
Binary files /dev/null and b/static/icons/06005EE1.png differ
diff --git a/static/icons/06005EE2.png b/static/icons/06005EE2.png
new file mode 100755
index 00000000..e69e098d
Binary files /dev/null and b/static/icons/06005EE2.png differ
diff --git a/static/icons/06005EE3.png b/static/icons/06005EE3.png
new file mode 100755
index 00000000..8b367cbf
Binary files /dev/null and b/static/icons/06005EE3.png differ
diff --git a/static/icons/06005EE4.png b/static/icons/06005EE4.png
new file mode 100755
index 00000000..4fd46999
Binary files /dev/null and b/static/icons/06005EE4.png differ
diff --git a/static/icons/06005EE5.png b/static/icons/06005EE5.png
new file mode 100755
index 00000000..c6d0d423
Binary files /dev/null and b/static/icons/06005EE5.png differ
diff --git a/static/icons/06005EE6.png b/static/icons/06005EE6.png
new file mode 100755
index 00000000..cf60df27
Binary files /dev/null and b/static/icons/06005EE6.png differ
diff --git a/static/icons/06005EE7.png b/static/icons/06005EE7.png
new file mode 100755
index 00000000..ec5bae82
Binary files /dev/null and b/static/icons/06005EE7.png differ
diff --git a/static/icons/06005EE8.png b/static/icons/06005EE8.png
new file mode 100755
index 00000000..ebaf3c0f
Binary files /dev/null and b/static/icons/06005EE8.png differ
diff --git a/static/icons/06005EE9.png b/static/icons/06005EE9.png
new file mode 100755
index 00000000..e238ab5e
Binary files /dev/null and b/static/icons/06005EE9.png differ
diff --git a/static/icons/06005EEA.png b/static/icons/06005EEA.png
new file mode 100755
index 00000000..97036fb5
Binary files /dev/null and b/static/icons/06005EEA.png differ
diff --git a/static/icons/06005EEB.png b/static/icons/06005EEB.png
new file mode 100755
index 00000000..a0d25876
Binary files /dev/null and b/static/icons/06005EEB.png differ
diff --git a/static/icons/06005EEC.png b/static/icons/06005EEC.png
new file mode 100755
index 00000000..47fb5078
Binary files /dev/null and b/static/icons/06005EEC.png differ
diff --git a/static/icons/06005EED.png b/static/icons/06005EED.png
new file mode 100755
index 00000000..6d700597
Binary files /dev/null and b/static/icons/06005EED.png differ
diff --git a/static/icons/06005EEE.png b/static/icons/06005EEE.png
new file mode 100755
index 00000000..dd562e6d
Binary files /dev/null and b/static/icons/06005EEE.png differ
diff --git a/static/icons/06005EEF.png b/static/icons/06005EEF.png
new file mode 100755
index 00000000..6b291dcf
Binary files /dev/null and b/static/icons/06005EEF.png differ
diff --git a/static/icons/06005EF0.png b/static/icons/06005EF0.png
new file mode 100755
index 00000000..ea568df6
Binary files /dev/null and b/static/icons/06005EF0.png differ
diff --git a/static/icons/06005EF1.png b/static/icons/06005EF1.png
new file mode 100755
index 00000000..47df8f2c
Binary files /dev/null and b/static/icons/06005EF1.png differ
diff --git a/static/icons/06005EF2.png b/static/icons/06005EF2.png
new file mode 100755
index 00000000..5aa98ff7
Binary files /dev/null and b/static/icons/06005EF2.png differ
diff --git a/static/icons/06005EF3.png b/static/icons/06005EF3.png
new file mode 100755
index 00000000..98fae509
Binary files /dev/null and b/static/icons/06005EF3.png differ
diff --git a/static/icons/06005EF4.png b/static/icons/06005EF4.png
new file mode 100755
index 00000000..e1f3bcf7
Binary files /dev/null and b/static/icons/06005EF4.png differ
diff --git a/static/icons/06005EF5.png b/static/icons/06005EF5.png
new file mode 100755
index 00000000..1ccc3060
Binary files /dev/null and b/static/icons/06005EF5.png differ
diff --git a/static/icons/06005EF6.png b/static/icons/06005EF6.png
new file mode 100755
index 00000000..9e07b5d1
Binary files /dev/null and b/static/icons/06005EF6.png differ
diff --git a/static/icons/06005EF7.png b/static/icons/06005EF7.png
new file mode 100755
index 00000000..29e1b819
Binary files /dev/null and b/static/icons/06005EF7.png differ
diff --git a/static/icons/06005EF8.png b/static/icons/06005EF8.png
new file mode 100755
index 00000000..8c8962d6
Binary files /dev/null and b/static/icons/06005EF8.png differ
diff --git a/static/icons/06005EF9.png b/static/icons/06005EF9.png
new file mode 100755
index 00000000..7376a57f
Binary files /dev/null and b/static/icons/06005EF9.png differ
diff --git a/static/icons/06005EFA.png b/static/icons/06005EFA.png
new file mode 100755
index 00000000..b2a0d5d2
Binary files /dev/null and b/static/icons/06005EFA.png differ
diff --git a/static/icons/06005EFB.png b/static/icons/06005EFB.png
new file mode 100755
index 00000000..389bada6
Binary files /dev/null and b/static/icons/06005EFB.png differ
diff --git a/static/icons/06005EFC.png b/static/icons/06005EFC.png
new file mode 100755
index 00000000..09b00c26
Binary files /dev/null and b/static/icons/06005EFC.png differ
diff --git a/static/icons/06005EFD.png b/static/icons/06005EFD.png
new file mode 100755
index 00000000..1d0a8684
Binary files /dev/null and b/static/icons/06005EFD.png differ
diff --git a/static/icons/06005EFE.png b/static/icons/06005EFE.png
new file mode 100755
index 00000000..b639221b
Binary files /dev/null and b/static/icons/06005EFE.png differ
diff --git a/static/icons/06005EFF.png b/static/icons/06005EFF.png
new file mode 100755
index 00000000..28d695e9
Binary files /dev/null and b/static/icons/06005EFF.png differ
diff --git a/static/icons/06005F00.png b/static/icons/06005F00.png
new file mode 100755
index 00000000..2229f255
Binary files /dev/null and b/static/icons/06005F00.png differ
diff --git a/static/icons/06005F01.png b/static/icons/06005F01.png
new file mode 100755
index 00000000..e5c2c875
Binary files /dev/null and b/static/icons/06005F01.png differ
diff --git a/static/icons/06005F02.png b/static/icons/06005F02.png
new file mode 100755
index 00000000..58e881ea
Binary files /dev/null and b/static/icons/06005F02.png differ
diff --git a/static/icons/06005F03.png b/static/icons/06005F03.png
new file mode 100755
index 00000000..93ef137b
Binary files /dev/null and b/static/icons/06005F03.png differ
diff --git a/static/icons/06005F04.png b/static/icons/06005F04.png
new file mode 100755
index 00000000..cc2f8069
Binary files /dev/null and b/static/icons/06005F04.png differ
diff --git a/static/icons/06005F05.png b/static/icons/06005F05.png
new file mode 100755
index 00000000..9ab794f2
Binary files /dev/null and b/static/icons/06005F05.png differ
diff --git a/static/icons/06005F06.png b/static/icons/06005F06.png
new file mode 100755
index 00000000..34e2da47
Binary files /dev/null and b/static/icons/06005F06.png differ
diff --git a/static/icons/06005F07.png b/static/icons/06005F07.png
new file mode 100755
index 00000000..c8f29091
Binary files /dev/null and b/static/icons/06005F07.png differ
diff --git a/static/icons/06005F08.png b/static/icons/06005F08.png
new file mode 100755
index 00000000..ce7ad9d5
Binary files /dev/null and b/static/icons/06005F08.png differ
diff --git a/static/icons/06005F09.png b/static/icons/06005F09.png
new file mode 100755
index 00000000..a53b7273
Binary files /dev/null and b/static/icons/06005F09.png differ
diff --git a/static/icons/06005F0A.png b/static/icons/06005F0A.png
new file mode 100755
index 00000000..571c98a1
Binary files /dev/null and b/static/icons/06005F0A.png differ
diff --git a/static/icons/06005F0B.png b/static/icons/06005F0B.png
new file mode 100755
index 00000000..48527d22
Binary files /dev/null and b/static/icons/06005F0B.png differ
diff --git a/static/icons/06005F0C.png b/static/icons/06005F0C.png
new file mode 100755
index 00000000..f0eaccc0
Binary files /dev/null and b/static/icons/06005F0C.png differ
diff --git a/static/icons/06005F0D.png b/static/icons/06005F0D.png
new file mode 100755
index 00000000..93af78f5
Binary files /dev/null and b/static/icons/06005F0D.png differ
diff --git a/static/icons/06005F0E.png b/static/icons/06005F0E.png
new file mode 100755
index 00000000..b58c2ec6
Binary files /dev/null and b/static/icons/06005F0E.png differ
diff --git a/static/icons/06005F0F.png b/static/icons/06005F0F.png
new file mode 100755
index 00000000..c8033f97
Binary files /dev/null and b/static/icons/06005F0F.png differ
diff --git a/static/icons/06005F10.png b/static/icons/06005F10.png
new file mode 100755
index 00000000..78d52215
Binary files /dev/null and b/static/icons/06005F10.png differ
diff --git a/static/icons/06005F11.png b/static/icons/06005F11.png
new file mode 100755
index 00000000..aba4ae0d
Binary files /dev/null and b/static/icons/06005F11.png differ
diff --git a/static/icons/06005F12.png b/static/icons/06005F12.png
new file mode 100755
index 00000000..5e2a0cce
Binary files /dev/null and b/static/icons/06005F12.png differ
diff --git a/static/icons/06005F13.png b/static/icons/06005F13.png
new file mode 100755
index 00000000..7957df1b
Binary files /dev/null and b/static/icons/06005F13.png differ
diff --git a/static/icons/06005F14.png b/static/icons/06005F14.png
new file mode 100755
index 00000000..b6bb1404
Binary files /dev/null and b/static/icons/06005F14.png differ
diff --git a/static/icons/06005F15.png b/static/icons/06005F15.png
new file mode 100755
index 00000000..261a5bc0
Binary files /dev/null and b/static/icons/06005F15.png differ
diff --git a/static/icons/06005F16.png b/static/icons/06005F16.png
new file mode 100755
index 00000000..564d4f16
Binary files /dev/null and b/static/icons/06005F16.png differ
diff --git a/static/icons/06005F17.png b/static/icons/06005F17.png
new file mode 100755
index 00000000..bf4f1529
Binary files /dev/null and b/static/icons/06005F17.png differ
diff --git a/static/icons/06005F18.png b/static/icons/06005F18.png
new file mode 100755
index 00000000..60825913
Binary files /dev/null and b/static/icons/06005F18.png differ
diff --git a/static/icons/06005F19.png b/static/icons/06005F19.png
new file mode 100755
index 00000000..b2bff195
Binary files /dev/null and b/static/icons/06005F19.png differ
diff --git a/static/icons/06005F1A.png b/static/icons/06005F1A.png
new file mode 100755
index 00000000..d6e4b8f7
Binary files /dev/null and b/static/icons/06005F1A.png differ
diff --git a/static/icons/06005F1C.png b/static/icons/06005F1C.png
new file mode 100755
index 00000000..591d353c
Binary files /dev/null and b/static/icons/06005F1C.png differ
diff --git a/static/icons/06005F1D.png b/static/icons/06005F1D.png
new file mode 100755
index 00000000..77a0c500
Binary files /dev/null and b/static/icons/06005F1D.png differ
diff --git a/static/icons/06005F1E.png b/static/icons/06005F1E.png
new file mode 100755
index 00000000..2ed7a8b5
Binary files /dev/null and b/static/icons/06005F1E.png differ
diff --git a/static/icons/06005F20.png b/static/icons/06005F20.png
new file mode 100755
index 00000000..4c52f075
Binary files /dev/null and b/static/icons/06005F20.png differ
diff --git a/static/icons/06005F21.png b/static/icons/06005F21.png
new file mode 100755
index 00000000..d738c866
Binary files /dev/null and b/static/icons/06005F21.png differ
diff --git a/static/icons/06005F22.png b/static/icons/06005F22.png
new file mode 100755
index 00000000..d2f6833a
Binary files /dev/null and b/static/icons/06005F22.png differ
diff --git a/static/icons/06005F29.png b/static/icons/06005F29.png
new file mode 100755
index 00000000..a4885949
Binary files /dev/null and b/static/icons/06005F29.png differ
diff --git a/static/icons/06005F2A.png b/static/icons/06005F2A.png
new file mode 100755
index 00000000..d25710ad
Binary files /dev/null and b/static/icons/06005F2A.png differ
diff --git a/static/icons/06005F2C.png b/static/icons/06005F2C.png
new file mode 100755
index 00000000..cd85ad23
Binary files /dev/null and b/static/icons/06005F2C.png differ
diff --git a/static/icons/06005F2D.png b/static/icons/06005F2D.png
new file mode 100755
index 00000000..3c61fc2e
Binary files /dev/null and b/static/icons/06005F2D.png differ
diff --git a/static/icons/06005F2E.png b/static/icons/06005F2E.png
new file mode 100755
index 00000000..8410145e
Binary files /dev/null and b/static/icons/06005F2E.png differ
diff --git a/static/icons/06005F2F.png b/static/icons/06005F2F.png
new file mode 100755
index 00000000..60bc0639
Binary files /dev/null and b/static/icons/06005F2F.png differ
diff --git a/static/icons/06005F30.png b/static/icons/06005F30.png
new file mode 100755
index 00000000..0ff44b90
Binary files /dev/null and b/static/icons/06005F30.png differ
diff --git a/static/icons/06005F31.png b/static/icons/06005F31.png
new file mode 100755
index 00000000..771cfae8
Binary files /dev/null and b/static/icons/06005F31.png differ
diff --git a/static/icons/06005F32.png b/static/icons/06005F32.png
new file mode 100755
index 00000000..8ebefc58
Binary files /dev/null and b/static/icons/06005F32.png differ
diff --git a/static/icons/06005F33.png b/static/icons/06005F33.png
new file mode 100755
index 00000000..b835d6ea
Binary files /dev/null and b/static/icons/06005F33.png differ
diff --git a/static/icons/06005F34.png b/static/icons/06005F34.png
new file mode 100755
index 00000000..1d8f65b7
Binary files /dev/null and b/static/icons/06005F34.png differ
diff --git a/static/icons/06005F35.png b/static/icons/06005F35.png
new file mode 100755
index 00000000..df3f075c
Binary files /dev/null and b/static/icons/06005F35.png differ
diff --git a/static/icons/06005F36.png b/static/icons/06005F36.png
new file mode 100755
index 00000000..b2ca3586
Binary files /dev/null and b/static/icons/06005F36.png differ
diff --git a/static/icons/06005F37.png b/static/icons/06005F37.png
new file mode 100755
index 00000000..93a11592
Binary files /dev/null and b/static/icons/06005F37.png differ
diff --git a/static/icons/06005F38.png b/static/icons/06005F38.png
new file mode 100755
index 00000000..c5f733e3
Binary files /dev/null and b/static/icons/06005F38.png differ
diff --git a/static/icons/06005F3C.png b/static/icons/06005F3C.png
new file mode 100755
index 00000000..c18f1fcb
Binary files /dev/null and b/static/icons/06005F3C.png differ
diff --git a/static/icons/06005F3D.png b/static/icons/06005F3D.png
new file mode 100755
index 00000000..25d3068f
Binary files /dev/null and b/static/icons/06005F3D.png differ
diff --git a/static/icons/06005F3E.png b/static/icons/06005F3E.png
new file mode 100755
index 00000000..1575c300
Binary files /dev/null and b/static/icons/06005F3E.png differ
diff --git a/static/icons/06005F3F.png b/static/icons/06005F3F.png
new file mode 100755
index 00000000..81f37ce4
Binary files /dev/null and b/static/icons/06005F3F.png differ
diff --git a/static/icons/06005F40.png b/static/icons/06005F40.png
new file mode 100755
index 00000000..b4dbe6cd
Binary files /dev/null and b/static/icons/06005F40.png differ
diff --git a/static/icons/06005F41.png b/static/icons/06005F41.png
new file mode 100755
index 00000000..03f989e3
Binary files /dev/null and b/static/icons/06005F41.png differ
diff --git a/static/icons/06005F42.png b/static/icons/06005F42.png
new file mode 100755
index 00000000..276224c7
Binary files /dev/null and b/static/icons/06005F42.png differ
diff --git a/static/icons/06005F43.png b/static/icons/06005F43.png
new file mode 100755
index 00000000..e082e9de
Binary files /dev/null and b/static/icons/06005F43.png differ
diff --git a/static/icons/06005F44.png b/static/icons/06005F44.png
new file mode 100755
index 00000000..42f57b83
Binary files /dev/null and b/static/icons/06005F44.png differ
diff --git a/static/icons/06005F45.png b/static/icons/06005F45.png
new file mode 100755
index 00000000..646d518c
Binary files /dev/null and b/static/icons/06005F45.png differ
diff --git a/static/icons/06005F46.png b/static/icons/06005F46.png
new file mode 100755
index 00000000..e6b90cc2
Binary files /dev/null and b/static/icons/06005F46.png differ
diff --git a/static/icons/06005F48.png b/static/icons/06005F48.png
new file mode 100755
index 00000000..6fe9960c
Binary files /dev/null and b/static/icons/06005F48.png differ
diff --git a/static/icons/06005F49.png b/static/icons/06005F49.png
new file mode 100755
index 00000000..083ddd05
Binary files /dev/null and b/static/icons/06005F49.png differ
diff --git a/static/icons/06005F4A.png b/static/icons/06005F4A.png
new file mode 100755
index 00000000..b324d067
Binary files /dev/null and b/static/icons/06005F4A.png differ
diff --git a/static/icons/06005F4B.png b/static/icons/06005F4B.png
new file mode 100755
index 00000000..c98f59cb
Binary files /dev/null and b/static/icons/06005F4B.png differ
diff --git a/static/icons/06005F4C.png b/static/icons/06005F4C.png
new file mode 100755
index 00000000..aafc5655
Binary files /dev/null and b/static/icons/06005F4C.png differ
diff --git a/static/icons/06005F4D.png b/static/icons/06005F4D.png
new file mode 100755
index 00000000..4fcd2fa3
Binary files /dev/null and b/static/icons/06005F4D.png differ
diff --git a/static/icons/06005F4E.png b/static/icons/06005F4E.png
new file mode 100755
index 00000000..c4a48f0b
Binary files /dev/null and b/static/icons/06005F4E.png differ
diff --git a/static/icons/06005F4F.png b/static/icons/06005F4F.png
new file mode 100755
index 00000000..24d033ea
Binary files /dev/null and b/static/icons/06005F4F.png differ
diff --git a/static/icons/06005F50.png b/static/icons/06005F50.png
new file mode 100755
index 00000000..69c90cba
Binary files /dev/null and b/static/icons/06005F50.png differ
diff --git a/static/icons/06005F51.png b/static/icons/06005F51.png
new file mode 100755
index 00000000..ce9c6ba9
Binary files /dev/null and b/static/icons/06005F51.png differ
diff --git a/static/icons/06005F52.png b/static/icons/06005F52.png
new file mode 100755
index 00000000..1f63ebd8
Binary files /dev/null and b/static/icons/06005F52.png differ
diff --git a/static/icons/06005F53.png b/static/icons/06005F53.png
new file mode 100755
index 00000000..33e8ec45
Binary files /dev/null and b/static/icons/06005F53.png differ
diff --git a/static/icons/06005F54.png b/static/icons/06005F54.png
new file mode 100755
index 00000000..d1496625
Binary files /dev/null and b/static/icons/06005F54.png differ
diff --git a/static/icons/06005F55.png b/static/icons/06005F55.png
new file mode 100755
index 00000000..85faf0b2
Binary files /dev/null and b/static/icons/06005F55.png differ
diff --git a/static/icons/06005F56.png b/static/icons/06005F56.png
new file mode 100755
index 00000000..da3cbd49
Binary files /dev/null and b/static/icons/06005F56.png differ
diff --git a/static/icons/06005F57.png b/static/icons/06005F57.png
new file mode 100755
index 00000000..4d963038
Binary files /dev/null and b/static/icons/06005F57.png differ
diff --git a/static/icons/06005F58.png b/static/icons/06005F58.png
new file mode 100755
index 00000000..a4ec2c2d
Binary files /dev/null and b/static/icons/06005F58.png differ
diff --git a/static/icons/06005F59.png b/static/icons/06005F59.png
new file mode 100755
index 00000000..c09d31f5
Binary files /dev/null and b/static/icons/06005F59.png differ
diff --git a/static/icons/06005F5A.png b/static/icons/06005F5A.png
new file mode 100755
index 00000000..06c87446
Binary files /dev/null and b/static/icons/06005F5A.png differ
diff --git a/static/icons/06005F5B.png b/static/icons/06005F5B.png
new file mode 100755
index 00000000..7c99b913
Binary files /dev/null and b/static/icons/06005F5B.png differ
diff --git a/static/icons/06005F5C.png b/static/icons/06005F5C.png
new file mode 100755
index 00000000..79083eb4
Binary files /dev/null and b/static/icons/06005F5C.png differ
diff --git a/static/icons/06005F5D.png b/static/icons/06005F5D.png
new file mode 100755
index 00000000..a04de924
Binary files /dev/null and b/static/icons/06005F5D.png differ
diff --git a/static/icons/06005F5E.png b/static/icons/06005F5E.png
new file mode 100755
index 00000000..a8b0aabe
Binary files /dev/null and b/static/icons/06005F5E.png differ
diff --git a/static/icons/06005F5F.png b/static/icons/06005F5F.png
new file mode 100755
index 00000000..c93fc269
Binary files /dev/null and b/static/icons/06005F5F.png differ
diff --git a/static/icons/06005F60.png b/static/icons/06005F60.png
new file mode 100755
index 00000000..527759c5
Binary files /dev/null and b/static/icons/06005F60.png differ
diff --git a/static/icons/06005F62.png b/static/icons/06005F62.png
new file mode 100755
index 00000000..c0a65f9f
Binary files /dev/null and b/static/icons/06005F62.png differ
diff --git a/static/icons/06005F63.png b/static/icons/06005F63.png
new file mode 100755
index 00000000..f7f4b7f2
Binary files /dev/null and b/static/icons/06005F63.png differ
diff --git a/static/icons/06005F64.png b/static/icons/06005F64.png
new file mode 100755
index 00000000..85d06e07
Binary files /dev/null and b/static/icons/06005F64.png differ
diff --git a/static/icons/06005F65.png b/static/icons/06005F65.png
new file mode 100755
index 00000000..5a58049f
Binary files /dev/null and b/static/icons/06005F65.png differ
diff --git a/static/icons/06005F66.png b/static/icons/06005F66.png
new file mode 100755
index 00000000..cbb96594
Binary files /dev/null and b/static/icons/06005F66.png differ
diff --git a/static/icons/06005F67.png b/static/icons/06005F67.png
new file mode 100755
index 00000000..a4f83420
Binary files /dev/null and b/static/icons/06005F67.png differ
diff --git a/static/icons/06005F68.png b/static/icons/06005F68.png
new file mode 100755
index 00000000..68f88a50
Binary files /dev/null and b/static/icons/06005F68.png differ
diff --git a/static/icons/06005F69.png b/static/icons/06005F69.png
new file mode 100755
index 00000000..6b323379
Binary files /dev/null and b/static/icons/06005F69.png differ
diff --git a/static/icons/06005F6A.png b/static/icons/06005F6A.png
new file mode 100755
index 00000000..964202d8
Binary files /dev/null and b/static/icons/06005F6A.png differ
diff --git a/static/icons/06005F6B.png b/static/icons/06005F6B.png
new file mode 100755
index 00000000..b1d9d7bc
Binary files /dev/null and b/static/icons/06005F6B.png differ
diff --git a/static/icons/06005F6C.png b/static/icons/06005F6C.png
new file mode 100755
index 00000000..e923e24b
Binary files /dev/null and b/static/icons/06005F6C.png differ
diff --git a/static/icons/06005F6D.png b/static/icons/06005F6D.png
new file mode 100755
index 00000000..28829b8a
Binary files /dev/null and b/static/icons/06005F6D.png differ
diff --git a/static/icons/06005F6E.png b/static/icons/06005F6E.png
new file mode 100755
index 00000000..53a81969
Binary files /dev/null and b/static/icons/06005F6E.png differ
diff --git a/static/icons/06005F6F.png b/static/icons/06005F6F.png
new file mode 100755
index 00000000..2da66e4d
Binary files /dev/null and b/static/icons/06005F6F.png differ
diff --git a/static/icons/06005F77.png b/static/icons/06005F77.png
new file mode 100755
index 00000000..457eaab3
Binary files /dev/null and b/static/icons/06005F77.png differ
diff --git a/static/icons/06005F78.png b/static/icons/06005F78.png
new file mode 100755
index 00000000..21db014e
Binary files /dev/null and b/static/icons/06005F78.png differ
diff --git a/static/icons/06005F79.png b/static/icons/06005F79.png
new file mode 100755
index 00000000..fa7de186
Binary files /dev/null and b/static/icons/06005F79.png differ
diff --git a/static/icons/06005F7A.png b/static/icons/06005F7A.png
new file mode 100755
index 00000000..733d4569
Binary files /dev/null and b/static/icons/06005F7A.png differ
diff --git a/static/icons/06005F7B.png b/static/icons/06005F7B.png
new file mode 100755
index 00000000..cccc3e9f
Binary files /dev/null and b/static/icons/06005F7B.png differ
diff --git a/static/icons/06005F7C.png b/static/icons/06005F7C.png
new file mode 100755
index 00000000..421f560f
Binary files /dev/null and b/static/icons/06005F7C.png differ
diff --git a/static/icons/06005F7D.png b/static/icons/06005F7D.png
new file mode 100755
index 00000000..5a6780c9
Binary files /dev/null and b/static/icons/06005F7D.png differ
diff --git a/static/icons/06005F85.png b/static/icons/06005F85.png
new file mode 100755
index 00000000..6978b07d
Binary files /dev/null and b/static/icons/06005F85.png differ
diff --git a/static/icons/06005F86.png b/static/icons/06005F86.png
new file mode 100755
index 00000000..46f887ae
Binary files /dev/null and b/static/icons/06005F86.png differ
diff --git a/static/icons/06005F87.png b/static/icons/06005F87.png
new file mode 100755
index 00000000..f2f251a9
Binary files /dev/null and b/static/icons/06005F87.png differ
diff --git a/static/icons/06005F88.png b/static/icons/06005F88.png
new file mode 100755
index 00000000..7f2aaed8
Binary files /dev/null and b/static/icons/06005F88.png differ
diff --git a/static/icons/06005F89.png b/static/icons/06005F89.png
new file mode 100755
index 00000000..de1c5bec
Binary files /dev/null and b/static/icons/06005F89.png differ
diff --git a/static/icons/06005F8A.png b/static/icons/06005F8A.png
new file mode 100755
index 00000000..18e89a9e
Binary files /dev/null and b/static/icons/06005F8A.png differ
diff --git a/static/icons/06005F8B.png b/static/icons/06005F8B.png
new file mode 100755
index 00000000..4864516a
Binary files /dev/null and b/static/icons/06005F8B.png differ
diff --git a/static/icons/06005F8C.png b/static/icons/06005F8C.png
new file mode 100755
index 00000000..f47ed41c
Binary files /dev/null and b/static/icons/06005F8C.png differ
diff --git a/static/icons/06005F8D.png b/static/icons/06005F8D.png
new file mode 100755
index 00000000..bd3c9371
Binary files /dev/null and b/static/icons/06005F8D.png differ
diff --git a/static/icons/06005F8E.png b/static/icons/06005F8E.png
new file mode 100755
index 00000000..96ce67bf
Binary files /dev/null and b/static/icons/06005F8E.png differ
diff --git a/static/icons/06005F8F.png b/static/icons/06005F8F.png
new file mode 100755
index 00000000..88258c3c
Binary files /dev/null and b/static/icons/06005F8F.png differ
diff --git a/static/icons/06005F90.png b/static/icons/06005F90.png
new file mode 100755
index 00000000..84722040
Binary files /dev/null and b/static/icons/06005F90.png differ
diff --git a/static/icons/06005F91.png b/static/icons/06005F91.png
new file mode 100755
index 00000000..93bdf0cb
Binary files /dev/null and b/static/icons/06005F91.png differ
diff --git a/static/icons/06005F92.png b/static/icons/06005F92.png
new file mode 100755
index 00000000..1390d8e9
Binary files /dev/null and b/static/icons/06005F92.png differ
diff --git a/static/icons/06005F93.png b/static/icons/06005F93.png
new file mode 100755
index 00000000..50e97172
Binary files /dev/null and b/static/icons/06005F93.png differ
diff --git a/static/icons/06005F94.png b/static/icons/06005F94.png
new file mode 100755
index 00000000..2a426a08
Binary files /dev/null and b/static/icons/06005F94.png differ
diff --git a/static/icons/06005F95.png b/static/icons/06005F95.png
new file mode 100755
index 00000000..1f8d4a2f
Binary files /dev/null and b/static/icons/06005F95.png differ
diff --git a/static/icons/06005F96.png b/static/icons/06005F96.png
new file mode 100755
index 00000000..3443714a
Binary files /dev/null and b/static/icons/06005F96.png differ
diff --git a/static/icons/06005F97.png b/static/icons/06005F97.png
new file mode 100755
index 00000000..b0b39a86
Binary files /dev/null and b/static/icons/06005F97.png differ
diff --git a/static/icons/06005F98.png b/static/icons/06005F98.png
new file mode 100755
index 00000000..c7c5cc91
Binary files /dev/null and b/static/icons/06005F98.png differ
diff --git a/static/icons/06005F99.png b/static/icons/06005F99.png
new file mode 100755
index 00000000..c0f3889d
Binary files /dev/null and b/static/icons/06005F99.png differ
diff --git a/static/icons/06005F9A.png b/static/icons/06005F9A.png
new file mode 100755
index 00000000..2da8270c
Binary files /dev/null and b/static/icons/06005F9A.png differ
diff --git a/static/icons/06005F9B.png b/static/icons/06005F9B.png
new file mode 100755
index 00000000..1d080cb4
Binary files /dev/null and b/static/icons/06005F9B.png differ
diff --git a/static/icons/06005F9C.png b/static/icons/06005F9C.png
new file mode 100755
index 00000000..9370a428
Binary files /dev/null and b/static/icons/06005F9C.png differ
diff --git a/static/icons/06005F9D.png b/static/icons/06005F9D.png
new file mode 100755
index 00000000..36c895e0
Binary files /dev/null and b/static/icons/06005F9D.png differ
diff --git a/static/icons/06005F9E.png b/static/icons/06005F9E.png
new file mode 100755
index 00000000..ab5a01f9
Binary files /dev/null and b/static/icons/06005F9E.png differ
diff --git a/static/icons/06005F9F.png b/static/icons/06005F9F.png
new file mode 100755
index 00000000..6ee96d2b
Binary files /dev/null and b/static/icons/06005F9F.png differ
diff --git a/static/icons/06005FA0.png b/static/icons/06005FA0.png
new file mode 100755
index 00000000..e772ea2c
Binary files /dev/null and b/static/icons/06005FA0.png differ
diff --git a/static/icons/06005FA1.png b/static/icons/06005FA1.png
new file mode 100755
index 00000000..0a297d36
Binary files /dev/null and b/static/icons/06005FA1.png differ
diff --git a/static/icons/06005FA2.png b/static/icons/06005FA2.png
new file mode 100755
index 00000000..9bb5f3bc
Binary files /dev/null and b/static/icons/06005FA2.png differ
diff --git a/static/icons/06005FA5.png b/static/icons/06005FA5.png
new file mode 100755
index 00000000..a1173927
Binary files /dev/null and b/static/icons/06005FA5.png differ
diff --git a/static/icons/06005FA6.png b/static/icons/06005FA6.png
new file mode 100755
index 00000000..b6aead67
Binary files /dev/null and b/static/icons/06005FA6.png differ
diff --git a/static/icons/06005FA7.png b/static/icons/06005FA7.png
new file mode 100755
index 00000000..125cde94
Binary files /dev/null and b/static/icons/06005FA7.png differ
diff --git a/static/icons/06005FA8.png b/static/icons/06005FA8.png
new file mode 100755
index 00000000..c103ea2f
Binary files /dev/null and b/static/icons/06005FA8.png differ
diff --git a/static/icons/06005FA9.png b/static/icons/06005FA9.png
new file mode 100755
index 00000000..c6c55fa9
Binary files /dev/null and b/static/icons/06005FA9.png differ
diff --git a/static/icons/06005FAA.png b/static/icons/06005FAA.png
new file mode 100755
index 00000000..b2ee4438
Binary files /dev/null and b/static/icons/06005FAA.png differ
diff --git a/static/icons/06005FAB.png b/static/icons/06005FAB.png
new file mode 100755
index 00000000..b033f016
Binary files /dev/null and b/static/icons/06005FAB.png differ
diff --git a/static/icons/06005FAC.png b/static/icons/06005FAC.png
new file mode 100755
index 00000000..2935e3cf
Binary files /dev/null and b/static/icons/06005FAC.png differ
diff --git a/static/icons/06005FAD.png b/static/icons/06005FAD.png
new file mode 100755
index 00000000..7947f305
Binary files /dev/null and b/static/icons/06005FAD.png differ
diff --git a/static/icons/06005FAE.png b/static/icons/06005FAE.png
new file mode 100755
index 00000000..982e5cc3
Binary files /dev/null and b/static/icons/06005FAE.png differ
diff --git a/static/icons/06005FAF.png b/static/icons/06005FAF.png
new file mode 100755
index 00000000..f4266886
Binary files /dev/null and b/static/icons/06005FAF.png differ
diff --git a/static/icons/06005FB0.png b/static/icons/06005FB0.png
new file mode 100755
index 00000000..3e2c68be
Binary files /dev/null and b/static/icons/06005FB0.png differ
diff --git a/static/icons/06005FB4.png b/static/icons/06005FB4.png
new file mode 100755
index 00000000..8fdc3185
Binary files /dev/null and b/static/icons/06005FB4.png differ
diff --git a/static/icons/06005FB5.png b/static/icons/06005FB5.png
new file mode 100755
index 00000000..13d33dc7
Binary files /dev/null and b/static/icons/06005FB5.png differ
diff --git a/static/icons/06005FB6.png b/static/icons/06005FB6.png
new file mode 100755
index 00000000..84f44722
Binary files /dev/null and b/static/icons/06005FB6.png differ
diff --git a/static/icons/06005FB7.png b/static/icons/06005FB7.png
new file mode 100755
index 00000000..1800bad4
Binary files /dev/null and b/static/icons/06005FB7.png differ
diff --git a/static/icons/06005FB8.png b/static/icons/06005FB8.png
new file mode 100755
index 00000000..76a907b2
Binary files /dev/null and b/static/icons/06005FB8.png differ
diff --git a/static/icons/06005FCA.png b/static/icons/06005FCA.png
new file mode 100755
index 00000000..68ae503f
Binary files /dev/null and b/static/icons/06005FCA.png differ
diff --git a/static/icons/06005FCB.png b/static/icons/06005FCB.png
new file mode 100755
index 00000000..9401d0af
Binary files /dev/null and b/static/icons/06005FCB.png differ
diff --git a/static/icons/06005FCC.png b/static/icons/06005FCC.png
new file mode 100755
index 00000000..d3104060
Binary files /dev/null and b/static/icons/06005FCC.png differ
diff --git a/static/icons/06005FCD.png b/static/icons/06005FCD.png
new file mode 100755
index 00000000..03228314
Binary files /dev/null and b/static/icons/06005FCD.png differ
diff --git a/static/icons/06005FCE.png b/static/icons/06005FCE.png
new file mode 100755
index 00000000..1be2532e
Binary files /dev/null and b/static/icons/06005FCE.png differ
diff --git a/static/icons/06005FCF.png b/static/icons/06005FCF.png
new file mode 100755
index 00000000..8205aed1
Binary files /dev/null and b/static/icons/06005FCF.png differ
diff --git a/static/icons/06005FD2.png b/static/icons/06005FD2.png
new file mode 100755
index 00000000..20fda018
Binary files /dev/null and b/static/icons/06005FD2.png differ
diff --git a/static/icons/06005FD3.png b/static/icons/06005FD3.png
new file mode 100755
index 00000000..4af37e46
Binary files /dev/null and b/static/icons/06005FD3.png differ
diff --git a/static/icons/06005FD4.png b/static/icons/06005FD4.png
new file mode 100755
index 00000000..bc64e4f3
Binary files /dev/null and b/static/icons/06005FD4.png differ
diff --git a/static/icons/06005FD5.png b/static/icons/06005FD5.png
new file mode 100755
index 00000000..7045681e
Binary files /dev/null and b/static/icons/06005FD5.png differ
diff --git a/static/icons/06005FD6.png b/static/icons/06005FD6.png
new file mode 100755
index 00000000..2f1d3a68
Binary files /dev/null and b/static/icons/06005FD6.png differ
diff --git a/static/icons/06005FD7.png b/static/icons/06005FD7.png
new file mode 100755
index 00000000..6f7bade8
Binary files /dev/null and b/static/icons/06005FD7.png differ
diff --git a/static/icons/06005FD8.png b/static/icons/06005FD8.png
new file mode 100755
index 00000000..f85337ba
Binary files /dev/null and b/static/icons/06005FD8.png differ
diff --git a/static/icons/06005FD9.png b/static/icons/06005FD9.png
new file mode 100755
index 00000000..2fd3dd9c
Binary files /dev/null and b/static/icons/06005FD9.png differ
diff --git a/static/icons/06005FDB.png b/static/icons/06005FDB.png
new file mode 100755
index 00000000..c6007031
Binary files /dev/null and b/static/icons/06005FDB.png differ
diff --git a/static/icons/06005FDC.png b/static/icons/06005FDC.png
new file mode 100755
index 00000000..e3a52e61
Binary files /dev/null and b/static/icons/06005FDC.png differ
diff --git a/static/icons/06005FDD.png b/static/icons/06005FDD.png
new file mode 100755
index 00000000..92f60336
Binary files /dev/null and b/static/icons/06005FDD.png differ
diff --git a/static/icons/06005FDE.png b/static/icons/06005FDE.png
new file mode 100755
index 00000000..24e64b8e
Binary files /dev/null and b/static/icons/06005FDE.png differ
diff --git a/static/icons/06005FDF.png b/static/icons/06005FDF.png
new file mode 100755
index 00000000..c5db96d7
Binary files /dev/null and b/static/icons/06005FDF.png differ
diff --git a/static/icons/06005FE0.png b/static/icons/06005FE0.png
new file mode 100755
index 00000000..ab371e5a
Binary files /dev/null and b/static/icons/06005FE0.png differ
diff --git a/static/icons/06005FE1.png b/static/icons/06005FE1.png
new file mode 100755
index 00000000..1236f393
Binary files /dev/null and b/static/icons/06005FE1.png differ
diff --git a/static/icons/06005FE2.png b/static/icons/06005FE2.png
new file mode 100755
index 00000000..4943f52d
Binary files /dev/null and b/static/icons/06005FE2.png differ
diff --git a/static/icons/06005FE3.png b/static/icons/06005FE3.png
new file mode 100755
index 00000000..9a7c32b3
Binary files /dev/null and b/static/icons/06005FE3.png differ
diff --git a/static/icons/06005FE4.png b/static/icons/06005FE4.png
new file mode 100755
index 00000000..9222b569
Binary files /dev/null and b/static/icons/06005FE4.png differ
diff --git a/static/icons/06005FE5.png b/static/icons/06005FE5.png
new file mode 100755
index 00000000..9521e497
Binary files /dev/null and b/static/icons/06005FE5.png differ
diff --git a/static/icons/06005FE6.png b/static/icons/06005FE6.png
new file mode 100755
index 00000000..44571043
Binary files /dev/null and b/static/icons/06005FE6.png differ
diff --git a/static/icons/06005FE7.png b/static/icons/06005FE7.png
new file mode 100755
index 00000000..246df893
Binary files /dev/null and b/static/icons/06005FE7.png differ
diff --git a/static/icons/06005FE8.png b/static/icons/06005FE8.png
new file mode 100755
index 00000000..1eb92102
Binary files /dev/null and b/static/icons/06005FE8.png differ
diff --git a/static/icons/06005FE9.png b/static/icons/06005FE9.png
new file mode 100755
index 00000000..ba7b691c
Binary files /dev/null and b/static/icons/06005FE9.png differ
diff --git a/static/icons/06005FEA.png b/static/icons/06005FEA.png
new file mode 100755
index 00000000..ddac96d8
Binary files /dev/null and b/static/icons/06005FEA.png differ
diff --git a/static/icons/06005FEB.png b/static/icons/06005FEB.png
new file mode 100755
index 00000000..32f8af99
Binary files /dev/null and b/static/icons/06005FEB.png differ
diff --git a/static/icons/06005FEC.png b/static/icons/06005FEC.png
new file mode 100755
index 00000000..3853c8f5
Binary files /dev/null and b/static/icons/06005FEC.png differ
diff --git a/static/icons/06005FED.png b/static/icons/06005FED.png
new file mode 100755
index 00000000..81b0ff33
Binary files /dev/null and b/static/icons/06005FED.png differ
diff --git a/static/icons/06005FEE.png b/static/icons/06005FEE.png
new file mode 100755
index 00000000..2ac12949
Binary files /dev/null and b/static/icons/06005FEE.png differ
diff --git a/static/icons/06005FEF.png b/static/icons/06005FEF.png
new file mode 100755
index 00000000..35ed8694
Binary files /dev/null and b/static/icons/06005FEF.png differ
diff --git a/static/icons/06005FF0.png b/static/icons/06005FF0.png
new file mode 100755
index 00000000..2a0b95ed
Binary files /dev/null and b/static/icons/06005FF0.png differ
diff --git a/static/icons/06005FF1.png b/static/icons/06005FF1.png
new file mode 100755
index 00000000..0b0299da
Binary files /dev/null and b/static/icons/06005FF1.png differ
diff --git a/static/icons/06005FF2.png b/static/icons/06005FF2.png
new file mode 100755
index 00000000..022aed68
Binary files /dev/null and b/static/icons/06005FF2.png differ
diff --git a/static/icons/06005FF3.png b/static/icons/06005FF3.png
new file mode 100755
index 00000000..2cc41243
Binary files /dev/null and b/static/icons/06005FF3.png differ
diff --git a/static/icons/06005FF4.png b/static/icons/06005FF4.png
new file mode 100755
index 00000000..5de1ac47
Binary files /dev/null and b/static/icons/06005FF4.png differ
diff --git a/static/icons/06005FF5.png b/static/icons/06005FF5.png
new file mode 100755
index 00000000..fb7f4278
Binary files /dev/null and b/static/icons/06005FF5.png differ
diff --git a/static/icons/06005FF6.png b/static/icons/06005FF6.png
new file mode 100755
index 00000000..798080ea
Binary files /dev/null and b/static/icons/06005FF6.png differ
diff --git a/static/icons/06005FF7.png b/static/icons/06005FF7.png
new file mode 100755
index 00000000..e87d4693
Binary files /dev/null and b/static/icons/06005FF7.png differ
diff --git a/static/icons/06005FF8.png b/static/icons/06005FF8.png
new file mode 100755
index 00000000..6df773a5
Binary files /dev/null and b/static/icons/06005FF8.png differ
diff --git a/static/icons/06005FF9.png b/static/icons/06005FF9.png
new file mode 100755
index 00000000..c6be28cc
Binary files /dev/null and b/static/icons/06005FF9.png differ
diff --git a/static/icons/06005FFA.png b/static/icons/06005FFA.png
new file mode 100755
index 00000000..4b690f08
Binary files /dev/null and b/static/icons/06005FFA.png differ
diff --git a/static/icons/06005FFB.png b/static/icons/06005FFB.png
new file mode 100755
index 00000000..05e01c26
Binary files /dev/null and b/static/icons/06005FFB.png differ
diff --git a/static/icons/06005FFC.png b/static/icons/06005FFC.png
new file mode 100755
index 00000000..b3463ee3
Binary files /dev/null and b/static/icons/06005FFC.png differ
diff --git a/static/icons/06005FFD.png b/static/icons/06005FFD.png
new file mode 100755
index 00000000..9a41f953
Binary files /dev/null and b/static/icons/06005FFD.png differ
diff --git a/static/icons/06005FFE.png b/static/icons/06005FFE.png
new file mode 100755
index 00000000..e7f72da6
Binary files /dev/null and b/static/icons/06005FFE.png differ
diff --git a/static/icons/06005FFF.png b/static/icons/06005FFF.png
new file mode 100755
index 00000000..9fc42db7
Binary files /dev/null and b/static/icons/06005FFF.png differ
diff --git a/static/icons/06006000.png b/static/icons/06006000.png
new file mode 100755
index 00000000..56065d8c
Binary files /dev/null and b/static/icons/06006000.png differ
diff --git a/static/icons/06006001.png b/static/icons/06006001.png
new file mode 100755
index 00000000..0128c491
Binary files /dev/null and b/static/icons/06006001.png differ
diff --git a/static/icons/06006002.png b/static/icons/06006002.png
new file mode 100755
index 00000000..15bf0a73
Binary files /dev/null and b/static/icons/06006002.png differ
diff --git a/static/icons/06006003.png b/static/icons/06006003.png
new file mode 100755
index 00000000..0a1d5ae8
Binary files /dev/null and b/static/icons/06006003.png differ
diff --git a/static/icons/06006004.png b/static/icons/06006004.png
new file mode 100755
index 00000000..4d3d9e6c
Binary files /dev/null and b/static/icons/06006004.png differ
diff --git a/static/icons/06006005.png b/static/icons/06006005.png
new file mode 100755
index 00000000..bf78992c
Binary files /dev/null and b/static/icons/06006005.png differ
diff --git a/static/icons/06006006.png b/static/icons/06006006.png
new file mode 100755
index 00000000..8c0ab3c3
Binary files /dev/null and b/static/icons/06006006.png differ
diff --git a/static/icons/06006007.png b/static/icons/06006007.png
new file mode 100755
index 00000000..2b093099
Binary files /dev/null and b/static/icons/06006007.png differ
diff --git a/static/icons/06006008.png b/static/icons/06006008.png
new file mode 100755
index 00000000..51bf90fb
Binary files /dev/null and b/static/icons/06006008.png differ
diff --git a/static/icons/06006009.png b/static/icons/06006009.png
new file mode 100755
index 00000000..c7c0e5e8
Binary files /dev/null and b/static/icons/06006009.png differ
diff --git a/static/icons/0600600A.png b/static/icons/0600600A.png
new file mode 100755
index 00000000..66953fee
Binary files /dev/null and b/static/icons/0600600A.png differ
diff --git a/static/icons/0600600B.png b/static/icons/0600600B.png
new file mode 100755
index 00000000..740412fd
Binary files /dev/null and b/static/icons/0600600B.png differ
diff --git a/static/icons/0600600C.png b/static/icons/0600600C.png
new file mode 100755
index 00000000..e36a1382
Binary files /dev/null and b/static/icons/0600600C.png differ
diff --git a/static/icons/0600600D.png b/static/icons/0600600D.png
new file mode 100755
index 00000000..966072f9
Binary files /dev/null and b/static/icons/0600600D.png differ
diff --git a/static/icons/0600600E.png b/static/icons/0600600E.png
new file mode 100755
index 00000000..f13002de
Binary files /dev/null and b/static/icons/0600600E.png differ
diff --git a/static/icons/0600600F.png b/static/icons/0600600F.png
new file mode 100755
index 00000000..82e25a57
Binary files /dev/null and b/static/icons/0600600F.png differ
diff --git a/static/icons/06006010.png b/static/icons/06006010.png
new file mode 100755
index 00000000..4eb41264
Binary files /dev/null and b/static/icons/06006010.png differ
diff --git a/static/icons/06006011.png b/static/icons/06006011.png
new file mode 100755
index 00000000..e40a04eb
Binary files /dev/null and b/static/icons/06006011.png differ
diff --git a/static/icons/06006012.png b/static/icons/06006012.png
new file mode 100755
index 00000000..13eeea11
Binary files /dev/null and b/static/icons/06006012.png differ
diff --git a/static/icons/06006013.png b/static/icons/06006013.png
new file mode 100755
index 00000000..77b27d17
Binary files /dev/null and b/static/icons/06006013.png differ
diff --git a/static/icons/06006016.png b/static/icons/06006016.png
new file mode 100755
index 00000000..dc54699a
Binary files /dev/null and b/static/icons/06006016.png differ
diff --git a/static/icons/06006017.png b/static/icons/06006017.png
new file mode 100755
index 00000000..10a65139
Binary files /dev/null and b/static/icons/06006017.png differ
diff --git a/static/icons/06006018.png b/static/icons/06006018.png
new file mode 100755
index 00000000..9b815d3f
Binary files /dev/null and b/static/icons/06006018.png differ
diff --git a/static/icons/06006019.png b/static/icons/06006019.png
new file mode 100755
index 00000000..467e601a
Binary files /dev/null and b/static/icons/06006019.png differ
diff --git a/static/icons/0600601A.png b/static/icons/0600601A.png
new file mode 100755
index 00000000..4def0af3
Binary files /dev/null and b/static/icons/0600601A.png differ
diff --git a/static/icons/0600601B.png b/static/icons/0600601B.png
new file mode 100755
index 00000000..3a0ad71f
Binary files /dev/null and b/static/icons/0600601B.png differ
diff --git a/static/icons/0600601C.png b/static/icons/0600601C.png
new file mode 100755
index 00000000..c1275153
Binary files /dev/null and b/static/icons/0600601C.png differ
diff --git a/static/icons/0600601D.png b/static/icons/0600601D.png
new file mode 100755
index 00000000..b14e0541
Binary files /dev/null and b/static/icons/0600601D.png differ
diff --git a/static/icons/0600601E.png b/static/icons/0600601E.png
new file mode 100755
index 00000000..bdbe125d
Binary files /dev/null and b/static/icons/0600601E.png differ
diff --git a/static/icons/0600601F.png b/static/icons/0600601F.png
new file mode 100755
index 00000000..9b12fa8a
Binary files /dev/null and b/static/icons/0600601F.png differ
diff --git a/static/icons/06006020.png b/static/icons/06006020.png
new file mode 100755
index 00000000..4517668d
Binary files /dev/null and b/static/icons/06006020.png differ
diff --git a/static/icons/06006021.png b/static/icons/06006021.png
new file mode 100755
index 00000000..ee8443b5
Binary files /dev/null and b/static/icons/06006021.png differ
diff --git a/static/icons/06006023.png b/static/icons/06006023.png
new file mode 100755
index 00000000..120aae59
Binary files /dev/null and b/static/icons/06006023.png differ
diff --git a/static/icons/06006024.png b/static/icons/06006024.png
new file mode 100755
index 00000000..9df333c9
Binary files /dev/null and b/static/icons/06006024.png differ
diff --git a/static/icons/06006025.png b/static/icons/06006025.png
new file mode 100755
index 00000000..f2afd57f
Binary files /dev/null and b/static/icons/06006025.png differ
diff --git a/static/icons/06006027.png b/static/icons/06006027.png
new file mode 100755
index 00000000..5c3ace60
Binary files /dev/null and b/static/icons/06006027.png differ
diff --git a/static/icons/06006029.png b/static/icons/06006029.png
new file mode 100755
index 00000000..6bb2f313
Binary files /dev/null and b/static/icons/06006029.png differ
diff --git a/static/icons/0600602A.png b/static/icons/0600602A.png
new file mode 100755
index 00000000..8cb93d1d
Binary files /dev/null and b/static/icons/0600602A.png differ
diff --git a/static/icons/0600602B.png b/static/icons/0600602B.png
new file mode 100755
index 00000000..ac84eb2b
Binary files /dev/null and b/static/icons/0600602B.png differ
diff --git a/static/icons/0600602C.png b/static/icons/0600602C.png
new file mode 100755
index 00000000..6efad9fc
Binary files /dev/null and b/static/icons/0600602C.png differ
diff --git a/static/icons/0600602D.png b/static/icons/0600602D.png
new file mode 100755
index 00000000..79280f32
Binary files /dev/null and b/static/icons/0600602D.png differ
diff --git a/static/icons/0600602E.png b/static/icons/0600602E.png
new file mode 100755
index 00000000..8fe1d165
Binary files /dev/null and b/static/icons/0600602E.png differ
diff --git a/static/icons/0600602F.png b/static/icons/0600602F.png
new file mode 100755
index 00000000..d1fb2bc6
Binary files /dev/null and b/static/icons/0600602F.png differ
diff --git a/static/icons/06006030.png b/static/icons/06006030.png
new file mode 100755
index 00000000..1e5af2de
Binary files /dev/null and b/static/icons/06006030.png differ
diff --git a/static/icons/06006031.png b/static/icons/06006031.png
new file mode 100755
index 00000000..8d238dae
Binary files /dev/null and b/static/icons/06006031.png differ
diff --git a/static/icons/06006032.png b/static/icons/06006032.png
new file mode 100755
index 00000000..6c6b20f4
Binary files /dev/null and b/static/icons/06006032.png differ
diff --git a/static/icons/06006033.png b/static/icons/06006033.png
new file mode 100755
index 00000000..dbdc6249
Binary files /dev/null and b/static/icons/06006033.png differ
diff --git a/static/icons/06006034.png b/static/icons/06006034.png
new file mode 100755
index 00000000..9f5d508c
Binary files /dev/null and b/static/icons/06006034.png differ
diff --git a/static/icons/06006035.png b/static/icons/06006035.png
new file mode 100755
index 00000000..4bcf6f68
Binary files /dev/null and b/static/icons/06006035.png differ
diff --git a/static/icons/06006037.png b/static/icons/06006037.png
new file mode 100755
index 00000000..f7ccc7a2
Binary files /dev/null and b/static/icons/06006037.png differ
diff --git a/static/icons/06006038.png b/static/icons/06006038.png
new file mode 100755
index 00000000..df0fd2d2
Binary files /dev/null and b/static/icons/06006038.png differ
diff --git a/static/icons/06006039.png b/static/icons/06006039.png
new file mode 100755
index 00000000..17b91c18
Binary files /dev/null and b/static/icons/06006039.png differ
diff --git a/static/icons/0600603A.png b/static/icons/0600603A.png
new file mode 100755
index 00000000..a5de3bf1
Binary files /dev/null and b/static/icons/0600603A.png differ
diff --git a/static/icons/0600603E.png b/static/icons/0600603E.png
new file mode 100755
index 00000000..0a7c68be
Binary files /dev/null and b/static/icons/0600603E.png differ
diff --git a/static/icons/0600603F.png b/static/icons/0600603F.png
new file mode 100755
index 00000000..ced22659
Binary files /dev/null and b/static/icons/0600603F.png differ
diff --git a/static/icons/06006040.png b/static/icons/06006040.png
new file mode 100755
index 00000000..3b6fab9a
Binary files /dev/null and b/static/icons/06006040.png differ
diff --git a/static/icons/06006041.png b/static/icons/06006041.png
new file mode 100755
index 00000000..6ecdef98
Binary files /dev/null and b/static/icons/06006041.png differ
diff --git a/static/icons/06006042.png b/static/icons/06006042.png
new file mode 100755
index 00000000..cca5c98a
Binary files /dev/null and b/static/icons/06006042.png differ
diff --git a/static/icons/06006043.png b/static/icons/06006043.png
new file mode 100755
index 00000000..8ea91a60
Binary files /dev/null and b/static/icons/06006043.png differ
diff --git a/static/icons/06006044.png b/static/icons/06006044.png
new file mode 100755
index 00000000..65067081
Binary files /dev/null and b/static/icons/06006044.png differ
diff --git a/static/icons/06006045.png b/static/icons/06006045.png
new file mode 100755
index 00000000..5fee47bc
Binary files /dev/null and b/static/icons/06006045.png differ
diff --git a/static/icons/06006046.png b/static/icons/06006046.png
new file mode 100755
index 00000000..b7f6533e
Binary files /dev/null and b/static/icons/06006046.png differ
diff --git a/static/icons/06006047.png b/static/icons/06006047.png
new file mode 100755
index 00000000..752a2009
Binary files /dev/null and b/static/icons/06006047.png differ
diff --git a/static/icons/06006048.png b/static/icons/06006048.png
new file mode 100755
index 00000000..f258c64b
Binary files /dev/null and b/static/icons/06006048.png differ
diff --git a/static/icons/06006049.png b/static/icons/06006049.png
new file mode 100755
index 00000000..6519d03d
Binary files /dev/null and b/static/icons/06006049.png differ
diff --git a/static/icons/0600604A.png b/static/icons/0600604A.png
new file mode 100755
index 00000000..b3a980e5
Binary files /dev/null and b/static/icons/0600604A.png differ
diff --git a/static/icons/0600604B.png b/static/icons/0600604B.png
new file mode 100755
index 00000000..1807b410
Binary files /dev/null and b/static/icons/0600604B.png differ
diff --git a/static/icons/0600604C.png b/static/icons/0600604C.png
new file mode 100755
index 00000000..b39d9cbc
Binary files /dev/null and b/static/icons/0600604C.png differ
diff --git a/static/icons/0600604F.png b/static/icons/0600604F.png
new file mode 100755
index 00000000..44e1867d
Binary files /dev/null and b/static/icons/0600604F.png differ
diff --git a/static/icons/06006050.png b/static/icons/06006050.png
new file mode 100755
index 00000000..f952fac7
Binary files /dev/null and b/static/icons/06006050.png differ
diff --git a/static/icons/06006051.png b/static/icons/06006051.png
new file mode 100755
index 00000000..58988aa0
Binary files /dev/null and b/static/icons/06006051.png differ
diff --git a/static/icons/06006052.png b/static/icons/06006052.png
new file mode 100755
index 00000000..f2fc910c
Binary files /dev/null and b/static/icons/06006052.png differ
diff --git a/static/icons/06006053.png b/static/icons/06006053.png
new file mode 100755
index 00000000..c6a2a6a0
Binary files /dev/null and b/static/icons/06006053.png differ
diff --git a/static/icons/06006054.png b/static/icons/06006054.png
new file mode 100755
index 00000000..a981e1c0
Binary files /dev/null and b/static/icons/06006054.png differ
diff --git a/static/icons/06006055.png b/static/icons/06006055.png
new file mode 100755
index 00000000..13b9a2ac
Binary files /dev/null and b/static/icons/06006055.png differ
diff --git a/static/icons/06006056.png b/static/icons/06006056.png
new file mode 100755
index 00000000..51e70abd
Binary files /dev/null and b/static/icons/06006056.png differ
diff --git a/static/icons/06006057.png b/static/icons/06006057.png
new file mode 100755
index 00000000..9705c49b
Binary files /dev/null and b/static/icons/06006057.png differ
diff --git a/static/icons/06006058.png b/static/icons/06006058.png
new file mode 100755
index 00000000..f7d8d7ac
Binary files /dev/null and b/static/icons/06006058.png differ
diff --git a/static/icons/06006059.png b/static/icons/06006059.png
new file mode 100755
index 00000000..e695cd77
Binary files /dev/null and b/static/icons/06006059.png differ
diff --git a/static/icons/0600605A.png b/static/icons/0600605A.png
new file mode 100755
index 00000000..96dc8682
Binary files /dev/null and b/static/icons/0600605A.png differ
diff --git a/static/icons/0600605B.png b/static/icons/0600605B.png
new file mode 100755
index 00000000..50e54bd7
Binary files /dev/null and b/static/icons/0600605B.png differ
diff --git a/static/icons/0600605C.png b/static/icons/0600605C.png
new file mode 100755
index 00000000..e6cf74f3
Binary files /dev/null and b/static/icons/0600605C.png differ
diff --git a/static/icons/0600605D.png b/static/icons/0600605D.png
new file mode 100755
index 00000000..83dbfc43
Binary files /dev/null and b/static/icons/0600605D.png differ
diff --git a/static/icons/0600605E.png b/static/icons/0600605E.png
new file mode 100755
index 00000000..a70735ba
Binary files /dev/null and b/static/icons/0600605E.png differ
diff --git a/static/icons/0600605F.png b/static/icons/0600605F.png
new file mode 100755
index 00000000..4f3fe451
Binary files /dev/null and b/static/icons/0600605F.png differ
diff --git a/static/icons/06006060.png b/static/icons/06006060.png
new file mode 100755
index 00000000..e354a16f
Binary files /dev/null and b/static/icons/06006060.png differ
diff --git a/static/icons/06006061.png b/static/icons/06006061.png
new file mode 100755
index 00000000..9e1b030b
Binary files /dev/null and b/static/icons/06006061.png differ
diff --git a/static/icons/06006062.png b/static/icons/06006062.png
new file mode 100755
index 00000000..72121640
Binary files /dev/null and b/static/icons/06006062.png differ
diff --git a/static/icons/06006063.png b/static/icons/06006063.png
new file mode 100755
index 00000000..6bf7763f
Binary files /dev/null and b/static/icons/06006063.png differ
diff --git a/static/icons/06006064.png b/static/icons/06006064.png
new file mode 100755
index 00000000..7c2e47af
Binary files /dev/null and b/static/icons/06006064.png differ
diff --git a/static/icons/06006066.png b/static/icons/06006066.png
new file mode 100755
index 00000000..04a7ef6e
Binary files /dev/null and b/static/icons/06006066.png differ
diff --git a/static/icons/06006067.png b/static/icons/06006067.png
new file mode 100755
index 00000000..ff4c0450
Binary files /dev/null and b/static/icons/06006067.png differ
diff --git a/static/icons/06006068.png b/static/icons/06006068.png
new file mode 100755
index 00000000..1731eae3
Binary files /dev/null and b/static/icons/06006068.png differ
diff --git a/static/icons/06006069.png b/static/icons/06006069.png
new file mode 100755
index 00000000..3c0e5fd0
Binary files /dev/null and b/static/icons/06006069.png differ
diff --git a/static/icons/0600606A.png b/static/icons/0600606A.png
new file mode 100755
index 00000000..a41fce27
Binary files /dev/null and b/static/icons/0600606A.png differ
diff --git a/static/icons/0600606C.png b/static/icons/0600606C.png
new file mode 100755
index 00000000..69383b7f
Binary files /dev/null and b/static/icons/0600606C.png differ
diff --git a/static/icons/0600606D.png b/static/icons/0600606D.png
new file mode 100755
index 00000000..c85cd29f
Binary files /dev/null and b/static/icons/0600606D.png differ
diff --git a/static/icons/0600606E.png b/static/icons/0600606E.png
new file mode 100755
index 00000000..ec4c46a8
Binary files /dev/null and b/static/icons/0600606E.png differ
diff --git a/static/icons/06006071.png b/static/icons/06006071.png
new file mode 100755
index 00000000..3dfe83af
Binary files /dev/null and b/static/icons/06006071.png differ
diff --git a/static/icons/06006072.png b/static/icons/06006072.png
new file mode 100755
index 00000000..e16f2c9e
Binary files /dev/null and b/static/icons/06006072.png differ
diff --git a/static/icons/06006073.png b/static/icons/06006073.png
new file mode 100755
index 00000000..5df9da9b
Binary files /dev/null and b/static/icons/06006073.png differ
diff --git a/static/icons/06006074.png b/static/icons/06006074.png
new file mode 100755
index 00000000..36212458
Binary files /dev/null and b/static/icons/06006074.png differ
diff --git a/static/icons/06006075.png b/static/icons/06006075.png
new file mode 100755
index 00000000..5663849a
Binary files /dev/null and b/static/icons/06006075.png differ
diff --git a/static/icons/06006076.png b/static/icons/06006076.png
new file mode 100755
index 00000000..965e7031
Binary files /dev/null and b/static/icons/06006076.png differ
diff --git a/static/icons/06006077.png b/static/icons/06006077.png
new file mode 100755
index 00000000..22ef87e8
Binary files /dev/null and b/static/icons/06006077.png differ
diff --git a/static/icons/06006078.png b/static/icons/06006078.png
new file mode 100755
index 00000000..62617ed3
Binary files /dev/null and b/static/icons/06006078.png differ
diff --git a/static/icons/06006079.png b/static/icons/06006079.png
new file mode 100755
index 00000000..34f44325
Binary files /dev/null and b/static/icons/06006079.png differ
diff --git a/static/icons/0600607A.png b/static/icons/0600607A.png
new file mode 100755
index 00000000..65e3e7ba
Binary files /dev/null and b/static/icons/0600607A.png differ
diff --git a/static/icons/0600607B.png b/static/icons/0600607B.png
new file mode 100755
index 00000000..cb841b42
Binary files /dev/null and b/static/icons/0600607B.png differ
diff --git a/static/icons/0600607C.png b/static/icons/0600607C.png
new file mode 100755
index 00000000..7bea93b0
Binary files /dev/null and b/static/icons/0600607C.png differ
diff --git a/static/icons/0600607D.png b/static/icons/0600607D.png
new file mode 100755
index 00000000..2933e6dd
Binary files /dev/null and b/static/icons/0600607D.png differ
diff --git a/static/icons/0600607E.png b/static/icons/0600607E.png
new file mode 100755
index 00000000..2185d6af
Binary files /dev/null and b/static/icons/0600607E.png differ
diff --git a/static/icons/0600607F.png b/static/icons/0600607F.png
new file mode 100755
index 00000000..85d8a095
Binary files /dev/null and b/static/icons/0600607F.png differ
diff --git a/static/icons/06006080.png b/static/icons/06006080.png
new file mode 100755
index 00000000..4ffffcf4
Binary files /dev/null and b/static/icons/06006080.png differ
diff --git a/static/icons/06006081.png b/static/icons/06006081.png
new file mode 100755
index 00000000..0eac5710
Binary files /dev/null and b/static/icons/06006081.png differ
diff --git a/static/icons/06006082.png b/static/icons/06006082.png
new file mode 100755
index 00000000..84ffc107
Binary files /dev/null and b/static/icons/06006082.png differ
diff --git a/static/icons/06006083.png b/static/icons/06006083.png
new file mode 100755
index 00000000..ef4eb424
Binary files /dev/null and b/static/icons/06006083.png differ
diff --git a/static/icons/06006084.png b/static/icons/06006084.png
new file mode 100755
index 00000000..31f971ca
Binary files /dev/null and b/static/icons/06006084.png differ
diff --git a/static/icons/06006085.png b/static/icons/06006085.png
new file mode 100755
index 00000000..58d6b84e
Binary files /dev/null and b/static/icons/06006085.png differ
diff --git a/static/icons/06006086.png b/static/icons/06006086.png
new file mode 100755
index 00000000..a8793db2
Binary files /dev/null and b/static/icons/06006086.png differ
diff --git a/static/icons/06006087.png b/static/icons/06006087.png
new file mode 100755
index 00000000..0aa62238
Binary files /dev/null and b/static/icons/06006087.png differ
diff --git a/static/icons/06006088.png b/static/icons/06006088.png
new file mode 100755
index 00000000..da548dd8
Binary files /dev/null and b/static/icons/06006088.png differ
diff --git a/static/icons/06006089.png b/static/icons/06006089.png
new file mode 100755
index 00000000..59ab4b85
Binary files /dev/null and b/static/icons/06006089.png differ
diff --git a/static/icons/0600608A.png b/static/icons/0600608A.png
new file mode 100755
index 00000000..719c986b
Binary files /dev/null and b/static/icons/0600608A.png differ
diff --git a/static/icons/0600608B.png b/static/icons/0600608B.png
new file mode 100755
index 00000000..83a2961c
Binary files /dev/null and b/static/icons/0600608B.png differ
diff --git a/static/icons/0600608C.png b/static/icons/0600608C.png
new file mode 100755
index 00000000..2618698f
Binary files /dev/null and b/static/icons/0600608C.png differ
diff --git a/static/icons/0600608D.png b/static/icons/0600608D.png
new file mode 100755
index 00000000..cea40c62
Binary files /dev/null and b/static/icons/0600608D.png differ
diff --git a/static/icons/0600608E.png b/static/icons/0600608E.png
new file mode 100755
index 00000000..af69e79c
Binary files /dev/null and b/static/icons/0600608E.png differ
diff --git a/static/icons/0600608F.png b/static/icons/0600608F.png
new file mode 100755
index 00000000..fcbe3175
Binary files /dev/null and b/static/icons/0600608F.png differ
diff --git a/static/icons/06006090.png b/static/icons/06006090.png
new file mode 100755
index 00000000..2e592c45
Binary files /dev/null and b/static/icons/06006090.png differ
diff --git a/static/icons/06006091.png b/static/icons/06006091.png
new file mode 100755
index 00000000..fed2f512
Binary files /dev/null and b/static/icons/06006091.png differ
diff --git a/static/icons/06006092.png b/static/icons/06006092.png
new file mode 100755
index 00000000..19de48e9
Binary files /dev/null and b/static/icons/06006092.png differ
diff --git a/static/icons/06006093.png b/static/icons/06006093.png
new file mode 100755
index 00000000..643d5ea4
Binary files /dev/null and b/static/icons/06006093.png differ
diff --git a/static/icons/06006094.png b/static/icons/06006094.png
new file mode 100755
index 00000000..56ac3767
Binary files /dev/null and b/static/icons/06006094.png differ
diff --git a/static/icons/06006095.png b/static/icons/06006095.png
new file mode 100755
index 00000000..49e945ed
Binary files /dev/null and b/static/icons/06006095.png differ
diff --git a/static/icons/06006096.png b/static/icons/06006096.png
new file mode 100755
index 00000000..55ec4f49
Binary files /dev/null and b/static/icons/06006096.png differ
diff --git a/static/icons/06006097.png b/static/icons/06006097.png
new file mode 100755
index 00000000..f33fcc39
Binary files /dev/null and b/static/icons/06006097.png differ
diff --git a/static/icons/06006098.png b/static/icons/06006098.png
new file mode 100755
index 00000000..70980354
Binary files /dev/null and b/static/icons/06006098.png differ
diff --git a/static/icons/06006099.png b/static/icons/06006099.png
new file mode 100755
index 00000000..56207968
Binary files /dev/null and b/static/icons/06006099.png differ
diff --git a/static/icons/0600609A.png b/static/icons/0600609A.png
new file mode 100755
index 00000000..7b44091d
Binary files /dev/null and b/static/icons/0600609A.png differ
diff --git a/static/icons/0600609B.png b/static/icons/0600609B.png
new file mode 100755
index 00000000..5c61dcad
Binary files /dev/null and b/static/icons/0600609B.png differ
diff --git a/static/icons/0600609C.png b/static/icons/0600609C.png
new file mode 100755
index 00000000..80fe4ada
Binary files /dev/null and b/static/icons/0600609C.png differ
diff --git a/static/icons/0600609D.png b/static/icons/0600609D.png
new file mode 100755
index 00000000..d3bedd22
Binary files /dev/null and b/static/icons/0600609D.png differ
diff --git a/static/icons/0600609E.png b/static/icons/0600609E.png
new file mode 100755
index 00000000..b7cb1345
Binary files /dev/null and b/static/icons/0600609E.png differ
diff --git a/static/icons/0600609F.png b/static/icons/0600609F.png
new file mode 100755
index 00000000..d1185cde
Binary files /dev/null and b/static/icons/0600609F.png differ
diff --git a/static/icons/060060A0.png b/static/icons/060060A0.png
new file mode 100755
index 00000000..5e13ca77
Binary files /dev/null and b/static/icons/060060A0.png differ
diff --git a/static/icons/060060A1.png b/static/icons/060060A1.png
new file mode 100755
index 00000000..6b31714e
Binary files /dev/null and b/static/icons/060060A1.png differ
diff --git a/static/icons/060060A2.png b/static/icons/060060A2.png
new file mode 100755
index 00000000..dde615be
Binary files /dev/null and b/static/icons/060060A2.png differ
diff --git a/static/icons/060060A3.png b/static/icons/060060A3.png
new file mode 100755
index 00000000..3ed9ffe7
Binary files /dev/null and b/static/icons/060060A3.png differ
diff --git a/static/icons/060060A4.png b/static/icons/060060A4.png
new file mode 100755
index 00000000..589e5765
Binary files /dev/null and b/static/icons/060060A4.png differ
diff --git a/static/icons/060060A5.png b/static/icons/060060A5.png
new file mode 100755
index 00000000..85554af8
Binary files /dev/null and b/static/icons/060060A5.png differ
diff --git a/static/icons/060060A6.png b/static/icons/060060A6.png
new file mode 100755
index 00000000..796e95c3
Binary files /dev/null and b/static/icons/060060A6.png differ
diff --git a/static/icons/060060A7.png b/static/icons/060060A7.png
new file mode 100755
index 00000000..da7187a7
Binary files /dev/null and b/static/icons/060060A7.png differ
diff --git a/static/icons/060060A8.png b/static/icons/060060A8.png
new file mode 100755
index 00000000..18cccda4
Binary files /dev/null and b/static/icons/060060A8.png differ
diff --git a/static/icons/060060A9.png b/static/icons/060060A9.png
new file mode 100755
index 00000000..abd83338
Binary files /dev/null and b/static/icons/060060A9.png differ
diff --git a/static/icons/060060AA.png b/static/icons/060060AA.png
new file mode 100755
index 00000000..999ad1bf
Binary files /dev/null and b/static/icons/060060AA.png differ
diff --git a/static/icons/060060AB.png b/static/icons/060060AB.png
new file mode 100755
index 00000000..d8c97df5
Binary files /dev/null and b/static/icons/060060AB.png differ
diff --git a/static/icons/060060AC.png b/static/icons/060060AC.png
new file mode 100755
index 00000000..5d0c6976
Binary files /dev/null and b/static/icons/060060AC.png differ
diff --git a/static/icons/060060AD.png b/static/icons/060060AD.png
new file mode 100755
index 00000000..b21c166d
Binary files /dev/null and b/static/icons/060060AD.png differ
diff --git a/static/icons/060060AE.png b/static/icons/060060AE.png
new file mode 100755
index 00000000..53100d48
Binary files /dev/null and b/static/icons/060060AE.png differ
diff --git a/static/icons/060060AF.png b/static/icons/060060AF.png
new file mode 100755
index 00000000..89188064
Binary files /dev/null and b/static/icons/060060AF.png differ
diff --git a/static/icons/060060B0.png b/static/icons/060060B0.png
new file mode 100755
index 00000000..12dda259
Binary files /dev/null and b/static/icons/060060B0.png differ
diff --git a/static/icons/060060B1.png b/static/icons/060060B1.png
new file mode 100755
index 00000000..0eb8e56b
Binary files /dev/null and b/static/icons/060060B1.png differ
diff --git a/static/icons/060060B2.png b/static/icons/060060B2.png
new file mode 100755
index 00000000..6319d908
Binary files /dev/null and b/static/icons/060060B2.png differ
diff --git a/static/icons/060060B3.png b/static/icons/060060B3.png
new file mode 100755
index 00000000..a18eccb5
Binary files /dev/null and b/static/icons/060060B3.png differ
diff --git a/static/icons/060060B4.png b/static/icons/060060B4.png
new file mode 100755
index 00000000..3dfde6b5
Binary files /dev/null and b/static/icons/060060B4.png differ
diff --git a/static/icons/060060B5.png b/static/icons/060060B5.png
new file mode 100755
index 00000000..88e22c62
Binary files /dev/null and b/static/icons/060060B5.png differ
diff --git a/static/icons/060060B6.png b/static/icons/060060B6.png
new file mode 100755
index 00000000..27bd737a
Binary files /dev/null and b/static/icons/060060B6.png differ
diff --git a/static/icons/060060B7.png b/static/icons/060060B7.png
new file mode 100755
index 00000000..57b56cf3
Binary files /dev/null and b/static/icons/060060B7.png differ
diff --git a/static/icons/060060B8.png b/static/icons/060060B8.png
new file mode 100755
index 00000000..800b8271
Binary files /dev/null and b/static/icons/060060B8.png differ
diff --git a/static/icons/060060B9.png b/static/icons/060060B9.png
new file mode 100755
index 00000000..9214f082
Binary files /dev/null and b/static/icons/060060B9.png differ
diff --git a/static/icons/060060BA.png b/static/icons/060060BA.png
new file mode 100755
index 00000000..0d4025a3
Binary files /dev/null and b/static/icons/060060BA.png differ
diff --git a/static/icons/060060BB.png b/static/icons/060060BB.png
new file mode 100755
index 00000000..fed41ea1
Binary files /dev/null and b/static/icons/060060BB.png differ
diff --git a/static/icons/060060BC.png b/static/icons/060060BC.png
new file mode 100755
index 00000000..5adaad70
Binary files /dev/null and b/static/icons/060060BC.png differ
diff --git a/static/icons/060060BD.png b/static/icons/060060BD.png
new file mode 100755
index 00000000..d3c53bae
Binary files /dev/null and b/static/icons/060060BD.png differ
diff --git a/static/icons/060060BE.png b/static/icons/060060BE.png
new file mode 100755
index 00000000..a4c7a2f3
Binary files /dev/null and b/static/icons/060060BE.png differ
diff --git a/static/icons/060060BF.png b/static/icons/060060BF.png
new file mode 100755
index 00000000..b38e7924
Binary files /dev/null and b/static/icons/060060BF.png differ
diff --git a/static/icons/060060C0.png b/static/icons/060060C0.png
new file mode 100755
index 00000000..1c8c943d
Binary files /dev/null and b/static/icons/060060C0.png differ
diff --git a/static/icons/060060C1.png b/static/icons/060060C1.png
new file mode 100755
index 00000000..e1e2c8ce
Binary files /dev/null and b/static/icons/060060C1.png differ
diff --git a/static/icons/060060C2.png b/static/icons/060060C2.png
new file mode 100755
index 00000000..ff74a2da
Binary files /dev/null and b/static/icons/060060C2.png differ
diff --git a/static/icons/060060C3.png b/static/icons/060060C3.png
new file mode 100755
index 00000000..c97246c1
Binary files /dev/null and b/static/icons/060060C3.png differ
diff --git a/static/icons/060060C4.png b/static/icons/060060C4.png
new file mode 100755
index 00000000..21a673b7
Binary files /dev/null and b/static/icons/060060C4.png differ
diff --git a/static/icons/060060C5.png b/static/icons/060060C5.png
new file mode 100755
index 00000000..3eb75d4f
Binary files /dev/null and b/static/icons/060060C5.png differ
diff --git a/static/icons/060060C6.png b/static/icons/060060C6.png
new file mode 100755
index 00000000..7328d1f0
Binary files /dev/null and b/static/icons/060060C6.png differ
diff --git a/static/icons/060060C7.png b/static/icons/060060C7.png
new file mode 100755
index 00000000..228a12bd
Binary files /dev/null and b/static/icons/060060C7.png differ
diff --git a/static/icons/060060C8.png b/static/icons/060060C8.png
new file mode 100755
index 00000000..158a75b9
Binary files /dev/null and b/static/icons/060060C8.png differ
diff --git a/static/icons/060060C9.png b/static/icons/060060C9.png
new file mode 100755
index 00000000..74cf1863
Binary files /dev/null and b/static/icons/060060C9.png differ
diff --git a/static/icons/060060CA.png b/static/icons/060060CA.png
new file mode 100755
index 00000000..7806e027
Binary files /dev/null and b/static/icons/060060CA.png differ
diff --git a/static/icons/060060CB.png b/static/icons/060060CB.png
new file mode 100755
index 00000000..cfd80238
Binary files /dev/null and b/static/icons/060060CB.png differ
diff --git a/static/icons/060060CC.png b/static/icons/060060CC.png
new file mode 100755
index 00000000..0fbdad6d
Binary files /dev/null and b/static/icons/060060CC.png differ
diff --git a/static/icons/060060CD.png b/static/icons/060060CD.png
new file mode 100755
index 00000000..0efbb5f9
Binary files /dev/null and b/static/icons/060060CD.png differ
diff --git a/static/icons/060060CE.png b/static/icons/060060CE.png
new file mode 100755
index 00000000..b99b3216
Binary files /dev/null and b/static/icons/060060CE.png differ
diff --git a/static/icons/060060CF.png b/static/icons/060060CF.png
new file mode 100755
index 00000000..77c3d568
Binary files /dev/null and b/static/icons/060060CF.png differ
diff --git a/static/icons/060060D0.png b/static/icons/060060D0.png
new file mode 100755
index 00000000..be943286
Binary files /dev/null and b/static/icons/060060D0.png differ
diff --git a/static/icons/060060D1.png b/static/icons/060060D1.png
new file mode 100755
index 00000000..8338c112
Binary files /dev/null and b/static/icons/060060D1.png differ
diff --git a/static/icons/060060D2.png b/static/icons/060060D2.png
new file mode 100755
index 00000000..1b0f354c
Binary files /dev/null and b/static/icons/060060D2.png differ
diff --git a/static/icons/060060D3.png b/static/icons/060060D3.png
new file mode 100755
index 00000000..db46179a
Binary files /dev/null and b/static/icons/060060D3.png differ
diff --git a/static/icons/060060D4.png b/static/icons/060060D4.png
new file mode 100755
index 00000000..60dd4e08
Binary files /dev/null and b/static/icons/060060D4.png differ
diff --git a/static/icons/060060D5.png b/static/icons/060060D5.png
new file mode 100755
index 00000000..356b30d8
Binary files /dev/null and b/static/icons/060060D5.png differ
diff --git a/static/icons/060060D6.png b/static/icons/060060D6.png
new file mode 100755
index 00000000..0b3952ae
Binary files /dev/null and b/static/icons/060060D6.png differ
diff --git a/static/icons/060060D7.png b/static/icons/060060D7.png
new file mode 100755
index 00000000..159f7580
Binary files /dev/null and b/static/icons/060060D7.png differ
diff --git a/static/icons/060060D8.png b/static/icons/060060D8.png
new file mode 100755
index 00000000..60dd4e08
Binary files /dev/null and b/static/icons/060060D8.png differ
diff --git a/static/icons/060060D9.png b/static/icons/060060D9.png
new file mode 100755
index 00000000..08116421
Binary files /dev/null and b/static/icons/060060D9.png differ
diff --git a/static/icons/060060DA.png b/static/icons/060060DA.png
new file mode 100755
index 00000000..b445c537
Binary files /dev/null and b/static/icons/060060DA.png differ
diff --git a/static/icons/060060DB.png b/static/icons/060060DB.png
new file mode 100755
index 00000000..959e88dd
Binary files /dev/null and b/static/icons/060060DB.png differ
diff --git a/static/icons/060060DC.png b/static/icons/060060DC.png
new file mode 100755
index 00000000..675623b9
Binary files /dev/null and b/static/icons/060060DC.png differ
diff --git a/static/icons/060060DD.png b/static/icons/060060DD.png
new file mode 100755
index 00000000..cb960045
Binary files /dev/null and b/static/icons/060060DD.png differ
diff --git a/static/icons/060060DE.png b/static/icons/060060DE.png
new file mode 100755
index 00000000..e6048de3
Binary files /dev/null and b/static/icons/060060DE.png differ
diff --git a/static/icons/060060DF.png b/static/icons/060060DF.png
new file mode 100755
index 00000000..0db17332
Binary files /dev/null and b/static/icons/060060DF.png differ
diff --git a/static/icons/060060E0.png b/static/icons/060060E0.png
new file mode 100755
index 00000000..96aedc04
Binary files /dev/null and b/static/icons/060060E0.png differ
diff --git a/static/icons/060060E1.png b/static/icons/060060E1.png
new file mode 100755
index 00000000..98a6768e
Binary files /dev/null and b/static/icons/060060E1.png differ
diff --git a/static/icons/060060E2.png b/static/icons/060060E2.png
new file mode 100755
index 00000000..be68f856
Binary files /dev/null and b/static/icons/060060E2.png differ
diff --git a/static/icons/060060E3.png b/static/icons/060060E3.png
new file mode 100755
index 00000000..8b4bfec0
Binary files /dev/null and b/static/icons/060060E3.png differ
diff --git a/static/icons/060060E4.png b/static/icons/060060E4.png
new file mode 100755
index 00000000..e6f16fb5
Binary files /dev/null and b/static/icons/060060E4.png differ
diff --git a/static/icons/060060E5.png b/static/icons/060060E5.png
new file mode 100755
index 00000000..2fcc1ee0
Binary files /dev/null and b/static/icons/060060E5.png differ
diff --git a/static/icons/060060E6.png b/static/icons/060060E6.png
new file mode 100755
index 00000000..9d25da36
Binary files /dev/null and b/static/icons/060060E6.png differ
diff --git a/static/icons/060060E7.png b/static/icons/060060E7.png
new file mode 100755
index 00000000..6b753bfe
Binary files /dev/null and b/static/icons/060060E7.png differ
diff --git a/static/icons/060060E8.png b/static/icons/060060E8.png
new file mode 100755
index 00000000..c40cdbfc
Binary files /dev/null and b/static/icons/060060E8.png differ
diff --git a/static/icons/060060E9.png b/static/icons/060060E9.png
new file mode 100755
index 00000000..b9fe1743
Binary files /dev/null and b/static/icons/060060E9.png differ
diff --git a/static/icons/060060EA.png b/static/icons/060060EA.png
new file mode 100755
index 00000000..d1564c56
Binary files /dev/null and b/static/icons/060060EA.png differ
diff --git a/static/icons/060060EB.png b/static/icons/060060EB.png
new file mode 100755
index 00000000..0c434f44
Binary files /dev/null and b/static/icons/060060EB.png differ
diff --git a/static/icons/060060EC.png b/static/icons/060060EC.png
new file mode 100755
index 00000000..eeb7e033
Binary files /dev/null and b/static/icons/060060EC.png differ
diff --git a/static/icons/060060F6.png b/static/icons/060060F6.png
new file mode 100755
index 00000000..22a2fec4
Binary files /dev/null and b/static/icons/060060F6.png differ
diff --git a/static/icons/060060F7.png b/static/icons/060060F7.png
new file mode 100755
index 00000000..1b816ceb
Binary files /dev/null and b/static/icons/060060F7.png differ
diff --git a/static/icons/060060F8.png b/static/icons/060060F8.png
new file mode 100755
index 00000000..d727c696
Binary files /dev/null and b/static/icons/060060F8.png differ
diff --git a/static/icons/060060F9.png b/static/icons/060060F9.png
new file mode 100755
index 00000000..7b173e01
Binary files /dev/null and b/static/icons/060060F9.png differ
diff --git a/static/icons/060060FA.png b/static/icons/060060FA.png
new file mode 100755
index 00000000..6e187036
Binary files /dev/null and b/static/icons/060060FA.png differ
diff --git a/static/icons/060060FB.png b/static/icons/060060FB.png
new file mode 100755
index 00000000..38b2dae5
Binary files /dev/null and b/static/icons/060060FB.png differ
diff --git a/static/icons/060060FC.png b/static/icons/060060FC.png
new file mode 100755
index 00000000..3d8f93e4
Binary files /dev/null and b/static/icons/060060FC.png differ
diff --git a/static/icons/060060FD.png b/static/icons/060060FD.png
new file mode 100755
index 00000000..fe589ed9
Binary files /dev/null and b/static/icons/060060FD.png differ
diff --git a/static/icons/060060FF.png b/static/icons/060060FF.png
new file mode 100755
index 00000000..efe480e9
Binary files /dev/null and b/static/icons/060060FF.png differ
diff --git a/static/icons/06006100.png b/static/icons/06006100.png
new file mode 100755
index 00000000..f4fac051
Binary files /dev/null and b/static/icons/06006100.png differ
diff --git a/static/icons/06006101.png b/static/icons/06006101.png
new file mode 100755
index 00000000..4a3433fb
Binary files /dev/null and b/static/icons/06006101.png differ
diff --git a/static/icons/06006102.png b/static/icons/06006102.png
new file mode 100755
index 00000000..4525def0
Binary files /dev/null and b/static/icons/06006102.png differ
diff --git a/static/icons/06006103.png b/static/icons/06006103.png
new file mode 100755
index 00000000..e08a11f4
Binary files /dev/null and b/static/icons/06006103.png differ
diff --git a/static/icons/0600610A.png b/static/icons/0600610A.png
new file mode 100755
index 00000000..e74101f6
Binary files /dev/null and b/static/icons/0600610A.png differ
diff --git a/static/icons/0600610B.png b/static/icons/0600610B.png
new file mode 100755
index 00000000..c9b408f7
Binary files /dev/null and b/static/icons/0600610B.png differ
diff --git a/static/icons/0600610C.png b/static/icons/0600610C.png
new file mode 100755
index 00000000..a988c8d0
Binary files /dev/null and b/static/icons/0600610C.png differ
diff --git a/static/icons/0600610D.png b/static/icons/0600610D.png
new file mode 100755
index 00000000..19a0bb51
Binary files /dev/null and b/static/icons/0600610D.png differ
diff --git a/static/icons/0600610E.png b/static/icons/0600610E.png
new file mode 100755
index 00000000..e92c2d8f
Binary files /dev/null and b/static/icons/0600610E.png differ
diff --git a/static/icons/0600610F.png b/static/icons/0600610F.png
new file mode 100755
index 00000000..d284a331
Binary files /dev/null and b/static/icons/0600610F.png differ
diff --git a/static/icons/06006112.png b/static/icons/06006112.png
new file mode 100755
index 00000000..393552f3
Binary files /dev/null and b/static/icons/06006112.png differ
diff --git a/static/icons/06006114.png b/static/icons/06006114.png
new file mode 100755
index 00000000..de250302
Binary files /dev/null and b/static/icons/06006114.png differ
diff --git a/static/icons/06006116.png b/static/icons/06006116.png
new file mode 100755
index 00000000..b6568a43
Binary files /dev/null and b/static/icons/06006116.png differ
diff --git a/static/icons/06006117.png b/static/icons/06006117.png
new file mode 100755
index 00000000..5216f8cb
Binary files /dev/null and b/static/icons/06006117.png differ
diff --git a/static/icons/06006118.png b/static/icons/06006118.png
new file mode 100755
index 00000000..824a9267
Binary files /dev/null and b/static/icons/06006118.png differ
diff --git a/static/icons/06006119.png b/static/icons/06006119.png
new file mode 100755
index 00000000..ae19c584
Binary files /dev/null and b/static/icons/06006119.png differ
diff --git a/static/icons/0600611C.png b/static/icons/0600611C.png
new file mode 100755
index 00000000..7ef46a1f
Binary files /dev/null and b/static/icons/0600611C.png differ
diff --git a/static/icons/0600611D.png b/static/icons/0600611D.png
new file mode 100755
index 00000000..97bcd631
Binary files /dev/null and b/static/icons/0600611D.png differ
diff --git a/static/icons/0600611E.png b/static/icons/0600611E.png
new file mode 100755
index 00000000..7ef64f65
Binary files /dev/null and b/static/icons/0600611E.png differ
diff --git a/static/icons/0600611F.png b/static/icons/0600611F.png
new file mode 100755
index 00000000..e3673d4e
Binary files /dev/null and b/static/icons/0600611F.png differ
diff --git a/static/icons/06006120.png b/static/icons/06006120.png
new file mode 100755
index 00000000..9b2fcad3
Binary files /dev/null and b/static/icons/06006120.png differ
diff --git a/static/icons/06006121.png b/static/icons/06006121.png
new file mode 100755
index 00000000..a2bf8570
Binary files /dev/null and b/static/icons/06006121.png differ
diff --git a/static/icons/06006122.png b/static/icons/06006122.png
new file mode 100755
index 00000000..99358de0
Binary files /dev/null and b/static/icons/06006122.png differ
diff --git a/static/icons/06006123.png b/static/icons/06006123.png
new file mode 100755
index 00000000..a68f6b10
Binary files /dev/null and b/static/icons/06006123.png differ
diff --git a/static/icons/06006126.png b/static/icons/06006126.png
new file mode 100755
index 00000000..45f99dcf
Binary files /dev/null and b/static/icons/06006126.png differ
diff --git a/static/icons/06006127.png b/static/icons/06006127.png
new file mode 100755
index 00000000..884f30e9
Binary files /dev/null and b/static/icons/06006127.png differ
diff --git a/static/icons/06006128.png b/static/icons/06006128.png
new file mode 100755
index 00000000..c1e45d15
Binary files /dev/null and b/static/icons/06006128.png differ
diff --git a/static/icons/06006129.png b/static/icons/06006129.png
new file mode 100755
index 00000000..8568aba1
Binary files /dev/null and b/static/icons/06006129.png differ
diff --git a/static/icons/0600612A.png b/static/icons/0600612A.png
new file mode 100755
index 00000000..56b49b65
Binary files /dev/null and b/static/icons/0600612A.png differ
diff --git a/static/icons/0600612B.png b/static/icons/0600612B.png
new file mode 100755
index 00000000..68b817d9
Binary files /dev/null and b/static/icons/0600612B.png differ
diff --git a/static/icons/0600612C.png b/static/icons/0600612C.png
new file mode 100755
index 00000000..98796d36
Binary files /dev/null and b/static/icons/0600612C.png differ
diff --git a/static/icons/0600612D.png b/static/icons/0600612D.png
new file mode 100755
index 00000000..aefdd082
Binary files /dev/null and b/static/icons/0600612D.png differ
diff --git a/static/icons/0600612E.png b/static/icons/0600612E.png
new file mode 100755
index 00000000..ca5177aa
Binary files /dev/null and b/static/icons/0600612E.png differ
diff --git a/static/icons/0600612F.png b/static/icons/0600612F.png
new file mode 100755
index 00000000..6c5f0cf3
Binary files /dev/null and b/static/icons/0600612F.png differ
diff --git a/static/icons/06006131.png b/static/icons/06006131.png
new file mode 100755
index 00000000..7fc0166d
Binary files /dev/null and b/static/icons/06006131.png differ
diff --git a/static/icons/06006132.png b/static/icons/06006132.png
new file mode 100755
index 00000000..1e0b392c
Binary files /dev/null and b/static/icons/06006132.png differ
diff --git a/static/icons/06006133.png b/static/icons/06006133.png
new file mode 100755
index 00000000..470ce700
Binary files /dev/null and b/static/icons/06006133.png differ
diff --git a/static/icons/06006134.png b/static/icons/06006134.png
new file mode 100755
index 00000000..7de417cb
Binary files /dev/null and b/static/icons/06006134.png differ
diff --git a/static/icons/0600613A.png b/static/icons/0600613A.png
new file mode 100755
index 00000000..a9bf9f0a
Binary files /dev/null and b/static/icons/0600613A.png differ
diff --git a/static/icons/0600613B.png b/static/icons/0600613B.png
new file mode 100755
index 00000000..f846b9e5
Binary files /dev/null and b/static/icons/0600613B.png differ
diff --git a/static/icons/0600613C.png b/static/icons/0600613C.png
new file mode 100755
index 00000000..02d640a8
Binary files /dev/null and b/static/icons/0600613C.png differ
diff --git a/static/icons/0600613D.png b/static/icons/0600613D.png
new file mode 100755
index 00000000..9cd13ac7
Binary files /dev/null and b/static/icons/0600613D.png differ
diff --git a/static/icons/0600613E.png b/static/icons/0600613E.png
new file mode 100755
index 00000000..401ba571
Binary files /dev/null and b/static/icons/0600613E.png differ
diff --git a/static/icons/0600613F.png b/static/icons/0600613F.png
new file mode 100755
index 00000000..41e7fe7c
Binary files /dev/null and b/static/icons/0600613F.png differ
diff --git a/static/icons/06006140.png b/static/icons/06006140.png
new file mode 100755
index 00000000..29be74b2
Binary files /dev/null and b/static/icons/06006140.png differ
diff --git a/static/icons/06006141.png b/static/icons/06006141.png
new file mode 100755
index 00000000..d4077faf
Binary files /dev/null and b/static/icons/06006141.png differ
diff --git a/static/icons/06006142.png b/static/icons/06006142.png
new file mode 100755
index 00000000..cfbafe6e
Binary files /dev/null and b/static/icons/06006142.png differ
diff --git a/static/icons/06006143.png b/static/icons/06006143.png
new file mode 100755
index 00000000..f16e77c3
Binary files /dev/null and b/static/icons/06006143.png differ
diff --git a/static/icons/06006144.png b/static/icons/06006144.png
new file mode 100755
index 00000000..64bf3954
Binary files /dev/null and b/static/icons/06006144.png differ
diff --git a/static/icons/06006145.png b/static/icons/06006145.png
new file mode 100755
index 00000000..dec147f7
Binary files /dev/null and b/static/icons/06006145.png differ
diff --git a/static/icons/06006146.png b/static/icons/06006146.png
new file mode 100755
index 00000000..c4a99c18
Binary files /dev/null and b/static/icons/06006146.png differ
diff --git a/static/icons/06006147.png b/static/icons/06006147.png
new file mode 100755
index 00000000..9e2809e4
Binary files /dev/null and b/static/icons/06006147.png differ
diff --git a/static/icons/06006148.png b/static/icons/06006148.png
new file mode 100755
index 00000000..cf6f1f3f
Binary files /dev/null and b/static/icons/06006148.png differ
diff --git a/static/icons/06006149.png b/static/icons/06006149.png
new file mode 100755
index 00000000..907c2456
Binary files /dev/null and b/static/icons/06006149.png differ
diff --git a/static/icons/0600614A.png b/static/icons/0600614A.png
new file mode 100755
index 00000000..335b8c7f
Binary files /dev/null and b/static/icons/0600614A.png differ
diff --git a/static/icons/0600614B.png b/static/icons/0600614B.png
new file mode 100755
index 00000000..36724e15
Binary files /dev/null and b/static/icons/0600614B.png differ
diff --git a/static/icons/0600614C.png b/static/icons/0600614C.png
new file mode 100755
index 00000000..ba517228
Binary files /dev/null and b/static/icons/0600614C.png differ
diff --git a/static/icons/0600614D.png b/static/icons/0600614D.png
new file mode 100755
index 00000000..07d03602
Binary files /dev/null and b/static/icons/0600614D.png differ
diff --git a/static/icons/0600614E.png b/static/icons/0600614E.png
new file mode 100755
index 00000000..de2f36d3
Binary files /dev/null and b/static/icons/0600614E.png differ
diff --git a/static/icons/0600614F.png b/static/icons/0600614F.png
new file mode 100755
index 00000000..7f03d450
Binary files /dev/null and b/static/icons/0600614F.png differ
diff --git a/static/icons/06006150.png b/static/icons/06006150.png
new file mode 100755
index 00000000..9dd693c7
Binary files /dev/null and b/static/icons/06006150.png differ
diff --git a/static/icons/06006151.png b/static/icons/06006151.png
new file mode 100755
index 00000000..a6cfc0c5
Binary files /dev/null and b/static/icons/06006151.png differ
diff --git a/static/icons/06006152.png b/static/icons/06006152.png
new file mode 100755
index 00000000..f97d2d87
Binary files /dev/null and b/static/icons/06006152.png differ
diff --git a/static/icons/06006153.png b/static/icons/06006153.png
new file mode 100755
index 00000000..0056a2fb
Binary files /dev/null and b/static/icons/06006153.png differ
diff --git a/static/icons/06006154.png b/static/icons/06006154.png
new file mode 100755
index 00000000..219e8cd4
Binary files /dev/null and b/static/icons/06006154.png differ
diff --git a/static/icons/06006155.png b/static/icons/06006155.png
new file mode 100755
index 00000000..b192506b
Binary files /dev/null and b/static/icons/06006155.png differ
diff --git a/static/icons/06006156.png b/static/icons/06006156.png
new file mode 100755
index 00000000..86427fa4
Binary files /dev/null and b/static/icons/06006156.png differ
diff --git a/static/icons/06006157.png b/static/icons/06006157.png
new file mode 100755
index 00000000..b7b8c130
Binary files /dev/null and b/static/icons/06006157.png differ
diff --git a/static/icons/06006158.png b/static/icons/06006158.png
new file mode 100755
index 00000000..8cec5f02
Binary files /dev/null and b/static/icons/06006158.png differ
diff --git a/static/icons/06006159.png b/static/icons/06006159.png
new file mode 100755
index 00000000..cd02b2da
Binary files /dev/null and b/static/icons/06006159.png differ
diff --git a/static/icons/0600615A.png b/static/icons/0600615A.png
new file mode 100755
index 00000000..10b71053
Binary files /dev/null and b/static/icons/0600615A.png differ
diff --git a/static/icons/0600615B.png b/static/icons/0600615B.png
new file mode 100755
index 00000000..e525d2ef
Binary files /dev/null and b/static/icons/0600615B.png differ
diff --git a/static/icons/0600615C.png b/static/icons/0600615C.png
new file mode 100755
index 00000000..ae15550a
Binary files /dev/null and b/static/icons/0600615C.png differ
diff --git a/static/icons/0600615D.png b/static/icons/0600615D.png
new file mode 100755
index 00000000..6a8436b8
Binary files /dev/null and b/static/icons/0600615D.png differ
diff --git a/static/icons/0600615E.png b/static/icons/0600615E.png
new file mode 100755
index 00000000..2db4778d
Binary files /dev/null and b/static/icons/0600615E.png differ
diff --git a/static/icons/0600615F.png b/static/icons/0600615F.png
new file mode 100755
index 00000000..67c49ec0
Binary files /dev/null and b/static/icons/0600615F.png differ
diff --git a/static/icons/06006160.png b/static/icons/06006160.png
new file mode 100755
index 00000000..c77ca960
Binary files /dev/null and b/static/icons/06006160.png differ
diff --git a/static/icons/06006161.png b/static/icons/06006161.png
new file mode 100755
index 00000000..252af122
Binary files /dev/null and b/static/icons/06006161.png differ
diff --git a/static/icons/06006162.png b/static/icons/06006162.png
new file mode 100755
index 00000000..49380c39
Binary files /dev/null and b/static/icons/06006162.png differ
diff --git a/static/icons/06006163.png b/static/icons/06006163.png
new file mode 100755
index 00000000..219eebeb
Binary files /dev/null and b/static/icons/06006163.png differ
diff --git a/static/icons/06006164.png b/static/icons/06006164.png
new file mode 100755
index 00000000..99be2fe8
Binary files /dev/null and b/static/icons/06006164.png differ
diff --git a/static/icons/06006165.png b/static/icons/06006165.png
new file mode 100755
index 00000000..1d57257a
Binary files /dev/null and b/static/icons/06006165.png differ
diff --git a/static/icons/06006166.png b/static/icons/06006166.png
new file mode 100755
index 00000000..e3d7c37b
Binary files /dev/null and b/static/icons/06006166.png differ
diff --git a/static/icons/06006167.png b/static/icons/06006167.png
new file mode 100755
index 00000000..35a8c4c3
Binary files /dev/null and b/static/icons/06006167.png differ
diff --git a/static/icons/06006168.png b/static/icons/06006168.png
new file mode 100755
index 00000000..0fac9900
Binary files /dev/null and b/static/icons/06006168.png differ
diff --git a/static/icons/06006169.png b/static/icons/06006169.png
new file mode 100755
index 00000000..24559bbe
Binary files /dev/null and b/static/icons/06006169.png differ
diff --git a/static/icons/0600616A.png b/static/icons/0600616A.png
new file mode 100755
index 00000000..5dc7df55
Binary files /dev/null and b/static/icons/0600616A.png differ
diff --git a/static/icons/0600616B.png b/static/icons/0600616B.png
new file mode 100755
index 00000000..9cd13ac7
Binary files /dev/null and b/static/icons/0600616B.png differ
diff --git a/static/icons/0600616C.png b/static/icons/0600616C.png
new file mode 100755
index 00000000..1a34dc02
Binary files /dev/null and b/static/icons/0600616C.png differ
diff --git a/static/icons/0600616D.png b/static/icons/0600616D.png
new file mode 100755
index 00000000..fa19bada
Binary files /dev/null and b/static/icons/0600616D.png differ
diff --git a/static/icons/0600616E.png b/static/icons/0600616E.png
new file mode 100755
index 00000000..869564d2
Binary files /dev/null and b/static/icons/0600616E.png differ
diff --git a/static/icons/0600616F.png b/static/icons/0600616F.png
new file mode 100755
index 00000000..78c88a6c
Binary files /dev/null and b/static/icons/0600616F.png differ
diff --git a/static/icons/06006170.png b/static/icons/06006170.png
new file mode 100755
index 00000000..a5dd84b2
Binary files /dev/null and b/static/icons/06006170.png differ
diff --git a/static/icons/06006175.png b/static/icons/06006175.png
new file mode 100755
index 00000000..51ce6ac8
Binary files /dev/null and b/static/icons/06006175.png differ
diff --git a/static/icons/06006176.png b/static/icons/06006176.png
new file mode 100755
index 00000000..36746aa6
Binary files /dev/null and b/static/icons/06006176.png differ
diff --git a/static/icons/06006177.png b/static/icons/06006177.png
new file mode 100755
index 00000000..e769a0eb
Binary files /dev/null and b/static/icons/06006177.png differ
diff --git a/static/icons/06006178.png b/static/icons/06006178.png
new file mode 100755
index 00000000..fd797c31
Binary files /dev/null and b/static/icons/06006178.png differ
diff --git a/static/icons/06006179.png b/static/icons/06006179.png
new file mode 100755
index 00000000..ce8e1456
Binary files /dev/null and b/static/icons/06006179.png differ
diff --git a/static/icons/0600617A.png b/static/icons/0600617A.png
new file mode 100755
index 00000000..89064369
Binary files /dev/null and b/static/icons/0600617A.png differ
diff --git a/static/icons/0600617B.png b/static/icons/0600617B.png
new file mode 100755
index 00000000..40f7f2b6
Binary files /dev/null and b/static/icons/0600617B.png differ
diff --git a/static/icons/0600617C.png b/static/icons/0600617C.png
new file mode 100755
index 00000000..22e85ff4
Binary files /dev/null and b/static/icons/0600617C.png differ
diff --git a/static/icons/0600617D.png b/static/icons/0600617D.png
new file mode 100755
index 00000000..c973f20f
Binary files /dev/null and b/static/icons/0600617D.png differ
diff --git a/static/icons/06006199.png b/static/icons/06006199.png
new file mode 100755
index 00000000..338586b2
Binary files /dev/null and b/static/icons/06006199.png differ
diff --git a/static/icons/0600619A.png b/static/icons/0600619A.png
new file mode 100755
index 00000000..5fdde2d8
Binary files /dev/null and b/static/icons/0600619A.png differ
diff --git a/static/icons/0600619B.png b/static/icons/0600619B.png
new file mode 100755
index 00000000..ff9150a2
Binary files /dev/null and b/static/icons/0600619B.png differ
diff --git a/static/icons/0600619C.png b/static/icons/0600619C.png
new file mode 100755
index 00000000..915f9c14
Binary files /dev/null and b/static/icons/0600619C.png differ
diff --git a/static/icons/0600619D.png b/static/icons/0600619D.png
new file mode 100755
index 00000000..18b5c58e
Binary files /dev/null and b/static/icons/0600619D.png differ
diff --git a/static/icons/0600619E.png b/static/icons/0600619E.png
new file mode 100755
index 00000000..78b3b7f9
Binary files /dev/null and b/static/icons/0600619E.png differ
diff --git a/static/icons/0600619F.png b/static/icons/0600619F.png
new file mode 100755
index 00000000..cb02c1e5
Binary files /dev/null and b/static/icons/0600619F.png differ
diff --git a/static/icons/060061A0.png b/static/icons/060061A0.png
new file mode 100755
index 00000000..f0f3bc5c
Binary files /dev/null and b/static/icons/060061A0.png differ
diff --git a/static/icons/060061A1.png b/static/icons/060061A1.png
new file mode 100755
index 00000000..3465a3fb
Binary files /dev/null and b/static/icons/060061A1.png differ
diff --git a/static/icons/060061B2.png b/static/icons/060061B2.png
new file mode 100755
index 00000000..d7f1fe2d
Binary files /dev/null and b/static/icons/060061B2.png differ
diff --git a/static/icons/060061B3.png b/static/icons/060061B3.png
new file mode 100755
index 00000000..bee6d6ec
Binary files /dev/null and b/static/icons/060061B3.png differ
diff --git a/static/icons/060061B5.png b/static/icons/060061B5.png
new file mode 100755
index 00000000..5dd68a7e
Binary files /dev/null and b/static/icons/060061B5.png differ
diff --git a/static/icons/060061B6.png b/static/icons/060061B6.png
new file mode 100755
index 00000000..dcd20b39
Binary files /dev/null and b/static/icons/060061B6.png differ
diff --git a/static/icons/060061B7.png b/static/icons/060061B7.png
new file mode 100755
index 00000000..c65ca3e1
Binary files /dev/null and b/static/icons/060061B7.png differ
diff --git a/static/icons/060061B8.png b/static/icons/060061B8.png
new file mode 100755
index 00000000..b737213e
Binary files /dev/null and b/static/icons/060061B8.png differ
diff --git a/static/icons/060061B9.png b/static/icons/060061B9.png
new file mode 100755
index 00000000..d73cf126
Binary files /dev/null and b/static/icons/060061B9.png differ
diff --git a/static/icons/060061BA.png b/static/icons/060061BA.png
new file mode 100755
index 00000000..b409a497
Binary files /dev/null and b/static/icons/060061BA.png differ
diff --git a/static/icons/060061BB.png b/static/icons/060061BB.png
new file mode 100755
index 00000000..6aaf78ba
Binary files /dev/null and b/static/icons/060061BB.png differ
diff --git a/static/icons/060061BC.png b/static/icons/060061BC.png
new file mode 100755
index 00000000..ae51a06a
Binary files /dev/null and b/static/icons/060061BC.png differ
diff --git a/static/icons/060061BD.png b/static/icons/060061BD.png
new file mode 100755
index 00000000..f4f8a6ff
Binary files /dev/null and b/static/icons/060061BD.png differ
diff --git a/static/icons/060061BE.png b/static/icons/060061BE.png
new file mode 100755
index 00000000..56c237de
Binary files /dev/null and b/static/icons/060061BE.png differ
diff --git a/static/icons/060061BF.png b/static/icons/060061BF.png
new file mode 100755
index 00000000..9bfb4f2e
Binary files /dev/null and b/static/icons/060061BF.png differ
diff --git a/static/icons/060061C0.png b/static/icons/060061C0.png
new file mode 100755
index 00000000..8a128f36
Binary files /dev/null and b/static/icons/060061C0.png differ
diff --git a/static/icons/060061C1.png b/static/icons/060061C1.png
new file mode 100755
index 00000000..c9295bc9
Binary files /dev/null and b/static/icons/060061C1.png differ
diff --git a/static/icons/060061C2.png b/static/icons/060061C2.png
new file mode 100755
index 00000000..dc6a8c78
Binary files /dev/null and b/static/icons/060061C2.png differ
diff --git a/static/icons/060061C3.png b/static/icons/060061C3.png
new file mode 100755
index 00000000..9616b384
Binary files /dev/null and b/static/icons/060061C3.png differ
diff --git a/static/icons/060061C4.png b/static/icons/060061C4.png
new file mode 100755
index 00000000..323064ac
Binary files /dev/null and b/static/icons/060061C4.png differ
diff --git a/static/icons/060061C5.png b/static/icons/060061C5.png
new file mode 100755
index 00000000..d709e81b
Binary files /dev/null and b/static/icons/060061C5.png differ
diff --git a/static/icons/060061C6.png b/static/icons/060061C6.png
new file mode 100755
index 00000000..7997c0f5
Binary files /dev/null and b/static/icons/060061C6.png differ
diff --git a/static/icons/060061C7.png b/static/icons/060061C7.png
new file mode 100755
index 00000000..c11e89d9
Binary files /dev/null and b/static/icons/060061C7.png differ
diff --git a/static/icons/060061C8.png b/static/icons/060061C8.png
new file mode 100755
index 00000000..581598dc
Binary files /dev/null and b/static/icons/060061C8.png differ
diff --git a/static/icons/060061C9.png b/static/icons/060061C9.png
new file mode 100755
index 00000000..8341032b
Binary files /dev/null and b/static/icons/060061C9.png differ
diff --git a/static/icons/060061CA.png b/static/icons/060061CA.png
new file mode 100755
index 00000000..9f140a08
Binary files /dev/null and b/static/icons/060061CA.png differ
diff --git a/static/icons/060061CB.png b/static/icons/060061CB.png
new file mode 100755
index 00000000..7efb9ef6
Binary files /dev/null and b/static/icons/060061CB.png differ
diff --git a/static/icons/060061CC.png b/static/icons/060061CC.png
new file mode 100755
index 00000000..b4cb617f
Binary files /dev/null and b/static/icons/060061CC.png differ
diff --git a/static/icons/060061CD.png b/static/icons/060061CD.png
new file mode 100755
index 00000000..906d8161
Binary files /dev/null and b/static/icons/060061CD.png differ
diff --git a/static/icons/060061CE.png b/static/icons/060061CE.png
new file mode 100755
index 00000000..38dddc1b
Binary files /dev/null and b/static/icons/060061CE.png differ
diff --git a/static/icons/060061CF.png b/static/icons/060061CF.png
new file mode 100755
index 00000000..e738cf6a
Binary files /dev/null and b/static/icons/060061CF.png differ
diff --git a/static/icons/060061D0.png b/static/icons/060061D0.png
new file mode 100755
index 00000000..ff90ff8b
Binary files /dev/null and b/static/icons/060061D0.png differ
diff --git a/static/icons/060061D1.png b/static/icons/060061D1.png
new file mode 100755
index 00000000..ba3b15cf
Binary files /dev/null and b/static/icons/060061D1.png differ
diff --git a/static/icons/060061D2.png b/static/icons/060061D2.png
new file mode 100755
index 00000000..e3f82fab
Binary files /dev/null and b/static/icons/060061D2.png differ
diff --git a/static/icons/060061D3.png b/static/icons/060061D3.png
new file mode 100755
index 00000000..26cd8282
Binary files /dev/null and b/static/icons/060061D3.png differ
diff --git a/static/icons/060061D4.png b/static/icons/060061D4.png
new file mode 100755
index 00000000..f11cbf22
Binary files /dev/null and b/static/icons/060061D4.png differ
diff --git a/static/icons/060061D5.png b/static/icons/060061D5.png
new file mode 100755
index 00000000..98c37bd2
Binary files /dev/null and b/static/icons/060061D5.png differ
diff --git a/static/icons/060061D6.png b/static/icons/060061D6.png
new file mode 100755
index 00000000..58916fd8
Binary files /dev/null and b/static/icons/060061D6.png differ
diff --git a/static/icons/060061D7.png b/static/icons/060061D7.png
new file mode 100755
index 00000000..eb598d03
Binary files /dev/null and b/static/icons/060061D7.png differ
diff --git a/static/icons/060061D8.png b/static/icons/060061D8.png
new file mode 100755
index 00000000..0eadcf80
Binary files /dev/null and b/static/icons/060061D8.png differ
diff --git a/static/icons/060061D9.png b/static/icons/060061D9.png
new file mode 100755
index 00000000..a1c3ecc1
Binary files /dev/null and b/static/icons/060061D9.png differ
diff --git a/static/icons/060061DA.png b/static/icons/060061DA.png
new file mode 100755
index 00000000..a1197835
Binary files /dev/null and b/static/icons/060061DA.png differ
diff --git a/static/icons/060061DB.png b/static/icons/060061DB.png
new file mode 100755
index 00000000..280e74c1
Binary files /dev/null and b/static/icons/060061DB.png differ
diff --git a/static/icons/060061DC.png b/static/icons/060061DC.png
new file mode 100755
index 00000000..2f10741f
Binary files /dev/null and b/static/icons/060061DC.png differ
diff --git a/static/icons/060061DD.png b/static/icons/060061DD.png
new file mode 100755
index 00000000..9a4448f5
Binary files /dev/null and b/static/icons/060061DD.png differ
diff --git a/static/icons/060061DE.png b/static/icons/060061DE.png
new file mode 100755
index 00000000..ae70ef3a
Binary files /dev/null and b/static/icons/060061DE.png differ
diff --git a/static/icons/060061DF.png b/static/icons/060061DF.png
new file mode 100755
index 00000000..d4c2a769
Binary files /dev/null and b/static/icons/060061DF.png differ
diff --git a/static/icons/060061E0.png b/static/icons/060061E0.png
new file mode 100755
index 00000000..e02e6731
Binary files /dev/null and b/static/icons/060061E0.png differ
diff --git a/static/icons/060061E1.png b/static/icons/060061E1.png
new file mode 100755
index 00000000..e5dc6958
Binary files /dev/null and b/static/icons/060061E1.png differ
diff --git a/static/icons/060061E2.png b/static/icons/060061E2.png
new file mode 100755
index 00000000..66e6ec7a
Binary files /dev/null and b/static/icons/060061E2.png differ
diff --git a/static/icons/060061E3.png b/static/icons/060061E3.png
new file mode 100755
index 00000000..7709a301
Binary files /dev/null and b/static/icons/060061E3.png differ
diff --git a/static/icons/060061E4.png b/static/icons/060061E4.png
new file mode 100755
index 00000000..9b5dc77a
Binary files /dev/null and b/static/icons/060061E4.png differ
diff --git a/static/icons/060061E5.png b/static/icons/060061E5.png
new file mode 100755
index 00000000..a9a99f8a
Binary files /dev/null and b/static/icons/060061E5.png differ
diff --git a/static/icons/060061E6.png b/static/icons/060061E6.png
new file mode 100755
index 00000000..824b46d0
Binary files /dev/null and b/static/icons/060061E6.png differ
diff --git a/static/icons/060061E7.png b/static/icons/060061E7.png
new file mode 100755
index 00000000..e8a51361
Binary files /dev/null and b/static/icons/060061E7.png differ
diff --git a/static/icons/060061E8.png b/static/icons/060061E8.png
new file mode 100755
index 00000000..3e3ba3f7
Binary files /dev/null and b/static/icons/060061E8.png differ
diff --git a/static/icons/060061E9.png b/static/icons/060061E9.png
new file mode 100755
index 00000000..13b51339
Binary files /dev/null and b/static/icons/060061E9.png differ
diff --git a/static/icons/060061EA.png b/static/icons/060061EA.png
new file mode 100755
index 00000000..0db5d6c6
Binary files /dev/null and b/static/icons/060061EA.png differ
diff --git a/static/icons/060061EB.png b/static/icons/060061EB.png
new file mode 100755
index 00000000..eebe3af3
Binary files /dev/null and b/static/icons/060061EB.png differ
diff --git a/static/icons/060061EC.png b/static/icons/060061EC.png
new file mode 100755
index 00000000..3d5ccc4d
Binary files /dev/null and b/static/icons/060061EC.png differ
diff --git a/static/icons/060061ED.png b/static/icons/060061ED.png
new file mode 100755
index 00000000..3bce9159
Binary files /dev/null and b/static/icons/060061ED.png differ
diff --git a/static/icons/060061EE.png b/static/icons/060061EE.png
new file mode 100755
index 00000000..76af2cb7
Binary files /dev/null and b/static/icons/060061EE.png differ
diff --git a/static/icons/060061EF.png b/static/icons/060061EF.png
new file mode 100755
index 00000000..d444c19e
Binary files /dev/null and b/static/icons/060061EF.png differ
diff --git a/static/icons/060061F0.png b/static/icons/060061F0.png
new file mode 100755
index 00000000..1cc38354
Binary files /dev/null and b/static/icons/060061F0.png differ
diff --git a/static/icons/060061F1.png b/static/icons/060061F1.png
new file mode 100755
index 00000000..b945a0bf
Binary files /dev/null and b/static/icons/060061F1.png differ
diff --git a/static/icons/060061F2.png b/static/icons/060061F2.png
new file mode 100755
index 00000000..598ca030
Binary files /dev/null and b/static/icons/060061F2.png differ
diff --git a/static/icons/060061F3.png b/static/icons/060061F3.png
new file mode 100755
index 00000000..fdb3f410
Binary files /dev/null and b/static/icons/060061F3.png differ
diff --git a/static/icons/060061F4.png b/static/icons/060061F4.png
new file mode 100755
index 00000000..1c0d5603
Binary files /dev/null and b/static/icons/060061F4.png differ
diff --git a/static/icons/060061F5.png b/static/icons/060061F5.png
new file mode 100755
index 00000000..09541662
Binary files /dev/null and b/static/icons/060061F5.png differ
diff --git a/static/icons/060061F6.png b/static/icons/060061F6.png
new file mode 100755
index 00000000..59316ee4
Binary files /dev/null and b/static/icons/060061F6.png differ
diff --git a/static/icons/060061F7.png b/static/icons/060061F7.png
new file mode 100755
index 00000000..8de72d63
Binary files /dev/null and b/static/icons/060061F7.png differ
diff --git a/static/icons/060061F8.png b/static/icons/060061F8.png
new file mode 100755
index 00000000..ba51988d
Binary files /dev/null and b/static/icons/060061F8.png differ
diff --git a/static/icons/060061F9.png b/static/icons/060061F9.png
new file mode 100755
index 00000000..992c4cad
Binary files /dev/null and b/static/icons/060061F9.png differ
diff --git a/static/icons/060061FA.png b/static/icons/060061FA.png
new file mode 100755
index 00000000..340d6c39
Binary files /dev/null and b/static/icons/060061FA.png differ
diff --git a/static/icons/060061FB.png b/static/icons/060061FB.png
new file mode 100755
index 00000000..8a8a1698
Binary files /dev/null and b/static/icons/060061FB.png differ
diff --git a/static/icons/060061FC.png b/static/icons/060061FC.png
new file mode 100755
index 00000000..9d323400
Binary files /dev/null and b/static/icons/060061FC.png differ
diff --git a/static/icons/060061FD.png b/static/icons/060061FD.png
new file mode 100755
index 00000000..67bccc4e
Binary files /dev/null and b/static/icons/060061FD.png differ
diff --git a/static/icons/060061FE.png b/static/icons/060061FE.png
new file mode 100755
index 00000000..60f79391
Binary files /dev/null and b/static/icons/060061FE.png differ
diff --git a/static/icons/060061FF.png b/static/icons/060061FF.png
new file mode 100755
index 00000000..8109fe28
Binary files /dev/null and b/static/icons/060061FF.png differ
diff --git a/static/icons/06006200.png b/static/icons/06006200.png
new file mode 100755
index 00000000..4d5ea88e
Binary files /dev/null and b/static/icons/06006200.png differ
diff --git a/static/icons/06006201.png b/static/icons/06006201.png
new file mode 100755
index 00000000..c38060fd
Binary files /dev/null and b/static/icons/06006201.png differ
diff --git a/static/icons/06006202.png b/static/icons/06006202.png
new file mode 100755
index 00000000..daccf93a
Binary files /dev/null and b/static/icons/06006202.png differ
diff --git a/static/icons/06006203.png b/static/icons/06006203.png
new file mode 100755
index 00000000..18e26266
Binary files /dev/null and b/static/icons/06006203.png differ
diff --git a/static/icons/06006204.png b/static/icons/06006204.png
new file mode 100755
index 00000000..33c4ace4
Binary files /dev/null and b/static/icons/06006204.png differ
diff --git a/static/icons/06006205.png b/static/icons/06006205.png
new file mode 100755
index 00000000..27f686bb
Binary files /dev/null and b/static/icons/06006205.png differ
diff --git a/static/icons/06006206.png b/static/icons/06006206.png
new file mode 100755
index 00000000..3c9ff90b
Binary files /dev/null and b/static/icons/06006206.png differ
diff --git a/static/icons/06006207.png b/static/icons/06006207.png
new file mode 100755
index 00000000..ffcab661
Binary files /dev/null and b/static/icons/06006207.png differ
diff --git a/static/icons/06006208.png b/static/icons/06006208.png
new file mode 100755
index 00000000..da824c1c
Binary files /dev/null and b/static/icons/06006208.png differ
diff --git a/static/icons/06006209.png b/static/icons/06006209.png
new file mode 100755
index 00000000..3fd70f8b
Binary files /dev/null and b/static/icons/06006209.png differ
diff --git a/static/icons/0600620A.png b/static/icons/0600620A.png
new file mode 100755
index 00000000..5bfeb5f7
Binary files /dev/null and b/static/icons/0600620A.png differ
diff --git a/static/icons/0600620B.png b/static/icons/0600620B.png
new file mode 100755
index 00000000..d43cd4d2
Binary files /dev/null and b/static/icons/0600620B.png differ
diff --git a/static/icons/0600620C.png b/static/icons/0600620C.png
new file mode 100755
index 00000000..4af6b87f
Binary files /dev/null and b/static/icons/0600620C.png differ
diff --git a/static/icons/0600620D.png b/static/icons/0600620D.png
new file mode 100755
index 00000000..a90294d7
Binary files /dev/null and b/static/icons/0600620D.png differ
diff --git a/static/icons/06006211.png b/static/icons/06006211.png
new file mode 100755
index 00000000..91ee08ac
Binary files /dev/null and b/static/icons/06006211.png differ
diff --git a/static/icons/06006212.png b/static/icons/06006212.png
new file mode 100755
index 00000000..e2724790
Binary files /dev/null and b/static/icons/06006212.png differ
diff --git a/static/icons/06006213.png b/static/icons/06006213.png
new file mode 100755
index 00000000..bb95defb
Binary files /dev/null and b/static/icons/06006213.png differ
diff --git a/static/icons/06006214.png b/static/icons/06006214.png
new file mode 100755
index 00000000..c4398f57
Binary files /dev/null and b/static/icons/06006214.png differ
diff --git a/static/icons/06006215.png b/static/icons/06006215.png
new file mode 100755
index 00000000..d2a825d1
Binary files /dev/null and b/static/icons/06006215.png differ
diff --git a/static/icons/06006216.png b/static/icons/06006216.png
new file mode 100755
index 00000000..1c6d843a
Binary files /dev/null and b/static/icons/06006216.png differ
diff --git a/static/icons/06006217.png b/static/icons/06006217.png
new file mode 100755
index 00000000..cc425756
Binary files /dev/null and b/static/icons/06006217.png differ
diff --git a/static/icons/06006218.png b/static/icons/06006218.png
new file mode 100755
index 00000000..c1a464b9
Binary files /dev/null and b/static/icons/06006218.png differ
diff --git a/static/icons/06006219.png b/static/icons/06006219.png
new file mode 100755
index 00000000..223b03f6
Binary files /dev/null and b/static/icons/06006219.png differ
diff --git a/static/icons/0600621A.png b/static/icons/0600621A.png
new file mode 100755
index 00000000..25229795
Binary files /dev/null and b/static/icons/0600621A.png differ
diff --git a/static/icons/0600621C.png b/static/icons/0600621C.png
new file mode 100755
index 00000000..21b1ccf9
Binary files /dev/null and b/static/icons/0600621C.png differ
diff --git a/static/icons/0600621D.png b/static/icons/0600621D.png
new file mode 100755
index 00000000..fb3666c3
Binary files /dev/null and b/static/icons/0600621D.png differ
diff --git a/static/icons/0600621E.png b/static/icons/0600621E.png
new file mode 100755
index 00000000..b5f6790b
Binary files /dev/null and b/static/icons/0600621E.png differ
diff --git a/static/icons/06006220.png b/static/icons/06006220.png
new file mode 100755
index 00000000..b0fb510e
Binary files /dev/null and b/static/icons/06006220.png differ
diff --git a/static/icons/06006221.png b/static/icons/06006221.png
new file mode 100755
index 00000000..042b3ffd
Binary files /dev/null and b/static/icons/06006221.png differ
diff --git a/static/icons/06006222.png b/static/icons/06006222.png
new file mode 100755
index 00000000..54971cc8
Binary files /dev/null and b/static/icons/06006222.png differ
diff --git a/static/icons/06006223.png b/static/icons/06006223.png
new file mode 100755
index 00000000..dd8b1e55
Binary files /dev/null and b/static/icons/06006223.png differ
diff --git a/static/icons/06006224.png b/static/icons/06006224.png
new file mode 100755
index 00000000..fee681cd
Binary files /dev/null and b/static/icons/06006224.png differ
diff --git a/static/icons/06006225.png b/static/icons/06006225.png
new file mode 100755
index 00000000..bb9a28bc
Binary files /dev/null and b/static/icons/06006225.png differ
diff --git a/static/icons/06006226.png b/static/icons/06006226.png
new file mode 100755
index 00000000..8f53b5d7
Binary files /dev/null and b/static/icons/06006226.png differ
diff --git a/static/icons/06006227.png b/static/icons/06006227.png
new file mode 100755
index 00000000..53bfa438
Binary files /dev/null and b/static/icons/06006227.png differ
diff --git a/static/icons/06006228.png b/static/icons/06006228.png
new file mode 100755
index 00000000..eda408dc
Binary files /dev/null and b/static/icons/06006228.png differ
diff --git a/static/icons/06006229.png b/static/icons/06006229.png
new file mode 100755
index 00000000..67489de1
Binary files /dev/null and b/static/icons/06006229.png differ
diff --git a/static/icons/0600622A.png b/static/icons/0600622A.png
new file mode 100755
index 00000000..73c73a68
Binary files /dev/null and b/static/icons/0600622A.png differ
diff --git a/static/icons/0600622B.png b/static/icons/0600622B.png
new file mode 100755
index 00000000..5cad55df
Binary files /dev/null and b/static/icons/0600622B.png differ
diff --git a/static/icons/0600622C.png b/static/icons/0600622C.png
new file mode 100755
index 00000000..663c9a5c
Binary files /dev/null and b/static/icons/0600622C.png differ
diff --git a/static/icons/0600622D.png b/static/icons/0600622D.png
new file mode 100755
index 00000000..d0d40c18
Binary files /dev/null and b/static/icons/0600622D.png differ
diff --git a/static/icons/0600622E.png b/static/icons/0600622E.png
new file mode 100755
index 00000000..509a5344
Binary files /dev/null and b/static/icons/0600622E.png differ
diff --git a/static/icons/0600622F.png b/static/icons/0600622F.png
new file mode 100755
index 00000000..459373fb
Binary files /dev/null and b/static/icons/0600622F.png differ
diff --git a/static/icons/06006230.png b/static/icons/06006230.png
new file mode 100755
index 00000000..0aebead2
Binary files /dev/null and b/static/icons/06006230.png differ
diff --git a/static/icons/06006231.png b/static/icons/06006231.png
new file mode 100755
index 00000000..b66ec6f0
Binary files /dev/null and b/static/icons/06006231.png differ
diff --git a/static/icons/06006232.png b/static/icons/06006232.png
new file mode 100755
index 00000000..e7216f3a
Binary files /dev/null and b/static/icons/06006232.png differ
diff --git a/static/icons/06006233.png b/static/icons/06006233.png
new file mode 100755
index 00000000..91a7eac1
Binary files /dev/null and b/static/icons/06006233.png differ
diff --git a/static/icons/06006234.png b/static/icons/06006234.png
new file mode 100755
index 00000000..45ddb672
Binary files /dev/null and b/static/icons/06006234.png differ
diff --git a/static/icons/06006235.png b/static/icons/06006235.png
new file mode 100755
index 00000000..35f8f4d8
Binary files /dev/null and b/static/icons/06006235.png differ
diff --git a/static/icons/06006236.png b/static/icons/06006236.png
new file mode 100755
index 00000000..a6cbf89d
Binary files /dev/null and b/static/icons/06006236.png differ
diff --git a/static/icons/06006237.png b/static/icons/06006237.png
new file mode 100755
index 00000000..37bf73cc
Binary files /dev/null and b/static/icons/06006237.png differ
diff --git a/static/icons/06006238.png b/static/icons/06006238.png
new file mode 100755
index 00000000..e8ab5dcb
Binary files /dev/null and b/static/icons/06006238.png differ
diff --git a/static/icons/06006239.png b/static/icons/06006239.png
new file mode 100755
index 00000000..696f67ce
Binary files /dev/null and b/static/icons/06006239.png differ
diff --git a/static/icons/0600623A.png b/static/icons/0600623A.png
new file mode 100755
index 00000000..ce2fcce5
Binary files /dev/null and b/static/icons/0600623A.png differ
diff --git a/static/icons/0600623B.png b/static/icons/0600623B.png
new file mode 100755
index 00000000..7266ac8c
Binary files /dev/null and b/static/icons/0600623B.png differ
diff --git a/static/icons/0600623C.png b/static/icons/0600623C.png
new file mode 100755
index 00000000..bac73994
Binary files /dev/null and b/static/icons/0600623C.png differ
diff --git a/static/icons/0600623D.png b/static/icons/0600623D.png
new file mode 100755
index 00000000..c25d0462
Binary files /dev/null and b/static/icons/0600623D.png differ
diff --git a/static/icons/0600623E.png b/static/icons/0600623E.png
new file mode 100755
index 00000000..e51c34d8
Binary files /dev/null and b/static/icons/0600623E.png differ
diff --git a/static/icons/0600623F.png b/static/icons/0600623F.png
new file mode 100755
index 00000000..fd5c567e
Binary files /dev/null and b/static/icons/0600623F.png differ
diff --git a/static/icons/06006240.png b/static/icons/06006240.png
new file mode 100755
index 00000000..46258736
Binary files /dev/null and b/static/icons/06006240.png differ
diff --git a/static/icons/06006241.png b/static/icons/06006241.png
new file mode 100755
index 00000000..7b2df452
Binary files /dev/null and b/static/icons/06006241.png differ
diff --git a/static/icons/06006242.png b/static/icons/06006242.png
new file mode 100755
index 00000000..12755ba6
Binary files /dev/null and b/static/icons/06006242.png differ
diff --git a/static/icons/06006244.png b/static/icons/06006244.png
new file mode 100755
index 00000000..c8aa6c16
Binary files /dev/null and b/static/icons/06006244.png differ
diff --git a/static/icons/06006245.png b/static/icons/06006245.png
new file mode 100755
index 00000000..4fd13d9f
Binary files /dev/null and b/static/icons/06006245.png differ
diff --git a/static/icons/06006246.png b/static/icons/06006246.png
new file mode 100755
index 00000000..95e3085b
Binary files /dev/null and b/static/icons/06006246.png differ
diff --git a/static/icons/06006247.png b/static/icons/06006247.png
new file mode 100755
index 00000000..9d971050
Binary files /dev/null and b/static/icons/06006247.png differ
diff --git a/static/icons/06006248.png b/static/icons/06006248.png
new file mode 100755
index 00000000..4fd13d9f
Binary files /dev/null and b/static/icons/06006248.png differ
diff --git a/static/icons/06006249.png b/static/icons/06006249.png
new file mode 100755
index 00000000..369d1e63
Binary files /dev/null and b/static/icons/06006249.png differ
diff --git a/static/icons/0600624A.png b/static/icons/0600624A.png
new file mode 100755
index 00000000..07b70eb2
Binary files /dev/null and b/static/icons/0600624A.png differ
diff --git a/static/icons/0600624B.png b/static/icons/0600624B.png
new file mode 100755
index 00000000..0e95729c
Binary files /dev/null and b/static/icons/0600624B.png differ
diff --git a/static/icons/0600624C.png b/static/icons/0600624C.png
new file mode 100755
index 00000000..187e305e
Binary files /dev/null and b/static/icons/0600624C.png differ
diff --git a/static/icons/0600624F.png b/static/icons/0600624F.png
new file mode 100755
index 00000000..928edc27
Binary files /dev/null and b/static/icons/0600624F.png differ
diff --git a/static/icons/06006250.png b/static/icons/06006250.png
new file mode 100755
index 00000000..87407575
Binary files /dev/null and b/static/icons/06006250.png differ
diff --git a/static/icons/06006251.png b/static/icons/06006251.png
new file mode 100755
index 00000000..6e9b110e
Binary files /dev/null and b/static/icons/06006251.png differ
diff --git a/static/icons/06006252.png b/static/icons/06006252.png
new file mode 100755
index 00000000..dd3e6bad
Binary files /dev/null and b/static/icons/06006252.png differ
diff --git a/static/icons/06006253.png b/static/icons/06006253.png
new file mode 100755
index 00000000..be9bfd73
Binary files /dev/null and b/static/icons/06006253.png differ
diff --git a/static/icons/06006254.png b/static/icons/06006254.png
new file mode 100755
index 00000000..63f2e4d9
Binary files /dev/null and b/static/icons/06006254.png differ
diff --git a/static/icons/06006255.png b/static/icons/06006255.png
new file mode 100755
index 00000000..9a6c9614
Binary files /dev/null and b/static/icons/06006255.png differ
diff --git a/static/icons/06006256.png b/static/icons/06006256.png
new file mode 100755
index 00000000..65aefcc1
Binary files /dev/null and b/static/icons/06006256.png differ
diff --git a/static/icons/06006257.png b/static/icons/06006257.png
new file mode 100755
index 00000000..81b05ebd
Binary files /dev/null and b/static/icons/06006257.png differ
diff --git a/static/icons/06006258.png b/static/icons/06006258.png
new file mode 100755
index 00000000..97255a3a
Binary files /dev/null and b/static/icons/06006258.png differ
diff --git a/static/icons/06006259.png b/static/icons/06006259.png
new file mode 100755
index 00000000..2a57a62e
Binary files /dev/null and b/static/icons/06006259.png differ
diff --git a/static/icons/0600625A.png b/static/icons/0600625A.png
new file mode 100755
index 00000000..84121ac4
Binary files /dev/null and b/static/icons/0600625A.png differ
diff --git a/static/icons/0600625B.png b/static/icons/0600625B.png
new file mode 100755
index 00000000..63f2e4d9
Binary files /dev/null and b/static/icons/0600625B.png differ
diff --git a/static/icons/0600625C.png b/static/icons/0600625C.png
new file mode 100755
index 00000000..cd1afa13
Binary files /dev/null and b/static/icons/0600625C.png differ
diff --git a/static/icons/0600625D.png b/static/icons/0600625D.png
new file mode 100755
index 00000000..21e16027
Binary files /dev/null and b/static/icons/0600625D.png differ
diff --git a/static/icons/0600625E.png b/static/icons/0600625E.png
new file mode 100755
index 00000000..608df057
Binary files /dev/null and b/static/icons/0600625E.png differ
diff --git a/static/icons/0600625F.png b/static/icons/0600625F.png
new file mode 100755
index 00000000..39ee023d
Binary files /dev/null and b/static/icons/0600625F.png differ
diff --git a/static/icons/06006260.png b/static/icons/06006260.png
new file mode 100755
index 00000000..2850f97f
Binary files /dev/null and b/static/icons/06006260.png differ
diff --git a/static/icons/06006262.png b/static/icons/06006262.png
new file mode 100755
index 00000000..5ecfee76
Binary files /dev/null and b/static/icons/06006262.png differ
diff --git a/static/icons/06006263.png b/static/icons/06006263.png
new file mode 100755
index 00000000..5d93ddd2
Binary files /dev/null and b/static/icons/06006263.png differ
diff --git a/static/icons/06006264.png b/static/icons/06006264.png
new file mode 100755
index 00000000..57a33764
Binary files /dev/null and b/static/icons/06006264.png differ
diff --git a/static/icons/06006265.png b/static/icons/06006265.png
new file mode 100755
index 00000000..a5fb53c1
Binary files /dev/null and b/static/icons/06006265.png differ
diff --git a/static/icons/06006266.png b/static/icons/06006266.png
new file mode 100755
index 00000000..7d76c67f
Binary files /dev/null and b/static/icons/06006266.png differ
diff --git a/static/icons/06006267.png b/static/icons/06006267.png
new file mode 100755
index 00000000..1f82db76
Binary files /dev/null and b/static/icons/06006267.png differ
diff --git a/static/icons/06006268.png b/static/icons/06006268.png
new file mode 100755
index 00000000..84842b9a
Binary files /dev/null and b/static/icons/06006268.png differ
diff --git a/static/icons/06006269.png b/static/icons/06006269.png
new file mode 100755
index 00000000..a156fe59
Binary files /dev/null and b/static/icons/06006269.png differ
diff --git a/static/icons/0600626A.png b/static/icons/0600626A.png
new file mode 100755
index 00000000..33c37439
Binary files /dev/null and b/static/icons/0600626A.png differ
diff --git a/static/icons/0600626B.png b/static/icons/0600626B.png
new file mode 100755
index 00000000..04a86473
Binary files /dev/null and b/static/icons/0600626B.png differ
diff --git a/static/icons/0600626C.png b/static/icons/0600626C.png
new file mode 100755
index 00000000..611404b6
Binary files /dev/null and b/static/icons/0600626C.png differ
diff --git a/static/icons/0600626D.png b/static/icons/0600626D.png
new file mode 100755
index 00000000..2dee9de1
Binary files /dev/null and b/static/icons/0600626D.png differ
diff --git a/static/icons/0600626E.png b/static/icons/0600626E.png
new file mode 100755
index 00000000..68514a85
Binary files /dev/null and b/static/icons/0600626E.png differ
diff --git a/static/icons/0600626F.png b/static/icons/0600626F.png
new file mode 100755
index 00000000..2e9c5194
Binary files /dev/null and b/static/icons/0600626F.png differ
diff --git a/static/icons/06006270.png b/static/icons/06006270.png
new file mode 100755
index 00000000..1533e2a3
Binary files /dev/null and b/static/icons/06006270.png differ
diff --git a/static/icons/06006271.png b/static/icons/06006271.png
new file mode 100755
index 00000000..bf349153
Binary files /dev/null and b/static/icons/06006271.png differ
diff --git a/static/icons/06006272.png b/static/icons/06006272.png
new file mode 100755
index 00000000..c7c05a2e
Binary files /dev/null and b/static/icons/06006272.png differ
diff --git a/static/icons/06006273.png b/static/icons/06006273.png
new file mode 100755
index 00000000..6b24e319
Binary files /dev/null and b/static/icons/06006273.png differ
diff --git a/static/icons/06006274.png b/static/icons/06006274.png
new file mode 100755
index 00000000..6da75b33
Binary files /dev/null and b/static/icons/06006274.png differ
diff --git a/static/icons/06006275.png b/static/icons/06006275.png
new file mode 100755
index 00000000..873ebb20
Binary files /dev/null and b/static/icons/06006275.png differ
diff --git a/static/icons/06006276.png b/static/icons/06006276.png
new file mode 100755
index 00000000..d4696b8a
Binary files /dev/null and b/static/icons/06006276.png differ
diff --git a/static/icons/06006277.png b/static/icons/06006277.png
new file mode 100755
index 00000000..cab25922
Binary files /dev/null and b/static/icons/06006277.png differ
diff --git a/static/icons/06006278.png b/static/icons/06006278.png
new file mode 100755
index 00000000..363122ed
Binary files /dev/null and b/static/icons/06006278.png differ
diff --git a/static/icons/06006279.png b/static/icons/06006279.png
new file mode 100755
index 00000000..fd4b3c9a
Binary files /dev/null and b/static/icons/06006279.png differ
diff --git a/static/icons/0600627A.png b/static/icons/0600627A.png
new file mode 100755
index 00000000..8ec3daf9
Binary files /dev/null and b/static/icons/0600627A.png differ
diff --git a/static/icons/0600627B.png b/static/icons/0600627B.png
new file mode 100755
index 00000000..b075fd70
Binary files /dev/null and b/static/icons/0600627B.png differ
diff --git a/static/icons/0600627C.png b/static/icons/0600627C.png
new file mode 100755
index 00000000..b075fd70
Binary files /dev/null and b/static/icons/0600627C.png differ
diff --git a/static/icons/0600627D.png b/static/icons/0600627D.png
new file mode 100755
index 00000000..b075fd70
Binary files /dev/null and b/static/icons/0600627D.png differ
diff --git a/static/icons/0600627E.png b/static/icons/0600627E.png
new file mode 100755
index 00000000..b075fd70
Binary files /dev/null and b/static/icons/0600627E.png differ
diff --git a/static/icons/0600627F.png b/static/icons/0600627F.png
new file mode 100755
index 00000000..91bdcead
Binary files /dev/null and b/static/icons/0600627F.png differ
diff --git a/static/icons/06006280.png b/static/icons/06006280.png
new file mode 100755
index 00000000..91bdcead
Binary files /dev/null and b/static/icons/06006280.png differ
diff --git a/static/icons/06006281.png b/static/icons/06006281.png
new file mode 100755
index 00000000..91bdcead
Binary files /dev/null and b/static/icons/06006281.png differ
diff --git a/static/icons/06006282.png b/static/icons/06006282.png
new file mode 100755
index 00000000..91bdcead
Binary files /dev/null and b/static/icons/06006282.png differ
diff --git a/static/icons/06006283.png b/static/icons/06006283.png
new file mode 100755
index 00000000..55fe928c
Binary files /dev/null and b/static/icons/06006283.png differ
diff --git a/static/icons/06006284.png b/static/icons/06006284.png
new file mode 100755
index 00000000..994e6fa1
Binary files /dev/null and b/static/icons/06006284.png differ
diff --git a/static/icons/06006285.png b/static/icons/06006285.png
new file mode 100755
index 00000000..862ce054
Binary files /dev/null and b/static/icons/06006285.png differ
diff --git a/static/icons/06006286.png b/static/icons/06006286.png
new file mode 100755
index 00000000..909f4cb3
Binary files /dev/null and b/static/icons/06006286.png differ
diff --git a/static/icons/06006287.png b/static/icons/06006287.png
new file mode 100755
index 00000000..56b78056
Binary files /dev/null and b/static/icons/06006287.png differ
diff --git a/static/icons/06006288.png b/static/icons/06006288.png
new file mode 100755
index 00000000..93d23b0b
Binary files /dev/null and b/static/icons/06006288.png differ
diff --git a/static/icons/06006289.png b/static/icons/06006289.png
new file mode 100755
index 00000000..43dc926c
Binary files /dev/null and b/static/icons/06006289.png differ
diff --git a/static/icons/0600628A.png b/static/icons/0600628A.png
new file mode 100755
index 00000000..8b29294f
Binary files /dev/null and b/static/icons/0600628A.png differ
diff --git a/static/icons/0600628B.png b/static/icons/0600628B.png
new file mode 100755
index 00000000..717bd98c
Binary files /dev/null and b/static/icons/0600628B.png differ
diff --git a/static/icons/0600628C.png b/static/icons/0600628C.png
new file mode 100755
index 00000000..fbfc065b
Binary files /dev/null and b/static/icons/0600628C.png differ
diff --git a/static/icons/0600628D.png b/static/icons/0600628D.png
new file mode 100755
index 00000000..cbb4112b
Binary files /dev/null and b/static/icons/0600628D.png differ
diff --git a/static/icons/0600628E.png b/static/icons/0600628E.png
new file mode 100755
index 00000000..cb71dabc
Binary files /dev/null and b/static/icons/0600628E.png differ
diff --git a/static/icons/06006290.png b/static/icons/06006290.png
new file mode 100755
index 00000000..c07804e4
Binary files /dev/null and b/static/icons/06006290.png differ
diff --git a/static/icons/06006291.png b/static/icons/06006291.png
new file mode 100755
index 00000000..30bdef72
Binary files /dev/null and b/static/icons/06006291.png differ
diff --git a/static/icons/06006292.png b/static/icons/06006292.png
new file mode 100755
index 00000000..890648cc
Binary files /dev/null and b/static/icons/06006292.png differ
diff --git a/static/icons/06006293.png b/static/icons/06006293.png
new file mode 100755
index 00000000..98823274
Binary files /dev/null and b/static/icons/06006293.png differ
diff --git a/static/icons/06006294.png b/static/icons/06006294.png
new file mode 100755
index 00000000..890648cc
Binary files /dev/null and b/static/icons/06006294.png differ
diff --git a/static/icons/06006295.png b/static/icons/06006295.png
new file mode 100755
index 00000000..98823274
Binary files /dev/null and b/static/icons/06006295.png differ
diff --git a/static/icons/06006296.png b/static/icons/06006296.png
new file mode 100755
index 00000000..47d5cf2c
Binary files /dev/null and b/static/icons/06006296.png differ
diff --git a/static/icons/06006297.png b/static/icons/06006297.png
new file mode 100755
index 00000000..c1e38e9b
Binary files /dev/null and b/static/icons/06006297.png differ
diff --git a/static/icons/06006298.png b/static/icons/06006298.png
new file mode 100755
index 00000000..33c55710
Binary files /dev/null and b/static/icons/06006298.png differ
diff --git a/static/icons/06006299.png b/static/icons/06006299.png
new file mode 100755
index 00000000..07b96464
Binary files /dev/null and b/static/icons/06006299.png differ
diff --git a/static/icons/0600629A.png b/static/icons/0600629A.png
new file mode 100755
index 00000000..72a07b97
Binary files /dev/null and b/static/icons/0600629A.png differ
diff --git a/static/icons/0600629B.png b/static/icons/0600629B.png
new file mode 100755
index 00000000..244f9705
Binary files /dev/null and b/static/icons/0600629B.png differ
diff --git a/static/icons/0600629C.png b/static/icons/0600629C.png
new file mode 100755
index 00000000..cbcbe01a
Binary files /dev/null and b/static/icons/0600629C.png differ
diff --git a/static/icons/0600629D.png b/static/icons/0600629D.png
new file mode 100755
index 00000000..2588518c
Binary files /dev/null and b/static/icons/0600629D.png differ
diff --git a/static/icons/0600629E.png b/static/icons/0600629E.png
new file mode 100755
index 00000000..80cbbdb0
Binary files /dev/null and b/static/icons/0600629E.png differ
diff --git a/static/icons/0600629F.png b/static/icons/0600629F.png
new file mode 100755
index 00000000..b015bd4c
Binary files /dev/null and b/static/icons/0600629F.png differ
diff --git a/static/icons/060062A5.png b/static/icons/060062A5.png
new file mode 100755
index 00000000..2c410ded
Binary files /dev/null and b/static/icons/060062A5.png differ
diff --git a/static/icons/060062A7.png b/static/icons/060062A7.png
new file mode 100755
index 00000000..3ca8df87
Binary files /dev/null and b/static/icons/060062A7.png differ
diff --git a/static/icons/060062A8.png b/static/icons/060062A8.png
new file mode 100755
index 00000000..a20041b2
Binary files /dev/null and b/static/icons/060062A8.png differ
diff --git a/static/icons/060062A9.png b/static/icons/060062A9.png
new file mode 100755
index 00000000..e6cdd2bb
Binary files /dev/null and b/static/icons/060062A9.png differ
diff --git a/static/icons/060062AA.png b/static/icons/060062AA.png
new file mode 100755
index 00000000..5bbb97ec
Binary files /dev/null and b/static/icons/060062AA.png differ
diff --git a/static/icons/060062AB.png b/static/icons/060062AB.png
new file mode 100755
index 00000000..0d05b3aa
Binary files /dev/null and b/static/icons/060062AB.png differ
diff --git a/static/icons/060062AC.png b/static/icons/060062AC.png
new file mode 100755
index 00000000..55562053
Binary files /dev/null and b/static/icons/060062AC.png differ
diff --git a/static/icons/060062AD.png b/static/icons/060062AD.png
new file mode 100755
index 00000000..e534803e
Binary files /dev/null and b/static/icons/060062AD.png differ
diff --git a/static/icons/060062AE.png b/static/icons/060062AE.png
new file mode 100755
index 00000000..924c7feb
Binary files /dev/null and b/static/icons/060062AE.png differ
diff --git a/static/icons/060062AF.png b/static/icons/060062AF.png
new file mode 100755
index 00000000..a6fdbd41
Binary files /dev/null and b/static/icons/060062AF.png differ
diff --git a/static/icons/060062B0.png b/static/icons/060062B0.png
new file mode 100755
index 00000000..bffc57b1
Binary files /dev/null and b/static/icons/060062B0.png differ
diff --git a/static/icons/060062B1.png b/static/icons/060062B1.png
new file mode 100755
index 00000000..1386cc09
Binary files /dev/null and b/static/icons/060062B1.png differ
diff --git a/static/icons/060062B2.png b/static/icons/060062B2.png
new file mode 100755
index 00000000..cae054af
Binary files /dev/null and b/static/icons/060062B2.png differ
diff --git a/static/icons/060062B3.png b/static/icons/060062B3.png
new file mode 100755
index 00000000..faa829c9
Binary files /dev/null and b/static/icons/060062B3.png differ
diff --git a/static/icons/060062B4.png b/static/icons/060062B4.png
new file mode 100755
index 00000000..c18933ac
Binary files /dev/null and b/static/icons/060062B4.png differ
diff --git a/static/icons/060062B5.png b/static/icons/060062B5.png
new file mode 100755
index 00000000..c46d70f8
Binary files /dev/null and b/static/icons/060062B5.png differ
diff --git a/static/icons/060062B6.png b/static/icons/060062B6.png
new file mode 100755
index 00000000..27466d16
Binary files /dev/null and b/static/icons/060062B6.png differ
diff --git a/static/icons/060062B7.png b/static/icons/060062B7.png
new file mode 100755
index 00000000..a5508d2c
Binary files /dev/null and b/static/icons/060062B7.png differ
diff --git a/static/icons/060062B8.png b/static/icons/060062B8.png
new file mode 100755
index 00000000..32755a4b
Binary files /dev/null and b/static/icons/060062B8.png differ
diff --git a/static/icons/060062B9.png b/static/icons/060062B9.png
new file mode 100755
index 00000000..0c988387
Binary files /dev/null and b/static/icons/060062B9.png differ
diff --git a/static/icons/060062BA.png b/static/icons/060062BA.png
new file mode 100755
index 00000000..7485aecd
Binary files /dev/null and b/static/icons/060062BA.png differ
diff --git a/static/icons/060062BB.png b/static/icons/060062BB.png
new file mode 100755
index 00000000..a3a8d4a1
Binary files /dev/null and b/static/icons/060062BB.png differ
diff --git a/static/icons/060062BC.png b/static/icons/060062BC.png
new file mode 100755
index 00000000..7ae8f9b2
Binary files /dev/null and b/static/icons/060062BC.png differ
diff --git a/static/icons/060062BD.png b/static/icons/060062BD.png
new file mode 100755
index 00000000..3d737a8c
Binary files /dev/null and b/static/icons/060062BD.png differ
diff --git a/static/icons/060062BE.png b/static/icons/060062BE.png
new file mode 100755
index 00000000..faf6c0ad
Binary files /dev/null and b/static/icons/060062BE.png differ
diff --git a/static/icons/060062BF.png b/static/icons/060062BF.png
new file mode 100755
index 00000000..8cce2680
Binary files /dev/null and b/static/icons/060062BF.png differ
diff --git a/static/icons/060062C0.png b/static/icons/060062C0.png
new file mode 100755
index 00000000..46fc8b00
Binary files /dev/null and b/static/icons/060062C0.png differ
diff --git a/static/icons/060062C1.png b/static/icons/060062C1.png
new file mode 100755
index 00000000..39a02dd2
Binary files /dev/null and b/static/icons/060062C1.png differ
diff --git a/static/icons/060062C4.png b/static/icons/060062C4.png
new file mode 100755
index 00000000..933a0e67
Binary files /dev/null and b/static/icons/060062C4.png differ
diff --git a/static/icons/060062C5.png b/static/icons/060062C5.png
new file mode 100755
index 00000000..d0c40927
Binary files /dev/null and b/static/icons/060062C5.png differ
diff --git a/static/icons/060062C6.png b/static/icons/060062C6.png
new file mode 100755
index 00000000..1701baab
Binary files /dev/null and b/static/icons/060062C6.png differ
diff --git a/static/icons/060062C7.png b/static/icons/060062C7.png
new file mode 100755
index 00000000..c68b53d6
Binary files /dev/null and b/static/icons/060062C7.png differ
diff --git a/static/icons/060062C8.png b/static/icons/060062C8.png
new file mode 100755
index 00000000..0bfb4633
Binary files /dev/null and b/static/icons/060062C8.png differ
diff --git a/static/icons/060062C9.png b/static/icons/060062C9.png
new file mode 100755
index 00000000..d6310b26
Binary files /dev/null and b/static/icons/060062C9.png differ
diff --git a/static/icons/060062CE.png b/static/icons/060062CE.png
new file mode 100755
index 00000000..437d4fd7
Binary files /dev/null and b/static/icons/060062CE.png differ
diff --git a/static/icons/060062CF.png b/static/icons/060062CF.png
new file mode 100755
index 00000000..debf2509
Binary files /dev/null and b/static/icons/060062CF.png differ
diff --git a/static/icons/060062D0.png b/static/icons/060062D0.png
new file mode 100755
index 00000000..eca72ac4
Binary files /dev/null and b/static/icons/060062D0.png differ
diff --git a/static/icons/060062D1.png b/static/icons/060062D1.png
new file mode 100755
index 00000000..e240ea81
Binary files /dev/null and b/static/icons/060062D1.png differ
diff --git a/static/icons/060062D8.png b/static/icons/060062D8.png
new file mode 100755
index 00000000..456e9530
Binary files /dev/null and b/static/icons/060062D8.png differ
diff --git a/static/icons/060062D9.png b/static/icons/060062D9.png
new file mode 100755
index 00000000..b76af9ca
Binary files /dev/null and b/static/icons/060062D9.png differ
diff --git a/static/icons/060062DA.png b/static/icons/060062DA.png
new file mode 100755
index 00000000..115c50e4
Binary files /dev/null and b/static/icons/060062DA.png differ
diff --git a/static/icons/060062DB.png b/static/icons/060062DB.png
new file mode 100755
index 00000000..7aed737f
Binary files /dev/null and b/static/icons/060062DB.png differ
diff --git a/static/icons/060062DC.png b/static/icons/060062DC.png
new file mode 100755
index 00000000..9d025142
Binary files /dev/null and b/static/icons/060062DC.png differ
diff --git a/static/icons/060062DD.png b/static/icons/060062DD.png
new file mode 100755
index 00000000..ecfc8f0e
Binary files /dev/null and b/static/icons/060062DD.png differ
diff --git a/static/icons/060062DE.png b/static/icons/060062DE.png
new file mode 100755
index 00000000..41a3c873
Binary files /dev/null and b/static/icons/060062DE.png differ
diff --git a/static/icons/060062DF.png b/static/icons/060062DF.png
new file mode 100755
index 00000000..9f6effae
Binary files /dev/null and b/static/icons/060062DF.png differ
diff --git a/static/icons/060062E0.png b/static/icons/060062E0.png
new file mode 100755
index 00000000..06c83ec6
Binary files /dev/null and b/static/icons/060062E0.png differ
diff --git a/static/icons/060062E1.png b/static/icons/060062E1.png
new file mode 100755
index 00000000..7bce66e6
Binary files /dev/null and b/static/icons/060062E1.png differ
diff --git a/static/icons/060062E2.png b/static/icons/060062E2.png
new file mode 100755
index 00000000..a1c9672e
Binary files /dev/null and b/static/icons/060062E2.png differ
diff --git a/static/icons/060062E3.png b/static/icons/060062E3.png
new file mode 100755
index 00000000..a3775cff
Binary files /dev/null and b/static/icons/060062E3.png differ
diff --git a/static/icons/060062E4.png b/static/icons/060062E4.png
new file mode 100755
index 00000000..3a75fbd8
Binary files /dev/null and b/static/icons/060062E4.png differ
diff --git a/static/icons/060062E5.png b/static/icons/060062E5.png
new file mode 100755
index 00000000..64e6aeb4
Binary files /dev/null and b/static/icons/060062E5.png differ
diff --git a/static/icons/060062E6.png b/static/icons/060062E6.png
new file mode 100755
index 00000000..331ccac8
Binary files /dev/null and b/static/icons/060062E6.png differ
diff --git a/static/icons/060062E7.png b/static/icons/060062E7.png
new file mode 100755
index 00000000..1cfe1b39
Binary files /dev/null and b/static/icons/060062E7.png differ
diff --git a/static/icons/060062E8.png b/static/icons/060062E8.png
new file mode 100755
index 00000000..5c0d6d67
Binary files /dev/null and b/static/icons/060062E8.png differ
diff --git a/static/icons/060062E9.png b/static/icons/060062E9.png
new file mode 100755
index 00000000..acb57c59
Binary files /dev/null and b/static/icons/060062E9.png differ
diff --git a/static/icons/060062EA.png b/static/icons/060062EA.png
new file mode 100755
index 00000000..0e83838a
Binary files /dev/null and b/static/icons/060062EA.png differ
diff --git a/static/icons/060062EB.png b/static/icons/060062EB.png
new file mode 100755
index 00000000..741efb67
Binary files /dev/null and b/static/icons/060062EB.png differ
diff --git a/static/icons/060062EC.png b/static/icons/060062EC.png
new file mode 100755
index 00000000..c82093ee
Binary files /dev/null and b/static/icons/060062EC.png differ
diff --git a/static/icons/060062ED.png b/static/icons/060062ED.png
new file mode 100755
index 00000000..7c54742c
Binary files /dev/null and b/static/icons/060062ED.png differ
diff --git a/static/icons/060062EE.png b/static/icons/060062EE.png
new file mode 100755
index 00000000..116289c4
Binary files /dev/null and b/static/icons/060062EE.png differ
diff --git a/static/icons/060062EF.png b/static/icons/060062EF.png
new file mode 100755
index 00000000..33e0068a
Binary files /dev/null and b/static/icons/060062EF.png differ
diff --git a/static/icons/060062F0.png b/static/icons/060062F0.png
new file mode 100755
index 00000000..1b0777cc
Binary files /dev/null and b/static/icons/060062F0.png differ
diff --git a/static/icons/060062F1.png b/static/icons/060062F1.png
new file mode 100755
index 00000000..b69b20df
Binary files /dev/null and b/static/icons/060062F1.png differ
diff --git a/static/icons/060062F2.png b/static/icons/060062F2.png
new file mode 100755
index 00000000..0c4a7146
Binary files /dev/null and b/static/icons/060062F2.png differ
diff --git a/static/icons/060062F3.png b/static/icons/060062F3.png
new file mode 100755
index 00000000..09675553
Binary files /dev/null and b/static/icons/060062F3.png differ
diff --git a/static/icons/060062F4.png b/static/icons/060062F4.png
new file mode 100755
index 00000000..1eb07eb0
Binary files /dev/null and b/static/icons/060062F4.png differ
diff --git a/static/icons/060062F5.png b/static/icons/060062F5.png
new file mode 100755
index 00000000..e849a5d9
Binary files /dev/null and b/static/icons/060062F5.png differ
diff --git a/static/icons/060062F6.png b/static/icons/060062F6.png
new file mode 100755
index 00000000..56e7cb0f
Binary files /dev/null and b/static/icons/060062F6.png differ
diff --git a/static/icons/060062F7.png b/static/icons/060062F7.png
new file mode 100755
index 00000000..83f19b68
Binary files /dev/null and b/static/icons/060062F7.png differ
diff --git a/static/icons/060062F8.png b/static/icons/060062F8.png
new file mode 100755
index 00000000..b1cc9027
Binary files /dev/null and b/static/icons/060062F8.png differ
diff --git a/static/icons/060062F9.png b/static/icons/060062F9.png
new file mode 100755
index 00000000..c5cc1b30
Binary files /dev/null and b/static/icons/060062F9.png differ
diff --git a/static/icons/060062FA.png b/static/icons/060062FA.png
new file mode 100755
index 00000000..35deeddd
Binary files /dev/null and b/static/icons/060062FA.png differ
diff --git a/static/icons/060062FB.png b/static/icons/060062FB.png
new file mode 100755
index 00000000..05d10708
Binary files /dev/null and b/static/icons/060062FB.png differ
diff --git a/static/icons/060062FC.png b/static/icons/060062FC.png
new file mode 100755
index 00000000..8a3f1005
Binary files /dev/null and b/static/icons/060062FC.png differ
diff --git a/static/icons/060062FD.png b/static/icons/060062FD.png
new file mode 100755
index 00000000..f292ed0f
Binary files /dev/null and b/static/icons/060062FD.png differ
diff --git a/static/icons/060062FE.png b/static/icons/060062FE.png
new file mode 100755
index 00000000..6cad7ca1
Binary files /dev/null and b/static/icons/060062FE.png differ
diff --git a/static/icons/060062FF.png b/static/icons/060062FF.png
new file mode 100755
index 00000000..2a14b513
Binary files /dev/null and b/static/icons/060062FF.png differ
diff --git a/static/icons/06006300.png b/static/icons/06006300.png
new file mode 100755
index 00000000..cfddd8ab
Binary files /dev/null and b/static/icons/06006300.png differ
diff --git a/static/icons/06006301.png b/static/icons/06006301.png
new file mode 100755
index 00000000..6ac96413
Binary files /dev/null and b/static/icons/06006301.png differ
diff --git a/static/icons/06006302.png b/static/icons/06006302.png
new file mode 100755
index 00000000..a46a7e48
Binary files /dev/null and b/static/icons/06006302.png differ
diff --git a/static/icons/06006303.png b/static/icons/06006303.png
new file mode 100755
index 00000000..bfca2cd8
Binary files /dev/null and b/static/icons/06006303.png differ
diff --git a/static/icons/06006306.png b/static/icons/06006306.png
new file mode 100755
index 00000000..e8fe41f6
Binary files /dev/null and b/static/icons/06006306.png differ
diff --git a/static/icons/06006307.png b/static/icons/06006307.png
new file mode 100755
index 00000000..6bed790a
Binary files /dev/null and b/static/icons/06006307.png differ
diff --git a/static/icons/06006308.png b/static/icons/06006308.png
new file mode 100755
index 00000000..87d8fb65
Binary files /dev/null and b/static/icons/06006308.png differ
diff --git a/static/icons/06006309.png b/static/icons/06006309.png
new file mode 100755
index 00000000..c7d166ec
Binary files /dev/null and b/static/icons/06006309.png differ
diff --git a/static/icons/0600630A.png b/static/icons/0600630A.png
new file mode 100755
index 00000000..5cdf5f77
Binary files /dev/null and b/static/icons/0600630A.png differ
diff --git a/static/icons/0600630B.png b/static/icons/0600630B.png
new file mode 100755
index 00000000..70b2c6af
Binary files /dev/null and b/static/icons/0600630B.png differ
diff --git a/static/icons/0600630C.png b/static/icons/0600630C.png
new file mode 100755
index 00000000..198d73d5
Binary files /dev/null and b/static/icons/0600630C.png differ
diff --git a/static/icons/0600630D.png b/static/icons/0600630D.png
new file mode 100755
index 00000000..098feda5
Binary files /dev/null and b/static/icons/0600630D.png differ
diff --git a/static/icons/0600630E.png b/static/icons/0600630E.png
new file mode 100755
index 00000000..67ef9db8
Binary files /dev/null and b/static/icons/0600630E.png differ
diff --git a/static/icons/0600630F.png b/static/icons/0600630F.png
new file mode 100755
index 00000000..28a884c0
Binary files /dev/null and b/static/icons/0600630F.png differ
diff --git a/static/icons/06006310.png b/static/icons/06006310.png
new file mode 100755
index 00000000..e46730de
Binary files /dev/null and b/static/icons/06006310.png differ
diff --git a/static/icons/06006311.png b/static/icons/06006311.png
new file mode 100755
index 00000000..14012a45
Binary files /dev/null and b/static/icons/06006311.png differ
diff --git a/static/icons/06006312.png b/static/icons/06006312.png
new file mode 100755
index 00000000..51d7d479
Binary files /dev/null and b/static/icons/06006312.png differ
diff --git a/static/icons/06006313.png b/static/icons/06006313.png
new file mode 100755
index 00000000..61d40835
Binary files /dev/null and b/static/icons/06006313.png differ
diff --git a/static/icons/06006314.png b/static/icons/06006314.png
new file mode 100755
index 00000000..ccd9cb7e
Binary files /dev/null and b/static/icons/06006314.png differ
diff --git a/static/icons/06006315.png b/static/icons/06006315.png
new file mode 100755
index 00000000..44f7ab7f
Binary files /dev/null and b/static/icons/06006315.png differ
diff --git a/static/icons/06006316.png b/static/icons/06006316.png
new file mode 100755
index 00000000..43ffad4e
Binary files /dev/null and b/static/icons/06006316.png differ
diff --git a/static/icons/06006317.png b/static/icons/06006317.png
new file mode 100755
index 00000000..58497437
Binary files /dev/null and b/static/icons/06006317.png differ
diff --git a/static/icons/06006318.png b/static/icons/06006318.png
new file mode 100755
index 00000000..0e3e3ad2
Binary files /dev/null and b/static/icons/06006318.png differ
diff --git a/static/icons/06006319.png b/static/icons/06006319.png
new file mode 100755
index 00000000..971c0769
Binary files /dev/null and b/static/icons/06006319.png differ
diff --git a/static/icons/0600631A.png b/static/icons/0600631A.png
new file mode 100755
index 00000000..b478a163
Binary files /dev/null and b/static/icons/0600631A.png differ
diff --git a/static/icons/0600631B.png b/static/icons/0600631B.png
new file mode 100755
index 00000000..6f8a1c05
Binary files /dev/null and b/static/icons/0600631B.png differ
diff --git a/static/icons/0600631D.png b/static/icons/0600631D.png
new file mode 100755
index 00000000..7fb568b8
Binary files /dev/null and b/static/icons/0600631D.png differ
diff --git a/static/icons/0600631F.png b/static/icons/0600631F.png
new file mode 100755
index 00000000..85f05cdf
Binary files /dev/null and b/static/icons/0600631F.png differ
diff --git a/static/icons/06006320.png b/static/icons/06006320.png
new file mode 100755
index 00000000..47f5d103
Binary files /dev/null and b/static/icons/06006320.png differ
diff --git a/static/icons/06006321.png b/static/icons/06006321.png
new file mode 100755
index 00000000..f2974dc4
Binary files /dev/null and b/static/icons/06006321.png differ
diff --git a/static/icons/06006322.png b/static/icons/06006322.png
new file mode 100755
index 00000000..cd9d2cbf
Binary files /dev/null and b/static/icons/06006322.png differ
diff --git a/static/icons/06006323.png b/static/icons/06006323.png
new file mode 100755
index 00000000..f148147e
Binary files /dev/null and b/static/icons/06006323.png differ
diff --git a/static/icons/06006324.png b/static/icons/06006324.png
new file mode 100755
index 00000000..520cbcd9
Binary files /dev/null and b/static/icons/06006324.png differ
diff --git a/static/icons/060063B8.png b/static/icons/060063B8.png
new file mode 100755
index 00000000..55992d51
Binary files /dev/null and b/static/icons/060063B8.png differ
diff --git a/static/icons/060063B9.png b/static/icons/060063B9.png
new file mode 100755
index 00000000..ef444574
Binary files /dev/null and b/static/icons/060063B9.png differ
diff --git a/static/icons/060063BA.png b/static/icons/060063BA.png
new file mode 100755
index 00000000..433fe6ab
Binary files /dev/null and b/static/icons/060063BA.png differ
diff --git a/static/icons/060063BC.png b/static/icons/060063BC.png
new file mode 100755
index 00000000..d2f3ae9e
Binary files /dev/null and b/static/icons/060063BC.png differ
diff --git a/static/icons/060063BD.png b/static/icons/060063BD.png
new file mode 100755
index 00000000..01ccc991
Binary files /dev/null and b/static/icons/060063BD.png differ
diff --git a/static/icons/060063BF.png b/static/icons/060063BF.png
new file mode 100755
index 00000000..736d0525
Binary files /dev/null and b/static/icons/060063BF.png differ
diff --git a/static/icons/060063C0.png b/static/icons/060063C0.png
new file mode 100755
index 00000000..5fb1bd6e
Binary files /dev/null and b/static/icons/060063C0.png differ
diff --git a/static/icons/060063C1.png b/static/icons/060063C1.png
new file mode 100755
index 00000000..966c81d0
Binary files /dev/null and b/static/icons/060063C1.png differ
diff --git a/static/icons/060063C2.png b/static/icons/060063C2.png
new file mode 100755
index 00000000..9b6792ce
Binary files /dev/null and b/static/icons/060063C2.png differ
diff --git a/static/icons/060063C3.png b/static/icons/060063C3.png
new file mode 100755
index 00000000..c0efbd46
Binary files /dev/null and b/static/icons/060063C3.png differ
diff --git a/static/icons/060063C4.png b/static/icons/060063C4.png
new file mode 100755
index 00000000..a6da8203
Binary files /dev/null and b/static/icons/060063C4.png differ
diff --git a/static/icons/060063C5.png b/static/icons/060063C5.png
new file mode 100755
index 00000000..eb6261cd
Binary files /dev/null and b/static/icons/060063C5.png differ
diff --git a/static/icons/060063C6.png b/static/icons/060063C6.png
new file mode 100755
index 00000000..5b1e43de
Binary files /dev/null and b/static/icons/060063C6.png differ
diff --git a/static/icons/060063C7.png b/static/icons/060063C7.png
new file mode 100755
index 00000000..ea03ba8c
Binary files /dev/null and b/static/icons/060063C7.png differ
diff --git a/static/icons/060063C8.png b/static/icons/060063C8.png
new file mode 100755
index 00000000..90149098
Binary files /dev/null and b/static/icons/060063C8.png differ
diff --git a/static/icons/060063C9.png b/static/icons/060063C9.png
new file mode 100755
index 00000000..5fc18729
Binary files /dev/null and b/static/icons/060063C9.png differ
diff --git a/static/icons/060063CC.png b/static/icons/060063CC.png
new file mode 100755
index 00000000..8505e173
Binary files /dev/null and b/static/icons/060063CC.png differ
diff --git a/static/icons/060063CD.png b/static/icons/060063CD.png
new file mode 100755
index 00000000..44870e32
Binary files /dev/null and b/static/icons/060063CD.png differ
diff --git a/static/icons/060063CE.png b/static/icons/060063CE.png
new file mode 100755
index 00000000..e0a70e63
Binary files /dev/null and b/static/icons/060063CE.png differ
diff --git a/static/icons/060063D0.png b/static/icons/060063D0.png
new file mode 100755
index 00000000..90814f33
Binary files /dev/null and b/static/icons/060063D0.png differ
diff --git a/static/icons/060063D1.png b/static/icons/060063D1.png
new file mode 100755
index 00000000..92a64379
Binary files /dev/null and b/static/icons/060063D1.png differ
diff --git a/static/icons/060063D2.png b/static/icons/060063D2.png
new file mode 100755
index 00000000..4a8dfa11
Binary files /dev/null and b/static/icons/060063D2.png differ
diff --git a/static/icons/060063D3.png b/static/icons/060063D3.png
new file mode 100755
index 00000000..311a6301
Binary files /dev/null and b/static/icons/060063D3.png differ
diff --git a/static/icons/060063D4.png b/static/icons/060063D4.png
new file mode 100755
index 00000000..a014f944
Binary files /dev/null and b/static/icons/060063D4.png differ
diff --git a/static/icons/060063D5.png b/static/icons/060063D5.png
new file mode 100755
index 00000000..f2b3892c
Binary files /dev/null and b/static/icons/060063D5.png differ
diff --git a/static/icons/060063D6.png b/static/icons/060063D6.png
new file mode 100755
index 00000000..093f45c7
Binary files /dev/null and b/static/icons/060063D6.png differ
diff --git a/static/icons/060063D7.png b/static/icons/060063D7.png
new file mode 100755
index 00000000..b476b684
Binary files /dev/null and b/static/icons/060063D7.png differ
diff --git a/static/icons/060063D8.png b/static/icons/060063D8.png
new file mode 100755
index 00000000..ddfc1b1b
Binary files /dev/null and b/static/icons/060063D8.png differ
diff --git a/static/icons/060063D9.png b/static/icons/060063D9.png
new file mode 100755
index 00000000..05ab92df
Binary files /dev/null and b/static/icons/060063D9.png differ
diff --git a/static/icons/060063DA.png b/static/icons/060063DA.png
new file mode 100755
index 00000000..09daf5ca
Binary files /dev/null and b/static/icons/060063DA.png differ
diff --git a/static/icons/060063DB.png b/static/icons/060063DB.png
new file mode 100755
index 00000000..2ad06b20
Binary files /dev/null and b/static/icons/060063DB.png differ
diff --git a/static/icons/060063DC.png b/static/icons/060063DC.png
new file mode 100755
index 00000000..42334968
Binary files /dev/null and b/static/icons/060063DC.png differ
diff --git a/static/icons/060063DD.png b/static/icons/060063DD.png
new file mode 100755
index 00000000..21dc6dbc
Binary files /dev/null and b/static/icons/060063DD.png differ
diff --git a/static/icons/060063DE.png b/static/icons/060063DE.png
new file mode 100755
index 00000000..700d60fd
Binary files /dev/null and b/static/icons/060063DE.png differ
diff --git a/static/icons/060063DF.png b/static/icons/060063DF.png
new file mode 100755
index 00000000..f50f9a7c
Binary files /dev/null and b/static/icons/060063DF.png differ
diff --git a/static/icons/060063E0.png b/static/icons/060063E0.png
new file mode 100755
index 00000000..6028dbcb
Binary files /dev/null and b/static/icons/060063E0.png differ
diff --git a/static/icons/060063E1.png b/static/icons/060063E1.png
new file mode 100755
index 00000000..e1327490
Binary files /dev/null and b/static/icons/060063E1.png differ
diff --git a/static/icons/060063E2.png b/static/icons/060063E2.png
new file mode 100755
index 00000000..ca5c53df
Binary files /dev/null and b/static/icons/060063E2.png differ
diff --git a/static/icons/060063E3.png b/static/icons/060063E3.png
new file mode 100755
index 00000000..338ab67d
Binary files /dev/null and b/static/icons/060063E3.png differ
diff --git a/static/icons/060063E4.png b/static/icons/060063E4.png
new file mode 100755
index 00000000..70077313
Binary files /dev/null and b/static/icons/060063E4.png differ
diff --git a/static/icons/060063E5.png b/static/icons/060063E5.png
new file mode 100755
index 00000000..52ccebd5
Binary files /dev/null and b/static/icons/060063E5.png differ
diff --git a/static/icons/060063E6.png b/static/icons/060063E6.png
new file mode 100755
index 00000000..74acb635
Binary files /dev/null and b/static/icons/060063E6.png differ
diff --git a/static/icons/060063E7.png b/static/icons/060063E7.png
new file mode 100755
index 00000000..f2367bcd
Binary files /dev/null and b/static/icons/060063E7.png differ
diff --git a/static/icons/060063E8.png b/static/icons/060063E8.png
new file mode 100755
index 00000000..5fa63878
Binary files /dev/null and b/static/icons/060063E8.png differ
diff --git a/static/icons/060063E9.png b/static/icons/060063E9.png
new file mode 100755
index 00000000..c5a3b286
Binary files /dev/null and b/static/icons/060063E9.png differ
diff --git a/static/icons/060063EA.png b/static/icons/060063EA.png
new file mode 100755
index 00000000..e0845c49
Binary files /dev/null and b/static/icons/060063EA.png differ
diff --git a/static/icons/060063EB.png b/static/icons/060063EB.png
new file mode 100755
index 00000000..e6cff22a
Binary files /dev/null and b/static/icons/060063EB.png differ
diff --git a/static/icons/060063EC.png b/static/icons/060063EC.png
new file mode 100755
index 00000000..2c61ba17
Binary files /dev/null and b/static/icons/060063EC.png differ
diff --git a/static/icons/060063ED.png b/static/icons/060063ED.png
new file mode 100755
index 00000000..e4ad6cf8
Binary files /dev/null and b/static/icons/060063ED.png differ
diff --git a/static/icons/060063EE.png b/static/icons/060063EE.png
new file mode 100755
index 00000000..0673ec8c
Binary files /dev/null and b/static/icons/060063EE.png differ
diff --git a/static/icons/060063EF.png b/static/icons/060063EF.png
new file mode 100755
index 00000000..37543768
Binary files /dev/null and b/static/icons/060063EF.png differ
diff --git a/static/icons/060063F0.png b/static/icons/060063F0.png
new file mode 100755
index 00000000..507d499c
Binary files /dev/null and b/static/icons/060063F0.png differ
diff --git a/static/icons/060063F1.png b/static/icons/060063F1.png
new file mode 100755
index 00000000..11128e9a
Binary files /dev/null and b/static/icons/060063F1.png differ
diff --git a/static/icons/060063F2.png b/static/icons/060063F2.png
new file mode 100755
index 00000000..0765eb3f
Binary files /dev/null and b/static/icons/060063F2.png differ
diff --git a/static/icons/060063F3.png b/static/icons/060063F3.png
new file mode 100755
index 00000000..675aed41
Binary files /dev/null and b/static/icons/060063F3.png differ
diff --git a/static/icons/060063F4.png b/static/icons/060063F4.png
new file mode 100755
index 00000000..6fc66c32
Binary files /dev/null and b/static/icons/060063F4.png differ
diff --git a/static/icons/060063F5.png b/static/icons/060063F5.png
new file mode 100755
index 00000000..fcb47477
Binary files /dev/null and b/static/icons/060063F5.png differ
diff --git a/static/icons/060063F6.png b/static/icons/060063F6.png
new file mode 100755
index 00000000..4d8cbc36
Binary files /dev/null and b/static/icons/060063F6.png differ
diff --git a/static/icons/060063F7.png b/static/icons/060063F7.png
new file mode 100755
index 00000000..a5cb70e0
Binary files /dev/null and b/static/icons/060063F7.png differ
diff --git a/static/icons/060063F8.png b/static/icons/060063F8.png
new file mode 100755
index 00000000..2e1ce36a
Binary files /dev/null and b/static/icons/060063F8.png differ
diff --git a/static/icons/060063F9.png b/static/icons/060063F9.png
new file mode 100755
index 00000000..13cdb9c3
Binary files /dev/null and b/static/icons/060063F9.png differ
diff --git a/static/icons/060063FC.png b/static/icons/060063FC.png
new file mode 100755
index 00000000..4f223a09
Binary files /dev/null and b/static/icons/060063FC.png differ
diff --git a/static/icons/060063FD.png b/static/icons/060063FD.png
new file mode 100755
index 00000000..c5a3b286
Binary files /dev/null and b/static/icons/060063FD.png differ
diff --git a/static/icons/060063FE.png b/static/icons/060063FE.png
new file mode 100755
index 00000000..719aee10
Binary files /dev/null and b/static/icons/060063FE.png differ
diff --git a/static/icons/060063FF.png b/static/icons/060063FF.png
new file mode 100755
index 00000000..abbb1012
Binary files /dev/null and b/static/icons/060063FF.png differ
diff --git a/static/icons/06006400.png b/static/icons/06006400.png
new file mode 100755
index 00000000..26c5a656
Binary files /dev/null and b/static/icons/06006400.png differ
diff --git a/static/icons/06006401.png b/static/icons/06006401.png
new file mode 100755
index 00000000..afb1923f
Binary files /dev/null and b/static/icons/06006401.png differ
diff --git a/static/icons/06006402.png b/static/icons/06006402.png
new file mode 100755
index 00000000..5917854e
Binary files /dev/null and b/static/icons/06006402.png differ
diff --git a/static/icons/06006403.png b/static/icons/06006403.png
new file mode 100755
index 00000000..bd0c5809
Binary files /dev/null and b/static/icons/06006403.png differ
diff --git a/static/icons/06006404.png b/static/icons/06006404.png
new file mode 100755
index 00000000..5917854e
Binary files /dev/null and b/static/icons/06006404.png differ
diff --git a/static/icons/06006405.png b/static/icons/06006405.png
new file mode 100755
index 00000000..d30727e5
Binary files /dev/null and b/static/icons/06006405.png differ
diff --git a/static/icons/06006406.png b/static/icons/06006406.png
new file mode 100755
index 00000000..f64621ac
Binary files /dev/null and b/static/icons/06006406.png differ
diff --git a/static/icons/06006407.png b/static/icons/06006407.png
new file mode 100755
index 00000000..1e7edbe5
Binary files /dev/null and b/static/icons/06006407.png differ
diff --git a/static/icons/06006408.png b/static/icons/06006408.png
new file mode 100755
index 00000000..cc37e72c
Binary files /dev/null and b/static/icons/06006408.png differ
diff --git a/static/icons/06006409.png b/static/icons/06006409.png
new file mode 100755
index 00000000..9107cc0e
Binary files /dev/null and b/static/icons/06006409.png differ
diff --git a/static/icons/0600640A.png b/static/icons/0600640A.png
new file mode 100755
index 00000000..63a0dd15
Binary files /dev/null and b/static/icons/0600640A.png differ
diff --git a/static/icons/0600640B.png b/static/icons/0600640B.png
new file mode 100755
index 00000000..9107cc0e
Binary files /dev/null and b/static/icons/0600640B.png differ
diff --git a/static/icons/0600640C.png b/static/icons/0600640C.png
new file mode 100755
index 00000000..e49336d1
Binary files /dev/null and b/static/icons/0600640C.png differ
diff --git a/static/icons/0600640D.png b/static/icons/0600640D.png
new file mode 100755
index 00000000..9107cc0e
Binary files /dev/null and b/static/icons/0600640D.png differ
diff --git a/static/icons/0600640E.png b/static/icons/0600640E.png
new file mode 100755
index 00000000..4bf235b4
Binary files /dev/null and b/static/icons/0600640E.png differ
diff --git a/static/icons/0600640F.png b/static/icons/0600640F.png
new file mode 100755
index 00000000..b839346e
Binary files /dev/null and b/static/icons/0600640F.png differ
diff --git a/static/icons/06006410.png b/static/icons/06006410.png
new file mode 100755
index 00000000..838b4993
Binary files /dev/null and b/static/icons/06006410.png differ
diff --git a/static/icons/06006411.png b/static/icons/06006411.png
new file mode 100755
index 00000000..331fe78b
Binary files /dev/null and b/static/icons/06006411.png differ
diff --git a/static/icons/06006412.png b/static/icons/06006412.png
new file mode 100755
index 00000000..b1e82c53
Binary files /dev/null and b/static/icons/06006412.png differ
diff --git a/static/icons/06006413.png b/static/icons/06006413.png
new file mode 100755
index 00000000..b926b5b6
Binary files /dev/null and b/static/icons/06006413.png differ
diff --git a/static/icons/06006414.png b/static/icons/06006414.png
new file mode 100755
index 00000000..f02c06e2
Binary files /dev/null and b/static/icons/06006414.png differ
diff --git a/static/icons/06006415.png b/static/icons/06006415.png
new file mode 100755
index 00000000..50d120ff
Binary files /dev/null and b/static/icons/06006415.png differ
diff --git a/static/icons/06006416.png b/static/icons/06006416.png
new file mode 100755
index 00000000..41f1df79
Binary files /dev/null and b/static/icons/06006416.png differ
diff --git a/static/icons/06006417.png b/static/icons/06006417.png
new file mode 100755
index 00000000..11dfacde
Binary files /dev/null and b/static/icons/06006417.png differ
diff --git a/static/icons/06006418.png b/static/icons/06006418.png
new file mode 100755
index 00000000..184d5677
Binary files /dev/null and b/static/icons/06006418.png differ
diff --git a/static/icons/06006419.png b/static/icons/06006419.png
new file mode 100755
index 00000000..1aad2dc2
Binary files /dev/null and b/static/icons/06006419.png differ
diff --git a/static/icons/0600641D.png b/static/icons/0600641D.png
new file mode 100755
index 00000000..5917854e
Binary files /dev/null and b/static/icons/0600641D.png differ
diff --git a/static/icons/0600641E.png b/static/icons/0600641E.png
new file mode 100755
index 00000000..1f529df9
Binary files /dev/null and b/static/icons/0600641E.png differ
diff --git a/static/icons/0600641F.png b/static/icons/0600641F.png
new file mode 100755
index 00000000..19b73c86
Binary files /dev/null and b/static/icons/0600641F.png differ
diff --git a/static/icons/06006420.png b/static/icons/06006420.png
new file mode 100755
index 00000000..c7dce811
Binary files /dev/null and b/static/icons/06006420.png differ
diff --git a/static/icons/06006424.png b/static/icons/06006424.png
new file mode 100755
index 00000000..5e254d99
Binary files /dev/null and b/static/icons/06006424.png differ
diff --git a/static/icons/06006425.png b/static/icons/06006425.png
new file mode 100755
index 00000000..7700f827
Binary files /dev/null and b/static/icons/06006425.png differ
diff --git a/static/icons/06006426.png b/static/icons/06006426.png
new file mode 100755
index 00000000..b865c166
Binary files /dev/null and b/static/icons/06006426.png differ
diff --git a/static/icons/06006427.png b/static/icons/06006427.png
new file mode 100755
index 00000000..629e9c23
Binary files /dev/null and b/static/icons/06006427.png differ
diff --git a/static/icons/06006428.png b/static/icons/06006428.png
new file mode 100755
index 00000000..8691a1a8
Binary files /dev/null and b/static/icons/06006428.png differ
diff --git a/static/icons/06006429.png b/static/icons/06006429.png
new file mode 100755
index 00000000..078e4798
Binary files /dev/null and b/static/icons/06006429.png differ
diff --git a/static/icons/0600642A.png b/static/icons/0600642A.png
new file mode 100755
index 00000000..60002e01
Binary files /dev/null and b/static/icons/0600642A.png differ
diff --git a/static/icons/0600642B.png b/static/icons/0600642B.png
new file mode 100755
index 00000000..81cd2171
Binary files /dev/null and b/static/icons/0600642B.png differ
diff --git a/static/icons/0600642D.png b/static/icons/0600642D.png
new file mode 100755
index 00000000..c93faa3b
Binary files /dev/null and b/static/icons/0600642D.png differ
diff --git a/static/icons/0600642F.png b/static/icons/0600642F.png
new file mode 100755
index 00000000..73d3e9e9
Binary files /dev/null and b/static/icons/0600642F.png differ
diff --git a/static/icons/06006430.png b/static/icons/06006430.png
new file mode 100755
index 00000000..59c7fd3f
Binary files /dev/null and b/static/icons/06006430.png differ
diff --git a/static/icons/06006431.png b/static/icons/06006431.png
new file mode 100755
index 00000000..c5111c96
Binary files /dev/null and b/static/icons/06006431.png differ
diff --git a/static/icons/06006432.png b/static/icons/06006432.png
new file mode 100755
index 00000000..7a4b1f57
Binary files /dev/null and b/static/icons/06006432.png differ
diff --git a/static/icons/06006434.png b/static/icons/06006434.png
new file mode 100755
index 00000000..5d91593e
Binary files /dev/null and b/static/icons/06006434.png differ
diff --git a/static/icons/06006436.png b/static/icons/06006436.png
new file mode 100755
index 00000000..6d3d23a0
Binary files /dev/null and b/static/icons/06006436.png differ
diff --git a/static/icons/06006437.png b/static/icons/06006437.png
new file mode 100755
index 00000000..3820c134
Binary files /dev/null and b/static/icons/06006437.png differ
diff --git a/static/icons/06006438.png b/static/icons/06006438.png
new file mode 100755
index 00000000..4530969f
Binary files /dev/null and b/static/icons/06006438.png differ
diff --git a/static/icons/0600643B.png b/static/icons/0600643B.png
new file mode 100755
index 00000000..1a637dec
Binary files /dev/null and b/static/icons/0600643B.png differ
diff --git a/static/icons/0600643C.png b/static/icons/0600643C.png
new file mode 100755
index 00000000..efe0717d
Binary files /dev/null and b/static/icons/0600643C.png differ
diff --git a/static/icons/06006440.png b/static/icons/06006440.png
new file mode 100755
index 00000000..2edebc27
Binary files /dev/null and b/static/icons/06006440.png differ
diff --git a/static/icons/06006441.png b/static/icons/06006441.png
new file mode 100755
index 00000000..a8a891c4
Binary files /dev/null and b/static/icons/06006441.png differ
diff --git a/static/icons/06006442.png b/static/icons/06006442.png
new file mode 100755
index 00000000..23d1fcf7
Binary files /dev/null and b/static/icons/06006442.png differ
diff --git a/static/icons/06006443.png b/static/icons/06006443.png
new file mode 100755
index 00000000..a8a891c4
Binary files /dev/null and b/static/icons/06006443.png differ
diff --git a/static/icons/06006444.png b/static/icons/06006444.png
new file mode 100755
index 00000000..dfa9767a
Binary files /dev/null and b/static/icons/06006444.png differ
diff --git a/static/icons/06006445.png b/static/icons/06006445.png
new file mode 100755
index 00000000..c4c683fa
Binary files /dev/null and b/static/icons/06006445.png differ
diff --git a/static/icons/06006446.png b/static/icons/06006446.png
new file mode 100755
index 00000000..9ddc2073
Binary files /dev/null and b/static/icons/06006446.png differ
diff --git a/static/icons/06006447.png b/static/icons/06006447.png
new file mode 100755
index 00000000..dc942e12
Binary files /dev/null and b/static/icons/06006447.png differ
diff --git a/static/icons/06006448.png b/static/icons/06006448.png
new file mode 100755
index 00000000..382e502e
Binary files /dev/null and b/static/icons/06006448.png differ
diff --git a/static/icons/06006449.png b/static/icons/06006449.png
new file mode 100755
index 00000000..7becedaa
Binary files /dev/null and b/static/icons/06006449.png differ
diff --git a/static/icons/0600644A.png b/static/icons/0600644A.png
new file mode 100755
index 00000000..c2f2ddeb
Binary files /dev/null and b/static/icons/0600644A.png differ
diff --git a/static/icons/0600644B.png b/static/icons/0600644B.png
new file mode 100755
index 00000000..366bf4a8
Binary files /dev/null and b/static/icons/0600644B.png differ
diff --git a/static/icons/0600644C.png b/static/icons/0600644C.png
new file mode 100755
index 00000000..cb7df4e5
Binary files /dev/null and b/static/icons/0600644C.png differ
diff --git a/static/icons/0600644D.png b/static/icons/0600644D.png
new file mode 100755
index 00000000..70151b8d
Binary files /dev/null and b/static/icons/0600644D.png differ
diff --git a/static/icons/0600644E.png b/static/icons/0600644E.png
new file mode 100755
index 00000000..cb8cf94c
Binary files /dev/null and b/static/icons/0600644E.png differ
diff --git a/static/icons/06006450.png b/static/icons/06006450.png
new file mode 100755
index 00000000..1dbfa7ab
Binary files /dev/null and b/static/icons/06006450.png differ
diff --git a/static/icons/06006451.png b/static/icons/06006451.png
new file mode 100755
index 00000000..267c67e8
Binary files /dev/null and b/static/icons/06006451.png differ
diff --git a/static/icons/06006452.png b/static/icons/06006452.png
new file mode 100755
index 00000000..e1c2009a
Binary files /dev/null and b/static/icons/06006452.png differ
diff --git a/static/icons/06006454.png b/static/icons/06006454.png
new file mode 100755
index 00000000..ee12ca15
Binary files /dev/null and b/static/icons/06006454.png differ
diff --git a/static/icons/06006455.png b/static/icons/06006455.png
new file mode 100755
index 00000000..b1ba524b
Binary files /dev/null and b/static/icons/06006455.png differ
diff --git a/static/icons/06006456.png b/static/icons/06006456.png
new file mode 100755
index 00000000..39ef9ff4
Binary files /dev/null and b/static/icons/06006456.png differ
diff --git a/static/icons/06006457.png b/static/icons/06006457.png
new file mode 100755
index 00000000..45b0141f
Binary files /dev/null and b/static/icons/06006457.png differ
diff --git a/static/icons/06006458.png b/static/icons/06006458.png
new file mode 100755
index 00000000..63f59d38
Binary files /dev/null and b/static/icons/06006458.png differ
diff --git a/static/icons/06006459.png b/static/icons/06006459.png
new file mode 100755
index 00000000..4bc250ee
Binary files /dev/null and b/static/icons/06006459.png differ
diff --git a/static/icons/0600645A.png b/static/icons/0600645A.png
new file mode 100755
index 00000000..64bed333
Binary files /dev/null and b/static/icons/0600645A.png differ
diff --git a/static/icons/0600645B.png b/static/icons/0600645B.png
new file mode 100755
index 00000000..809e6820
Binary files /dev/null and b/static/icons/0600645B.png differ
diff --git a/static/icons/0600645C.png b/static/icons/0600645C.png
new file mode 100755
index 00000000..c880f7d3
Binary files /dev/null and b/static/icons/0600645C.png differ
diff --git a/static/icons/0600645D.png b/static/icons/0600645D.png
new file mode 100755
index 00000000..120836f8
Binary files /dev/null and b/static/icons/0600645D.png differ
diff --git a/static/icons/0600645E.png b/static/icons/0600645E.png
new file mode 100755
index 00000000..70f27026
Binary files /dev/null and b/static/icons/0600645E.png differ
diff --git a/static/icons/0600645F.png b/static/icons/0600645F.png
new file mode 100755
index 00000000..44f73f84
Binary files /dev/null and b/static/icons/0600645F.png differ
diff --git a/static/icons/06006460.png b/static/icons/06006460.png
new file mode 100755
index 00000000..60a7a08a
Binary files /dev/null and b/static/icons/06006460.png differ
diff --git a/static/icons/06006461.png b/static/icons/06006461.png
new file mode 100755
index 00000000..ce784df0
Binary files /dev/null and b/static/icons/06006461.png differ
diff --git a/static/icons/06006462.png b/static/icons/06006462.png
new file mode 100755
index 00000000..ca2db7ae
Binary files /dev/null and b/static/icons/06006462.png differ
diff --git a/static/icons/06006463.png b/static/icons/06006463.png
new file mode 100755
index 00000000..7119b846
Binary files /dev/null and b/static/icons/06006463.png differ
diff --git a/static/icons/06006464.png b/static/icons/06006464.png
new file mode 100755
index 00000000..113dcfd6
Binary files /dev/null and b/static/icons/06006464.png differ
diff --git a/static/icons/06006465.png b/static/icons/06006465.png
new file mode 100755
index 00000000..f8777961
Binary files /dev/null and b/static/icons/06006465.png differ
diff --git a/static/icons/06006466.png b/static/icons/06006466.png
new file mode 100755
index 00000000..00072ade
Binary files /dev/null and b/static/icons/06006466.png differ
diff --git a/static/icons/06006467.png b/static/icons/06006467.png
new file mode 100755
index 00000000..a12679b2
Binary files /dev/null and b/static/icons/06006467.png differ
diff --git a/static/icons/06006468.png b/static/icons/06006468.png
new file mode 100755
index 00000000..96a5643e
Binary files /dev/null and b/static/icons/06006468.png differ
diff --git a/static/icons/06006469.png b/static/icons/06006469.png
new file mode 100755
index 00000000..16d81a0f
Binary files /dev/null and b/static/icons/06006469.png differ
diff --git a/static/icons/0600646A.png b/static/icons/0600646A.png
new file mode 100755
index 00000000..a6683ae5
Binary files /dev/null and b/static/icons/0600646A.png differ
diff --git a/static/icons/0600646B.png b/static/icons/0600646B.png
new file mode 100755
index 00000000..7eaf2309
Binary files /dev/null and b/static/icons/0600646B.png differ
diff --git a/static/icons/0600646C.png b/static/icons/0600646C.png
new file mode 100755
index 00000000..4970787b
Binary files /dev/null and b/static/icons/0600646C.png differ
diff --git a/static/icons/0600646D.png b/static/icons/0600646D.png
new file mode 100755
index 00000000..2880b4d0
Binary files /dev/null and b/static/icons/0600646D.png differ
diff --git a/static/icons/0600646E.png b/static/icons/0600646E.png
new file mode 100755
index 00000000..3ba4ae48
Binary files /dev/null and b/static/icons/0600646E.png differ
diff --git a/static/icons/0600646F.png b/static/icons/0600646F.png
new file mode 100755
index 00000000..54a30cb3
Binary files /dev/null and b/static/icons/0600646F.png differ
diff --git a/static/icons/06006470.png b/static/icons/06006470.png
new file mode 100755
index 00000000..cfc2e72d
Binary files /dev/null and b/static/icons/06006470.png differ
diff --git a/static/icons/06006472.png b/static/icons/06006472.png
new file mode 100755
index 00000000..793aed7a
Binary files /dev/null and b/static/icons/06006472.png differ
diff --git a/static/icons/06006473.png b/static/icons/06006473.png
new file mode 100755
index 00000000..04a00c4a
Binary files /dev/null and b/static/icons/06006473.png differ
diff --git a/static/icons/06006474.png b/static/icons/06006474.png
new file mode 100755
index 00000000..82212365
Binary files /dev/null and b/static/icons/06006474.png differ
diff --git a/static/icons/06006475.png b/static/icons/06006475.png
new file mode 100755
index 00000000..956b5ec9
Binary files /dev/null and b/static/icons/06006475.png differ
diff --git a/static/icons/06006476.png b/static/icons/06006476.png
new file mode 100755
index 00000000..2c075b73
Binary files /dev/null and b/static/icons/06006476.png differ
diff --git a/static/icons/06006477.png b/static/icons/06006477.png
new file mode 100755
index 00000000..b8a15fa6
Binary files /dev/null and b/static/icons/06006477.png differ
diff --git a/static/icons/06006478.png b/static/icons/06006478.png
new file mode 100755
index 00000000..b4168c0e
Binary files /dev/null and b/static/icons/06006478.png differ
diff --git a/static/icons/06006479.png b/static/icons/06006479.png
new file mode 100755
index 00000000..7efe1169
Binary files /dev/null and b/static/icons/06006479.png differ
diff --git a/static/icons/0600647A.png b/static/icons/0600647A.png
new file mode 100755
index 00000000..72612280
Binary files /dev/null and b/static/icons/0600647A.png differ
diff --git a/static/icons/0600647B.png b/static/icons/0600647B.png
new file mode 100755
index 00000000..7546d390
Binary files /dev/null and b/static/icons/0600647B.png differ
diff --git a/static/icons/0600647C.png b/static/icons/0600647C.png
new file mode 100755
index 00000000..b8a15fa6
Binary files /dev/null and b/static/icons/0600647C.png differ
diff --git a/static/icons/0600647D.png b/static/icons/0600647D.png
new file mode 100755
index 00000000..4c5b6941
Binary files /dev/null and b/static/icons/0600647D.png differ
diff --git a/static/icons/0600647E.png b/static/icons/0600647E.png
new file mode 100755
index 00000000..7546d390
Binary files /dev/null and b/static/icons/0600647E.png differ
diff --git a/static/icons/0600647F.png b/static/icons/0600647F.png
new file mode 100755
index 00000000..e91cf556
Binary files /dev/null and b/static/icons/0600647F.png differ
diff --git a/static/icons/06006480.png b/static/icons/06006480.png
new file mode 100755
index 00000000..3dda3ae4
Binary files /dev/null and b/static/icons/06006480.png differ
diff --git a/static/icons/06006481.png b/static/icons/06006481.png
new file mode 100755
index 00000000..f9e587d2
Binary files /dev/null and b/static/icons/06006481.png differ
diff --git a/static/icons/06006482.png b/static/icons/06006482.png
new file mode 100755
index 00000000..db573ff1
Binary files /dev/null and b/static/icons/06006482.png differ
diff --git a/static/icons/06006483.png b/static/icons/06006483.png
new file mode 100755
index 00000000..6bc66a84
Binary files /dev/null and b/static/icons/06006483.png differ
diff --git a/static/icons/06006484.png b/static/icons/06006484.png
new file mode 100755
index 00000000..dd985c37
Binary files /dev/null and b/static/icons/06006484.png differ
diff --git a/static/icons/06006485.png b/static/icons/06006485.png
new file mode 100755
index 00000000..6f247933
Binary files /dev/null and b/static/icons/06006485.png differ
diff --git a/static/icons/06006486.png b/static/icons/06006486.png
new file mode 100755
index 00000000..a10c6a76
Binary files /dev/null and b/static/icons/06006486.png differ
diff --git a/static/icons/06006487.png b/static/icons/06006487.png
new file mode 100755
index 00000000..5a868c68
Binary files /dev/null and b/static/icons/06006487.png differ
diff --git a/static/icons/06006488.png b/static/icons/06006488.png
new file mode 100755
index 00000000..369cfb2c
Binary files /dev/null and b/static/icons/06006488.png differ
diff --git a/static/icons/06006489.png b/static/icons/06006489.png
new file mode 100755
index 00000000..20ff02a3
Binary files /dev/null and b/static/icons/06006489.png differ
diff --git a/static/icons/0600648A.png b/static/icons/0600648A.png
new file mode 100755
index 00000000..e524bc45
Binary files /dev/null and b/static/icons/0600648A.png differ
diff --git a/static/icons/0600648B.png b/static/icons/0600648B.png
new file mode 100755
index 00000000..4ea8e93b
Binary files /dev/null and b/static/icons/0600648B.png differ
diff --git a/static/icons/0600648C.png b/static/icons/0600648C.png
new file mode 100755
index 00000000..8c0782c5
Binary files /dev/null and b/static/icons/0600648C.png differ
diff --git a/static/icons/0600648D.png b/static/icons/0600648D.png
new file mode 100755
index 00000000..b5f24023
Binary files /dev/null and b/static/icons/0600648D.png differ
diff --git a/static/icons/0600648E.png b/static/icons/0600648E.png
new file mode 100755
index 00000000..9ac920b3
Binary files /dev/null and b/static/icons/0600648E.png differ
diff --git a/static/icons/0600648F.png b/static/icons/0600648F.png
new file mode 100755
index 00000000..6ae7f2a3
Binary files /dev/null and b/static/icons/0600648F.png differ
diff --git a/static/icons/06006490.png b/static/icons/06006490.png
new file mode 100755
index 00000000..d2246ae9
Binary files /dev/null and b/static/icons/06006490.png differ
diff --git a/static/icons/06006492.png b/static/icons/06006492.png
new file mode 100755
index 00000000..f4fe5224
Binary files /dev/null and b/static/icons/06006492.png differ
diff --git a/static/icons/06006493.png b/static/icons/06006493.png
new file mode 100755
index 00000000..83f0cdc6
Binary files /dev/null and b/static/icons/06006493.png differ
diff --git a/static/icons/06006494.png b/static/icons/06006494.png
new file mode 100755
index 00000000..07138f6b
Binary files /dev/null and b/static/icons/06006494.png differ
diff --git a/static/icons/06006495.png b/static/icons/06006495.png
new file mode 100755
index 00000000..050a936b
Binary files /dev/null and b/static/icons/06006495.png differ
diff --git a/static/icons/06006496.png b/static/icons/06006496.png
new file mode 100755
index 00000000..377282d9
Binary files /dev/null and b/static/icons/06006496.png differ
diff --git a/static/icons/06006497.png b/static/icons/06006497.png
new file mode 100755
index 00000000..f8a8db86
Binary files /dev/null and b/static/icons/06006497.png differ
diff --git a/static/icons/06006498.png b/static/icons/06006498.png
new file mode 100755
index 00000000..2a0d9d92
Binary files /dev/null and b/static/icons/06006498.png differ
diff --git a/static/icons/06006499.png b/static/icons/06006499.png
new file mode 100755
index 00000000..c3600b0d
Binary files /dev/null and b/static/icons/06006499.png differ
diff --git a/static/icons/0600649A.png b/static/icons/0600649A.png
new file mode 100755
index 00000000..65980222
Binary files /dev/null and b/static/icons/0600649A.png differ
diff --git a/static/icons/0600649B.png b/static/icons/0600649B.png
new file mode 100755
index 00000000..49d0b0ff
Binary files /dev/null and b/static/icons/0600649B.png differ
diff --git a/static/icons/0600649D.png b/static/icons/0600649D.png
new file mode 100755
index 00000000..c4c5cb42
Binary files /dev/null and b/static/icons/0600649D.png differ
diff --git a/static/icons/0600649F.png b/static/icons/0600649F.png
new file mode 100755
index 00000000..14ab9736
Binary files /dev/null and b/static/icons/0600649F.png differ
diff --git a/static/icons/060064A1.png b/static/icons/060064A1.png
new file mode 100755
index 00000000..a3bb3eca
Binary files /dev/null and b/static/icons/060064A1.png differ
diff --git a/static/icons/060064A3.png b/static/icons/060064A3.png
new file mode 100755
index 00000000..7abd2d89
Binary files /dev/null and b/static/icons/060064A3.png differ
diff --git a/static/icons/060064A5.png b/static/icons/060064A5.png
new file mode 100755
index 00000000..767fea4a
Binary files /dev/null and b/static/icons/060064A5.png differ
diff --git a/static/icons/060064A7.png b/static/icons/060064A7.png
new file mode 100755
index 00000000..4377af32
Binary files /dev/null and b/static/icons/060064A7.png differ
diff --git a/static/icons/060064A8.png b/static/icons/060064A8.png
new file mode 100755
index 00000000..679c1fbc
Binary files /dev/null and b/static/icons/060064A8.png differ
diff --git a/static/icons/060064A9.png b/static/icons/060064A9.png
new file mode 100755
index 00000000..1b38e09c
Binary files /dev/null and b/static/icons/060064A9.png differ
diff --git a/static/icons/060064AA.png b/static/icons/060064AA.png
new file mode 100755
index 00000000..91038eaf
Binary files /dev/null and b/static/icons/060064AA.png differ
diff --git a/static/icons/060064AB.png b/static/icons/060064AB.png
new file mode 100755
index 00000000..c8fa52eb
Binary files /dev/null and b/static/icons/060064AB.png differ
diff --git a/static/icons/060064AC.png b/static/icons/060064AC.png
new file mode 100755
index 00000000..6cf693ce
Binary files /dev/null and b/static/icons/060064AC.png differ
diff --git a/static/icons/060064AD.png b/static/icons/060064AD.png
new file mode 100755
index 00000000..4b810a3c
Binary files /dev/null and b/static/icons/060064AD.png differ
diff --git a/static/icons/060064AE.png b/static/icons/060064AE.png
new file mode 100755
index 00000000..7727b75d
Binary files /dev/null and b/static/icons/060064AE.png differ
diff --git a/static/icons/060064AF.png b/static/icons/060064AF.png
new file mode 100755
index 00000000..42762e4d
Binary files /dev/null and b/static/icons/060064AF.png differ
diff --git a/static/icons/060064B0.png b/static/icons/060064B0.png
new file mode 100755
index 00000000..8cf6366a
Binary files /dev/null and b/static/icons/060064B0.png differ
diff --git a/static/icons/060064B1.png b/static/icons/060064B1.png
new file mode 100755
index 00000000..f02957c7
Binary files /dev/null and b/static/icons/060064B1.png differ
diff --git a/static/icons/060064B2.png b/static/icons/060064B2.png
new file mode 100755
index 00000000..6e7f5757
Binary files /dev/null and b/static/icons/060064B2.png differ
diff --git a/static/icons/060064B3.png b/static/icons/060064B3.png
new file mode 100755
index 00000000..26d37f1e
Binary files /dev/null and b/static/icons/060064B3.png differ
diff --git a/static/icons/060064B4.png b/static/icons/060064B4.png
new file mode 100755
index 00000000..9285df51
Binary files /dev/null and b/static/icons/060064B4.png differ
diff --git a/static/icons/060064B5.png b/static/icons/060064B5.png
new file mode 100755
index 00000000..ca6b3f8b
Binary files /dev/null and b/static/icons/060064B5.png differ
diff --git a/static/icons/060064B6.png b/static/icons/060064B6.png
new file mode 100755
index 00000000..de756569
Binary files /dev/null and b/static/icons/060064B6.png differ
diff --git a/static/icons/060064B7.png b/static/icons/060064B7.png
new file mode 100755
index 00000000..95409147
Binary files /dev/null and b/static/icons/060064B7.png differ
diff --git a/static/icons/060064B8.png b/static/icons/060064B8.png
new file mode 100755
index 00000000..a50e1865
Binary files /dev/null and b/static/icons/060064B8.png differ
diff --git a/static/icons/060064B9.png b/static/icons/060064B9.png
new file mode 100755
index 00000000..caebfae8
Binary files /dev/null and b/static/icons/060064B9.png differ
diff --git a/static/icons/060064BA.png b/static/icons/060064BA.png
new file mode 100755
index 00000000..c11d4961
Binary files /dev/null and b/static/icons/060064BA.png differ
diff --git a/static/icons/060064BB.png b/static/icons/060064BB.png
new file mode 100755
index 00000000..a367bd7f
Binary files /dev/null and b/static/icons/060064BB.png differ
diff --git a/static/icons/060064BF.png b/static/icons/060064BF.png
new file mode 100755
index 00000000..46b185c9
Binary files /dev/null and b/static/icons/060064BF.png differ
diff --git a/static/icons/060064C0.png b/static/icons/060064C0.png
new file mode 100755
index 00000000..496b6f37
Binary files /dev/null and b/static/icons/060064C0.png differ
diff --git a/static/icons/060064C1.png b/static/icons/060064C1.png
new file mode 100755
index 00000000..7d67dfc5
Binary files /dev/null and b/static/icons/060064C1.png differ
diff --git a/static/icons/060064C2.png b/static/icons/060064C2.png
new file mode 100755
index 00000000..e3bf1cc2
Binary files /dev/null and b/static/icons/060064C2.png differ
diff --git a/static/icons/060064C3.png b/static/icons/060064C3.png
new file mode 100755
index 00000000..8bd03808
Binary files /dev/null and b/static/icons/060064C3.png differ
diff --git a/static/icons/060064C4.png b/static/icons/060064C4.png
new file mode 100755
index 00000000..a7c3ce81
Binary files /dev/null and b/static/icons/060064C4.png differ
diff --git a/static/icons/060064C5.png b/static/icons/060064C5.png
new file mode 100755
index 00000000..65b07fb3
Binary files /dev/null and b/static/icons/060064C5.png differ
diff --git a/static/icons/060064C6.png b/static/icons/060064C6.png
new file mode 100755
index 00000000..e4e1749a
Binary files /dev/null and b/static/icons/060064C6.png differ
diff --git a/static/icons/060064C7.png b/static/icons/060064C7.png
new file mode 100755
index 00000000..607999b2
Binary files /dev/null and b/static/icons/060064C7.png differ
diff --git a/static/icons/060064C8.png b/static/icons/060064C8.png
new file mode 100755
index 00000000..811320c9
Binary files /dev/null and b/static/icons/060064C8.png differ
diff --git a/static/icons/060064C9.png b/static/icons/060064C9.png
new file mode 100755
index 00000000..6dfec46c
Binary files /dev/null and b/static/icons/060064C9.png differ
diff --git a/static/icons/060064CA.png b/static/icons/060064CA.png
new file mode 100755
index 00000000..c891f1c3
Binary files /dev/null and b/static/icons/060064CA.png differ
diff --git a/static/icons/060064CB.png b/static/icons/060064CB.png
new file mode 100755
index 00000000..7522b57e
Binary files /dev/null and b/static/icons/060064CB.png differ
diff --git a/static/icons/060064CC.png b/static/icons/060064CC.png
new file mode 100755
index 00000000..60a1b263
Binary files /dev/null and b/static/icons/060064CC.png differ
diff --git a/static/icons/060064CD.png b/static/icons/060064CD.png
new file mode 100755
index 00000000..83816ec7
Binary files /dev/null and b/static/icons/060064CD.png differ
diff --git a/static/icons/060064CE.png b/static/icons/060064CE.png
new file mode 100755
index 00000000..bd551600
Binary files /dev/null and b/static/icons/060064CE.png differ
diff --git a/static/icons/060064CF.png b/static/icons/060064CF.png
new file mode 100755
index 00000000..229edc08
Binary files /dev/null and b/static/icons/060064CF.png differ
diff --git a/static/icons/060064D0.png b/static/icons/060064D0.png
new file mode 100755
index 00000000..86afcca0
Binary files /dev/null and b/static/icons/060064D0.png differ
diff --git a/static/icons/060064D1.png b/static/icons/060064D1.png
new file mode 100755
index 00000000..12605bf7
Binary files /dev/null and b/static/icons/060064D1.png differ
diff --git a/static/icons/060064D2.png b/static/icons/060064D2.png
new file mode 100755
index 00000000..f868335d
Binary files /dev/null and b/static/icons/060064D2.png differ
diff --git a/static/icons/060064D3.png b/static/icons/060064D3.png
new file mode 100755
index 00000000..aeffc017
Binary files /dev/null and b/static/icons/060064D3.png differ
diff --git a/static/icons/060064D4.png b/static/icons/060064D4.png
new file mode 100755
index 00000000..f31e912a
Binary files /dev/null and b/static/icons/060064D4.png differ
diff --git a/static/icons/060064D5.png b/static/icons/060064D5.png
new file mode 100755
index 00000000..d16d4536
Binary files /dev/null and b/static/icons/060064D5.png differ
diff --git a/static/icons/060064D6.png b/static/icons/060064D6.png
new file mode 100755
index 00000000..d2f25b6a
Binary files /dev/null and b/static/icons/060064D6.png differ
diff --git a/static/icons/060064D7.png b/static/icons/060064D7.png
new file mode 100755
index 00000000..28eb2afb
Binary files /dev/null and b/static/icons/060064D7.png differ
diff --git a/static/icons/060064D8.png b/static/icons/060064D8.png
new file mode 100755
index 00000000..c4fae176
Binary files /dev/null and b/static/icons/060064D8.png differ
diff --git a/static/icons/060064D9.png b/static/icons/060064D9.png
new file mode 100755
index 00000000..2876f52d
Binary files /dev/null and b/static/icons/060064D9.png differ
diff --git a/static/icons/060064DA.png b/static/icons/060064DA.png
new file mode 100755
index 00000000..aac87f6b
Binary files /dev/null and b/static/icons/060064DA.png differ
diff --git a/static/icons/060064DB.png b/static/icons/060064DB.png
new file mode 100755
index 00000000..4e82845e
Binary files /dev/null and b/static/icons/060064DB.png differ
diff --git a/static/icons/060064DC.png b/static/icons/060064DC.png
new file mode 100755
index 00000000..35551964
Binary files /dev/null and b/static/icons/060064DC.png differ
diff --git a/static/icons/060064DD.png b/static/icons/060064DD.png
new file mode 100755
index 00000000..63035025
Binary files /dev/null and b/static/icons/060064DD.png differ
diff --git a/static/icons/060064DE.png b/static/icons/060064DE.png
new file mode 100755
index 00000000..f6023d16
Binary files /dev/null and b/static/icons/060064DE.png differ
diff --git a/static/icons/060064DF.png b/static/icons/060064DF.png
new file mode 100755
index 00000000..7452c841
Binary files /dev/null and b/static/icons/060064DF.png differ
diff --git a/static/icons/060064E0.png b/static/icons/060064E0.png
new file mode 100755
index 00000000..c9c71e34
Binary files /dev/null and b/static/icons/060064E0.png differ
diff --git a/static/icons/060064E1.png b/static/icons/060064E1.png
new file mode 100755
index 00000000..af932407
Binary files /dev/null and b/static/icons/060064E1.png differ
diff --git a/static/icons/060064E2.png b/static/icons/060064E2.png
new file mode 100755
index 00000000..380bac9b
Binary files /dev/null and b/static/icons/060064E2.png differ
diff --git a/static/icons/060064E3.png b/static/icons/060064E3.png
new file mode 100755
index 00000000..9eb2228d
Binary files /dev/null and b/static/icons/060064E3.png differ
diff --git a/static/icons/060064E4.png b/static/icons/060064E4.png
new file mode 100755
index 00000000..0b7fc86d
Binary files /dev/null and b/static/icons/060064E4.png differ
diff --git a/static/icons/060064E5.png b/static/icons/060064E5.png
new file mode 100755
index 00000000..ce739fbc
Binary files /dev/null and b/static/icons/060064E5.png differ
diff --git a/static/icons/060064E6.png b/static/icons/060064E6.png
new file mode 100755
index 00000000..e8211c12
Binary files /dev/null and b/static/icons/060064E6.png differ
diff --git a/static/icons/060064E7.png b/static/icons/060064E7.png
new file mode 100755
index 00000000..e653cc7b
Binary files /dev/null and b/static/icons/060064E7.png differ
diff --git a/static/icons/060064E8.png b/static/icons/060064E8.png
new file mode 100755
index 00000000..eca128c6
Binary files /dev/null and b/static/icons/060064E8.png differ
diff --git a/static/icons/060064E9.png b/static/icons/060064E9.png
new file mode 100755
index 00000000..e8fc3412
Binary files /dev/null and b/static/icons/060064E9.png differ
diff --git a/static/icons/060064EA.png b/static/icons/060064EA.png
new file mode 100755
index 00000000..a8952dce
Binary files /dev/null and b/static/icons/060064EA.png differ
diff --git a/static/icons/060064EB.png b/static/icons/060064EB.png
new file mode 100755
index 00000000..ac33f8a1
Binary files /dev/null and b/static/icons/060064EB.png differ
diff --git a/static/icons/060064ED.png b/static/icons/060064ED.png
new file mode 100755
index 00000000..907ee785
Binary files /dev/null and b/static/icons/060064ED.png differ
diff --git a/static/icons/060064EF.png b/static/icons/060064EF.png
new file mode 100755
index 00000000..578cf738
Binary files /dev/null and b/static/icons/060064EF.png differ
diff --git a/static/icons/060064F0.png b/static/icons/060064F0.png
new file mode 100755
index 00000000..b3f50794
Binary files /dev/null and b/static/icons/060064F0.png differ
diff --git a/static/icons/060064F1.png b/static/icons/060064F1.png
new file mode 100755
index 00000000..10391947
Binary files /dev/null and b/static/icons/060064F1.png differ
diff --git a/static/icons/060064F2.png b/static/icons/060064F2.png
new file mode 100755
index 00000000..0254aab4
Binary files /dev/null and b/static/icons/060064F2.png differ
diff --git a/static/icons/060064F3.png b/static/icons/060064F3.png
new file mode 100755
index 00000000..935aa9e3
Binary files /dev/null and b/static/icons/060064F3.png differ
diff --git a/static/icons/060064F4.png b/static/icons/060064F4.png
new file mode 100755
index 00000000..83664d75
Binary files /dev/null and b/static/icons/060064F4.png differ
diff --git a/static/icons/060064F5.png b/static/icons/060064F5.png
new file mode 100755
index 00000000..59f3941a
Binary files /dev/null and b/static/icons/060064F5.png differ
diff --git a/static/icons/060064F6.png b/static/icons/060064F6.png
new file mode 100755
index 00000000..3a99d4c8
Binary files /dev/null and b/static/icons/060064F6.png differ
diff --git a/static/icons/060064F7.png b/static/icons/060064F7.png
new file mode 100755
index 00000000..a1b65be6
Binary files /dev/null and b/static/icons/060064F7.png differ
diff --git a/static/icons/060064F8.png b/static/icons/060064F8.png
new file mode 100755
index 00000000..c7559bae
Binary files /dev/null and b/static/icons/060064F8.png differ
diff --git a/static/icons/060064F9.png b/static/icons/060064F9.png
new file mode 100755
index 00000000..be47cb07
Binary files /dev/null and b/static/icons/060064F9.png differ
diff --git a/static/icons/060064FA.png b/static/icons/060064FA.png
new file mode 100755
index 00000000..1f5ef141
Binary files /dev/null and b/static/icons/060064FA.png differ
diff --git a/static/icons/060064FB.png b/static/icons/060064FB.png
new file mode 100755
index 00000000..f3d595f2
Binary files /dev/null and b/static/icons/060064FB.png differ
diff --git a/static/icons/060064FC.png b/static/icons/060064FC.png
new file mode 100755
index 00000000..360f3b63
Binary files /dev/null and b/static/icons/060064FC.png differ
diff --git a/static/icons/060064FD.png b/static/icons/060064FD.png
new file mode 100755
index 00000000..33b8fc9b
Binary files /dev/null and b/static/icons/060064FD.png differ
diff --git a/static/icons/060064FE.png b/static/icons/060064FE.png
new file mode 100755
index 00000000..294d3476
Binary files /dev/null and b/static/icons/060064FE.png differ
diff --git a/static/icons/060064FF.png b/static/icons/060064FF.png
new file mode 100755
index 00000000..40d6a99f
Binary files /dev/null and b/static/icons/060064FF.png differ
diff --git a/static/icons/06006500.png b/static/icons/06006500.png
new file mode 100755
index 00000000..f31088d7
Binary files /dev/null and b/static/icons/06006500.png differ
diff --git a/static/icons/06006501.png b/static/icons/06006501.png
new file mode 100755
index 00000000..9390a1d7
Binary files /dev/null and b/static/icons/06006501.png differ
diff --git a/static/icons/06006502.png b/static/icons/06006502.png
new file mode 100755
index 00000000..fd914e8f
Binary files /dev/null and b/static/icons/06006502.png differ
diff --git a/static/icons/06006503.png b/static/icons/06006503.png
new file mode 100755
index 00000000..406de3db
Binary files /dev/null and b/static/icons/06006503.png differ
diff --git a/static/icons/06006504.png b/static/icons/06006504.png
new file mode 100755
index 00000000..864655f5
Binary files /dev/null and b/static/icons/06006504.png differ
diff --git a/static/icons/06006505.png b/static/icons/06006505.png
new file mode 100755
index 00000000..4f597dba
Binary files /dev/null and b/static/icons/06006505.png differ
diff --git a/static/icons/06006506.png b/static/icons/06006506.png
new file mode 100755
index 00000000..8116f052
Binary files /dev/null and b/static/icons/06006506.png differ
diff --git a/static/icons/06006507.png b/static/icons/06006507.png
new file mode 100755
index 00000000..87c140d2
Binary files /dev/null and b/static/icons/06006507.png differ
diff --git a/static/icons/06006508.png b/static/icons/06006508.png
new file mode 100755
index 00000000..d9c2c387
Binary files /dev/null and b/static/icons/06006508.png differ
diff --git a/static/icons/06006509.png b/static/icons/06006509.png
new file mode 100755
index 00000000..4cb677df
Binary files /dev/null and b/static/icons/06006509.png differ
diff --git a/static/icons/0600650A.png b/static/icons/0600650A.png
new file mode 100755
index 00000000..b1241eee
Binary files /dev/null and b/static/icons/0600650A.png differ
diff --git a/static/icons/0600650B.png b/static/icons/0600650B.png
new file mode 100755
index 00000000..0e5edc98
Binary files /dev/null and b/static/icons/0600650B.png differ
diff --git a/static/icons/0600650C.png b/static/icons/0600650C.png
new file mode 100755
index 00000000..fa5c8b7b
Binary files /dev/null and b/static/icons/0600650C.png differ
diff --git a/static/icons/0600650D.png b/static/icons/0600650D.png
new file mode 100755
index 00000000..fb4d8f44
Binary files /dev/null and b/static/icons/0600650D.png differ
diff --git a/static/icons/0600650E.png b/static/icons/0600650E.png
new file mode 100755
index 00000000..9fcda49d
Binary files /dev/null and b/static/icons/0600650E.png differ
diff --git a/static/icons/06006512.png b/static/icons/06006512.png
new file mode 100755
index 00000000..c8f3acea
Binary files /dev/null and b/static/icons/06006512.png differ
diff --git a/static/icons/06006513.png b/static/icons/06006513.png
new file mode 100755
index 00000000..460fa39a
Binary files /dev/null and b/static/icons/06006513.png differ
diff --git a/static/icons/06006514.png b/static/icons/06006514.png
new file mode 100755
index 00000000..7e3191f3
Binary files /dev/null and b/static/icons/06006514.png differ
diff --git a/static/icons/06006515.png b/static/icons/06006515.png
new file mode 100755
index 00000000..5a6c1e85
Binary files /dev/null and b/static/icons/06006515.png differ
diff --git a/static/icons/06006516.png b/static/icons/06006516.png
new file mode 100755
index 00000000..47a2f001
Binary files /dev/null and b/static/icons/06006516.png differ
diff --git a/static/icons/06006517.png b/static/icons/06006517.png
new file mode 100755
index 00000000..d941b55c
Binary files /dev/null and b/static/icons/06006517.png differ
diff --git a/static/icons/06006518.png b/static/icons/06006518.png
new file mode 100755
index 00000000..ae088403
Binary files /dev/null and b/static/icons/06006518.png differ
diff --git a/static/icons/06006519.png b/static/icons/06006519.png
new file mode 100755
index 00000000..070819a3
Binary files /dev/null and b/static/icons/06006519.png differ
diff --git a/static/icons/0600651A.png b/static/icons/0600651A.png
new file mode 100755
index 00000000..8e4c3e3e
Binary files /dev/null and b/static/icons/0600651A.png differ
diff --git a/static/icons/0600651B.png b/static/icons/0600651B.png
new file mode 100755
index 00000000..7821d1bc
Binary files /dev/null and b/static/icons/0600651B.png differ
diff --git a/static/icons/0600651C.png b/static/icons/0600651C.png
new file mode 100755
index 00000000..9dfac7e3
Binary files /dev/null and b/static/icons/0600651C.png differ
diff --git a/static/icons/0600651D.png b/static/icons/0600651D.png
new file mode 100755
index 00000000..46fe105e
Binary files /dev/null and b/static/icons/0600651D.png differ
diff --git a/static/icons/0600651E.png b/static/icons/0600651E.png
new file mode 100755
index 00000000..9984be84
Binary files /dev/null and b/static/icons/0600651E.png differ
diff --git a/static/icons/0600651F.png b/static/icons/0600651F.png
new file mode 100755
index 00000000..43c00bab
Binary files /dev/null and b/static/icons/0600651F.png differ
diff --git a/static/icons/06006520.png b/static/icons/06006520.png
new file mode 100755
index 00000000..f9e286ce
Binary files /dev/null and b/static/icons/06006520.png differ
diff --git a/static/icons/06006521.png b/static/icons/06006521.png
new file mode 100755
index 00000000..36b7dd83
Binary files /dev/null and b/static/icons/06006521.png differ
diff --git a/static/icons/06006522.png b/static/icons/06006522.png
new file mode 100755
index 00000000..c1d3a5fc
Binary files /dev/null and b/static/icons/06006522.png differ
diff --git a/static/icons/06006523.png b/static/icons/06006523.png
new file mode 100755
index 00000000..ce9f6430
Binary files /dev/null and b/static/icons/06006523.png differ
diff --git a/static/icons/06006524.png b/static/icons/06006524.png
new file mode 100755
index 00000000..bc6c919a
Binary files /dev/null and b/static/icons/06006524.png differ
diff --git a/static/icons/06006525.png b/static/icons/06006525.png
new file mode 100755
index 00000000..80c5559b
Binary files /dev/null and b/static/icons/06006525.png differ
diff --git a/static/icons/06006526.png b/static/icons/06006526.png
new file mode 100755
index 00000000..c3a9bc4a
Binary files /dev/null and b/static/icons/06006526.png differ
diff --git a/static/icons/06006527.png b/static/icons/06006527.png
new file mode 100755
index 00000000..485e3afd
Binary files /dev/null and b/static/icons/06006527.png differ
diff --git a/static/icons/06006528.png b/static/icons/06006528.png
new file mode 100755
index 00000000..c07b88f5
Binary files /dev/null and b/static/icons/06006528.png differ
diff --git a/static/icons/06006529.png b/static/icons/06006529.png
new file mode 100755
index 00000000..19842001
Binary files /dev/null and b/static/icons/06006529.png differ
diff --git a/static/icons/0600652A.png b/static/icons/0600652A.png
new file mode 100755
index 00000000..9de4aebf
Binary files /dev/null and b/static/icons/0600652A.png differ
diff --git a/static/icons/0600652B.png b/static/icons/0600652B.png
new file mode 100755
index 00000000..36408807
Binary files /dev/null and b/static/icons/0600652B.png differ
diff --git a/static/icons/0600652C.png b/static/icons/0600652C.png
new file mode 100755
index 00000000..95726ba7
Binary files /dev/null and b/static/icons/0600652C.png differ
diff --git a/static/icons/0600652D.png b/static/icons/0600652D.png
new file mode 100755
index 00000000..e6460a78
Binary files /dev/null and b/static/icons/0600652D.png differ
diff --git a/static/icons/0600652E.png b/static/icons/0600652E.png
new file mode 100755
index 00000000..193c8f48
Binary files /dev/null and b/static/icons/0600652E.png differ
diff --git a/static/icons/0600652F.png b/static/icons/0600652F.png
new file mode 100755
index 00000000..5fc844fd
Binary files /dev/null and b/static/icons/0600652F.png differ
diff --git a/static/icons/06006530.png b/static/icons/06006530.png
new file mode 100755
index 00000000..a081eed2
Binary files /dev/null and b/static/icons/06006530.png differ
diff --git a/static/icons/06006531.png b/static/icons/06006531.png
new file mode 100755
index 00000000..2101d8e3
Binary files /dev/null and b/static/icons/06006531.png differ
diff --git a/static/icons/06006532.png b/static/icons/06006532.png
new file mode 100755
index 00000000..46384ea8
Binary files /dev/null and b/static/icons/06006532.png differ
diff --git a/static/icons/06006533.png b/static/icons/06006533.png
new file mode 100755
index 00000000..c3c33b24
Binary files /dev/null and b/static/icons/06006533.png differ
diff --git a/static/icons/06006534.png b/static/icons/06006534.png
new file mode 100755
index 00000000..fab2dd15
Binary files /dev/null and b/static/icons/06006534.png differ
diff --git a/static/icons/06006535.png b/static/icons/06006535.png
new file mode 100755
index 00000000..5eed71e3
Binary files /dev/null and b/static/icons/06006535.png differ
diff --git a/static/icons/06006536.png b/static/icons/06006536.png
new file mode 100755
index 00000000..0ef9689c
Binary files /dev/null and b/static/icons/06006536.png differ
diff --git a/static/icons/06006537.png b/static/icons/06006537.png
new file mode 100755
index 00000000..b72c68ed
Binary files /dev/null and b/static/icons/06006537.png differ
diff --git a/static/icons/06006538.png b/static/icons/06006538.png
new file mode 100755
index 00000000..4c26d250
Binary files /dev/null and b/static/icons/06006538.png differ
diff --git a/static/icons/06006539.png b/static/icons/06006539.png
new file mode 100755
index 00000000..a008c748
Binary files /dev/null and b/static/icons/06006539.png differ
diff --git a/static/icons/0600653A.png b/static/icons/0600653A.png
new file mode 100755
index 00000000..b60851c8
Binary files /dev/null and b/static/icons/0600653A.png differ
diff --git a/static/icons/0600653B.png b/static/icons/0600653B.png
new file mode 100755
index 00000000..197419b5
Binary files /dev/null and b/static/icons/0600653B.png differ
diff --git a/static/icons/0600653C.png b/static/icons/0600653C.png
new file mode 100755
index 00000000..2f911715
Binary files /dev/null and b/static/icons/0600653C.png differ
diff --git a/static/icons/0600653D.png b/static/icons/0600653D.png
new file mode 100755
index 00000000..e99b10c2
Binary files /dev/null and b/static/icons/0600653D.png differ
diff --git a/static/icons/0600653E.png b/static/icons/0600653E.png
new file mode 100755
index 00000000..040b0688
Binary files /dev/null and b/static/icons/0600653E.png differ
diff --git a/static/icons/0600653F.png b/static/icons/0600653F.png
new file mode 100755
index 00000000..0550cdc1
Binary files /dev/null and b/static/icons/0600653F.png differ
diff --git a/static/icons/06006540.png b/static/icons/06006540.png
new file mode 100755
index 00000000..acd6079f
Binary files /dev/null and b/static/icons/06006540.png differ
diff --git a/static/icons/06006541.png b/static/icons/06006541.png
new file mode 100755
index 00000000..b8ec9387
Binary files /dev/null and b/static/icons/06006541.png differ
diff --git a/static/icons/06006542.png b/static/icons/06006542.png
new file mode 100755
index 00000000..051c4d73
Binary files /dev/null and b/static/icons/06006542.png differ
diff --git a/static/icons/06006543.png b/static/icons/06006543.png
new file mode 100755
index 00000000..4ef5649c
Binary files /dev/null and b/static/icons/06006543.png differ
diff --git a/static/icons/06006544.png b/static/icons/06006544.png
new file mode 100755
index 00000000..e4c5bf49
Binary files /dev/null and b/static/icons/06006544.png differ
diff --git a/static/icons/06006545.png b/static/icons/06006545.png
new file mode 100755
index 00000000..9f62c666
Binary files /dev/null and b/static/icons/06006545.png differ
diff --git a/static/icons/06006546.png b/static/icons/06006546.png
new file mode 100755
index 00000000..bca10e89
Binary files /dev/null and b/static/icons/06006546.png differ
diff --git a/static/icons/06006547.png b/static/icons/06006547.png
new file mode 100755
index 00000000..f102216c
Binary files /dev/null and b/static/icons/06006547.png differ
diff --git a/static/icons/06006548.png b/static/icons/06006548.png
new file mode 100755
index 00000000..1faeead9
Binary files /dev/null and b/static/icons/06006548.png differ
diff --git a/static/icons/06006549.png b/static/icons/06006549.png
new file mode 100755
index 00000000..9f18eb78
Binary files /dev/null and b/static/icons/06006549.png differ
diff --git a/static/icons/0600654A.png b/static/icons/0600654A.png
new file mode 100755
index 00000000..249fb594
Binary files /dev/null and b/static/icons/0600654A.png differ
diff --git a/static/icons/0600654B.png b/static/icons/0600654B.png
new file mode 100755
index 00000000..be67764a
Binary files /dev/null and b/static/icons/0600654B.png differ
diff --git a/static/icons/0600654C.png b/static/icons/0600654C.png
new file mode 100755
index 00000000..9def2bf8
Binary files /dev/null and b/static/icons/0600654C.png differ
diff --git a/static/icons/0600654D.png b/static/icons/0600654D.png
new file mode 100755
index 00000000..d3cd09cb
Binary files /dev/null and b/static/icons/0600654D.png differ
diff --git a/static/icons/0600654E.png b/static/icons/0600654E.png
new file mode 100755
index 00000000..8bd42d37
Binary files /dev/null and b/static/icons/0600654E.png differ
diff --git a/static/icons/0600654F.png b/static/icons/0600654F.png
new file mode 100755
index 00000000..223e509a
Binary files /dev/null and b/static/icons/0600654F.png differ
diff --git a/static/icons/06006550.png b/static/icons/06006550.png
new file mode 100755
index 00000000..f468a0ab
Binary files /dev/null and b/static/icons/06006550.png differ
diff --git a/static/icons/06006551.png b/static/icons/06006551.png
new file mode 100755
index 00000000..327b7242
Binary files /dev/null and b/static/icons/06006551.png differ
diff --git a/static/icons/06006552.png b/static/icons/06006552.png
new file mode 100755
index 00000000..24399874
Binary files /dev/null and b/static/icons/06006552.png differ
diff --git a/static/icons/06006553.png b/static/icons/06006553.png
new file mode 100755
index 00000000..2f544195
Binary files /dev/null and b/static/icons/06006553.png differ
diff --git a/static/icons/06006554.png b/static/icons/06006554.png
new file mode 100755
index 00000000..f4a345c1
Binary files /dev/null and b/static/icons/06006554.png differ
diff --git a/static/icons/06006555.png b/static/icons/06006555.png
new file mode 100755
index 00000000..0656046a
Binary files /dev/null and b/static/icons/06006555.png differ
diff --git a/static/icons/06006556.png b/static/icons/06006556.png
new file mode 100755
index 00000000..8444af24
Binary files /dev/null and b/static/icons/06006556.png differ
diff --git a/static/icons/06006557.png b/static/icons/06006557.png
new file mode 100755
index 00000000..69e46d9d
Binary files /dev/null and b/static/icons/06006557.png differ
diff --git a/static/icons/06006558.png b/static/icons/06006558.png
new file mode 100755
index 00000000..0befff6b
Binary files /dev/null and b/static/icons/06006558.png differ
diff --git a/static/icons/06006559.png b/static/icons/06006559.png
new file mode 100755
index 00000000..58dbbdcc
Binary files /dev/null and b/static/icons/06006559.png differ
diff --git a/static/icons/0600655A.png b/static/icons/0600655A.png
new file mode 100755
index 00000000..c4041d19
Binary files /dev/null and b/static/icons/0600655A.png differ
diff --git a/static/icons/0600655B.png b/static/icons/0600655B.png
new file mode 100755
index 00000000..975e858a
Binary files /dev/null and b/static/icons/0600655B.png differ
diff --git a/static/icons/0600655C.png b/static/icons/0600655C.png
new file mode 100755
index 00000000..37bdbed1
Binary files /dev/null and b/static/icons/0600655C.png differ
diff --git a/static/icons/0600655D.png b/static/icons/0600655D.png
new file mode 100755
index 00000000..00a4319b
Binary files /dev/null and b/static/icons/0600655D.png differ
diff --git a/static/icons/0600655E.png b/static/icons/0600655E.png
new file mode 100755
index 00000000..be7dec51
Binary files /dev/null and b/static/icons/0600655E.png differ
diff --git a/static/icons/0600655F.png b/static/icons/0600655F.png
new file mode 100755
index 00000000..7cfd988d
Binary files /dev/null and b/static/icons/0600655F.png differ
diff --git a/static/icons/06006560.png b/static/icons/06006560.png
new file mode 100755
index 00000000..5f053174
Binary files /dev/null and b/static/icons/06006560.png differ
diff --git a/static/icons/06006561.png b/static/icons/06006561.png
new file mode 100755
index 00000000..0930f5b6
Binary files /dev/null and b/static/icons/06006561.png differ
diff --git a/static/icons/06006562.png b/static/icons/06006562.png
new file mode 100755
index 00000000..2728c642
Binary files /dev/null and b/static/icons/06006562.png differ
diff --git a/static/icons/06006563.png b/static/icons/06006563.png
new file mode 100755
index 00000000..be63f05f
Binary files /dev/null and b/static/icons/06006563.png differ
diff --git a/static/icons/06006564.png b/static/icons/06006564.png
new file mode 100755
index 00000000..a5a656ac
Binary files /dev/null and b/static/icons/06006564.png differ
diff --git a/static/icons/06006565.png b/static/icons/06006565.png
new file mode 100755
index 00000000..4f078b83
Binary files /dev/null and b/static/icons/06006565.png differ
diff --git a/static/icons/06006569.png b/static/icons/06006569.png
new file mode 100755
index 00000000..bb882dc1
Binary files /dev/null and b/static/icons/06006569.png differ
diff --git a/static/icons/0600656A.png b/static/icons/0600656A.png
new file mode 100755
index 00000000..a37c7739
Binary files /dev/null and b/static/icons/0600656A.png differ
diff --git a/static/icons/0600656B.png b/static/icons/0600656B.png
new file mode 100755
index 00000000..bb882dc1
Binary files /dev/null and b/static/icons/0600656B.png differ
diff --git a/static/icons/0600656D.png b/static/icons/0600656D.png
new file mode 100755
index 00000000..f7fce337
Binary files /dev/null and b/static/icons/0600656D.png differ
diff --git a/static/icons/0600656E.png b/static/icons/0600656E.png
new file mode 100755
index 00000000..07c5bada
Binary files /dev/null and b/static/icons/0600656E.png differ
diff --git a/static/icons/0600656F.png b/static/icons/0600656F.png
new file mode 100755
index 00000000..163ff82e
Binary files /dev/null and b/static/icons/0600656F.png differ
diff --git a/static/icons/06006570.png b/static/icons/06006570.png
new file mode 100755
index 00000000..9be2fc9a
Binary files /dev/null and b/static/icons/06006570.png differ
diff --git a/static/icons/06006571.png b/static/icons/06006571.png
new file mode 100755
index 00000000..6d7e03e3
Binary files /dev/null and b/static/icons/06006571.png differ
diff --git a/static/icons/06006572.png b/static/icons/06006572.png
new file mode 100755
index 00000000..1e0bfe14
Binary files /dev/null and b/static/icons/06006572.png differ
diff --git a/static/icons/06006573.png b/static/icons/06006573.png
new file mode 100755
index 00000000..a99f69cd
Binary files /dev/null and b/static/icons/06006573.png differ
diff --git a/static/icons/06006577.png b/static/icons/06006577.png
new file mode 100755
index 00000000..20a54faa
Binary files /dev/null and b/static/icons/06006577.png differ
diff --git a/static/icons/06006578.png b/static/icons/06006578.png
new file mode 100755
index 00000000..e57eb1a4
Binary files /dev/null and b/static/icons/06006578.png differ
diff --git a/static/icons/06006579.png b/static/icons/06006579.png
new file mode 100755
index 00000000..cb4574f4
Binary files /dev/null and b/static/icons/06006579.png differ
diff --git a/static/icons/0600657A.png b/static/icons/0600657A.png
new file mode 100755
index 00000000..f33eda8c
Binary files /dev/null and b/static/icons/0600657A.png differ
diff --git a/static/icons/0600657B.png b/static/icons/0600657B.png
new file mode 100755
index 00000000..a0027852
Binary files /dev/null and b/static/icons/0600657B.png differ
diff --git a/static/icons/0600657C.png b/static/icons/0600657C.png
new file mode 100755
index 00000000..15544dc9
Binary files /dev/null and b/static/icons/0600657C.png differ
diff --git a/static/icons/0600657D.png b/static/icons/0600657D.png
new file mode 100755
index 00000000..21dcef82
Binary files /dev/null and b/static/icons/0600657D.png differ
diff --git a/static/icons/0600657E.png b/static/icons/0600657E.png
new file mode 100755
index 00000000..fdca4ff5
Binary files /dev/null and b/static/icons/0600657E.png differ
diff --git a/static/icons/0600657F.png b/static/icons/0600657F.png
new file mode 100755
index 00000000..6eae3c99
Binary files /dev/null and b/static/icons/0600657F.png differ
diff --git a/static/icons/06006580.png b/static/icons/06006580.png
new file mode 100755
index 00000000..c088faf3
Binary files /dev/null and b/static/icons/06006580.png differ
diff --git a/static/icons/06006581.png b/static/icons/06006581.png
new file mode 100755
index 00000000..a130b94f
Binary files /dev/null and b/static/icons/06006581.png differ
diff --git a/static/icons/06006582.png b/static/icons/06006582.png
new file mode 100755
index 00000000..914c009c
Binary files /dev/null and b/static/icons/06006582.png differ
diff --git a/static/icons/06006583.png b/static/icons/06006583.png
new file mode 100755
index 00000000..3a12c424
Binary files /dev/null and b/static/icons/06006583.png differ
diff --git a/static/icons/06006584.png b/static/icons/06006584.png
new file mode 100755
index 00000000..bf2b9fa1
Binary files /dev/null and b/static/icons/06006584.png differ
diff --git a/static/icons/06006585.png b/static/icons/06006585.png
new file mode 100755
index 00000000..ad8c64dc
Binary files /dev/null and b/static/icons/06006585.png differ
diff --git a/static/icons/06006586.png b/static/icons/06006586.png
new file mode 100755
index 00000000..10247d2d
Binary files /dev/null and b/static/icons/06006586.png differ
diff --git a/static/icons/06006587.png b/static/icons/06006587.png
new file mode 100755
index 00000000..ba38cbe9
Binary files /dev/null and b/static/icons/06006587.png differ
diff --git a/static/icons/06006588.png b/static/icons/06006588.png
new file mode 100755
index 00000000..76beeae9
Binary files /dev/null and b/static/icons/06006588.png differ
diff --git a/static/icons/06006589.png b/static/icons/06006589.png
new file mode 100755
index 00000000..d346d015
Binary files /dev/null and b/static/icons/06006589.png differ
diff --git a/static/icons/0600658A.png b/static/icons/0600658A.png
new file mode 100755
index 00000000..555f77fc
Binary files /dev/null and b/static/icons/0600658A.png differ
diff --git a/static/icons/0600658B.png b/static/icons/0600658B.png
new file mode 100755
index 00000000..6eea0340
Binary files /dev/null and b/static/icons/0600658B.png differ
diff --git a/static/icons/0600658C.png b/static/icons/0600658C.png
new file mode 100755
index 00000000..1193fca2
Binary files /dev/null and b/static/icons/0600658C.png differ
diff --git a/static/icons/0600658D.png b/static/icons/0600658D.png
new file mode 100755
index 00000000..2383e413
Binary files /dev/null and b/static/icons/0600658D.png differ
diff --git a/static/icons/0600658E.png b/static/icons/0600658E.png
new file mode 100755
index 00000000..59656a20
Binary files /dev/null and b/static/icons/0600658E.png differ
diff --git a/static/icons/0600658F.png b/static/icons/0600658F.png
new file mode 100755
index 00000000..1718c7f6
Binary files /dev/null and b/static/icons/0600658F.png differ
diff --git a/static/icons/06006590.png b/static/icons/06006590.png
new file mode 100755
index 00000000..a5426962
Binary files /dev/null and b/static/icons/06006590.png differ
diff --git a/static/icons/06006591.png b/static/icons/06006591.png
new file mode 100755
index 00000000..e5bfd64e
Binary files /dev/null and b/static/icons/06006591.png differ
diff --git a/static/icons/06006592.png b/static/icons/06006592.png
new file mode 100755
index 00000000..043a4085
Binary files /dev/null and b/static/icons/06006592.png differ
diff --git a/static/icons/06006593.png b/static/icons/06006593.png
new file mode 100755
index 00000000..2127950f
Binary files /dev/null and b/static/icons/06006593.png differ
diff --git a/static/icons/06006594.png b/static/icons/06006594.png
new file mode 100755
index 00000000..5792e8fb
Binary files /dev/null and b/static/icons/06006594.png differ
diff --git a/static/icons/06006595.png b/static/icons/06006595.png
new file mode 100755
index 00000000..68b45624
Binary files /dev/null and b/static/icons/06006595.png differ
diff --git a/static/icons/06006596.png b/static/icons/06006596.png
new file mode 100755
index 00000000..ca2f7a8b
Binary files /dev/null and b/static/icons/06006596.png differ
diff --git a/static/icons/06006597.png b/static/icons/06006597.png
new file mode 100755
index 00000000..7d0c6de2
Binary files /dev/null and b/static/icons/06006597.png differ
diff --git a/static/icons/06006598.png b/static/icons/06006598.png
new file mode 100755
index 00000000..0cb9001f
Binary files /dev/null and b/static/icons/06006598.png differ
diff --git a/static/icons/06006599.png b/static/icons/06006599.png
new file mode 100755
index 00000000..07ecaa30
Binary files /dev/null and b/static/icons/06006599.png differ
diff --git a/static/icons/0600659A.png b/static/icons/0600659A.png
new file mode 100755
index 00000000..1a10db3f
Binary files /dev/null and b/static/icons/0600659A.png differ
diff --git a/static/icons/0600659B.png b/static/icons/0600659B.png
new file mode 100755
index 00000000..d65178fd
Binary files /dev/null and b/static/icons/0600659B.png differ
diff --git a/static/icons/0600659C.png b/static/icons/0600659C.png
new file mode 100755
index 00000000..f5e2a8ef
Binary files /dev/null and b/static/icons/0600659C.png differ
diff --git a/static/icons/0600659E.png b/static/icons/0600659E.png
new file mode 100755
index 00000000..9ec6b39e
Binary files /dev/null and b/static/icons/0600659E.png differ
diff --git a/static/icons/0600659F.png b/static/icons/0600659F.png
new file mode 100755
index 00000000..4f7b4875
Binary files /dev/null and b/static/icons/0600659F.png differ
diff --git a/static/icons/060065A0.png b/static/icons/060065A0.png
new file mode 100755
index 00000000..0be53b50
Binary files /dev/null and b/static/icons/060065A0.png differ
diff --git a/static/icons/060065A1.png b/static/icons/060065A1.png
new file mode 100755
index 00000000..cef719e1
Binary files /dev/null and b/static/icons/060065A1.png differ
diff --git a/static/icons/060065A2.png b/static/icons/060065A2.png
new file mode 100755
index 00000000..0bdf125f
Binary files /dev/null and b/static/icons/060065A2.png differ
diff --git a/static/icons/060065A3.png b/static/icons/060065A3.png
new file mode 100755
index 00000000..5a822341
Binary files /dev/null and b/static/icons/060065A3.png differ
diff --git a/static/icons/060065A4.png b/static/icons/060065A4.png
new file mode 100755
index 00000000..4dbed44d
Binary files /dev/null and b/static/icons/060065A4.png differ
diff --git a/static/icons/060065A5.png b/static/icons/060065A5.png
new file mode 100755
index 00000000..c17d7b76
Binary files /dev/null and b/static/icons/060065A5.png differ
diff --git a/static/icons/060065A6.png b/static/icons/060065A6.png
new file mode 100755
index 00000000..c85bd684
Binary files /dev/null and b/static/icons/060065A6.png differ
diff --git a/static/icons/060065A7.png b/static/icons/060065A7.png
new file mode 100755
index 00000000..72078156
Binary files /dev/null and b/static/icons/060065A7.png differ
diff --git a/static/icons/060065A9.png b/static/icons/060065A9.png
new file mode 100755
index 00000000..92b60238
Binary files /dev/null and b/static/icons/060065A9.png differ
diff --git a/static/icons/060065AA.png b/static/icons/060065AA.png
new file mode 100755
index 00000000..4d1ea82d
Binary files /dev/null and b/static/icons/060065AA.png differ
diff --git a/static/icons/060065AB.png b/static/icons/060065AB.png
new file mode 100755
index 00000000..80fbeaa9
Binary files /dev/null and b/static/icons/060065AB.png differ
diff --git a/static/icons/060065AC.png b/static/icons/060065AC.png
new file mode 100755
index 00000000..d7281f73
Binary files /dev/null and b/static/icons/060065AC.png differ
diff --git a/static/icons/060065AD.png b/static/icons/060065AD.png
new file mode 100755
index 00000000..47ddf83e
Binary files /dev/null and b/static/icons/060065AD.png differ
diff --git a/static/icons/060065AE.png b/static/icons/060065AE.png
new file mode 100755
index 00000000..6a3edf17
Binary files /dev/null and b/static/icons/060065AE.png differ
diff --git a/static/icons/060065AF.png b/static/icons/060065AF.png
new file mode 100755
index 00000000..4574f972
Binary files /dev/null and b/static/icons/060065AF.png differ
diff --git a/static/icons/060065B0.png b/static/icons/060065B0.png
new file mode 100755
index 00000000..d46e2f7c
Binary files /dev/null and b/static/icons/060065B0.png differ
diff --git a/static/icons/060065B1.png b/static/icons/060065B1.png
new file mode 100755
index 00000000..472e6783
Binary files /dev/null and b/static/icons/060065B1.png differ
diff --git a/static/icons/060065B2.png b/static/icons/060065B2.png
new file mode 100755
index 00000000..bdbb911f
Binary files /dev/null and b/static/icons/060065B2.png differ
diff --git a/static/icons/060065B3.png b/static/icons/060065B3.png
new file mode 100755
index 00000000..313de3c8
Binary files /dev/null and b/static/icons/060065B3.png differ
diff --git a/static/icons/060065B4.png b/static/icons/060065B4.png
new file mode 100755
index 00000000..667d30f4
Binary files /dev/null and b/static/icons/060065B4.png differ
diff --git a/static/icons/060065B5.png b/static/icons/060065B5.png
new file mode 100755
index 00000000..1f2a2b9d
Binary files /dev/null and b/static/icons/060065B5.png differ
diff --git a/static/icons/060065B6.png b/static/icons/060065B6.png
new file mode 100755
index 00000000..1f2a2b9d
Binary files /dev/null and b/static/icons/060065B6.png differ
diff --git a/static/icons/060065B7.png b/static/icons/060065B7.png
new file mode 100755
index 00000000..1f2a2b9d
Binary files /dev/null and b/static/icons/060065B7.png differ
diff --git a/static/icons/060065B8.png b/static/icons/060065B8.png
new file mode 100755
index 00000000..1f2a2b9d
Binary files /dev/null and b/static/icons/060065B8.png differ
diff --git a/static/icons/060065B9.png b/static/icons/060065B9.png
new file mode 100755
index 00000000..1f2a2b9d
Binary files /dev/null and b/static/icons/060065B9.png differ
diff --git a/static/icons/060065BB.png b/static/icons/060065BB.png
new file mode 100755
index 00000000..0f341a86
Binary files /dev/null and b/static/icons/060065BB.png differ
diff --git a/static/icons/060065BC.png b/static/icons/060065BC.png
new file mode 100755
index 00000000..5f03c551
Binary files /dev/null and b/static/icons/060065BC.png differ
diff --git a/static/icons/060065BD.png b/static/icons/060065BD.png
new file mode 100755
index 00000000..cbfe8840
Binary files /dev/null and b/static/icons/060065BD.png differ
diff --git a/static/icons/060065BE.png b/static/icons/060065BE.png
new file mode 100755
index 00000000..84e1e405
Binary files /dev/null and b/static/icons/060065BE.png differ
diff --git a/static/icons/060065BF.png b/static/icons/060065BF.png
new file mode 100755
index 00000000..6de4d0c3
Binary files /dev/null and b/static/icons/060065BF.png differ
diff --git a/static/icons/060065C0.png b/static/icons/060065C0.png
new file mode 100755
index 00000000..fb3711d3
Binary files /dev/null and b/static/icons/060065C0.png differ
diff --git a/static/icons/060065C1.png b/static/icons/060065C1.png
new file mode 100755
index 00000000..cad3eb5b
Binary files /dev/null and b/static/icons/060065C1.png differ
diff --git a/static/icons/060065C2.png b/static/icons/060065C2.png
new file mode 100755
index 00000000..af07c2d4
Binary files /dev/null and b/static/icons/060065C2.png differ
diff --git a/static/icons/060065C3.png b/static/icons/060065C3.png
new file mode 100755
index 00000000..38e92f94
Binary files /dev/null and b/static/icons/060065C3.png differ
diff --git a/static/icons/060065C4.png b/static/icons/060065C4.png
new file mode 100755
index 00000000..52178700
Binary files /dev/null and b/static/icons/060065C4.png differ
diff --git a/static/icons/060065C5.png b/static/icons/060065C5.png
new file mode 100755
index 00000000..55e0e9be
Binary files /dev/null and b/static/icons/060065C5.png differ
diff --git a/static/icons/060065C6.png b/static/icons/060065C6.png
new file mode 100755
index 00000000..a58cb379
Binary files /dev/null and b/static/icons/060065C6.png differ
diff --git a/static/icons/060065C7.png b/static/icons/060065C7.png
new file mode 100755
index 00000000..1584c5f0
Binary files /dev/null and b/static/icons/060065C7.png differ
diff --git a/static/icons/060065C8.png b/static/icons/060065C8.png
new file mode 100755
index 00000000..c8253011
Binary files /dev/null and b/static/icons/060065C8.png differ
diff --git a/static/icons/060065C9.png b/static/icons/060065C9.png
new file mode 100755
index 00000000..e0a3c29e
Binary files /dev/null and b/static/icons/060065C9.png differ
diff --git a/static/icons/060065CA.png b/static/icons/060065CA.png
new file mode 100755
index 00000000..8e5ae4e6
Binary files /dev/null and b/static/icons/060065CA.png differ
diff --git a/static/icons/060065CB.png b/static/icons/060065CB.png
new file mode 100755
index 00000000..727f6b98
Binary files /dev/null and b/static/icons/060065CB.png differ
diff --git a/static/icons/060065CC.png b/static/icons/060065CC.png
new file mode 100755
index 00000000..052a3cbd
Binary files /dev/null and b/static/icons/060065CC.png differ
diff --git a/static/icons/060065CD.png b/static/icons/060065CD.png
new file mode 100755
index 00000000..d86c2134
Binary files /dev/null and b/static/icons/060065CD.png differ
diff --git a/static/icons/060065D1.png b/static/icons/060065D1.png
new file mode 100755
index 00000000..d2f9e7a1
Binary files /dev/null and b/static/icons/060065D1.png differ
diff --git a/static/icons/060065D2.png b/static/icons/060065D2.png
new file mode 100755
index 00000000..3ab55bb0
Binary files /dev/null and b/static/icons/060065D2.png differ
diff --git a/static/icons/060065D3.png b/static/icons/060065D3.png
new file mode 100755
index 00000000..9956a43f
Binary files /dev/null and b/static/icons/060065D3.png differ
diff --git a/static/icons/060065D4.png b/static/icons/060065D4.png
new file mode 100755
index 00000000..d387b5da
Binary files /dev/null and b/static/icons/060065D4.png differ
diff --git a/static/icons/060065D5.png b/static/icons/060065D5.png
new file mode 100755
index 00000000..84fa9ed7
Binary files /dev/null and b/static/icons/060065D5.png differ
diff --git a/static/icons/060065D6.png b/static/icons/060065D6.png
new file mode 100755
index 00000000..e2786dd0
Binary files /dev/null and b/static/icons/060065D6.png differ
diff --git a/static/icons/060065D7.png b/static/icons/060065D7.png
new file mode 100755
index 00000000..b0ca15eb
Binary files /dev/null and b/static/icons/060065D7.png differ
diff --git a/static/icons/060065D8.png b/static/icons/060065D8.png
new file mode 100755
index 00000000..55ae25a6
Binary files /dev/null and b/static/icons/060065D8.png differ
diff --git a/static/icons/060065D9.png b/static/icons/060065D9.png
new file mode 100755
index 00000000..7a35d948
Binary files /dev/null and b/static/icons/060065D9.png differ
diff --git a/static/icons/060065DA.png b/static/icons/060065DA.png
new file mode 100755
index 00000000..5397da79
Binary files /dev/null and b/static/icons/060065DA.png differ
diff --git a/static/icons/060065DB.png b/static/icons/060065DB.png
new file mode 100755
index 00000000..dfe0aae2
Binary files /dev/null and b/static/icons/060065DB.png differ
diff --git a/static/icons/060065DC.png b/static/icons/060065DC.png
new file mode 100755
index 00000000..240a18e9
Binary files /dev/null and b/static/icons/060065DC.png differ
diff --git a/static/icons/060065DD.png b/static/icons/060065DD.png
new file mode 100755
index 00000000..2a675174
Binary files /dev/null and b/static/icons/060065DD.png differ
diff --git a/static/icons/060065DE.png b/static/icons/060065DE.png
new file mode 100755
index 00000000..9104459d
Binary files /dev/null and b/static/icons/060065DE.png differ
diff --git a/static/icons/060065DF.png b/static/icons/060065DF.png
new file mode 100755
index 00000000..c51de3e4
Binary files /dev/null and b/static/icons/060065DF.png differ
diff --git a/static/icons/060065E0.png b/static/icons/060065E0.png
new file mode 100755
index 00000000..2048fc11
Binary files /dev/null and b/static/icons/060065E0.png differ
diff --git a/static/icons/060065E2.png b/static/icons/060065E2.png
new file mode 100755
index 00000000..c873a175
Binary files /dev/null and b/static/icons/060065E2.png differ
diff --git a/static/icons/060065E3.png b/static/icons/060065E3.png
new file mode 100755
index 00000000..e945250c
Binary files /dev/null and b/static/icons/060065E3.png differ
diff --git a/static/icons/060065E4.png b/static/icons/060065E4.png
new file mode 100755
index 00000000..f035d053
Binary files /dev/null and b/static/icons/060065E4.png differ
diff --git a/static/icons/060065E5.png b/static/icons/060065E5.png
new file mode 100755
index 00000000..95dd7d93
Binary files /dev/null and b/static/icons/060065E5.png differ
diff --git a/static/icons/060065E6.png b/static/icons/060065E6.png
new file mode 100755
index 00000000..f90151c0
Binary files /dev/null and b/static/icons/060065E6.png differ
diff --git a/static/icons/060065E7.png b/static/icons/060065E7.png
new file mode 100755
index 00000000..0818b095
Binary files /dev/null and b/static/icons/060065E7.png differ
diff --git a/static/icons/060065E8.png b/static/icons/060065E8.png
new file mode 100755
index 00000000..427e34b6
Binary files /dev/null and b/static/icons/060065E8.png differ
diff --git a/static/icons/060065E9.png b/static/icons/060065E9.png
new file mode 100755
index 00000000..98d6c222
Binary files /dev/null and b/static/icons/060065E9.png differ
diff --git a/static/icons/060065EB.png b/static/icons/060065EB.png
new file mode 100755
index 00000000..0474e784
Binary files /dev/null and b/static/icons/060065EB.png differ
diff --git a/static/icons/060065EC.png b/static/icons/060065EC.png
new file mode 100755
index 00000000..b23f1b62
Binary files /dev/null and b/static/icons/060065EC.png differ
diff --git a/static/icons/060065ED.png b/static/icons/060065ED.png
new file mode 100755
index 00000000..4f5e2726
Binary files /dev/null and b/static/icons/060065ED.png differ
diff --git a/static/icons/060065EE.png b/static/icons/060065EE.png
new file mode 100755
index 00000000..eb807db1
Binary files /dev/null and b/static/icons/060065EE.png differ
diff --git a/static/icons/060065EF.png b/static/icons/060065EF.png
new file mode 100755
index 00000000..a26b9e5c
Binary files /dev/null and b/static/icons/060065EF.png differ
diff --git a/static/icons/060065F0.png b/static/icons/060065F0.png
new file mode 100755
index 00000000..076e6abc
Binary files /dev/null and b/static/icons/060065F0.png differ
diff --git a/static/icons/060065F1.png b/static/icons/060065F1.png
new file mode 100755
index 00000000..58a1c5bb
Binary files /dev/null and b/static/icons/060065F1.png differ
diff --git a/static/icons/060065F2.png b/static/icons/060065F2.png
new file mode 100755
index 00000000..5cb85c00
Binary files /dev/null and b/static/icons/060065F2.png differ
diff --git a/static/icons/060065F3.png b/static/icons/060065F3.png
new file mode 100755
index 00000000..c317b8b3
Binary files /dev/null and b/static/icons/060065F3.png differ
diff --git a/static/icons/060065F4.png b/static/icons/060065F4.png
new file mode 100755
index 00000000..ac1c0fe5
Binary files /dev/null and b/static/icons/060065F4.png differ
diff --git a/static/icons/060065F6.png b/static/icons/060065F6.png
new file mode 100755
index 00000000..092f6cc4
Binary files /dev/null and b/static/icons/060065F6.png differ
diff --git a/static/icons/060065F8.png b/static/icons/060065F8.png
new file mode 100755
index 00000000..257679a6
Binary files /dev/null and b/static/icons/060065F8.png differ
diff --git a/static/icons/060065FA.png b/static/icons/060065FA.png
new file mode 100755
index 00000000..8015762c
Binary files /dev/null and b/static/icons/060065FA.png differ
diff --git a/static/icons/060065FB.png b/static/icons/060065FB.png
new file mode 100755
index 00000000..3834e7b7
Binary files /dev/null and b/static/icons/060065FB.png differ
diff --git a/static/icons/060065FC.png b/static/icons/060065FC.png
new file mode 100755
index 00000000..0d20b2b2
Binary files /dev/null and b/static/icons/060065FC.png differ
diff --git a/static/icons/060065FD.png b/static/icons/060065FD.png
new file mode 100755
index 00000000..3e736bd9
Binary files /dev/null and b/static/icons/060065FD.png differ
diff --git a/static/icons/060065FE.png b/static/icons/060065FE.png
new file mode 100755
index 00000000..790ab100
Binary files /dev/null and b/static/icons/060065FE.png differ
diff --git a/static/icons/060065FF.png b/static/icons/060065FF.png
new file mode 100755
index 00000000..f75a1826
Binary files /dev/null and b/static/icons/060065FF.png differ
diff --git a/static/icons/06006600.png b/static/icons/06006600.png
new file mode 100755
index 00000000..0843da3a
Binary files /dev/null and b/static/icons/06006600.png differ
diff --git a/static/icons/06006601.png b/static/icons/06006601.png
new file mode 100755
index 00000000..2f6c80f0
Binary files /dev/null and b/static/icons/06006601.png differ
diff --git a/static/icons/06006602.png b/static/icons/06006602.png
new file mode 100755
index 00000000..59624709
Binary files /dev/null and b/static/icons/06006602.png differ
diff --git a/static/icons/06006603.png b/static/icons/06006603.png
new file mode 100755
index 00000000..0a75f368
Binary files /dev/null and b/static/icons/06006603.png differ
diff --git a/static/icons/06006604.png b/static/icons/06006604.png
new file mode 100755
index 00000000..fc157f9b
Binary files /dev/null and b/static/icons/06006604.png differ
diff --git a/static/icons/06006605.png b/static/icons/06006605.png
new file mode 100755
index 00000000..b8fe7859
Binary files /dev/null and b/static/icons/06006605.png differ
diff --git a/static/icons/06006606.png b/static/icons/06006606.png
new file mode 100755
index 00000000..3dce9875
Binary files /dev/null and b/static/icons/06006606.png differ
diff --git a/static/icons/06006607.png b/static/icons/06006607.png
new file mode 100755
index 00000000..495c7971
Binary files /dev/null and b/static/icons/06006607.png differ
diff --git a/static/icons/06006608.png b/static/icons/06006608.png
new file mode 100755
index 00000000..c6af4ec8
Binary files /dev/null and b/static/icons/06006608.png differ
diff --git a/static/icons/06006609.png b/static/icons/06006609.png
new file mode 100755
index 00000000..f5db5742
Binary files /dev/null and b/static/icons/06006609.png differ
diff --git a/static/icons/0600660A.png b/static/icons/0600660A.png
new file mode 100755
index 00000000..62f53658
Binary files /dev/null and b/static/icons/0600660A.png differ
diff --git a/static/icons/0600660B.png b/static/icons/0600660B.png
new file mode 100755
index 00000000..ca0e53ef
Binary files /dev/null and b/static/icons/0600660B.png differ
diff --git a/static/icons/0600660C.png b/static/icons/0600660C.png
new file mode 100755
index 00000000..d165ee71
Binary files /dev/null and b/static/icons/0600660C.png differ
diff --git a/static/icons/0600660D.png b/static/icons/0600660D.png
new file mode 100755
index 00000000..316322cb
Binary files /dev/null and b/static/icons/0600660D.png differ
diff --git a/static/icons/0600660E.png b/static/icons/0600660E.png
new file mode 100755
index 00000000..0751f4e9
Binary files /dev/null and b/static/icons/0600660E.png differ
diff --git a/static/icons/0600660F.png b/static/icons/0600660F.png
new file mode 100755
index 00000000..84aa24c3
Binary files /dev/null and b/static/icons/0600660F.png differ
diff --git a/static/icons/06006610.png b/static/icons/06006610.png
new file mode 100755
index 00000000..714ed915
Binary files /dev/null and b/static/icons/06006610.png differ
diff --git a/static/icons/06006611.png b/static/icons/06006611.png
new file mode 100755
index 00000000..d68083be
Binary files /dev/null and b/static/icons/06006611.png differ
diff --git a/static/icons/06006612.png b/static/icons/06006612.png
new file mode 100755
index 00000000..fd36e419
Binary files /dev/null and b/static/icons/06006612.png differ
diff --git a/static/icons/06006613.png b/static/icons/06006613.png
new file mode 100755
index 00000000..2f36ab97
Binary files /dev/null and b/static/icons/06006613.png differ
diff --git a/static/icons/06006614.png b/static/icons/06006614.png
new file mode 100755
index 00000000..5dc3467d
Binary files /dev/null and b/static/icons/06006614.png differ
diff --git a/static/icons/06006615.png b/static/icons/06006615.png
new file mode 100755
index 00000000..f4e6c31d
Binary files /dev/null and b/static/icons/06006615.png differ
diff --git a/static/icons/06006616.png b/static/icons/06006616.png
new file mode 100755
index 00000000..a497079c
Binary files /dev/null and b/static/icons/06006616.png differ
diff --git a/static/icons/06006617.png b/static/icons/06006617.png
new file mode 100755
index 00000000..c5f25b32
Binary files /dev/null and b/static/icons/06006617.png differ
diff --git a/static/icons/06006618.png b/static/icons/06006618.png
new file mode 100755
index 00000000..3783af02
Binary files /dev/null and b/static/icons/06006618.png differ
diff --git a/static/icons/06006619.png b/static/icons/06006619.png
new file mode 100755
index 00000000..fe878b07
Binary files /dev/null and b/static/icons/06006619.png differ
diff --git a/static/icons/0600661A.png b/static/icons/0600661A.png
new file mode 100755
index 00000000..097d04c4
Binary files /dev/null and b/static/icons/0600661A.png differ
diff --git a/static/icons/0600661B.png b/static/icons/0600661B.png
new file mode 100755
index 00000000..e3111b11
Binary files /dev/null and b/static/icons/0600661B.png differ
diff --git a/static/icons/0600661C.png b/static/icons/0600661C.png
new file mode 100755
index 00000000..efba5125
Binary files /dev/null and b/static/icons/0600661C.png differ
diff --git a/static/icons/0600661D.png b/static/icons/0600661D.png
new file mode 100755
index 00000000..1f718568
Binary files /dev/null and b/static/icons/0600661D.png differ
diff --git a/static/icons/0600661E.png b/static/icons/0600661E.png
new file mode 100755
index 00000000..a25a09b6
Binary files /dev/null and b/static/icons/0600661E.png differ
diff --git a/static/icons/0600661F.png b/static/icons/0600661F.png
new file mode 100755
index 00000000..3f46ebe7
Binary files /dev/null and b/static/icons/0600661F.png differ
diff --git a/static/icons/06006620.png b/static/icons/06006620.png
new file mode 100755
index 00000000..7bd5c35e
Binary files /dev/null and b/static/icons/06006620.png differ
diff --git a/static/icons/06006621.png b/static/icons/06006621.png
new file mode 100755
index 00000000..1fce3707
Binary files /dev/null and b/static/icons/06006621.png differ
diff --git a/static/icons/06006622.png b/static/icons/06006622.png
new file mode 100755
index 00000000..826fe545
Binary files /dev/null and b/static/icons/06006622.png differ
diff --git a/static/icons/06006623.png b/static/icons/06006623.png
new file mode 100755
index 00000000..3feeb6ad
Binary files /dev/null and b/static/icons/06006623.png differ
diff --git a/static/icons/06006624.png b/static/icons/06006624.png
new file mode 100755
index 00000000..287f533e
Binary files /dev/null and b/static/icons/06006624.png differ
diff --git a/static/icons/06006625.png b/static/icons/06006625.png
new file mode 100755
index 00000000..b701bf37
Binary files /dev/null and b/static/icons/06006625.png differ
diff --git a/static/icons/06006626.png b/static/icons/06006626.png
new file mode 100755
index 00000000..4ef4ec42
Binary files /dev/null and b/static/icons/06006626.png differ
diff --git a/static/icons/06006627.png b/static/icons/06006627.png
new file mode 100755
index 00000000..94b1a898
Binary files /dev/null and b/static/icons/06006627.png differ
diff --git a/static/icons/06006628.png b/static/icons/06006628.png
new file mode 100755
index 00000000..6565241f
Binary files /dev/null and b/static/icons/06006628.png differ
diff --git a/static/icons/06006629.png b/static/icons/06006629.png
new file mode 100755
index 00000000..7b1e010e
Binary files /dev/null and b/static/icons/06006629.png differ
diff --git a/static/icons/0600662A.png b/static/icons/0600662A.png
new file mode 100755
index 00000000..03a81b71
Binary files /dev/null and b/static/icons/0600662A.png differ
diff --git a/static/icons/0600662B.png b/static/icons/0600662B.png
new file mode 100755
index 00000000..5e824e8b
Binary files /dev/null and b/static/icons/0600662B.png differ
diff --git a/static/icons/0600662C.png b/static/icons/0600662C.png
new file mode 100755
index 00000000..139e108d
Binary files /dev/null and b/static/icons/0600662C.png differ
diff --git a/static/icons/0600662D.png b/static/icons/0600662D.png
new file mode 100755
index 00000000..356a720d
Binary files /dev/null and b/static/icons/0600662D.png differ
diff --git a/static/icons/0600662E.png b/static/icons/0600662E.png
new file mode 100755
index 00000000..007b06c1
Binary files /dev/null and b/static/icons/0600662E.png differ
diff --git a/static/icons/0600662F.png b/static/icons/0600662F.png
new file mode 100755
index 00000000..cb199ddb
Binary files /dev/null and b/static/icons/0600662F.png differ
diff --git a/static/icons/06006631.png b/static/icons/06006631.png
new file mode 100755
index 00000000..5f7894e9
Binary files /dev/null and b/static/icons/06006631.png differ
diff --git a/static/icons/06006632.png b/static/icons/06006632.png
new file mode 100755
index 00000000..392f0af7
Binary files /dev/null and b/static/icons/06006632.png differ
diff --git a/static/icons/06006633.png b/static/icons/06006633.png
new file mode 100755
index 00000000..de819d68
Binary files /dev/null and b/static/icons/06006633.png differ
diff --git a/static/icons/06006634.png b/static/icons/06006634.png
new file mode 100755
index 00000000..430b9cda
Binary files /dev/null and b/static/icons/06006634.png differ
diff --git a/static/icons/06006635.png b/static/icons/06006635.png
new file mode 100755
index 00000000..db0dba29
Binary files /dev/null and b/static/icons/06006635.png differ
diff --git a/static/icons/06006636.png b/static/icons/06006636.png
new file mode 100755
index 00000000..fbfe595b
Binary files /dev/null and b/static/icons/06006636.png differ
diff --git a/static/icons/06006638.png b/static/icons/06006638.png
new file mode 100755
index 00000000..28514871
Binary files /dev/null and b/static/icons/06006638.png differ
diff --git a/static/icons/06006639.png b/static/icons/06006639.png
new file mode 100755
index 00000000..d46673bc
Binary files /dev/null and b/static/icons/06006639.png differ
diff --git a/static/icons/0600663A.png b/static/icons/0600663A.png
new file mode 100755
index 00000000..0b78c21e
Binary files /dev/null and b/static/icons/0600663A.png differ
diff --git a/static/icons/0600663B.png b/static/icons/0600663B.png
new file mode 100755
index 00000000..00db1abe
Binary files /dev/null and b/static/icons/0600663B.png differ
diff --git a/static/icons/0600663C.png b/static/icons/0600663C.png
new file mode 100755
index 00000000..41a5e97e
Binary files /dev/null and b/static/icons/0600663C.png differ
diff --git a/static/icons/0600663D.png b/static/icons/0600663D.png
new file mode 100755
index 00000000..b166b2ad
Binary files /dev/null and b/static/icons/0600663D.png differ
diff --git a/static/icons/0600663E.png b/static/icons/0600663E.png
new file mode 100755
index 00000000..3dbbf5d6
Binary files /dev/null and b/static/icons/0600663E.png differ
diff --git a/static/icons/0600663F.png b/static/icons/0600663F.png
new file mode 100755
index 00000000..dec33754
Binary files /dev/null and b/static/icons/0600663F.png differ
diff --git a/static/icons/06006640.png b/static/icons/06006640.png
new file mode 100755
index 00000000..0face1bb
Binary files /dev/null and b/static/icons/06006640.png differ
diff --git a/static/icons/06006642.png b/static/icons/06006642.png
new file mode 100755
index 00000000..f749fe60
Binary files /dev/null and b/static/icons/06006642.png differ
diff --git a/static/icons/06006643.png b/static/icons/06006643.png
new file mode 100755
index 00000000..732fa7d1
Binary files /dev/null and b/static/icons/06006643.png differ
diff --git a/static/icons/06006644.png b/static/icons/06006644.png
new file mode 100755
index 00000000..c2686260
Binary files /dev/null and b/static/icons/06006644.png differ
diff --git a/static/icons/06006645.png b/static/icons/06006645.png
new file mode 100755
index 00000000..1c8b9980
Binary files /dev/null and b/static/icons/06006645.png differ
diff --git a/static/icons/06006646.png b/static/icons/06006646.png
new file mode 100755
index 00000000..f8b1460f
Binary files /dev/null and b/static/icons/06006646.png differ
diff --git a/static/icons/06006647.png b/static/icons/06006647.png
new file mode 100755
index 00000000..f763eb35
Binary files /dev/null and b/static/icons/06006647.png differ
diff --git a/static/icons/06006648.png b/static/icons/06006648.png
new file mode 100755
index 00000000..91a93663
Binary files /dev/null and b/static/icons/06006648.png differ
diff --git a/static/icons/06006649.png b/static/icons/06006649.png
new file mode 100755
index 00000000..91abf9da
Binary files /dev/null and b/static/icons/06006649.png differ
diff --git a/static/icons/0600664A.png b/static/icons/0600664A.png
new file mode 100755
index 00000000..bc4dd0f2
Binary files /dev/null and b/static/icons/0600664A.png differ
diff --git a/static/icons/0600664B.png b/static/icons/0600664B.png
new file mode 100755
index 00000000..f4763e54
Binary files /dev/null and b/static/icons/0600664B.png differ
diff --git a/static/icons/0600664C.png b/static/icons/0600664C.png
new file mode 100755
index 00000000..954e7ad9
Binary files /dev/null and b/static/icons/0600664C.png differ
diff --git a/static/icons/0600664D.png b/static/icons/0600664D.png
new file mode 100755
index 00000000..dd9f6076
Binary files /dev/null and b/static/icons/0600664D.png differ
diff --git a/static/icons/0600664E.png b/static/icons/0600664E.png
new file mode 100755
index 00000000..39e22ffb
Binary files /dev/null and b/static/icons/0600664E.png differ
diff --git a/static/icons/0600664F.png b/static/icons/0600664F.png
new file mode 100755
index 00000000..5c6c66a1
Binary files /dev/null and b/static/icons/0600664F.png differ
diff --git a/static/icons/06006650.png b/static/icons/06006650.png
new file mode 100755
index 00000000..181af0da
Binary files /dev/null and b/static/icons/06006650.png differ
diff --git a/static/icons/06006651.png b/static/icons/06006651.png
new file mode 100755
index 00000000..baeb0a03
Binary files /dev/null and b/static/icons/06006651.png differ
diff --git a/static/icons/06006652.png b/static/icons/06006652.png
new file mode 100755
index 00000000..d616ed86
Binary files /dev/null and b/static/icons/06006652.png differ
diff --git a/static/icons/06006653.png b/static/icons/06006653.png
new file mode 100755
index 00000000..dad83156
Binary files /dev/null and b/static/icons/06006653.png differ
diff --git a/static/icons/06006654.png b/static/icons/06006654.png
new file mode 100755
index 00000000..e659e263
Binary files /dev/null and b/static/icons/06006654.png differ
diff --git a/static/icons/06006655.png b/static/icons/06006655.png
new file mode 100755
index 00000000..23b11827
Binary files /dev/null and b/static/icons/06006655.png differ
diff --git a/static/icons/06006656.png b/static/icons/06006656.png
new file mode 100755
index 00000000..aaad2e97
Binary files /dev/null and b/static/icons/06006656.png differ
diff --git a/static/icons/06006657.png b/static/icons/06006657.png
new file mode 100755
index 00000000..bc784bba
Binary files /dev/null and b/static/icons/06006657.png differ
diff --git a/static/icons/06006658.png b/static/icons/06006658.png
new file mode 100755
index 00000000..ba2ed177
Binary files /dev/null and b/static/icons/06006658.png differ
diff --git a/static/icons/06006659.png b/static/icons/06006659.png
new file mode 100755
index 00000000..13e37c47
Binary files /dev/null and b/static/icons/06006659.png differ
diff --git a/static/icons/0600665A.png b/static/icons/0600665A.png
new file mode 100755
index 00000000..5ca317f1
Binary files /dev/null and b/static/icons/0600665A.png differ
diff --git a/static/icons/0600665B.png b/static/icons/0600665B.png
new file mode 100755
index 00000000..bc192b39
Binary files /dev/null and b/static/icons/0600665B.png differ
diff --git a/static/icons/0600665D.png b/static/icons/0600665D.png
new file mode 100755
index 00000000..4cd740d8
Binary files /dev/null and b/static/icons/0600665D.png differ
diff --git a/static/icons/0600665E.png b/static/icons/0600665E.png
new file mode 100755
index 00000000..ceeb5dd6
Binary files /dev/null and b/static/icons/0600665E.png differ
diff --git a/static/icons/0600665F.png b/static/icons/0600665F.png
new file mode 100755
index 00000000..a27d5178
Binary files /dev/null and b/static/icons/0600665F.png differ
diff --git a/static/icons/06006660.png b/static/icons/06006660.png
new file mode 100755
index 00000000..5c0e8e7d
Binary files /dev/null and b/static/icons/06006660.png differ
diff --git a/static/icons/06006661.png b/static/icons/06006661.png
new file mode 100755
index 00000000..52d53be4
Binary files /dev/null and b/static/icons/06006661.png differ
diff --git a/static/icons/06006662.png b/static/icons/06006662.png
new file mode 100755
index 00000000..fa4f1762
Binary files /dev/null and b/static/icons/06006662.png differ
diff --git a/static/icons/06006663.png b/static/icons/06006663.png
new file mode 100755
index 00000000..abbe4954
Binary files /dev/null and b/static/icons/06006663.png differ
diff --git a/static/icons/06006664.png b/static/icons/06006664.png
new file mode 100755
index 00000000..c5bb011e
Binary files /dev/null and b/static/icons/06006664.png differ
diff --git a/static/icons/06006665.png b/static/icons/06006665.png
new file mode 100755
index 00000000..db3b9d39
Binary files /dev/null and b/static/icons/06006665.png differ
diff --git a/static/icons/06006666.png b/static/icons/06006666.png
new file mode 100755
index 00000000..107625af
Binary files /dev/null and b/static/icons/06006666.png differ
diff --git a/static/icons/06006667.png b/static/icons/06006667.png
new file mode 100755
index 00000000..b5ed92fb
Binary files /dev/null and b/static/icons/06006667.png differ
diff --git a/static/icons/06006668.png b/static/icons/06006668.png
new file mode 100755
index 00000000..8a13231e
Binary files /dev/null and b/static/icons/06006668.png differ
diff --git a/static/icons/0600666A.png b/static/icons/0600666A.png
new file mode 100755
index 00000000..071b313a
Binary files /dev/null and b/static/icons/0600666A.png differ
diff --git a/static/icons/0600666B.png b/static/icons/0600666B.png
new file mode 100755
index 00000000..af484ee1
Binary files /dev/null and b/static/icons/0600666B.png differ
diff --git a/static/icons/0600666C.png b/static/icons/0600666C.png
new file mode 100755
index 00000000..8215a221
Binary files /dev/null and b/static/icons/0600666C.png differ
diff --git a/static/icons/0600666D.png b/static/icons/0600666D.png
new file mode 100755
index 00000000..1b98678d
Binary files /dev/null and b/static/icons/0600666D.png differ
diff --git a/static/icons/0600666E.png b/static/icons/0600666E.png
new file mode 100755
index 00000000..81236713
Binary files /dev/null and b/static/icons/0600666E.png differ
diff --git a/static/icons/06006671.png b/static/icons/06006671.png
new file mode 100755
index 00000000..9b366e97
Binary files /dev/null and b/static/icons/06006671.png differ
diff --git a/static/icons/06006672.png b/static/icons/06006672.png
new file mode 100755
index 00000000..17e5d734
Binary files /dev/null and b/static/icons/06006672.png differ
diff --git a/static/icons/06006673.png b/static/icons/06006673.png
new file mode 100755
index 00000000..037cd3ad
Binary files /dev/null and b/static/icons/06006673.png differ
diff --git a/static/icons/06006674.png b/static/icons/06006674.png
new file mode 100755
index 00000000..7a23c236
Binary files /dev/null and b/static/icons/06006674.png differ
diff --git a/static/icons/06006675.png b/static/icons/06006675.png
new file mode 100755
index 00000000..d4fada4e
Binary files /dev/null and b/static/icons/06006675.png differ
diff --git a/static/icons/06006676.png b/static/icons/06006676.png
new file mode 100755
index 00000000..0437bcf1
Binary files /dev/null and b/static/icons/06006676.png differ
diff --git a/static/icons/06006677.png b/static/icons/06006677.png
new file mode 100755
index 00000000..949b8681
Binary files /dev/null and b/static/icons/06006677.png differ
diff --git a/static/icons/06006678.png b/static/icons/06006678.png
new file mode 100755
index 00000000..c3dabf86
Binary files /dev/null and b/static/icons/06006678.png differ
diff --git a/static/icons/06006679.png b/static/icons/06006679.png
new file mode 100755
index 00000000..41bb516e
Binary files /dev/null and b/static/icons/06006679.png differ
diff --git a/static/icons/0600667A.png b/static/icons/0600667A.png
new file mode 100755
index 00000000..4ada3a25
Binary files /dev/null and b/static/icons/0600667A.png differ
diff --git a/static/icons/0600667B.png b/static/icons/0600667B.png
new file mode 100755
index 00000000..e29d7806
Binary files /dev/null and b/static/icons/0600667B.png differ
diff --git a/static/icons/0600667C.png b/static/icons/0600667C.png
new file mode 100755
index 00000000..a7df7d4b
Binary files /dev/null and b/static/icons/0600667C.png differ
diff --git a/static/icons/0600667D.png b/static/icons/0600667D.png
new file mode 100755
index 00000000..da6e329c
Binary files /dev/null and b/static/icons/0600667D.png differ
diff --git a/static/icons/0600667E.png b/static/icons/0600667E.png
new file mode 100755
index 00000000..ebf463e6
Binary files /dev/null and b/static/icons/0600667E.png differ
diff --git a/static/icons/0600667F.png b/static/icons/0600667F.png
new file mode 100755
index 00000000..13d389e6
Binary files /dev/null and b/static/icons/0600667F.png differ
diff --git a/static/icons/06006680.png b/static/icons/06006680.png
new file mode 100755
index 00000000..b9bae0ce
Binary files /dev/null and b/static/icons/06006680.png differ
diff --git a/static/icons/06006681.png b/static/icons/06006681.png
new file mode 100755
index 00000000..9a8996d1
Binary files /dev/null and b/static/icons/06006681.png differ
diff --git a/static/icons/06006682.png b/static/icons/06006682.png
new file mode 100755
index 00000000..f6ca1b96
Binary files /dev/null and b/static/icons/06006682.png differ
diff --git a/static/icons/06006683.png b/static/icons/06006683.png
new file mode 100755
index 00000000..cac42e13
Binary files /dev/null and b/static/icons/06006683.png differ
diff --git a/static/icons/06006684.png b/static/icons/06006684.png
new file mode 100755
index 00000000..23bcb179
Binary files /dev/null and b/static/icons/06006684.png differ
diff --git a/static/icons/06006685.png b/static/icons/06006685.png
new file mode 100755
index 00000000..28abef65
Binary files /dev/null and b/static/icons/06006685.png differ
diff --git a/static/icons/06006686.png b/static/icons/06006686.png
new file mode 100755
index 00000000..e9ff1095
Binary files /dev/null and b/static/icons/06006686.png differ
diff --git a/static/icons/06006687.png b/static/icons/06006687.png
new file mode 100755
index 00000000..a939d95d
Binary files /dev/null and b/static/icons/06006687.png differ
diff --git a/static/icons/06006688.png b/static/icons/06006688.png
new file mode 100755
index 00000000..84140e34
Binary files /dev/null and b/static/icons/06006688.png differ
diff --git a/static/icons/06006689.png b/static/icons/06006689.png
new file mode 100755
index 00000000..aa836e02
Binary files /dev/null and b/static/icons/06006689.png differ
diff --git a/static/icons/0600668A.png b/static/icons/0600668A.png
new file mode 100755
index 00000000..a756f077
Binary files /dev/null and b/static/icons/0600668A.png differ
diff --git a/static/icons/0600668B.png b/static/icons/0600668B.png
new file mode 100755
index 00000000..564800cf
Binary files /dev/null and b/static/icons/0600668B.png differ
diff --git a/static/icons/0600668C.png b/static/icons/0600668C.png
new file mode 100755
index 00000000..e822ffad
Binary files /dev/null and b/static/icons/0600668C.png differ
diff --git a/static/icons/0600668D.png b/static/icons/0600668D.png
new file mode 100755
index 00000000..fd11ec26
Binary files /dev/null and b/static/icons/0600668D.png differ
diff --git a/static/icons/06006690.png b/static/icons/06006690.png
new file mode 100755
index 00000000..e1b77ee2
Binary files /dev/null and b/static/icons/06006690.png differ
diff --git a/static/icons/06006691.png b/static/icons/06006691.png
new file mode 100755
index 00000000..4a9e0ab1
Binary files /dev/null and b/static/icons/06006691.png differ
diff --git a/static/icons/06006692.png b/static/icons/06006692.png
new file mode 100755
index 00000000..eec8e287
Binary files /dev/null and b/static/icons/06006692.png differ
diff --git a/static/icons/06006693.png b/static/icons/06006693.png
new file mode 100755
index 00000000..19db738c
Binary files /dev/null and b/static/icons/06006693.png differ
diff --git a/static/icons/06006694.png b/static/icons/06006694.png
new file mode 100755
index 00000000..0dc1d647
Binary files /dev/null and b/static/icons/06006694.png differ
diff --git a/static/icons/06006695.png b/static/icons/06006695.png
new file mode 100755
index 00000000..9e342696
Binary files /dev/null and b/static/icons/06006695.png differ
diff --git a/static/icons/06006696.png b/static/icons/06006696.png
new file mode 100755
index 00000000..68471cdd
Binary files /dev/null and b/static/icons/06006696.png differ
diff --git a/static/icons/06006697.png b/static/icons/06006697.png
new file mode 100755
index 00000000..54acb349
Binary files /dev/null and b/static/icons/06006697.png differ
diff --git a/static/icons/06006698.png b/static/icons/06006698.png
new file mode 100755
index 00000000..f4837df2
Binary files /dev/null and b/static/icons/06006698.png differ
diff --git a/static/icons/06006699.png b/static/icons/06006699.png
new file mode 100755
index 00000000..4ab884a6
Binary files /dev/null and b/static/icons/06006699.png differ
diff --git a/static/icons/0600669A.png b/static/icons/0600669A.png
new file mode 100755
index 00000000..b77a442b
Binary files /dev/null and b/static/icons/0600669A.png differ
diff --git a/static/icons/0600669B.png b/static/icons/0600669B.png
new file mode 100755
index 00000000..dfd72792
Binary files /dev/null and b/static/icons/0600669B.png differ
diff --git a/static/icons/0600669C.png b/static/icons/0600669C.png
new file mode 100755
index 00000000..fb9fc960
Binary files /dev/null and b/static/icons/0600669C.png differ
diff --git a/static/icons/0600669D.png b/static/icons/0600669D.png
new file mode 100755
index 00000000..6d79fec8
Binary files /dev/null and b/static/icons/0600669D.png differ
diff --git a/static/icons/0600669E.png b/static/icons/0600669E.png
new file mode 100755
index 00000000..fb16bd17
Binary files /dev/null and b/static/icons/0600669E.png differ
diff --git a/static/icons/0600669F.png b/static/icons/0600669F.png
new file mode 100755
index 00000000..13c1d8b1
Binary files /dev/null and b/static/icons/0600669F.png differ
diff --git a/static/icons/060066A0.png b/static/icons/060066A0.png
new file mode 100755
index 00000000..b2399489
Binary files /dev/null and b/static/icons/060066A0.png differ
diff --git a/static/icons/060066A1.png b/static/icons/060066A1.png
new file mode 100755
index 00000000..7e8b686d
Binary files /dev/null and b/static/icons/060066A1.png differ
diff --git a/static/icons/060066A2.png b/static/icons/060066A2.png
new file mode 100755
index 00000000..146f68ed
Binary files /dev/null and b/static/icons/060066A2.png differ
diff --git a/static/icons/060066A3.png b/static/icons/060066A3.png
new file mode 100755
index 00000000..262971b0
Binary files /dev/null and b/static/icons/060066A3.png differ
diff --git a/static/icons/060066A4.png b/static/icons/060066A4.png
new file mode 100755
index 00000000..4c5f30e7
Binary files /dev/null and b/static/icons/060066A4.png differ
diff --git a/static/icons/060066A5.png b/static/icons/060066A5.png
new file mode 100755
index 00000000..c6d3f38c
Binary files /dev/null and b/static/icons/060066A5.png differ
diff --git a/static/icons/060066A6.png b/static/icons/060066A6.png
new file mode 100755
index 00000000..4130c389
Binary files /dev/null and b/static/icons/060066A6.png differ
diff --git a/static/icons/060066A7.png b/static/icons/060066A7.png
new file mode 100755
index 00000000..823987fd
Binary files /dev/null and b/static/icons/060066A7.png differ
diff --git a/static/icons/060066A8.png b/static/icons/060066A8.png
new file mode 100755
index 00000000..651068d1
Binary files /dev/null and b/static/icons/060066A8.png differ
diff --git a/static/icons/060066A9.png b/static/icons/060066A9.png
new file mode 100755
index 00000000..0e973498
Binary files /dev/null and b/static/icons/060066A9.png differ
diff --git a/static/icons/060066AA.png b/static/icons/060066AA.png
new file mode 100755
index 00000000..0c2d6048
Binary files /dev/null and b/static/icons/060066AA.png differ
diff --git a/static/icons/060066AB.png b/static/icons/060066AB.png
new file mode 100755
index 00000000..28a80ab0
Binary files /dev/null and b/static/icons/060066AB.png differ
diff --git a/static/icons/060066AC.png b/static/icons/060066AC.png
new file mode 100755
index 00000000..e87ef6b2
Binary files /dev/null and b/static/icons/060066AC.png differ
diff --git a/static/icons/060066AD.png b/static/icons/060066AD.png
new file mode 100755
index 00000000..8fba3ba3
Binary files /dev/null and b/static/icons/060066AD.png differ
diff --git a/static/icons/060066AE.png b/static/icons/060066AE.png
new file mode 100755
index 00000000..b26bda9a
Binary files /dev/null and b/static/icons/060066AE.png differ
diff --git a/static/icons/060066AF.png b/static/icons/060066AF.png
new file mode 100755
index 00000000..07954105
Binary files /dev/null and b/static/icons/060066AF.png differ
diff --git a/static/icons/060066B0.png b/static/icons/060066B0.png
new file mode 100755
index 00000000..8e138374
Binary files /dev/null and b/static/icons/060066B0.png differ
diff --git a/static/icons/060066B1.png b/static/icons/060066B1.png
new file mode 100755
index 00000000..75d24048
Binary files /dev/null and b/static/icons/060066B1.png differ
diff --git a/static/icons/060066B2.png b/static/icons/060066B2.png
new file mode 100755
index 00000000..9e4f5b99
Binary files /dev/null and b/static/icons/060066B2.png differ
diff --git a/static/icons/060066B3.png b/static/icons/060066B3.png
new file mode 100755
index 00000000..06147d2b
Binary files /dev/null and b/static/icons/060066B3.png differ
diff --git a/static/icons/060066B4.png b/static/icons/060066B4.png
new file mode 100755
index 00000000..2c270d15
Binary files /dev/null and b/static/icons/060066B4.png differ
diff --git a/static/icons/060066B5.png b/static/icons/060066B5.png
new file mode 100755
index 00000000..d5673789
Binary files /dev/null and b/static/icons/060066B5.png differ
diff --git a/static/icons/060066B6.png b/static/icons/060066B6.png
new file mode 100755
index 00000000..a6c94cfc
Binary files /dev/null and b/static/icons/060066B6.png differ
diff --git a/static/icons/060066B7.png b/static/icons/060066B7.png
new file mode 100755
index 00000000..e556413c
Binary files /dev/null and b/static/icons/060066B7.png differ
diff --git a/static/icons/060066B8.png b/static/icons/060066B8.png
new file mode 100755
index 00000000..d1ffc0f2
Binary files /dev/null and b/static/icons/060066B8.png differ
diff --git a/static/icons/060066B9.png b/static/icons/060066B9.png
new file mode 100755
index 00000000..a764e27c
Binary files /dev/null and b/static/icons/060066B9.png differ
diff --git a/static/icons/060066BA.png b/static/icons/060066BA.png
new file mode 100755
index 00000000..006fc439
Binary files /dev/null and b/static/icons/060066BA.png differ
diff --git a/static/icons/060066BB.png b/static/icons/060066BB.png
new file mode 100755
index 00000000..ee4ba126
Binary files /dev/null and b/static/icons/060066BB.png differ
diff --git a/static/icons/060066BC.png b/static/icons/060066BC.png
new file mode 100755
index 00000000..fcacb0e8
Binary files /dev/null and b/static/icons/060066BC.png differ
diff --git a/static/icons/060066BD.png b/static/icons/060066BD.png
new file mode 100755
index 00000000..58434deb
Binary files /dev/null and b/static/icons/060066BD.png differ
diff --git a/static/icons/060066BE.png b/static/icons/060066BE.png
new file mode 100755
index 00000000..f9672114
Binary files /dev/null and b/static/icons/060066BE.png differ
diff --git a/static/icons/060066BF.png b/static/icons/060066BF.png
new file mode 100755
index 00000000..f6ac0754
Binary files /dev/null and b/static/icons/060066BF.png differ
diff --git a/static/icons/060066C0.png b/static/icons/060066C0.png
new file mode 100755
index 00000000..4da9cb9a
Binary files /dev/null and b/static/icons/060066C0.png differ
diff --git a/static/icons/060066C1.png b/static/icons/060066C1.png
new file mode 100755
index 00000000..1410f9f0
Binary files /dev/null and b/static/icons/060066C1.png differ
diff --git a/static/icons/060066C2.png b/static/icons/060066C2.png
new file mode 100755
index 00000000..2d14c9f7
Binary files /dev/null and b/static/icons/060066C2.png differ
diff --git a/static/icons/060066C3.png b/static/icons/060066C3.png
new file mode 100755
index 00000000..49e3c505
Binary files /dev/null and b/static/icons/060066C3.png differ
diff --git a/static/icons/060066C4.png b/static/icons/060066C4.png
new file mode 100755
index 00000000..ecbc08f3
Binary files /dev/null and b/static/icons/060066C4.png differ
diff --git a/static/icons/060066C5.png b/static/icons/060066C5.png
new file mode 100755
index 00000000..0765c08a
Binary files /dev/null and b/static/icons/060066C5.png differ
diff --git a/static/icons/060066C6.png b/static/icons/060066C6.png
new file mode 100755
index 00000000..045587bf
Binary files /dev/null and b/static/icons/060066C6.png differ
diff --git a/static/icons/060066C7.png b/static/icons/060066C7.png
new file mode 100755
index 00000000..6abe8101
Binary files /dev/null and b/static/icons/060066C7.png differ
diff --git a/static/icons/060066C8.png b/static/icons/060066C8.png
new file mode 100755
index 00000000..0e0d4f1f
Binary files /dev/null and b/static/icons/060066C8.png differ
diff --git a/static/icons/060066C9.png b/static/icons/060066C9.png
new file mode 100755
index 00000000..082c798b
Binary files /dev/null and b/static/icons/060066C9.png differ
diff --git a/static/icons/060066CA.png b/static/icons/060066CA.png
new file mode 100755
index 00000000..59fc18b1
Binary files /dev/null and b/static/icons/060066CA.png differ
diff --git a/static/icons/060066CB.png b/static/icons/060066CB.png
new file mode 100755
index 00000000..87c657c5
Binary files /dev/null and b/static/icons/060066CB.png differ
diff --git a/static/icons/060066CC.png b/static/icons/060066CC.png
new file mode 100755
index 00000000..010f3c9c
Binary files /dev/null and b/static/icons/060066CC.png differ
diff --git a/static/icons/060066CD.png b/static/icons/060066CD.png
new file mode 100755
index 00000000..310fb414
Binary files /dev/null and b/static/icons/060066CD.png differ
diff --git a/static/icons/060066CE.png b/static/icons/060066CE.png
new file mode 100755
index 00000000..8368c5af
Binary files /dev/null and b/static/icons/060066CE.png differ
diff --git a/static/icons/060066CF.png b/static/icons/060066CF.png
new file mode 100755
index 00000000..020fea7a
Binary files /dev/null and b/static/icons/060066CF.png differ
diff --git a/static/icons/060066D0.png b/static/icons/060066D0.png
new file mode 100755
index 00000000..a651674a
Binary files /dev/null and b/static/icons/060066D0.png differ
diff --git a/static/icons/060066D1.png b/static/icons/060066D1.png
new file mode 100755
index 00000000..a6aee539
Binary files /dev/null and b/static/icons/060066D1.png differ
diff --git a/static/icons/060066D2.png b/static/icons/060066D2.png
new file mode 100755
index 00000000..e96c58b6
Binary files /dev/null and b/static/icons/060066D2.png differ
diff --git a/static/icons/060066D3.png b/static/icons/060066D3.png
new file mode 100755
index 00000000..d047e5db
Binary files /dev/null and b/static/icons/060066D3.png differ
diff --git a/static/icons/060066D4.png b/static/icons/060066D4.png
new file mode 100755
index 00000000..45027ac8
Binary files /dev/null and b/static/icons/060066D4.png differ
diff --git a/static/icons/060066D5.png b/static/icons/060066D5.png
new file mode 100755
index 00000000..9aca0ec2
Binary files /dev/null and b/static/icons/060066D5.png differ
diff --git a/static/icons/060066D6.png b/static/icons/060066D6.png
new file mode 100755
index 00000000..91ed0dd2
Binary files /dev/null and b/static/icons/060066D6.png differ
diff --git a/static/icons/060066D7.png b/static/icons/060066D7.png
new file mode 100755
index 00000000..327ee53f
Binary files /dev/null and b/static/icons/060066D7.png differ
diff --git a/static/icons/060066D8.png b/static/icons/060066D8.png
new file mode 100755
index 00000000..b8dcc4f0
Binary files /dev/null and b/static/icons/060066D8.png differ
diff --git a/static/icons/060066D9.png b/static/icons/060066D9.png
new file mode 100755
index 00000000..d849185f
Binary files /dev/null and b/static/icons/060066D9.png differ
diff --git a/static/icons/060066DA.png b/static/icons/060066DA.png
new file mode 100755
index 00000000..fc41662e
Binary files /dev/null and b/static/icons/060066DA.png differ
diff --git a/static/icons/060066DB.png b/static/icons/060066DB.png
new file mode 100755
index 00000000..fc41662e
Binary files /dev/null and b/static/icons/060066DB.png differ
diff --git a/static/icons/060066DC.png b/static/icons/060066DC.png
new file mode 100755
index 00000000..3f664111
Binary files /dev/null and b/static/icons/060066DC.png differ
diff --git a/static/icons/060066DE.png b/static/icons/060066DE.png
new file mode 100755
index 00000000..f03da4d9
Binary files /dev/null and b/static/icons/060066DE.png differ
diff --git a/static/icons/060066DF.png b/static/icons/060066DF.png
new file mode 100755
index 00000000..2ad146ef
Binary files /dev/null and b/static/icons/060066DF.png differ
diff --git a/static/icons/060066E0.png b/static/icons/060066E0.png
new file mode 100755
index 00000000..66c2b8b9
Binary files /dev/null and b/static/icons/060066E0.png differ
diff --git a/static/icons/060066E1.png b/static/icons/060066E1.png
new file mode 100755
index 00000000..c11a70f7
Binary files /dev/null and b/static/icons/060066E1.png differ
diff --git a/static/icons/060066E2.png b/static/icons/060066E2.png
new file mode 100755
index 00000000..e75f8da0
Binary files /dev/null and b/static/icons/060066E2.png differ
diff --git a/static/icons/060066E7.png b/static/icons/060066E7.png
new file mode 100755
index 00000000..8fbe3dc3
Binary files /dev/null and b/static/icons/060066E7.png differ
diff --git a/static/icons/060066E8.png b/static/icons/060066E8.png
new file mode 100755
index 00000000..82f1ad12
Binary files /dev/null and b/static/icons/060066E8.png differ
diff --git a/static/icons/060066E9.png b/static/icons/060066E9.png
new file mode 100755
index 00000000..ebf04252
Binary files /dev/null and b/static/icons/060066E9.png differ
diff --git a/static/icons/060066EA.png b/static/icons/060066EA.png
new file mode 100755
index 00000000..d413a098
Binary files /dev/null and b/static/icons/060066EA.png differ
diff --git a/static/icons/060066EB.png b/static/icons/060066EB.png
new file mode 100755
index 00000000..cc8e9e32
Binary files /dev/null and b/static/icons/060066EB.png differ
diff --git a/static/icons/060066EC.png b/static/icons/060066EC.png
new file mode 100755
index 00000000..0b79295f
Binary files /dev/null and b/static/icons/060066EC.png differ
diff --git a/static/icons/060066ED.png b/static/icons/060066ED.png
new file mode 100755
index 00000000..a86a27b1
Binary files /dev/null and b/static/icons/060066ED.png differ
diff --git a/static/icons/060066EE.png b/static/icons/060066EE.png
new file mode 100755
index 00000000..5b6831f1
Binary files /dev/null and b/static/icons/060066EE.png differ
diff --git a/static/icons/060066EF.png b/static/icons/060066EF.png
new file mode 100755
index 00000000..3e5d79e8
Binary files /dev/null and b/static/icons/060066EF.png differ
diff --git a/static/icons/060066F0.png b/static/icons/060066F0.png
new file mode 100755
index 00000000..1e3acc90
Binary files /dev/null and b/static/icons/060066F0.png differ
diff --git a/static/icons/060066F1.png b/static/icons/060066F1.png
new file mode 100755
index 00000000..f95e43a5
Binary files /dev/null and b/static/icons/060066F1.png differ
diff --git a/static/icons/060066F2.png b/static/icons/060066F2.png
new file mode 100755
index 00000000..6cf7a8ef
Binary files /dev/null and b/static/icons/060066F2.png differ
diff --git a/static/icons/060066F3.png b/static/icons/060066F3.png
new file mode 100755
index 00000000..73870815
Binary files /dev/null and b/static/icons/060066F3.png differ
diff --git a/static/icons/060066F4.png b/static/icons/060066F4.png
new file mode 100755
index 00000000..b2690f66
Binary files /dev/null and b/static/icons/060066F4.png differ
diff --git a/static/icons/060066F5.png b/static/icons/060066F5.png
new file mode 100755
index 00000000..5ce08d1c
Binary files /dev/null and b/static/icons/060066F5.png differ
diff --git a/static/icons/060066F6.png b/static/icons/060066F6.png
new file mode 100755
index 00000000..d543cf3c
Binary files /dev/null and b/static/icons/060066F6.png differ
diff --git a/static/icons/060066F7.png b/static/icons/060066F7.png
new file mode 100755
index 00000000..7b9b36ad
Binary files /dev/null and b/static/icons/060066F7.png differ
diff --git a/static/icons/060066F9.png b/static/icons/060066F9.png
new file mode 100755
index 00000000..4d6b3fad
Binary files /dev/null and b/static/icons/060066F9.png differ
diff --git a/static/icons/060066FA.png b/static/icons/060066FA.png
new file mode 100755
index 00000000..2a495b31
Binary files /dev/null and b/static/icons/060066FA.png differ
diff --git a/static/icons/060066FB.png b/static/icons/060066FB.png
new file mode 100755
index 00000000..747c0e13
Binary files /dev/null and b/static/icons/060066FB.png differ
diff --git a/static/icons/060066FC.png b/static/icons/060066FC.png
new file mode 100755
index 00000000..aeaba507
Binary files /dev/null and b/static/icons/060066FC.png differ
diff --git a/static/icons/060066FD.png b/static/icons/060066FD.png
new file mode 100755
index 00000000..2360e638
Binary files /dev/null and b/static/icons/060066FD.png differ
diff --git a/static/icons/060066FF.png b/static/icons/060066FF.png
new file mode 100755
index 00000000..4f985119
Binary files /dev/null and b/static/icons/060066FF.png differ
diff --git a/static/icons/06006700.png b/static/icons/06006700.png
new file mode 100755
index 00000000..085e92fc
Binary files /dev/null and b/static/icons/06006700.png differ
diff --git a/static/icons/06006701.png b/static/icons/06006701.png
new file mode 100755
index 00000000..37049cb9
Binary files /dev/null and b/static/icons/06006701.png differ
diff --git a/static/icons/06006702.png b/static/icons/06006702.png
new file mode 100755
index 00000000..6627ceb0
Binary files /dev/null and b/static/icons/06006702.png differ
diff --git a/static/icons/06006703.png b/static/icons/06006703.png
new file mode 100755
index 00000000..9d0b3f29
Binary files /dev/null and b/static/icons/06006703.png differ
diff --git a/static/icons/06006704.png b/static/icons/06006704.png
new file mode 100755
index 00000000..dfc14a3c
Binary files /dev/null and b/static/icons/06006704.png differ
diff --git a/static/icons/06006705.png b/static/icons/06006705.png
new file mode 100755
index 00000000..4d4be763
Binary files /dev/null and b/static/icons/06006705.png differ
diff --git a/static/icons/06006706.png b/static/icons/06006706.png
new file mode 100755
index 00000000..0ae6d661
Binary files /dev/null and b/static/icons/06006706.png differ
diff --git a/static/icons/06006707.png b/static/icons/06006707.png
new file mode 100755
index 00000000..d3a04254
Binary files /dev/null and b/static/icons/06006707.png differ
diff --git a/static/icons/06006708.png b/static/icons/06006708.png
new file mode 100755
index 00000000..fcb05dba
Binary files /dev/null and b/static/icons/06006708.png differ
diff --git a/static/icons/0600670A.png b/static/icons/0600670A.png
new file mode 100755
index 00000000..829e241e
Binary files /dev/null and b/static/icons/0600670A.png differ
diff --git a/static/icons/0600670B.png b/static/icons/0600670B.png
new file mode 100755
index 00000000..0f583ad8
Binary files /dev/null and b/static/icons/0600670B.png differ
diff --git a/static/icons/0600670C.png b/static/icons/0600670C.png
new file mode 100755
index 00000000..dc5f175d
Binary files /dev/null and b/static/icons/0600670C.png differ
diff --git a/static/icons/0600670D.png b/static/icons/0600670D.png
new file mode 100755
index 00000000..1aece6ce
Binary files /dev/null and b/static/icons/0600670D.png differ
diff --git a/static/icons/0600670F.png b/static/icons/0600670F.png
new file mode 100755
index 00000000..a3a69a58
Binary files /dev/null and b/static/icons/0600670F.png differ
diff --git a/static/icons/06006710.png b/static/icons/06006710.png
new file mode 100755
index 00000000..c0e55d7b
Binary files /dev/null and b/static/icons/06006710.png differ
diff --git a/static/icons/06006712.png b/static/icons/06006712.png
new file mode 100755
index 00000000..1240d7ca
Binary files /dev/null and b/static/icons/06006712.png differ
diff --git a/static/icons/06006713.png b/static/icons/06006713.png
new file mode 100755
index 00000000..6f563e58
Binary files /dev/null and b/static/icons/06006713.png differ
diff --git a/static/icons/06006714.png b/static/icons/06006714.png
new file mode 100755
index 00000000..57526e34
Binary files /dev/null and b/static/icons/06006714.png differ
diff --git a/static/icons/06006715.png b/static/icons/06006715.png
new file mode 100755
index 00000000..8e77b65f
Binary files /dev/null and b/static/icons/06006715.png differ
diff --git a/static/icons/06006717.png b/static/icons/06006717.png
new file mode 100755
index 00000000..71a6d572
Binary files /dev/null and b/static/icons/06006717.png differ
diff --git a/static/icons/06006718.png b/static/icons/06006718.png
new file mode 100755
index 00000000..903345e1
Binary files /dev/null and b/static/icons/06006718.png differ
diff --git a/static/icons/06006719.png b/static/icons/06006719.png
new file mode 100755
index 00000000..477d4135
Binary files /dev/null and b/static/icons/06006719.png differ
diff --git a/static/icons/0600671A.png b/static/icons/0600671A.png
new file mode 100755
index 00000000..04bd846e
Binary files /dev/null and b/static/icons/0600671A.png differ
diff --git a/static/icons/0600671B.png b/static/icons/0600671B.png
new file mode 100755
index 00000000..9e9d02eb
Binary files /dev/null and b/static/icons/0600671B.png differ
diff --git a/static/icons/0600671C.png b/static/icons/0600671C.png
new file mode 100755
index 00000000..08e2f8ea
Binary files /dev/null and b/static/icons/0600671C.png differ
diff --git a/static/icons/0600671D.png b/static/icons/0600671D.png
new file mode 100755
index 00000000..6806402d
Binary files /dev/null and b/static/icons/0600671D.png differ
diff --git a/static/icons/0600671E.png b/static/icons/0600671E.png
new file mode 100755
index 00000000..915304bc
Binary files /dev/null and b/static/icons/0600671E.png differ
diff --git a/static/icons/0600671F.png b/static/icons/0600671F.png
new file mode 100755
index 00000000..34e2c4ef
Binary files /dev/null and b/static/icons/0600671F.png differ
diff --git a/static/icons/06006720.png b/static/icons/06006720.png
new file mode 100755
index 00000000..063d4dfb
Binary files /dev/null and b/static/icons/06006720.png differ
diff --git a/static/icons/06006721.png b/static/icons/06006721.png
new file mode 100755
index 00000000..2dc5a477
Binary files /dev/null and b/static/icons/06006721.png differ
diff --git a/static/icons/06006722.png b/static/icons/06006722.png
new file mode 100755
index 00000000..7ea81485
Binary files /dev/null and b/static/icons/06006722.png differ
diff --git a/static/icons/06006723.png b/static/icons/06006723.png
new file mode 100755
index 00000000..31f50dda
Binary files /dev/null and b/static/icons/06006723.png differ
diff --git a/static/icons/06006724.png b/static/icons/06006724.png
new file mode 100755
index 00000000..0f53beea
Binary files /dev/null and b/static/icons/06006724.png differ
diff --git a/static/icons/06006725.png b/static/icons/06006725.png
new file mode 100755
index 00000000..135632c0
Binary files /dev/null and b/static/icons/06006725.png differ
diff --git a/static/icons/06006726.png b/static/icons/06006726.png
new file mode 100755
index 00000000..b177395f
Binary files /dev/null and b/static/icons/06006726.png differ
diff --git a/static/icons/06006727.png b/static/icons/06006727.png
new file mode 100755
index 00000000..58d635ed
Binary files /dev/null and b/static/icons/06006727.png differ
diff --git a/static/icons/06006728.png b/static/icons/06006728.png
new file mode 100755
index 00000000..ef0ae184
Binary files /dev/null and b/static/icons/06006728.png differ
diff --git a/static/icons/06006729.png b/static/icons/06006729.png
new file mode 100755
index 00000000..e6daba9f
Binary files /dev/null and b/static/icons/06006729.png differ
diff --git a/static/icons/0600672A.png b/static/icons/0600672A.png
new file mode 100755
index 00000000..2a0a5d8e
Binary files /dev/null and b/static/icons/0600672A.png differ
diff --git a/static/icons/0600672B.png b/static/icons/0600672B.png
new file mode 100755
index 00000000..7b22d0ea
Binary files /dev/null and b/static/icons/0600672B.png differ
diff --git a/static/icons/0600672C.png b/static/icons/0600672C.png
new file mode 100755
index 00000000..074419e6
Binary files /dev/null and b/static/icons/0600672C.png differ
diff --git a/static/icons/0600672D.png b/static/icons/0600672D.png
new file mode 100755
index 00000000..e0662f49
Binary files /dev/null and b/static/icons/0600672D.png differ
diff --git a/static/icons/0600672E.png b/static/icons/0600672E.png
new file mode 100755
index 00000000..c55950cb
Binary files /dev/null and b/static/icons/0600672E.png differ
diff --git a/static/icons/0600672F.png b/static/icons/0600672F.png
new file mode 100755
index 00000000..6b477087
Binary files /dev/null and b/static/icons/0600672F.png differ
diff --git a/static/icons/06006730.png b/static/icons/06006730.png
new file mode 100755
index 00000000..df9e0ae4
Binary files /dev/null and b/static/icons/06006730.png differ
diff --git a/static/icons/06006731.png b/static/icons/06006731.png
new file mode 100755
index 00000000..b1fc7601
Binary files /dev/null and b/static/icons/06006731.png differ
diff --git a/static/icons/06006732.png b/static/icons/06006732.png
new file mode 100755
index 00000000..f2293467
Binary files /dev/null and b/static/icons/06006732.png differ
diff --git a/static/icons/06006733.png b/static/icons/06006733.png
new file mode 100755
index 00000000..710d6f2d
Binary files /dev/null and b/static/icons/06006733.png differ
diff --git a/static/icons/06006734.png b/static/icons/06006734.png
new file mode 100755
index 00000000..efcc6104
Binary files /dev/null and b/static/icons/06006734.png differ
diff --git a/static/icons/06006735.png b/static/icons/06006735.png
new file mode 100755
index 00000000..7a83c041
Binary files /dev/null and b/static/icons/06006735.png differ
diff --git a/static/icons/06006736.png b/static/icons/06006736.png
new file mode 100755
index 00000000..5144b21a
Binary files /dev/null and b/static/icons/06006736.png differ
diff --git a/static/icons/06006737.png b/static/icons/06006737.png
new file mode 100755
index 00000000..90a51669
Binary files /dev/null and b/static/icons/06006737.png differ
diff --git a/static/icons/06006738.png b/static/icons/06006738.png
new file mode 100755
index 00000000..1ebc44d0
Binary files /dev/null and b/static/icons/06006738.png differ
diff --git a/static/icons/06006739.png b/static/icons/06006739.png
new file mode 100755
index 00000000..91720678
Binary files /dev/null and b/static/icons/06006739.png differ
diff --git a/static/icons/0600673A.png b/static/icons/0600673A.png
new file mode 100755
index 00000000..53af2460
Binary files /dev/null and b/static/icons/0600673A.png differ
diff --git a/static/icons/0600673B.png b/static/icons/0600673B.png
new file mode 100755
index 00000000..96708304
Binary files /dev/null and b/static/icons/0600673B.png differ
diff --git a/static/icons/0600673C.png b/static/icons/0600673C.png
new file mode 100755
index 00000000..54e43102
Binary files /dev/null and b/static/icons/0600673C.png differ
diff --git a/static/icons/0600673D.png b/static/icons/0600673D.png
new file mode 100755
index 00000000..7b7d3f87
Binary files /dev/null and b/static/icons/0600673D.png differ
diff --git a/static/icons/0600673E.png b/static/icons/0600673E.png
new file mode 100755
index 00000000..ef537dec
Binary files /dev/null and b/static/icons/0600673E.png differ
diff --git a/static/icons/0600673F.png b/static/icons/0600673F.png
new file mode 100755
index 00000000..038e39fb
Binary files /dev/null and b/static/icons/0600673F.png differ
diff --git a/static/icons/06006740.png b/static/icons/06006740.png
new file mode 100755
index 00000000..9c6717c6
Binary files /dev/null and b/static/icons/06006740.png differ
diff --git a/static/icons/06006744.png b/static/icons/06006744.png
new file mode 100755
index 00000000..bb09c354
Binary files /dev/null and b/static/icons/06006744.png differ
diff --git a/static/icons/06006745.png b/static/icons/06006745.png
new file mode 100755
index 00000000..a01d71b1
Binary files /dev/null and b/static/icons/06006745.png differ
diff --git a/static/icons/06006746.png b/static/icons/06006746.png
new file mode 100755
index 00000000..d65155a0
Binary files /dev/null and b/static/icons/06006746.png differ
diff --git a/static/icons/06006747.png b/static/icons/06006747.png
new file mode 100755
index 00000000..7e29d206
Binary files /dev/null and b/static/icons/06006747.png differ
diff --git a/static/icons/06006749.png b/static/icons/06006749.png
new file mode 100755
index 00000000..2b3d77d4
Binary files /dev/null and b/static/icons/06006749.png differ
diff --git a/static/icons/0600674B.png b/static/icons/0600674B.png
new file mode 100755
index 00000000..ff5c82b0
Binary files /dev/null and b/static/icons/0600674B.png differ
diff --git a/static/icons/0600674C.png b/static/icons/0600674C.png
new file mode 100755
index 00000000..1bc17776
Binary files /dev/null and b/static/icons/0600674C.png differ
diff --git a/static/icons/0600674D.png b/static/icons/0600674D.png
new file mode 100755
index 00000000..3bae533b
Binary files /dev/null and b/static/icons/0600674D.png differ
diff --git a/static/icons/0600674E.png b/static/icons/0600674E.png
new file mode 100755
index 00000000..05bf295d
Binary files /dev/null and b/static/icons/0600674E.png differ
diff --git a/static/icons/0600674F.png b/static/icons/0600674F.png
new file mode 100755
index 00000000..4a2a1405
Binary files /dev/null and b/static/icons/0600674F.png differ
diff --git a/static/icons/06006750.png b/static/icons/06006750.png
new file mode 100755
index 00000000..506c6607
Binary files /dev/null and b/static/icons/06006750.png differ
diff --git a/static/icons/06006751.png b/static/icons/06006751.png
new file mode 100755
index 00000000..8dd257b0
Binary files /dev/null and b/static/icons/06006751.png differ
diff --git a/static/icons/06006752.png b/static/icons/06006752.png
new file mode 100755
index 00000000..b14b5cd7
Binary files /dev/null and b/static/icons/06006752.png differ
diff --git a/static/icons/06006753.png b/static/icons/06006753.png
new file mode 100755
index 00000000..363f0ed5
Binary files /dev/null and b/static/icons/06006753.png differ
diff --git a/static/icons/06006754.png b/static/icons/06006754.png
new file mode 100755
index 00000000..f054bb5b
Binary files /dev/null and b/static/icons/06006754.png differ
diff --git a/static/icons/06006755.png b/static/icons/06006755.png
new file mode 100755
index 00000000..f69a0920
Binary files /dev/null and b/static/icons/06006755.png differ
diff --git a/static/icons/06006756.png b/static/icons/06006756.png
new file mode 100755
index 00000000..10135bf3
Binary files /dev/null and b/static/icons/06006756.png differ
diff --git a/static/icons/06006757.png b/static/icons/06006757.png
new file mode 100755
index 00000000..ab64814a
Binary files /dev/null and b/static/icons/06006757.png differ
diff --git a/static/icons/06006758.png b/static/icons/06006758.png
new file mode 100755
index 00000000..38a6fc15
Binary files /dev/null and b/static/icons/06006758.png differ
diff --git a/static/icons/06006759.png b/static/icons/06006759.png
new file mode 100755
index 00000000..d06f1aae
Binary files /dev/null and b/static/icons/06006759.png differ
diff --git a/static/icons/0600675A.png b/static/icons/0600675A.png
new file mode 100755
index 00000000..1e68b53e
Binary files /dev/null and b/static/icons/0600675A.png differ
diff --git a/static/icons/0600675B.png b/static/icons/0600675B.png
new file mode 100755
index 00000000..85a61601
Binary files /dev/null and b/static/icons/0600675B.png differ
diff --git a/static/icons/0600675C.png b/static/icons/0600675C.png
new file mode 100755
index 00000000..8ef430bd
Binary files /dev/null and b/static/icons/0600675C.png differ
diff --git a/static/icons/0600675D.png b/static/icons/0600675D.png
new file mode 100755
index 00000000..ce4fb221
Binary files /dev/null and b/static/icons/0600675D.png differ
diff --git a/static/icons/0600675E.png b/static/icons/0600675E.png
new file mode 100755
index 00000000..57ab9af9
Binary files /dev/null and b/static/icons/0600675E.png differ
diff --git a/static/icons/0600675F.png b/static/icons/0600675F.png
new file mode 100755
index 00000000..ad58a5f7
Binary files /dev/null and b/static/icons/0600675F.png differ
diff --git a/static/icons/06006760.png b/static/icons/06006760.png
new file mode 100755
index 00000000..d47a8c65
Binary files /dev/null and b/static/icons/06006760.png differ
diff --git a/static/icons/06006761.png b/static/icons/06006761.png
new file mode 100755
index 00000000..bf3f491b
Binary files /dev/null and b/static/icons/06006761.png differ
diff --git a/static/icons/06006762.png b/static/icons/06006762.png
new file mode 100755
index 00000000..cd3b13d8
Binary files /dev/null and b/static/icons/06006762.png differ
diff --git a/static/icons/06006763.png b/static/icons/06006763.png
new file mode 100755
index 00000000..9990def4
Binary files /dev/null and b/static/icons/06006763.png differ
diff --git a/static/icons/0600676B.png b/static/icons/0600676B.png
new file mode 100755
index 00000000..91690949
Binary files /dev/null and b/static/icons/0600676B.png differ
diff --git a/static/icons/0600677C.png b/static/icons/0600677C.png
new file mode 100755
index 00000000..e9fa2dd3
Binary files /dev/null and b/static/icons/0600677C.png differ
diff --git a/static/icons/0600677D.png b/static/icons/0600677D.png
new file mode 100755
index 00000000..a928881a
Binary files /dev/null and b/static/icons/0600677D.png differ
diff --git a/static/icons/0600677E.png b/static/icons/0600677E.png
new file mode 100755
index 00000000..4488516d
Binary files /dev/null and b/static/icons/0600677E.png differ
diff --git a/static/icons/0600677F.png b/static/icons/0600677F.png
new file mode 100755
index 00000000..58f2dcda
Binary files /dev/null and b/static/icons/0600677F.png differ
diff --git a/static/icons/06006780.png b/static/icons/06006780.png
new file mode 100755
index 00000000..dd22f013
Binary files /dev/null and b/static/icons/06006780.png differ
diff --git a/static/icons/06006781.png b/static/icons/06006781.png
new file mode 100755
index 00000000..c7b9d8cf
Binary files /dev/null and b/static/icons/06006781.png differ
diff --git a/static/icons/06006782.png b/static/icons/06006782.png
new file mode 100755
index 00000000..9282d46f
Binary files /dev/null and b/static/icons/06006782.png differ
diff --git a/static/icons/06006783.png b/static/icons/06006783.png
new file mode 100755
index 00000000..5bd9e58f
Binary files /dev/null and b/static/icons/06006783.png differ
diff --git a/static/icons/06006784.png b/static/icons/06006784.png
new file mode 100755
index 00000000..e61d9976
Binary files /dev/null and b/static/icons/06006784.png differ
diff --git a/static/icons/06006785.png b/static/icons/06006785.png
new file mode 100755
index 00000000..5b0739eb
Binary files /dev/null and b/static/icons/06006785.png differ
diff --git a/static/icons/06006786.png b/static/icons/06006786.png
new file mode 100755
index 00000000..299455c4
Binary files /dev/null and b/static/icons/06006786.png differ
diff --git a/static/icons/06006788.png b/static/icons/06006788.png
new file mode 100755
index 00000000..34d083cb
Binary files /dev/null and b/static/icons/06006788.png differ
diff --git a/static/icons/0600678A.png b/static/icons/0600678A.png
new file mode 100755
index 00000000..d99e7814
Binary files /dev/null and b/static/icons/0600678A.png differ
diff --git a/static/icons/0600678B.png b/static/icons/0600678B.png
new file mode 100755
index 00000000..2d13a627
Binary files /dev/null and b/static/icons/0600678B.png differ
diff --git a/static/icons/0600678C.png b/static/icons/0600678C.png
new file mode 100755
index 00000000..ae0136bc
Binary files /dev/null and b/static/icons/0600678C.png differ
diff --git a/static/icons/0600678D.png b/static/icons/0600678D.png
new file mode 100755
index 00000000..2bd2b7f6
Binary files /dev/null and b/static/icons/0600678D.png differ
diff --git a/static/icons/0600678E.png b/static/icons/0600678E.png
new file mode 100755
index 00000000..6fc92861
Binary files /dev/null and b/static/icons/0600678E.png differ
diff --git a/static/icons/0600678F.png b/static/icons/0600678F.png
new file mode 100755
index 00000000..19b0ad97
Binary files /dev/null and b/static/icons/0600678F.png differ
diff --git a/static/icons/06006790.png b/static/icons/06006790.png
new file mode 100755
index 00000000..0421da5f
Binary files /dev/null and b/static/icons/06006790.png differ
diff --git a/static/icons/06006791.png b/static/icons/06006791.png
new file mode 100755
index 00000000..4962efef
Binary files /dev/null and b/static/icons/06006791.png differ
diff --git a/static/icons/06006792.png b/static/icons/06006792.png
new file mode 100755
index 00000000..86a1ddc7
Binary files /dev/null and b/static/icons/06006792.png differ
diff --git a/static/icons/06006793.png b/static/icons/06006793.png
new file mode 100755
index 00000000..88b4fccc
Binary files /dev/null and b/static/icons/06006793.png differ
diff --git a/static/icons/06006794.png b/static/icons/06006794.png
new file mode 100755
index 00000000..c3d3e9bf
Binary files /dev/null and b/static/icons/06006794.png differ
diff --git a/static/icons/06006795.png b/static/icons/06006795.png
new file mode 100755
index 00000000..179ebc00
Binary files /dev/null and b/static/icons/06006795.png differ
diff --git a/static/icons/06006796.png b/static/icons/06006796.png
new file mode 100755
index 00000000..f1624f8e
Binary files /dev/null and b/static/icons/06006796.png differ
diff --git a/static/icons/06006797.png b/static/icons/06006797.png
new file mode 100755
index 00000000..2eb27bf7
Binary files /dev/null and b/static/icons/06006797.png differ
diff --git a/static/icons/06006798.png b/static/icons/06006798.png
new file mode 100755
index 00000000..17bee5d1
Binary files /dev/null and b/static/icons/06006798.png differ
diff --git a/static/icons/06006799.png b/static/icons/06006799.png
new file mode 100755
index 00000000..1ce92528
Binary files /dev/null and b/static/icons/06006799.png differ
diff --git a/static/icons/0600679A.png b/static/icons/0600679A.png
new file mode 100755
index 00000000..ec603c2b
Binary files /dev/null and b/static/icons/0600679A.png differ
diff --git a/static/icons/0600679B.png b/static/icons/0600679B.png
new file mode 100755
index 00000000..093545b1
Binary files /dev/null and b/static/icons/0600679B.png differ
diff --git a/static/icons/0600679C.png b/static/icons/0600679C.png
new file mode 100755
index 00000000..356edf0e
Binary files /dev/null and b/static/icons/0600679C.png differ
diff --git a/static/icons/0600679D.png b/static/icons/0600679D.png
new file mode 100755
index 00000000..90e19bc4
Binary files /dev/null and b/static/icons/0600679D.png differ
diff --git a/static/icons/0600679E.png b/static/icons/0600679E.png
new file mode 100755
index 00000000..5719ab61
Binary files /dev/null and b/static/icons/0600679E.png differ
diff --git a/static/icons/0600679F.png b/static/icons/0600679F.png
new file mode 100755
index 00000000..73a08ef4
Binary files /dev/null and b/static/icons/0600679F.png differ
diff --git a/static/icons/060067A0.png b/static/icons/060067A0.png
new file mode 100755
index 00000000..3ede4f81
Binary files /dev/null and b/static/icons/060067A0.png differ
diff --git a/static/icons/060067A1.png b/static/icons/060067A1.png
new file mode 100755
index 00000000..ca0c305c
Binary files /dev/null and b/static/icons/060067A1.png differ
diff --git a/static/icons/060067A2.png b/static/icons/060067A2.png
new file mode 100755
index 00000000..06f392c9
Binary files /dev/null and b/static/icons/060067A2.png differ
diff --git a/static/icons/060067A3.png b/static/icons/060067A3.png
new file mode 100755
index 00000000..89109577
Binary files /dev/null and b/static/icons/060067A3.png differ
diff --git a/static/icons/060067A5.png b/static/icons/060067A5.png
new file mode 100755
index 00000000..e050ca52
Binary files /dev/null and b/static/icons/060067A5.png differ
diff --git a/static/icons/060067A6.png b/static/icons/060067A6.png
new file mode 100755
index 00000000..4a321648
Binary files /dev/null and b/static/icons/060067A6.png differ
diff --git a/static/icons/060067A7.png b/static/icons/060067A7.png
new file mode 100755
index 00000000..726bda7e
Binary files /dev/null and b/static/icons/060067A7.png differ
diff --git a/static/icons/060067A9.png b/static/icons/060067A9.png
new file mode 100755
index 00000000..05cdb47a
Binary files /dev/null and b/static/icons/060067A9.png differ
diff --git a/static/icons/060067AC.png b/static/icons/060067AC.png
new file mode 100755
index 00000000..bc87fd2c
Binary files /dev/null and b/static/icons/060067AC.png differ
diff --git a/static/icons/060067AD.png b/static/icons/060067AD.png
new file mode 100755
index 00000000..22ad6e50
Binary files /dev/null and b/static/icons/060067AD.png differ
diff --git a/static/icons/060067AE.png b/static/icons/060067AE.png
new file mode 100755
index 00000000..f048b712
Binary files /dev/null and b/static/icons/060067AE.png differ
diff --git a/static/icons/060067AF.png b/static/icons/060067AF.png
new file mode 100755
index 00000000..7058ba90
Binary files /dev/null and b/static/icons/060067AF.png differ
diff --git a/static/icons/060067B0.png b/static/icons/060067B0.png
new file mode 100755
index 00000000..ebe22fee
Binary files /dev/null and b/static/icons/060067B0.png differ
diff --git a/static/icons/060067B1.png b/static/icons/060067B1.png
new file mode 100755
index 00000000..d65097f9
Binary files /dev/null and b/static/icons/060067B1.png differ
diff --git a/static/icons/060067B2.png b/static/icons/060067B2.png
new file mode 100755
index 00000000..cb06b4a0
Binary files /dev/null and b/static/icons/060067B2.png differ
diff --git a/static/icons/060067B3.png b/static/icons/060067B3.png
new file mode 100755
index 00000000..ed946418
Binary files /dev/null and b/static/icons/060067B3.png differ
diff --git a/static/icons/060067B4.png b/static/icons/060067B4.png
new file mode 100755
index 00000000..0a9254f6
Binary files /dev/null and b/static/icons/060067B4.png differ
diff --git a/static/icons/060067B5.png b/static/icons/060067B5.png
new file mode 100755
index 00000000..602cf07f
Binary files /dev/null and b/static/icons/060067B5.png differ
diff --git a/static/icons/060067B6.png b/static/icons/060067B6.png
new file mode 100755
index 00000000..462ebae2
Binary files /dev/null and b/static/icons/060067B6.png differ
diff --git a/static/icons/060067B7.png b/static/icons/060067B7.png
new file mode 100755
index 00000000..152de75e
Binary files /dev/null and b/static/icons/060067B7.png differ
diff --git a/static/icons/060067B8.png b/static/icons/060067B8.png
new file mode 100755
index 00000000..a45fbd77
Binary files /dev/null and b/static/icons/060067B8.png differ
diff --git a/static/icons/060067BC.png b/static/icons/060067BC.png
new file mode 100755
index 00000000..52ce33d6
Binary files /dev/null and b/static/icons/060067BC.png differ
diff --git a/static/icons/060067BD.png b/static/icons/060067BD.png
new file mode 100755
index 00000000..1d0962d2
Binary files /dev/null and b/static/icons/060067BD.png differ
diff --git a/static/icons/060067BE.png b/static/icons/060067BE.png
new file mode 100755
index 00000000..588efb45
Binary files /dev/null and b/static/icons/060067BE.png differ
diff --git a/static/icons/060067BF.png b/static/icons/060067BF.png
new file mode 100755
index 00000000..bac01634
Binary files /dev/null and b/static/icons/060067BF.png differ
diff --git a/static/icons/060067C0.png b/static/icons/060067C0.png
new file mode 100755
index 00000000..8d52be77
Binary files /dev/null and b/static/icons/060067C0.png differ
diff --git a/static/icons/060067C1.png b/static/icons/060067C1.png
new file mode 100755
index 00000000..c8bbe4aa
Binary files /dev/null and b/static/icons/060067C1.png differ
diff --git a/static/icons/060067C2.png b/static/icons/060067C2.png
new file mode 100755
index 00000000..c5aa5b13
Binary files /dev/null and b/static/icons/060067C2.png differ
diff --git a/static/icons/060067C3.png b/static/icons/060067C3.png
new file mode 100755
index 00000000..a544cb76
Binary files /dev/null and b/static/icons/060067C3.png differ
diff --git a/static/icons/060067C4.png b/static/icons/060067C4.png
new file mode 100755
index 00000000..d6974174
Binary files /dev/null and b/static/icons/060067C4.png differ
diff --git a/static/icons/060067C5.png b/static/icons/060067C5.png
new file mode 100755
index 00000000..7ff97cc4
Binary files /dev/null and b/static/icons/060067C5.png differ
diff --git a/static/icons/060067C6.png b/static/icons/060067C6.png
new file mode 100755
index 00000000..6d0d1a97
Binary files /dev/null and b/static/icons/060067C6.png differ
diff --git a/static/icons/060067C7.png b/static/icons/060067C7.png
new file mode 100755
index 00000000..93406d81
Binary files /dev/null and b/static/icons/060067C7.png differ
diff --git a/static/icons/060067C8.png b/static/icons/060067C8.png
new file mode 100755
index 00000000..a216305f
Binary files /dev/null and b/static/icons/060067C8.png differ
diff --git a/static/icons/060067C9.png b/static/icons/060067C9.png
new file mode 100755
index 00000000..3c093eac
Binary files /dev/null and b/static/icons/060067C9.png differ
diff --git a/static/icons/060067CA.png b/static/icons/060067CA.png
new file mode 100755
index 00000000..0d502fb8
Binary files /dev/null and b/static/icons/060067CA.png differ
diff --git a/static/icons/060067CB.png b/static/icons/060067CB.png
new file mode 100755
index 00000000..06d8c243
Binary files /dev/null and b/static/icons/060067CB.png differ
diff --git a/static/icons/060067CC.png b/static/icons/060067CC.png
new file mode 100755
index 00000000..960023c1
Binary files /dev/null and b/static/icons/060067CC.png differ
diff --git a/static/icons/060067CD.png b/static/icons/060067CD.png
new file mode 100755
index 00000000..daa36b1a
Binary files /dev/null and b/static/icons/060067CD.png differ
diff --git a/static/icons/060067CE.png b/static/icons/060067CE.png
new file mode 100755
index 00000000..ccba0dcf
Binary files /dev/null and b/static/icons/060067CE.png differ
diff --git a/static/icons/060067CF.png b/static/icons/060067CF.png
new file mode 100755
index 00000000..5010799c
Binary files /dev/null and b/static/icons/060067CF.png differ
diff --git a/static/icons/060067D0.png b/static/icons/060067D0.png
new file mode 100755
index 00000000..68329465
Binary files /dev/null and b/static/icons/060067D0.png differ
diff --git a/static/icons/060067D1.png b/static/icons/060067D1.png
new file mode 100755
index 00000000..9f8580dd
Binary files /dev/null and b/static/icons/060067D1.png differ
diff --git a/static/icons/060067D2.png b/static/icons/060067D2.png
new file mode 100755
index 00000000..92dab85e
Binary files /dev/null and b/static/icons/060067D2.png differ
diff --git a/static/icons/060067D3.png b/static/icons/060067D3.png
new file mode 100755
index 00000000..ea946a80
Binary files /dev/null and b/static/icons/060067D3.png differ
diff --git a/static/icons/060067D4.png b/static/icons/060067D4.png
new file mode 100755
index 00000000..36eccaee
Binary files /dev/null and b/static/icons/060067D4.png differ
diff --git a/static/icons/060067D5.png b/static/icons/060067D5.png
new file mode 100755
index 00000000..c726c4f3
Binary files /dev/null and b/static/icons/060067D5.png differ
diff --git a/static/icons/060067D6.png b/static/icons/060067D6.png
new file mode 100755
index 00000000..116e19b5
Binary files /dev/null and b/static/icons/060067D6.png differ
diff --git a/static/icons/060067D7.png b/static/icons/060067D7.png
new file mode 100755
index 00000000..22f16994
Binary files /dev/null and b/static/icons/060067D7.png differ
diff --git a/static/icons/060067D8.png b/static/icons/060067D8.png
new file mode 100755
index 00000000..44b47f50
Binary files /dev/null and b/static/icons/060067D8.png differ
diff --git a/static/icons/060067D9.png b/static/icons/060067D9.png
new file mode 100755
index 00000000..ea1def1e
Binary files /dev/null and b/static/icons/060067D9.png differ
diff --git a/static/icons/060067DA.png b/static/icons/060067DA.png
new file mode 100755
index 00000000..ab4bc3e8
Binary files /dev/null and b/static/icons/060067DA.png differ
diff --git a/static/icons/060067DB.png b/static/icons/060067DB.png
new file mode 100755
index 00000000..22a1fe49
Binary files /dev/null and b/static/icons/060067DB.png differ
diff --git a/static/icons/060067DD.png b/static/icons/060067DD.png
new file mode 100755
index 00000000..643f2252
Binary files /dev/null and b/static/icons/060067DD.png differ
diff --git a/static/icons/060067DE.png b/static/icons/060067DE.png
new file mode 100755
index 00000000..d8f3a13c
Binary files /dev/null and b/static/icons/060067DE.png differ
diff --git a/static/icons/060067DF.png b/static/icons/060067DF.png
new file mode 100755
index 00000000..e16379e3
Binary files /dev/null and b/static/icons/060067DF.png differ
diff --git a/static/icons/060067E0.png b/static/icons/060067E0.png
new file mode 100755
index 00000000..40b99665
Binary files /dev/null and b/static/icons/060067E0.png differ
diff --git a/static/icons/060067E1.png b/static/icons/060067E1.png
new file mode 100755
index 00000000..f1745692
Binary files /dev/null and b/static/icons/060067E1.png differ
diff --git a/static/icons/060067E2.png b/static/icons/060067E2.png
new file mode 100755
index 00000000..399b191e
Binary files /dev/null and b/static/icons/060067E2.png differ
diff --git a/static/icons/060067E3.png b/static/icons/060067E3.png
new file mode 100755
index 00000000..a97b936d
Binary files /dev/null and b/static/icons/060067E3.png differ
diff --git a/static/icons/060067E4.png b/static/icons/060067E4.png
new file mode 100755
index 00000000..63329b9b
Binary files /dev/null and b/static/icons/060067E4.png differ
diff --git a/static/icons/060067E5.png b/static/icons/060067E5.png
new file mode 100755
index 00000000..8e0c5fd1
Binary files /dev/null and b/static/icons/060067E5.png differ
diff --git a/static/icons/060067E6.png b/static/icons/060067E6.png
new file mode 100755
index 00000000..16632965
Binary files /dev/null and b/static/icons/060067E6.png differ
diff --git a/static/icons/060067E7.png b/static/icons/060067E7.png
new file mode 100755
index 00000000..0cb4eec1
Binary files /dev/null and b/static/icons/060067E7.png differ
diff --git a/static/icons/060067E8.png b/static/icons/060067E8.png
new file mode 100755
index 00000000..32259f36
Binary files /dev/null and b/static/icons/060067E8.png differ
diff --git a/static/icons/060067E9.png b/static/icons/060067E9.png
new file mode 100755
index 00000000..c9a68c34
Binary files /dev/null and b/static/icons/060067E9.png differ
diff --git a/static/icons/060067EA.png b/static/icons/060067EA.png
new file mode 100755
index 00000000..3c9269e2
Binary files /dev/null and b/static/icons/060067EA.png differ
diff --git a/static/icons/060067EB.png b/static/icons/060067EB.png
new file mode 100755
index 00000000..195e7fee
Binary files /dev/null and b/static/icons/060067EB.png differ
diff --git a/static/icons/060067EC.png b/static/icons/060067EC.png
new file mode 100755
index 00000000..2a186b25
Binary files /dev/null and b/static/icons/060067EC.png differ
diff --git a/static/icons/060067ED.png b/static/icons/060067ED.png
new file mode 100755
index 00000000..832b60b4
Binary files /dev/null and b/static/icons/060067ED.png differ
diff --git a/static/icons/060067EE.png b/static/icons/060067EE.png
new file mode 100755
index 00000000..a2b30ab1
Binary files /dev/null and b/static/icons/060067EE.png differ
diff --git a/static/icons/060067EF.png b/static/icons/060067EF.png
new file mode 100755
index 00000000..f88ca209
Binary files /dev/null and b/static/icons/060067EF.png differ
diff --git a/static/icons/060067F0.png b/static/icons/060067F0.png
new file mode 100755
index 00000000..464f9898
Binary files /dev/null and b/static/icons/060067F0.png differ
diff --git a/static/icons/060067F1.png b/static/icons/060067F1.png
new file mode 100755
index 00000000..df3a96d8
Binary files /dev/null and b/static/icons/060067F1.png differ
diff --git a/static/icons/060067F2.png b/static/icons/060067F2.png
new file mode 100755
index 00000000..facf9967
Binary files /dev/null and b/static/icons/060067F2.png differ
diff --git a/static/icons/060067F5.png b/static/icons/060067F5.png
new file mode 100755
index 00000000..fe2e601a
Binary files /dev/null and b/static/icons/060067F5.png differ
diff --git a/static/icons/060067F6.png b/static/icons/060067F6.png
new file mode 100755
index 00000000..29bca03d
Binary files /dev/null and b/static/icons/060067F6.png differ
diff --git a/static/icons/060067F7.png b/static/icons/060067F7.png
new file mode 100755
index 00000000..2e9cea6f
Binary files /dev/null and b/static/icons/060067F7.png differ
diff --git a/static/icons/060067F8.png b/static/icons/060067F8.png
new file mode 100755
index 00000000..c269542a
Binary files /dev/null and b/static/icons/060067F8.png differ
diff --git a/static/icons/060067F9.png b/static/icons/060067F9.png
new file mode 100755
index 00000000..c92a8d85
Binary files /dev/null and b/static/icons/060067F9.png differ
diff --git a/static/icons/060067FA.png b/static/icons/060067FA.png
new file mode 100755
index 00000000..730cee2c
Binary files /dev/null and b/static/icons/060067FA.png differ
diff --git a/static/icons/060067FB.png b/static/icons/060067FB.png
new file mode 100755
index 00000000..7bbde572
Binary files /dev/null and b/static/icons/060067FB.png differ
diff --git a/static/icons/060067FC.png b/static/icons/060067FC.png
new file mode 100755
index 00000000..f3c8ac9d
Binary files /dev/null and b/static/icons/060067FC.png differ
diff --git a/static/icons/060067FD.png b/static/icons/060067FD.png
new file mode 100755
index 00000000..cf57efe9
Binary files /dev/null and b/static/icons/060067FD.png differ
diff --git a/static/icons/060067FE.png b/static/icons/060067FE.png
new file mode 100755
index 00000000..52ad6efd
Binary files /dev/null and b/static/icons/060067FE.png differ
diff --git a/static/icons/060067FF.png b/static/icons/060067FF.png
new file mode 100755
index 00000000..4a94a9aa
Binary files /dev/null and b/static/icons/060067FF.png differ
diff --git a/static/icons/06006800.png b/static/icons/06006800.png
new file mode 100755
index 00000000..4bcee5e2
Binary files /dev/null and b/static/icons/06006800.png differ
diff --git a/static/icons/06006801.png b/static/icons/06006801.png
new file mode 100755
index 00000000..5eb26ac7
Binary files /dev/null and b/static/icons/06006801.png differ
diff --git a/static/icons/06006802.png b/static/icons/06006802.png
new file mode 100755
index 00000000..13f904f4
Binary files /dev/null and b/static/icons/06006802.png differ
diff --git a/static/icons/06006803.png b/static/icons/06006803.png
new file mode 100755
index 00000000..dd5cb9a7
Binary files /dev/null and b/static/icons/06006803.png differ
diff --git a/static/icons/06006804.png b/static/icons/06006804.png
new file mode 100755
index 00000000..82f8bff5
Binary files /dev/null and b/static/icons/06006804.png differ
diff --git a/static/icons/06006805.png b/static/icons/06006805.png
new file mode 100755
index 00000000..c3cc25d1
Binary files /dev/null and b/static/icons/06006805.png differ
diff --git a/static/icons/06006806.png b/static/icons/06006806.png
new file mode 100755
index 00000000..613058e6
Binary files /dev/null and b/static/icons/06006806.png differ
diff --git a/static/icons/06006807.png b/static/icons/06006807.png
new file mode 100755
index 00000000..b0630cd8
Binary files /dev/null and b/static/icons/06006807.png differ
diff --git a/static/icons/06006808.png b/static/icons/06006808.png
new file mode 100755
index 00000000..4f9cc771
Binary files /dev/null and b/static/icons/06006808.png differ
diff --git a/static/icons/06006809.png b/static/icons/06006809.png
new file mode 100755
index 00000000..96b46601
Binary files /dev/null and b/static/icons/06006809.png differ
diff --git a/static/icons/0600680A.png b/static/icons/0600680A.png
new file mode 100755
index 00000000..9e93e5ff
Binary files /dev/null and b/static/icons/0600680A.png differ
diff --git a/static/icons/0600680B.png b/static/icons/0600680B.png
new file mode 100755
index 00000000..055ad648
Binary files /dev/null and b/static/icons/0600680B.png differ
diff --git a/static/icons/0600680C.png b/static/icons/0600680C.png
new file mode 100755
index 00000000..730359e9
Binary files /dev/null and b/static/icons/0600680C.png differ
diff --git a/static/icons/0600680D.png b/static/icons/0600680D.png
new file mode 100755
index 00000000..5ed6faf9
Binary files /dev/null and b/static/icons/0600680D.png differ
diff --git a/static/icons/0600680E.png b/static/icons/0600680E.png
new file mode 100755
index 00000000..5a27b94a
Binary files /dev/null and b/static/icons/0600680E.png differ
diff --git a/static/icons/0600680F.png b/static/icons/0600680F.png
new file mode 100755
index 00000000..f5938893
Binary files /dev/null and b/static/icons/0600680F.png differ
diff --git a/static/icons/06006810.png b/static/icons/06006810.png
new file mode 100755
index 00000000..e672c1ed
Binary files /dev/null and b/static/icons/06006810.png differ
diff --git a/static/icons/06006811.png b/static/icons/06006811.png
new file mode 100755
index 00000000..1d6fdfa0
Binary files /dev/null and b/static/icons/06006811.png differ
diff --git a/static/icons/06006814.png b/static/icons/06006814.png
new file mode 100755
index 00000000..02bb2a2b
Binary files /dev/null and b/static/icons/06006814.png differ
diff --git a/static/icons/06006815.png b/static/icons/06006815.png
new file mode 100755
index 00000000..21067e8c
Binary files /dev/null and b/static/icons/06006815.png differ
diff --git a/static/icons/06006816.png b/static/icons/06006816.png
new file mode 100755
index 00000000..112e92b4
Binary files /dev/null and b/static/icons/06006816.png differ
diff --git a/static/icons/06006817.png b/static/icons/06006817.png
new file mode 100755
index 00000000..0e91e60a
Binary files /dev/null and b/static/icons/06006817.png differ
diff --git a/static/icons/06006818.png b/static/icons/06006818.png
new file mode 100755
index 00000000..14116705
Binary files /dev/null and b/static/icons/06006818.png differ
diff --git a/static/icons/06006819.png b/static/icons/06006819.png
new file mode 100755
index 00000000..e9dd2e29
Binary files /dev/null and b/static/icons/06006819.png differ
diff --git a/static/icons/0600681A.png b/static/icons/0600681A.png
new file mode 100755
index 00000000..d496118c
Binary files /dev/null and b/static/icons/0600681A.png differ
diff --git a/static/icons/0600681B.png b/static/icons/0600681B.png
new file mode 100755
index 00000000..dc95b6b7
Binary files /dev/null and b/static/icons/0600681B.png differ
diff --git a/static/icons/0600681C.png b/static/icons/0600681C.png
new file mode 100755
index 00000000..19476928
Binary files /dev/null and b/static/icons/0600681C.png differ
diff --git a/static/icons/0600681D.png b/static/icons/0600681D.png
new file mode 100755
index 00000000..783d46b6
Binary files /dev/null and b/static/icons/0600681D.png differ
diff --git a/static/icons/0600681E.png b/static/icons/0600681E.png
new file mode 100755
index 00000000..04844365
Binary files /dev/null and b/static/icons/0600681E.png differ
diff --git a/static/icons/06006831.png b/static/icons/06006831.png
new file mode 100755
index 00000000..e5fdeacc
Binary files /dev/null and b/static/icons/06006831.png differ
diff --git a/static/icons/06006832.png b/static/icons/06006832.png
new file mode 100755
index 00000000..6c329698
Binary files /dev/null and b/static/icons/06006832.png differ
diff --git a/static/icons/06006833.png b/static/icons/06006833.png
new file mode 100755
index 00000000..9843e4ca
Binary files /dev/null and b/static/icons/06006833.png differ
diff --git a/static/icons/06006834.png b/static/icons/06006834.png
new file mode 100755
index 00000000..34052000
Binary files /dev/null and b/static/icons/06006834.png differ
diff --git a/static/icons/06006835.png b/static/icons/06006835.png
new file mode 100755
index 00000000..d613fff2
Binary files /dev/null and b/static/icons/06006835.png differ
diff --git a/static/icons/06006838.png b/static/icons/06006838.png
new file mode 100755
index 00000000..786333cc
Binary files /dev/null and b/static/icons/06006838.png differ
diff --git a/static/icons/06006839.png b/static/icons/06006839.png
new file mode 100755
index 00000000..fc08259f
Binary files /dev/null and b/static/icons/06006839.png differ
diff --git a/static/icons/0600683A.png b/static/icons/0600683A.png
new file mode 100755
index 00000000..8bcec18f
Binary files /dev/null and b/static/icons/0600683A.png differ
diff --git a/static/icons/0600683B.png b/static/icons/0600683B.png
new file mode 100755
index 00000000..43f52935
Binary files /dev/null and b/static/icons/0600683B.png differ
diff --git a/static/icons/0600683C.png b/static/icons/0600683C.png
new file mode 100755
index 00000000..91ca3669
Binary files /dev/null and b/static/icons/0600683C.png differ
diff --git a/static/icons/0600683D.png b/static/icons/0600683D.png
new file mode 100755
index 00000000..cd5cad99
Binary files /dev/null and b/static/icons/0600683D.png differ
diff --git a/static/icons/0600683E.png b/static/icons/0600683E.png
new file mode 100755
index 00000000..04f77d2a
Binary files /dev/null and b/static/icons/0600683E.png differ
diff --git a/static/icons/0600683F.png b/static/icons/0600683F.png
new file mode 100755
index 00000000..38591347
Binary files /dev/null and b/static/icons/0600683F.png differ
diff --git a/static/icons/06006840.png b/static/icons/06006840.png
new file mode 100755
index 00000000..fd30d92f
Binary files /dev/null and b/static/icons/06006840.png differ
diff --git a/static/icons/06006841.png b/static/icons/06006841.png
new file mode 100755
index 00000000..ed0f3b48
Binary files /dev/null and b/static/icons/06006841.png differ
diff --git a/static/icons/06006842.png b/static/icons/06006842.png
new file mode 100755
index 00000000..ee66035c
Binary files /dev/null and b/static/icons/06006842.png differ
diff --git a/static/icons/06006843.png b/static/icons/06006843.png
new file mode 100755
index 00000000..2effe0c4
Binary files /dev/null and b/static/icons/06006843.png differ
diff --git a/static/icons/06006844.png b/static/icons/06006844.png
new file mode 100755
index 00000000..02e6dc2f
Binary files /dev/null and b/static/icons/06006844.png differ
diff --git a/static/icons/06006845.png b/static/icons/06006845.png
new file mode 100755
index 00000000..2573eb26
Binary files /dev/null and b/static/icons/06006845.png differ
diff --git a/static/icons/06006846.png b/static/icons/06006846.png
new file mode 100755
index 00000000..c7b374e1
Binary files /dev/null and b/static/icons/06006846.png differ
diff --git a/static/icons/06006847.png b/static/icons/06006847.png
new file mode 100755
index 00000000..92768300
Binary files /dev/null and b/static/icons/06006847.png differ
diff --git a/static/icons/06006848.png b/static/icons/06006848.png
new file mode 100755
index 00000000..c0f2056d
Binary files /dev/null and b/static/icons/06006848.png differ
diff --git a/static/icons/06006849.png b/static/icons/06006849.png
new file mode 100755
index 00000000..27086695
Binary files /dev/null and b/static/icons/06006849.png differ
diff --git a/static/icons/0600684A.png b/static/icons/0600684A.png
new file mode 100755
index 00000000..d2a224c5
Binary files /dev/null and b/static/icons/0600684A.png differ
diff --git a/static/icons/0600684B.png b/static/icons/0600684B.png
new file mode 100755
index 00000000..08ddd6df
Binary files /dev/null and b/static/icons/0600684B.png differ
diff --git a/static/icons/0600684C.png b/static/icons/0600684C.png
new file mode 100755
index 00000000..8eb6265e
Binary files /dev/null and b/static/icons/0600684C.png differ
diff --git a/static/icons/0600684D.png b/static/icons/0600684D.png
new file mode 100755
index 00000000..b9331fca
Binary files /dev/null and b/static/icons/0600684D.png differ
diff --git a/static/icons/0600684E.png b/static/icons/0600684E.png
new file mode 100755
index 00000000..b07079f9
Binary files /dev/null and b/static/icons/0600684E.png differ
diff --git a/static/icons/06006852.png b/static/icons/06006852.png
new file mode 100755
index 00000000..7f69c47f
Binary files /dev/null and b/static/icons/06006852.png differ
diff --git a/static/icons/06006853.png b/static/icons/06006853.png
new file mode 100755
index 00000000..6e9e7d3d
Binary files /dev/null and b/static/icons/06006853.png differ
diff --git a/static/icons/06006854.png b/static/icons/06006854.png
new file mode 100755
index 00000000..f2ec847f
Binary files /dev/null and b/static/icons/06006854.png differ
diff --git a/static/icons/06006855.png b/static/icons/06006855.png
new file mode 100755
index 00000000..5ff3f218
Binary files /dev/null and b/static/icons/06006855.png differ
diff --git a/static/icons/06006856.png b/static/icons/06006856.png
new file mode 100755
index 00000000..a53c7386
Binary files /dev/null and b/static/icons/06006856.png differ
diff --git a/static/icons/06006857.png b/static/icons/06006857.png
new file mode 100755
index 00000000..297006c2
Binary files /dev/null and b/static/icons/06006857.png differ
diff --git a/static/icons/06006858.png b/static/icons/06006858.png
new file mode 100755
index 00000000..87ee6f4c
Binary files /dev/null and b/static/icons/06006858.png differ
diff --git a/static/icons/06006859.png b/static/icons/06006859.png
new file mode 100755
index 00000000..cb4c0cb1
Binary files /dev/null and b/static/icons/06006859.png differ
diff --git a/static/icons/0600685A.png b/static/icons/0600685A.png
new file mode 100755
index 00000000..b4d4b472
Binary files /dev/null and b/static/icons/0600685A.png differ
diff --git a/static/icons/0600685B.png b/static/icons/0600685B.png
new file mode 100755
index 00000000..5c1352a9
Binary files /dev/null and b/static/icons/0600685B.png differ
diff --git a/static/icons/0600685C.png b/static/icons/0600685C.png
new file mode 100755
index 00000000..e3ef3cb2
Binary files /dev/null and b/static/icons/0600685C.png differ
diff --git a/static/icons/0600685D.png b/static/icons/0600685D.png
new file mode 100755
index 00000000..451a3403
Binary files /dev/null and b/static/icons/0600685D.png differ
diff --git a/static/icons/0600685E.png b/static/icons/0600685E.png
new file mode 100755
index 00000000..9dcf1866
Binary files /dev/null and b/static/icons/0600685E.png differ
diff --git a/static/icons/0600685F.png b/static/icons/0600685F.png
new file mode 100755
index 00000000..5c0e52ce
Binary files /dev/null and b/static/icons/0600685F.png differ
diff --git a/static/icons/06006860.png b/static/icons/06006860.png
new file mode 100755
index 00000000..d1b23a6b
Binary files /dev/null and b/static/icons/06006860.png differ
diff --git a/static/icons/06006861.png b/static/icons/06006861.png
new file mode 100755
index 00000000..306a19a7
Binary files /dev/null and b/static/icons/06006861.png differ
diff --git a/static/icons/06006862.png b/static/icons/06006862.png
new file mode 100755
index 00000000..d7240bd9
Binary files /dev/null and b/static/icons/06006862.png differ
diff --git a/static/icons/06006863.png b/static/icons/06006863.png
new file mode 100755
index 00000000..d4bdc1f3
Binary files /dev/null and b/static/icons/06006863.png differ
diff --git a/static/icons/06006864.png b/static/icons/06006864.png
new file mode 100755
index 00000000..d4ec5457
Binary files /dev/null and b/static/icons/06006864.png differ
diff --git a/static/icons/06006865.png b/static/icons/06006865.png
new file mode 100755
index 00000000..82bc10dd
Binary files /dev/null and b/static/icons/06006865.png differ
diff --git a/static/icons/06006866.png b/static/icons/06006866.png
new file mode 100755
index 00000000..933beae1
Binary files /dev/null and b/static/icons/06006866.png differ
diff --git a/static/icons/06006869.png b/static/icons/06006869.png
new file mode 100755
index 00000000..b125b6ce
Binary files /dev/null and b/static/icons/06006869.png differ
diff --git a/static/icons/0600686A.png b/static/icons/0600686A.png
new file mode 100755
index 00000000..6aead7ad
Binary files /dev/null and b/static/icons/0600686A.png differ
diff --git a/static/icons/0600686B.png b/static/icons/0600686B.png
new file mode 100755
index 00000000..d0f081da
Binary files /dev/null and b/static/icons/0600686B.png differ
diff --git a/static/icons/0600686C.png b/static/icons/0600686C.png
new file mode 100755
index 00000000..0d8075f2
Binary files /dev/null and b/static/icons/0600686C.png differ
diff --git a/static/icons/0600686D.png b/static/icons/0600686D.png
new file mode 100755
index 00000000..6bbc6233
Binary files /dev/null and b/static/icons/0600686D.png differ
diff --git a/static/icons/0600686E.png b/static/icons/0600686E.png
new file mode 100755
index 00000000..2f34969e
Binary files /dev/null and b/static/icons/0600686E.png differ
diff --git a/static/icons/0600686F.png b/static/icons/0600686F.png
new file mode 100755
index 00000000..d63245ab
Binary files /dev/null and b/static/icons/0600686F.png differ
diff --git a/static/icons/06006870.png b/static/icons/06006870.png
new file mode 100755
index 00000000..66df482f
Binary files /dev/null and b/static/icons/06006870.png differ
diff --git a/static/icons/06006871.png b/static/icons/06006871.png
new file mode 100755
index 00000000..b269d2e5
Binary files /dev/null and b/static/icons/06006871.png differ
diff --git a/static/icons/06006872.png b/static/icons/06006872.png
new file mode 100755
index 00000000..1b7ba1b9
Binary files /dev/null and b/static/icons/06006872.png differ
diff --git a/static/icons/06006873.png b/static/icons/06006873.png
new file mode 100755
index 00000000..2f0049d3
Binary files /dev/null and b/static/icons/06006873.png differ
diff --git a/static/icons/06006876.png b/static/icons/06006876.png
new file mode 100755
index 00000000..d6d317fe
Binary files /dev/null and b/static/icons/06006876.png differ
diff --git a/static/icons/06006877.png b/static/icons/06006877.png
new file mode 100755
index 00000000..996e4d46
Binary files /dev/null and b/static/icons/06006877.png differ
diff --git a/static/icons/06006878.png b/static/icons/06006878.png
new file mode 100755
index 00000000..776547e4
Binary files /dev/null and b/static/icons/06006878.png differ
diff --git a/static/icons/06006879.png b/static/icons/06006879.png
new file mode 100755
index 00000000..050560f9
Binary files /dev/null and b/static/icons/06006879.png differ
diff --git a/static/icons/0600687A.png b/static/icons/0600687A.png
new file mode 100755
index 00000000..76ff4458
Binary files /dev/null and b/static/icons/0600687A.png differ
diff --git a/static/icons/0600687B.png b/static/icons/0600687B.png
new file mode 100755
index 00000000..32bbdeaa
Binary files /dev/null and b/static/icons/0600687B.png differ
diff --git a/static/icons/0600687C.png b/static/icons/0600687C.png
new file mode 100755
index 00000000..96b3978e
Binary files /dev/null and b/static/icons/0600687C.png differ
diff --git a/static/icons/0600687D.png b/static/icons/0600687D.png
new file mode 100755
index 00000000..801e45dc
Binary files /dev/null and b/static/icons/0600687D.png differ
diff --git a/static/icons/0600687E.png b/static/icons/0600687E.png
new file mode 100755
index 00000000..631f7a06
Binary files /dev/null and b/static/icons/0600687E.png differ
diff --git a/static/icons/0600687F.png b/static/icons/0600687F.png
new file mode 100755
index 00000000..9a2d12f9
Binary files /dev/null and b/static/icons/0600687F.png differ
diff --git a/static/icons/06006880.png b/static/icons/06006880.png
new file mode 100755
index 00000000..07eddab0
Binary files /dev/null and b/static/icons/06006880.png differ
diff --git a/static/icons/06006881.png b/static/icons/06006881.png
new file mode 100755
index 00000000..b6df24ff
Binary files /dev/null and b/static/icons/06006881.png differ
diff --git a/static/icons/06006882.png b/static/icons/06006882.png
new file mode 100755
index 00000000..1d5ebfec
Binary files /dev/null and b/static/icons/06006882.png differ
diff --git a/static/icons/06006884.png b/static/icons/06006884.png
new file mode 100755
index 00000000..69bb7798
Binary files /dev/null and b/static/icons/06006884.png differ
diff --git a/static/icons/06006885.png b/static/icons/06006885.png
new file mode 100755
index 00000000..df7429e8
Binary files /dev/null and b/static/icons/06006885.png differ
diff --git a/static/icons/06006886.png b/static/icons/06006886.png
new file mode 100755
index 00000000..58e03300
Binary files /dev/null and b/static/icons/06006886.png differ
diff --git a/static/icons/06006887.png b/static/icons/06006887.png
new file mode 100755
index 00000000..5999658b
Binary files /dev/null and b/static/icons/06006887.png differ
diff --git a/static/icons/06006888.png b/static/icons/06006888.png
new file mode 100755
index 00000000..6815caa0
Binary files /dev/null and b/static/icons/06006888.png differ
diff --git a/static/icons/06006889.png b/static/icons/06006889.png
new file mode 100755
index 00000000..6b42d075
Binary files /dev/null and b/static/icons/06006889.png differ
diff --git a/static/icons/0600688A.png b/static/icons/0600688A.png
new file mode 100755
index 00000000..a4a378e5
Binary files /dev/null and b/static/icons/0600688A.png differ
diff --git a/static/icons/0600688B.png b/static/icons/0600688B.png
new file mode 100755
index 00000000..3c378555
Binary files /dev/null and b/static/icons/0600688B.png differ
diff --git a/static/icons/0600688C.png b/static/icons/0600688C.png
new file mode 100755
index 00000000..5a4c99fe
Binary files /dev/null and b/static/icons/0600688C.png differ
diff --git a/static/icons/0600688D.png b/static/icons/0600688D.png
new file mode 100755
index 00000000..fea5cc34
Binary files /dev/null and b/static/icons/0600688D.png differ
diff --git a/static/icons/0600688E.png b/static/icons/0600688E.png
new file mode 100755
index 00000000..8f06b439
Binary files /dev/null and b/static/icons/0600688E.png differ
diff --git a/static/icons/0600688F.png b/static/icons/0600688F.png
new file mode 100755
index 00000000..39caf140
Binary files /dev/null and b/static/icons/0600688F.png differ
diff --git a/static/icons/06006891.png b/static/icons/06006891.png
new file mode 100755
index 00000000..dbef86a9
Binary files /dev/null and b/static/icons/06006891.png differ
diff --git a/static/icons/06006892.png b/static/icons/06006892.png
new file mode 100755
index 00000000..6a9909db
Binary files /dev/null and b/static/icons/06006892.png differ
diff --git a/static/icons/06006893.png b/static/icons/06006893.png
new file mode 100755
index 00000000..167269a4
Binary files /dev/null and b/static/icons/06006893.png differ
diff --git a/static/icons/06006894.png b/static/icons/06006894.png
new file mode 100755
index 00000000..9e4088ca
Binary files /dev/null and b/static/icons/06006894.png differ
diff --git a/static/icons/06006895.png b/static/icons/06006895.png
new file mode 100755
index 00000000..b5baac2c
Binary files /dev/null and b/static/icons/06006895.png differ
diff --git a/static/icons/06006896.png b/static/icons/06006896.png
new file mode 100755
index 00000000..85599538
Binary files /dev/null and b/static/icons/06006896.png differ
diff --git a/static/icons/06006897.png b/static/icons/06006897.png
new file mode 100755
index 00000000..b071f8c7
Binary files /dev/null and b/static/icons/06006897.png differ
diff --git a/static/icons/06006898.png b/static/icons/06006898.png
new file mode 100755
index 00000000..fc9cba5c
Binary files /dev/null and b/static/icons/06006898.png differ
diff --git a/static/icons/06006899.png b/static/icons/06006899.png
new file mode 100755
index 00000000..1f882461
Binary files /dev/null and b/static/icons/06006899.png differ
diff --git a/static/icons/0600689A.png b/static/icons/0600689A.png
new file mode 100755
index 00000000..436c9af3
Binary files /dev/null and b/static/icons/0600689A.png differ
diff --git a/static/icons/0600689B.png b/static/icons/0600689B.png
new file mode 100755
index 00000000..b28666b8
Binary files /dev/null and b/static/icons/0600689B.png differ
diff --git a/static/icons/0600689C.png b/static/icons/0600689C.png
new file mode 100755
index 00000000..eea11a78
Binary files /dev/null and b/static/icons/0600689C.png differ
diff --git a/static/icons/0600689D.png b/static/icons/0600689D.png
new file mode 100755
index 00000000..1270211d
Binary files /dev/null and b/static/icons/0600689D.png differ
diff --git a/static/icons/0600689E.png b/static/icons/0600689E.png
new file mode 100755
index 00000000..d99c16c7
Binary files /dev/null and b/static/icons/0600689E.png differ
diff --git a/static/icons/0600689F.png b/static/icons/0600689F.png
new file mode 100755
index 00000000..09a5d20c
Binary files /dev/null and b/static/icons/0600689F.png differ
diff --git a/static/icons/060068A0.png b/static/icons/060068A0.png
new file mode 100755
index 00000000..b945b02f
Binary files /dev/null and b/static/icons/060068A0.png differ
diff --git a/static/icons/060068A1.png b/static/icons/060068A1.png
new file mode 100755
index 00000000..43ce38c4
Binary files /dev/null and b/static/icons/060068A1.png differ
diff --git a/static/icons/060068A2.png b/static/icons/060068A2.png
new file mode 100755
index 00000000..baf9909d
Binary files /dev/null and b/static/icons/060068A2.png differ
diff --git a/static/icons/060068A3.png b/static/icons/060068A3.png
new file mode 100755
index 00000000..1c6e9835
Binary files /dev/null and b/static/icons/060068A3.png differ
diff --git a/static/icons/060068A4.png b/static/icons/060068A4.png
new file mode 100755
index 00000000..ae11950f
Binary files /dev/null and b/static/icons/060068A4.png differ
diff --git a/static/icons/060068A5.png b/static/icons/060068A5.png
new file mode 100755
index 00000000..e8c2571c
Binary files /dev/null and b/static/icons/060068A5.png differ
diff --git a/static/icons/060068A6.png b/static/icons/060068A6.png
new file mode 100755
index 00000000..00bd66f2
Binary files /dev/null and b/static/icons/060068A6.png differ
diff --git a/static/icons/060068A7.png b/static/icons/060068A7.png
new file mode 100755
index 00000000..47e0277f
Binary files /dev/null and b/static/icons/060068A7.png differ
diff --git a/static/icons/060068A8.png b/static/icons/060068A8.png
new file mode 100755
index 00000000..3565b231
Binary files /dev/null and b/static/icons/060068A8.png differ
diff --git a/static/icons/060068A9.png b/static/icons/060068A9.png
new file mode 100755
index 00000000..85621715
Binary files /dev/null and b/static/icons/060068A9.png differ
diff --git a/static/icons/060068AA.png b/static/icons/060068AA.png
new file mode 100755
index 00000000..2237ea37
Binary files /dev/null and b/static/icons/060068AA.png differ
diff --git a/static/icons/060068AB.png b/static/icons/060068AB.png
new file mode 100755
index 00000000..b6d62c4f
Binary files /dev/null and b/static/icons/060068AB.png differ
diff --git a/static/icons/060068AC.png b/static/icons/060068AC.png
new file mode 100755
index 00000000..450bc8e3
Binary files /dev/null and b/static/icons/060068AC.png differ
diff --git a/static/icons/060068AD.png b/static/icons/060068AD.png
new file mode 100755
index 00000000..8128fe3b
Binary files /dev/null and b/static/icons/060068AD.png differ
diff --git a/static/icons/060068AE.png b/static/icons/060068AE.png
new file mode 100755
index 00000000..2197072c
Binary files /dev/null and b/static/icons/060068AE.png differ
diff --git a/static/icons/060068AF.png b/static/icons/060068AF.png
new file mode 100755
index 00000000..e754d2a1
Binary files /dev/null and b/static/icons/060068AF.png differ
diff --git a/static/icons/060068B0.png b/static/icons/060068B0.png
new file mode 100755
index 00000000..d796ad05
Binary files /dev/null and b/static/icons/060068B0.png differ
diff --git a/static/icons/060068B1.png b/static/icons/060068B1.png
new file mode 100755
index 00000000..b1c4d0ed
Binary files /dev/null and b/static/icons/060068B1.png differ
diff --git a/static/icons/060068B2.png b/static/icons/060068B2.png
new file mode 100755
index 00000000..0563ff7f
Binary files /dev/null and b/static/icons/060068B2.png differ
diff --git a/static/icons/060068B3.png b/static/icons/060068B3.png
new file mode 100755
index 00000000..d05fcda3
Binary files /dev/null and b/static/icons/060068B3.png differ
diff --git a/static/icons/060068B4.png b/static/icons/060068B4.png
new file mode 100755
index 00000000..6e6a4dc0
Binary files /dev/null and b/static/icons/060068B4.png differ
diff --git a/static/icons/060068B5.png b/static/icons/060068B5.png
new file mode 100755
index 00000000..ad897969
Binary files /dev/null and b/static/icons/060068B5.png differ
diff --git a/static/icons/060068B6.png b/static/icons/060068B6.png
new file mode 100755
index 00000000..3d75b523
Binary files /dev/null and b/static/icons/060068B6.png differ
diff --git a/static/icons/060068B7.png b/static/icons/060068B7.png
new file mode 100755
index 00000000..c8082e61
Binary files /dev/null and b/static/icons/060068B7.png differ
diff --git a/static/icons/060068B8.png b/static/icons/060068B8.png
new file mode 100755
index 00000000..c8f7e562
Binary files /dev/null and b/static/icons/060068B8.png differ
diff --git a/static/icons/060068B9.png b/static/icons/060068B9.png
new file mode 100755
index 00000000..50e52c00
Binary files /dev/null and b/static/icons/060068B9.png differ
diff --git a/static/icons/060068BA.png b/static/icons/060068BA.png
new file mode 100755
index 00000000..e59c3779
Binary files /dev/null and b/static/icons/060068BA.png differ
diff --git a/static/icons/060068BB.png b/static/icons/060068BB.png
new file mode 100755
index 00000000..cec674d6
Binary files /dev/null and b/static/icons/060068BB.png differ
diff --git a/static/icons/060068BC.png b/static/icons/060068BC.png
new file mode 100755
index 00000000..b2b365e9
Binary files /dev/null and b/static/icons/060068BC.png differ
diff --git a/static/icons/060068BD.png b/static/icons/060068BD.png
new file mode 100755
index 00000000..6f623cd9
Binary files /dev/null and b/static/icons/060068BD.png differ
diff --git a/static/icons/060068BE.png b/static/icons/060068BE.png
new file mode 100755
index 00000000..f9c31289
Binary files /dev/null and b/static/icons/060068BE.png differ
diff --git a/static/icons/060068BF.png b/static/icons/060068BF.png
new file mode 100755
index 00000000..b9b32ea2
Binary files /dev/null and b/static/icons/060068BF.png differ
diff --git a/static/icons/060068C0.png b/static/icons/060068C0.png
new file mode 100755
index 00000000..1297ecf1
Binary files /dev/null and b/static/icons/060068C0.png differ
diff --git a/static/icons/060068C1.png b/static/icons/060068C1.png
new file mode 100755
index 00000000..b9d31037
Binary files /dev/null and b/static/icons/060068C1.png differ
diff --git a/static/icons/060068C2.png b/static/icons/060068C2.png
new file mode 100755
index 00000000..9572b8ef
Binary files /dev/null and b/static/icons/060068C2.png differ
diff --git a/static/icons/060068C3.png b/static/icons/060068C3.png
new file mode 100755
index 00000000..72d9f23c
Binary files /dev/null and b/static/icons/060068C3.png differ
diff --git a/static/icons/060068C4.png b/static/icons/060068C4.png
new file mode 100755
index 00000000..bc4aa47f
Binary files /dev/null and b/static/icons/060068C4.png differ
diff --git a/static/icons/060068C5.png b/static/icons/060068C5.png
new file mode 100755
index 00000000..64ec3786
Binary files /dev/null and b/static/icons/060068C5.png differ
diff --git a/static/icons/060068C6.png b/static/icons/060068C6.png
new file mode 100755
index 00000000..5898d54f
Binary files /dev/null and b/static/icons/060068C6.png differ
diff --git a/static/icons/060068C7.png b/static/icons/060068C7.png
new file mode 100755
index 00000000..7ff974d5
Binary files /dev/null and b/static/icons/060068C7.png differ
diff --git a/static/icons/060068C8.png b/static/icons/060068C8.png
new file mode 100755
index 00000000..5eb1b419
Binary files /dev/null and b/static/icons/060068C8.png differ
diff --git a/static/icons/060068C9.png b/static/icons/060068C9.png
new file mode 100755
index 00000000..76247e0f
Binary files /dev/null and b/static/icons/060068C9.png differ
diff --git a/static/icons/060068CA.png b/static/icons/060068CA.png
new file mode 100755
index 00000000..a7e58bc7
Binary files /dev/null and b/static/icons/060068CA.png differ
diff --git a/static/icons/060068CB.png b/static/icons/060068CB.png
new file mode 100755
index 00000000..cbe43131
Binary files /dev/null and b/static/icons/060068CB.png differ
diff --git a/static/icons/060068CC.png b/static/icons/060068CC.png
new file mode 100755
index 00000000..d2df376c
Binary files /dev/null and b/static/icons/060068CC.png differ
diff --git a/static/icons/060068CD.png b/static/icons/060068CD.png
new file mode 100755
index 00000000..2d661aa9
Binary files /dev/null and b/static/icons/060068CD.png differ
diff --git a/static/icons/060068CE.png b/static/icons/060068CE.png
new file mode 100755
index 00000000..df94cc4e
Binary files /dev/null and b/static/icons/060068CE.png differ
diff --git a/static/icons/060068CF.png b/static/icons/060068CF.png
new file mode 100755
index 00000000..83b76a60
Binary files /dev/null and b/static/icons/060068CF.png differ
diff --git a/static/icons/060068D0.png b/static/icons/060068D0.png
new file mode 100755
index 00000000..6e8e5248
Binary files /dev/null and b/static/icons/060068D0.png differ
diff --git a/static/icons/060068D1.png b/static/icons/060068D1.png
new file mode 100755
index 00000000..5459bcab
Binary files /dev/null and b/static/icons/060068D1.png differ
diff --git a/static/icons/060068D2.png b/static/icons/060068D2.png
new file mode 100755
index 00000000..c1e061fa
Binary files /dev/null and b/static/icons/060068D2.png differ
diff --git a/static/icons/060068D3.png b/static/icons/060068D3.png
new file mode 100755
index 00000000..6dd91cd2
Binary files /dev/null and b/static/icons/060068D3.png differ
diff --git a/static/icons/060068D4.png b/static/icons/060068D4.png
new file mode 100755
index 00000000..c19173dc
Binary files /dev/null and b/static/icons/060068D4.png differ
diff --git a/static/icons/060068D5.png b/static/icons/060068D5.png
new file mode 100755
index 00000000..3d8930f8
Binary files /dev/null and b/static/icons/060068D5.png differ
diff --git a/static/icons/060068D6.png b/static/icons/060068D6.png
new file mode 100755
index 00000000..19861659
Binary files /dev/null and b/static/icons/060068D6.png differ
diff --git a/static/icons/060068D7.png b/static/icons/060068D7.png
new file mode 100755
index 00000000..feb82172
Binary files /dev/null and b/static/icons/060068D7.png differ
diff --git a/static/icons/060068D8.png b/static/icons/060068D8.png
new file mode 100755
index 00000000..54d7dcab
Binary files /dev/null and b/static/icons/060068D8.png differ
diff --git a/static/icons/060068D9.png b/static/icons/060068D9.png
new file mode 100755
index 00000000..a5bab2d0
Binary files /dev/null and b/static/icons/060068D9.png differ
diff --git a/static/icons/060068DA.png b/static/icons/060068DA.png
new file mode 100755
index 00000000..a177afc6
Binary files /dev/null and b/static/icons/060068DA.png differ
diff --git a/static/icons/060068DB.png b/static/icons/060068DB.png
new file mode 100755
index 00000000..b4cbc475
Binary files /dev/null and b/static/icons/060068DB.png differ
diff --git a/static/icons/060068DC.png b/static/icons/060068DC.png
new file mode 100755
index 00000000..182cc31a
Binary files /dev/null and b/static/icons/060068DC.png differ
diff --git a/static/icons/060068DD.png b/static/icons/060068DD.png
new file mode 100755
index 00000000..5aeeef08
Binary files /dev/null and b/static/icons/060068DD.png differ
diff --git a/static/icons/060068DE.png b/static/icons/060068DE.png
new file mode 100755
index 00000000..1d692e0e
Binary files /dev/null and b/static/icons/060068DE.png differ
diff --git a/static/icons/060068DF.png b/static/icons/060068DF.png
new file mode 100755
index 00000000..cb6b46e4
Binary files /dev/null and b/static/icons/060068DF.png differ
diff --git a/static/icons/060068E0.png b/static/icons/060068E0.png
new file mode 100755
index 00000000..effa4d47
Binary files /dev/null and b/static/icons/060068E0.png differ
diff --git a/static/icons/060068E1.png b/static/icons/060068E1.png
new file mode 100755
index 00000000..02b0c30e
Binary files /dev/null and b/static/icons/060068E1.png differ
diff --git a/static/icons/060068E2.png b/static/icons/060068E2.png
new file mode 100755
index 00000000..ca0518fb
Binary files /dev/null and b/static/icons/060068E2.png differ
diff --git a/static/icons/060068E3.png b/static/icons/060068E3.png
new file mode 100755
index 00000000..1b824229
Binary files /dev/null and b/static/icons/060068E3.png differ
diff --git a/static/icons/060068E4.png b/static/icons/060068E4.png
new file mode 100755
index 00000000..4d004389
Binary files /dev/null and b/static/icons/060068E4.png differ
diff --git a/static/icons/060068E5.png b/static/icons/060068E5.png
new file mode 100755
index 00000000..3052b3f7
Binary files /dev/null and b/static/icons/060068E5.png differ
diff --git a/static/icons/060068E6.png b/static/icons/060068E6.png
new file mode 100755
index 00000000..4325e467
Binary files /dev/null and b/static/icons/060068E6.png differ
diff --git a/static/icons/060068E7.png b/static/icons/060068E7.png
new file mode 100755
index 00000000..54e6b0fb
Binary files /dev/null and b/static/icons/060068E7.png differ
diff --git a/static/icons/060068E8.png b/static/icons/060068E8.png
new file mode 100755
index 00000000..5f385ddf
Binary files /dev/null and b/static/icons/060068E8.png differ
diff --git a/static/icons/060068E9.png b/static/icons/060068E9.png
new file mode 100755
index 00000000..b1d4ea33
Binary files /dev/null and b/static/icons/060068E9.png differ
diff --git a/static/icons/060068EA.png b/static/icons/060068EA.png
new file mode 100755
index 00000000..327c5a85
Binary files /dev/null and b/static/icons/060068EA.png differ
diff --git a/static/icons/060068EB.png b/static/icons/060068EB.png
new file mode 100755
index 00000000..e3c11516
Binary files /dev/null and b/static/icons/060068EB.png differ
diff --git a/static/icons/060068EC.png b/static/icons/060068EC.png
new file mode 100755
index 00000000..8656dda5
Binary files /dev/null and b/static/icons/060068EC.png differ
diff --git a/static/icons/060068ED.png b/static/icons/060068ED.png
new file mode 100755
index 00000000..2e82bdff
Binary files /dev/null and b/static/icons/060068ED.png differ
diff --git a/static/icons/060068EE.png b/static/icons/060068EE.png
new file mode 100755
index 00000000..58cde498
Binary files /dev/null and b/static/icons/060068EE.png differ
diff --git a/static/icons/060068EF.png b/static/icons/060068EF.png
new file mode 100755
index 00000000..4eb1390c
Binary files /dev/null and b/static/icons/060068EF.png differ
diff --git a/static/icons/060068F0.png b/static/icons/060068F0.png
new file mode 100755
index 00000000..99447488
Binary files /dev/null and b/static/icons/060068F0.png differ
diff --git a/static/icons/060068F1.png b/static/icons/060068F1.png
new file mode 100755
index 00000000..9a00ee95
Binary files /dev/null and b/static/icons/060068F1.png differ
diff --git a/static/icons/060068F2.png b/static/icons/060068F2.png
new file mode 100755
index 00000000..7eacb2f7
Binary files /dev/null and b/static/icons/060068F2.png differ
diff --git a/static/icons/060068F3.png b/static/icons/060068F3.png
new file mode 100755
index 00000000..249a26f2
Binary files /dev/null and b/static/icons/060068F3.png differ
diff --git a/static/icons/060068F4.png b/static/icons/060068F4.png
new file mode 100755
index 00000000..27dfdc20
Binary files /dev/null and b/static/icons/060068F4.png differ
diff --git a/static/icons/060068F5.png b/static/icons/060068F5.png
new file mode 100755
index 00000000..ba28d3e9
Binary files /dev/null and b/static/icons/060068F5.png differ
diff --git a/static/icons/060068F6.png b/static/icons/060068F6.png
new file mode 100755
index 00000000..366fbf06
Binary files /dev/null and b/static/icons/060068F6.png differ
diff --git a/static/icons/060068F7.png b/static/icons/060068F7.png
new file mode 100755
index 00000000..9bf0e415
Binary files /dev/null and b/static/icons/060068F7.png differ
diff --git a/static/icons/060068F8.png b/static/icons/060068F8.png
new file mode 100755
index 00000000..0137be35
Binary files /dev/null and b/static/icons/060068F8.png differ
diff --git a/static/icons/060068F9.png b/static/icons/060068F9.png
new file mode 100755
index 00000000..0cbd5b17
Binary files /dev/null and b/static/icons/060068F9.png differ
diff --git a/static/icons/060068FA.png b/static/icons/060068FA.png
new file mode 100755
index 00000000..a975a06d
Binary files /dev/null and b/static/icons/060068FA.png differ
diff --git a/static/icons/060068FB.png b/static/icons/060068FB.png
new file mode 100755
index 00000000..2d0cab69
Binary files /dev/null and b/static/icons/060068FB.png differ
diff --git a/static/icons/060068FC.png b/static/icons/060068FC.png
new file mode 100755
index 00000000..6892a0b1
Binary files /dev/null and b/static/icons/060068FC.png differ
diff --git a/static/icons/060068FD.png b/static/icons/060068FD.png
new file mode 100755
index 00000000..1c421680
Binary files /dev/null and b/static/icons/060068FD.png differ
diff --git a/static/icons/060068FE.png b/static/icons/060068FE.png
new file mode 100755
index 00000000..6aecdd36
Binary files /dev/null and b/static/icons/060068FE.png differ
diff --git a/static/icons/060068FF.png b/static/icons/060068FF.png
new file mode 100755
index 00000000..e8c68e13
Binary files /dev/null and b/static/icons/060068FF.png differ
diff --git a/static/icons/06006900.png b/static/icons/06006900.png
new file mode 100755
index 00000000..d7776185
Binary files /dev/null and b/static/icons/06006900.png differ
diff --git a/static/icons/06006901.png b/static/icons/06006901.png
new file mode 100755
index 00000000..2a9cfdb6
Binary files /dev/null and b/static/icons/06006901.png differ
diff --git a/static/icons/06006902.png b/static/icons/06006902.png
new file mode 100755
index 00000000..df8789a5
Binary files /dev/null and b/static/icons/06006902.png differ
diff --git a/static/icons/06006903.png b/static/icons/06006903.png
new file mode 100755
index 00000000..403f383e
Binary files /dev/null and b/static/icons/06006903.png differ
diff --git a/static/icons/06006904.png b/static/icons/06006904.png
new file mode 100755
index 00000000..fa03a1f5
Binary files /dev/null and b/static/icons/06006904.png differ
diff --git a/static/icons/06006905.png b/static/icons/06006905.png
new file mode 100755
index 00000000..069d4f59
Binary files /dev/null and b/static/icons/06006905.png differ
diff --git a/static/icons/06006906.png b/static/icons/06006906.png
new file mode 100755
index 00000000..f96cf433
Binary files /dev/null and b/static/icons/06006906.png differ
diff --git a/static/icons/06006907.png b/static/icons/06006907.png
new file mode 100755
index 00000000..8210a541
Binary files /dev/null and b/static/icons/06006907.png differ
diff --git a/static/icons/06006908.png b/static/icons/06006908.png
new file mode 100755
index 00000000..587bc5cb
Binary files /dev/null and b/static/icons/06006908.png differ
diff --git a/static/icons/06006909.png b/static/icons/06006909.png
new file mode 100755
index 00000000..b89e20d9
Binary files /dev/null and b/static/icons/06006909.png differ
diff --git a/static/icons/0600690A.png b/static/icons/0600690A.png
new file mode 100755
index 00000000..50a6ff2d
Binary files /dev/null and b/static/icons/0600690A.png differ
diff --git a/static/icons/0600690B.png b/static/icons/0600690B.png
new file mode 100755
index 00000000..5e301f62
Binary files /dev/null and b/static/icons/0600690B.png differ
diff --git a/static/icons/0600690C.png b/static/icons/0600690C.png
new file mode 100755
index 00000000..b8750e71
Binary files /dev/null and b/static/icons/0600690C.png differ
diff --git a/static/icons/0600690D.png b/static/icons/0600690D.png
new file mode 100755
index 00000000..6a5e1740
Binary files /dev/null and b/static/icons/0600690D.png differ
diff --git a/static/icons/0600690E.png b/static/icons/0600690E.png
new file mode 100755
index 00000000..94306eee
Binary files /dev/null and b/static/icons/0600690E.png differ
diff --git a/static/icons/0600690F.png b/static/icons/0600690F.png
new file mode 100755
index 00000000..35f4ca90
Binary files /dev/null and b/static/icons/0600690F.png differ
diff --git a/static/icons/06006910.png b/static/icons/06006910.png
new file mode 100755
index 00000000..567bdbd9
Binary files /dev/null and b/static/icons/06006910.png differ
diff --git a/static/icons/06006911.png b/static/icons/06006911.png
new file mode 100755
index 00000000..de8b87d1
Binary files /dev/null and b/static/icons/06006911.png differ
diff --git a/static/icons/06006912.png b/static/icons/06006912.png
new file mode 100755
index 00000000..2cfd191b
Binary files /dev/null and b/static/icons/06006912.png differ
diff --git a/static/icons/06006913.png b/static/icons/06006913.png
new file mode 100755
index 00000000..946f4b0c
Binary files /dev/null and b/static/icons/06006913.png differ
diff --git a/static/icons/06006914.png b/static/icons/06006914.png
new file mode 100755
index 00000000..b533da81
Binary files /dev/null and b/static/icons/06006914.png differ
diff --git a/static/icons/06006915.png b/static/icons/06006915.png
new file mode 100755
index 00000000..9da8009f
Binary files /dev/null and b/static/icons/06006915.png differ
diff --git a/static/icons/06006916.png b/static/icons/06006916.png
new file mode 100755
index 00000000..940f57db
Binary files /dev/null and b/static/icons/06006916.png differ
diff --git a/static/icons/06006917.png b/static/icons/06006917.png
new file mode 100755
index 00000000..8177ee81
Binary files /dev/null and b/static/icons/06006917.png differ
diff --git a/static/icons/06006918.png b/static/icons/06006918.png
new file mode 100755
index 00000000..c348f450
Binary files /dev/null and b/static/icons/06006918.png differ
diff --git a/static/icons/06006919.png b/static/icons/06006919.png
new file mode 100755
index 00000000..747347c4
Binary files /dev/null and b/static/icons/06006919.png differ
diff --git a/static/icons/0600691A.png b/static/icons/0600691A.png
new file mode 100755
index 00000000..d92e3e7b
Binary files /dev/null and b/static/icons/0600691A.png differ
diff --git a/static/icons/0600691B.png b/static/icons/0600691B.png
new file mode 100755
index 00000000..775b03dd
Binary files /dev/null and b/static/icons/0600691B.png differ
diff --git a/static/icons/0600691C.png b/static/icons/0600691C.png
new file mode 100755
index 00000000..651ce955
Binary files /dev/null and b/static/icons/0600691C.png differ
diff --git a/static/icons/0600691D.png b/static/icons/0600691D.png
new file mode 100755
index 00000000..952e532c
Binary files /dev/null and b/static/icons/0600691D.png differ
diff --git a/static/icons/0600691E.png b/static/icons/0600691E.png
new file mode 100755
index 00000000..3bddd590
Binary files /dev/null and b/static/icons/0600691E.png differ
diff --git a/static/icons/0600691F.png b/static/icons/0600691F.png
new file mode 100755
index 00000000..ac306b5e
Binary files /dev/null and b/static/icons/0600691F.png differ
diff --git a/static/icons/06006920.png b/static/icons/06006920.png
new file mode 100755
index 00000000..5276918b
Binary files /dev/null and b/static/icons/06006920.png differ
diff --git a/static/icons/06006921.png b/static/icons/06006921.png
new file mode 100755
index 00000000..bf22b607
Binary files /dev/null and b/static/icons/06006921.png differ
diff --git a/static/icons/06006922.png b/static/icons/06006922.png
new file mode 100755
index 00000000..cd26fdd7
Binary files /dev/null and b/static/icons/06006922.png differ
diff --git a/static/icons/06006923.png b/static/icons/06006923.png
new file mode 100755
index 00000000..2eefb770
Binary files /dev/null and b/static/icons/06006923.png differ
diff --git a/static/icons/06006924.png b/static/icons/06006924.png
new file mode 100755
index 00000000..13827863
Binary files /dev/null and b/static/icons/06006924.png differ
diff --git a/static/icons/06006925.png b/static/icons/06006925.png
new file mode 100755
index 00000000..d8f5e01d
Binary files /dev/null and b/static/icons/06006925.png differ
diff --git a/static/icons/06006926.png b/static/icons/06006926.png
new file mode 100755
index 00000000..49f0abf7
Binary files /dev/null and b/static/icons/06006926.png differ
diff --git a/static/icons/06006927.png b/static/icons/06006927.png
new file mode 100755
index 00000000..6d26965b
Binary files /dev/null and b/static/icons/06006927.png differ
diff --git a/static/icons/06006929.png b/static/icons/06006929.png
new file mode 100755
index 00000000..e3c3b6ec
Binary files /dev/null and b/static/icons/06006929.png differ
diff --git a/static/icons/0600692A.png b/static/icons/0600692A.png
new file mode 100755
index 00000000..40de6dca
Binary files /dev/null and b/static/icons/0600692A.png differ
diff --git a/static/icons/0600692B.png b/static/icons/0600692B.png
new file mode 100755
index 00000000..bd7efb97
Binary files /dev/null and b/static/icons/0600692B.png differ
diff --git a/static/icons/0600692C.png b/static/icons/0600692C.png
new file mode 100755
index 00000000..e1b795b8
Binary files /dev/null and b/static/icons/0600692C.png differ
diff --git a/static/icons/0600692D.png b/static/icons/0600692D.png
new file mode 100755
index 00000000..96368c6d
Binary files /dev/null and b/static/icons/0600692D.png differ
diff --git a/static/icons/0600692E.png b/static/icons/0600692E.png
new file mode 100755
index 00000000..b6bf9fbb
Binary files /dev/null and b/static/icons/0600692E.png differ
diff --git a/static/icons/0600692F.png b/static/icons/0600692F.png
new file mode 100755
index 00000000..c69de8c9
Binary files /dev/null and b/static/icons/0600692F.png differ
diff --git a/static/icons/06006930.png b/static/icons/06006930.png
new file mode 100755
index 00000000..86d5ebf7
Binary files /dev/null and b/static/icons/06006930.png differ
diff --git a/static/icons/06006931.png b/static/icons/06006931.png
new file mode 100755
index 00000000..8be33e27
Binary files /dev/null and b/static/icons/06006931.png differ
diff --git a/static/icons/06006932.png b/static/icons/06006932.png
new file mode 100755
index 00000000..1050821d
Binary files /dev/null and b/static/icons/06006932.png differ
diff --git a/static/icons/06006933.png b/static/icons/06006933.png
new file mode 100755
index 00000000..06529e5e
Binary files /dev/null and b/static/icons/06006933.png differ
diff --git a/static/icons/06006934.png b/static/icons/06006934.png
new file mode 100755
index 00000000..3b981cee
Binary files /dev/null and b/static/icons/06006934.png differ
diff --git a/static/icons/06006935.png b/static/icons/06006935.png
new file mode 100755
index 00000000..012db0c3
Binary files /dev/null and b/static/icons/06006935.png differ
diff --git a/static/icons/06006936.png b/static/icons/06006936.png
new file mode 100755
index 00000000..587c8a78
Binary files /dev/null and b/static/icons/06006936.png differ
diff --git a/static/icons/06006937.png b/static/icons/06006937.png
new file mode 100755
index 00000000..d4289d79
Binary files /dev/null and b/static/icons/06006937.png differ
diff --git a/static/icons/06006938.png b/static/icons/06006938.png
new file mode 100755
index 00000000..7cbd4a21
Binary files /dev/null and b/static/icons/06006938.png differ
diff --git a/static/icons/06006939.png b/static/icons/06006939.png
new file mode 100755
index 00000000..57e61f69
Binary files /dev/null and b/static/icons/06006939.png differ
diff --git a/static/icons/0600693A.png b/static/icons/0600693A.png
new file mode 100755
index 00000000..19e02eca
Binary files /dev/null and b/static/icons/0600693A.png differ
diff --git a/static/icons/0600693B.png b/static/icons/0600693B.png
new file mode 100755
index 00000000..5c277633
Binary files /dev/null and b/static/icons/0600693B.png differ
diff --git a/static/icons/0600693C.png b/static/icons/0600693C.png
new file mode 100755
index 00000000..95df2d0f
Binary files /dev/null and b/static/icons/0600693C.png differ
diff --git a/static/icons/0600693D.png b/static/icons/0600693D.png
new file mode 100755
index 00000000..fccecb9a
Binary files /dev/null and b/static/icons/0600693D.png differ
diff --git a/static/icons/0600693E.png b/static/icons/0600693E.png
new file mode 100755
index 00000000..312506e4
Binary files /dev/null and b/static/icons/0600693E.png differ
diff --git a/static/icons/0600693F.png b/static/icons/0600693F.png
new file mode 100755
index 00000000..a583a40a
Binary files /dev/null and b/static/icons/0600693F.png differ
diff --git a/static/icons/06006940.png b/static/icons/06006940.png
new file mode 100755
index 00000000..a299702b
Binary files /dev/null and b/static/icons/06006940.png differ
diff --git a/static/icons/06006941.png b/static/icons/06006941.png
new file mode 100755
index 00000000..57e61f69
Binary files /dev/null and b/static/icons/06006941.png differ
diff --git a/static/icons/06006942.png b/static/icons/06006942.png
new file mode 100755
index 00000000..35b65ba3
Binary files /dev/null and b/static/icons/06006942.png differ
diff --git a/static/icons/06006943.png b/static/icons/06006943.png
new file mode 100755
index 00000000..a299702b
Binary files /dev/null and b/static/icons/06006943.png differ
diff --git a/static/icons/06006944.png b/static/icons/06006944.png
new file mode 100755
index 00000000..6bd53ad0
Binary files /dev/null and b/static/icons/06006944.png differ
diff --git a/static/icons/06006945.png b/static/icons/06006945.png
new file mode 100755
index 00000000..fb347417
Binary files /dev/null and b/static/icons/06006945.png differ
diff --git a/static/icons/06006946.png b/static/icons/06006946.png
new file mode 100755
index 00000000..555ef4f3
Binary files /dev/null and b/static/icons/06006946.png differ
diff --git a/static/icons/06006947.png b/static/icons/06006947.png
new file mode 100755
index 00000000..78d0f2d2
Binary files /dev/null and b/static/icons/06006947.png differ
diff --git a/static/icons/06006948.png b/static/icons/06006948.png
new file mode 100755
index 00000000..59aeb13f
Binary files /dev/null and b/static/icons/06006948.png differ
diff --git a/static/icons/06006949.png b/static/icons/06006949.png
new file mode 100755
index 00000000..32e66c9b
Binary files /dev/null and b/static/icons/06006949.png differ
diff --git a/static/icons/0600694A.png b/static/icons/0600694A.png
new file mode 100755
index 00000000..84285077
Binary files /dev/null and b/static/icons/0600694A.png differ
diff --git a/static/icons/0600694B.png b/static/icons/0600694B.png
new file mode 100755
index 00000000..de9797cd
Binary files /dev/null and b/static/icons/0600694B.png differ
diff --git a/static/icons/0600694C.png b/static/icons/0600694C.png
new file mode 100755
index 00000000..9add5d11
Binary files /dev/null and b/static/icons/0600694C.png differ
diff --git a/static/icons/0600694D.png b/static/icons/0600694D.png
new file mode 100755
index 00000000..4282c694
Binary files /dev/null and b/static/icons/0600694D.png differ
diff --git a/static/icons/0600694E.png b/static/icons/0600694E.png
new file mode 100755
index 00000000..66fa5e37
Binary files /dev/null and b/static/icons/0600694E.png differ
diff --git a/static/icons/0600694F.png b/static/icons/0600694F.png
new file mode 100755
index 00000000..d7d8ba1a
Binary files /dev/null and b/static/icons/0600694F.png differ
diff --git a/static/icons/06006950.png b/static/icons/06006950.png
new file mode 100755
index 00000000..5f13ea62
Binary files /dev/null and b/static/icons/06006950.png differ
diff --git a/static/icons/06006951.png b/static/icons/06006951.png
new file mode 100755
index 00000000..6e47ee57
Binary files /dev/null and b/static/icons/06006951.png differ
diff --git a/static/icons/06006952.png b/static/icons/06006952.png
new file mode 100755
index 00000000..9dc78b3f
Binary files /dev/null and b/static/icons/06006952.png differ
diff --git a/static/icons/06006953.png b/static/icons/06006953.png
new file mode 100755
index 00000000..f39882d4
Binary files /dev/null and b/static/icons/06006953.png differ
diff --git a/static/icons/06006954.png b/static/icons/06006954.png
new file mode 100755
index 00000000..ae5f236a
Binary files /dev/null and b/static/icons/06006954.png differ
diff --git a/static/icons/06006955.png b/static/icons/06006955.png
new file mode 100755
index 00000000..2dd8760e
Binary files /dev/null and b/static/icons/06006955.png differ
diff --git a/static/icons/06006956.png b/static/icons/06006956.png
new file mode 100755
index 00000000..a6c63725
Binary files /dev/null and b/static/icons/06006956.png differ
diff --git a/static/icons/06006957.png b/static/icons/06006957.png
new file mode 100755
index 00000000..dafc7353
Binary files /dev/null and b/static/icons/06006957.png differ
diff --git a/static/icons/06006958.png b/static/icons/06006958.png
new file mode 100755
index 00000000..da98e3d4
Binary files /dev/null and b/static/icons/06006958.png differ
diff --git a/static/icons/06006959.png b/static/icons/06006959.png
new file mode 100755
index 00000000..f5c1d886
Binary files /dev/null and b/static/icons/06006959.png differ
diff --git a/static/icons/0600695A.png b/static/icons/0600695A.png
new file mode 100755
index 00000000..889f94df
Binary files /dev/null and b/static/icons/0600695A.png differ
diff --git a/static/icons/0600695B.png b/static/icons/0600695B.png
new file mode 100755
index 00000000..435b5859
Binary files /dev/null and b/static/icons/0600695B.png differ
diff --git a/static/icons/0600695C.png b/static/icons/0600695C.png
new file mode 100755
index 00000000..158ee831
Binary files /dev/null and b/static/icons/0600695C.png differ
diff --git a/static/icons/0600695D.png b/static/icons/0600695D.png
new file mode 100755
index 00000000..5ce991cf
Binary files /dev/null and b/static/icons/0600695D.png differ
diff --git a/static/icons/0600695E.png b/static/icons/0600695E.png
new file mode 100755
index 00000000..1888a8a2
Binary files /dev/null and b/static/icons/0600695E.png differ
diff --git a/static/icons/0600695F.png b/static/icons/0600695F.png
new file mode 100755
index 00000000..f408758e
Binary files /dev/null and b/static/icons/0600695F.png differ
diff --git a/static/icons/06006960.png b/static/icons/06006960.png
new file mode 100755
index 00000000..81dc0d99
Binary files /dev/null and b/static/icons/06006960.png differ
diff --git a/static/icons/06006961.png b/static/icons/06006961.png
new file mode 100755
index 00000000..2cd4a461
Binary files /dev/null and b/static/icons/06006961.png differ
diff --git a/static/icons/06006962.png b/static/icons/06006962.png
new file mode 100755
index 00000000..aa999b0d
Binary files /dev/null and b/static/icons/06006962.png differ
diff --git a/static/icons/06006963.png b/static/icons/06006963.png
new file mode 100755
index 00000000..51ba38ff
Binary files /dev/null and b/static/icons/06006963.png differ
diff --git a/static/icons/06006964.png b/static/icons/06006964.png
new file mode 100755
index 00000000..ebe5c620
Binary files /dev/null and b/static/icons/06006964.png differ
diff --git a/static/icons/06006965.png b/static/icons/06006965.png
new file mode 100755
index 00000000..13fc8e19
Binary files /dev/null and b/static/icons/06006965.png differ
diff --git a/static/icons/06006966.png b/static/icons/06006966.png
new file mode 100755
index 00000000..d204b534
Binary files /dev/null and b/static/icons/06006966.png differ
diff --git a/static/icons/06006967.png b/static/icons/06006967.png
new file mode 100755
index 00000000..ab936c92
Binary files /dev/null and b/static/icons/06006967.png differ
diff --git a/static/icons/06006968.png b/static/icons/06006968.png
new file mode 100755
index 00000000..2f44b9df
Binary files /dev/null and b/static/icons/06006968.png differ
diff --git a/static/icons/06006969.png b/static/icons/06006969.png
new file mode 100755
index 00000000..384d5dff
Binary files /dev/null and b/static/icons/06006969.png differ
diff --git a/static/icons/0600696A.png b/static/icons/0600696A.png
new file mode 100755
index 00000000..73ce43f1
Binary files /dev/null and b/static/icons/0600696A.png differ
diff --git a/static/icons/0600696B.png b/static/icons/0600696B.png
new file mode 100755
index 00000000..1862e316
Binary files /dev/null and b/static/icons/0600696B.png differ
diff --git a/static/icons/0600696C.png b/static/icons/0600696C.png
new file mode 100755
index 00000000..27ef6285
Binary files /dev/null and b/static/icons/0600696C.png differ
diff --git a/static/icons/0600696D.png b/static/icons/0600696D.png
new file mode 100755
index 00000000..2d106cf2
Binary files /dev/null and b/static/icons/0600696D.png differ
diff --git a/static/icons/0600696E.png b/static/icons/0600696E.png
new file mode 100755
index 00000000..0320ecad
Binary files /dev/null and b/static/icons/0600696E.png differ
diff --git a/static/icons/0600696F.png b/static/icons/0600696F.png
new file mode 100755
index 00000000..8ce33184
Binary files /dev/null and b/static/icons/0600696F.png differ
diff --git a/static/icons/06006970.png b/static/icons/06006970.png
new file mode 100755
index 00000000..3c844ec6
Binary files /dev/null and b/static/icons/06006970.png differ
diff --git a/static/icons/06006971.png b/static/icons/06006971.png
new file mode 100755
index 00000000..051a5bf5
Binary files /dev/null and b/static/icons/06006971.png differ
diff --git a/static/icons/06006972.png b/static/icons/06006972.png
new file mode 100755
index 00000000..e199378e
Binary files /dev/null and b/static/icons/06006972.png differ
diff --git a/static/icons/06006973.png b/static/icons/06006973.png
new file mode 100755
index 00000000..2cf1ce84
Binary files /dev/null and b/static/icons/06006973.png differ
diff --git a/static/icons/06006974.png b/static/icons/06006974.png
new file mode 100755
index 00000000..9605c68e
Binary files /dev/null and b/static/icons/06006974.png differ
diff --git a/static/icons/06006975.png b/static/icons/06006975.png
new file mode 100755
index 00000000..b1edac21
Binary files /dev/null and b/static/icons/06006975.png differ
diff --git a/static/icons/06006976.png b/static/icons/06006976.png
new file mode 100755
index 00000000..6a19d70f
Binary files /dev/null and b/static/icons/06006976.png differ
diff --git a/static/icons/06006977.png b/static/icons/06006977.png
new file mode 100755
index 00000000..b5841c36
Binary files /dev/null and b/static/icons/06006977.png differ
diff --git a/static/icons/06006978.png b/static/icons/06006978.png
new file mode 100755
index 00000000..6a50a027
Binary files /dev/null and b/static/icons/06006978.png differ
diff --git a/static/icons/06006979.png b/static/icons/06006979.png
new file mode 100755
index 00000000..f25ff9f1
Binary files /dev/null and b/static/icons/06006979.png differ
diff --git a/static/icons/0600697A.png b/static/icons/0600697A.png
new file mode 100755
index 00000000..56402139
Binary files /dev/null and b/static/icons/0600697A.png differ
diff --git a/static/icons/0600697B.png b/static/icons/0600697B.png
new file mode 100755
index 00000000..407ed81a
Binary files /dev/null and b/static/icons/0600697B.png differ
diff --git a/static/icons/0600697C.png b/static/icons/0600697C.png
new file mode 100755
index 00000000..e7de608b
Binary files /dev/null and b/static/icons/0600697C.png differ
diff --git a/static/icons/0600697D.png b/static/icons/0600697D.png
new file mode 100755
index 00000000..21c78fbf
Binary files /dev/null and b/static/icons/0600697D.png differ
diff --git a/static/icons/0600697E.png b/static/icons/0600697E.png
new file mode 100755
index 00000000..88dce1f9
Binary files /dev/null and b/static/icons/0600697E.png differ
diff --git a/static/icons/0600697F.png b/static/icons/0600697F.png
new file mode 100755
index 00000000..0bfb4633
Binary files /dev/null and b/static/icons/0600697F.png differ
diff --git a/static/icons/06006980.png b/static/icons/06006980.png
new file mode 100755
index 00000000..c5e7124f
Binary files /dev/null and b/static/icons/06006980.png differ
diff --git a/static/icons/06006981.png b/static/icons/06006981.png
new file mode 100755
index 00000000..a5f212c7
Binary files /dev/null and b/static/icons/06006981.png differ
diff --git a/static/icons/06006982.png b/static/icons/06006982.png
new file mode 100755
index 00000000..1bb9e256
Binary files /dev/null and b/static/icons/06006982.png differ
diff --git a/static/icons/06006983.png b/static/icons/06006983.png
new file mode 100755
index 00000000..4badc574
Binary files /dev/null and b/static/icons/06006983.png differ
diff --git a/static/icons/06006984.png b/static/icons/06006984.png
new file mode 100755
index 00000000..4940117f
Binary files /dev/null and b/static/icons/06006984.png differ
diff --git a/static/icons/06006985.png b/static/icons/06006985.png
new file mode 100755
index 00000000..6c5e907b
Binary files /dev/null and b/static/icons/06006985.png differ
diff --git a/static/icons/06006986.png b/static/icons/06006986.png
new file mode 100755
index 00000000..81b9154b
Binary files /dev/null and b/static/icons/06006986.png differ
diff --git a/static/icons/06006987.png b/static/icons/06006987.png
new file mode 100755
index 00000000..220cc737
Binary files /dev/null and b/static/icons/06006987.png differ
diff --git a/static/icons/06006988.png b/static/icons/06006988.png
new file mode 100755
index 00000000..bff652dd
Binary files /dev/null and b/static/icons/06006988.png differ
diff --git a/static/icons/06006989.png b/static/icons/06006989.png
new file mode 100755
index 00000000..110c134a
Binary files /dev/null and b/static/icons/06006989.png differ
diff --git a/static/icons/0600698A.png b/static/icons/0600698A.png
new file mode 100755
index 00000000..a461a647
Binary files /dev/null and b/static/icons/0600698A.png differ
diff --git a/static/icons/0600698B.png b/static/icons/0600698B.png
new file mode 100755
index 00000000..58c92b74
Binary files /dev/null and b/static/icons/0600698B.png differ
diff --git a/static/icons/0600698C.png b/static/icons/0600698C.png
new file mode 100755
index 00000000..014cd263
Binary files /dev/null and b/static/icons/0600698C.png differ
diff --git a/static/icons/0600698D.png b/static/icons/0600698D.png
new file mode 100755
index 00000000..dd483571
Binary files /dev/null and b/static/icons/0600698D.png differ
diff --git a/static/icons/0600698E.png b/static/icons/0600698E.png
new file mode 100755
index 00000000..4732b216
Binary files /dev/null and b/static/icons/0600698E.png differ
diff --git a/static/icons/0600698F.png b/static/icons/0600698F.png
new file mode 100755
index 00000000..1b040cd2
Binary files /dev/null and b/static/icons/0600698F.png differ
diff --git a/static/icons/06006990.png b/static/icons/06006990.png
new file mode 100755
index 00000000..a767e107
Binary files /dev/null and b/static/icons/06006990.png differ
diff --git a/static/icons/06006991.png b/static/icons/06006991.png
new file mode 100755
index 00000000..b8d57e1d
Binary files /dev/null and b/static/icons/06006991.png differ
diff --git a/static/icons/06006992.png b/static/icons/06006992.png
new file mode 100755
index 00000000..d15a5658
Binary files /dev/null and b/static/icons/06006992.png differ
diff --git a/static/icons/06006993.png b/static/icons/06006993.png
new file mode 100755
index 00000000..779bdf35
Binary files /dev/null and b/static/icons/06006993.png differ
diff --git a/static/icons/06006994.png b/static/icons/06006994.png
new file mode 100755
index 00000000..46ceabf7
Binary files /dev/null and b/static/icons/06006994.png differ
diff --git a/static/icons/06006995.png b/static/icons/06006995.png
new file mode 100755
index 00000000..b6d1bac1
Binary files /dev/null and b/static/icons/06006995.png differ
diff --git a/static/icons/06006996.png b/static/icons/06006996.png
new file mode 100755
index 00000000..861a71f9
Binary files /dev/null and b/static/icons/06006996.png differ
diff --git a/static/icons/06006997.png b/static/icons/06006997.png
new file mode 100755
index 00000000..f91fbeac
Binary files /dev/null and b/static/icons/06006997.png differ
diff --git a/static/icons/06006998.png b/static/icons/06006998.png
new file mode 100755
index 00000000..e79f1d64
Binary files /dev/null and b/static/icons/06006998.png differ
diff --git a/static/icons/06006999.png b/static/icons/06006999.png
new file mode 100755
index 00000000..d1367f80
Binary files /dev/null and b/static/icons/06006999.png differ
diff --git a/static/icons/0600699A.png b/static/icons/0600699A.png
new file mode 100755
index 00000000..8fac3a85
Binary files /dev/null and b/static/icons/0600699A.png differ
diff --git a/static/icons/0600699B.png b/static/icons/0600699B.png
new file mode 100755
index 00000000..3b0aed9f
Binary files /dev/null and b/static/icons/0600699B.png differ
diff --git a/static/icons/0600699C.png b/static/icons/0600699C.png
new file mode 100755
index 00000000..76f90fa9
Binary files /dev/null and b/static/icons/0600699C.png differ
diff --git a/static/icons/0600699E.png b/static/icons/0600699E.png
new file mode 100755
index 00000000..badb1067
Binary files /dev/null and b/static/icons/0600699E.png differ
diff --git a/static/icons/0600699F.png b/static/icons/0600699F.png
new file mode 100755
index 00000000..7b80288d
Binary files /dev/null and b/static/icons/0600699F.png differ
diff --git a/static/icons/060069A0.png b/static/icons/060069A0.png
new file mode 100755
index 00000000..4a6db8a1
Binary files /dev/null and b/static/icons/060069A0.png differ
diff --git a/static/icons/060069A1.png b/static/icons/060069A1.png
new file mode 100755
index 00000000..152dc5fb
Binary files /dev/null and b/static/icons/060069A1.png differ
diff --git a/static/icons/060069A2.png b/static/icons/060069A2.png
new file mode 100755
index 00000000..3f3d7498
Binary files /dev/null and b/static/icons/060069A2.png differ
diff --git a/static/icons/060069A3.png b/static/icons/060069A3.png
new file mode 100755
index 00000000..b3ae9f81
Binary files /dev/null and b/static/icons/060069A3.png differ
diff --git a/static/icons/060069A4.png b/static/icons/060069A4.png
new file mode 100755
index 00000000..e0efbf4e
Binary files /dev/null and b/static/icons/060069A4.png differ
diff --git a/static/icons/060069A5.png b/static/icons/060069A5.png
new file mode 100755
index 00000000..a36f6ea9
Binary files /dev/null and b/static/icons/060069A5.png differ
diff --git a/static/icons/060069A6.png b/static/icons/060069A6.png
new file mode 100755
index 00000000..f882559d
Binary files /dev/null and b/static/icons/060069A6.png differ
diff --git a/static/icons/060069A7.png b/static/icons/060069A7.png
new file mode 100755
index 00000000..de26e4ca
Binary files /dev/null and b/static/icons/060069A7.png differ
diff --git a/static/icons/060069A8.png b/static/icons/060069A8.png
new file mode 100755
index 00000000..06cdbe9c
Binary files /dev/null and b/static/icons/060069A8.png differ
diff --git a/static/icons/060069AB.png b/static/icons/060069AB.png
new file mode 100755
index 00000000..80727919
Binary files /dev/null and b/static/icons/060069AB.png differ
diff --git a/static/icons/060069AC.png b/static/icons/060069AC.png
new file mode 100755
index 00000000..082d99bd
Binary files /dev/null and b/static/icons/060069AC.png differ
diff --git a/static/icons/060069AD.png b/static/icons/060069AD.png
new file mode 100755
index 00000000..662e0895
Binary files /dev/null and b/static/icons/060069AD.png differ
diff --git a/static/icons/060069AE.png b/static/icons/060069AE.png
new file mode 100755
index 00000000..a19df817
Binary files /dev/null and b/static/icons/060069AE.png differ
diff --git a/static/icons/060069AF.png b/static/icons/060069AF.png
new file mode 100755
index 00000000..4d15a711
Binary files /dev/null and b/static/icons/060069AF.png differ
diff --git a/static/icons/060069B1.png b/static/icons/060069B1.png
new file mode 100755
index 00000000..e30bd1b3
Binary files /dev/null and b/static/icons/060069B1.png differ
diff --git a/static/icons/060069B2.png b/static/icons/060069B2.png
new file mode 100755
index 00000000..c513368d
Binary files /dev/null and b/static/icons/060069B2.png differ
diff --git a/static/icons/060069B3.png b/static/icons/060069B3.png
new file mode 100755
index 00000000..5a95163b
Binary files /dev/null and b/static/icons/060069B3.png differ
diff --git a/static/icons/060069B4.png b/static/icons/060069B4.png
new file mode 100755
index 00000000..87bfbf8d
Binary files /dev/null and b/static/icons/060069B4.png differ
diff --git a/static/icons/060069B5.png b/static/icons/060069B5.png
new file mode 100755
index 00000000..0e415200
Binary files /dev/null and b/static/icons/060069B5.png differ
diff --git a/static/icons/060069B6.png b/static/icons/060069B6.png
new file mode 100755
index 00000000..563ae040
Binary files /dev/null and b/static/icons/060069B6.png differ
diff --git a/static/icons/060069B7.png b/static/icons/060069B7.png
new file mode 100755
index 00000000..4832f353
Binary files /dev/null and b/static/icons/060069B7.png differ
diff --git a/static/icons/060069B8.png b/static/icons/060069B8.png
new file mode 100755
index 00000000..ec3e7573
Binary files /dev/null and b/static/icons/060069B8.png differ
diff --git a/static/icons/060069B9.png b/static/icons/060069B9.png
new file mode 100755
index 00000000..75581cc4
Binary files /dev/null and b/static/icons/060069B9.png differ
diff --git a/static/icons/060069BA.png b/static/icons/060069BA.png
new file mode 100755
index 00000000..03d32a7b
Binary files /dev/null and b/static/icons/060069BA.png differ
diff --git a/static/icons/060069BB.png b/static/icons/060069BB.png
new file mode 100755
index 00000000..48ec4819
Binary files /dev/null and b/static/icons/060069BB.png differ
diff --git a/static/icons/060069BC.png b/static/icons/060069BC.png
new file mode 100755
index 00000000..28e29cbc
Binary files /dev/null and b/static/icons/060069BC.png differ
diff --git a/static/icons/060069BD.png b/static/icons/060069BD.png
new file mode 100755
index 00000000..85f322ec
Binary files /dev/null and b/static/icons/060069BD.png differ
diff --git a/static/icons/060069BE.png b/static/icons/060069BE.png
new file mode 100755
index 00000000..d742c31d
Binary files /dev/null and b/static/icons/060069BE.png differ
diff --git a/static/icons/060069BF.png b/static/icons/060069BF.png
new file mode 100755
index 00000000..bb8b1ffd
Binary files /dev/null and b/static/icons/060069BF.png differ
diff --git a/static/icons/060069C0.png b/static/icons/060069C0.png
new file mode 100755
index 00000000..286abde3
Binary files /dev/null and b/static/icons/060069C0.png differ
diff --git a/static/icons/060069C1.png b/static/icons/060069C1.png
new file mode 100755
index 00000000..55180b97
Binary files /dev/null and b/static/icons/060069C1.png differ
diff --git a/static/icons/060069C2.png b/static/icons/060069C2.png
new file mode 100755
index 00000000..d5e85247
Binary files /dev/null and b/static/icons/060069C2.png differ
diff --git a/static/icons/060069C3.png b/static/icons/060069C3.png
new file mode 100755
index 00000000..3a240576
Binary files /dev/null and b/static/icons/060069C3.png differ
diff --git a/static/icons/060069C4.png b/static/icons/060069C4.png
new file mode 100755
index 00000000..5dd7a31b
Binary files /dev/null and b/static/icons/060069C4.png differ
diff --git a/static/icons/060069C5.png b/static/icons/060069C5.png
new file mode 100755
index 00000000..ba842893
Binary files /dev/null and b/static/icons/060069C5.png differ
diff --git a/static/icons/060069C6.png b/static/icons/060069C6.png
new file mode 100755
index 00000000..262b5b76
Binary files /dev/null and b/static/icons/060069C6.png differ
diff --git a/static/icons/060069CA.png b/static/icons/060069CA.png
new file mode 100755
index 00000000..aa48d89a
Binary files /dev/null and b/static/icons/060069CA.png differ
diff --git a/static/icons/060069CB.png b/static/icons/060069CB.png
new file mode 100755
index 00000000..af2ae099
Binary files /dev/null and b/static/icons/060069CB.png differ
diff --git a/static/icons/060069CC.png b/static/icons/060069CC.png
new file mode 100755
index 00000000..445207d5
Binary files /dev/null and b/static/icons/060069CC.png differ
diff --git a/static/icons/060069CD.png b/static/icons/060069CD.png
new file mode 100755
index 00000000..76b30690
Binary files /dev/null and b/static/icons/060069CD.png differ
diff --git a/static/icons/060069CE.png b/static/icons/060069CE.png
new file mode 100755
index 00000000..db145824
Binary files /dev/null and b/static/icons/060069CE.png differ
diff --git a/static/icons/060069CF.png b/static/icons/060069CF.png
new file mode 100755
index 00000000..737aa1e2
Binary files /dev/null and b/static/icons/060069CF.png differ
diff --git a/static/icons/060069D1.png b/static/icons/060069D1.png
new file mode 100755
index 00000000..df7491e8
Binary files /dev/null and b/static/icons/060069D1.png differ
diff --git a/static/icons/060069D7.png b/static/icons/060069D7.png
new file mode 100755
index 00000000..e37c2e2d
Binary files /dev/null and b/static/icons/060069D7.png differ
diff --git a/static/icons/060069D8.png b/static/icons/060069D8.png
new file mode 100755
index 00000000..b35b9854
Binary files /dev/null and b/static/icons/060069D8.png differ
diff --git a/static/icons/060069D9.png b/static/icons/060069D9.png
new file mode 100755
index 00000000..3b078856
Binary files /dev/null and b/static/icons/060069D9.png differ
diff --git a/static/icons/060069DA.png b/static/icons/060069DA.png
new file mode 100755
index 00000000..f93aba12
Binary files /dev/null and b/static/icons/060069DA.png differ
diff --git a/static/icons/060069DB.png b/static/icons/060069DB.png
new file mode 100755
index 00000000..6c234598
Binary files /dev/null and b/static/icons/060069DB.png differ
diff --git a/static/icons/060069DC.png b/static/icons/060069DC.png
new file mode 100755
index 00000000..74717194
Binary files /dev/null and b/static/icons/060069DC.png differ
diff --git a/static/icons/060069DD.png b/static/icons/060069DD.png
new file mode 100755
index 00000000..308bd87b
Binary files /dev/null and b/static/icons/060069DD.png differ
diff --git a/static/icons/060069DE.png b/static/icons/060069DE.png
new file mode 100755
index 00000000..5d7e9324
Binary files /dev/null and b/static/icons/060069DE.png differ
diff --git a/static/icons/060069DF.png b/static/icons/060069DF.png
new file mode 100755
index 00000000..7a9ae999
Binary files /dev/null and b/static/icons/060069DF.png differ
diff --git a/static/icons/060069E0.png b/static/icons/060069E0.png
new file mode 100755
index 00000000..bf559607
Binary files /dev/null and b/static/icons/060069E0.png differ
diff --git a/static/icons/060069E1.png b/static/icons/060069E1.png
new file mode 100755
index 00000000..846d382b
Binary files /dev/null and b/static/icons/060069E1.png differ
diff --git a/static/icons/060069E2.png b/static/icons/060069E2.png
new file mode 100755
index 00000000..1ba2072d
Binary files /dev/null and b/static/icons/060069E2.png differ
diff --git a/static/icons/060069E3.png b/static/icons/060069E3.png
new file mode 100755
index 00000000..25fa0907
Binary files /dev/null and b/static/icons/060069E3.png differ
diff --git a/static/icons/060069E4.png b/static/icons/060069E4.png
new file mode 100755
index 00000000..57abf74d
Binary files /dev/null and b/static/icons/060069E4.png differ
diff --git a/static/icons/060069E5.png b/static/icons/060069E5.png
new file mode 100755
index 00000000..e993739f
Binary files /dev/null and b/static/icons/060069E5.png differ
diff --git a/static/icons/060069E6.png b/static/icons/060069E6.png
new file mode 100755
index 00000000..6b7ef06f
Binary files /dev/null and b/static/icons/060069E6.png differ
diff --git a/static/icons/060069E7.png b/static/icons/060069E7.png
new file mode 100755
index 00000000..1881e3d7
Binary files /dev/null and b/static/icons/060069E7.png differ
diff --git a/static/icons/060069E8.png b/static/icons/060069E8.png
new file mode 100755
index 00000000..60ba3f4e
Binary files /dev/null and b/static/icons/060069E8.png differ
diff --git a/static/icons/060069E9.png b/static/icons/060069E9.png
new file mode 100755
index 00000000..bc770305
Binary files /dev/null and b/static/icons/060069E9.png differ
diff --git a/static/icons/060069EA.png b/static/icons/060069EA.png
new file mode 100755
index 00000000..d90b3fbc
Binary files /dev/null and b/static/icons/060069EA.png differ
diff --git a/static/icons/060069EB.png b/static/icons/060069EB.png
new file mode 100755
index 00000000..1de77fe1
Binary files /dev/null and b/static/icons/060069EB.png differ
diff --git a/static/icons/060069EC.png b/static/icons/060069EC.png
new file mode 100755
index 00000000..2ef0e3ab
Binary files /dev/null and b/static/icons/060069EC.png differ
diff --git a/static/icons/060069ED.png b/static/icons/060069ED.png
new file mode 100755
index 00000000..69a68d40
Binary files /dev/null and b/static/icons/060069ED.png differ
diff --git a/static/icons/060069EE.png b/static/icons/060069EE.png
new file mode 100755
index 00000000..ccc7195b
Binary files /dev/null and b/static/icons/060069EE.png differ
diff --git a/static/icons/060069EF.png b/static/icons/060069EF.png
new file mode 100755
index 00000000..4022cc69
Binary files /dev/null and b/static/icons/060069EF.png differ
diff --git a/static/icons/060069F0.png b/static/icons/060069F0.png
new file mode 100755
index 00000000..101dbdd9
Binary files /dev/null and b/static/icons/060069F0.png differ
diff --git a/static/icons/060069F1.png b/static/icons/060069F1.png
new file mode 100755
index 00000000..4b0bb995
Binary files /dev/null and b/static/icons/060069F1.png differ
diff --git a/static/icons/060069F2.png b/static/icons/060069F2.png
new file mode 100755
index 00000000..68ab9f1e
Binary files /dev/null and b/static/icons/060069F2.png differ
diff --git a/static/icons/060069F3.png b/static/icons/060069F3.png
new file mode 100755
index 00000000..351642b0
Binary files /dev/null and b/static/icons/060069F3.png differ
diff --git a/static/icons/060069F4.png b/static/icons/060069F4.png
new file mode 100755
index 00000000..06873051
Binary files /dev/null and b/static/icons/060069F4.png differ
diff --git a/static/icons/060069F5.png b/static/icons/060069F5.png
new file mode 100755
index 00000000..2b7ff3eb
Binary files /dev/null and b/static/icons/060069F5.png differ
diff --git a/static/icons/060069F6.png b/static/icons/060069F6.png
new file mode 100755
index 00000000..afe30dd8
Binary files /dev/null and b/static/icons/060069F6.png differ
diff --git a/static/icons/060069F7.png b/static/icons/060069F7.png
new file mode 100755
index 00000000..f92dba65
Binary files /dev/null and b/static/icons/060069F7.png differ
diff --git a/static/icons/060069F8.png b/static/icons/060069F8.png
new file mode 100755
index 00000000..0f41cbd5
Binary files /dev/null and b/static/icons/060069F8.png differ
diff --git a/static/icons/060069F9.png b/static/icons/060069F9.png
new file mode 100755
index 00000000..027206aa
Binary files /dev/null and b/static/icons/060069F9.png differ
diff --git a/static/icons/060069FA.png b/static/icons/060069FA.png
new file mode 100755
index 00000000..d2dce0b7
Binary files /dev/null and b/static/icons/060069FA.png differ
diff --git a/static/icons/060069FB.png b/static/icons/060069FB.png
new file mode 100755
index 00000000..9b15ebc7
Binary files /dev/null and b/static/icons/060069FB.png differ
diff --git a/static/icons/060069FC.png b/static/icons/060069FC.png
new file mode 100755
index 00000000..f5dfe51e
Binary files /dev/null and b/static/icons/060069FC.png differ
diff --git a/static/icons/060069FD.png b/static/icons/060069FD.png
new file mode 100755
index 00000000..7c799709
Binary files /dev/null and b/static/icons/060069FD.png differ
diff --git a/static/icons/060069FE.png b/static/icons/060069FE.png
new file mode 100755
index 00000000..f0719c35
Binary files /dev/null and b/static/icons/060069FE.png differ
diff --git a/static/icons/060069FF.png b/static/icons/060069FF.png
new file mode 100755
index 00000000..ca27b840
Binary files /dev/null and b/static/icons/060069FF.png differ
diff --git a/static/icons/06006A00.png b/static/icons/06006A00.png
new file mode 100755
index 00000000..76190dcf
Binary files /dev/null and b/static/icons/06006A00.png differ
diff --git a/static/icons/06006A01.png b/static/icons/06006A01.png
new file mode 100755
index 00000000..e6665df0
Binary files /dev/null and b/static/icons/06006A01.png differ
diff --git a/static/icons/06006A03.png b/static/icons/06006A03.png
new file mode 100755
index 00000000..656f6239
Binary files /dev/null and b/static/icons/06006A03.png differ
diff --git a/static/icons/06006A04.png b/static/icons/06006A04.png
new file mode 100755
index 00000000..9dc85e9a
Binary files /dev/null and b/static/icons/06006A04.png differ
diff --git a/static/icons/06006A05.png b/static/icons/06006A05.png
new file mode 100755
index 00000000..15c4ca69
Binary files /dev/null and b/static/icons/06006A05.png differ
diff --git a/static/icons/06006A06.png b/static/icons/06006A06.png
new file mode 100755
index 00000000..c90ee681
Binary files /dev/null and b/static/icons/06006A06.png differ
diff --git a/static/icons/06006A07.png b/static/icons/06006A07.png
new file mode 100755
index 00000000..ee8340dc
Binary files /dev/null and b/static/icons/06006A07.png differ
diff --git a/static/icons/06006A08.png b/static/icons/06006A08.png
new file mode 100755
index 00000000..31799044
Binary files /dev/null and b/static/icons/06006A08.png differ
diff --git a/static/icons/06006A09.png b/static/icons/06006A09.png
new file mode 100755
index 00000000..c773f2ef
Binary files /dev/null and b/static/icons/06006A09.png differ
diff --git a/static/icons/06006A0A.png b/static/icons/06006A0A.png
new file mode 100755
index 00000000..6028527a
Binary files /dev/null and b/static/icons/06006A0A.png differ
diff --git a/static/icons/06006A0B.png b/static/icons/06006A0B.png
new file mode 100755
index 00000000..a2cf8519
Binary files /dev/null and b/static/icons/06006A0B.png differ
diff --git a/static/icons/06006A0C.png b/static/icons/06006A0C.png
new file mode 100755
index 00000000..1c21d898
Binary files /dev/null and b/static/icons/06006A0C.png differ
diff --git a/static/icons/06006A0D.png b/static/icons/06006A0D.png
new file mode 100755
index 00000000..25aec506
Binary files /dev/null and b/static/icons/06006A0D.png differ
diff --git a/static/icons/06006A0E.png b/static/icons/06006A0E.png
new file mode 100755
index 00000000..a7e66acb
Binary files /dev/null and b/static/icons/06006A0E.png differ
diff --git a/static/icons/06006A0F.png b/static/icons/06006A0F.png
new file mode 100755
index 00000000..e71f2a15
Binary files /dev/null and b/static/icons/06006A0F.png differ
diff --git a/static/icons/06006A10.png b/static/icons/06006A10.png
new file mode 100755
index 00000000..f844b1b8
Binary files /dev/null and b/static/icons/06006A10.png differ
diff --git a/static/icons/06006A11.png b/static/icons/06006A11.png
new file mode 100755
index 00000000..f099610a
Binary files /dev/null and b/static/icons/06006A11.png differ
diff --git a/static/icons/06006A12.png b/static/icons/06006A12.png
new file mode 100755
index 00000000..42a7df80
Binary files /dev/null and b/static/icons/06006A12.png differ
diff --git a/static/icons/06006A13.png b/static/icons/06006A13.png
new file mode 100755
index 00000000..a1e8b037
Binary files /dev/null and b/static/icons/06006A13.png differ
diff --git a/static/icons/06006A1E.png b/static/icons/06006A1E.png
new file mode 100755
index 00000000..eb539f3f
Binary files /dev/null and b/static/icons/06006A1E.png differ
diff --git a/static/icons/06006A1F.png b/static/icons/06006A1F.png
new file mode 100755
index 00000000..907c16d9
Binary files /dev/null and b/static/icons/06006A1F.png differ
diff --git a/static/icons/06006A20.png b/static/icons/06006A20.png
new file mode 100755
index 00000000..66c95cf4
Binary files /dev/null and b/static/icons/06006A20.png differ
diff --git a/static/icons/06006A21.png b/static/icons/06006A21.png
new file mode 100755
index 00000000..229e7c88
Binary files /dev/null and b/static/icons/06006A21.png differ
diff --git a/static/icons/06006A22.png b/static/icons/06006A22.png
new file mode 100755
index 00000000..bf436fed
Binary files /dev/null and b/static/icons/06006A22.png differ
diff --git a/static/icons/06006A23.png b/static/icons/06006A23.png
new file mode 100755
index 00000000..3a9d4a54
Binary files /dev/null and b/static/icons/06006A23.png differ
diff --git a/static/icons/06006A24.png b/static/icons/06006A24.png
new file mode 100755
index 00000000..97e7f28d
Binary files /dev/null and b/static/icons/06006A24.png differ
diff --git a/static/icons/06006A25.png b/static/icons/06006A25.png
new file mode 100755
index 00000000..45554517
Binary files /dev/null and b/static/icons/06006A25.png differ
diff --git a/static/icons/06006A26.png b/static/icons/06006A26.png
new file mode 100755
index 00000000..78ee6510
Binary files /dev/null and b/static/icons/06006A26.png differ
diff --git a/static/icons/06006A27.png b/static/icons/06006A27.png
new file mode 100755
index 00000000..803fc0b5
Binary files /dev/null and b/static/icons/06006A27.png differ
diff --git a/static/icons/06006A28.png b/static/icons/06006A28.png
new file mode 100755
index 00000000..def2cf7f
Binary files /dev/null and b/static/icons/06006A28.png differ
diff --git a/static/icons/06006A29.png b/static/icons/06006A29.png
new file mode 100755
index 00000000..5fc0313d
Binary files /dev/null and b/static/icons/06006A29.png differ
diff --git a/static/icons/06006A2A.png b/static/icons/06006A2A.png
new file mode 100755
index 00000000..83521492
Binary files /dev/null and b/static/icons/06006A2A.png differ
diff --git a/static/icons/06006A2B.png b/static/icons/06006A2B.png
new file mode 100755
index 00000000..2957ddaa
Binary files /dev/null and b/static/icons/06006A2B.png differ
diff --git a/static/icons/06006A2C.png b/static/icons/06006A2C.png
new file mode 100755
index 00000000..80d39423
Binary files /dev/null and b/static/icons/06006A2C.png differ
diff --git a/static/icons/06006A2D.png b/static/icons/06006A2D.png
new file mode 100755
index 00000000..a9c224d6
Binary files /dev/null and b/static/icons/06006A2D.png differ
diff --git a/static/icons/06006A2E.png b/static/icons/06006A2E.png
new file mode 100755
index 00000000..cca24e17
Binary files /dev/null and b/static/icons/06006A2E.png differ
diff --git a/static/icons/06006A2F.png b/static/icons/06006A2F.png
new file mode 100755
index 00000000..b194c56a
Binary files /dev/null and b/static/icons/06006A2F.png differ
diff --git a/static/icons/06006A30.png b/static/icons/06006A30.png
new file mode 100755
index 00000000..6f83a3b8
Binary files /dev/null and b/static/icons/06006A30.png differ
diff --git a/static/icons/06006A31.png b/static/icons/06006A31.png
new file mode 100755
index 00000000..83b0901a
Binary files /dev/null and b/static/icons/06006A31.png differ
diff --git a/static/icons/06006A32.png b/static/icons/06006A32.png
new file mode 100755
index 00000000..6e3bb672
Binary files /dev/null and b/static/icons/06006A32.png differ
diff --git a/static/icons/06006A33.png b/static/icons/06006A33.png
new file mode 100755
index 00000000..9b19df2b
Binary files /dev/null and b/static/icons/06006A33.png differ
diff --git a/static/icons/06006A34.png b/static/icons/06006A34.png
new file mode 100755
index 00000000..eee05e89
Binary files /dev/null and b/static/icons/06006A34.png differ
diff --git a/static/icons/06006A35.png b/static/icons/06006A35.png
new file mode 100755
index 00000000..d24c9b07
Binary files /dev/null and b/static/icons/06006A35.png differ
diff --git a/static/icons/06006A36.png b/static/icons/06006A36.png
new file mode 100755
index 00000000..24657a9e
Binary files /dev/null and b/static/icons/06006A36.png differ
diff --git a/static/icons/06006A37.png b/static/icons/06006A37.png
new file mode 100755
index 00000000..4669c3d2
Binary files /dev/null and b/static/icons/06006A37.png differ
diff --git a/static/icons/06006A38.png b/static/icons/06006A38.png
new file mode 100755
index 00000000..94bcd04a
Binary files /dev/null and b/static/icons/06006A38.png differ
diff --git a/static/icons/06006A39.png b/static/icons/06006A39.png
new file mode 100755
index 00000000..a72f9f6c
Binary files /dev/null and b/static/icons/06006A39.png differ
diff --git a/static/icons/06006A3A.png b/static/icons/06006A3A.png
new file mode 100755
index 00000000..18a8bee3
Binary files /dev/null and b/static/icons/06006A3A.png differ
diff --git a/static/icons/06006A3B.png b/static/icons/06006A3B.png
new file mode 100755
index 00000000..738fe183
Binary files /dev/null and b/static/icons/06006A3B.png differ
diff --git a/static/icons/06006A3C.png b/static/icons/06006A3C.png
new file mode 100755
index 00000000..ada09f52
Binary files /dev/null and b/static/icons/06006A3C.png differ
diff --git a/static/icons/06006A3D.png b/static/icons/06006A3D.png
new file mode 100755
index 00000000..57082e0d
Binary files /dev/null and b/static/icons/06006A3D.png differ
diff --git a/static/icons/06006A3E.png b/static/icons/06006A3E.png
new file mode 100755
index 00000000..3a99fe20
Binary files /dev/null and b/static/icons/06006A3E.png differ
diff --git a/static/icons/06006A3F.png b/static/icons/06006A3F.png
new file mode 100755
index 00000000..8be448b1
Binary files /dev/null and b/static/icons/06006A3F.png differ
diff --git a/static/icons/06006A40.png b/static/icons/06006A40.png
new file mode 100755
index 00000000..745c79b7
Binary files /dev/null and b/static/icons/06006A40.png differ
diff --git a/static/icons/06006A41.png b/static/icons/06006A41.png
new file mode 100755
index 00000000..5e08032a
Binary files /dev/null and b/static/icons/06006A41.png differ
diff --git a/static/icons/06006A42.png b/static/icons/06006A42.png
new file mode 100755
index 00000000..4dce6986
Binary files /dev/null and b/static/icons/06006A42.png differ
diff --git a/static/icons/06006A43.png b/static/icons/06006A43.png
new file mode 100755
index 00000000..a477dcdf
Binary files /dev/null and b/static/icons/06006A43.png differ
diff --git a/static/icons/06006A44.png b/static/icons/06006A44.png
new file mode 100755
index 00000000..8f95fb4e
Binary files /dev/null and b/static/icons/06006A44.png differ
diff --git a/static/icons/06006A45.png b/static/icons/06006A45.png
new file mode 100755
index 00000000..745fd848
Binary files /dev/null and b/static/icons/06006A45.png differ
diff --git a/static/icons/06006A46.png b/static/icons/06006A46.png
new file mode 100755
index 00000000..fbd1f291
Binary files /dev/null and b/static/icons/06006A46.png differ
diff --git a/static/icons/06006A47.png b/static/icons/06006A47.png
new file mode 100755
index 00000000..b8b1e6ba
Binary files /dev/null and b/static/icons/06006A47.png differ
diff --git a/static/icons/06006A48.png b/static/icons/06006A48.png
new file mode 100755
index 00000000..9d1212a9
Binary files /dev/null and b/static/icons/06006A48.png differ
diff --git a/static/icons/06006A49.png b/static/icons/06006A49.png
new file mode 100755
index 00000000..ec6ac2d0
Binary files /dev/null and b/static/icons/06006A49.png differ
diff --git a/static/icons/06006A4A.png b/static/icons/06006A4A.png
new file mode 100755
index 00000000..a00ff8c2
Binary files /dev/null and b/static/icons/06006A4A.png differ
diff --git a/static/icons/06006A4B.png b/static/icons/06006A4B.png
new file mode 100755
index 00000000..75b66560
Binary files /dev/null and b/static/icons/06006A4B.png differ
diff --git a/static/icons/06006A4C.png b/static/icons/06006A4C.png
new file mode 100755
index 00000000..325bfc81
Binary files /dev/null and b/static/icons/06006A4C.png differ
diff --git a/static/icons/06006A4D.png b/static/icons/06006A4D.png
new file mode 100755
index 00000000..16988cee
Binary files /dev/null and b/static/icons/06006A4D.png differ
diff --git a/static/icons/06006A4E.png b/static/icons/06006A4E.png
new file mode 100755
index 00000000..405fd667
Binary files /dev/null and b/static/icons/06006A4E.png differ
diff --git a/static/icons/06006A4F.png b/static/icons/06006A4F.png
new file mode 100755
index 00000000..af2b2364
Binary files /dev/null and b/static/icons/06006A4F.png differ
diff --git a/static/icons/06006A50.png b/static/icons/06006A50.png
new file mode 100755
index 00000000..a1b5c222
Binary files /dev/null and b/static/icons/06006A50.png differ
diff --git a/static/icons/06006A51.png b/static/icons/06006A51.png
new file mode 100755
index 00000000..2f9d1843
Binary files /dev/null and b/static/icons/06006A51.png differ
diff --git a/static/icons/06006A52.png b/static/icons/06006A52.png
new file mode 100755
index 00000000..aa1aa9b4
Binary files /dev/null and b/static/icons/06006A52.png differ
diff --git a/static/icons/06006A53.png b/static/icons/06006A53.png
new file mode 100755
index 00000000..ec8c369c
Binary files /dev/null and b/static/icons/06006A53.png differ
diff --git a/static/icons/06006A54.png b/static/icons/06006A54.png
new file mode 100755
index 00000000..b9eb8705
Binary files /dev/null and b/static/icons/06006A54.png differ
diff --git a/static/icons/06006A55.png b/static/icons/06006A55.png
new file mode 100755
index 00000000..2965e847
Binary files /dev/null and b/static/icons/06006A55.png differ
diff --git a/static/icons/06006A56.png b/static/icons/06006A56.png
new file mode 100755
index 00000000..671cbd29
Binary files /dev/null and b/static/icons/06006A56.png differ
diff --git a/static/icons/06006A57.png b/static/icons/06006A57.png
new file mode 100755
index 00000000..1d9eea99
Binary files /dev/null and b/static/icons/06006A57.png differ
diff --git a/static/icons/06006A58.png b/static/icons/06006A58.png
new file mode 100755
index 00000000..1192aff1
Binary files /dev/null and b/static/icons/06006A58.png differ
diff --git a/static/icons/06006A59.png b/static/icons/06006A59.png
new file mode 100755
index 00000000..8dcd8971
Binary files /dev/null and b/static/icons/06006A59.png differ
diff --git a/static/icons/06006A5A.png b/static/icons/06006A5A.png
new file mode 100755
index 00000000..0231a899
Binary files /dev/null and b/static/icons/06006A5A.png differ
diff --git a/static/icons/06006A5B.png b/static/icons/06006A5B.png
new file mode 100755
index 00000000..2ea47ab8
Binary files /dev/null and b/static/icons/06006A5B.png differ
diff --git a/static/icons/06006A5C.png b/static/icons/06006A5C.png
new file mode 100755
index 00000000..c91d0479
Binary files /dev/null and b/static/icons/06006A5C.png differ
diff --git a/static/icons/06006A5D.png b/static/icons/06006A5D.png
new file mode 100755
index 00000000..6d9ac929
Binary files /dev/null and b/static/icons/06006A5D.png differ
diff --git a/static/icons/06006A5E.png b/static/icons/06006A5E.png
new file mode 100755
index 00000000..0d534e15
Binary files /dev/null and b/static/icons/06006A5E.png differ
diff --git a/static/icons/06006A5F.png b/static/icons/06006A5F.png
new file mode 100755
index 00000000..68ea8d3c
Binary files /dev/null and b/static/icons/06006A5F.png differ
diff --git a/static/icons/06006A60.png b/static/icons/06006A60.png
new file mode 100755
index 00000000..e1108d1e
Binary files /dev/null and b/static/icons/06006A60.png differ
diff --git a/static/icons/06006A61.png b/static/icons/06006A61.png
new file mode 100755
index 00000000..99bf19e1
Binary files /dev/null and b/static/icons/06006A61.png differ
diff --git a/static/icons/06006A62.png b/static/icons/06006A62.png
new file mode 100755
index 00000000..0e777ea8
Binary files /dev/null and b/static/icons/06006A62.png differ
diff --git a/static/icons/06006A63.png b/static/icons/06006A63.png
new file mode 100755
index 00000000..37bd1f5d
Binary files /dev/null and b/static/icons/06006A63.png differ
diff --git a/static/icons/06006A64.png b/static/icons/06006A64.png
new file mode 100755
index 00000000..4e1ebe3f
Binary files /dev/null and b/static/icons/06006A64.png differ
diff --git a/static/icons/06006A65.png b/static/icons/06006A65.png
new file mode 100755
index 00000000..8da30a16
Binary files /dev/null and b/static/icons/06006A65.png differ
diff --git a/static/icons/06006A66.png b/static/icons/06006A66.png
new file mode 100755
index 00000000..870cd514
Binary files /dev/null and b/static/icons/06006A66.png differ
diff --git a/static/icons/06006A67.png b/static/icons/06006A67.png
new file mode 100755
index 00000000..7bb47306
Binary files /dev/null and b/static/icons/06006A67.png differ
diff --git a/static/icons/06006A68.png b/static/icons/06006A68.png
new file mode 100755
index 00000000..c9f5ac49
Binary files /dev/null and b/static/icons/06006A68.png differ
diff --git a/static/icons/06006A69.png b/static/icons/06006A69.png
new file mode 100755
index 00000000..27a5293f
Binary files /dev/null and b/static/icons/06006A69.png differ
diff --git a/static/icons/06006A6A.png b/static/icons/06006A6A.png
new file mode 100755
index 00000000..c3e10bf9
Binary files /dev/null and b/static/icons/06006A6A.png differ
diff --git a/static/icons/06006A6B.png b/static/icons/06006A6B.png
new file mode 100755
index 00000000..af2f3443
Binary files /dev/null and b/static/icons/06006A6B.png differ
diff --git a/static/icons/06006A6C.png b/static/icons/06006A6C.png
new file mode 100755
index 00000000..c5c0dbc0
Binary files /dev/null and b/static/icons/06006A6C.png differ
diff --git a/static/icons/06006A6D.png b/static/icons/06006A6D.png
new file mode 100755
index 00000000..1ea5cf16
Binary files /dev/null and b/static/icons/06006A6D.png differ
diff --git a/static/icons/06006A6E.png b/static/icons/06006A6E.png
new file mode 100755
index 00000000..79f5b51e
Binary files /dev/null and b/static/icons/06006A6E.png differ
diff --git a/static/icons/06006A6F.png b/static/icons/06006A6F.png
new file mode 100755
index 00000000..a27f9f2f
Binary files /dev/null and b/static/icons/06006A6F.png differ
diff --git a/static/icons/06006A70.png b/static/icons/06006A70.png
new file mode 100755
index 00000000..54844e76
Binary files /dev/null and b/static/icons/06006A70.png differ
diff --git a/static/icons/06006A71.png b/static/icons/06006A71.png
new file mode 100755
index 00000000..e1ed7184
Binary files /dev/null and b/static/icons/06006A71.png differ
diff --git a/static/icons/06006A72.png b/static/icons/06006A72.png
new file mode 100755
index 00000000..66f907e5
Binary files /dev/null and b/static/icons/06006A72.png differ
diff --git a/static/icons/06006A73.png b/static/icons/06006A73.png
new file mode 100755
index 00000000..3b47f7f2
Binary files /dev/null and b/static/icons/06006A73.png differ
diff --git a/static/icons/06006A74.png b/static/icons/06006A74.png
new file mode 100755
index 00000000..02c9e77e
Binary files /dev/null and b/static/icons/06006A74.png differ
diff --git a/static/icons/06006A75.png b/static/icons/06006A75.png
new file mode 100755
index 00000000..b0d05040
Binary files /dev/null and b/static/icons/06006A75.png differ
diff --git a/static/icons/06006A76.png b/static/icons/06006A76.png
new file mode 100755
index 00000000..2045b3b3
Binary files /dev/null and b/static/icons/06006A76.png differ
diff --git a/static/icons/06006A77.png b/static/icons/06006A77.png
new file mode 100755
index 00000000..6011faa4
Binary files /dev/null and b/static/icons/06006A77.png differ
diff --git a/static/icons/06006A78.png b/static/icons/06006A78.png
new file mode 100755
index 00000000..1a8ddeb9
Binary files /dev/null and b/static/icons/06006A78.png differ
diff --git a/static/icons/06006A79.png b/static/icons/06006A79.png
new file mode 100755
index 00000000..1bf2decb
Binary files /dev/null and b/static/icons/06006A79.png differ
diff --git a/static/icons/06006A7A.png b/static/icons/06006A7A.png
new file mode 100755
index 00000000..4ba63880
Binary files /dev/null and b/static/icons/06006A7A.png differ
diff --git a/static/icons/06006A7B.png b/static/icons/06006A7B.png
new file mode 100755
index 00000000..0068817b
Binary files /dev/null and b/static/icons/06006A7B.png differ
diff --git a/static/icons/06006A7C.png b/static/icons/06006A7C.png
new file mode 100755
index 00000000..292f73b6
Binary files /dev/null and b/static/icons/06006A7C.png differ
diff --git a/static/icons/06006A7D.png b/static/icons/06006A7D.png
new file mode 100755
index 00000000..c493b1b6
Binary files /dev/null and b/static/icons/06006A7D.png differ
diff --git a/static/icons/06006A7E.png b/static/icons/06006A7E.png
new file mode 100755
index 00000000..af585f70
Binary files /dev/null and b/static/icons/06006A7E.png differ
diff --git a/static/icons/06006A7F.png b/static/icons/06006A7F.png
new file mode 100755
index 00000000..12e16eb4
Binary files /dev/null and b/static/icons/06006A7F.png differ
diff --git a/static/icons/06006A80.png b/static/icons/06006A80.png
new file mode 100755
index 00000000..d6ab45ff
Binary files /dev/null and b/static/icons/06006A80.png differ
diff --git a/static/icons/06006A81.png b/static/icons/06006A81.png
new file mode 100755
index 00000000..ea736713
Binary files /dev/null and b/static/icons/06006A81.png differ
diff --git a/static/icons/06006A82.png b/static/icons/06006A82.png
new file mode 100755
index 00000000..34509b72
Binary files /dev/null and b/static/icons/06006A82.png differ
diff --git a/static/icons/06006A83.png b/static/icons/06006A83.png
new file mode 100755
index 00000000..ede5f730
Binary files /dev/null and b/static/icons/06006A83.png differ
diff --git a/static/icons/06006A86.png b/static/icons/06006A86.png
new file mode 100755
index 00000000..123c288a
Binary files /dev/null and b/static/icons/06006A86.png differ
diff --git a/static/icons/06006A87.png b/static/icons/06006A87.png
new file mode 100755
index 00000000..76985103
Binary files /dev/null and b/static/icons/06006A87.png differ
diff --git a/static/icons/06006A88.png b/static/icons/06006A88.png
new file mode 100755
index 00000000..bbb45a1f
Binary files /dev/null and b/static/icons/06006A88.png differ
diff --git a/static/icons/06006A89.png b/static/icons/06006A89.png
new file mode 100755
index 00000000..d1c1b173
Binary files /dev/null and b/static/icons/06006A89.png differ
diff --git a/static/icons/06006A8A.png b/static/icons/06006A8A.png
new file mode 100755
index 00000000..96dac7a2
Binary files /dev/null and b/static/icons/06006A8A.png differ
diff --git a/static/icons/06006A8B.png b/static/icons/06006A8B.png
new file mode 100755
index 00000000..b48a00fe
Binary files /dev/null and b/static/icons/06006A8B.png differ
diff --git a/static/icons/06006A8C.png b/static/icons/06006A8C.png
new file mode 100755
index 00000000..2c21b379
Binary files /dev/null and b/static/icons/06006A8C.png differ
diff --git a/static/icons/06006A8D.png b/static/icons/06006A8D.png
new file mode 100755
index 00000000..f8782ce9
Binary files /dev/null and b/static/icons/06006A8D.png differ
diff --git a/static/icons/06006A8E.png b/static/icons/06006A8E.png
new file mode 100755
index 00000000..05c7b283
Binary files /dev/null and b/static/icons/06006A8E.png differ
diff --git a/static/icons/06006A8F.png b/static/icons/06006A8F.png
new file mode 100755
index 00000000..b6a97059
Binary files /dev/null and b/static/icons/06006A8F.png differ
diff --git a/static/icons/06006A90.png b/static/icons/06006A90.png
new file mode 100755
index 00000000..f360f132
Binary files /dev/null and b/static/icons/06006A90.png differ
diff --git a/static/icons/06006A91.png b/static/icons/06006A91.png
new file mode 100755
index 00000000..ade12151
Binary files /dev/null and b/static/icons/06006A91.png differ
diff --git a/static/icons/06006A92.png b/static/icons/06006A92.png
new file mode 100755
index 00000000..7454cab3
Binary files /dev/null and b/static/icons/06006A92.png differ
diff --git a/static/icons/06006A93.png b/static/icons/06006A93.png
new file mode 100755
index 00000000..49fd8cf3
Binary files /dev/null and b/static/icons/06006A93.png differ
diff --git a/static/icons/06006A94.png b/static/icons/06006A94.png
new file mode 100755
index 00000000..7e410912
Binary files /dev/null and b/static/icons/06006A94.png differ
diff --git a/static/icons/06006A95.png b/static/icons/06006A95.png
new file mode 100755
index 00000000..565f14e2
Binary files /dev/null and b/static/icons/06006A95.png differ
diff --git a/static/icons/06006A96.png b/static/icons/06006A96.png
new file mode 100755
index 00000000..92e73fad
Binary files /dev/null and b/static/icons/06006A96.png differ
diff --git a/static/icons/06006A97.png b/static/icons/06006A97.png
new file mode 100755
index 00000000..b3ee8a14
Binary files /dev/null and b/static/icons/06006A97.png differ
diff --git a/static/icons/06006A98.png b/static/icons/06006A98.png
new file mode 100755
index 00000000..a16fc800
Binary files /dev/null and b/static/icons/06006A98.png differ
diff --git a/static/icons/06006A99.png b/static/icons/06006A99.png
new file mode 100755
index 00000000..6c53e476
Binary files /dev/null and b/static/icons/06006A99.png differ
diff --git a/static/icons/06006A9A.png b/static/icons/06006A9A.png
new file mode 100755
index 00000000..a0045b77
Binary files /dev/null and b/static/icons/06006A9A.png differ
diff --git a/static/icons/06006A9B.png b/static/icons/06006A9B.png
new file mode 100755
index 00000000..8d62e416
Binary files /dev/null and b/static/icons/06006A9B.png differ
diff --git a/static/icons/06006A9C.png b/static/icons/06006A9C.png
new file mode 100755
index 00000000..2c4c3271
Binary files /dev/null and b/static/icons/06006A9C.png differ
diff --git a/static/icons/06006A9D.png b/static/icons/06006A9D.png
new file mode 100755
index 00000000..3dbfee8e
Binary files /dev/null and b/static/icons/06006A9D.png differ
diff --git a/static/icons/06006A9E.png b/static/icons/06006A9E.png
new file mode 100755
index 00000000..1f7d6598
Binary files /dev/null and b/static/icons/06006A9E.png differ
diff --git a/static/icons/06006AA0.png b/static/icons/06006AA0.png
new file mode 100755
index 00000000..d3bbac93
Binary files /dev/null and b/static/icons/06006AA0.png differ
diff --git a/static/icons/06006AA1.png b/static/icons/06006AA1.png
new file mode 100755
index 00000000..4e9b359c
Binary files /dev/null and b/static/icons/06006AA1.png differ
diff --git a/static/icons/06006AA2.png b/static/icons/06006AA2.png
new file mode 100755
index 00000000..d5f25c7c
Binary files /dev/null and b/static/icons/06006AA2.png differ
diff --git a/static/icons/06006AA3.png b/static/icons/06006AA3.png
new file mode 100755
index 00000000..156c9196
Binary files /dev/null and b/static/icons/06006AA3.png differ
diff --git a/static/icons/06006AA4.png b/static/icons/06006AA4.png
new file mode 100755
index 00000000..2206d464
Binary files /dev/null and b/static/icons/06006AA4.png differ
diff --git a/static/icons/06006AA5.png b/static/icons/06006AA5.png
new file mode 100755
index 00000000..978e2cef
Binary files /dev/null and b/static/icons/06006AA5.png differ
diff --git a/static/icons/06006AA6.png b/static/icons/06006AA6.png
new file mode 100755
index 00000000..dc3678e2
Binary files /dev/null and b/static/icons/06006AA6.png differ
diff --git a/static/icons/06006AA7.png b/static/icons/06006AA7.png
new file mode 100755
index 00000000..f1dc2ccd
Binary files /dev/null and b/static/icons/06006AA7.png differ
diff --git a/static/icons/06006AA8.png b/static/icons/06006AA8.png
new file mode 100755
index 00000000..1c843380
Binary files /dev/null and b/static/icons/06006AA8.png differ
diff --git a/static/icons/06006AA9.png b/static/icons/06006AA9.png
new file mode 100755
index 00000000..22886314
Binary files /dev/null and b/static/icons/06006AA9.png differ
diff --git a/static/icons/06006AAA.png b/static/icons/06006AAA.png
new file mode 100755
index 00000000..759d41e3
Binary files /dev/null and b/static/icons/06006AAA.png differ
diff --git a/static/icons/06006AAB.png b/static/icons/06006AAB.png
new file mode 100755
index 00000000..d2403e66
Binary files /dev/null and b/static/icons/06006AAB.png differ
diff --git a/static/icons/06006AAC.png b/static/icons/06006AAC.png
new file mode 100755
index 00000000..adcb739a
Binary files /dev/null and b/static/icons/06006AAC.png differ
diff --git a/static/icons/06006AAD.png b/static/icons/06006AAD.png
new file mode 100755
index 00000000..c59c74e8
Binary files /dev/null and b/static/icons/06006AAD.png differ
diff --git a/static/icons/06006AAE.png b/static/icons/06006AAE.png
new file mode 100755
index 00000000..afe5f364
Binary files /dev/null and b/static/icons/06006AAE.png differ
diff --git a/static/icons/06006AAF.png b/static/icons/06006AAF.png
new file mode 100755
index 00000000..714c8c15
Binary files /dev/null and b/static/icons/06006AAF.png differ
diff --git a/static/icons/06006AB0.png b/static/icons/06006AB0.png
new file mode 100755
index 00000000..363f36ef
Binary files /dev/null and b/static/icons/06006AB0.png differ
diff --git a/static/icons/06006AB1.png b/static/icons/06006AB1.png
new file mode 100755
index 00000000..a957bce1
Binary files /dev/null and b/static/icons/06006AB1.png differ
diff --git a/static/icons/06006AB2.png b/static/icons/06006AB2.png
new file mode 100755
index 00000000..16d0f04c
Binary files /dev/null and b/static/icons/06006AB2.png differ
diff --git a/static/icons/06006AB3.png b/static/icons/06006AB3.png
new file mode 100755
index 00000000..bb057dbb
Binary files /dev/null and b/static/icons/06006AB3.png differ
diff --git a/static/icons/06006AB4.png b/static/icons/06006AB4.png
new file mode 100755
index 00000000..144742e1
Binary files /dev/null and b/static/icons/06006AB4.png differ
diff --git a/static/icons/06006AB5.png b/static/icons/06006AB5.png
new file mode 100755
index 00000000..324973c1
Binary files /dev/null and b/static/icons/06006AB5.png differ
diff --git a/static/icons/06006AB6.png b/static/icons/06006AB6.png
new file mode 100755
index 00000000..937e4ff7
Binary files /dev/null and b/static/icons/06006AB6.png differ
diff --git a/static/icons/06006AB7.png b/static/icons/06006AB7.png
new file mode 100755
index 00000000..9ad45b2b
Binary files /dev/null and b/static/icons/06006AB7.png differ
diff --git a/static/icons/06006AB8.png b/static/icons/06006AB8.png
new file mode 100755
index 00000000..6c9c23b5
Binary files /dev/null and b/static/icons/06006AB8.png differ
diff --git a/static/icons/06006AB9.png b/static/icons/06006AB9.png
new file mode 100755
index 00000000..1bd9c7b5
Binary files /dev/null and b/static/icons/06006AB9.png differ
diff --git a/static/icons/06006ABA.png b/static/icons/06006ABA.png
new file mode 100755
index 00000000..6b10ead1
Binary files /dev/null and b/static/icons/06006ABA.png differ
diff --git a/static/icons/06006ABB.png b/static/icons/06006ABB.png
new file mode 100755
index 00000000..b87c1b28
Binary files /dev/null and b/static/icons/06006ABB.png differ
diff --git a/static/icons/06006ABC.png b/static/icons/06006ABC.png
new file mode 100755
index 00000000..3e01368c
Binary files /dev/null and b/static/icons/06006ABC.png differ
diff --git a/static/icons/06006ABD.png b/static/icons/06006ABD.png
new file mode 100755
index 00000000..9a1d4185
Binary files /dev/null and b/static/icons/06006ABD.png differ
diff --git a/static/icons/06006ABE.png b/static/icons/06006ABE.png
new file mode 100755
index 00000000..9799bf24
Binary files /dev/null and b/static/icons/06006ABE.png differ
diff --git a/static/icons/06006ABF.png b/static/icons/06006ABF.png
new file mode 100755
index 00000000..c1f5b550
Binary files /dev/null and b/static/icons/06006ABF.png differ
diff --git a/static/icons/06006AC0.png b/static/icons/06006AC0.png
new file mode 100755
index 00000000..a1669131
Binary files /dev/null and b/static/icons/06006AC0.png differ
diff --git a/static/icons/06006AC1.png b/static/icons/06006AC1.png
new file mode 100755
index 00000000..8b4a78ce
Binary files /dev/null and b/static/icons/06006AC1.png differ
diff --git a/static/icons/06006AC2.png b/static/icons/06006AC2.png
new file mode 100755
index 00000000..450f9ef2
Binary files /dev/null and b/static/icons/06006AC2.png differ
diff --git a/static/icons/06006AC3.png b/static/icons/06006AC3.png
new file mode 100755
index 00000000..ae8a9ed1
Binary files /dev/null and b/static/icons/06006AC3.png differ
diff --git a/static/icons/06006AC4.png b/static/icons/06006AC4.png
new file mode 100755
index 00000000..47bec52b
Binary files /dev/null and b/static/icons/06006AC4.png differ
diff --git a/static/icons/06006AC5.png b/static/icons/06006AC5.png
new file mode 100755
index 00000000..fc92a332
Binary files /dev/null and b/static/icons/06006AC5.png differ
diff --git a/static/icons/06006AC6.png b/static/icons/06006AC6.png
new file mode 100755
index 00000000..58a03827
Binary files /dev/null and b/static/icons/06006AC6.png differ
diff --git a/static/icons/06006AC7.png b/static/icons/06006AC7.png
new file mode 100755
index 00000000..b6428e26
Binary files /dev/null and b/static/icons/06006AC7.png differ
diff --git a/static/icons/06006AC8.png b/static/icons/06006AC8.png
new file mode 100755
index 00000000..b8c83d43
Binary files /dev/null and b/static/icons/06006AC8.png differ
diff --git a/static/icons/06006AC9.png b/static/icons/06006AC9.png
new file mode 100755
index 00000000..32993d0e
Binary files /dev/null and b/static/icons/06006AC9.png differ
diff --git a/static/icons/06006ACA.png b/static/icons/06006ACA.png
new file mode 100755
index 00000000..faa55320
Binary files /dev/null and b/static/icons/06006ACA.png differ
diff --git a/static/icons/06006ACB.png b/static/icons/06006ACB.png
new file mode 100755
index 00000000..98cb6d14
Binary files /dev/null and b/static/icons/06006ACB.png differ
diff --git a/static/icons/06006ACC.png b/static/icons/06006ACC.png
new file mode 100755
index 00000000..0c7ad1ee
Binary files /dev/null and b/static/icons/06006ACC.png differ
diff --git a/static/icons/06006ACD.png b/static/icons/06006ACD.png
new file mode 100755
index 00000000..9cc352ea
Binary files /dev/null and b/static/icons/06006ACD.png differ
diff --git a/static/icons/06006ACE.png b/static/icons/06006ACE.png
new file mode 100755
index 00000000..1680099f
Binary files /dev/null and b/static/icons/06006ACE.png differ
diff --git a/static/icons/06006ACF.png b/static/icons/06006ACF.png
new file mode 100755
index 00000000..13fcfda2
Binary files /dev/null and b/static/icons/06006ACF.png differ
diff --git a/static/icons/06006AD0.png b/static/icons/06006AD0.png
new file mode 100755
index 00000000..15a79144
Binary files /dev/null and b/static/icons/06006AD0.png differ
diff --git a/static/icons/06006AD1.png b/static/icons/06006AD1.png
new file mode 100755
index 00000000..30235d88
Binary files /dev/null and b/static/icons/06006AD1.png differ
diff --git a/static/icons/06006AD2.png b/static/icons/06006AD2.png
new file mode 100755
index 00000000..da444907
Binary files /dev/null and b/static/icons/06006AD2.png differ
diff --git a/static/icons/06006AD3.png b/static/icons/06006AD3.png
new file mode 100755
index 00000000..a7df05f2
Binary files /dev/null and b/static/icons/06006AD3.png differ
diff --git a/static/icons/06006AD4.png b/static/icons/06006AD4.png
new file mode 100755
index 00000000..33b1cd40
Binary files /dev/null and b/static/icons/06006AD4.png differ
diff --git a/static/icons/06006AD5.png b/static/icons/06006AD5.png
new file mode 100755
index 00000000..31fa9d13
Binary files /dev/null and b/static/icons/06006AD5.png differ
diff --git a/static/icons/06006AD6.png b/static/icons/06006AD6.png
new file mode 100755
index 00000000..dab3c56b
Binary files /dev/null and b/static/icons/06006AD6.png differ
diff --git a/static/icons/06006AD7.png b/static/icons/06006AD7.png
new file mode 100755
index 00000000..d266da26
Binary files /dev/null and b/static/icons/06006AD7.png differ
diff --git a/static/icons/06006AD8.png b/static/icons/06006AD8.png
new file mode 100755
index 00000000..749bb943
Binary files /dev/null and b/static/icons/06006AD8.png differ
diff --git a/static/icons/06006AD9.png b/static/icons/06006AD9.png
new file mode 100755
index 00000000..64c31d7a
Binary files /dev/null and b/static/icons/06006AD9.png differ
diff --git a/static/icons/06006ADA.png b/static/icons/06006ADA.png
new file mode 100755
index 00000000..99849a00
Binary files /dev/null and b/static/icons/06006ADA.png differ
diff --git a/static/icons/06006ADB.png b/static/icons/06006ADB.png
new file mode 100755
index 00000000..66042fa9
Binary files /dev/null and b/static/icons/06006ADB.png differ
diff --git a/static/icons/06006ADC.png b/static/icons/06006ADC.png
new file mode 100755
index 00000000..a778b06f
Binary files /dev/null and b/static/icons/06006ADC.png differ
diff --git a/static/icons/06006ADD.png b/static/icons/06006ADD.png
new file mode 100755
index 00000000..0dd75398
Binary files /dev/null and b/static/icons/06006ADD.png differ
diff --git a/static/icons/06006ADE.png b/static/icons/06006ADE.png
new file mode 100755
index 00000000..55dd24cd
Binary files /dev/null and b/static/icons/06006ADE.png differ
diff --git a/static/icons/06006ADF.png b/static/icons/06006ADF.png
new file mode 100755
index 00000000..790cbae4
Binary files /dev/null and b/static/icons/06006ADF.png differ
diff --git a/static/icons/06006AE0.png b/static/icons/06006AE0.png
new file mode 100755
index 00000000..c4901a77
Binary files /dev/null and b/static/icons/06006AE0.png differ
diff --git a/static/icons/06006AE1.png b/static/icons/06006AE1.png
new file mode 100755
index 00000000..f6218d62
Binary files /dev/null and b/static/icons/06006AE1.png differ
diff --git a/static/icons/06006AE2.png b/static/icons/06006AE2.png
new file mode 100755
index 00000000..2248f104
Binary files /dev/null and b/static/icons/06006AE2.png differ
diff --git a/static/icons/06006AE3.png b/static/icons/06006AE3.png
new file mode 100755
index 00000000..93ed6b93
Binary files /dev/null and b/static/icons/06006AE3.png differ
diff --git a/static/icons/06006AE4.png b/static/icons/06006AE4.png
new file mode 100755
index 00000000..a26d5aee
Binary files /dev/null and b/static/icons/06006AE4.png differ
diff --git a/static/icons/06006AE5.png b/static/icons/06006AE5.png
new file mode 100755
index 00000000..cff84ed4
Binary files /dev/null and b/static/icons/06006AE5.png differ
diff --git a/static/icons/06006AE6.png b/static/icons/06006AE6.png
new file mode 100755
index 00000000..054aa74a
Binary files /dev/null and b/static/icons/06006AE6.png differ
diff --git a/static/icons/06006AE7.png b/static/icons/06006AE7.png
new file mode 100755
index 00000000..99e0327a
Binary files /dev/null and b/static/icons/06006AE7.png differ
diff --git a/static/icons/06006AE8.png b/static/icons/06006AE8.png
new file mode 100755
index 00000000..8a6af9e1
Binary files /dev/null and b/static/icons/06006AE8.png differ
diff --git a/static/icons/06006AE9.png b/static/icons/06006AE9.png
new file mode 100755
index 00000000..26e694c6
Binary files /dev/null and b/static/icons/06006AE9.png differ
diff --git a/static/icons/06006AEA.png b/static/icons/06006AEA.png
new file mode 100755
index 00000000..7f3a56a3
Binary files /dev/null and b/static/icons/06006AEA.png differ
diff --git a/static/icons/06006AEC.png b/static/icons/06006AEC.png
new file mode 100755
index 00000000..4b199ff1
Binary files /dev/null and b/static/icons/06006AEC.png differ
diff --git a/static/icons/06006AED.png b/static/icons/06006AED.png
new file mode 100755
index 00000000..b2756c19
Binary files /dev/null and b/static/icons/06006AED.png differ
diff --git a/static/icons/06006AEE.png b/static/icons/06006AEE.png
new file mode 100755
index 00000000..ce0627c6
Binary files /dev/null and b/static/icons/06006AEE.png differ
diff --git a/static/icons/06006AEF.png b/static/icons/06006AEF.png
new file mode 100755
index 00000000..b0e18257
Binary files /dev/null and b/static/icons/06006AEF.png differ
diff --git a/static/icons/06006AF0.png b/static/icons/06006AF0.png
new file mode 100755
index 00000000..9e84d365
Binary files /dev/null and b/static/icons/06006AF0.png differ
diff --git a/static/icons/06006AF1.png b/static/icons/06006AF1.png
new file mode 100755
index 00000000..ac48b3f2
Binary files /dev/null and b/static/icons/06006AF1.png differ
diff --git a/static/icons/06006AF2.png b/static/icons/06006AF2.png
new file mode 100755
index 00000000..11358684
Binary files /dev/null and b/static/icons/06006AF2.png differ
diff --git a/static/icons/06006AF3.png b/static/icons/06006AF3.png
new file mode 100755
index 00000000..a172eb8e
Binary files /dev/null and b/static/icons/06006AF3.png differ
diff --git a/static/icons/06006AF4.png b/static/icons/06006AF4.png
new file mode 100755
index 00000000..a227c60e
Binary files /dev/null and b/static/icons/06006AF4.png differ
diff --git a/static/icons/06006AF5.png b/static/icons/06006AF5.png
new file mode 100755
index 00000000..0a4be66e
Binary files /dev/null and b/static/icons/06006AF5.png differ
diff --git a/static/icons/06006AF7.png b/static/icons/06006AF7.png
new file mode 100755
index 00000000..559e0d57
Binary files /dev/null and b/static/icons/06006AF7.png differ
diff --git a/static/icons/06006AF8.png b/static/icons/06006AF8.png
new file mode 100755
index 00000000..fd47c08a
Binary files /dev/null and b/static/icons/06006AF8.png differ
diff --git a/static/icons/06006AF9.png b/static/icons/06006AF9.png
new file mode 100755
index 00000000..b7f93a03
Binary files /dev/null and b/static/icons/06006AF9.png differ
diff --git a/static/icons/06006AFA.png b/static/icons/06006AFA.png
new file mode 100755
index 00000000..3fad31fa
Binary files /dev/null and b/static/icons/06006AFA.png differ
diff --git a/static/icons/06006AFB.png b/static/icons/06006AFB.png
new file mode 100755
index 00000000..fa8ddc37
Binary files /dev/null and b/static/icons/06006AFB.png differ
diff --git a/static/icons/06006AFC.png b/static/icons/06006AFC.png
new file mode 100755
index 00000000..0bf2a1ea
Binary files /dev/null and b/static/icons/06006AFC.png differ
diff --git a/static/icons/06006AFD.png b/static/icons/06006AFD.png
new file mode 100755
index 00000000..d38c9183
Binary files /dev/null and b/static/icons/06006AFD.png differ
diff --git a/static/icons/06006AFE.png b/static/icons/06006AFE.png
new file mode 100755
index 00000000..20951b30
Binary files /dev/null and b/static/icons/06006AFE.png differ
diff --git a/static/icons/06006AFF.png b/static/icons/06006AFF.png
new file mode 100755
index 00000000..302d5ad6
Binary files /dev/null and b/static/icons/06006AFF.png differ
diff --git a/static/icons/06006B00.png b/static/icons/06006B00.png
new file mode 100755
index 00000000..95ffc86b
Binary files /dev/null and b/static/icons/06006B00.png differ
diff --git a/static/icons/06006B01.png b/static/icons/06006B01.png
new file mode 100755
index 00000000..5ac8b044
Binary files /dev/null and b/static/icons/06006B01.png differ
diff --git a/static/icons/06006B02.png b/static/icons/06006B02.png
new file mode 100755
index 00000000..71526313
Binary files /dev/null and b/static/icons/06006B02.png differ
diff --git a/static/icons/06006B03.png b/static/icons/06006B03.png
new file mode 100755
index 00000000..9d929fd1
Binary files /dev/null and b/static/icons/06006B03.png differ
diff --git a/static/icons/06006B04.png b/static/icons/06006B04.png
new file mode 100755
index 00000000..349cf9b6
Binary files /dev/null and b/static/icons/06006B04.png differ
diff --git a/static/icons/06006B05.png b/static/icons/06006B05.png
new file mode 100755
index 00000000..194ad4c3
Binary files /dev/null and b/static/icons/06006B05.png differ
diff --git a/static/icons/06006B08.png b/static/icons/06006B08.png
new file mode 100755
index 00000000..2bceee79
Binary files /dev/null and b/static/icons/06006B08.png differ
diff --git a/static/icons/06006B0A.png b/static/icons/06006B0A.png
new file mode 100755
index 00000000..b9e72e0e
Binary files /dev/null and b/static/icons/06006B0A.png differ
diff --git a/static/icons/06006B0B.png b/static/icons/06006B0B.png
new file mode 100755
index 00000000..a21155c8
Binary files /dev/null and b/static/icons/06006B0B.png differ
diff --git a/static/icons/06006B0C.png b/static/icons/06006B0C.png
new file mode 100755
index 00000000..9250ed9b
Binary files /dev/null and b/static/icons/06006B0C.png differ
diff --git a/static/icons/06006B0D.png b/static/icons/06006B0D.png
new file mode 100755
index 00000000..237db7f6
Binary files /dev/null and b/static/icons/06006B0D.png differ
diff --git a/static/icons/06006B0E.png b/static/icons/06006B0E.png
new file mode 100755
index 00000000..184d4cfb
Binary files /dev/null and b/static/icons/06006B0E.png differ
diff --git a/static/icons/06006B0F.png b/static/icons/06006B0F.png
new file mode 100755
index 00000000..55b1bfee
Binary files /dev/null and b/static/icons/06006B0F.png differ
diff --git a/static/icons/06006B10.png b/static/icons/06006B10.png
new file mode 100755
index 00000000..1eec66e2
Binary files /dev/null and b/static/icons/06006B10.png differ
diff --git a/static/icons/06006B11.png b/static/icons/06006B11.png
new file mode 100755
index 00000000..2147c402
Binary files /dev/null and b/static/icons/06006B11.png differ
diff --git a/static/icons/06006B12.png b/static/icons/06006B12.png
new file mode 100755
index 00000000..a9088d65
Binary files /dev/null and b/static/icons/06006B12.png differ
diff --git a/static/icons/06006B13.png b/static/icons/06006B13.png
new file mode 100755
index 00000000..725d1033
Binary files /dev/null and b/static/icons/06006B13.png differ
diff --git a/static/icons/06006B14.png b/static/icons/06006B14.png
new file mode 100755
index 00000000..04bde831
Binary files /dev/null and b/static/icons/06006B14.png differ
diff --git a/static/icons/06006B15.png b/static/icons/06006B15.png
new file mode 100755
index 00000000..dba03efc
Binary files /dev/null and b/static/icons/06006B15.png differ
diff --git a/static/icons/06006B16.png b/static/icons/06006B16.png
new file mode 100755
index 00000000..8b66860e
Binary files /dev/null and b/static/icons/06006B16.png differ
diff --git a/static/icons/06006B17.png b/static/icons/06006B17.png
new file mode 100755
index 00000000..090ef879
Binary files /dev/null and b/static/icons/06006B17.png differ
diff --git a/static/icons/06006B18.png b/static/icons/06006B18.png
new file mode 100755
index 00000000..772c91c0
Binary files /dev/null and b/static/icons/06006B18.png differ
diff --git a/static/icons/06006B19.png b/static/icons/06006B19.png
new file mode 100755
index 00000000..cb1b5319
Binary files /dev/null and b/static/icons/06006B19.png differ
diff --git a/static/icons/06006B1A.png b/static/icons/06006B1A.png
new file mode 100755
index 00000000..576e943e
Binary files /dev/null and b/static/icons/06006B1A.png differ
diff --git a/static/icons/06006B1B.png b/static/icons/06006B1B.png
new file mode 100755
index 00000000..1d7e1c33
Binary files /dev/null and b/static/icons/06006B1B.png differ
diff --git a/static/icons/06006B1C.png b/static/icons/06006B1C.png
new file mode 100755
index 00000000..8c4ceb7a
Binary files /dev/null and b/static/icons/06006B1C.png differ
diff --git a/static/icons/06006B1D.png b/static/icons/06006B1D.png
new file mode 100755
index 00000000..f2ec634c
Binary files /dev/null and b/static/icons/06006B1D.png differ
diff --git a/static/icons/06006B1E.png b/static/icons/06006B1E.png
new file mode 100755
index 00000000..6c3b38f6
Binary files /dev/null and b/static/icons/06006B1E.png differ
diff --git a/static/icons/06006B1F.png b/static/icons/06006B1F.png
new file mode 100755
index 00000000..6ad67544
Binary files /dev/null and b/static/icons/06006B1F.png differ
diff --git a/static/icons/06006B20.png b/static/icons/06006B20.png
new file mode 100755
index 00000000..e251dfcc
Binary files /dev/null and b/static/icons/06006B20.png differ
diff --git a/static/icons/06006B21.png b/static/icons/06006B21.png
new file mode 100755
index 00000000..ab4d0a38
Binary files /dev/null and b/static/icons/06006B21.png differ
diff --git a/static/icons/06006B22.png b/static/icons/06006B22.png
new file mode 100755
index 00000000..159f5825
Binary files /dev/null and b/static/icons/06006B22.png differ
diff --git a/static/icons/06006B23.png b/static/icons/06006B23.png
new file mode 100755
index 00000000..f194bb39
Binary files /dev/null and b/static/icons/06006B23.png differ
diff --git a/static/icons/06006B24.png b/static/icons/06006B24.png
new file mode 100755
index 00000000..cb36a67d
Binary files /dev/null and b/static/icons/06006B24.png differ
diff --git a/static/icons/06006B25.png b/static/icons/06006B25.png
new file mode 100755
index 00000000..bc5b98c7
Binary files /dev/null and b/static/icons/06006B25.png differ
diff --git a/static/icons/06006B26.png b/static/icons/06006B26.png
new file mode 100755
index 00000000..c368ce0a
Binary files /dev/null and b/static/icons/06006B26.png differ
diff --git a/static/icons/06006B27.png b/static/icons/06006B27.png
new file mode 100755
index 00000000..ba7b87ff
Binary files /dev/null and b/static/icons/06006B27.png differ
diff --git a/static/icons/06006B28.png b/static/icons/06006B28.png
new file mode 100755
index 00000000..7fae927f
Binary files /dev/null and b/static/icons/06006B28.png differ
diff --git a/static/icons/06006B29.png b/static/icons/06006B29.png
new file mode 100755
index 00000000..5198f9e0
Binary files /dev/null and b/static/icons/06006B29.png differ
diff --git a/static/icons/06006B2A.png b/static/icons/06006B2A.png
new file mode 100755
index 00000000..6f2501a1
Binary files /dev/null and b/static/icons/06006B2A.png differ
diff --git a/static/icons/06006B2B.png b/static/icons/06006B2B.png
new file mode 100755
index 00000000..62a2a89a
Binary files /dev/null and b/static/icons/06006B2B.png differ
diff --git a/static/icons/06006B2C.png b/static/icons/06006B2C.png
new file mode 100755
index 00000000..7df62f6a
Binary files /dev/null and b/static/icons/06006B2C.png differ
diff --git a/static/icons/06006B2D.png b/static/icons/06006B2D.png
new file mode 100755
index 00000000..14002c26
Binary files /dev/null and b/static/icons/06006B2D.png differ
diff --git a/static/icons/06006B2E.png b/static/icons/06006B2E.png
new file mode 100755
index 00000000..fa04ac72
Binary files /dev/null and b/static/icons/06006B2E.png differ
diff --git a/static/icons/06006B2F.png b/static/icons/06006B2F.png
new file mode 100755
index 00000000..0d80ab26
Binary files /dev/null and b/static/icons/06006B2F.png differ
diff --git a/static/icons/06006B30.png b/static/icons/06006B30.png
new file mode 100755
index 00000000..691a1ae6
Binary files /dev/null and b/static/icons/06006B30.png differ
diff --git a/static/icons/06006B31.png b/static/icons/06006B31.png
new file mode 100755
index 00000000..ad267f3c
Binary files /dev/null and b/static/icons/06006B31.png differ
diff --git a/static/icons/06006B32.png b/static/icons/06006B32.png
new file mode 100755
index 00000000..66dc83e5
Binary files /dev/null and b/static/icons/06006B32.png differ
diff --git a/static/icons/06006B33.png b/static/icons/06006B33.png
new file mode 100755
index 00000000..95343f76
Binary files /dev/null and b/static/icons/06006B33.png differ
diff --git a/static/icons/06006B34.png b/static/icons/06006B34.png
new file mode 100755
index 00000000..ffaf7c42
Binary files /dev/null and b/static/icons/06006B34.png differ
diff --git a/static/icons/06006B35.png b/static/icons/06006B35.png
new file mode 100755
index 00000000..b2bc0de9
Binary files /dev/null and b/static/icons/06006B35.png differ
diff --git a/static/icons/06006B36.png b/static/icons/06006B36.png
new file mode 100755
index 00000000..80c19df9
Binary files /dev/null and b/static/icons/06006B36.png differ
diff --git a/static/icons/06006B37.png b/static/icons/06006B37.png
new file mode 100755
index 00000000..d736b4c8
Binary files /dev/null and b/static/icons/06006B37.png differ
diff --git a/static/icons/06006B38.png b/static/icons/06006B38.png
new file mode 100755
index 00000000..39545a5c
Binary files /dev/null and b/static/icons/06006B38.png differ
diff --git a/static/icons/06006B39.png b/static/icons/06006B39.png
new file mode 100755
index 00000000..1e110f69
Binary files /dev/null and b/static/icons/06006B39.png differ
diff --git a/static/icons/06006B3A.png b/static/icons/06006B3A.png
new file mode 100755
index 00000000..248b6895
Binary files /dev/null and b/static/icons/06006B3A.png differ
diff --git a/static/icons/06006B3B.png b/static/icons/06006B3B.png
new file mode 100755
index 00000000..6e597cbc
Binary files /dev/null and b/static/icons/06006B3B.png differ
diff --git a/static/icons/06006B3C.png b/static/icons/06006B3C.png
new file mode 100755
index 00000000..72a6f918
Binary files /dev/null and b/static/icons/06006B3C.png differ
diff --git a/static/icons/06006B3D.png b/static/icons/06006B3D.png
new file mode 100755
index 00000000..3f1edcf0
Binary files /dev/null and b/static/icons/06006B3D.png differ
diff --git a/static/icons/06006B3E.png b/static/icons/06006B3E.png
new file mode 100755
index 00000000..8507dd58
Binary files /dev/null and b/static/icons/06006B3E.png differ
diff --git a/static/icons/06006B3F.png b/static/icons/06006B3F.png
new file mode 100755
index 00000000..79f57ee2
Binary files /dev/null and b/static/icons/06006B3F.png differ
diff --git a/static/icons/06006B40.png b/static/icons/06006B40.png
new file mode 100755
index 00000000..f292370b
Binary files /dev/null and b/static/icons/06006B40.png differ
diff --git a/static/icons/06006B41.png b/static/icons/06006B41.png
new file mode 100755
index 00000000..c1ea81db
Binary files /dev/null and b/static/icons/06006B41.png differ
diff --git a/static/icons/06006B42.png b/static/icons/06006B42.png
new file mode 100755
index 00000000..6ac58921
Binary files /dev/null and b/static/icons/06006B42.png differ
diff --git a/static/icons/06006B43.png b/static/icons/06006B43.png
new file mode 100755
index 00000000..5a43094a
Binary files /dev/null and b/static/icons/06006B43.png differ
diff --git a/static/icons/06006B44.png b/static/icons/06006B44.png
new file mode 100755
index 00000000..603a67bd
Binary files /dev/null and b/static/icons/06006B44.png differ
diff --git a/static/icons/06006B45.png b/static/icons/06006B45.png
new file mode 100755
index 00000000..2c0d1542
Binary files /dev/null and b/static/icons/06006B45.png differ
diff --git a/static/icons/06006B46.png b/static/icons/06006B46.png
new file mode 100755
index 00000000..f3265adb
Binary files /dev/null and b/static/icons/06006B46.png differ
diff --git a/static/icons/06006B47.png b/static/icons/06006B47.png
new file mode 100755
index 00000000..e7f104ce
Binary files /dev/null and b/static/icons/06006B47.png differ
diff --git a/static/icons/06006B48.png b/static/icons/06006B48.png
new file mode 100755
index 00000000..4c547688
Binary files /dev/null and b/static/icons/06006B48.png differ
diff --git a/static/icons/06006B49.png b/static/icons/06006B49.png
new file mode 100755
index 00000000..6ab001fe
Binary files /dev/null and b/static/icons/06006B49.png differ
diff --git a/static/icons/06006B4A.png b/static/icons/06006B4A.png
new file mode 100755
index 00000000..e212fc23
Binary files /dev/null and b/static/icons/06006B4A.png differ
diff --git a/static/icons/06006B4B.png b/static/icons/06006B4B.png
new file mode 100755
index 00000000..004e2231
Binary files /dev/null and b/static/icons/06006B4B.png differ
diff --git a/static/icons/06006B4C.png b/static/icons/06006B4C.png
new file mode 100755
index 00000000..dda9f139
Binary files /dev/null and b/static/icons/06006B4C.png differ
diff --git a/static/icons/06006B4D.png b/static/icons/06006B4D.png
new file mode 100755
index 00000000..f088494a
Binary files /dev/null and b/static/icons/06006B4D.png differ
diff --git a/static/icons/06006B4E.png b/static/icons/06006B4E.png
new file mode 100755
index 00000000..0d528166
Binary files /dev/null and b/static/icons/06006B4E.png differ
diff --git a/static/icons/06006B4F.png b/static/icons/06006B4F.png
new file mode 100755
index 00000000..97397cb8
Binary files /dev/null and b/static/icons/06006B4F.png differ
diff --git a/static/icons/06006B50.png b/static/icons/06006B50.png
new file mode 100755
index 00000000..d6f9360a
Binary files /dev/null and b/static/icons/06006B50.png differ
diff --git a/static/icons/06006B51.png b/static/icons/06006B51.png
new file mode 100755
index 00000000..2af47869
Binary files /dev/null and b/static/icons/06006B51.png differ
diff --git a/static/icons/06006B52.png b/static/icons/06006B52.png
new file mode 100755
index 00000000..c1d4cc51
Binary files /dev/null and b/static/icons/06006B52.png differ
diff --git a/static/icons/06006B53.png b/static/icons/06006B53.png
new file mode 100755
index 00000000..8adb1c23
Binary files /dev/null and b/static/icons/06006B53.png differ
diff --git a/static/icons/06006B54.png b/static/icons/06006B54.png
new file mode 100755
index 00000000..d7787270
Binary files /dev/null and b/static/icons/06006B54.png differ
diff --git a/static/icons/06006B55.png b/static/icons/06006B55.png
new file mode 100755
index 00000000..98c71877
Binary files /dev/null and b/static/icons/06006B55.png differ
diff --git a/static/icons/06006B56.png b/static/icons/06006B56.png
new file mode 100755
index 00000000..909e8b7c
Binary files /dev/null and b/static/icons/06006B56.png differ
diff --git a/static/icons/06006B57.png b/static/icons/06006B57.png
new file mode 100755
index 00000000..80f5b42c
Binary files /dev/null and b/static/icons/06006B57.png differ
diff --git a/static/icons/06006B58.png b/static/icons/06006B58.png
new file mode 100755
index 00000000..e49fea24
Binary files /dev/null and b/static/icons/06006B58.png differ
diff --git a/static/icons/06006B59.png b/static/icons/06006B59.png
new file mode 100755
index 00000000..9b6248ad
Binary files /dev/null and b/static/icons/06006B59.png differ
diff --git a/static/icons/06006B5A.png b/static/icons/06006B5A.png
new file mode 100755
index 00000000..16621d24
Binary files /dev/null and b/static/icons/06006B5A.png differ
diff --git a/static/icons/06006B5B.png b/static/icons/06006B5B.png
new file mode 100755
index 00000000..bf1f7c24
Binary files /dev/null and b/static/icons/06006B5B.png differ
diff --git a/static/icons/06006B5C.png b/static/icons/06006B5C.png
new file mode 100755
index 00000000..ec30aa2b
Binary files /dev/null and b/static/icons/06006B5C.png differ
diff --git a/static/icons/06006B5D.png b/static/icons/06006B5D.png
new file mode 100755
index 00000000..8e63d937
Binary files /dev/null and b/static/icons/06006B5D.png differ
diff --git a/static/icons/06006B5E.png b/static/icons/06006B5E.png
new file mode 100755
index 00000000..ce3d5610
Binary files /dev/null and b/static/icons/06006B5E.png differ
diff --git a/static/icons/06006B5F.png b/static/icons/06006B5F.png
new file mode 100755
index 00000000..d2c41a2c
Binary files /dev/null and b/static/icons/06006B5F.png differ
diff --git a/static/icons/06006B60.png b/static/icons/06006B60.png
new file mode 100755
index 00000000..9cc334ec
Binary files /dev/null and b/static/icons/06006B60.png differ
diff --git a/static/icons/06006B61.png b/static/icons/06006B61.png
new file mode 100755
index 00000000..6608a862
Binary files /dev/null and b/static/icons/06006B61.png differ
diff --git a/static/icons/06006B62.png b/static/icons/06006B62.png
new file mode 100755
index 00000000..0c78aa70
Binary files /dev/null and b/static/icons/06006B62.png differ
diff --git a/static/icons/06006B63.png b/static/icons/06006B63.png
new file mode 100755
index 00000000..dabd1ec3
Binary files /dev/null and b/static/icons/06006B63.png differ
diff --git a/static/icons/06006B64.png b/static/icons/06006B64.png
new file mode 100755
index 00000000..9cb58bfc
Binary files /dev/null and b/static/icons/06006B64.png differ
diff --git a/static/icons/06006B65.png b/static/icons/06006B65.png
new file mode 100755
index 00000000..f06d25de
Binary files /dev/null and b/static/icons/06006B65.png differ
diff --git a/static/icons/06006B66.png b/static/icons/06006B66.png
new file mode 100755
index 00000000..62faf2c5
Binary files /dev/null and b/static/icons/06006B66.png differ
diff --git a/static/icons/06006B67.png b/static/icons/06006B67.png
new file mode 100755
index 00000000..0596e7ab
Binary files /dev/null and b/static/icons/06006B67.png differ
diff --git a/static/icons/06006B68.png b/static/icons/06006B68.png
new file mode 100755
index 00000000..df3ef6f7
Binary files /dev/null and b/static/icons/06006B68.png differ
diff --git a/static/icons/06006B69.png b/static/icons/06006B69.png
new file mode 100755
index 00000000..a1bfad75
Binary files /dev/null and b/static/icons/06006B69.png differ
diff --git a/static/icons/06006B6A.png b/static/icons/06006B6A.png
new file mode 100755
index 00000000..c672f367
Binary files /dev/null and b/static/icons/06006B6A.png differ
diff --git a/static/icons/06006B6B.png b/static/icons/06006B6B.png
new file mode 100755
index 00000000..acee297f
Binary files /dev/null and b/static/icons/06006B6B.png differ
diff --git a/static/icons/06006B6C.png b/static/icons/06006B6C.png
new file mode 100755
index 00000000..eb233720
Binary files /dev/null and b/static/icons/06006B6C.png differ
diff --git a/static/icons/06006B6D.png b/static/icons/06006B6D.png
new file mode 100755
index 00000000..dd314cd9
Binary files /dev/null and b/static/icons/06006B6D.png differ
diff --git a/static/icons/06006B6E.png b/static/icons/06006B6E.png
new file mode 100755
index 00000000..a3563a6b
Binary files /dev/null and b/static/icons/06006B6E.png differ
diff --git a/static/icons/06006B6F.png b/static/icons/06006B6F.png
new file mode 100755
index 00000000..3d5d2af5
Binary files /dev/null and b/static/icons/06006B6F.png differ
diff --git a/static/icons/06006B70.png b/static/icons/06006B70.png
new file mode 100755
index 00000000..b9cf6467
Binary files /dev/null and b/static/icons/06006B70.png differ
diff --git a/static/icons/06006B71.png b/static/icons/06006B71.png
new file mode 100755
index 00000000..8b40acac
Binary files /dev/null and b/static/icons/06006B71.png differ
diff --git a/static/icons/06006B72.png b/static/icons/06006B72.png
new file mode 100755
index 00000000..f25c0326
Binary files /dev/null and b/static/icons/06006B72.png differ
diff --git a/static/icons/06006B73.png b/static/icons/06006B73.png
new file mode 100755
index 00000000..a4827418
Binary files /dev/null and b/static/icons/06006B73.png differ
diff --git a/static/icons/06006B74.png b/static/icons/06006B74.png
new file mode 100755
index 00000000..8fabf004
Binary files /dev/null and b/static/icons/06006B74.png differ
diff --git a/static/icons/06006B75.png b/static/icons/06006B75.png
new file mode 100755
index 00000000..49e28be1
Binary files /dev/null and b/static/icons/06006B75.png differ
diff --git a/static/icons/06006B76.png b/static/icons/06006B76.png
new file mode 100755
index 00000000..a8646471
Binary files /dev/null and b/static/icons/06006B76.png differ
diff --git a/static/icons/06006B77.png b/static/icons/06006B77.png
new file mode 100755
index 00000000..b8ed8a22
Binary files /dev/null and b/static/icons/06006B77.png differ
diff --git a/static/icons/06006B78.png b/static/icons/06006B78.png
new file mode 100755
index 00000000..b53ee8d2
Binary files /dev/null and b/static/icons/06006B78.png differ
diff --git a/static/icons/06006B79.png b/static/icons/06006B79.png
new file mode 100755
index 00000000..8adb833a
Binary files /dev/null and b/static/icons/06006B79.png differ
diff --git a/static/icons/06006B7A.png b/static/icons/06006B7A.png
new file mode 100755
index 00000000..a2154382
Binary files /dev/null and b/static/icons/06006B7A.png differ
diff --git a/static/icons/06006B7B.png b/static/icons/06006B7B.png
new file mode 100755
index 00000000..8ccd9ab9
Binary files /dev/null and b/static/icons/06006B7B.png differ
diff --git a/static/icons/06006B7C.png b/static/icons/06006B7C.png
new file mode 100755
index 00000000..44d95925
Binary files /dev/null and b/static/icons/06006B7C.png differ
diff --git a/static/icons/06006B7D.png b/static/icons/06006B7D.png
new file mode 100755
index 00000000..8f8f611f
Binary files /dev/null and b/static/icons/06006B7D.png differ
diff --git a/static/icons/06006B7E.png b/static/icons/06006B7E.png
new file mode 100755
index 00000000..db6de4bf
Binary files /dev/null and b/static/icons/06006B7E.png differ
diff --git a/static/icons/06006B7F.png b/static/icons/06006B7F.png
new file mode 100755
index 00000000..0886d803
Binary files /dev/null and b/static/icons/06006B7F.png differ
diff --git a/static/icons/06006B80.png b/static/icons/06006B80.png
new file mode 100755
index 00000000..bc03cf79
Binary files /dev/null and b/static/icons/06006B80.png differ
diff --git a/static/icons/06006B81.png b/static/icons/06006B81.png
new file mode 100755
index 00000000..74abc2bf
Binary files /dev/null and b/static/icons/06006B81.png differ
diff --git a/static/icons/06006B82.png b/static/icons/06006B82.png
new file mode 100755
index 00000000..c420804c
Binary files /dev/null and b/static/icons/06006B82.png differ
diff --git a/static/icons/06006B83.png b/static/icons/06006B83.png
new file mode 100755
index 00000000..560938f4
Binary files /dev/null and b/static/icons/06006B83.png differ
diff --git a/static/icons/06006B84.png b/static/icons/06006B84.png
new file mode 100755
index 00000000..3d461438
Binary files /dev/null and b/static/icons/06006B84.png differ
diff --git a/static/icons/06006B85.png b/static/icons/06006B85.png
new file mode 100755
index 00000000..1f8e846e
Binary files /dev/null and b/static/icons/06006B85.png differ
diff --git a/static/icons/06006B86.png b/static/icons/06006B86.png
new file mode 100755
index 00000000..2ad22729
Binary files /dev/null and b/static/icons/06006B86.png differ
diff --git a/static/icons/06006B87.png b/static/icons/06006B87.png
new file mode 100755
index 00000000..12a2bf85
Binary files /dev/null and b/static/icons/06006B87.png differ
diff --git a/static/icons/06006B88.png b/static/icons/06006B88.png
new file mode 100755
index 00000000..a8a323b2
Binary files /dev/null and b/static/icons/06006B88.png differ
diff --git a/static/icons/06006B89.png b/static/icons/06006B89.png
new file mode 100755
index 00000000..0b326318
Binary files /dev/null and b/static/icons/06006B89.png differ
diff --git a/static/icons/06006B8A.png b/static/icons/06006B8A.png
new file mode 100755
index 00000000..d77b8457
Binary files /dev/null and b/static/icons/06006B8A.png differ
diff --git a/static/icons/06006B8B.png b/static/icons/06006B8B.png
new file mode 100755
index 00000000..b7c2e3e7
Binary files /dev/null and b/static/icons/06006B8B.png differ
diff --git a/static/icons/06006B8C.png b/static/icons/06006B8C.png
new file mode 100755
index 00000000..a2b62d3e
Binary files /dev/null and b/static/icons/06006B8C.png differ
diff --git a/static/icons/06006B8D.png b/static/icons/06006B8D.png
new file mode 100755
index 00000000..a364e835
Binary files /dev/null and b/static/icons/06006B8D.png differ
diff --git a/static/icons/06006B8E.png b/static/icons/06006B8E.png
new file mode 100755
index 00000000..d22c9dd0
Binary files /dev/null and b/static/icons/06006B8E.png differ
diff --git a/static/icons/06006B8F.png b/static/icons/06006B8F.png
new file mode 100755
index 00000000..ca206646
Binary files /dev/null and b/static/icons/06006B8F.png differ
diff --git a/static/icons/06006B90.png b/static/icons/06006B90.png
new file mode 100755
index 00000000..c62ff1c1
Binary files /dev/null and b/static/icons/06006B90.png differ
diff --git a/static/icons/06006B91.png b/static/icons/06006B91.png
new file mode 100755
index 00000000..d34075ee
Binary files /dev/null and b/static/icons/06006B91.png differ
diff --git a/static/icons/06006B92.png b/static/icons/06006B92.png
new file mode 100755
index 00000000..3f6157c0
Binary files /dev/null and b/static/icons/06006B92.png differ
diff --git a/static/icons/06006B93.png b/static/icons/06006B93.png
new file mode 100755
index 00000000..f2ed589c
Binary files /dev/null and b/static/icons/06006B93.png differ
diff --git a/static/icons/06006B94.png b/static/icons/06006B94.png
new file mode 100755
index 00000000..ef3e7ee1
Binary files /dev/null and b/static/icons/06006B94.png differ
diff --git a/static/icons/06006B95.png b/static/icons/06006B95.png
new file mode 100755
index 00000000..c7f15c61
Binary files /dev/null and b/static/icons/06006B95.png differ
diff --git a/static/icons/06006B96.png b/static/icons/06006B96.png
new file mode 100755
index 00000000..1863b43d
Binary files /dev/null and b/static/icons/06006B96.png differ
diff --git a/static/icons/06006B97.png b/static/icons/06006B97.png
new file mode 100755
index 00000000..bc28c617
Binary files /dev/null and b/static/icons/06006B97.png differ
diff --git a/static/icons/06006B98.png b/static/icons/06006B98.png
new file mode 100755
index 00000000..dc348c94
Binary files /dev/null and b/static/icons/06006B98.png differ
diff --git a/static/icons/06006B99.png b/static/icons/06006B99.png
new file mode 100755
index 00000000..7e64595c
Binary files /dev/null and b/static/icons/06006B99.png differ
diff --git a/static/icons/06006B9A.png b/static/icons/06006B9A.png
new file mode 100755
index 00000000..fa0d7eef
Binary files /dev/null and b/static/icons/06006B9A.png differ
diff --git a/static/icons/06006B9B.png b/static/icons/06006B9B.png
new file mode 100755
index 00000000..5a69b2b9
Binary files /dev/null and b/static/icons/06006B9B.png differ
diff --git a/static/icons/06006B9C.png b/static/icons/06006B9C.png
new file mode 100755
index 00000000..e84ba9af
Binary files /dev/null and b/static/icons/06006B9C.png differ
diff --git a/static/icons/06006B9D.png b/static/icons/06006B9D.png
new file mode 100755
index 00000000..38ef381d
Binary files /dev/null and b/static/icons/06006B9D.png differ
diff --git a/static/icons/06006B9E.png b/static/icons/06006B9E.png
new file mode 100755
index 00000000..bd02e1f2
Binary files /dev/null and b/static/icons/06006B9E.png differ
diff --git a/static/icons/06006B9F.png b/static/icons/06006B9F.png
new file mode 100755
index 00000000..c89be1f8
Binary files /dev/null and b/static/icons/06006B9F.png differ
diff --git a/static/icons/06006BA0.png b/static/icons/06006BA0.png
new file mode 100755
index 00000000..fbe69d8a
Binary files /dev/null and b/static/icons/06006BA0.png differ
diff --git a/static/icons/06006BA1.png b/static/icons/06006BA1.png
new file mode 100755
index 00000000..e722c1ac
Binary files /dev/null and b/static/icons/06006BA1.png differ
diff --git a/static/icons/06006BA2.png b/static/icons/06006BA2.png
new file mode 100755
index 00000000..8e5ca513
Binary files /dev/null and b/static/icons/06006BA2.png differ
diff --git a/static/icons/06006BA3.png b/static/icons/06006BA3.png
new file mode 100755
index 00000000..9f7e60e8
Binary files /dev/null and b/static/icons/06006BA3.png differ
diff --git a/static/icons/06006BA4.png b/static/icons/06006BA4.png
new file mode 100755
index 00000000..9f7e60e8
Binary files /dev/null and b/static/icons/06006BA4.png differ
diff --git a/static/icons/06006BA5.png b/static/icons/06006BA5.png
new file mode 100755
index 00000000..d6194c1f
Binary files /dev/null and b/static/icons/06006BA5.png differ
diff --git a/static/icons/06006BA6.png b/static/icons/06006BA6.png
new file mode 100755
index 00000000..db5550e6
Binary files /dev/null and b/static/icons/06006BA6.png differ
diff --git a/static/icons/06006BA7.png b/static/icons/06006BA7.png
new file mode 100755
index 00000000..c410b41e
Binary files /dev/null and b/static/icons/06006BA7.png differ
diff --git a/static/icons/06006BA8.png b/static/icons/06006BA8.png
new file mode 100755
index 00000000..45033a82
Binary files /dev/null and b/static/icons/06006BA8.png differ
diff --git a/static/icons/06006BA9.png b/static/icons/06006BA9.png
new file mode 100755
index 00000000..1037f1fe
Binary files /dev/null and b/static/icons/06006BA9.png differ
diff --git a/static/icons/06006BAA.png b/static/icons/06006BAA.png
new file mode 100755
index 00000000..ca88dd81
Binary files /dev/null and b/static/icons/06006BAA.png differ
diff --git a/static/icons/06006BAB.png b/static/icons/06006BAB.png
new file mode 100755
index 00000000..501a6c90
Binary files /dev/null and b/static/icons/06006BAB.png differ
diff --git a/static/icons/06006BAC.png b/static/icons/06006BAC.png
new file mode 100755
index 00000000..24d40d2f
Binary files /dev/null and b/static/icons/06006BAC.png differ
diff --git a/static/icons/06006BAD.png b/static/icons/06006BAD.png
new file mode 100755
index 00000000..a4932e54
Binary files /dev/null and b/static/icons/06006BAD.png differ
diff --git a/static/icons/06006BAE.png b/static/icons/06006BAE.png
new file mode 100755
index 00000000..e7050173
Binary files /dev/null and b/static/icons/06006BAE.png differ
diff --git a/static/icons/06006BAF.png b/static/icons/06006BAF.png
new file mode 100755
index 00000000..a30a34e6
Binary files /dev/null and b/static/icons/06006BAF.png differ
diff --git a/static/icons/06006BB0.png b/static/icons/06006BB0.png
new file mode 100755
index 00000000..365b9097
Binary files /dev/null and b/static/icons/06006BB0.png differ
diff --git a/static/icons/06006BB1.png b/static/icons/06006BB1.png
new file mode 100755
index 00000000..f852f822
Binary files /dev/null and b/static/icons/06006BB1.png differ
diff --git a/static/icons/06006BB2.png b/static/icons/06006BB2.png
new file mode 100755
index 00000000..70e67d9d
Binary files /dev/null and b/static/icons/06006BB2.png differ
diff --git a/static/icons/06006BB3.png b/static/icons/06006BB3.png
new file mode 100755
index 00000000..61c3d8e7
Binary files /dev/null and b/static/icons/06006BB3.png differ
diff --git a/static/icons/06006BB4.png b/static/icons/06006BB4.png
new file mode 100755
index 00000000..0830780b
Binary files /dev/null and b/static/icons/06006BB4.png differ
diff --git a/static/icons/06006BB5.png b/static/icons/06006BB5.png
new file mode 100755
index 00000000..9361a96b
Binary files /dev/null and b/static/icons/06006BB5.png differ
diff --git a/static/icons/06006BB6.png b/static/icons/06006BB6.png
new file mode 100755
index 00000000..cb23ce6b
Binary files /dev/null and b/static/icons/06006BB6.png differ
diff --git a/static/icons/06006BB7.png b/static/icons/06006BB7.png
new file mode 100755
index 00000000..0c77d405
Binary files /dev/null and b/static/icons/06006BB7.png differ
diff --git a/static/icons/06006BB8.png b/static/icons/06006BB8.png
new file mode 100755
index 00000000..4e07c22b
Binary files /dev/null and b/static/icons/06006BB8.png differ
diff --git a/static/icons/06006BB9.png b/static/icons/06006BB9.png
new file mode 100755
index 00000000..a4ccde4d
Binary files /dev/null and b/static/icons/06006BB9.png differ
diff --git a/static/icons/06006BBA.png b/static/icons/06006BBA.png
new file mode 100755
index 00000000..be3ab8bd
Binary files /dev/null and b/static/icons/06006BBA.png differ
diff --git a/static/icons/06006BBB.png b/static/icons/06006BBB.png
new file mode 100755
index 00000000..876065ec
Binary files /dev/null and b/static/icons/06006BBB.png differ
diff --git a/static/icons/06006BBC.png b/static/icons/06006BBC.png
new file mode 100755
index 00000000..2fa728c3
Binary files /dev/null and b/static/icons/06006BBC.png differ
diff --git a/static/icons/06006BBD.png b/static/icons/06006BBD.png
new file mode 100755
index 00000000..ee7070be
Binary files /dev/null and b/static/icons/06006BBD.png differ
diff --git a/static/icons/06006BC0.png b/static/icons/06006BC0.png
new file mode 100755
index 00000000..1bdc434f
Binary files /dev/null and b/static/icons/06006BC0.png differ
diff --git a/static/icons/06006BC1.png b/static/icons/06006BC1.png
new file mode 100755
index 00000000..38872e59
Binary files /dev/null and b/static/icons/06006BC1.png differ
diff --git a/static/icons/06006BC2.png b/static/icons/06006BC2.png
new file mode 100755
index 00000000..223ab605
Binary files /dev/null and b/static/icons/06006BC2.png differ
diff --git a/static/icons/06006BC3.png b/static/icons/06006BC3.png
new file mode 100755
index 00000000..f89e80f0
Binary files /dev/null and b/static/icons/06006BC3.png differ
diff --git a/static/icons/06006BC4.png b/static/icons/06006BC4.png
new file mode 100755
index 00000000..c1df6117
Binary files /dev/null and b/static/icons/06006BC4.png differ
diff --git a/static/icons/06006BC5.png b/static/icons/06006BC5.png
new file mode 100755
index 00000000..ddc0a2fe
Binary files /dev/null and b/static/icons/06006BC5.png differ
diff --git a/static/icons/06006BC6.png b/static/icons/06006BC6.png
new file mode 100755
index 00000000..16904d38
Binary files /dev/null and b/static/icons/06006BC6.png differ
diff --git a/static/icons/06006BC7.png b/static/icons/06006BC7.png
new file mode 100755
index 00000000..447177dd
Binary files /dev/null and b/static/icons/06006BC7.png differ
diff --git a/static/icons/06006BC8.png b/static/icons/06006BC8.png
new file mode 100755
index 00000000..edad1dfa
Binary files /dev/null and b/static/icons/06006BC8.png differ
diff --git a/static/icons/06006BC9.png b/static/icons/06006BC9.png
new file mode 100755
index 00000000..c9e00163
Binary files /dev/null and b/static/icons/06006BC9.png differ
diff --git a/static/icons/06006BCA.png b/static/icons/06006BCA.png
new file mode 100755
index 00000000..46f8c2f5
Binary files /dev/null and b/static/icons/06006BCA.png differ
diff --git a/static/icons/06006BCB.png b/static/icons/06006BCB.png
new file mode 100755
index 00000000..9b099450
Binary files /dev/null and b/static/icons/06006BCB.png differ
diff --git a/static/icons/06006BCC.png b/static/icons/06006BCC.png
new file mode 100755
index 00000000..42745837
Binary files /dev/null and b/static/icons/06006BCC.png differ
diff --git a/static/icons/06006BCD.png b/static/icons/06006BCD.png
new file mode 100755
index 00000000..60c93d3b
Binary files /dev/null and b/static/icons/06006BCD.png differ
diff --git a/static/icons/06006BCE.png b/static/icons/06006BCE.png
new file mode 100755
index 00000000..f900b927
Binary files /dev/null and b/static/icons/06006BCE.png differ
diff --git a/static/icons/06006BCF.png b/static/icons/06006BCF.png
new file mode 100755
index 00000000..5428043b
Binary files /dev/null and b/static/icons/06006BCF.png differ
diff --git a/static/icons/06006BD0.png b/static/icons/06006BD0.png
new file mode 100755
index 00000000..f37646dd
Binary files /dev/null and b/static/icons/06006BD0.png differ
diff --git a/static/icons/06006BD1.png b/static/icons/06006BD1.png
new file mode 100755
index 00000000..e1902fd2
Binary files /dev/null and b/static/icons/06006BD1.png differ
diff --git a/static/icons/06006BD2.png b/static/icons/06006BD2.png
new file mode 100755
index 00000000..bec3daa2
Binary files /dev/null and b/static/icons/06006BD2.png differ
diff --git a/static/icons/06006BD3.png b/static/icons/06006BD3.png
new file mode 100755
index 00000000..78bb9dc1
Binary files /dev/null and b/static/icons/06006BD3.png differ
diff --git a/static/icons/06006BD4.png b/static/icons/06006BD4.png
new file mode 100755
index 00000000..43813a87
Binary files /dev/null and b/static/icons/06006BD4.png differ
diff --git a/static/icons/06006BD5.png b/static/icons/06006BD5.png
new file mode 100755
index 00000000..370ba808
Binary files /dev/null and b/static/icons/06006BD5.png differ
diff --git a/static/icons/06006BD6.png b/static/icons/06006BD6.png
new file mode 100755
index 00000000..892516fb
Binary files /dev/null and b/static/icons/06006BD6.png differ
diff --git a/static/icons/06006BD7.png b/static/icons/06006BD7.png
new file mode 100755
index 00000000..26551ac0
Binary files /dev/null and b/static/icons/06006BD7.png differ
diff --git a/static/icons/06006BDA.png b/static/icons/06006BDA.png
new file mode 100755
index 00000000..d353c29e
Binary files /dev/null and b/static/icons/06006BDA.png differ
diff --git a/static/icons/06006BDB.png b/static/icons/06006BDB.png
new file mode 100755
index 00000000..ef0587fe
Binary files /dev/null and b/static/icons/06006BDB.png differ
diff --git a/static/icons/06006BDC.png b/static/icons/06006BDC.png
new file mode 100755
index 00000000..12e13132
Binary files /dev/null and b/static/icons/06006BDC.png differ
diff --git a/static/icons/06006BDD.png b/static/icons/06006BDD.png
new file mode 100755
index 00000000..866c73ce
Binary files /dev/null and b/static/icons/06006BDD.png differ
diff --git a/static/icons/06006BDE.png b/static/icons/06006BDE.png
new file mode 100755
index 00000000..5f327f51
Binary files /dev/null and b/static/icons/06006BDE.png differ
diff --git a/static/icons/06006BDF.png b/static/icons/06006BDF.png
new file mode 100755
index 00000000..23ecc248
Binary files /dev/null and b/static/icons/06006BDF.png differ
diff --git a/static/icons/06006BE0.png b/static/icons/06006BE0.png
new file mode 100755
index 00000000..8be4cb40
Binary files /dev/null and b/static/icons/06006BE0.png differ
diff --git a/static/icons/06006BE1.png b/static/icons/06006BE1.png
new file mode 100755
index 00000000..039a992b
Binary files /dev/null and b/static/icons/06006BE1.png differ
diff --git a/static/icons/06006BE2.png b/static/icons/06006BE2.png
new file mode 100755
index 00000000..b73b5b6f
Binary files /dev/null and b/static/icons/06006BE2.png differ
diff --git a/static/icons/06006BE3.png b/static/icons/06006BE3.png
new file mode 100755
index 00000000..15e671b1
Binary files /dev/null and b/static/icons/06006BE3.png differ
diff --git a/static/icons/06006BE4.png b/static/icons/06006BE4.png
new file mode 100755
index 00000000..bb9ab108
Binary files /dev/null and b/static/icons/06006BE4.png differ
diff --git a/static/icons/06006BE5.png b/static/icons/06006BE5.png
new file mode 100755
index 00000000..9da22108
Binary files /dev/null and b/static/icons/06006BE5.png differ
diff --git a/static/icons/06006BE6.png b/static/icons/06006BE6.png
new file mode 100755
index 00000000..a975f8cd
Binary files /dev/null and b/static/icons/06006BE6.png differ
diff --git a/static/icons/06006BE7.png b/static/icons/06006BE7.png
new file mode 100755
index 00000000..1555fe16
Binary files /dev/null and b/static/icons/06006BE7.png differ
diff --git a/static/icons/06006BE8.png b/static/icons/06006BE8.png
new file mode 100755
index 00000000..623c939c
Binary files /dev/null and b/static/icons/06006BE8.png differ
diff --git a/static/icons/06006BE9.png b/static/icons/06006BE9.png
new file mode 100755
index 00000000..e2d6b2ad
Binary files /dev/null and b/static/icons/06006BE9.png differ
diff --git a/static/icons/06006BEF.png b/static/icons/06006BEF.png
new file mode 100755
index 00000000..3c5ee5f4
Binary files /dev/null and b/static/icons/06006BEF.png differ
diff --git a/static/icons/06006BF0.png b/static/icons/06006BF0.png
new file mode 100755
index 00000000..bb9cf8e4
Binary files /dev/null and b/static/icons/06006BF0.png differ
diff --git a/static/icons/06006BF1.png b/static/icons/06006BF1.png
new file mode 100755
index 00000000..ea0f6101
Binary files /dev/null and b/static/icons/06006BF1.png differ
diff --git a/static/icons/06006BF2.png b/static/icons/06006BF2.png
new file mode 100755
index 00000000..d320f079
Binary files /dev/null and b/static/icons/06006BF2.png differ
diff --git a/static/icons/06006BF3.png b/static/icons/06006BF3.png
new file mode 100755
index 00000000..3e31b48e
Binary files /dev/null and b/static/icons/06006BF3.png differ
diff --git a/static/icons/06006BF4.png b/static/icons/06006BF4.png
new file mode 100755
index 00000000..41ef0971
Binary files /dev/null and b/static/icons/06006BF4.png differ
diff --git a/static/icons/06006BFD.png b/static/icons/06006BFD.png
new file mode 100755
index 00000000..d96ef0cd
Binary files /dev/null and b/static/icons/06006BFD.png differ
diff --git a/static/icons/06006BFE.png b/static/icons/06006BFE.png
new file mode 100755
index 00000000..a45db7c1
Binary files /dev/null and b/static/icons/06006BFE.png differ
diff --git a/static/icons/06006BFF.png b/static/icons/06006BFF.png
new file mode 100755
index 00000000..87548221
Binary files /dev/null and b/static/icons/06006BFF.png differ
diff --git a/static/icons/06006C00.png b/static/icons/06006C00.png
new file mode 100755
index 00000000..b0bd17b9
Binary files /dev/null and b/static/icons/06006C00.png differ
diff --git a/static/icons/06006C01.png b/static/icons/06006C01.png
new file mode 100755
index 00000000..224e2ce5
Binary files /dev/null and b/static/icons/06006C01.png differ
diff --git a/static/icons/06006C02.png b/static/icons/06006C02.png
new file mode 100755
index 00000000..0e740058
Binary files /dev/null and b/static/icons/06006C02.png differ
diff --git a/static/icons/06006C03.png b/static/icons/06006C03.png
new file mode 100755
index 00000000..cc1b7825
Binary files /dev/null and b/static/icons/06006C03.png differ
diff --git a/static/icons/06006C04.png b/static/icons/06006C04.png
new file mode 100755
index 00000000..9c4a0c9c
Binary files /dev/null and b/static/icons/06006C04.png differ
diff --git a/static/icons/06006C05.png b/static/icons/06006C05.png
new file mode 100755
index 00000000..95274fa6
Binary files /dev/null and b/static/icons/06006C05.png differ
diff --git a/static/icons/06006C06.png b/static/icons/06006C06.png
new file mode 100755
index 00000000..2beb55ab
Binary files /dev/null and b/static/icons/06006C06.png differ
diff --git a/static/icons/06006C07.png b/static/icons/06006C07.png
new file mode 100755
index 00000000..d97f28bf
Binary files /dev/null and b/static/icons/06006C07.png differ
diff --git a/static/icons/06006C08.png b/static/icons/06006C08.png
new file mode 100755
index 00000000..f3c89378
Binary files /dev/null and b/static/icons/06006C08.png differ
diff --git a/static/icons/06006C0A.png b/static/icons/06006C0A.png
new file mode 100755
index 00000000..b46e4244
Binary files /dev/null and b/static/icons/06006C0A.png differ
diff --git a/static/icons/06006C0B.png b/static/icons/06006C0B.png
new file mode 100755
index 00000000..6484e276
Binary files /dev/null and b/static/icons/06006C0B.png differ
diff --git a/static/icons/06006C0C.png b/static/icons/06006C0C.png
new file mode 100755
index 00000000..21d5c370
Binary files /dev/null and b/static/icons/06006C0C.png differ
diff --git a/static/icons/06006C0D.png b/static/icons/06006C0D.png
new file mode 100755
index 00000000..dabb3f07
Binary files /dev/null and b/static/icons/06006C0D.png differ
diff --git a/static/icons/06006C0E.png b/static/icons/06006C0E.png
new file mode 100755
index 00000000..f718ecb2
Binary files /dev/null and b/static/icons/06006C0E.png differ
diff --git a/static/icons/06006C11.png b/static/icons/06006C11.png
new file mode 100755
index 00000000..48b6af4b
Binary files /dev/null and b/static/icons/06006C11.png differ
diff --git a/static/icons/06006C12.png b/static/icons/06006C12.png
new file mode 100755
index 00000000..20d48b36
Binary files /dev/null and b/static/icons/06006C12.png differ
diff --git a/static/icons/06006C13.png b/static/icons/06006C13.png
new file mode 100755
index 00000000..16a6e9c9
Binary files /dev/null and b/static/icons/06006C13.png differ
diff --git a/static/icons/06006C14.png b/static/icons/06006C14.png
new file mode 100755
index 00000000..d114521b
Binary files /dev/null and b/static/icons/06006C14.png differ
diff --git a/static/icons/06006C15.png b/static/icons/06006C15.png
new file mode 100755
index 00000000..5158c9c5
Binary files /dev/null and b/static/icons/06006C15.png differ
diff --git a/static/icons/06006C16.png b/static/icons/06006C16.png
new file mode 100755
index 00000000..a1bb8ae2
Binary files /dev/null and b/static/icons/06006C16.png differ
diff --git a/static/icons/06006C17.png b/static/icons/06006C17.png
new file mode 100755
index 00000000..b1b9e600
Binary files /dev/null and b/static/icons/06006C17.png differ
diff --git a/static/icons/06006C18.png b/static/icons/06006C18.png
new file mode 100755
index 00000000..6eda72d7
Binary files /dev/null and b/static/icons/06006C18.png differ
diff --git a/static/icons/06006C19.png b/static/icons/06006C19.png
new file mode 100755
index 00000000..9ec7db65
Binary files /dev/null and b/static/icons/06006C19.png differ
diff --git a/static/icons/06006C1A.png b/static/icons/06006C1A.png
new file mode 100755
index 00000000..e64276f0
Binary files /dev/null and b/static/icons/06006C1A.png differ
diff --git a/static/icons/06006C1B.png b/static/icons/06006C1B.png
new file mode 100755
index 00000000..d1bb0201
Binary files /dev/null and b/static/icons/06006C1B.png differ
diff --git a/static/icons/06006C1C.png b/static/icons/06006C1C.png
new file mode 100755
index 00000000..83812052
Binary files /dev/null and b/static/icons/06006C1C.png differ
diff --git a/static/icons/06006C1E.png b/static/icons/06006C1E.png
new file mode 100755
index 00000000..4aadc9e3
Binary files /dev/null and b/static/icons/06006C1E.png differ
diff --git a/static/icons/06006C1F.png b/static/icons/06006C1F.png
new file mode 100755
index 00000000..8160624c
Binary files /dev/null and b/static/icons/06006C1F.png differ
diff --git a/static/icons/06006C20.png b/static/icons/06006C20.png
new file mode 100755
index 00000000..d8f3cc5c
Binary files /dev/null and b/static/icons/06006C20.png differ
diff --git a/static/icons/06006C21.png b/static/icons/06006C21.png
new file mode 100755
index 00000000..2601bbe5
Binary files /dev/null and b/static/icons/06006C21.png differ
diff --git a/static/icons/06006C22.png b/static/icons/06006C22.png
new file mode 100755
index 00000000..b2620854
Binary files /dev/null and b/static/icons/06006C22.png differ
diff --git a/static/icons/06006C23.png b/static/icons/06006C23.png
new file mode 100755
index 00000000..25bebd5c
Binary files /dev/null and b/static/icons/06006C23.png differ
diff --git a/static/icons/06006C24.png b/static/icons/06006C24.png
new file mode 100755
index 00000000..b59dca85
Binary files /dev/null and b/static/icons/06006C24.png differ
diff --git a/static/icons/06006C25.png b/static/icons/06006C25.png
new file mode 100755
index 00000000..11d6d8b5
Binary files /dev/null and b/static/icons/06006C25.png differ
diff --git a/static/icons/06006C26.png b/static/icons/06006C26.png
new file mode 100755
index 00000000..5f593643
Binary files /dev/null and b/static/icons/06006C26.png differ
diff --git a/static/icons/06006C27.png b/static/icons/06006C27.png
new file mode 100755
index 00000000..c70d373f
Binary files /dev/null and b/static/icons/06006C27.png differ
diff --git a/static/icons/06006C28.png b/static/icons/06006C28.png
new file mode 100755
index 00000000..e0452dbd
Binary files /dev/null and b/static/icons/06006C28.png differ
diff --git a/static/icons/06006C33.png b/static/icons/06006C33.png
new file mode 100755
index 00000000..30b01c28
Binary files /dev/null and b/static/icons/06006C33.png differ
diff --git a/static/icons/06006C34.png b/static/icons/06006C34.png
new file mode 100755
index 00000000..1aa7ea49
Binary files /dev/null and b/static/icons/06006C34.png differ
diff --git a/static/icons/06006C35.png b/static/icons/06006C35.png
new file mode 100755
index 00000000..6d12079d
Binary files /dev/null and b/static/icons/06006C35.png differ
diff --git a/static/icons/06006C36.png b/static/icons/06006C36.png
new file mode 100755
index 00000000..96a01be7
Binary files /dev/null and b/static/icons/06006C36.png differ
diff --git a/static/icons/06006C37.png b/static/icons/06006C37.png
new file mode 100755
index 00000000..76a47100
Binary files /dev/null and b/static/icons/06006C37.png differ
diff --git a/static/icons/06006C38.png b/static/icons/06006C38.png
new file mode 100755
index 00000000..0274768b
Binary files /dev/null and b/static/icons/06006C38.png differ
diff --git a/static/icons/06006C39.png b/static/icons/06006C39.png
new file mode 100755
index 00000000..1bc97371
Binary files /dev/null and b/static/icons/06006C39.png differ
diff --git a/static/icons/06006C3A.png b/static/icons/06006C3A.png
new file mode 100755
index 00000000..401bfd15
Binary files /dev/null and b/static/icons/06006C3A.png differ
diff --git a/static/icons/06006C3B.png b/static/icons/06006C3B.png
new file mode 100755
index 00000000..7278d0f9
Binary files /dev/null and b/static/icons/06006C3B.png differ
diff --git a/static/icons/06006C3C.png b/static/icons/06006C3C.png
new file mode 100755
index 00000000..3dac82fb
Binary files /dev/null and b/static/icons/06006C3C.png differ
diff --git a/static/icons/06006C3D.png b/static/icons/06006C3D.png
new file mode 100755
index 00000000..c8e2dfcf
Binary files /dev/null and b/static/icons/06006C3D.png differ
diff --git a/static/icons/06006C3E.png b/static/icons/06006C3E.png
new file mode 100755
index 00000000..733ece85
Binary files /dev/null and b/static/icons/06006C3E.png differ
diff --git a/static/icons/06006C3F.png b/static/icons/06006C3F.png
new file mode 100755
index 00000000..aa8639b5
Binary files /dev/null and b/static/icons/06006C3F.png differ
diff --git a/static/icons/06006C40.png b/static/icons/06006C40.png
new file mode 100755
index 00000000..9ac590c9
Binary files /dev/null and b/static/icons/06006C40.png differ
diff --git a/static/icons/06006C41.png b/static/icons/06006C41.png
new file mode 100755
index 00000000..1b1c47af
Binary files /dev/null and b/static/icons/06006C41.png differ
diff --git a/static/icons/06006C42.png b/static/icons/06006C42.png
new file mode 100755
index 00000000..10e8736f
Binary files /dev/null and b/static/icons/06006C42.png differ
diff --git a/static/icons/06006C43.png b/static/icons/06006C43.png
new file mode 100755
index 00000000..f14da6aa
Binary files /dev/null and b/static/icons/06006C43.png differ
diff --git a/static/icons/06006C44.png b/static/icons/06006C44.png
new file mode 100755
index 00000000..ff8627a1
Binary files /dev/null and b/static/icons/06006C44.png differ
diff --git a/static/icons/06006C45.png b/static/icons/06006C45.png
new file mode 100755
index 00000000..b284387a
Binary files /dev/null and b/static/icons/06006C45.png differ
diff --git a/static/icons/06006C46.png b/static/icons/06006C46.png
new file mode 100755
index 00000000..fbac36fb
Binary files /dev/null and b/static/icons/06006C46.png differ
diff --git a/static/icons/06006C47.png b/static/icons/06006C47.png
new file mode 100755
index 00000000..602be714
Binary files /dev/null and b/static/icons/06006C47.png differ
diff --git a/static/icons/06006C48.png b/static/icons/06006C48.png
new file mode 100755
index 00000000..8ebe8c72
Binary files /dev/null and b/static/icons/06006C48.png differ
diff --git a/static/icons/06006C49.png b/static/icons/06006C49.png
new file mode 100755
index 00000000..1749c886
Binary files /dev/null and b/static/icons/06006C49.png differ
diff --git a/static/icons/06006C4A.png b/static/icons/06006C4A.png
new file mode 100755
index 00000000..f68895d9
Binary files /dev/null and b/static/icons/06006C4A.png differ
diff --git a/static/icons/06006C4B.png b/static/icons/06006C4B.png
new file mode 100755
index 00000000..236cda40
Binary files /dev/null and b/static/icons/06006C4B.png differ
diff --git a/static/icons/06006C4C.png b/static/icons/06006C4C.png
new file mode 100755
index 00000000..aa606575
Binary files /dev/null and b/static/icons/06006C4C.png differ
diff --git a/static/icons/06006C4D.png b/static/icons/06006C4D.png
new file mode 100755
index 00000000..c80a2e3a
Binary files /dev/null and b/static/icons/06006C4D.png differ
diff --git a/static/icons/06006C4E.png b/static/icons/06006C4E.png
new file mode 100755
index 00000000..91c1ff40
Binary files /dev/null and b/static/icons/06006C4E.png differ
diff --git a/static/icons/06006C4F.png b/static/icons/06006C4F.png
new file mode 100755
index 00000000..33c49995
Binary files /dev/null and b/static/icons/06006C4F.png differ
diff --git a/static/icons/06006C50.png b/static/icons/06006C50.png
new file mode 100755
index 00000000..b149b699
Binary files /dev/null and b/static/icons/06006C50.png differ
diff --git a/static/icons/06006C51.png b/static/icons/06006C51.png
new file mode 100755
index 00000000..aba4e79f
Binary files /dev/null and b/static/icons/06006C51.png differ
diff --git a/static/icons/06006C52.png b/static/icons/06006C52.png
new file mode 100755
index 00000000..0b3c510c
Binary files /dev/null and b/static/icons/06006C52.png differ
diff --git a/static/icons/06006C53.png b/static/icons/06006C53.png
new file mode 100755
index 00000000..a917e955
Binary files /dev/null and b/static/icons/06006C53.png differ
diff --git a/static/icons/06006C54.png b/static/icons/06006C54.png
new file mode 100755
index 00000000..13ea9d05
Binary files /dev/null and b/static/icons/06006C54.png differ
diff --git a/static/icons/06006C55.png b/static/icons/06006C55.png
new file mode 100755
index 00000000..f3633f3b
Binary files /dev/null and b/static/icons/06006C55.png differ
diff --git a/static/icons/06006C56.png b/static/icons/06006C56.png
new file mode 100755
index 00000000..3168870a
Binary files /dev/null and b/static/icons/06006C56.png differ
diff --git a/static/icons/06006C57.png b/static/icons/06006C57.png
new file mode 100755
index 00000000..61cea752
Binary files /dev/null and b/static/icons/06006C57.png differ
diff --git a/static/icons/06006C58.png b/static/icons/06006C58.png
new file mode 100755
index 00000000..c23594cf
Binary files /dev/null and b/static/icons/06006C58.png differ
diff --git a/static/icons/06006C59.png b/static/icons/06006C59.png
new file mode 100755
index 00000000..3b27735b
Binary files /dev/null and b/static/icons/06006C59.png differ
diff --git a/static/icons/06006C5A.png b/static/icons/06006C5A.png
new file mode 100755
index 00000000..145908f0
Binary files /dev/null and b/static/icons/06006C5A.png differ
diff --git a/static/icons/06006C5B.png b/static/icons/06006C5B.png
new file mode 100755
index 00000000..902dd58e
Binary files /dev/null and b/static/icons/06006C5B.png differ
diff --git a/static/icons/06006C5C.png b/static/icons/06006C5C.png
new file mode 100755
index 00000000..68789e83
Binary files /dev/null and b/static/icons/06006C5C.png differ
diff --git a/static/icons/06006C5D.png b/static/icons/06006C5D.png
new file mode 100755
index 00000000..03c441b2
Binary files /dev/null and b/static/icons/06006C5D.png differ
diff --git a/static/icons/06006C5E.png b/static/icons/06006C5E.png
new file mode 100755
index 00000000..a59609fa
Binary files /dev/null and b/static/icons/06006C5E.png differ
diff --git a/static/icons/06006C5F.png b/static/icons/06006C5F.png
new file mode 100755
index 00000000..7439ab34
Binary files /dev/null and b/static/icons/06006C5F.png differ
diff --git a/static/icons/06006C60.png b/static/icons/06006C60.png
new file mode 100755
index 00000000..d8790c3e
Binary files /dev/null and b/static/icons/06006C60.png differ
diff --git a/static/icons/06006C61.png b/static/icons/06006C61.png
new file mode 100755
index 00000000..8abd961b
Binary files /dev/null and b/static/icons/06006C61.png differ
diff --git a/static/icons/06006C62.png b/static/icons/06006C62.png
new file mode 100755
index 00000000..5345a488
Binary files /dev/null and b/static/icons/06006C62.png differ
diff --git a/static/icons/06006C63.png b/static/icons/06006C63.png
new file mode 100755
index 00000000..6c14daed
Binary files /dev/null and b/static/icons/06006C63.png differ
diff --git a/static/icons/06006C64.png b/static/icons/06006C64.png
new file mode 100755
index 00000000..75b941bd
Binary files /dev/null and b/static/icons/06006C64.png differ
diff --git a/static/icons/06006C65.png b/static/icons/06006C65.png
new file mode 100755
index 00000000..d7f21d57
Binary files /dev/null and b/static/icons/06006C65.png differ
diff --git a/static/icons/06006C66.png b/static/icons/06006C66.png
new file mode 100755
index 00000000..b7f58417
Binary files /dev/null and b/static/icons/06006C66.png differ
diff --git a/static/icons/06006C67.png b/static/icons/06006C67.png
new file mode 100755
index 00000000..fce7e7ff
Binary files /dev/null and b/static/icons/06006C67.png differ
diff --git a/static/icons/06006C68.png b/static/icons/06006C68.png
new file mode 100755
index 00000000..6e6dbb5f
Binary files /dev/null and b/static/icons/06006C68.png differ
diff --git a/static/icons/06006C69.png b/static/icons/06006C69.png
new file mode 100755
index 00000000..44650012
Binary files /dev/null and b/static/icons/06006C69.png differ
diff --git a/static/icons/06006C6A.png b/static/icons/06006C6A.png
new file mode 100755
index 00000000..1c9525bb
Binary files /dev/null and b/static/icons/06006C6A.png differ
diff --git a/static/icons/06006C6B.png b/static/icons/06006C6B.png
new file mode 100755
index 00000000..6ec88c87
Binary files /dev/null and b/static/icons/06006C6B.png differ
diff --git a/static/icons/06006C6C.png b/static/icons/06006C6C.png
new file mode 100755
index 00000000..66319002
Binary files /dev/null and b/static/icons/06006C6C.png differ
diff --git a/static/icons/06006C76.png b/static/icons/06006C76.png
new file mode 100755
index 00000000..a8ddf85c
Binary files /dev/null and b/static/icons/06006C76.png differ
diff --git a/static/icons/06006C77.png b/static/icons/06006C77.png
new file mode 100755
index 00000000..a3ccb5a5
Binary files /dev/null and b/static/icons/06006C77.png differ
diff --git a/static/icons/06006C78.png b/static/icons/06006C78.png
new file mode 100755
index 00000000..ac4669c0
Binary files /dev/null and b/static/icons/06006C78.png differ
diff --git a/static/icons/06006C79.png b/static/icons/06006C79.png
new file mode 100755
index 00000000..79762a66
Binary files /dev/null and b/static/icons/06006C79.png differ
diff --git a/static/icons/06006C7A.png b/static/icons/06006C7A.png
new file mode 100755
index 00000000..b9524936
Binary files /dev/null and b/static/icons/06006C7A.png differ
diff --git a/static/icons/06006C7B.png b/static/icons/06006C7B.png
new file mode 100755
index 00000000..16d44d16
Binary files /dev/null and b/static/icons/06006C7B.png differ
diff --git a/static/icons/06006C7C.png b/static/icons/06006C7C.png
new file mode 100755
index 00000000..7827ea55
Binary files /dev/null and b/static/icons/06006C7C.png differ
diff --git a/static/icons/06006C7D.png b/static/icons/06006C7D.png
new file mode 100755
index 00000000..4154c984
Binary files /dev/null and b/static/icons/06006C7D.png differ
diff --git a/static/icons/06006C7E.png b/static/icons/06006C7E.png
new file mode 100755
index 00000000..d0a410e3
Binary files /dev/null and b/static/icons/06006C7E.png differ
diff --git a/static/icons/06006C7F.png b/static/icons/06006C7F.png
new file mode 100755
index 00000000..b4d14b32
Binary files /dev/null and b/static/icons/06006C7F.png differ
diff --git a/static/icons/06006C80.png b/static/icons/06006C80.png
new file mode 100755
index 00000000..2f5cc55e
Binary files /dev/null and b/static/icons/06006C80.png differ
diff --git a/static/icons/06006C81.png b/static/icons/06006C81.png
new file mode 100755
index 00000000..1fe08837
Binary files /dev/null and b/static/icons/06006C81.png differ
diff --git a/static/icons/06006C82.png b/static/icons/06006C82.png
new file mode 100755
index 00000000..d3db1c4f
Binary files /dev/null and b/static/icons/06006C82.png differ
diff --git a/static/icons/06006C83.png b/static/icons/06006C83.png
new file mode 100755
index 00000000..4f9e6a56
Binary files /dev/null and b/static/icons/06006C83.png differ
diff --git a/static/icons/06006C84.png b/static/icons/06006C84.png
new file mode 100755
index 00000000..8969d14b
Binary files /dev/null and b/static/icons/06006C84.png differ
diff --git a/static/icons/06006C85.png b/static/icons/06006C85.png
new file mode 100755
index 00000000..70d712b6
Binary files /dev/null and b/static/icons/06006C85.png differ
diff --git a/static/icons/06006C86.png b/static/icons/06006C86.png
new file mode 100755
index 00000000..f9d95822
Binary files /dev/null and b/static/icons/06006C86.png differ
diff --git a/static/icons/06006C87.png b/static/icons/06006C87.png
new file mode 100755
index 00000000..f3df5169
Binary files /dev/null and b/static/icons/06006C87.png differ
diff --git a/static/icons/06006C88.png b/static/icons/06006C88.png
new file mode 100755
index 00000000..5f0db7bb
Binary files /dev/null and b/static/icons/06006C88.png differ
diff --git a/static/icons/06006C89.png b/static/icons/06006C89.png
new file mode 100755
index 00000000..536c703b
Binary files /dev/null and b/static/icons/06006C89.png differ
diff --git a/static/icons/06006C8A.png b/static/icons/06006C8A.png
new file mode 100755
index 00000000..7d033444
Binary files /dev/null and b/static/icons/06006C8A.png differ
diff --git a/static/icons/06006C8B.png b/static/icons/06006C8B.png
new file mode 100755
index 00000000..461afe91
Binary files /dev/null and b/static/icons/06006C8B.png differ
diff --git a/static/icons/06006C8C.png b/static/icons/06006C8C.png
new file mode 100755
index 00000000..d1afb3fa
Binary files /dev/null and b/static/icons/06006C8C.png differ
diff --git a/static/icons/06006C8D.png b/static/icons/06006C8D.png
new file mode 100755
index 00000000..98f96ca2
Binary files /dev/null and b/static/icons/06006C8D.png differ
diff --git a/static/icons/06006C8E.png b/static/icons/06006C8E.png
new file mode 100755
index 00000000..0190066c
Binary files /dev/null and b/static/icons/06006C8E.png differ
diff --git a/static/icons/06006C8F.png b/static/icons/06006C8F.png
new file mode 100755
index 00000000..82c02b05
Binary files /dev/null and b/static/icons/06006C8F.png differ
diff --git a/static/icons/06006C90.png b/static/icons/06006C90.png
new file mode 100755
index 00000000..7d774cd7
Binary files /dev/null and b/static/icons/06006C90.png differ
diff --git a/static/icons/06006C91.png b/static/icons/06006C91.png
new file mode 100755
index 00000000..2b5eb5e0
Binary files /dev/null and b/static/icons/06006C91.png differ
diff --git a/static/icons/06006C92.png b/static/icons/06006C92.png
new file mode 100755
index 00000000..c637af72
Binary files /dev/null and b/static/icons/06006C92.png differ
diff --git a/static/icons/06006C93.png b/static/icons/06006C93.png
new file mode 100755
index 00000000..066d9e57
Binary files /dev/null and b/static/icons/06006C93.png differ
diff --git a/static/icons/06006C94.png b/static/icons/06006C94.png
new file mode 100755
index 00000000..3bf4750c
Binary files /dev/null and b/static/icons/06006C94.png differ
diff --git a/static/icons/06006C95.png b/static/icons/06006C95.png
new file mode 100755
index 00000000..b5fce713
Binary files /dev/null and b/static/icons/06006C95.png differ
diff --git a/static/icons/06006C96.png b/static/icons/06006C96.png
new file mode 100755
index 00000000..b17d97c8
Binary files /dev/null and b/static/icons/06006C96.png differ
diff --git a/static/icons/06006C97.png b/static/icons/06006C97.png
new file mode 100755
index 00000000..e0802645
Binary files /dev/null and b/static/icons/06006C97.png differ
diff --git a/static/icons/06006C98.png b/static/icons/06006C98.png
new file mode 100755
index 00000000..01d34b50
Binary files /dev/null and b/static/icons/06006C98.png differ
diff --git a/static/icons/06006C99.png b/static/icons/06006C99.png
new file mode 100755
index 00000000..1fbd4453
Binary files /dev/null and b/static/icons/06006C99.png differ
diff --git a/static/icons/06006C9A.png b/static/icons/06006C9A.png
new file mode 100755
index 00000000..91b37ba0
Binary files /dev/null and b/static/icons/06006C9A.png differ
diff --git a/static/icons/06006C9B.png b/static/icons/06006C9B.png
new file mode 100755
index 00000000..ce60884b
Binary files /dev/null and b/static/icons/06006C9B.png differ
diff --git a/static/icons/06006C9C.png b/static/icons/06006C9C.png
new file mode 100755
index 00000000..b0dc7ffc
Binary files /dev/null and b/static/icons/06006C9C.png differ
diff --git a/static/icons/06006C9D.png b/static/icons/06006C9D.png
new file mode 100755
index 00000000..b19849e9
Binary files /dev/null and b/static/icons/06006C9D.png differ
diff --git a/static/icons/06006C9E.png b/static/icons/06006C9E.png
new file mode 100755
index 00000000..3a6445b8
Binary files /dev/null and b/static/icons/06006C9E.png differ
diff --git a/static/icons/06006C9F.png b/static/icons/06006C9F.png
new file mode 100755
index 00000000..ca5f1279
Binary files /dev/null and b/static/icons/06006C9F.png differ
diff --git a/static/icons/06006CA0.png b/static/icons/06006CA0.png
new file mode 100755
index 00000000..9c8dbf67
Binary files /dev/null and b/static/icons/06006CA0.png differ
diff --git a/static/icons/06006CA1.png b/static/icons/06006CA1.png
new file mode 100755
index 00000000..6cfcf8fc
Binary files /dev/null and b/static/icons/06006CA1.png differ
diff --git a/static/icons/06006CA2.png b/static/icons/06006CA2.png
new file mode 100755
index 00000000..185bdce7
Binary files /dev/null and b/static/icons/06006CA2.png differ
diff --git a/static/icons/06006CA3.png b/static/icons/06006CA3.png
new file mode 100755
index 00000000..b80b4997
Binary files /dev/null and b/static/icons/06006CA3.png differ
diff --git a/static/icons/06006CA4.png b/static/icons/06006CA4.png
new file mode 100755
index 00000000..ecfc13f1
Binary files /dev/null and b/static/icons/06006CA4.png differ
diff --git a/static/icons/06006CA5.png b/static/icons/06006CA5.png
new file mode 100755
index 00000000..b074ff6f
Binary files /dev/null and b/static/icons/06006CA5.png differ
diff --git a/static/icons/06006CA6.png b/static/icons/06006CA6.png
new file mode 100755
index 00000000..a74a4e13
Binary files /dev/null and b/static/icons/06006CA6.png differ
diff --git a/static/icons/06006CA7.png b/static/icons/06006CA7.png
new file mode 100755
index 00000000..653376a7
Binary files /dev/null and b/static/icons/06006CA7.png differ
diff --git a/static/icons/06006CA8.png b/static/icons/06006CA8.png
new file mode 100755
index 00000000..b0f61cc1
Binary files /dev/null and b/static/icons/06006CA8.png differ
diff --git a/static/icons/06006CA9.png b/static/icons/06006CA9.png
new file mode 100755
index 00000000..1032155c
Binary files /dev/null and b/static/icons/06006CA9.png differ
diff --git a/static/icons/06006CAA.png b/static/icons/06006CAA.png
new file mode 100755
index 00000000..3ec8d07c
Binary files /dev/null and b/static/icons/06006CAA.png differ
diff --git a/static/icons/06006CAB.png b/static/icons/06006CAB.png
new file mode 100755
index 00000000..dfee7335
Binary files /dev/null and b/static/icons/06006CAB.png differ
diff --git a/static/icons/06006CAC.png b/static/icons/06006CAC.png
new file mode 100755
index 00000000..bd93a68f
Binary files /dev/null and b/static/icons/06006CAC.png differ
diff --git a/static/icons/06006CAD.png b/static/icons/06006CAD.png
new file mode 100755
index 00000000..c675aa4c
Binary files /dev/null and b/static/icons/06006CAD.png differ
diff --git a/static/icons/06006CAE.png b/static/icons/06006CAE.png
new file mode 100755
index 00000000..5e6c4e10
Binary files /dev/null and b/static/icons/06006CAE.png differ
diff --git a/static/icons/06006CAF.png b/static/icons/06006CAF.png
new file mode 100755
index 00000000..b68195c1
Binary files /dev/null and b/static/icons/06006CAF.png differ
diff --git a/static/icons/06006CB0.png b/static/icons/06006CB0.png
new file mode 100755
index 00000000..a45618fd
Binary files /dev/null and b/static/icons/06006CB0.png differ
diff --git a/static/icons/06006CB1.png b/static/icons/06006CB1.png
new file mode 100755
index 00000000..1eaf9a1f
Binary files /dev/null and b/static/icons/06006CB1.png differ
diff --git a/static/icons/06006CB2.png b/static/icons/06006CB2.png
new file mode 100755
index 00000000..03a1ab53
Binary files /dev/null and b/static/icons/06006CB2.png differ
diff --git a/static/icons/06006CB3.png b/static/icons/06006CB3.png
new file mode 100755
index 00000000..a8788c4e
Binary files /dev/null and b/static/icons/06006CB3.png differ
diff --git a/static/icons/06006CB4.png b/static/icons/06006CB4.png
new file mode 100755
index 00000000..dad7ab61
Binary files /dev/null and b/static/icons/06006CB4.png differ
diff --git a/static/icons/06006CB5.png b/static/icons/06006CB5.png
new file mode 100755
index 00000000..33b25059
Binary files /dev/null and b/static/icons/06006CB5.png differ
diff --git a/static/icons/06006CB6.png b/static/icons/06006CB6.png
new file mode 100755
index 00000000..1e3c330e
Binary files /dev/null and b/static/icons/06006CB6.png differ
diff --git a/static/icons/06006CB7.png b/static/icons/06006CB7.png
new file mode 100755
index 00000000..a3f3af22
Binary files /dev/null and b/static/icons/06006CB7.png differ
diff --git a/static/icons/06006CB8.png b/static/icons/06006CB8.png
new file mode 100755
index 00000000..9026be6f
Binary files /dev/null and b/static/icons/06006CB8.png differ
diff --git a/static/icons/06006CB9.png b/static/icons/06006CB9.png
new file mode 100755
index 00000000..4aa46070
Binary files /dev/null and b/static/icons/06006CB9.png differ
diff --git a/static/icons/06006CBA.png b/static/icons/06006CBA.png
new file mode 100755
index 00000000..6e4dc1c6
Binary files /dev/null and b/static/icons/06006CBA.png differ
diff --git a/static/icons/06006CBB.png b/static/icons/06006CBB.png
new file mode 100755
index 00000000..ed768c07
Binary files /dev/null and b/static/icons/06006CBB.png differ
diff --git a/static/icons/06006CBC.png b/static/icons/06006CBC.png
new file mode 100755
index 00000000..dc2e2cbb
Binary files /dev/null and b/static/icons/06006CBC.png differ
diff --git a/static/icons/06006CBD.png b/static/icons/06006CBD.png
new file mode 100755
index 00000000..b7b04a53
Binary files /dev/null and b/static/icons/06006CBD.png differ
diff --git a/static/icons/06006CBE.png b/static/icons/06006CBE.png
new file mode 100755
index 00000000..8397bd99
Binary files /dev/null and b/static/icons/06006CBE.png differ
diff --git a/static/icons/06006CBF.png b/static/icons/06006CBF.png
new file mode 100755
index 00000000..7cc4418f
Binary files /dev/null and b/static/icons/06006CBF.png differ
diff --git a/static/icons/06006CC0.png b/static/icons/06006CC0.png
new file mode 100755
index 00000000..c33802dc
Binary files /dev/null and b/static/icons/06006CC0.png differ
diff --git a/static/icons/06006CC1.png b/static/icons/06006CC1.png
new file mode 100755
index 00000000..8372b6e2
Binary files /dev/null and b/static/icons/06006CC1.png differ
diff --git a/static/icons/06006CC2.png b/static/icons/06006CC2.png
new file mode 100755
index 00000000..bed21c3a
Binary files /dev/null and b/static/icons/06006CC2.png differ
diff --git a/static/icons/06006CC3.png b/static/icons/06006CC3.png
new file mode 100755
index 00000000..ce55cf8e
Binary files /dev/null and b/static/icons/06006CC3.png differ
diff --git a/static/icons/06006CC4.png b/static/icons/06006CC4.png
new file mode 100755
index 00000000..4786d6be
Binary files /dev/null and b/static/icons/06006CC4.png differ
diff --git a/static/icons/06006CC5.png b/static/icons/06006CC5.png
new file mode 100755
index 00000000..121d9d72
Binary files /dev/null and b/static/icons/06006CC5.png differ
diff --git a/static/icons/06006CC6.png b/static/icons/06006CC6.png
new file mode 100755
index 00000000..f6bf80f5
Binary files /dev/null and b/static/icons/06006CC6.png differ
diff --git a/static/icons/06006CC7.png b/static/icons/06006CC7.png
new file mode 100755
index 00000000..5b7932ca
Binary files /dev/null and b/static/icons/06006CC7.png differ
diff --git a/static/icons/06006CC8.png b/static/icons/06006CC8.png
new file mode 100755
index 00000000..e6f44b3d
Binary files /dev/null and b/static/icons/06006CC8.png differ
diff --git a/static/icons/06006CC9.png b/static/icons/06006CC9.png
new file mode 100755
index 00000000..e93ceee3
Binary files /dev/null and b/static/icons/06006CC9.png differ
diff --git a/static/icons/06006CCA.png b/static/icons/06006CCA.png
new file mode 100755
index 00000000..72bf8255
Binary files /dev/null and b/static/icons/06006CCA.png differ
diff --git a/static/icons/06006CCB.png b/static/icons/06006CCB.png
new file mode 100755
index 00000000..36703c2c
Binary files /dev/null and b/static/icons/06006CCB.png differ
diff --git a/static/icons/06006CCC.png b/static/icons/06006CCC.png
new file mode 100755
index 00000000..ef0b8519
Binary files /dev/null and b/static/icons/06006CCC.png differ
diff --git a/static/icons/06006CCD.png b/static/icons/06006CCD.png
new file mode 100755
index 00000000..41c7a51e
Binary files /dev/null and b/static/icons/06006CCD.png differ
diff --git a/static/icons/06006CCE.png b/static/icons/06006CCE.png
new file mode 100755
index 00000000..f60a1cad
Binary files /dev/null and b/static/icons/06006CCE.png differ
diff --git a/static/icons/06006CCF.png b/static/icons/06006CCF.png
new file mode 100755
index 00000000..28e49457
Binary files /dev/null and b/static/icons/06006CCF.png differ
diff --git a/static/icons/06006CD0.png b/static/icons/06006CD0.png
new file mode 100755
index 00000000..367afec8
Binary files /dev/null and b/static/icons/06006CD0.png differ
diff --git a/static/icons/06006CD1.png b/static/icons/06006CD1.png
new file mode 100755
index 00000000..80f6001d
Binary files /dev/null and b/static/icons/06006CD1.png differ
diff --git a/static/icons/06006CD2.png b/static/icons/06006CD2.png
new file mode 100755
index 00000000..b7aafaa6
Binary files /dev/null and b/static/icons/06006CD2.png differ
diff --git a/static/icons/06006CD3.png b/static/icons/06006CD3.png
new file mode 100755
index 00000000..881bdad0
Binary files /dev/null and b/static/icons/06006CD3.png differ
diff --git a/static/icons/06006CD4.png b/static/icons/06006CD4.png
new file mode 100755
index 00000000..47b00a7c
Binary files /dev/null and b/static/icons/06006CD4.png differ
diff --git a/static/icons/06006CD5.png b/static/icons/06006CD5.png
new file mode 100755
index 00000000..59fc5e0a
Binary files /dev/null and b/static/icons/06006CD5.png differ
diff --git a/static/icons/06006CD6.png b/static/icons/06006CD6.png
new file mode 100755
index 00000000..f85eeab5
Binary files /dev/null and b/static/icons/06006CD6.png differ
diff --git a/static/icons/06006CD7.png b/static/icons/06006CD7.png
new file mode 100755
index 00000000..b8b5df62
Binary files /dev/null and b/static/icons/06006CD7.png differ
diff --git a/static/icons/06006CD8.png b/static/icons/06006CD8.png
new file mode 100755
index 00000000..db434efd
Binary files /dev/null and b/static/icons/06006CD8.png differ
diff --git a/static/icons/06006CD9.png b/static/icons/06006CD9.png
new file mode 100755
index 00000000..5941c81a
Binary files /dev/null and b/static/icons/06006CD9.png differ
diff --git a/static/icons/06006CDA.png b/static/icons/06006CDA.png
new file mode 100755
index 00000000..38378705
Binary files /dev/null and b/static/icons/06006CDA.png differ
diff --git a/static/icons/06006CDB.png b/static/icons/06006CDB.png
new file mode 100755
index 00000000..cd7e04fb
Binary files /dev/null and b/static/icons/06006CDB.png differ
diff --git a/static/icons/06006CDC.png b/static/icons/06006CDC.png
new file mode 100755
index 00000000..fc07a1f9
Binary files /dev/null and b/static/icons/06006CDC.png differ
diff --git a/static/icons/06006CDD.png b/static/icons/06006CDD.png
new file mode 100755
index 00000000..1704768e
Binary files /dev/null and b/static/icons/06006CDD.png differ
diff --git a/static/icons/06006CDE.png b/static/icons/06006CDE.png
new file mode 100755
index 00000000..565f7a2a
Binary files /dev/null and b/static/icons/06006CDE.png differ
diff --git a/static/icons/06006CDF.png b/static/icons/06006CDF.png
new file mode 100755
index 00000000..01de45e0
Binary files /dev/null and b/static/icons/06006CDF.png differ
diff --git a/static/icons/06006CE0.png b/static/icons/06006CE0.png
new file mode 100755
index 00000000..6b10c8dc
Binary files /dev/null and b/static/icons/06006CE0.png differ
diff --git a/static/icons/06006CE1.png b/static/icons/06006CE1.png
new file mode 100755
index 00000000..16101cc6
Binary files /dev/null and b/static/icons/06006CE1.png differ
diff --git a/static/icons/06006CE2.png b/static/icons/06006CE2.png
new file mode 100755
index 00000000..581bc793
Binary files /dev/null and b/static/icons/06006CE2.png differ
diff --git a/static/icons/06006CE3.png b/static/icons/06006CE3.png
new file mode 100755
index 00000000..bd0b8081
Binary files /dev/null and b/static/icons/06006CE3.png differ
diff --git a/static/icons/06006CE4.png b/static/icons/06006CE4.png
new file mode 100755
index 00000000..0ec3641c
Binary files /dev/null and b/static/icons/06006CE4.png differ
diff --git a/static/icons/06006CE5.png b/static/icons/06006CE5.png
new file mode 100755
index 00000000..d71bee13
Binary files /dev/null and b/static/icons/06006CE5.png differ
diff --git a/static/icons/06006CE6.png b/static/icons/06006CE6.png
new file mode 100755
index 00000000..1ff29e14
Binary files /dev/null and b/static/icons/06006CE6.png differ
diff --git a/static/icons/06006CE7.png b/static/icons/06006CE7.png
new file mode 100755
index 00000000..db0500d5
Binary files /dev/null and b/static/icons/06006CE7.png differ
diff --git a/static/icons/06006CE8.png b/static/icons/06006CE8.png
new file mode 100755
index 00000000..1c46c21a
Binary files /dev/null and b/static/icons/06006CE8.png differ
diff --git a/static/icons/06006CE9.png b/static/icons/06006CE9.png
new file mode 100755
index 00000000..35d5baad
Binary files /dev/null and b/static/icons/06006CE9.png differ
diff --git a/static/icons/06006CEA.png b/static/icons/06006CEA.png
new file mode 100755
index 00000000..2c342797
Binary files /dev/null and b/static/icons/06006CEA.png differ
diff --git a/static/icons/06006CEB.png b/static/icons/06006CEB.png
new file mode 100755
index 00000000..18654f0c
Binary files /dev/null and b/static/icons/06006CEB.png differ
diff --git a/static/icons/06006CEC.png b/static/icons/06006CEC.png
new file mode 100755
index 00000000..889111af
Binary files /dev/null and b/static/icons/06006CEC.png differ
diff --git a/static/icons/06006CED.png b/static/icons/06006CED.png
new file mode 100755
index 00000000..c05e90d8
Binary files /dev/null and b/static/icons/06006CED.png differ
diff --git a/static/icons/06006CEE.png b/static/icons/06006CEE.png
new file mode 100755
index 00000000..ea5ab1e5
Binary files /dev/null and b/static/icons/06006CEE.png differ
diff --git a/static/icons/06006CEF.png b/static/icons/06006CEF.png
new file mode 100755
index 00000000..4e3119f0
Binary files /dev/null and b/static/icons/06006CEF.png differ
diff --git a/static/icons/06006CF0.png b/static/icons/06006CF0.png
new file mode 100755
index 00000000..bbad9319
Binary files /dev/null and b/static/icons/06006CF0.png differ
diff --git a/static/icons/06006CF1.png b/static/icons/06006CF1.png
new file mode 100755
index 00000000..00f62dd2
Binary files /dev/null and b/static/icons/06006CF1.png differ
diff --git a/static/icons/06006CF2.png b/static/icons/06006CF2.png
new file mode 100755
index 00000000..c64b807f
Binary files /dev/null and b/static/icons/06006CF2.png differ
diff --git a/static/icons/06006CF3.png b/static/icons/06006CF3.png
new file mode 100755
index 00000000..fb8c720f
Binary files /dev/null and b/static/icons/06006CF3.png differ
diff --git a/static/icons/06006CF4.png b/static/icons/06006CF4.png
new file mode 100755
index 00000000..03bde317
Binary files /dev/null and b/static/icons/06006CF4.png differ
diff --git a/static/icons/06006CF5.png b/static/icons/06006CF5.png
new file mode 100755
index 00000000..f8e2865f
Binary files /dev/null and b/static/icons/06006CF5.png differ
diff --git a/static/icons/06006CF6.png b/static/icons/06006CF6.png
new file mode 100755
index 00000000..de3c39a9
Binary files /dev/null and b/static/icons/06006CF6.png differ
diff --git a/static/icons/06006CF7.png b/static/icons/06006CF7.png
new file mode 100755
index 00000000..5b614351
Binary files /dev/null and b/static/icons/06006CF7.png differ
diff --git a/static/icons/06006CF8.png b/static/icons/06006CF8.png
new file mode 100755
index 00000000..5b4ab9f9
Binary files /dev/null and b/static/icons/06006CF8.png differ
diff --git a/static/icons/06006CF9.png b/static/icons/06006CF9.png
new file mode 100755
index 00000000..e2f70e06
Binary files /dev/null and b/static/icons/06006CF9.png differ
diff --git a/static/icons/06006CFA.png b/static/icons/06006CFA.png
new file mode 100755
index 00000000..3463b5c2
Binary files /dev/null and b/static/icons/06006CFA.png differ
diff --git a/static/icons/06006D06.png b/static/icons/06006D06.png
new file mode 100755
index 00000000..47a6cf1a
Binary files /dev/null and b/static/icons/06006D06.png differ
diff --git a/static/icons/06006D27.png b/static/icons/06006D27.png
new file mode 100755
index 00000000..16b2ec95
Binary files /dev/null and b/static/icons/06006D27.png differ
diff --git a/static/icons/06006D30.png b/static/icons/06006D30.png
new file mode 100755
index 00000000..1960bdf3
Binary files /dev/null and b/static/icons/06006D30.png differ
diff --git a/static/icons/06006D32.png b/static/icons/06006D32.png
new file mode 100755
index 00000000..47afd53a
Binary files /dev/null and b/static/icons/06006D32.png differ
diff --git a/static/icons/06006D36.png b/static/icons/06006D36.png
new file mode 100755
index 00000000..78f74422
Binary files /dev/null and b/static/icons/06006D36.png differ
diff --git a/static/icons/06006D37.png b/static/icons/06006D37.png
new file mode 100755
index 00000000..fec05bdc
Binary files /dev/null and b/static/icons/06006D37.png differ
diff --git a/static/icons/06006D3C.png b/static/icons/06006D3C.png
new file mode 100755
index 00000000..dd6e6c0a
Binary files /dev/null and b/static/icons/06006D3C.png differ
diff --git a/static/icons/06006D3D.png b/static/icons/06006D3D.png
new file mode 100755
index 00000000..39537a89
Binary files /dev/null and b/static/icons/06006D3D.png differ
diff --git a/static/icons/06006D3E.png b/static/icons/06006D3E.png
new file mode 100755
index 00000000..52c85f7a
Binary files /dev/null and b/static/icons/06006D3E.png differ
diff --git a/static/icons/06006D3F.png b/static/icons/06006D3F.png
new file mode 100755
index 00000000..ad2798d8
Binary files /dev/null and b/static/icons/06006D3F.png differ
diff --git a/static/icons/06006D40.png b/static/icons/06006D40.png
new file mode 100755
index 00000000..ce21cf4e
Binary files /dev/null and b/static/icons/06006D40.png differ
diff --git a/static/icons/06006D41.png b/static/icons/06006D41.png
new file mode 100755
index 00000000..d3d8fe61
Binary files /dev/null and b/static/icons/06006D41.png differ
diff --git a/static/icons/06006D42.png b/static/icons/06006D42.png
new file mode 100755
index 00000000..dae32fbb
Binary files /dev/null and b/static/icons/06006D42.png differ
diff --git a/static/icons/06006D43.png b/static/icons/06006D43.png
new file mode 100755
index 00000000..8781f2af
Binary files /dev/null and b/static/icons/06006D43.png differ
diff --git a/static/icons/06006D44.png b/static/icons/06006D44.png
new file mode 100755
index 00000000..cdef274b
Binary files /dev/null and b/static/icons/06006D44.png differ
diff --git a/static/icons/06006D45.png b/static/icons/06006D45.png
new file mode 100755
index 00000000..9324d737
Binary files /dev/null and b/static/icons/06006D45.png differ
diff --git a/static/icons/06006D46.png b/static/icons/06006D46.png
new file mode 100755
index 00000000..10fcf151
Binary files /dev/null and b/static/icons/06006D46.png differ
diff --git a/static/icons/06006D47.png b/static/icons/06006D47.png
new file mode 100755
index 00000000..4d39e3b1
Binary files /dev/null and b/static/icons/06006D47.png differ
diff --git a/static/icons/06006D48.png b/static/icons/06006D48.png
new file mode 100755
index 00000000..8e7db480
Binary files /dev/null and b/static/icons/06006D48.png differ
diff --git a/static/icons/06006D49.png b/static/icons/06006D49.png
new file mode 100755
index 00000000..38e2a36d
Binary files /dev/null and b/static/icons/06006D49.png differ
diff --git a/static/icons/06006D4A.png b/static/icons/06006D4A.png
new file mode 100755
index 00000000..3c4a4752
Binary files /dev/null and b/static/icons/06006D4A.png differ
diff --git a/static/icons/06006D4B.png b/static/icons/06006D4B.png
new file mode 100755
index 00000000..74e768ed
Binary files /dev/null and b/static/icons/06006D4B.png differ
diff --git a/static/icons/06006D4C.png b/static/icons/06006D4C.png
new file mode 100755
index 00000000..927a9952
Binary files /dev/null and b/static/icons/06006D4C.png differ
diff --git a/static/icons/06006D4D.png b/static/icons/06006D4D.png
new file mode 100755
index 00000000..2d6e179e
Binary files /dev/null and b/static/icons/06006D4D.png differ
diff --git a/static/icons/06006D4E.png b/static/icons/06006D4E.png
new file mode 100755
index 00000000..16e75bc3
Binary files /dev/null and b/static/icons/06006D4E.png differ
diff --git a/static/icons/06006D4F.png b/static/icons/06006D4F.png
new file mode 100755
index 00000000..56649bf9
Binary files /dev/null and b/static/icons/06006D4F.png differ
diff --git a/static/icons/06006D50.png b/static/icons/06006D50.png
new file mode 100755
index 00000000..330fde11
Binary files /dev/null and b/static/icons/06006D50.png differ
diff --git a/static/icons/06006D51.png b/static/icons/06006D51.png
new file mode 100755
index 00000000..461cfcd7
Binary files /dev/null and b/static/icons/06006D51.png differ
diff --git a/static/icons/06006D53.png b/static/icons/06006D53.png
new file mode 100755
index 00000000..61b2ef20
Binary files /dev/null and b/static/icons/06006D53.png differ
diff --git a/static/icons/06006D54.png b/static/icons/06006D54.png
new file mode 100755
index 00000000..cf865af8
Binary files /dev/null and b/static/icons/06006D54.png differ
diff --git a/static/icons/06006D55.png b/static/icons/06006D55.png
new file mode 100755
index 00000000..b71238a1
Binary files /dev/null and b/static/icons/06006D55.png differ
diff --git a/static/icons/06006D56.png b/static/icons/06006D56.png
new file mode 100755
index 00000000..bf4e16ef
Binary files /dev/null and b/static/icons/06006D56.png differ
diff --git a/static/icons/06006D57.png b/static/icons/06006D57.png
new file mode 100755
index 00000000..1d145630
Binary files /dev/null and b/static/icons/06006D57.png differ
diff --git a/static/icons/06006D58.png b/static/icons/06006D58.png
new file mode 100755
index 00000000..7a9b60d0
Binary files /dev/null and b/static/icons/06006D58.png differ
diff --git a/static/icons/06006D59.png b/static/icons/06006D59.png
new file mode 100755
index 00000000..96e710d7
Binary files /dev/null and b/static/icons/06006D59.png differ
diff --git a/static/icons/06006D5A.png b/static/icons/06006D5A.png
new file mode 100755
index 00000000..13db261f
Binary files /dev/null and b/static/icons/06006D5A.png differ
diff --git a/static/icons/06006D5B.png b/static/icons/06006D5B.png
new file mode 100755
index 00000000..31b450c5
Binary files /dev/null and b/static/icons/06006D5B.png differ
diff --git a/static/icons/06006D5C.png b/static/icons/06006D5C.png
new file mode 100755
index 00000000..5d3bac75
Binary files /dev/null and b/static/icons/06006D5C.png differ
diff --git a/static/icons/06006D5D.png b/static/icons/06006D5D.png
new file mode 100755
index 00000000..07c5d573
Binary files /dev/null and b/static/icons/06006D5D.png differ
diff --git a/static/icons/06006D5E.png b/static/icons/06006D5E.png
new file mode 100755
index 00000000..e4e7d0bf
Binary files /dev/null and b/static/icons/06006D5E.png differ
diff --git a/static/icons/06006D5F.png b/static/icons/06006D5F.png
new file mode 100755
index 00000000..a27f326d
Binary files /dev/null and b/static/icons/06006D5F.png differ
diff --git a/static/icons/06006D60.png b/static/icons/06006D60.png
new file mode 100755
index 00000000..36ba7f1b
Binary files /dev/null and b/static/icons/06006D60.png differ
diff --git a/static/icons/06006D61.png b/static/icons/06006D61.png
new file mode 100755
index 00000000..d51a828a
Binary files /dev/null and b/static/icons/06006D61.png differ
diff --git a/static/icons/06006D62.png b/static/icons/06006D62.png
new file mode 100755
index 00000000..956e73a6
Binary files /dev/null and b/static/icons/06006D62.png differ
diff --git a/static/icons/06006D63.png b/static/icons/06006D63.png
new file mode 100755
index 00000000..1f98d7d2
Binary files /dev/null and b/static/icons/06006D63.png differ
diff --git a/static/icons/06006D64.png b/static/icons/06006D64.png
new file mode 100755
index 00000000..6e237b57
Binary files /dev/null and b/static/icons/06006D64.png differ
diff --git a/static/icons/06006D65.png b/static/icons/06006D65.png
new file mode 100755
index 00000000..12ebe2ef
Binary files /dev/null and b/static/icons/06006D65.png differ
diff --git a/static/icons/06006D66.png b/static/icons/06006D66.png
new file mode 100755
index 00000000..479a5081
Binary files /dev/null and b/static/icons/06006D66.png differ
diff --git a/static/icons/06006D67.png b/static/icons/06006D67.png
new file mode 100755
index 00000000..d46ffa9f
Binary files /dev/null and b/static/icons/06006D67.png differ
diff --git a/static/icons/06006D68.png b/static/icons/06006D68.png
new file mode 100755
index 00000000..fcae417c
Binary files /dev/null and b/static/icons/06006D68.png differ
diff --git a/static/icons/06006D6A.png b/static/icons/06006D6A.png
new file mode 100755
index 00000000..f5ff482c
Binary files /dev/null and b/static/icons/06006D6A.png differ
diff --git a/static/icons/06006D6B.png b/static/icons/06006D6B.png
new file mode 100755
index 00000000..258404a1
Binary files /dev/null and b/static/icons/06006D6B.png differ
diff --git a/static/icons/06006D6C.png b/static/icons/06006D6C.png
new file mode 100755
index 00000000..6a24c5e2
Binary files /dev/null and b/static/icons/06006D6C.png differ
diff --git a/static/icons/06006D6D.png b/static/icons/06006D6D.png
new file mode 100755
index 00000000..7ec70179
Binary files /dev/null and b/static/icons/06006D6D.png differ
diff --git a/static/icons/06006D6E.png b/static/icons/06006D6E.png
new file mode 100755
index 00000000..02f423d2
Binary files /dev/null and b/static/icons/06006D6E.png differ
diff --git a/static/icons/06006D6F.png b/static/icons/06006D6F.png
new file mode 100755
index 00000000..a2a3568f
Binary files /dev/null and b/static/icons/06006D6F.png differ
diff --git a/static/icons/06006D70.png b/static/icons/06006D70.png
new file mode 100755
index 00000000..76178c36
Binary files /dev/null and b/static/icons/06006D70.png differ
diff --git a/static/icons/06006D71.png b/static/icons/06006D71.png
new file mode 100755
index 00000000..fc67879c
Binary files /dev/null and b/static/icons/06006D71.png differ
diff --git a/static/icons/06006D76.png b/static/icons/06006D76.png
new file mode 100755
index 00000000..9539c723
Binary files /dev/null and b/static/icons/06006D76.png differ
diff --git a/static/icons/06006D78.png b/static/icons/06006D78.png
new file mode 100755
index 00000000..c9a3a5cf
Binary files /dev/null and b/static/icons/06006D78.png differ
diff --git a/static/icons/06006D79.png b/static/icons/06006D79.png
new file mode 100755
index 00000000..f726ee2b
Binary files /dev/null and b/static/icons/06006D79.png differ
diff --git a/static/icons/06006D7B.png b/static/icons/06006D7B.png
new file mode 100755
index 00000000..5420b172
Binary files /dev/null and b/static/icons/06006D7B.png differ
diff --git a/static/icons/06006D7D.png b/static/icons/06006D7D.png
new file mode 100755
index 00000000..e7d38fb9
Binary files /dev/null and b/static/icons/06006D7D.png differ
diff --git a/static/icons/06006D7F.png b/static/icons/06006D7F.png
new file mode 100755
index 00000000..9fad63fb
Binary files /dev/null and b/static/icons/06006D7F.png differ
diff --git a/static/icons/06006D81.png b/static/icons/06006D81.png
new file mode 100755
index 00000000..1cda7b05
Binary files /dev/null and b/static/icons/06006D81.png differ
diff --git a/static/icons/06006D83.png b/static/icons/06006D83.png
new file mode 100755
index 00000000..6d835be5
Binary files /dev/null and b/static/icons/06006D83.png differ
diff --git a/static/icons/06006D85.png b/static/icons/06006D85.png
new file mode 100755
index 00000000..8650e6b6
Binary files /dev/null and b/static/icons/06006D85.png differ
diff --git a/static/icons/06006D87.png b/static/icons/06006D87.png
new file mode 100755
index 00000000..32b75f40
Binary files /dev/null and b/static/icons/06006D87.png differ
diff --git a/static/icons/06006D89.png b/static/icons/06006D89.png
new file mode 100755
index 00000000..0e84f826
Binary files /dev/null and b/static/icons/06006D89.png differ
diff --git a/static/icons/06006D8F.png b/static/icons/06006D8F.png
new file mode 100755
index 00000000..a0eafa90
Binary files /dev/null and b/static/icons/06006D8F.png differ
diff --git a/static/icons/06006D90.png b/static/icons/06006D90.png
new file mode 100755
index 00000000..4f7bf441
Binary files /dev/null and b/static/icons/06006D90.png differ
diff --git a/static/icons/06006D91.png b/static/icons/06006D91.png
new file mode 100755
index 00000000..73c2a562
Binary files /dev/null and b/static/icons/06006D91.png differ
diff --git a/static/icons/06006D92.png b/static/icons/06006D92.png
new file mode 100755
index 00000000..7c8e8023
Binary files /dev/null and b/static/icons/06006D92.png differ
diff --git a/static/icons/06006D93.png b/static/icons/06006D93.png
new file mode 100755
index 00000000..4470bfcc
Binary files /dev/null and b/static/icons/06006D93.png differ
diff --git a/static/icons/06006D94.png b/static/icons/06006D94.png
new file mode 100755
index 00000000..320bfd27
Binary files /dev/null and b/static/icons/06006D94.png differ
diff --git a/static/icons/06006D95.png b/static/icons/06006D95.png
new file mode 100755
index 00000000..f51cc4f7
Binary files /dev/null and b/static/icons/06006D95.png differ
diff --git a/static/icons/06006D96.png b/static/icons/06006D96.png
new file mode 100755
index 00000000..8b7e6cb5
Binary files /dev/null and b/static/icons/06006D96.png differ
diff --git a/static/icons/06006D97.png b/static/icons/06006D97.png
new file mode 100755
index 00000000..4bae79b5
Binary files /dev/null and b/static/icons/06006D97.png differ
diff --git a/static/icons/06006D98.png b/static/icons/06006D98.png
new file mode 100755
index 00000000..861d2934
Binary files /dev/null and b/static/icons/06006D98.png differ
diff --git a/static/icons/06006D9A.png b/static/icons/06006D9A.png
new file mode 100755
index 00000000..b2a04f80
Binary files /dev/null and b/static/icons/06006D9A.png differ
diff --git a/static/icons/06006D9B.png b/static/icons/06006D9B.png
new file mode 100755
index 00000000..bd1662ae
Binary files /dev/null and b/static/icons/06006D9B.png differ
diff --git a/static/icons/06006D9C.png b/static/icons/06006D9C.png
new file mode 100755
index 00000000..2fd81f5c
Binary files /dev/null and b/static/icons/06006D9C.png differ
diff --git a/static/icons/06006D9D.png b/static/icons/06006D9D.png
new file mode 100755
index 00000000..4be0c59b
Binary files /dev/null and b/static/icons/06006D9D.png differ
diff --git a/static/icons/06006D9E.png b/static/icons/06006D9E.png
new file mode 100755
index 00000000..ae252638
Binary files /dev/null and b/static/icons/06006D9E.png differ
diff --git a/static/icons/06006D9F.png b/static/icons/06006D9F.png
new file mode 100755
index 00000000..0d102aad
Binary files /dev/null and b/static/icons/06006D9F.png differ
diff --git a/static/icons/06006DAA.png b/static/icons/06006DAA.png
new file mode 100755
index 00000000..cd886823
Binary files /dev/null and b/static/icons/06006DAA.png differ
diff --git a/static/icons/06006DAB.png b/static/icons/06006DAB.png
new file mode 100755
index 00000000..77c677da
Binary files /dev/null and b/static/icons/06006DAB.png differ
diff --git a/static/icons/06006DAC.png b/static/icons/06006DAC.png
new file mode 100755
index 00000000..9b1aad76
Binary files /dev/null and b/static/icons/06006DAC.png differ
diff --git a/static/icons/06006DAD.png b/static/icons/06006DAD.png
new file mode 100755
index 00000000..5cd4cbef
Binary files /dev/null and b/static/icons/06006DAD.png differ
diff --git a/static/icons/06006DAE.png b/static/icons/06006DAE.png
new file mode 100755
index 00000000..50dc1b75
Binary files /dev/null and b/static/icons/06006DAE.png differ
diff --git a/static/icons/06006DAF.png b/static/icons/06006DAF.png
new file mode 100755
index 00000000..286b2772
Binary files /dev/null and b/static/icons/06006DAF.png differ
diff --git a/static/icons/06006DB0.png b/static/icons/06006DB0.png
new file mode 100755
index 00000000..1e66df4d
Binary files /dev/null and b/static/icons/06006DB0.png differ
diff --git a/static/icons/06006DB1.png b/static/icons/06006DB1.png
new file mode 100755
index 00000000..3b9452b2
Binary files /dev/null and b/static/icons/06006DB1.png differ
diff --git a/static/icons/06006DB2.png b/static/icons/06006DB2.png
new file mode 100755
index 00000000..6872579e
Binary files /dev/null and b/static/icons/06006DB2.png differ
diff --git a/static/icons/06006DB3.png b/static/icons/06006DB3.png
new file mode 100755
index 00000000..97e54849
Binary files /dev/null and b/static/icons/06006DB3.png differ
diff --git a/static/icons/06006DB5.png b/static/icons/06006DB5.png
new file mode 100755
index 00000000..1e6415e1
Binary files /dev/null and b/static/icons/06006DB5.png differ
diff --git a/static/icons/06006DB6.png b/static/icons/06006DB6.png
new file mode 100755
index 00000000..7868d73d
Binary files /dev/null and b/static/icons/06006DB6.png differ
diff --git a/static/icons/06006DB7.png b/static/icons/06006DB7.png
new file mode 100755
index 00000000..3f6db18e
Binary files /dev/null and b/static/icons/06006DB7.png differ
diff --git a/static/icons/06006DB8.png b/static/icons/06006DB8.png
new file mode 100755
index 00000000..1a04770f
Binary files /dev/null and b/static/icons/06006DB8.png differ
diff --git a/static/icons/06006DB9.png b/static/icons/06006DB9.png
new file mode 100755
index 00000000..0d54275d
Binary files /dev/null and b/static/icons/06006DB9.png differ
diff --git a/static/icons/06006DBA.png b/static/icons/06006DBA.png
new file mode 100755
index 00000000..e5eb85eb
Binary files /dev/null and b/static/icons/06006DBA.png differ
diff --git a/static/icons/06006DBB.png b/static/icons/06006DBB.png
new file mode 100755
index 00000000..acb8ec51
Binary files /dev/null and b/static/icons/06006DBB.png differ
diff --git a/static/icons/06006DBC.png b/static/icons/06006DBC.png
new file mode 100755
index 00000000..6a1a5c92
Binary files /dev/null and b/static/icons/06006DBC.png differ
diff --git a/static/icons/06006DBD.png b/static/icons/06006DBD.png
new file mode 100755
index 00000000..a88e583a
Binary files /dev/null and b/static/icons/06006DBD.png differ
diff --git a/static/icons/06006DBE.png b/static/icons/06006DBE.png
new file mode 100755
index 00000000..473b4ad1
Binary files /dev/null and b/static/icons/06006DBE.png differ
diff --git a/static/icons/06006DBF.png b/static/icons/06006DBF.png
new file mode 100755
index 00000000..438f7bf8
Binary files /dev/null and b/static/icons/06006DBF.png differ
diff --git a/static/icons/06006DC0.png b/static/icons/06006DC0.png
new file mode 100755
index 00000000..402062ea
Binary files /dev/null and b/static/icons/06006DC0.png differ
diff --git a/static/icons/06006DC1.png b/static/icons/06006DC1.png
new file mode 100755
index 00000000..1c4ff118
Binary files /dev/null and b/static/icons/06006DC1.png differ
diff --git a/static/icons/06006DC2.png b/static/icons/06006DC2.png
new file mode 100755
index 00000000..6385011f
Binary files /dev/null and b/static/icons/06006DC2.png differ
diff --git a/static/icons/06006DC3.png b/static/icons/06006DC3.png
new file mode 100755
index 00000000..2004fdc8
Binary files /dev/null and b/static/icons/06006DC3.png differ
diff --git a/static/icons/06006DC4.png b/static/icons/06006DC4.png
new file mode 100755
index 00000000..07b552f9
Binary files /dev/null and b/static/icons/06006DC4.png differ
diff --git a/static/icons/06006DC5.png b/static/icons/06006DC5.png
new file mode 100755
index 00000000..6b3aff27
Binary files /dev/null and b/static/icons/06006DC5.png differ
diff --git a/static/icons/06006DC6.png b/static/icons/06006DC6.png
new file mode 100755
index 00000000..255f91a5
Binary files /dev/null and b/static/icons/06006DC6.png differ
diff --git a/static/icons/06006DC7.png b/static/icons/06006DC7.png
new file mode 100755
index 00000000..049a8f3e
Binary files /dev/null and b/static/icons/06006DC7.png differ
diff --git a/static/icons/06006DC8.png b/static/icons/06006DC8.png
new file mode 100755
index 00000000..838f4a18
Binary files /dev/null and b/static/icons/06006DC8.png differ
diff --git a/static/icons/06006DC9.png b/static/icons/06006DC9.png
new file mode 100755
index 00000000..cab21316
Binary files /dev/null and b/static/icons/06006DC9.png differ
diff --git a/static/icons/06006DCA.png b/static/icons/06006DCA.png
new file mode 100755
index 00000000..6098acfd
Binary files /dev/null and b/static/icons/06006DCA.png differ
diff --git a/static/icons/06006DCB.png b/static/icons/06006DCB.png
new file mode 100755
index 00000000..3ea66a3a
Binary files /dev/null and b/static/icons/06006DCB.png differ
diff --git a/static/icons/06006DCC.png b/static/icons/06006DCC.png
new file mode 100755
index 00000000..0662c31f
Binary files /dev/null and b/static/icons/06006DCC.png differ
diff --git a/static/icons/06006DCD.png b/static/icons/06006DCD.png
new file mode 100755
index 00000000..5a705705
Binary files /dev/null and b/static/icons/06006DCD.png differ
diff --git a/static/icons/06006DCE.png b/static/icons/06006DCE.png
new file mode 100755
index 00000000..2e3a9912
Binary files /dev/null and b/static/icons/06006DCE.png differ
diff --git a/static/icons/06006DCF.png b/static/icons/06006DCF.png
new file mode 100755
index 00000000..4a25e684
Binary files /dev/null and b/static/icons/06006DCF.png differ
diff --git a/static/icons/06006DD0.png b/static/icons/06006DD0.png
new file mode 100755
index 00000000..64617dc8
Binary files /dev/null and b/static/icons/06006DD0.png differ
diff --git a/static/icons/06006DD1.png b/static/icons/06006DD1.png
new file mode 100755
index 00000000..18cf1542
Binary files /dev/null and b/static/icons/06006DD1.png differ
diff --git a/static/icons/06006DD2.png b/static/icons/06006DD2.png
new file mode 100755
index 00000000..c718456b
Binary files /dev/null and b/static/icons/06006DD2.png differ
diff --git a/static/icons/06006DD3.png b/static/icons/06006DD3.png
new file mode 100755
index 00000000..fa43d5fc
Binary files /dev/null and b/static/icons/06006DD3.png differ
diff --git a/static/icons/06006DD4.png b/static/icons/06006DD4.png
new file mode 100755
index 00000000..c84b3af8
Binary files /dev/null and b/static/icons/06006DD4.png differ
diff --git a/static/icons/06006DD5.png b/static/icons/06006DD5.png
new file mode 100755
index 00000000..7fe79cc6
Binary files /dev/null and b/static/icons/06006DD5.png differ
diff --git a/static/icons/06006DD6.png b/static/icons/06006DD6.png
new file mode 100755
index 00000000..f7d7ef23
Binary files /dev/null and b/static/icons/06006DD6.png differ
diff --git a/static/icons/06006DD7.png b/static/icons/06006DD7.png
new file mode 100755
index 00000000..daa2dcc2
Binary files /dev/null and b/static/icons/06006DD7.png differ
diff --git a/static/icons/06006DD8.png b/static/icons/06006DD8.png
new file mode 100755
index 00000000..efd0faff
Binary files /dev/null and b/static/icons/06006DD8.png differ
diff --git a/static/icons/06006DD9.png b/static/icons/06006DD9.png
new file mode 100755
index 00000000..096c5e7e
Binary files /dev/null and b/static/icons/06006DD9.png differ
diff --git a/static/icons/06006DDA.png b/static/icons/06006DDA.png
new file mode 100755
index 00000000..c555fe8b
Binary files /dev/null and b/static/icons/06006DDA.png differ
diff --git a/static/icons/06006DDB.png b/static/icons/06006DDB.png
new file mode 100755
index 00000000..2ea95b0d
Binary files /dev/null and b/static/icons/06006DDB.png differ
diff --git a/static/icons/06006DDC.png b/static/icons/06006DDC.png
new file mode 100755
index 00000000..654f3db1
Binary files /dev/null and b/static/icons/06006DDC.png differ
diff --git a/static/icons/06006DDD.png b/static/icons/06006DDD.png
new file mode 100755
index 00000000..6dcc1466
Binary files /dev/null and b/static/icons/06006DDD.png differ
diff --git a/static/icons/06006DDE.png b/static/icons/06006DDE.png
new file mode 100755
index 00000000..412df5d3
Binary files /dev/null and b/static/icons/06006DDE.png differ
diff --git a/static/icons/06006DDF.png b/static/icons/06006DDF.png
new file mode 100755
index 00000000..d74f15d2
Binary files /dev/null and b/static/icons/06006DDF.png differ
diff --git a/static/icons/06006DE0.png b/static/icons/06006DE0.png
new file mode 100755
index 00000000..706fbdea
Binary files /dev/null and b/static/icons/06006DE0.png differ
diff --git a/static/icons/06006DE1.png b/static/icons/06006DE1.png
new file mode 100755
index 00000000..f22c41fa
Binary files /dev/null and b/static/icons/06006DE1.png differ
diff --git a/static/icons/06006DE2.png b/static/icons/06006DE2.png
new file mode 100755
index 00000000..dff4bb47
Binary files /dev/null and b/static/icons/06006DE2.png differ
diff --git a/static/icons/06006DE3.png b/static/icons/06006DE3.png
new file mode 100755
index 00000000..67da66a3
Binary files /dev/null and b/static/icons/06006DE3.png differ
diff --git a/static/icons/06006DE4.png b/static/icons/06006DE4.png
new file mode 100755
index 00000000..df2db3dd
Binary files /dev/null and b/static/icons/06006DE4.png differ
diff --git a/static/icons/06006DE5.png b/static/icons/06006DE5.png
new file mode 100755
index 00000000..826c9803
Binary files /dev/null and b/static/icons/06006DE5.png differ
diff --git a/static/icons/06006DE6.png b/static/icons/06006DE6.png
new file mode 100755
index 00000000..cbe1e80f
Binary files /dev/null and b/static/icons/06006DE6.png differ
diff --git a/static/icons/06006DE7.png b/static/icons/06006DE7.png
new file mode 100755
index 00000000..fe6a8c14
Binary files /dev/null and b/static/icons/06006DE7.png differ
diff --git a/static/icons/06006DE8.png b/static/icons/06006DE8.png
new file mode 100755
index 00000000..49c5d74d
Binary files /dev/null and b/static/icons/06006DE8.png differ
diff --git a/static/icons/06006DE9.png b/static/icons/06006DE9.png
new file mode 100755
index 00000000..2078c16b
Binary files /dev/null and b/static/icons/06006DE9.png differ
diff --git a/static/icons/06006DEA.png b/static/icons/06006DEA.png
new file mode 100755
index 00000000..06d8b623
Binary files /dev/null and b/static/icons/06006DEA.png differ
diff --git a/static/icons/06006DEB.png b/static/icons/06006DEB.png
new file mode 100755
index 00000000..6f21939b
Binary files /dev/null and b/static/icons/06006DEB.png differ
diff --git a/static/icons/06006DEC.png b/static/icons/06006DEC.png
new file mode 100755
index 00000000..d840ebbb
Binary files /dev/null and b/static/icons/06006DEC.png differ
diff --git a/static/icons/06006DED.png b/static/icons/06006DED.png
new file mode 100755
index 00000000..e1e5c6f0
Binary files /dev/null and b/static/icons/06006DED.png differ
diff --git a/static/icons/06006DEE.png b/static/icons/06006DEE.png
new file mode 100755
index 00000000..c7c17283
Binary files /dev/null and b/static/icons/06006DEE.png differ
diff --git a/static/icons/06006DEF.png b/static/icons/06006DEF.png
new file mode 100755
index 00000000..9a44a839
Binary files /dev/null and b/static/icons/06006DEF.png differ
diff --git a/static/icons/06006DF0.png b/static/icons/06006DF0.png
new file mode 100755
index 00000000..8eafa3c7
Binary files /dev/null and b/static/icons/06006DF0.png differ
diff --git a/static/icons/06006DF1.png b/static/icons/06006DF1.png
new file mode 100755
index 00000000..0280701d
Binary files /dev/null and b/static/icons/06006DF1.png differ
diff --git a/static/icons/06006DF2.png b/static/icons/06006DF2.png
new file mode 100755
index 00000000..98166f95
Binary files /dev/null and b/static/icons/06006DF2.png differ
diff --git a/static/icons/06006DF3.png b/static/icons/06006DF3.png
new file mode 100755
index 00000000..60f54115
Binary files /dev/null and b/static/icons/06006DF3.png differ
diff --git a/static/icons/06006DF4.png b/static/icons/06006DF4.png
new file mode 100755
index 00000000..63b4c54d
Binary files /dev/null and b/static/icons/06006DF4.png differ
diff --git a/static/icons/06006DF5.png b/static/icons/06006DF5.png
new file mode 100755
index 00000000..78169aa0
Binary files /dev/null and b/static/icons/06006DF5.png differ
diff --git a/static/icons/06006DF6.png b/static/icons/06006DF6.png
new file mode 100755
index 00000000..a6dc1aaf
Binary files /dev/null and b/static/icons/06006DF6.png differ
diff --git a/static/icons/06006DF7.png b/static/icons/06006DF7.png
new file mode 100755
index 00000000..47ce73be
Binary files /dev/null and b/static/icons/06006DF7.png differ
diff --git a/static/icons/06006DF9.png b/static/icons/06006DF9.png
new file mode 100755
index 00000000..9bca39a8
Binary files /dev/null and b/static/icons/06006DF9.png differ
diff --git a/static/icons/06006DFA.png b/static/icons/06006DFA.png
new file mode 100755
index 00000000..3321ce5d
Binary files /dev/null and b/static/icons/06006DFA.png differ
diff --git a/static/icons/06006DFB.png b/static/icons/06006DFB.png
new file mode 100755
index 00000000..d8b07fab
Binary files /dev/null and b/static/icons/06006DFB.png differ
diff --git a/static/icons/06006DFC.png b/static/icons/06006DFC.png
new file mode 100755
index 00000000..62566e7e
Binary files /dev/null and b/static/icons/06006DFC.png differ
diff --git a/static/icons/06006DFD.png b/static/icons/06006DFD.png
new file mode 100755
index 00000000..c741de12
Binary files /dev/null and b/static/icons/06006DFD.png differ
diff --git a/static/icons/06006DFE.png b/static/icons/06006DFE.png
new file mode 100755
index 00000000..624a9ce5
Binary files /dev/null and b/static/icons/06006DFE.png differ
diff --git a/static/icons/06006DFF.png b/static/icons/06006DFF.png
new file mode 100755
index 00000000..6a804ca8
Binary files /dev/null and b/static/icons/06006DFF.png differ
diff --git a/static/icons/06006E00.png b/static/icons/06006E00.png
new file mode 100755
index 00000000..c285fb18
Binary files /dev/null and b/static/icons/06006E00.png differ
diff --git a/static/icons/06006E01.png b/static/icons/06006E01.png
new file mode 100755
index 00000000..e2b1816f
Binary files /dev/null and b/static/icons/06006E01.png differ
diff --git a/static/icons/06006E02.png b/static/icons/06006E02.png
new file mode 100755
index 00000000..337bac32
Binary files /dev/null and b/static/icons/06006E02.png differ
diff --git a/static/icons/06006E03.png b/static/icons/06006E03.png
new file mode 100755
index 00000000..1e759d59
Binary files /dev/null and b/static/icons/06006E03.png differ
diff --git a/static/icons/06006E04.png b/static/icons/06006E04.png
new file mode 100755
index 00000000..3d936cf2
Binary files /dev/null and b/static/icons/06006E04.png differ
diff --git a/static/icons/06006E05.png b/static/icons/06006E05.png
new file mode 100755
index 00000000..2686b343
Binary files /dev/null and b/static/icons/06006E05.png differ
diff --git a/static/icons/06006E06.png b/static/icons/06006E06.png
new file mode 100755
index 00000000..ab86e625
Binary files /dev/null and b/static/icons/06006E06.png differ
diff --git a/static/icons/06006E07.png b/static/icons/06006E07.png
new file mode 100755
index 00000000..c8bf1a0a
Binary files /dev/null and b/static/icons/06006E07.png differ
diff --git a/static/icons/06006E08.png b/static/icons/06006E08.png
new file mode 100755
index 00000000..4b069319
Binary files /dev/null and b/static/icons/06006E08.png differ
diff --git a/static/icons/06006E09.png b/static/icons/06006E09.png
new file mode 100755
index 00000000..75ccf533
Binary files /dev/null and b/static/icons/06006E09.png differ
diff --git a/static/icons/06006E0A.png b/static/icons/06006E0A.png
new file mode 100755
index 00000000..7823404d
Binary files /dev/null and b/static/icons/06006E0A.png differ
diff --git a/static/icons/06006E0B.png b/static/icons/06006E0B.png
new file mode 100755
index 00000000..eb60df4d
Binary files /dev/null and b/static/icons/06006E0B.png differ
diff --git a/static/icons/06006E0C.png b/static/icons/06006E0C.png
new file mode 100755
index 00000000..c39aca46
Binary files /dev/null and b/static/icons/06006E0C.png differ
diff --git a/static/icons/06006E0D.png b/static/icons/06006E0D.png
new file mode 100755
index 00000000..4d945e0b
Binary files /dev/null and b/static/icons/06006E0D.png differ
diff --git a/static/icons/06006E0E.png b/static/icons/06006E0E.png
new file mode 100755
index 00000000..50dd776e
Binary files /dev/null and b/static/icons/06006E0E.png differ
diff --git a/static/icons/06006E0F.png b/static/icons/06006E0F.png
new file mode 100755
index 00000000..fdf1c699
Binary files /dev/null and b/static/icons/06006E0F.png differ
diff --git a/static/icons/06006E10.png b/static/icons/06006E10.png
new file mode 100755
index 00000000..56de17fe
Binary files /dev/null and b/static/icons/06006E10.png differ
diff --git a/static/icons/06006E12.png b/static/icons/06006E12.png
new file mode 100755
index 00000000..fc67879c
Binary files /dev/null and b/static/icons/06006E12.png differ
diff --git a/static/icons/06006E13.png b/static/icons/06006E13.png
new file mode 100755
index 00000000..85998a99
Binary files /dev/null and b/static/icons/06006E13.png differ
diff --git a/static/icons/06006E14.png b/static/icons/06006E14.png
new file mode 100755
index 00000000..50c4c61d
Binary files /dev/null and b/static/icons/06006E14.png differ
diff --git a/static/icons/06006E19.png b/static/icons/06006E19.png
new file mode 100755
index 00000000..15e78643
Binary files /dev/null and b/static/icons/06006E19.png differ
diff --git a/static/icons/06006E1A.png b/static/icons/06006E1A.png
new file mode 100755
index 00000000..eae2cf10
Binary files /dev/null and b/static/icons/06006E1A.png differ
diff --git a/static/icons/06006E1B.png b/static/icons/06006E1B.png
new file mode 100755
index 00000000..aaf17ac6
Binary files /dev/null and b/static/icons/06006E1B.png differ
diff --git a/static/icons/06006E1C.png b/static/icons/06006E1C.png
new file mode 100755
index 00000000..f9277a8c
Binary files /dev/null and b/static/icons/06006E1C.png differ
diff --git a/static/icons/06006E20.png b/static/icons/06006E20.png
new file mode 100755
index 00000000..b528ee17
Binary files /dev/null and b/static/icons/06006E20.png differ
diff --git a/static/icons/06006E21.png b/static/icons/06006E21.png
new file mode 100755
index 00000000..da440fad
Binary files /dev/null and b/static/icons/06006E21.png differ
diff --git a/static/icons/06006E23.png b/static/icons/06006E23.png
new file mode 100755
index 00000000..9fa49209
Binary files /dev/null and b/static/icons/06006E23.png differ
diff --git a/static/icons/06006E25.png b/static/icons/06006E25.png
new file mode 100755
index 00000000..3f94c217
Binary files /dev/null and b/static/icons/06006E25.png differ
diff --git a/static/icons/06006E27.png b/static/icons/06006E27.png
new file mode 100755
index 00000000..09a92536
Binary files /dev/null and b/static/icons/06006E27.png differ
diff --git a/static/icons/06006E28.png b/static/icons/06006E28.png
new file mode 100755
index 00000000..da3b39e2
Binary files /dev/null and b/static/icons/06006E28.png differ
diff --git a/static/icons/06006E2A.png b/static/icons/06006E2A.png
new file mode 100755
index 00000000..d93f3219
Binary files /dev/null and b/static/icons/06006E2A.png differ
diff --git a/static/icons/06006E2B.png b/static/icons/06006E2B.png
new file mode 100755
index 00000000..8f4f06d7
Binary files /dev/null and b/static/icons/06006E2B.png differ
diff --git a/static/icons/06006E2C.png b/static/icons/06006E2C.png
new file mode 100755
index 00000000..fcbdbfbc
Binary files /dev/null and b/static/icons/06006E2C.png differ
diff --git a/static/icons/06006E2D.png b/static/icons/06006E2D.png
new file mode 100755
index 00000000..e8343fe7
Binary files /dev/null and b/static/icons/06006E2D.png differ
diff --git a/static/icons/06006E2E.png b/static/icons/06006E2E.png
new file mode 100755
index 00000000..58eac104
Binary files /dev/null and b/static/icons/06006E2E.png differ
diff --git a/static/icons/06006E2F.png b/static/icons/06006E2F.png
new file mode 100755
index 00000000..af2b235e
Binary files /dev/null and b/static/icons/06006E2F.png differ
diff --git a/static/icons/06006E30.png b/static/icons/06006E30.png
new file mode 100755
index 00000000..21e94c9b
Binary files /dev/null and b/static/icons/06006E30.png differ
diff --git a/static/icons/06006E31.png b/static/icons/06006E31.png
new file mode 100755
index 00000000..83631b82
Binary files /dev/null and b/static/icons/06006E31.png differ
diff --git a/static/icons/06006E32.png b/static/icons/06006E32.png
new file mode 100755
index 00000000..09bfa2aa
Binary files /dev/null and b/static/icons/06006E32.png differ
diff --git a/static/icons/06006E33.png b/static/icons/06006E33.png
new file mode 100755
index 00000000..afdd6d91
Binary files /dev/null and b/static/icons/06006E33.png differ
diff --git a/static/icons/06006E34.png b/static/icons/06006E34.png
new file mode 100755
index 00000000..640be505
Binary files /dev/null and b/static/icons/06006E34.png differ
diff --git a/static/icons/06006E35.png b/static/icons/06006E35.png
new file mode 100755
index 00000000..994892c0
Binary files /dev/null and b/static/icons/06006E35.png differ
diff --git a/static/icons/06006E36.png b/static/icons/06006E36.png
new file mode 100755
index 00000000..55fdfa6a
Binary files /dev/null and b/static/icons/06006E36.png differ
diff --git a/static/icons/06006E37.png b/static/icons/06006E37.png
new file mode 100755
index 00000000..9d3abc8b
Binary files /dev/null and b/static/icons/06006E37.png differ
diff --git a/static/icons/06006E5C.png b/static/icons/06006E5C.png
new file mode 100755
index 00000000..f786641f
Binary files /dev/null and b/static/icons/06006E5C.png differ
diff --git a/static/icons/06006E5F.png b/static/icons/06006E5F.png
new file mode 100755
index 00000000..138f0823
Binary files /dev/null and b/static/icons/06006E5F.png differ
diff --git a/static/icons/06006E60.png b/static/icons/06006E60.png
new file mode 100755
index 00000000..a77453f3
Binary files /dev/null and b/static/icons/06006E60.png differ
diff --git a/static/icons/06006E61.png b/static/icons/06006E61.png
new file mode 100755
index 00000000..33f5c135
Binary files /dev/null and b/static/icons/06006E61.png differ
diff --git a/static/icons/06006E62.png b/static/icons/06006E62.png
new file mode 100755
index 00000000..12b10c35
Binary files /dev/null and b/static/icons/06006E62.png differ
diff --git a/static/icons/06006E63.png b/static/icons/06006E63.png
new file mode 100755
index 00000000..326dc9e2
Binary files /dev/null and b/static/icons/06006E63.png differ
diff --git a/static/icons/06006E64.png b/static/icons/06006E64.png
new file mode 100755
index 00000000..50470b2b
Binary files /dev/null and b/static/icons/06006E64.png differ
diff --git a/static/icons/06006E66.png b/static/icons/06006E66.png
new file mode 100755
index 00000000..e3922efe
Binary files /dev/null and b/static/icons/06006E66.png differ
diff --git a/static/icons/06006E67.png b/static/icons/06006E67.png
new file mode 100755
index 00000000..b4a0e890
Binary files /dev/null and b/static/icons/06006E67.png differ
diff --git a/static/icons/06006E69.png b/static/icons/06006E69.png
new file mode 100755
index 00000000..4f44d13c
Binary files /dev/null and b/static/icons/06006E69.png differ
diff --git a/static/icons/06006E6E.png b/static/icons/06006E6E.png
new file mode 100755
index 00000000..8c6d5570
Binary files /dev/null and b/static/icons/06006E6E.png differ
diff --git a/static/icons/06006E6F.png b/static/icons/06006E6F.png
new file mode 100755
index 00000000..61b9edcc
Binary files /dev/null and b/static/icons/06006E6F.png differ
diff --git a/static/icons/06006E70.png b/static/icons/06006E70.png
new file mode 100755
index 00000000..55f12fde
Binary files /dev/null and b/static/icons/06006E70.png differ
diff --git a/static/icons/06006E71.png b/static/icons/06006E71.png
new file mode 100755
index 00000000..4850ba33
Binary files /dev/null and b/static/icons/06006E71.png differ
diff --git a/static/icons/06006E72.png b/static/icons/06006E72.png
new file mode 100755
index 00000000..b5b62f8f
Binary files /dev/null and b/static/icons/06006E72.png differ
diff --git a/static/icons/06006E73.png b/static/icons/06006E73.png
new file mode 100755
index 00000000..b97e5b2d
Binary files /dev/null and b/static/icons/06006E73.png differ
diff --git a/static/icons/06006E74.png b/static/icons/06006E74.png
new file mode 100755
index 00000000..6494d506
Binary files /dev/null and b/static/icons/06006E74.png differ
diff --git a/static/icons/06006E75.png b/static/icons/06006E75.png
new file mode 100755
index 00000000..393315c1
Binary files /dev/null and b/static/icons/06006E75.png differ
diff --git a/static/icons/06006E76.png b/static/icons/06006E76.png
new file mode 100755
index 00000000..f86290cb
Binary files /dev/null and b/static/icons/06006E76.png differ
diff --git a/static/icons/06006E77.png b/static/icons/06006E77.png
new file mode 100755
index 00000000..61b9edcc
Binary files /dev/null and b/static/icons/06006E77.png differ
diff --git a/static/icons/06006E78.png b/static/icons/06006E78.png
new file mode 100755
index 00000000..87e289c0
Binary files /dev/null and b/static/icons/06006E78.png differ
diff --git a/static/icons/06006E79.png b/static/icons/06006E79.png
new file mode 100755
index 00000000..444d8d32
Binary files /dev/null and b/static/icons/06006E79.png differ
diff --git a/static/icons/06006E7A.png b/static/icons/06006E7A.png
new file mode 100755
index 00000000..577b6718
Binary files /dev/null and b/static/icons/06006E7A.png differ
diff --git a/static/icons/06006E7B.png b/static/icons/06006E7B.png
new file mode 100755
index 00000000..779a36fc
Binary files /dev/null and b/static/icons/06006E7B.png differ
diff --git a/static/icons/06006E7C.png b/static/icons/06006E7C.png
new file mode 100755
index 00000000..24b7a7d7
Binary files /dev/null and b/static/icons/06006E7C.png differ
diff --git a/static/icons/06006E7F.png b/static/icons/06006E7F.png
new file mode 100755
index 00000000..a0f32688
Binary files /dev/null and b/static/icons/06006E7F.png differ
diff --git a/static/icons/06006E80.png b/static/icons/06006E80.png
new file mode 100755
index 00000000..47c7035d
Binary files /dev/null and b/static/icons/06006E80.png differ
diff --git a/static/icons/06006E81.png b/static/icons/06006E81.png
new file mode 100755
index 00000000..3c355973
Binary files /dev/null and b/static/icons/06006E81.png differ
diff --git a/static/icons/06006E82.png b/static/icons/06006E82.png
new file mode 100755
index 00000000..93825229
Binary files /dev/null and b/static/icons/06006E82.png differ
diff --git a/static/icons/06006E85.png b/static/icons/06006E85.png
new file mode 100755
index 00000000..6c5b856c
Binary files /dev/null and b/static/icons/06006E85.png differ
diff --git a/static/icons/06006E86.png b/static/icons/06006E86.png
new file mode 100755
index 00000000..c7c58c12
Binary files /dev/null and b/static/icons/06006E86.png differ
diff --git a/static/icons/06006E87.png b/static/icons/06006E87.png
new file mode 100755
index 00000000..5018238f
Binary files /dev/null and b/static/icons/06006E87.png differ
diff --git a/static/icons/06006E88.png b/static/icons/06006E88.png
new file mode 100755
index 00000000..e5c4296a
Binary files /dev/null and b/static/icons/06006E88.png differ
diff --git a/static/icons/06006E89.png b/static/icons/06006E89.png
new file mode 100755
index 00000000..1817ead7
Binary files /dev/null and b/static/icons/06006E89.png differ
diff --git a/static/icons/06006E8A.png b/static/icons/06006E8A.png
new file mode 100755
index 00000000..aab52162
Binary files /dev/null and b/static/icons/06006E8A.png differ
diff --git a/static/icons/06006E8B.png b/static/icons/06006E8B.png
new file mode 100755
index 00000000..39e11d6e
Binary files /dev/null and b/static/icons/06006E8B.png differ
diff --git a/static/icons/06006E8C.png b/static/icons/06006E8C.png
new file mode 100755
index 00000000..a25d997f
Binary files /dev/null and b/static/icons/06006E8C.png differ
diff --git a/static/icons/06006E98.png b/static/icons/06006E98.png
new file mode 100755
index 00000000..4345fb1a
Binary files /dev/null and b/static/icons/06006E98.png differ
diff --git a/static/icons/06006E99.png b/static/icons/06006E99.png
new file mode 100755
index 00000000..a5698db8
Binary files /dev/null and b/static/icons/06006E99.png differ
diff --git a/static/icons/06006E9A.png b/static/icons/06006E9A.png
new file mode 100755
index 00000000..02f28379
Binary files /dev/null and b/static/icons/06006E9A.png differ
diff --git a/static/icons/06006E9B.png b/static/icons/06006E9B.png
new file mode 100755
index 00000000..1fe96395
Binary files /dev/null and b/static/icons/06006E9B.png differ
diff --git a/static/icons/06006E9C.png b/static/icons/06006E9C.png
new file mode 100755
index 00000000..543e00f9
Binary files /dev/null and b/static/icons/06006E9C.png differ
diff --git a/static/icons/06006E9D.png b/static/icons/06006E9D.png
new file mode 100755
index 00000000..bc7841c3
Binary files /dev/null and b/static/icons/06006E9D.png differ
diff --git a/static/icons/06006E9E.png b/static/icons/06006E9E.png
new file mode 100755
index 00000000..2fcbb6d8
Binary files /dev/null and b/static/icons/06006E9E.png differ
diff --git a/static/icons/06006E9F.png b/static/icons/06006E9F.png
new file mode 100755
index 00000000..abfe4a49
Binary files /dev/null and b/static/icons/06006E9F.png differ
diff --git a/static/icons/06006EA0.png b/static/icons/06006EA0.png
new file mode 100755
index 00000000..72531c0e
Binary files /dev/null and b/static/icons/06006EA0.png differ
diff --git a/static/icons/06006EA1.png b/static/icons/06006EA1.png
new file mode 100755
index 00000000..f37fec15
Binary files /dev/null and b/static/icons/06006EA1.png differ
diff --git a/static/icons/06006EA2.png b/static/icons/06006EA2.png
new file mode 100755
index 00000000..09b99960
Binary files /dev/null and b/static/icons/06006EA2.png differ
diff --git a/static/icons/06006EA3.png b/static/icons/06006EA3.png
new file mode 100755
index 00000000..8727befc
Binary files /dev/null and b/static/icons/06006EA3.png differ
diff --git a/static/icons/06006EA4.png b/static/icons/06006EA4.png
new file mode 100755
index 00000000..4884df84
Binary files /dev/null and b/static/icons/06006EA4.png differ
diff --git a/static/icons/06006EA5.png b/static/icons/06006EA5.png
new file mode 100755
index 00000000..9f3f569d
Binary files /dev/null and b/static/icons/06006EA5.png differ
diff --git a/static/icons/06006EA6.png b/static/icons/06006EA6.png
new file mode 100755
index 00000000..7febb747
Binary files /dev/null and b/static/icons/06006EA6.png differ
diff --git a/static/icons/06006EA7.png b/static/icons/06006EA7.png
new file mode 100755
index 00000000..7313af83
Binary files /dev/null and b/static/icons/06006EA7.png differ
diff --git a/static/icons/06006EA8.png b/static/icons/06006EA8.png
new file mode 100755
index 00000000..a92ef8b7
Binary files /dev/null and b/static/icons/06006EA8.png differ
diff --git a/static/icons/06006EA9.png b/static/icons/06006EA9.png
new file mode 100755
index 00000000..30a68532
Binary files /dev/null and b/static/icons/06006EA9.png differ
diff --git a/static/icons/06006EAA.png b/static/icons/06006EAA.png
new file mode 100755
index 00000000..e5bf921f
Binary files /dev/null and b/static/icons/06006EAA.png differ
diff --git a/static/icons/06006EAB.png b/static/icons/06006EAB.png
new file mode 100755
index 00000000..80ea0454
Binary files /dev/null and b/static/icons/06006EAB.png differ
diff --git a/static/icons/06006EAC.png b/static/icons/06006EAC.png
new file mode 100755
index 00000000..6a4e3c1c
Binary files /dev/null and b/static/icons/06006EAC.png differ
diff --git a/static/icons/06006EAD.png b/static/icons/06006EAD.png
new file mode 100755
index 00000000..5b51c586
Binary files /dev/null and b/static/icons/06006EAD.png differ
diff --git a/static/icons/06006EAE.png b/static/icons/06006EAE.png
new file mode 100755
index 00000000..21f4e3d9
Binary files /dev/null and b/static/icons/06006EAE.png differ
diff --git a/static/icons/06006EB6.png b/static/icons/06006EB6.png
new file mode 100755
index 00000000..3a6042dc
Binary files /dev/null and b/static/icons/06006EB6.png differ
diff --git a/static/icons/06006EB7.png b/static/icons/06006EB7.png
new file mode 100755
index 00000000..fa55d6fa
Binary files /dev/null and b/static/icons/06006EB7.png differ
diff --git a/static/icons/06006EB9.png b/static/icons/06006EB9.png
new file mode 100755
index 00000000..1d786cea
Binary files /dev/null and b/static/icons/06006EB9.png differ
diff --git a/static/icons/06006EBA.png b/static/icons/06006EBA.png
new file mode 100755
index 00000000..bf66e904
Binary files /dev/null and b/static/icons/06006EBA.png differ
diff --git a/static/icons/06006EBB.png b/static/icons/06006EBB.png
new file mode 100755
index 00000000..4699c672
Binary files /dev/null and b/static/icons/06006EBB.png differ
diff --git a/static/icons/06006EBC.png b/static/icons/06006EBC.png
new file mode 100755
index 00000000..4defcb4e
Binary files /dev/null and b/static/icons/06006EBC.png differ
diff --git a/static/icons/06006EE6.png b/static/icons/06006EE6.png
new file mode 100755
index 00000000..b5fe49d2
Binary files /dev/null and b/static/icons/06006EE6.png differ
diff --git a/static/icons/06006EE7.png b/static/icons/06006EE7.png
new file mode 100755
index 00000000..8c42dcf7
Binary files /dev/null and b/static/icons/06006EE7.png differ
diff --git a/static/icons/06006EE8.png b/static/icons/06006EE8.png
new file mode 100755
index 00000000..959e00b5
Binary files /dev/null and b/static/icons/06006EE8.png differ
diff --git a/static/icons/06006EE9.png b/static/icons/06006EE9.png
new file mode 100755
index 00000000..ff25c9ea
Binary files /dev/null and b/static/icons/06006EE9.png differ
diff --git a/static/icons/06006EEA.png b/static/icons/06006EEA.png
new file mode 100755
index 00000000..603f7fbf
Binary files /dev/null and b/static/icons/06006EEA.png differ
diff --git a/static/icons/06006EEC.png b/static/icons/06006EEC.png
new file mode 100755
index 00000000..a38428ba
Binary files /dev/null and b/static/icons/06006EEC.png differ
diff --git a/static/icons/06006EED.png b/static/icons/06006EED.png
new file mode 100755
index 00000000..6deeb5d1
Binary files /dev/null and b/static/icons/06006EED.png differ
diff --git a/static/icons/06006EF0.png b/static/icons/06006EF0.png
new file mode 100755
index 00000000..8b7caad9
Binary files /dev/null and b/static/icons/06006EF0.png differ
diff --git a/static/icons/06006EF1.png b/static/icons/06006EF1.png
new file mode 100755
index 00000000..0079a0ac
Binary files /dev/null and b/static/icons/06006EF1.png differ
diff --git a/static/icons/06006EF2.png b/static/icons/06006EF2.png
new file mode 100755
index 00000000..21888773
Binary files /dev/null and b/static/icons/06006EF2.png differ
diff --git a/static/icons/06006EFE.png b/static/icons/06006EFE.png
new file mode 100755
index 00000000..d444122f
Binary files /dev/null and b/static/icons/06006EFE.png differ
diff --git a/static/icons/06006EFF.png b/static/icons/06006EFF.png
new file mode 100755
index 00000000..2e931153
Binary files /dev/null and b/static/icons/06006EFF.png differ
diff --git a/static/icons/06006F00.png b/static/icons/06006F00.png
new file mode 100755
index 00000000..ff43349b
Binary files /dev/null and b/static/icons/06006F00.png differ
diff --git a/static/icons/06006F01.png b/static/icons/06006F01.png
new file mode 100755
index 00000000..de45e105
Binary files /dev/null and b/static/icons/06006F01.png differ
diff --git a/static/icons/06006F02.png b/static/icons/06006F02.png
new file mode 100755
index 00000000..37b2b0b3
Binary files /dev/null and b/static/icons/06006F02.png differ
diff --git a/static/icons/06006F03.png b/static/icons/06006F03.png
new file mode 100755
index 00000000..df39405c
Binary files /dev/null and b/static/icons/06006F03.png differ
diff --git a/static/icons/06006F04.png b/static/icons/06006F04.png
new file mode 100755
index 00000000..63dd25c8
Binary files /dev/null and b/static/icons/06006F04.png differ
diff --git a/static/icons/06006F05.png b/static/icons/06006F05.png
new file mode 100755
index 00000000..391d883f
Binary files /dev/null and b/static/icons/06006F05.png differ
diff --git a/static/icons/06006F08.png b/static/icons/06006F08.png
new file mode 100755
index 00000000..a99e161e
Binary files /dev/null and b/static/icons/06006F08.png differ
diff --git a/static/icons/06006F09.png b/static/icons/06006F09.png
new file mode 100755
index 00000000..89da6421
Binary files /dev/null and b/static/icons/06006F09.png differ
diff --git a/static/icons/06006F0A.png b/static/icons/06006F0A.png
new file mode 100755
index 00000000..40514926
Binary files /dev/null and b/static/icons/06006F0A.png differ
diff --git a/static/icons/06006F0B.png b/static/icons/06006F0B.png
new file mode 100755
index 00000000..89a1f26a
Binary files /dev/null and b/static/icons/06006F0B.png differ
diff --git a/static/icons/06006F0C.png b/static/icons/06006F0C.png
new file mode 100755
index 00000000..f996b0d4
Binary files /dev/null and b/static/icons/06006F0C.png differ
diff --git a/static/icons/06006F0D.png b/static/icons/06006F0D.png
new file mode 100755
index 00000000..e25abcbe
Binary files /dev/null and b/static/icons/06006F0D.png differ
diff --git a/static/icons/06006F0E.png b/static/icons/06006F0E.png
new file mode 100755
index 00000000..e12b1d1b
Binary files /dev/null and b/static/icons/06006F0E.png differ
diff --git a/static/icons/06006F0F.png b/static/icons/06006F0F.png
new file mode 100755
index 00000000..c72d72dd
Binary files /dev/null and b/static/icons/06006F0F.png differ
diff --git a/static/icons/06006F10.png b/static/icons/06006F10.png
new file mode 100755
index 00000000..90a8bcd1
Binary files /dev/null and b/static/icons/06006F10.png differ
diff --git a/static/icons/06006F11.png b/static/icons/06006F11.png
new file mode 100755
index 00000000..0c336b66
Binary files /dev/null and b/static/icons/06006F11.png differ
diff --git a/static/icons/06006F12.png b/static/icons/06006F12.png
new file mode 100755
index 00000000..b4561ee5
Binary files /dev/null and b/static/icons/06006F12.png differ
diff --git a/static/icons/06006F13.png b/static/icons/06006F13.png
new file mode 100755
index 00000000..e930daed
Binary files /dev/null and b/static/icons/06006F13.png differ
diff --git a/static/icons/06006F14.png b/static/icons/06006F14.png
new file mode 100755
index 00000000..8a92ae1e
Binary files /dev/null and b/static/icons/06006F14.png differ
diff --git a/static/icons/06006F15.png b/static/icons/06006F15.png
new file mode 100755
index 00000000..4a746f5f
Binary files /dev/null and b/static/icons/06006F15.png differ
diff --git a/static/icons/06006F16.png b/static/icons/06006F16.png
new file mode 100755
index 00000000..d51c1e90
Binary files /dev/null and b/static/icons/06006F16.png differ
diff --git a/static/icons/06006F17.png b/static/icons/06006F17.png
new file mode 100755
index 00000000..b892db51
Binary files /dev/null and b/static/icons/06006F17.png differ
diff --git a/static/icons/06006F18.png b/static/icons/06006F18.png
new file mode 100755
index 00000000..cc26ea09
Binary files /dev/null and b/static/icons/06006F18.png differ
diff --git a/static/icons/06006F19.png b/static/icons/06006F19.png
new file mode 100755
index 00000000..a0c5052d
Binary files /dev/null and b/static/icons/06006F19.png differ
diff --git a/static/icons/06006F1A.png b/static/icons/06006F1A.png
new file mode 100755
index 00000000..8d81fab6
Binary files /dev/null and b/static/icons/06006F1A.png differ
diff --git a/static/icons/06006F1B.png b/static/icons/06006F1B.png
new file mode 100755
index 00000000..d89cd2ee
Binary files /dev/null and b/static/icons/06006F1B.png differ
diff --git a/static/icons/06006F1C.png b/static/icons/06006F1C.png
new file mode 100755
index 00000000..e26e793c
Binary files /dev/null and b/static/icons/06006F1C.png differ
diff --git a/static/icons/06006F1D.png b/static/icons/06006F1D.png
new file mode 100755
index 00000000..ef9bfa26
Binary files /dev/null and b/static/icons/06006F1D.png differ
diff --git a/static/icons/06006F1E.png b/static/icons/06006F1E.png
new file mode 100755
index 00000000..8c055da3
Binary files /dev/null and b/static/icons/06006F1E.png differ
diff --git a/static/icons/06006F1F.png b/static/icons/06006F1F.png
new file mode 100755
index 00000000..305e2b87
Binary files /dev/null and b/static/icons/06006F1F.png differ
diff --git a/static/icons/06006F20.png b/static/icons/06006F20.png
new file mode 100755
index 00000000..edb323ba
Binary files /dev/null and b/static/icons/06006F20.png differ
diff --git a/static/icons/06006F21.png b/static/icons/06006F21.png
new file mode 100755
index 00000000..c35eb7e0
Binary files /dev/null and b/static/icons/06006F21.png differ
diff --git a/static/icons/06006F22.png b/static/icons/06006F22.png
new file mode 100755
index 00000000..42df7cf4
Binary files /dev/null and b/static/icons/06006F22.png differ
diff --git a/static/icons/06006F23.png b/static/icons/06006F23.png
new file mode 100755
index 00000000..41846d51
Binary files /dev/null and b/static/icons/06006F23.png differ
diff --git a/static/icons/06006F24.png b/static/icons/06006F24.png
new file mode 100755
index 00000000..de3d0395
Binary files /dev/null and b/static/icons/06006F24.png differ
diff --git a/static/icons/06006F25.png b/static/icons/06006F25.png
new file mode 100755
index 00000000..6c636410
Binary files /dev/null and b/static/icons/06006F25.png differ
diff --git a/static/icons/06006F26.png b/static/icons/06006F26.png
new file mode 100755
index 00000000..2ad1f21c
Binary files /dev/null and b/static/icons/06006F26.png differ
diff --git a/static/icons/06006F27.png b/static/icons/06006F27.png
new file mode 100755
index 00000000..be5cffe4
Binary files /dev/null and b/static/icons/06006F27.png differ
diff --git a/static/icons/06006F28.png b/static/icons/06006F28.png
new file mode 100755
index 00000000..a409a2b6
Binary files /dev/null and b/static/icons/06006F28.png differ
diff --git a/static/icons/06006F29.png b/static/icons/06006F29.png
new file mode 100755
index 00000000..a51cb9e7
Binary files /dev/null and b/static/icons/06006F29.png differ
diff --git a/static/icons/06006F2A.png b/static/icons/06006F2A.png
new file mode 100755
index 00000000..6a4f25b7
Binary files /dev/null and b/static/icons/06006F2A.png differ
diff --git a/static/icons/06006F2B.png b/static/icons/06006F2B.png
new file mode 100755
index 00000000..1768d5bc
Binary files /dev/null and b/static/icons/06006F2B.png differ
diff --git a/static/icons/06006F2C.png b/static/icons/06006F2C.png
new file mode 100755
index 00000000..b4c80b8a
Binary files /dev/null and b/static/icons/06006F2C.png differ
diff --git a/static/icons/06006F2D.png b/static/icons/06006F2D.png
new file mode 100755
index 00000000..bd4e0aa9
Binary files /dev/null and b/static/icons/06006F2D.png differ
diff --git a/static/icons/06006F2E.png b/static/icons/06006F2E.png
new file mode 100755
index 00000000..245c31fc
Binary files /dev/null and b/static/icons/06006F2E.png differ
diff --git a/static/icons/06006F2F.png b/static/icons/06006F2F.png
new file mode 100755
index 00000000..4271bc45
Binary files /dev/null and b/static/icons/06006F2F.png differ
diff --git a/static/icons/06006F30.png b/static/icons/06006F30.png
new file mode 100755
index 00000000..43ccd623
Binary files /dev/null and b/static/icons/06006F30.png differ
diff --git a/static/icons/06006F31.png b/static/icons/06006F31.png
new file mode 100755
index 00000000..d2f0f2e7
Binary files /dev/null and b/static/icons/06006F31.png differ
diff --git a/static/icons/06006F33.png b/static/icons/06006F33.png
new file mode 100755
index 00000000..fba40d27
Binary files /dev/null and b/static/icons/06006F33.png differ
diff --git a/static/icons/06006F34.png b/static/icons/06006F34.png
new file mode 100755
index 00000000..cd3f8eae
Binary files /dev/null and b/static/icons/06006F34.png differ
diff --git a/static/icons/06006F35.png b/static/icons/06006F35.png
new file mode 100755
index 00000000..21662e15
Binary files /dev/null and b/static/icons/06006F35.png differ
diff --git a/static/icons/06006F46.png b/static/icons/06006F46.png
new file mode 100755
index 00000000..259fb66b
Binary files /dev/null and b/static/icons/06006F46.png differ
diff --git a/static/icons/06006F47.png b/static/icons/06006F47.png
new file mode 100755
index 00000000..609c71b3
Binary files /dev/null and b/static/icons/06006F47.png differ
diff --git a/static/icons/06006F48.png b/static/icons/06006F48.png
new file mode 100755
index 00000000..50824844
Binary files /dev/null and b/static/icons/06006F48.png differ
diff --git a/static/icons/06006F49.png b/static/icons/06006F49.png
new file mode 100755
index 00000000..396c7aa5
Binary files /dev/null and b/static/icons/06006F49.png differ
diff --git a/static/icons/06006F4A.png b/static/icons/06006F4A.png
new file mode 100755
index 00000000..b097fb03
Binary files /dev/null and b/static/icons/06006F4A.png differ
diff --git a/static/icons/06006F4B.png b/static/icons/06006F4B.png
new file mode 100755
index 00000000..d3698586
Binary files /dev/null and b/static/icons/06006F4B.png differ
diff --git a/static/icons/06006F4C.png b/static/icons/06006F4C.png
new file mode 100755
index 00000000..6acf8931
Binary files /dev/null and b/static/icons/06006F4C.png differ
diff --git a/static/icons/06006F4D.png b/static/icons/06006F4D.png
new file mode 100755
index 00000000..a7aec50e
Binary files /dev/null and b/static/icons/06006F4D.png differ
diff --git a/static/icons/06006F4E.png b/static/icons/06006F4E.png
new file mode 100755
index 00000000..21037357
Binary files /dev/null and b/static/icons/06006F4E.png differ
diff --git a/static/icons/06006F4F.png b/static/icons/06006F4F.png
new file mode 100755
index 00000000..4276dc7f
Binary files /dev/null and b/static/icons/06006F4F.png differ
diff --git a/static/icons/06006F50.png b/static/icons/06006F50.png
new file mode 100755
index 00000000..4b09167d
Binary files /dev/null and b/static/icons/06006F50.png differ
diff --git a/static/icons/06006F51.png b/static/icons/06006F51.png
new file mode 100755
index 00000000..b7f382f6
Binary files /dev/null and b/static/icons/06006F51.png differ
diff --git a/static/icons/06006F52.png b/static/icons/06006F52.png
new file mode 100755
index 00000000..4ceb4f6c
Binary files /dev/null and b/static/icons/06006F52.png differ
diff --git a/static/icons/06006F53.png b/static/icons/06006F53.png
new file mode 100755
index 00000000..1146bb07
Binary files /dev/null and b/static/icons/06006F53.png differ
diff --git a/static/icons/06006F54.png b/static/icons/06006F54.png
new file mode 100755
index 00000000..8f76cde8
Binary files /dev/null and b/static/icons/06006F54.png differ
diff --git a/static/icons/06006F55.png b/static/icons/06006F55.png
new file mode 100755
index 00000000..243e641f
Binary files /dev/null and b/static/icons/06006F55.png differ
diff --git a/static/icons/06006F5C.png b/static/icons/06006F5C.png
new file mode 100755
index 00000000..219b9e6e
Binary files /dev/null and b/static/icons/06006F5C.png differ
diff --git a/static/icons/06006F5D.png b/static/icons/06006F5D.png
new file mode 100755
index 00000000..4360aa77
Binary files /dev/null and b/static/icons/06006F5D.png differ
diff --git a/static/icons/06006F5E.png b/static/icons/06006F5E.png
new file mode 100755
index 00000000..0b0fe51b
Binary files /dev/null and b/static/icons/06006F5E.png differ
diff --git a/static/icons/06006F5F.png b/static/icons/06006F5F.png
new file mode 100755
index 00000000..0358f0cf
Binary files /dev/null and b/static/icons/06006F5F.png differ
diff --git a/static/icons/06006F60.png b/static/icons/06006F60.png
new file mode 100755
index 00000000..b6a2563f
Binary files /dev/null and b/static/icons/06006F60.png differ
diff --git a/static/icons/06006F61.png b/static/icons/06006F61.png
new file mode 100755
index 00000000..27f8f886
Binary files /dev/null and b/static/icons/06006F61.png differ
diff --git a/static/icons/06006F62.png b/static/icons/06006F62.png
new file mode 100755
index 00000000..ba5abb7a
Binary files /dev/null and b/static/icons/06006F62.png differ
diff --git a/static/icons/06006F63.png b/static/icons/06006F63.png
new file mode 100755
index 00000000..06fbd962
Binary files /dev/null and b/static/icons/06006F63.png differ
diff --git a/static/icons/06006F64.png b/static/icons/06006F64.png
new file mode 100755
index 00000000..4de1e375
Binary files /dev/null and b/static/icons/06006F64.png differ
diff --git a/static/icons/06006F65.png b/static/icons/06006F65.png
new file mode 100755
index 00000000..85de1cb8
Binary files /dev/null and b/static/icons/06006F65.png differ
diff --git a/static/icons/06006F66.png b/static/icons/06006F66.png
new file mode 100755
index 00000000..ebc02828
Binary files /dev/null and b/static/icons/06006F66.png differ
diff --git a/static/icons/06006F67.png b/static/icons/06006F67.png
new file mode 100755
index 00000000..44451886
Binary files /dev/null and b/static/icons/06006F67.png differ
diff --git a/static/icons/06006F6D.png b/static/icons/06006F6D.png
new file mode 100755
index 00000000..c781f65d
Binary files /dev/null and b/static/icons/06006F6D.png differ
diff --git a/static/icons/06006F6E.png b/static/icons/06006F6E.png
new file mode 100755
index 00000000..b0b70d35
Binary files /dev/null and b/static/icons/06006F6E.png differ
diff --git a/static/icons/06006F6F.png b/static/icons/06006F6F.png
new file mode 100755
index 00000000..43d87a86
Binary files /dev/null and b/static/icons/06006F6F.png differ
diff --git a/static/icons/06006F70.png b/static/icons/06006F70.png
new file mode 100755
index 00000000..6355d3ac
Binary files /dev/null and b/static/icons/06006F70.png differ
diff --git a/static/icons/06006F71.png b/static/icons/06006F71.png
new file mode 100755
index 00000000..d1491752
Binary files /dev/null and b/static/icons/06006F71.png differ
diff --git a/static/icons/06006F72.png b/static/icons/06006F72.png
new file mode 100755
index 00000000..e83fdee6
Binary files /dev/null and b/static/icons/06006F72.png differ
diff --git a/static/icons/06006F73.png b/static/icons/06006F73.png
new file mode 100755
index 00000000..108fb595
Binary files /dev/null and b/static/icons/06006F73.png differ
diff --git a/static/icons/06006F74.png b/static/icons/06006F74.png
new file mode 100755
index 00000000..eb8b5807
Binary files /dev/null and b/static/icons/06006F74.png differ
diff --git a/static/icons/06006F75.png b/static/icons/06006F75.png
new file mode 100755
index 00000000..ac6f12dd
Binary files /dev/null and b/static/icons/06006F75.png differ
diff --git a/static/icons/06006F76.png b/static/icons/06006F76.png
new file mode 100755
index 00000000..dce9979e
Binary files /dev/null and b/static/icons/06006F76.png differ
diff --git a/static/icons/06006F77.png b/static/icons/06006F77.png
new file mode 100755
index 00000000..f45e62a9
Binary files /dev/null and b/static/icons/06006F77.png differ
diff --git a/static/icons/06006F78.png b/static/icons/06006F78.png
new file mode 100755
index 00000000..d6b30818
Binary files /dev/null and b/static/icons/06006F78.png differ
diff --git a/static/icons/06006F79.png b/static/icons/06006F79.png
new file mode 100755
index 00000000..25c49cc0
Binary files /dev/null and b/static/icons/06006F79.png differ
diff --git a/static/icons/06006F7A.png b/static/icons/06006F7A.png
new file mode 100755
index 00000000..8b103346
Binary files /dev/null and b/static/icons/06006F7A.png differ
diff --git a/static/icons/06006F7B.png b/static/icons/06006F7B.png
new file mode 100755
index 00000000..a5894bf4
Binary files /dev/null and b/static/icons/06006F7B.png differ
diff --git a/static/icons/06006F7C.png b/static/icons/06006F7C.png
new file mode 100755
index 00000000..1db9bc5b
Binary files /dev/null and b/static/icons/06006F7C.png differ
diff --git a/static/icons/06006F7D.png b/static/icons/06006F7D.png
new file mode 100755
index 00000000..84aa24c3
Binary files /dev/null and b/static/icons/06006F7D.png differ
diff --git a/static/icons/06006F7E.png b/static/icons/06006F7E.png
new file mode 100755
index 00000000..cbfee056
Binary files /dev/null and b/static/icons/06006F7E.png differ
diff --git a/static/icons/06006F7F.png b/static/icons/06006F7F.png
new file mode 100755
index 00000000..86365e23
Binary files /dev/null and b/static/icons/06006F7F.png differ
diff --git a/static/icons/06006F80.png b/static/icons/06006F80.png
new file mode 100755
index 00000000..6d02a986
Binary files /dev/null and b/static/icons/06006F80.png differ
diff --git a/static/icons/06006F81.png b/static/icons/06006F81.png
new file mode 100755
index 00000000..4d6a4c1f
Binary files /dev/null and b/static/icons/06006F81.png differ
diff --git a/static/icons/06006F82.png b/static/icons/06006F82.png
new file mode 100755
index 00000000..6d02a986
Binary files /dev/null and b/static/icons/06006F82.png differ
diff --git a/static/icons/06006F83.png b/static/icons/06006F83.png
new file mode 100755
index 00000000..4d6a4c1f
Binary files /dev/null and b/static/icons/06006F83.png differ
diff --git a/static/icons/06006F84.png b/static/icons/06006F84.png
new file mode 100755
index 00000000..ba66c005
Binary files /dev/null and b/static/icons/06006F84.png differ
diff --git a/static/icons/06006F85.png b/static/icons/06006F85.png
new file mode 100755
index 00000000..ba66c005
Binary files /dev/null and b/static/icons/06006F85.png differ
diff --git a/static/icons/06006F86.png b/static/icons/06006F86.png
new file mode 100755
index 00000000..e0b1a900
Binary files /dev/null and b/static/icons/06006F86.png differ
diff --git a/static/icons/06006F87.png b/static/icons/06006F87.png
new file mode 100755
index 00000000..daba655f
Binary files /dev/null and b/static/icons/06006F87.png differ
diff --git a/static/icons/06006F88.png b/static/icons/06006F88.png
new file mode 100755
index 00000000..9b8a0ba3
Binary files /dev/null and b/static/icons/06006F88.png differ
diff --git a/static/icons/06006F89.png b/static/icons/06006F89.png
new file mode 100755
index 00000000..b1b8f7bb
Binary files /dev/null and b/static/icons/06006F89.png differ
diff --git a/static/icons/06006F8A.png b/static/icons/06006F8A.png
new file mode 100755
index 00000000..65d307f4
Binary files /dev/null and b/static/icons/06006F8A.png differ
diff --git a/static/icons/06006F8B.png b/static/icons/06006F8B.png
new file mode 100755
index 00000000..f0a1660a
Binary files /dev/null and b/static/icons/06006F8B.png differ
diff --git a/static/icons/06006F8C.png b/static/icons/06006F8C.png
new file mode 100755
index 00000000..8fcaf78e
Binary files /dev/null and b/static/icons/06006F8C.png differ
diff --git a/static/icons/06006F8D.png b/static/icons/06006F8D.png
new file mode 100755
index 00000000..90a6d384
Binary files /dev/null and b/static/icons/06006F8D.png differ
diff --git a/static/icons/06006F8E.png b/static/icons/06006F8E.png
new file mode 100755
index 00000000..5e5f5c73
Binary files /dev/null and b/static/icons/06006F8E.png differ
diff --git a/static/icons/06006F90.png b/static/icons/06006F90.png
new file mode 100755
index 00000000..626ddcd1
Binary files /dev/null and b/static/icons/06006F90.png differ
diff --git a/static/icons/06006FC1.png b/static/icons/06006FC1.png
new file mode 100755
index 00000000..3dcccc81
Binary files /dev/null and b/static/icons/06006FC1.png differ
diff --git a/static/icons/06006FC2.png b/static/icons/06006FC2.png
new file mode 100755
index 00000000..cd0db2b9
Binary files /dev/null and b/static/icons/06006FC2.png differ
diff --git a/static/icons/06006FC3.png b/static/icons/06006FC3.png
new file mode 100755
index 00000000..489e35c7
Binary files /dev/null and b/static/icons/06006FC3.png differ
diff --git a/static/icons/06006FC4.png b/static/icons/06006FC4.png
new file mode 100755
index 00000000..8283957f
Binary files /dev/null and b/static/icons/06006FC4.png differ
diff --git a/static/icons/06006FC5.png b/static/icons/06006FC5.png
new file mode 100755
index 00000000..8317c1c2
Binary files /dev/null and b/static/icons/06006FC5.png differ
diff --git a/static/icons/06006FC6.png b/static/icons/06006FC6.png
new file mode 100755
index 00000000..153f72ff
Binary files /dev/null and b/static/icons/06006FC6.png differ
diff --git a/static/icons/06006FC7.png b/static/icons/06006FC7.png
new file mode 100755
index 00000000..acf16084
Binary files /dev/null and b/static/icons/06006FC7.png differ
diff --git a/static/icons/06006FC8.png b/static/icons/06006FC8.png
new file mode 100755
index 00000000..e49cf5f4
Binary files /dev/null and b/static/icons/06006FC8.png differ
diff --git a/static/icons/06006FC9.png b/static/icons/06006FC9.png
new file mode 100755
index 00000000..01b5d22a
Binary files /dev/null and b/static/icons/06006FC9.png differ
diff --git a/static/icons/06006FCA.png b/static/icons/06006FCA.png
new file mode 100755
index 00000000..a5d5bd4d
Binary files /dev/null and b/static/icons/06006FCA.png differ
diff --git a/static/icons/06006FCB.png b/static/icons/06006FCB.png
new file mode 100755
index 00000000..8116fda7
Binary files /dev/null and b/static/icons/06006FCB.png differ
diff --git a/static/icons/06006FCC.png b/static/icons/06006FCC.png
new file mode 100755
index 00000000..5915b112
Binary files /dev/null and b/static/icons/06006FCC.png differ
diff --git a/static/icons/06006FCD.png b/static/icons/06006FCD.png
new file mode 100755
index 00000000..4a6a9b1b
Binary files /dev/null and b/static/icons/06006FCD.png differ
diff --git a/static/icons/06006FCE.png b/static/icons/06006FCE.png
new file mode 100755
index 00000000..da2ce245
Binary files /dev/null and b/static/icons/06006FCE.png differ
diff --git a/static/icons/06006FCF.png b/static/icons/06006FCF.png
new file mode 100755
index 00000000..d95575f5
Binary files /dev/null and b/static/icons/06006FCF.png differ
diff --git a/static/icons/06006FD0.png b/static/icons/06006FD0.png
new file mode 100755
index 00000000..b20cb783
Binary files /dev/null and b/static/icons/06006FD0.png differ
diff --git a/static/icons/06006FD1.png b/static/icons/06006FD1.png
new file mode 100755
index 00000000..3e24387f
Binary files /dev/null and b/static/icons/06006FD1.png differ
diff --git a/static/icons/06006FD2.png b/static/icons/06006FD2.png
new file mode 100755
index 00000000..73b2842c
Binary files /dev/null and b/static/icons/06006FD2.png differ
diff --git a/static/icons/06006FD6.png b/static/icons/06006FD6.png
new file mode 100755
index 00000000..c660034e
Binary files /dev/null and b/static/icons/06006FD6.png differ
diff --git a/static/icons/06006FD8.png b/static/icons/06006FD8.png
new file mode 100755
index 00000000..8effda20
Binary files /dev/null and b/static/icons/06006FD8.png differ
diff --git a/static/icons/06006FD9.png b/static/icons/06006FD9.png
new file mode 100755
index 00000000..a9c67ec4
Binary files /dev/null and b/static/icons/06006FD9.png differ
diff --git a/static/icons/06006FDA.png b/static/icons/06006FDA.png
new file mode 100755
index 00000000..ba928a31
Binary files /dev/null and b/static/icons/06006FDA.png differ
diff --git a/static/icons/06006FDC.png b/static/icons/06006FDC.png
new file mode 100755
index 00000000..e46aa773
Binary files /dev/null and b/static/icons/06006FDC.png differ
diff --git a/static/icons/06006FDF.png b/static/icons/06006FDF.png
new file mode 100755
index 00000000..47fcdfa3
Binary files /dev/null and b/static/icons/06006FDF.png differ
diff --git a/static/icons/06006FE0.png b/static/icons/06006FE0.png
new file mode 100755
index 00000000..e995e5f8
Binary files /dev/null and b/static/icons/06006FE0.png differ
diff --git a/static/icons/06006FE1.png b/static/icons/06006FE1.png
new file mode 100755
index 00000000..f941d61f
Binary files /dev/null and b/static/icons/06006FE1.png differ
diff --git a/static/icons/06006FE2.png b/static/icons/06006FE2.png
new file mode 100755
index 00000000..4007c09a
Binary files /dev/null and b/static/icons/06006FE2.png differ
diff --git a/static/icons/06006FEE.png b/static/icons/06006FEE.png
new file mode 100755
index 00000000..3c7b6efc
Binary files /dev/null and b/static/icons/06006FEE.png differ
diff --git a/static/icons/06006FF0.png b/static/icons/06006FF0.png
new file mode 100755
index 00000000..f5fd7ea8
Binary files /dev/null and b/static/icons/06006FF0.png differ
diff --git a/static/icons/06006FF1.png b/static/icons/06006FF1.png
new file mode 100755
index 00000000..4687d2dd
Binary files /dev/null and b/static/icons/06006FF1.png differ
diff --git a/static/icons/06006FF2.png b/static/icons/06006FF2.png
new file mode 100755
index 00000000..764ffcf7
Binary files /dev/null and b/static/icons/06006FF2.png differ
diff --git a/static/icons/06006FF3.png b/static/icons/06006FF3.png
new file mode 100755
index 00000000..f6ef7538
Binary files /dev/null and b/static/icons/06006FF3.png differ
diff --git a/static/icons/06006FF4.png b/static/icons/06006FF4.png
new file mode 100755
index 00000000..8eeeddfc
Binary files /dev/null and b/static/icons/06006FF4.png differ
diff --git a/static/icons/06006FF5.png b/static/icons/06006FF5.png
new file mode 100755
index 00000000..a55a79f1
Binary files /dev/null and b/static/icons/06006FF5.png differ
diff --git a/static/icons/06006FF6.png b/static/icons/06006FF6.png
new file mode 100755
index 00000000..3b1906d0
Binary files /dev/null and b/static/icons/06006FF6.png differ
diff --git a/static/icons/06006FF7.png b/static/icons/06006FF7.png
new file mode 100755
index 00000000..cbe55fa7
Binary files /dev/null and b/static/icons/06006FF7.png differ
diff --git a/static/icons/06006FF8.png b/static/icons/06006FF8.png
new file mode 100755
index 00000000..be98a86a
Binary files /dev/null and b/static/icons/06006FF8.png differ
diff --git a/static/icons/06006FF9.png b/static/icons/06006FF9.png
new file mode 100755
index 00000000..3e7a7944
Binary files /dev/null and b/static/icons/06006FF9.png differ
diff --git a/static/icons/06006FFA.png b/static/icons/06006FFA.png
new file mode 100755
index 00000000..54258362
Binary files /dev/null and b/static/icons/06006FFA.png differ
diff --git a/static/icons/06006FFB.png b/static/icons/06006FFB.png
new file mode 100755
index 00000000..5103e294
Binary files /dev/null and b/static/icons/06006FFB.png differ
diff --git a/static/icons/06006FFD.png b/static/icons/06006FFD.png
new file mode 100755
index 00000000..b6951597
Binary files /dev/null and b/static/icons/06006FFD.png differ
diff --git a/static/icons/06006FFE.png b/static/icons/06006FFE.png
new file mode 100755
index 00000000..4c79476d
Binary files /dev/null and b/static/icons/06006FFE.png differ
diff --git a/static/icons/06006FFF.png b/static/icons/06006FFF.png
new file mode 100755
index 00000000..a30799b0
Binary files /dev/null and b/static/icons/06006FFF.png differ
diff --git a/static/icons/06007000.png b/static/icons/06007000.png
new file mode 100755
index 00000000..1991d330
Binary files /dev/null and b/static/icons/06007000.png differ
diff --git a/static/icons/06007001.png b/static/icons/06007001.png
new file mode 100755
index 00000000..01e67fac
Binary files /dev/null and b/static/icons/06007001.png differ
diff --git a/static/icons/06007002.png b/static/icons/06007002.png
new file mode 100755
index 00000000..6cfb3e0f
Binary files /dev/null and b/static/icons/06007002.png differ
diff --git a/static/icons/06007003.png b/static/icons/06007003.png
new file mode 100755
index 00000000..00aa1c44
Binary files /dev/null and b/static/icons/06007003.png differ
diff --git a/static/icons/06007004.png b/static/icons/06007004.png
new file mode 100755
index 00000000..637ae90a
Binary files /dev/null and b/static/icons/06007004.png differ
diff --git a/static/icons/06007005.png b/static/icons/06007005.png
new file mode 100755
index 00000000..edfe77c2
Binary files /dev/null and b/static/icons/06007005.png differ
diff --git a/static/icons/06007006.png b/static/icons/06007006.png
new file mode 100755
index 00000000..0ec9bda8
Binary files /dev/null and b/static/icons/06007006.png differ
diff --git a/static/icons/06007007.png b/static/icons/06007007.png
new file mode 100755
index 00000000..2ad6dcec
Binary files /dev/null and b/static/icons/06007007.png differ
diff --git a/static/icons/06007008.png b/static/icons/06007008.png
new file mode 100755
index 00000000..4553c375
Binary files /dev/null and b/static/icons/06007008.png differ
diff --git a/static/icons/06007009.png b/static/icons/06007009.png
new file mode 100755
index 00000000..ccfb46c9
Binary files /dev/null and b/static/icons/06007009.png differ
diff --git a/static/icons/0600700A.png b/static/icons/0600700A.png
new file mode 100755
index 00000000..4a44f084
Binary files /dev/null and b/static/icons/0600700A.png differ
diff --git a/static/icons/0600700B.png b/static/icons/0600700B.png
new file mode 100755
index 00000000..e2c24ed3
Binary files /dev/null and b/static/icons/0600700B.png differ
diff --git a/static/icons/0600700C.png b/static/icons/0600700C.png
new file mode 100755
index 00000000..bb534d9a
Binary files /dev/null and b/static/icons/0600700C.png differ
diff --git a/static/icons/0600700D.png b/static/icons/0600700D.png
new file mode 100755
index 00000000..3a15bf25
Binary files /dev/null and b/static/icons/0600700D.png differ
diff --git a/static/icons/0600700E.png b/static/icons/0600700E.png
new file mode 100755
index 00000000..bc0c4e0e
Binary files /dev/null and b/static/icons/0600700E.png differ
diff --git a/static/icons/0600700F.png b/static/icons/0600700F.png
new file mode 100755
index 00000000..ee3938cb
Binary files /dev/null and b/static/icons/0600700F.png differ
diff --git a/static/icons/06007010.png b/static/icons/06007010.png
new file mode 100755
index 00000000..e2065a2c
Binary files /dev/null and b/static/icons/06007010.png differ
diff --git a/static/icons/06007011.png b/static/icons/06007011.png
new file mode 100755
index 00000000..1c0b983d
Binary files /dev/null and b/static/icons/06007011.png differ
diff --git a/static/icons/06007012.png b/static/icons/06007012.png
new file mode 100755
index 00000000..de09e6a9
Binary files /dev/null and b/static/icons/06007012.png differ
diff --git a/static/icons/06007013.png b/static/icons/06007013.png
new file mode 100755
index 00000000..19b816e5
Binary files /dev/null and b/static/icons/06007013.png differ
diff --git a/static/icons/06007014.png b/static/icons/06007014.png
new file mode 100755
index 00000000..96916b70
Binary files /dev/null and b/static/icons/06007014.png differ
diff --git a/static/icons/06007015.png b/static/icons/06007015.png
new file mode 100755
index 00000000..9c922d53
Binary files /dev/null and b/static/icons/06007015.png differ
diff --git a/static/icons/06007016.png b/static/icons/06007016.png
new file mode 100755
index 00000000..7bfaa1a9
Binary files /dev/null and b/static/icons/06007016.png differ
diff --git a/static/icons/06007017.png b/static/icons/06007017.png
new file mode 100755
index 00000000..6abb7d6b
Binary files /dev/null and b/static/icons/06007017.png differ
diff --git a/static/icons/06007018.png b/static/icons/06007018.png
new file mode 100755
index 00000000..4a3a1642
Binary files /dev/null and b/static/icons/06007018.png differ
diff --git a/static/icons/06007019.png b/static/icons/06007019.png
new file mode 100755
index 00000000..3b979d36
Binary files /dev/null and b/static/icons/06007019.png differ
diff --git a/static/icons/0600701A.png b/static/icons/0600701A.png
new file mode 100755
index 00000000..d9e89fdc
Binary files /dev/null and b/static/icons/0600701A.png differ
diff --git a/static/icons/0600701B.png b/static/icons/0600701B.png
new file mode 100755
index 00000000..05500834
Binary files /dev/null and b/static/icons/0600701B.png differ
diff --git a/static/icons/0600701C.png b/static/icons/0600701C.png
new file mode 100755
index 00000000..113c6c6d
Binary files /dev/null and b/static/icons/0600701C.png differ
diff --git a/static/icons/0600701D.png b/static/icons/0600701D.png
new file mode 100755
index 00000000..a664e44c
Binary files /dev/null and b/static/icons/0600701D.png differ
diff --git a/static/icons/0600701E.png b/static/icons/0600701E.png
new file mode 100755
index 00000000..4a9cf58d
Binary files /dev/null and b/static/icons/0600701E.png differ
diff --git a/static/icons/0600701F.png b/static/icons/0600701F.png
new file mode 100755
index 00000000..f2b5d848
Binary files /dev/null and b/static/icons/0600701F.png differ
diff --git a/static/icons/06007020.png b/static/icons/06007020.png
new file mode 100755
index 00000000..b758e8a4
Binary files /dev/null and b/static/icons/06007020.png differ
diff --git a/static/icons/06007021.png b/static/icons/06007021.png
new file mode 100755
index 00000000..72e43d2e
Binary files /dev/null and b/static/icons/06007021.png differ
diff --git a/static/icons/06007022.png b/static/icons/06007022.png
new file mode 100755
index 00000000..5651bb69
Binary files /dev/null and b/static/icons/06007022.png differ
diff --git a/static/icons/06007023.png b/static/icons/06007023.png
new file mode 100755
index 00000000..37021688
Binary files /dev/null and b/static/icons/06007023.png differ
diff --git a/static/icons/06007024.png b/static/icons/06007024.png
new file mode 100755
index 00000000..5b0ab924
Binary files /dev/null and b/static/icons/06007024.png differ
diff --git a/static/icons/06007025.png b/static/icons/06007025.png
new file mode 100755
index 00000000..be9cacd3
Binary files /dev/null and b/static/icons/06007025.png differ
diff --git a/static/icons/06007026.png b/static/icons/06007026.png
new file mode 100755
index 00000000..f1bd04e4
Binary files /dev/null and b/static/icons/06007026.png differ
diff --git a/static/icons/06007027.png b/static/icons/06007027.png
new file mode 100755
index 00000000..2248512d
Binary files /dev/null and b/static/icons/06007027.png differ
diff --git a/static/icons/06007028.png b/static/icons/06007028.png
new file mode 100755
index 00000000..56dddf7b
Binary files /dev/null and b/static/icons/06007028.png differ
diff --git a/static/icons/06007029.png b/static/icons/06007029.png
new file mode 100755
index 00000000..5eb2ac42
Binary files /dev/null and b/static/icons/06007029.png differ
diff --git a/static/icons/0600702A.png b/static/icons/0600702A.png
new file mode 100755
index 00000000..98988d48
Binary files /dev/null and b/static/icons/0600702A.png differ
diff --git a/static/icons/0600702B.png b/static/icons/0600702B.png
new file mode 100755
index 00000000..50125e39
Binary files /dev/null and b/static/icons/0600702B.png differ
diff --git a/static/icons/0600702C.png b/static/icons/0600702C.png
new file mode 100755
index 00000000..abc85d58
Binary files /dev/null and b/static/icons/0600702C.png differ
diff --git a/static/icons/0600702D.png b/static/icons/0600702D.png
new file mode 100755
index 00000000..167590bf
Binary files /dev/null and b/static/icons/0600702D.png differ
diff --git a/static/icons/0600702E.png b/static/icons/0600702E.png
new file mode 100755
index 00000000..e72a8441
Binary files /dev/null and b/static/icons/0600702E.png differ
diff --git a/static/icons/0600702F.png b/static/icons/0600702F.png
new file mode 100755
index 00000000..24a8fd0c
Binary files /dev/null and b/static/icons/0600702F.png differ
diff --git a/static/icons/06007030.png b/static/icons/06007030.png
new file mode 100755
index 00000000..c131ae0c
Binary files /dev/null and b/static/icons/06007030.png differ
diff --git a/static/icons/06007031.png b/static/icons/06007031.png
new file mode 100755
index 00000000..92ab6f27
Binary files /dev/null and b/static/icons/06007031.png differ
diff --git a/static/icons/06007032.png b/static/icons/06007032.png
new file mode 100755
index 00000000..3352b3f9
Binary files /dev/null and b/static/icons/06007032.png differ
diff --git a/static/icons/06007033.png b/static/icons/06007033.png
new file mode 100755
index 00000000..40e02656
Binary files /dev/null and b/static/icons/06007033.png differ
diff --git a/static/icons/06007034.png b/static/icons/06007034.png
new file mode 100755
index 00000000..3fa2ae53
Binary files /dev/null and b/static/icons/06007034.png differ
diff --git a/static/icons/06007035.png b/static/icons/06007035.png
new file mode 100755
index 00000000..01ac7f76
Binary files /dev/null and b/static/icons/06007035.png differ
diff --git a/static/icons/06007036.png b/static/icons/06007036.png
new file mode 100755
index 00000000..b42a3e53
Binary files /dev/null and b/static/icons/06007036.png differ
diff --git a/static/icons/06007037.png b/static/icons/06007037.png
new file mode 100755
index 00000000..98e40c3d
Binary files /dev/null and b/static/icons/06007037.png differ
diff --git a/static/icons/06007038.png b/static/icons/06007038.png
new file mode 100755
index 00000000..fd950c29
Binary files /dev/null and b/static/icons/06007038.png differ
diff --git a/static/icons/06007039.png b/static/icons/06007039.png
new file mode 100755
index 00000000..34c33f3b
Binary files /dev/null and b/static/icons/06007039.png differ
diff --git a/static/icons/0600703A.png b/static/icons/0600703A.png
new file mode 100755
index 00000000..aa640c46
Binary files /dev/null and b/static/icons/0600703A.png differ
diff --git a/static/icons/0600703B.png b/static/icons/0600703B.png
new file mode 100755
index 00000000..1d3c4886
Binary files /dev/null and b/static/icons/0600703B.png differ
diff --git a/static/icons/0600703C.png b/static/icons/0600703C.png
new file mode 100755
index 00000000..602d9c70
Binary files /dev/null and b/static/icons/0600703C.png differ
diff --git a/static/icons/0600703D.png b/static/icons/0600703D.png
new file mode 100755
index 00000000..a61a8c18
Binary files /dev/null and b/static/icons/0600703D.png differ
diff --git a/static/icons/0600703E.png b/static/icons/0600703E.png
new file mode 100755
index 00000000..ec2ce94a
Binary files /dev/null and b/static/icons/0600703E.png differ
diff --git a/static/icons/0600703F.png b/static/icons/0600703F.png
new file mode 100755
index 00000000..5d79ad11
Binary files /dev/null and b/static/icons/0600703F.png differ
diff --git a/static/icons/06007040.png b/static/icons/06007040.png
new file mode 100755
index 00000000..1fbcefa1
Binary files /dev/null and b/static/icons/06007040.png differ
diff --git a/static/icons/06007041.png b/static/icons/06007041.png
new file mode 100755
index 00000000..e18908a8
Binary files /dev/null and b/static/icons/06007041.png differ
diff --git a/static/icons/06007042.png b/static/icons/06007042.png
new file mode 100755
index 00000000..430cf7fd
Binary files /dev/null and b/static/icons/06007042.png differ
diff --git a/static/icons/06007043.png b/static/icons/06007043.png
new file mode 100755
index 00000000..6d8daa71
Binary files /dev/null and b/static/icons/06007043.png differ
diff --git a/static/icons/06007044.png b/static/icons/06007044.png
new file mode 100755
index 00000000..44bbf1b4
Binary files /dev/null and b/static/icons/06007044.png differ
diff --git a/static/icons/06007045.png b/static/icons/06007045.png
new file mode 100755
index 00000000..474444dd
Binary files /dev/null and b/static/icons/06007045.png differ
diff --git a/static/icons/06007046.png b/static/icons/06007046.png
new file mode 100755
index 00000000..3fae53ce
Binary files /dev/null and b/static/icons/06007046.png differ
diff --git a/static/icons/06007047.png b/static/icons/06007047.png
new file mode 100755
index 00000000..9d918a78
Binary files /dev/null and b/static/icons/06007047.png differ
diff --git a/static/icons/06007048.png b/static/icons/06007048.png
new file mode 100755
index 00000000..52a260fb
Binary files /dev/null and b/static/icons/06007048.png differ
diff --git a/static/icons/06007049.png b/static/icons/06007049.png
new file mode 100755
index 00000000..5976bcd9
Binary files /dev/null and b/static/icons/06007049.png differ
diff --git a/static/icons/0600704A.png b/static/icons/0600704A.png
new file mode 100755
index 00000000..e4aa5e84
Binary files /dev/null and b/static/icons/0600704A.png differ
diff --git a/static/icons/0600704E.png b/static/icons/0600704E.png
new file mode 100755
index 00000000..6ec78ea5
Binary files /dev/null and b/static/icons/0600704E.png differ
diff --git a/static/icons/0600704F.png b/static/icons/0600704F.png
new file mode 100755
index 00000000..a9261657
Binary files /dev/null and b/static/icons/0600704F.png differ
diff --git a/static/icons/06007050.png b/static/icons/06007050.png
new file mode 100755
index 00000000..c3351fd7
Binary files /dev/null and b/static/icons/06007050.png differ
diff --git a/static/icons/06007051.png b/static/icons/06007051.png
new file mode 100755
index 00000000..ce98150c
Binary files /dev/null and b/static/icons/06007051.png differ
diff --git a/static/icons/06007052.png b/static/icons/06007052.png
new file mode 100755
index 00000000..0dd944dc
Binary files /dev/null and b/static/icons/06007052.png differ
diff --git a/static/icons/06007053.png b/static/icons/06007053.png
new file mode 100755
index 00000000..aa3d525a
Binary files /dev/null and b/static/icons/06007053.png differ
diff --git a/static/icons/06007054.png b/static/icons/06007054.png
new file mode 100755
index 00000000..47d7a9d3
Binary files /dev/null and b/static/icons/06007054.png differ
diff --git a/static/icons/06007055.png b/static/icons/06007055.png
new file mode 100755
index 00000000..88455696
Binary files /dev/null and b/static/icons/06007055.png differ
diff --git a/static/icons/06007056.png b/static/icons/06007056.png
new file mode 100755
index 00000000..48bbeb3a
Binary files /dev/null and b/static/icons/06007056.png differ
diff --git a/static/icons/06007057.png b/static/icons/06007057.png
new file mode 100755
index 00000000..b60e52df
Binary files /dev/null and b/static/icons/06007057.png differ
diff --git a/static/icons/06007058.png b/static/icons/06007058.png
new file mode 100755
index 00000000..b7af1dc6
Binary files /dev/null and b/static/icons/06007058.png differ
diff --git a/static/icons/06007059.png b/static/icons/06007059.png
new file mode 100755
index 00000000..26ce66e7
Binary files /dev/null and b/static/icons/06007059.png differ
diff --git a/static/icons/0600705A.png b/static/icons/0600705A.png
new file mode 100755
index 00000000..792a3882
Binary files /dev/null and b/static/icons/0600705A.png differ
diff --git a/static/icons/0600705B.png b/static/icons/0600705B.png
new file mode 100755
index 00000000..9970778e
Binary files /dev/null and b/static/icons/0600705B.png differ
diff --git a/static/icons/06007062.png b/static/icons/06007062.png
new file mode 100755
index 00000000..72391b55
Binary files /dev/null and b/static/icons/06007062.png differ
diff --git a/static/icons/06007063.png b/static/icons/06007063.png
new file mode 100755
index 00000000..7fdcfe92
Binary files /dev/null and b/static/icons/06007063.png differ
diff --git a/static/icons/06007065.png b/static/icons/06007065.png
new file mode 100755
index 00000000..caebfae8
Binary files /dev/null and b/static/icons/06007065.png differ
diff --git a/static/icons/06007066.png b/static/icons/06007066.png
new file mode 100755
index 00000000..225454d8
Binary files /dev/null and b/static/icons/06007066.png differ
diff --git a/static/icons/06007067.png b/static/icons/06007067.png
new file mode 100755
index 00000000..d0669e01
Binary files /dev/null and b/static/icons/06007067.png differ
diff --git a/static/icons/06007068.png b/static/icons/06007068.png
new file mode 100755
index 00000000..9cca57b2
Binary files /dev/null and b/static/icons/06007068.png differ
diff --git a/static/icons/06007069.png b/static/icons/06007069.png
new file mode 100755
index 00000000..d9e34d0c
Binary files /dev/null and b/static/icons/06007069.png differ
diff --git a/static/icons/06007075.png b/static/icons/06007075.png
new file mode 100755
index 00000000..ac946362
Binary files /dev/null and b/static/icons/06007075.png differ
diff --git a/static/icons/0600708F.png b/static/icons/0600708F.png
new file mode 100755
index 00000000..3464a77c
Binary files /dev/null and b/static/icons/0600708F.png differ
diff --git a/static/icons/06007090.png b/static/icons/06007090.png
new file mode 100755
index 00000000..2266fb8f
Binary files /dev/null and b/static/icons/06007090.png differ
diff --git a/static/icons/06007091.png b/static/icons/06007091.png
new file mode 100755
index 00000000..9f1826d5
Binary files /dev/null and b/static/icons/06007091.png differ
diff --git a/static/icons/06007092.png b/static/icons/06007092.png
new file mode 100755
index 00000000..c4f92265
Binary files /dev/null and b/static/icons/06007092.png differ
diff --git a/static/icons/06007093.png b/static/icons/06007093.png
new file mode 100755
index 00000000..8711848c
Binary files /dev/null and b/static/icons/06007093.png differ
diff --git a/static/icons/06007094.png b/static/icons/06007094.png
new file mode 100755
index 00000000..bb23ad26
Binary files /dev/null and b/static/icons/06007094.png differ
diff --git a/static/icons/06007095.png b/static/icons/06007095.png
new file mode 100755
index 00000000..7536f1a8
Binary files /dev/null and b/static/icons/06007095.png differ
diff --git a/static/icons/06007096.png b/static/icons/06007096.png
new file mode 100755
index 00000000..3c8ef79b
Binary files /dev/null and b/static/icons/06007096.png differ
diff --git a/static/icons/06007097.png b/static/icons/06007097.png
new file mode 100755
index 00000000..0a77d1e7
Binary files /dev/null and b/static/icons/06007097.png differ
diff --git a/static/icons/06007098.png b/static/icons/06007098.png
new file mode 100755
index 00000000..eea0722a
Binary files /dev/null and b/static/icons/06007098.png differ
diff --git a/static/icons/06007099.png b/static/icons/06007099.png
new file mode 100755
index 00000000..0a0cb5f1
Binary files /dev/null and b/static/icons/06007099.png differ
diff --git a/static/icons/0600709A.png b/static/icons/0600709A.png
new file mode 100755
index 00000000..0c55ec64
Binary files /dev/null and b/static/icons/0600709A.png differ
diff --git a/static/icons/0600709B.png b/static/icons/0600709B.png
new file mode 100755
index 00000000..09b240c1
Binary files /dev/null and b/static/icons/0600709B.png differ
diff --git a/static/icons/0600709C.png b/static/icons/0600709C.png
new file mode 100755
index 00000000..8c226ce2
Binary files /dev/null and b/static/icons/0600709C.png differ
diff --git a/static/icons/0600709D.png b/static/icons/0600709D.png
new file mode 100755
index 00000000..21418bd4
Binary files /dev/null and b/static/icons/0600709D.png differ
diff --git a/static/icons/0600709E.png b/static/icons/0600709E.png
new file mode 100755
index 00000000..3586fa3d
Binary files /dev/null and b/static/icons/0600709E.png differ
diff --git a/static/icons/0600709F.png b/static/icons/0600709F.png
new file mode 100755
index 00000000..b6a954db
Binary files /dev/null and b/static/icons/0600709F.png differ
diff --git a/static/icons/060070A0.png b/static/icons/060070A0.png
new file mode 100755
index 00000000..018229c4
Binary files /dev/null and b/static/icons/060070A0.png differ
diff --git a/static/icons/060070A1.png b/static/icons/060070A1.png
new file mode 100755
index 00000000..bf6d87cb
Binary files /dev/null and b/static/icons/060070A1.png differ
diff --git a/static/icons/060070A2.png b/static/icons/060070A2.png
new file mode 100755
index 00000000..8911e08e
Binary files /dev/null and b/static/icons/060070A2.png differ
diff --git a/static/icons/060070A3.png b/static/icons/060070A3.png
new file mode 100755
index 00000000..c2a62763
Binary files /dev/null and b/static/icons/060070A3.png differ
diff --git a/static/icons/060070A4.png b/static/icons/060070A4.png
new file mode 100755
index 00000000..d0f5d3bc
Binary files /dev/null and b/static/icons/060070A4.png differ
diff --git a/static/icons/060070A5.png b/static/icons/060070A5.png
new file mode 100755
index 00000000..0ce077b2
Binary files /dev/null and b/static/icons/060070A5.png differ
diff --git a/static/icons/060070A6.png b/static/icons/060070A6.png
new file mode 100755
index 00000000..74bd5cb7
Binary files /dev/null and b/static/icons/060070A6.png differ
diff --git a/static/icons/060070A7.png b/static/icons/060070A7.png
new file mode 100755
index 00000000..213e8572
Binary files /dev/null and b/static/icons/060070A7.png differ
diff --git a/static/icons/060070A8.png b/static/icons/060070A8.png
new file mode 100755
index 00000000..f3b91f27
Binary files /dev/null and b/static/icons/060070A8.png differ
diff --git a/static/icons/060070B4.png b/static/icons/060070B4.png
new file mode 100755
index 00000000..32b718ea
Binary files /dev/null and b/static/icons/060070B4.png differ
diff --git a/static/icons/060070B5.png b/static/icons/060070B5.png
new file mode 100755
index 00000000..b8f5ae93
Binary files /dev/null and b/static/icons/060070B5.png differ
diff --git a/static/icons/060070C1.png b/static/icons/060070C1.png
new file mode 100755
index 00000000..2906b098
Binary files /dev/null and b/static/icons/060070C1.png differ
diff --git a/static/icons/060070C2.png b/static/icons/060070C2.png
new file mode 100755
index 00000000..85b79b2b
Binary files /dev/null and b/static/icons/060070C2.png differ
diff --git a/static/icons/060070C3.png b/static/icons/060070C3.png
new file mode 100755
index 00000000..b4654fa7
Binary files /dev/null and b/static/icons/060070C3.png differ
diff --git a/static/icons/060070C4.png b/static/icons/060070C4.png
new file mode 100755
index 00000000..3f3c59df
Binary files /dev/null and b/static/icons/060070C4.png differ
diff --git a/static/icons/060070C5.png b/static/icons/060070C5.png
new file mode 100755
index 00000000..ac8649ca
Binary files /dev/null and b/static/icons/060070C5.png differ
diff --git a/static/icons/060070C6.png b/static/icons/060070C6.png
new file mode 100755
index 00000000..1717bb03
Binary files /dev/null and b/static/icons/060070C6.png differ
diff --git a/static/icons/060070C7.png b/static/icons/060070C7.png
new file mode 100755
index 00000000..4f648e07
Binary files /dev/null and b/static/icons/060070C7.png differ
diff --git a/static/icons/060070C8.png b/static/icons/060070C8.png
new file mode 100755
index 00000000..ed6717ce
Binary files /dev/null and b/static/icons/060070C8.png differ
diff --git a/static/icons/060070E1.png b/static/icons/060070E1.png
new file mode 100755
index 00000000..d3a0ed1e
Binary files /dev/null and b/static/icons/060070E1.png differ
diff --git a/static/icons/060070E2.png b/static/icons/060070E2.png
new file mode 100755
index 00000000..ebc02828
Binary files /dev/null and b/static/icons/060070E2.png differ
diff --git a/static/icons/060070E5.png b/static/icons/060070E5.png
new file mode 100755
index 00000000..694d2db8
Binary files /dev/null and b/static/icons/060070E5.png differ
diff --git a/static/icons/060070E6.png b/static/icons/060070E6.png
new file mode 100755
index 00000000..ed073ce2
Binary files /dev/null and b/static/icons/060070E6.png differ
diff --git a/static/icons/060070E7.png b/static/icons/060070E7.png
new file mode 100755
index 00000000..766c55fb
Binary files /dev/null and b/static/icons/060070E7.png differ
diff --git a/static/icons/060070E8.png b/static/icons/060070E8.png
new file mode 100755
index 00000000..9c00a118
Binary files /dev/null and b/static/icons/060070E8.png differ
diff --git a/static/icons/060070E9.png b/static/icons/060070E9.png
new file mode 100755
index 00000000..8d76c526
Binary files /dev/null and b/static/icons/060070E9.png differ
diff --git a/static/icons/060070EA.png b/static/icons/060070EA.png
new file mode 100755
index 00000000..bb20a752
Binary files /dev/null and b/static/icons/060070EA.png differ
diff --git a/static/icons/060070EB.png b/static/icons/060070EB.png
new file mode 100755
index 00000000..2c05d427
Binary files /dev/null and b/static/icons/060070EB.png differ
diff --git a/static/icons/060070EC.png b/static/icons/060070EC.png
new file mode 100755
index 00000000..46d9a433
Binary files /dev/null and b/static/icons/060070EC.png differ
diff --git a/static/icons/060070ED.png b/static/icons/060070ED.png
new file mode 100755
index 00000000..346b2d45
Binary files /dev/null and b/static/icons/060070ED.png differ
diff --git a/static/icons/060070EE.png b/static/icons/060070EE.png
new file mode 100755
index 00000000..42a7802f
Binary files /dev/null and b/static/icons/060070EE.png differ
diff --git a/static/icons/060070F0.png b/static/icons/060070F0.png
new file mode 100755
index 00000000..baffe4e8
Binary files /dev/null and b/static/icons/060070F0.png differ
diff --git a/static/icons/060070F1.png b/static/icons/060070F1.png
new file mode 100755
index 00000000..aae44d55
Binary files /dev/null and b/static/icons/060070F1.png differ
diff --git a/static/icons/060070F2.png b/static/icons/060070F2.png
new file mode 100755
index 00000000..cf298dc9
Binary files /dev/null and b/static/icons/060070F2.png differ
diff --git a/static/icons/060070F3.png b/static/icons/060070F3.png
new file mode 100755
index 00000000..e6751a0f
Binary files /dev/null and b/static/icons/060070F3.png differ
diff --git a/static/icons/060070F5.png b/static/icons/060070F5.png
new file mode 100755
index 00000000..92102bd0
Binary files /dev/null and b/static/icons/060070F5.png differ
diff --git a/static/icons/060070F6.png b/static/icons/060070F6.png
new file mode 100755
index 00000000..541425df
Binary files /dev/null and b/static/icons/060070F6.png differ
diff --git a/static/icons/060070F7.png b/static/icons/060070F7.png
new file mode 100755
index 00000000..01721459
Binary files /dev/null and b/static/icons/060070F7.png differ
diff --git a/static/icons/060070F8.png b/static/icons/060070F8.png
new file mode 100755
index 00000000..39f9e144
Binary files /dev/null and b/static/icons/060070F8.png differ
diff --git a/static/icons/060070F9.png b/static/icons/060070F9.png
new file mode 100755
index 00000000..f24ad34d
Binary files /dev/null and b/static/icons/060070F9.png differ
diff --git a/static/icons/060070FA.png b/static/icons/060070FA.png
new file mode 100755
index 00000000..3697b2aa
Binary files /dev/null and b/static/icons/060070FA.png differ
diff --git a/static/icons/060070FB.png b/static/icons/060070FB.png
new file mode 100755
index 00000000..869b017e
Binary files /dev/null and b/static/icons/060070FB.png differ
diff --git a/static/icons/060070FC.png b/static/icons/060070FC.png
new file mode 100755
index 00000000..19372146
Binary files /dev/null and b/static/icons/060070FC.png differ
diff --git a/static/icons/060070FD.png b/static/icons/060070FD.png
new file mode 100755
index 00000000..1aca2afa
Binary files /dev/null and b/static/icons/060070FD.png differ
diff --git a/static/icons/06007100.png b/static/icons/06007100.png
new file mode 100755
index 00000000..50429aeb
Binary files /dev/null and b/static/icons/06007100.png differ
diff --git a/static/icons/06007101.png b/static/icons/06007101.png
new file mode 100755
index 00000000..c7897221
Binary files /dev/null and b/static/icons/06007101.png differ
diff --git a/static/icons/06007102.png b/static/icons/06007102.png
new file mode 100755
index 00000000..4b9fb025
Binary files /dev/null and b/static/icons/06007102.png differ
diff --git a/static/icons/06007103.png b/static/icons/06007103.png
new file mode 100755
index 00000000..9fd20a4d
Binary files /dev/null and b/static/icons/06007103.png differ
diff --git a/static/icons/06007104.png b/static/icons/06007104.png
new file mode 100755
index 00000000..bf87090c
Binary files /dev/null and b/static/icons/06007104.png differ
diff --git a/static/icons/06007105.png b/static/icons/06007105.png
new file mode 100755
index 00000000..345aa3a6
Binary files /dev/null and b/static/icons/06007105.png differ
diff --git a/static/icons/06007106.png b/static/icons/06007106.png
new file mode 100755
index 00000000..92205d3a
Binary files /dev/null and b/static/icons/06007106.png differ
diff --git a/static/icons/06007107.png b/static/icons/06007107.png
new file mode 100755
index 00000000..539dbbef
Binary files /dev/null and b/static/icons/06007107.png differ
diff --git a/static/icons/06007108.png b/static/icons/06007108.png
new file mode 100755
index 00000000..90c3e9f9
Binary files /dev/null and b/static/icons/06007108.png differ
diff --git a/static/icons/06007109.png b/static/icons/06007109.png
new file mode 100755
index 00000000..60cbc9cf
Binary files /dev/null and b/static/icons/06007109.png differ
diff --git a/static/icons/0600710A.png b/static/icons/0600710A.png
new file mode 100755
index 00000000..89bc53ea
Binary files /dev/null and b/static/icons/0600710A.png differ
diff --git a/static/icons/0600710B.png b/static/icons/0600710B.png
new file mode 100755
index 00000000..c10ad181
Binary files /dev/null and b/static/icons/0600710B.png differ
diff --git a/static/icons/0600710C.png b/static/icons/0600710C.png
new file mode 100755
index 00000000..57e40e18
Binary files /dev/null and b/static/icons/0600710C.png differ
diff --git a/static/icons/0600710D.png b/static/icons/0600710D.png
new file mode 100755
index 00000000..56e3919e
Binary files /dev/null and b/static/icons/0600710D.png differ
diff --git a/static/icons/0600710E.png b/static/icons/0600710E.png
new file mode 100755
index 00000000..3efad25b
Binary files /dev/null and b/static/icons/0600710E.png differ
diff --git a/static/icons/0600710F.png b/static/icons/0600710F.png
new file mode 100755
index 00000000..a009963f
Binary files /dev/null and b/static/icons/0600710F.png differ
diff --git a/static/icons/06007110.png b/static/icons/06007110.png
new file mode 100755
index 00000000..7e8afcd6
Binary files /dev/null and b/static/icons/06007110.png differ
diff --git a/static/icons/06007111.png b/static/icons/06007111.png
new file mode 100755
index 00000000..5b29541f
Binary files /dev/null and b/static/icons/06007111.png differ
diff --git a/static/icons/06007112.png b/static/icons/06007112.png
new file mode 100755
index 00000000..b24f39db
Binary files /dev/null and b/static/icons/06007112.png differ
diff --git a/static/icons/06007113.png b/static/icons/06007113.png
new file mode 100755
index 00000000..c6c4bd43
Binary files /dev/null and b/static/icons/06007113.png differ
diff --git a/static/icons/06007114.png b/static/icons/06007114.png
new file mode 100755
index 00000000..d73d7927
Binary files /dev/null and b/static/icons/06007114.png differ
diff --git a/static/icons/06007115.png b/static/icons/06007115.png
new file mode 100755
index 00000000..ad147507
Binary files /dev/null and b/static/icons/06007115.png differ
diff --git a/static/icons/06007116.png b/static/icons/06007116.png
new file mode 100755
index 00000000..11fb84bd
Binary files /dev/null and b/static/icons/06007116.png differ
diff --git a/static/icons/06007117.png b/static/icons/06007117.png
new file mode 100755
index 00000000..2328c732
Binary files /dev/null and b/static/icons/06007117.png differ
diff --git a/static/icons/06007118.png b/static/icons/06007118.png
new file mode 100755
index 00000000..e9a7e1ad
Binary files /dev/null and b/static/icons/06007118.png differ
diff --git a/static/icons/06007119.png b/static/icons/06007119.png
new file mode 100755
index 00000000..09e2bf69
Binary files /dev/null and b/static/icons/06007119.png differ
diff --git a/static/icons/0600711A.png b/static/icons/0600711A.png
new file mode 100755
index 00000000..d83ccbdd
Binary files /dev/null and b/static/icons/0600711A.png differ
diff --git a/static/icons/0600711B.png b/static/icons/0600711B.png
new file mode 100755
index 00000000..7f29155d
Binary files /dev/null and b/static/icons/0600711B.png differ
diff --git a/static/icons/0600711C.png b/static/icons/0600711C.png
new file mode 100755
index 00000000..cd406ed5
Binary files /dev/null and b/static/icons/0600711C.png differ
diff --git a/static/icons/0600711D.png b/static/icons/0600711D.png
new file mode 100755
index 00000000..b376e4ae
Binary files /dev/null and b/static/icons/0600711D.png differ
diff --git a/static/icons/0600711E.png b/static/icons/0600711E.png
new file mode 100755
index 00000000..c8ce5854
Binary files /dev/null and b/static/icons/0600711E.png differ
diff --git a/static/icons/0600711F.png b/static/icons/0600711F.png
new file mode 100755
index 00000000..a4e62e2d
Binary files /dev/null and b/static/icons/0600711F.png differ
diff --git a/static/icons/06007120.png b/static/icons/06007120.png
new file mode 100755
index 00000000..e2b06338
Binary files /dev/null and b/static/icons/06007120.png differ
diff --git a/static/icons/06007121.png b/static/icons/06007121.png
new file mode 100755
index 00000000..fedb384a
Binary files /dev/null and b/static/icons/06007121.png differ
diff --git a/static/icons/06007122.png b/static/icons/06007122.png
new file mode 100755
index 00000000..e6e1493e
Binary files /dev/null and b/static/icons/06007122.png differ
diff --git a/static/icons/06007123.png b/static/icons/06007123.png
new file mode 100755
index 00000000..24bf4f2e
Binary files /dev/null and b/static/icons/06007123.png differ
diff --git a/static/icons/06007124.png b/static/icons/06007124.png
new file mode 100755
index 00000000..ec659062
Binary files /dev/null and b/static/icons/06007124.png differ
diff --git a/static/icons/06007125.png b/static/icons/06007125.png
new file mode 100755
index 00000000..dad91ebe
Binary files /dev/null and b/static/icons/06007125.png differ
diff --git a/static/icons/06007126.png b/static/icons/06007126.png
new file mode 100755
index 00000000..3840251a
Binary files /dev/null and b/static/icons/06007126.png differ
diff --git a/static/icons/06007127.png b/static/icons/06007127.png
new file mode 100755
index 00000000..afdc4041
Binary files /dev/null and b/static/icons/06007127.png differ
diff --git a/static/icons/06007128.png b/static/icons/06007128.png
new file mode 100755
index 00000000..44ac6a61
Binary files /dev/null and b/static/icons/06007128.png differ
diff --git a/static/icons/06007129.png b/static/icons/06007129.png
new file mode 100755
index 00000000..e22e28ec
Binary files /dev/null and b/static/icons/06007129.png differ
diff --git a/static/icons/0600712A.png b/static/icons/0600712A.png
new file mode 100755
index 00000000..c364b1c9
Binary files /dev/null and b/static/icons/0600712A.png differ
diff --git a/static/icons/0600712B.png b/static/icons/0600712B.png
new file mode 100755
index 00000000..3224b1ce
Binary files /dev/null and b/static/icons/0600712B.png differ
diff --git a/static/icons/0600712C.png b/static/icons/0600712C.png
new file mode 100755
index 00000000..ffd9a2bc
Binary files /dev/null and b/static/icons/0600712C.png differ
diff --git a/static/icons/0600712D.png b/static/icons/0600712D.png
new file mode 100755
index 00000000..22e64f25
Binary files /dev/null and b/static/icons/0600712D.png differ
diff --git a/static/icons/0600712E.png b/static/icons/0600712E.png
new file mode 100755
index 00000000..bd3d2941
Binary files /dev/null and b/static/icons/0600712E.png differ
diff --git a/static/icons/0600712F.png b/static/icons/0600712F.png
new file mode 100755
index 00000000..da35a4a3
Binary files /dev/null and b/static/icons/0600712F.png differ
diff --git a/static/icons/06007130.png b/static/icons/06007130.png
new file mode 100755
index 00000000..08d8005d
Binary files /dev/null and b/static/icons/06007130.png differ
diff --git a/static/icons/06007131.png b/static/icons/06007131.png
new file mode 100755
index 00000000..2f21a2a2
Binary files /dev/null and b/static/icons/06007131.png differ
diff --git a/static/icons/06007132.png b/static/icons/06007132.png
new file mode 100755
index 00000000..130bc87f
Binary files /dev/null and b/static/icons/06007132.png differ
diff --git a/static/icons/06007133.png b/static/icons/06007133.png
new file mode 100755
index 00000000..734df5fc
Binary files /dev/null and b/static/icons/06007133.png differ
diff --git a/static/icons/06007134.png b/static/icons/06007134.png
new file mode 100755
index 00000000..7ad583fd
Binary files /dev/null and b/static/icons/06007134.png differ
diff --git a/static/icons/06007135.png b/static/icons/06007135.png
new file mode 100755
index 00000000..3ecfbb4e
Binary files /dev/null and b/static/icons/06007135.png differ
diff --git a/static/icons/06007136.png b/static/icons/06007136.png
new file mode 100755
index 00000000..5440a0f3
Binary files /dev/null and b/static/icons/06007136.png differ
diff --git a/static/icons/06007137.png b/static/icons/06007137.png
new file mode 100755
index 00000000..ac2abd77
Binary files /dev/null and b/static/icons/06007137.png differ
diff --git a/static/icons/06007138.png b/static/icons/06007138.png
new file mode 100755
index 00000000..f14c64ff
Binary files /dev/null and b/static/icons/06007138.png differ
diff --git a/static/icons/06007139.png b/static/icons/06007139.png
new file mode 100755
index 00000000..5b8d4ef8
Binary files /dev/null and b/static/icons/06007139.png differ
diff --git a/static/icons/0600713A.png b/static/icons/0600713A.png
new file mode 100755
index 00000000..6875c86f
Binary files /dev/null and b/static/icons/0600713A.png differ
diff --git a/static/icons/0600713B.png b/static/icons/0600713B.png
new file mode 100755
index 00000000..e4f2e095
Binary files /dev/null and b/static/icons/0600713B.png differ
diff --git a/static/icons/0600713C.png b/static/icons/0600713C.png
new file mode 100755
index 00000000..3596aa31
Binary files /dev/null and b/static/icons/0600713C.png differ
diff --git a/static/icons/0600713D.png b/static/icons/0600713D.png
new file mode 100755
index 00000000..29ae69bd
Binary files /dev/null and b/static/icons/0600713D.png differ
diff --git a/static/icons/0600713E.png b/static/icons/0600713E.png
new file mode 100755
index 00000000..ca9ce8fb
Binary files /dev/null and b/static/icons/0600713E.png differ
diff --git a/static/icons/06007140.png b/static/icons/06007140.png
new file mode 100755
index 00000000..70258e94
Binary files /dev/null and b/static/icons/06007140.png differ
diff --git a/static/icons/06007141.png b/static/icons/06007141.png
new file mode 100755
index 00000000..0c8c2b34
Binary files /dev/null and b/static/icons/06007141.png differ
diff --git a/static/icons/06007142.png b/static/icons/06007142.png
new file mode 100755
index 00000000..fc27a2e9
Binary files /dev/null and b/static/icons/06007142.png differ
diff --git a/static/icons/06007143.png b/static/icons/06007143.png
new file mode 100755
index 00000000..cca3280e
Binary files /dev/null and b/static/icons/06007143.png differ
diff --git a/static/icons/06007144.png b/static/icons/06007144.png
new file mode 100755
index 00000000..d6b90a03
Binary files /dev/null and b/static/icons/06007144.png differ
diff --git a/static/icons/06007145.png b/static/icons/06007145.png
new file mode 100755
index 00000000..d4387711
Binary files /dev/null and b/static/icons/06007145.png differ
diff --git a/static/icons/06007146.png b/static/icons/06007146.png
new file mode 100755
index 00000000..2aa5f24e
Binary files /dev/null and b/static/icons/06007146.png differ
diff --git a/static/icons/06007147.png b/static/icons/06007147.png
new file mode 100755
index 00000000..06d418b4
Binary files /dev/null and b/static/icons/06007147.png differ
diff --git a/static/icons/06007148.png b/static/icons/06007148.png
new file mode 100755
index 00000000..1912674d
Binary files /dev/null and b/static/icons/06007148.png differ
diff --git a/static/icons/06007149.png b/static/icons/06007149.png
new file mode 100755
index 00000000..2edf0ba4
Binary files /dev/null and b/static/icons/06007149.png differ
diff --git a/static/icons/0600714A.png b/static/icons/0600714A.png
new file mode 100755
index 00000000..ccfa3c65
Binary files /dev/null and b/static/icons/0600714A.png differ
diff --git a/static/icons/0600714B.png b/static/icons/0600714B.png
new file mode 100755
index 00000000..2bfe0582
Binary files /dev/null and b/static/icons/0600714B.png differ
diff --git a/static/icons/0600714C.png b/static/icons/0600714C.png
new file mode 100755
index 00000000..a988eb08
Binary files /dev/null and b/static/icons/0600714C.png differ
diff --git a/static/icons/0600714D.png b/static/icons/0600714D.png
new file mode 100755
index 00000000..96996bbe
Binary files /dev/null and b/static/icons/0600714D.png differ
diff --git a/static/icons/0600714E.png b/static/icons/0600714E.png
new file mode 100755
index 00000000..67e57953
Binary files /dev/null and b/static/icons/0600714E.png differ
diff --git a/static/icons/0600714F.png b/static/icons/0600714F.png
new file mode 100755
index 00000000..d14ff705
Binary files /dev/null and b/static/icons/0600714F.png differ
diff --git a/static/icons/06007150.png b/static/icons/06007150.png
new file mode 100755
index 00000000..eb5e8c08
Binary files /dev/null and b/static/icons/06007150.png differ
diff --git a/static/icons/06007151.png b/static/icons/06007151.png
new file mode 100755
index 00000000..3e0b9a98
Binary files /dev/null and b/static/icons/06007151.png differ
diff --git a/static/icons/06007152.png b/static/icons/06007152.png
new file mode 100755
index 00000000..b661da31
Binary files /dev/null and b/static/icons/06007152.png differ
diff --git a/static/icons/06007153.png b/static/icons/06007153.png
new file mode 100755
index 00000000..c7314433
Binary files /dev/null and b/static/icons/06007153.png differ
diff --git a/static/icons/06007154.png b/static/icons/06007154.png
new file mode 100755
index 00000000..3e346282
Binary files /dev/null and b/static/icons/06007154.png differ
diff --git a/static/icons/06007155.png b/static/icons/06007155.png
new file mode 100755
index 00000000..2acad92c
Binary files /dev/null and b/static/icons/06007155.png differ
diff --git a/static/icons/06007156.png b/static/icons/06007156.png
new file mode 100755
index 00000000..c2680e51
Binary files /dev/null and b/static/icons/06007156.png differ
diff --git a/static/icons/06007157.png b/static/icons/06007157.png
new file mode 100755
index 00000000..b3499c7c
Binary files /dev/null and b/static/icons/06007157.png differ
diff --git a/static/icons/06007158.png b/static/icons/06007158.png
new file mode 100755
index 00000000..4cb74586
Binary files /dev/null and b/static/icons/06007158.png differ
diff --git a/static/icons/06007159.png b/static/icons/06007159.png
new file mode 100755
index 00000000..ab7172fb
Binary files /dev/null and b/static/icons/06007159.png differ
diff --git a/static/icons/0600715A.png b/static/icons/0600715A.png
new file mode 100755
index 00000000..2be8af2b
Binary files /dev/null and b/static/icons/0600715A.png differ
diff --git a/static/icons/0600715B.png b/static/icons/0600715B.png
new file mode 100755
index 00000000..f580fa47
Binary files /dev/null and b/static/icons/0600715B.png differ
diff --git a/static/icons/0600715C.png b/static/icons/0600715C.png
new file mode 100755
index 00000000..98106131
Binary files /dev/null and b/static/icons/0600715C.png differ
diff --git a/static/icons/0600715D.png b/static/icons/0600715D.png
new file mode 100755
index 00000000..433a4ef5
Binary files /dev/null and b/static/icons/0600715D.png differ
diff --git a/static/icons/0600715E.png b/static/icons/0600715E.png
new file mode 100755
index 00000000..57f5b9a6
Binary files /dev/null and b/static/icons/0600715E.png differ
diff --git a/static/icons/06007160.png b/static/icons/06007160.png
new file mode 100755
index 00000000..bf58ffe7
Binary files /dev/null and b/static/icons/06007160.png differ
diff --git a/static/icons/06007161.png b/static/icons/06007161.png
new file mode 100755
index 00000000..b7227abe
Binary files /dev/null and b/static/icons/06007161.png differ
diff --git a/static/icons/06007180.png b/static/icons/06007180.png
new file mode 100755
index 00000000..605d87a2
Binary files /dev/null and b/static/icons/06007180.png differ
diff --git a/static/icons/06007181.png b/static/icons/06007181.png
new file mode 100755
index 00000000..8812587e
Binary files /dev/null and b/static/icons/06007181.png differ
diff --git a/static/icons/06007182.png b/static/icons/06007182.png
new file mode 100755
index 00000000..b62ca342
Binary files /dev/null and b/static/icons/06007182.png differ
diff --git a/static/icons/06007183.png b/static/icons/06007183.png
new file mode 100755
index 00000000..63c40faf
Binary files /dev/null and b/static/icons/06007183.png differ
diff --git a/static/icons/06007184.png b/static/icons/06007184.png
new file mode 100755
index 00000000..332251de
Binary files /dev/null and b/static/icons/06007184.png differ
diff --git a/static/icons/06007185.png b/static/icons/06007185.png
new file mode 100755
index 00000000..c8ea05c8
Binary files /dev/null and b/static/icons/06007185.png differ
diff --git a/static/icons/06007186.png b/static/icons/06007186.png
new file mode 100755
index 00000000..bc2510f2
Binary files /dev/null and b/static/icons/06007186.png differ
diff --git a/static/icons/06007187.png b/static/icons/06007187.png
new file mode 100755
index 00000000..412fe84a
Binary files /dev/null and b/static/icons/06007187.png differ
diff --git a/static/icons/06007188.png b/static/icons/06007188.png
new file mode 100755
index 00000000..e36c352f
Binary files /dev/null and b/static/icons/06007188.png differ
diff --git a/static/icons/06007189.png b/static/icons/06007189.png
new file mode 100755
index 00000000..24eccec0
Binary files /dev/null and b/static/icons/06007189.png differ
diff --git a/static/icons/0600718A.png b/static/icons/0600718A.png
new file mode 100755
index 00000000..70f4ac51
Binary files /dev/null and b/static/icons/0600718A.png differ
diff --git a/static/icons/0600718B.png b/static/icons/0600718B.png
new file mode 100755
index 00000000..70528211
Binary files /dev/null and b/static/icons/0600718B.png differ
diff --git a/static/icons/0600718C.png b/static/icons/0600718C.png
new file mode 100755
index 00000000..2377bc29
Binary files /dev/null and b/static/icons/0600718C.png differ
diff --git a/static/icons/0600718D.png b/static/icons/0600718D.png
new file mode 100755
index 00000000..66aa3e5d
Binary files /dev/null and b/static/icons/0600718D.png differ
diff --git a/static/icons/0600718E.png b/static/icons/0600718E.png
new file mode 100755
index 00000000..f24bd6b7
Binary files /dev/null and b/static/icons/0600718E.png differ
diff --git a/static/icons/0600718F.png b/static/icons/0600718F.png
new file mode 100755
index 00000000..1cc90e63
Binary files /dev/null and b/static/icons/0600718F.png differ
diff --git a/static/icons/06007190.png b/static/icons/06007190.png
new file mode 100755
index 00000000..7c834611
Binary files /dev/null and b/static/icons/06007190.png differ
diff --git a/static/icons/06007191.png b/static/icons/06007191.png
new file mode 100755
index 00000000..aecf765c
Binary files /dev/null and b/static/icons/06007191.png differ
diff --git a/static/icons/06007192.png b/static/icons/06007192.png
new file mode 100755
index 00000000..645c7102
Binary files /dev/null and b/static/icons/06007192.png differ
diff --git a/static/icons/06007193.png b/static/icons/06007193.png
new file mode 100755
index 00000000..1f27b61c
Binary files /dev/null and b/static/icons/06007193.png differ
diff --git a/static/icons/06007194.png b/static/icons/06007194.png
new file mode 100755
index 00000000..70f6c140
Binary files /dev/null and b/static/icons/06007194.png differ
diff --git a/static/icons/06007195.png b/static/icons/06007195.png
new file mode 100755
index 00000000..82e2f48a
Binary files /dev/null and b/static/icons/06007195.png differ
diff --git a/static/icons/06007196.png b/static/icons/06007196.png
new file mode 100755
index 00000000..88b65d08
Binary files /dev/null and b/static/icons/06007196.png differ
diff --git a/static/icons/06007197.png b/static/icons/06007197.png
new file mode 100755
index 00000000..58ae0743
Binary files /dev/null and b/static/icons/06007197.png differ
diff --git a/static/icons/06007198.png b/static/icons/06007198.png
new file mode 100755
index 00000000..d602d2d3
Binary files /dev/null and b/static/icons/06007198.png differ
diff --git a/static/icons/06007199.png b/static/icons/06007199.png
new file mode 100755
index 00000000..ead276ce
Binary files /dev/null and b/static/icons/06007199.png differ
diff --git a/static/icons/0600719A.png b/static/icons/0600719A.png
new file mode 100755
index 00000000..2f3bf094
Binary files /dev/null and b/static/icons/0600719A.png differ
diff --git a/static/icons/0600719B.png b/static/icons/0600719B.png
new file mode 100755
index 00000000..a3f191ff
Binary files /dev/null and b/static/icons/0600719B.png differ
diff --git a/static/icons/0600719C.png b/static/icons/0600719C.png
new file mode 100755
index 00000000..907d87d6
Binary files /dev/null and b/static/icons/0600719C.png differ
diff --git a/static/icons/0600719D.png b/static/icons/0600719D.png
new file mode 100755
index 00000000..4a7d63bd
Binary files /dev/null and b/static/icons/0600719D.png differ
diff --git a/static/icons/0600719E.png b/static/icons/0600719E.png
new file mode 100755
index 00000000..2e38ec2f
Binary files /dev/null and b/static/icons/0600719E.png differ
diff --git a/static/icons/0600719F.png b/static/icons/0600719F.png
new file mode 100755
index 00000000..3a45af6f
Binary files /dev/null and b/static/icons/0600719F.png differ
diff --git a/static/icons/060071A0.png b/static/icons/060071A0.png
new file mode 100755
index 00000000..617a6fe2
Binary files /dev/null and b/static/icons/060071A0.png differ
diff --git a/static/icons/060071A1.png b/static/icons/060071A1.png
new file mode 100755
index 00000000..179359d7
Binary files /dev/null and b/static/icons/060071A1.png differ
diff --git a/static/icons/060071A2.png b/static/icons/060071A2.png
new file mode 100755
index 00000000..9d4275bc
Binary files /dev/null and b/static/icons/060071A2.png differ
diff --git a/static/icons/060071A3.png b/static/icons/060071A3.png
new file mode 100755
index 00000000..00ea6d80
Binary files /dev/null and b/static/icons/060071A3.png differ
diff --git a/static/icons/060071A4.png b/static/icons/060071A4.png
new file mode 100755
index 00000000..d53ada7d
Binary files /dev/null and b/static/icons/060071A4.png differ
diff --git a/static/icons/060071A5.png b/static/icons/060071A5.png
new file mode 100755
index 00000000..a5859790
Binary files /dev/null and b/static/icons/060071A5.png differ
diff --git a/static/icons/060071A6.png b/static/icons/060071A6.png
new file mode 100755
index 00000000..4d87ad5e
Binary files /dev/null and b/static/icons/060071A6.png differ
diff --git a/static/icons/060071A7.png b/static/icons/060071A7.png
new file mode 100755
index 00000000..e4125522
Binary files /dev/null and b/static/icons/060071A7.png differ
diff --git a/static/icons/060071A8.png b/static/icons/060071A8.png
new file mode 100755
index 00000000..dfc70d65
Binary files /dev/null and b/static/icons/060071A8.png differ
diff --git a/static/icons/060071A9.png b/static/icons/060071A9.png
new file mode 100755
index 00000000..1e756d2e
Binary files /dev/null and b/static/icons/060071A9.png differ
diff --git a/static/icons/060071AA.png b/static/icons/060071AA.png
new file mode 100755
index 00000000..02fcf381
Binary files /dev/null and b/static/icons/060071AA.png differ
diff --git a/static/icons/060071AB.png b/static/icons/060071AB.png
new file mode 100755
index 00000000..479eac73
Binary files /dev/null and b/static/icons/060071AB.png differ
diff --git a/static/icons/060071AC.png b/static/icons/060071AC.png
new file mode 100755
index 00000000..d53fc822
Binary files /dev/null and b/static/icons/060071AC.png differ
diff --git a/static/icons/060071AD.png b/static/icons/060071AD.png
new file mode 100755
index 00000000..5f56142b
Binary files /dev/null and b/static/icons/060071AD.png differ
diff --git a/static/icons/060071AE.png b/static/icons/060071AE.png
new file mode 100755
index 00000000..00de90ea
Binary files /dev/null and b/static/icons/060071AE.png differ
diff --git a/static/icons/060071AF.png b/static/icons/060071AF.png
new file mode 100755
index 00000000..92be88e7
Binary files /dev/null and b/static/icons/060071AF.png differ
diff --git a/static/icons/060071B0.png b/static/icons/060071B0.png
new file mode 100755
index 00000000..307cc8f5
Binary files /dev/null and b/static/icons/060071B0.png differ
diff --git a/static/icons/060071B1.png b/static/icons/060071B1.png
new file mode 100755
index 00000000..cea3f671
Binary files /dev/null and b/static/icons/060071B1.png differ
diff --git a/static/icons/060071B2.png b/static/icons/060071B2.png
new file mode 100755
index 00000000..14a2fc22
Binary files /dev/null and b/static/icons/060071B2.png differ
diff --git a/static/icons/060071B3.png b/static/icons/060071B3.png
new file mode 100755
index 00000000..c39e6db0
Binary files /dev/null and b/static/icons/060071B3.png differ
diff --git a/static/icons/060071B4.png b/static/icons/060071B4.png
new file mode 100755
index 00000000..eab3341f
Binary files /dev/null and b/static/icons/060071B4.png differ
diff --git a/static/icons/060071B5.png b/static/icons/060071B5.png
new file mode 100755
index 00000000..ca666ccd
Binary files /dev/null and b/static/icons/060071B5.png differ
diff --git a/static/icons/060071B6.png b/static/icons/060071B6.png
new file mode 100755
index 00000000..e3b366f6
Binary files /dev/null and b/static/icons/060071B6.png differ
diff --git a/static/icons/060071B7.png b/static/icons/060071B7.png
new file mode 100755
index 00000000..47550c9f
Binary files /dev/null and b/static/icons/060071B7.png differ
diff --git a/static/icons/060071B8.png b/static/icons/060071B8.png
new file mode 100755
index 00000000..49ef75b9
Binary files /dev/null and b/static/icons/060071B8.png differ
diff --git a/static/icons/060071B9.png b/static/icons/060071B9.png
new file mode 100755
index 00000000..d39ce59b
Binary files /dev/null and b/static/icons/060071B9.png differ
diff --git a/static/icons/060071BA.png b/static/icons/060071BA.png
new file mode 100755
index 00000000..3e44efe7
Binary files /dev/null and b/static/icons/060071BA.png differ
diff --git a/static/icons/060071BB.png b/static/icons/060071BB.png
new file mode 100755
index 00000000..046c4888
Binary files /dev/null and b/static/icons/060071BB.png differ
diff --git a/static/icons/060071BC.png b/static/icons/060071BC.png
new file mode 100755
index 00000000..4ff38f20
Binary files /dev/null and b/static/icons/060071BC.png differ
diff --git a/static/icons/060071BD.png b/static/icons/060071BD.png
new file mode 100755
index 00000000..2b603cdc
Binary files /dev/null and b/static/icons/060071BD.png differ
diff --git a/static/icons/060071BE.png b/static/icons/060071BE.png
new file mode 100755
index 00000000..0bd1ecd5
Binary files /dev/null and b/static/icons/060071BE.png differ
diff --git a/static/icons/060071BF.png b/static/icons/060071BF.png
new file mode 100755
index 00000000..f01ee33c
Binary files /dev/null and b/static/icons/060071BF.png differ
diff --git a/static/icons/060071C0.png b/static/icons/060071C0.png
new file mode 100755
index 00000000..a7070bcf
Binary files /dev/null and b/static/icons/060071C0.png differ
diff --git a/static/icons/060071C1.png b/static/icons/060071C1.png
new file mode 100755
index 00000000..8f6e738a
Binary files /dev/null and b/static/icons/060071C1.png differ
diff --git a/static/icons/060071C2.png b/static/icons/060071C2.png
new file mode 100755
index 00000000..baaac7b9
Binary files /dev/null and b/static/icons/060071C2.png differ
diff --git a/static/icons/060071C3.png b/static/icons/060071C3.png
new file mode 100755
index 00000000..dfbf298b
Binary files /dev/null and b/static/icons/060071C3.png differ
diff --git a/static/icons/060071C4.png b/static/icons/060071C4.png
new file mode 100755
index 00000000..7c9f783c
Binary files /dev/null and b/static/icons/060071C4.png differ
diff --git a/static/icons/060071C5.png b/static/icons/060071C5.png
new file mode 100755
index 00000000..592a41c6
Binary files /dev/null and b/static/icons/060071C5.png differ
diff --git a/static/icons/060071C6.png b/static/icons/060071C6.png
new file mode 100755
index 00000000..03413c50
Binary files /dev/null and b/static/icons/060071C6.png differ
diff --git a/static/icons/060071C7.png b/static/icons/060071C7.png
new file mode 100755
index 00000000..f94122de
Binary files /dev/null and b/static/icons/060071C7.png differ
diff --git a/static/icons/060071C8.png b/static/icons/060071C8.png
new file mode 100755
index 00000000..a19e408b
Binary files /dev/null and b/static/icons/060071C8.png differ
diff --git a/static/icons/060071C9.png b/static/icons/060071C9.png
new file mode 100755
index 00000000..f7bc71ae
Binary files /dev/null and b/static/icons/060071C9.png differ
diff --git a/static/icons/060071CA.png b/static/icons/060071CA.png
new file mode 100755
index 00000000..06f3065c
Binary files /dev/null and b/static/icons/060071CA.png differ
diff --git a/static/icons/060071CB.png b/static/icons/060071CB.png
new file mode 100755
index 00000000..94bcff46
Binary files /dev/null and b/static/icons/060071CB.png differ
diff --git a/static/icons/060071CC.png b/static/icons/060071CC.png
new file mode 100755
index 00000000..5526aaff
Binary files /dev/null and b/static/icons/060071CC.png differ
diff --git a/static/icons/060071CD.png b/static/icons/060071CD.png
new file mode 100755
index 00000000..2b3acfb7
Binary files /dev/null and b/static/icons/060071CD.png differ
diff --git a/static/icons/060071CE.png b/static/icons/060071CE.png
new file mode 100755
index 00000000..b1c0d6f0
Binary files /dev/null and b/static/icons/060071CE.png differ
diff --git a/static/icons/060071CF.png b/static/icons/060071CF.png
new file mode 100755
index 00000000..994e00d4
Binary files /dev/null and b/static/icons/060071CF.png differ
diff --git a/static/icons/060071D0.png b/static/icons/060071D0.png
new file mode 100755
index 00000000..5edd73d3
Binary files /dev/null and b/static/icons/060071D0.png differ
diff --git a/static/icons/060071D1.png b/static/icons/060071D1.png
new file mode 100755
index 00000000..98ac2f56
Binary files /dev/null and b/static/icons/060071D1.png differ
diff --git a/static/icons/060071D2.png b/static/icons/060071D2.png
new file mode 100755
index 00000000..107c5f76
Binary files /dev/null and b/static/icons/060071D2.png differ
diff --git a/static/icons/060071D3.png b/static/icons/060071D3.png
new file mode 100755
index 00000000..4a8e0f33
Binary files /dev/null and b/static/icons/060071D3.png differ
diff --git a/static/icons/060071D4.png b/static/icons/060071D4.png
new file mode 100755
index 00000000..4ec667f7
Binary files /dev/null and b/static/icons/060071D4.png differ
diff --git a/static/icons/060071D5.png b/static/icons/060071D5.png
new file mode 100755
index 00000000..aecae7ce
Binary files /dev/null and b/static/icons/060071D5.png differ
diff --git a/static/icons/060071D6.png b/static/icons/060071D6.png
new file mode 100755
index 00000000..54288ae4
Binary files /dev/null and b/static/icons/060071D6.png differ
diff --git a/static/icons/060071D7.png b/static/icons/060071D7.png
new file mode 100755
index 00000000..14432a0f
Binary files /dev/null and b/static/icons/060071D7.png differ
diff --git a/static/icons/060071D8.png b/static/icons/060071D8.png
new file mode 100755
index 00000000..f1376fe5
Binary files /dev/null and b/static/icons/060071D8.png differ
diff --git a/static/icons/060071D9.png b/static/icons/060071D9.png
new file mode 100755
index 00000000..9e9391e6
Binary files /dev/null and b/static/icons/060071D9.png differ
diff --git a/static/icons/060071DA.png b/static/icons/060071DA.png
new file mode 100755
index 00000000..64fe0110
Binary files /dev/null and b/static/icons/060071DA.png differ
diff --git a/static/icons/060071DB.png b/static/icons/060071DB.png
new file mode 100755
index 00000000..1131d563
Binary files /dev/null and b/static/icons/060071DB.png differ
diff --git a/static/icons/060071DC.png b/static/icons/060071DC.png
new file mode 100755
index 00000000..84f5cb7d
Binary files /dev/null and b/static/icons/060071DC.png differ
diff --git a/static/icons/060071DD.png b/static/icons/060071DD.png
new file mode 100755
index 00000000..7dfcbb22
Binary files /dev/null and b/static/icons/060071DD.png differ
diff --git a/static/icons/060071DE.png b/static/icons/060071DE.png
new file mode 100755
index 00000000..b8ca48df
Binary files /dev/null and b/static/icons/060071DE.png differ
diff --git a/static/icons/060071DF.png b/static/icons/060071DF.png
new file mode 100755
index 00000000..5556beea
Binary files /dev/null and b/static/icons/060071DF.png differ
diff --git a/static/icons/060071E0.png b/static/icons/060071E0.png
new file mode 100755
index 00000000..5f514d9e
Binary files /dev/null and b/static/icons/060071E0.png differ
diff --git a/static/icons/060071E1.png b/static/icons/060071E1.png
new file mode 100755
index 00000000..babd1a73
Binary files /dev/null and b/static/icons/060071E1.png differ
diff --git a/static/icons/060071E2.png b/static/icons/060071E2.png
new file mode 100755
index 00000000..018cd1c5
Binary files /dev/null and b/static/icons/060071E2.png differ
diff --git a/static/icons/060071E3.png b/static/icons/060071E3.png
new file mode 100755
index 00000000..e37fe07a
Binary files /dev/null and b/static/icons/060071E3.png differ
diff --git a/static/icons/060071E4.png b/static/icons/060071E4.png
new file mode 100755
index 00000000..a1f439e6
Binary files /dev/null and b/static/icons/060071E4.png differ
diff --git a/static/icons/060071E5.png b/static/icons/060071E5.png
new file mode 100755
index 00000000..2f70c757
Binary files /dev/null and b/static/icons/060071E5.png differ
diff --git a/static/icons/060071E6.png b/static/icons/060071E6.png
new file mode 100755
index 00000000..bec9f1fe
Binary files /dev/null and b/static/icons/060071E6.png differ
diff --git a/static/icons/060071E7.png b/static/icons/060071E7.png
new file mode 100755
index 00000000..28d91f63
Binary files /dev/null and b/static/icons/060071E7.png differ
diff --git a/static/icons/060071E8.png b/static/icons/060071E8.png
new file mode 100755
index 00000000..ec67c5ea
Binary files /dev/null and b/static/icons/060071E8.png differ
diff --git a/static/icons/060071E9.png b/static/icons/060071E9.png
new file mode 100755
index 00000000..9ee1a76f
Binary files /dev/null and b/static/icons/060071E9.png differ
diff --git a/static/icons/060071EA.png b/static/icons/060071EA.png
new file mode 100755
index 00000000..32c2fb38
Binary files /dev/null and b/static/icons/060071EA.png differ
diff --git a/static/icons/060071EB.png b/static/icons/060071EB.png
new file mode 100755
index 00000000..8254479f
Binary files /dev/null and b/static/icons/060071EB.png differ
diff --git a/static/icons/060071EC.png b/static/icons/060071EC.png
new file mode 100755
index 00000000..89d98066
Binary files /dev/null and b/static/icons/060071EC.png differ
diff --git a/static/icons/060071ED.png b/static/icons/060071ED.png
new file mode 100755
index 00000000..0e8767cf
Binary files /dev/null and b/static/icons/060071ED.png differ
diff --git a/static/icons/060071EE.png b/static/icons/060071EE.png
new file mode 100755
index 00000000..7e2dcaa3
Binary files /dev/null and b/static/icons/060071EE.png differ
diff --git a/static/icons/060071EF.png b/static/icons/060071EF.png
new file mode 100755
index 00000000..945e2661
Binary files /dev/null and b/static/icons/060071EF.png differ
diff --git a/static/icons/060071F0.png b/static/icons/060071F0.png
new file mode 100755
index 00000000..b2b6e7b2
Binary files /dev/null and b/static/icons/060071F0.png differ
diff --git a/static/icons/060071F1.png b/static/icons/060071F1.png
new file mode 100755
index 00000000..5786f150
Binary files /dev/null and b/static/icons/060071F1.png differ
diff --git a/static/icons/060071F2.png b/static/icons/060071F2.png
new file mode 100755
index 00000000..b6c9cf1c
Binary files /dev/null and b/static/icons/060071F2.png differ
diff --git a/static/icons/060071F3.png b/static/icons/060071F3.png
new file mode 100755
index 00000000..938e8576
Binary files /dev/null and b/static/icons/060071F3.png differ
diff --git a/static/icons/060071F4.png b/static/icons/060071F4.png
new file mode 100755
index 00000000..5de5f984
Binary files /dev/null and b/static/icons/060071F4.png differ
diff --git a/static/icons/060071F5.png b/static/icons/060071F5.png
new file mode 100755
index 00000000..99850454
Binary files /dev/null and b/static/icons/060071F5.png differ
diff --git a/static/icons/060071F6.png b/static/icons/060071F6.png
new file mode 100755
index 00000000..4201ac33
Binary files /dev/null and b/static/icons/060071F6.png differ
diff --git a/static/icons/060071F7.png b/static/icons/060071F7.png
new file mode 100755
index 00000000..d053881c
Binary files /dev/null and b/static/icons/060071F7.png differ
diff --git a/static/icons/060071F8.png b/static/icons/060071F8.png
new file mode 100755
index 00000000..6f1b6c9e
Binary files /dev/null and b/static/icons/060071F8.png differ
diff --git a/static/icons/060071F9.png b/static/icons/060071F9.png
new file mode 100755
index 00000000..6f25632d
Binary files /dev/null and b/static/icons/060071F9.png differ
diff --git a/static/icons/060071FA.png b/static/icons/060071FA.png
new file mode 100755
index 00000000..c26915a8
Binary files /dev/null and b/static/icons/060071FA.png differ
diff --git a/static/icons/060071FB.png b/static/icons/060071FB.png
new file mode 100755
index 00000000..d9f089fd
Binary files /dev/null and b/static/icons/060071FB.png differ
diff --git a/static/icons/060071FC.png b/static/icons/060071FC.png
new file mode 100755
index 00000000..35cedfa7
Binary files /dev/null and b/static/icons/060071FC.png differ
diff --git a/static/icons/060071FD.png b/static/icons/060071FD.png
new file mode 100755
index 00000000..cabbbd57
Binary files /dev/null and b/static/icons/060071FD.png differ
diff --git a/static/icons/060071FE.png b/static/icons/060071FE.png
new file mode 100755
index 00000000..949bb366
Binary files /dev/null and b/static/icons/060071FE.png differ
diff --git a/static/icons/060071FF.png b/static/icons/060071FF.png
new file mode 100755
index 00000000..d8f77524
Binary files /dev/null and b/static/icons/060071FF.png differ
diff --git a/static/icons/06007200.png b/static/icons/06007200.png
new file mode 100755
index 00000000..245dd8da
Binary files /dev/null and b/static/icons/06007200.png differ
diff --git a/static/icons/06007201.png b/static/icons/06007201.png
new file mode 100755
index 00000000..18a4b653
Binary files /dev/null and b/static/icons/06007201.png differ
diff --git a/static/icons/06007202.png b/static/icons/06007202.png
new file mode 100755
index 00000000..6b2c48c3
Binary files /dev/null and b/static/icons/06007202.png differ
diff --git a/static/icons/06007203.png b/static/icons/06007203.png
new file mode 100755
index 00000000..45de8973
Binary files /dev/null and b/static/icons/06007203.png differ
diff --git a/static/icons/06007204.png b/static/icons/06007204.png
new file mode 100755
index 00000000..b5037ae2
Binary files /dev/null and b/static/icons/06007204.png differ
diff --git a/static/icons/06007205.png b/static/icons/06007205.png
new file mode 100755
index 00000000..aff829b2
Binary files /dev/null and b/static/icons/06007205.png differ
diff --git a/static/icons/06007206.png b/static/icons/06007206.png
new file mode 100755
index 00000000..3e0d7bad
Binary files /dev/null and b/static/icons/06007206.png differ
diff --git a/static/icons/06007207.png b/static/icons/06007207.png
new file mode 100755
index 00000000..43f37dd4
Binary files /dev/null and b/static/icons/06007207.png differ
diff --git a/static/icons/06007208.png b/static/icons/06007208.png
new file mode 100755
index 00000000..5dd79474
Binary files /dev/null and b/static/icons/06007208.png differ
diff --git a/static/icons/06007209.png b/static/icons/06007209.png
new file mode 100755
index 00000000..fd179f7d
Binary files /dev/null and b/static/icons/06007209.png differ
diff --git a/static/icons/0600720A.png b/static/icons/0600720A.png
new file mode 100755
index 00000000..de573e9d
Binary files /dev/null and b/static/icons/0600720A.png differ
diff --git a/static/icons/0600720B.png b/static/icons/0600720B.png
new file mode 100755
index 00000000..d208b473
Binary files /dev/null and b/static/icons/0600720B.png differ
diff --git a/static/icons/0600720C.png b/static/icons/0600720C.png
new file mode 100755
index 00000000..11eaeaca
Binary files /dev/null and b/static/icons/0600720C.png differ
diff --git a/static/icons/0600720D.png b/static/icons/0600720D.png
new file mode 100755
index 00000000..3748c600
Binary files /dev/null and b/static/icons/0600720D.png differ
diff --git a/static/icons/0600720E.png b/static/icons/0600720E.png
new file mode 100755
index 00000000..4df40f61
Binary files /dev/null and b/static/icons/0600720E.png differ
diff --git a/static/icons/0600720F.png b/static/icons/0600720F.png
new file mode 100755
index 00000000..b6db0a6c
Binary files /dev/null and b/static/icons/0600720F.png differ
diff --git a/static/icons/06007210.png b/static/icons/06007210.png
new file mode 100755
index 00000000..32115921
Binary files /dev/null and b/static/icons/06007210.png differ
diff --git a/static/icons/06007211.png b/static/icons/06007211.png
new file mode 100755
index 00000000..dd9d72c0
Binary files /dev/null and b/static/icons/06007211.png differ
diff --git a/static/icons/06007212.png b/static/icons/06007212.png
new file mode 100755
index 00000000..4acbea3f
Binary files /dev/null and b/static/icons/06007212.png differ
diff --git a/static/icons/06007213.png b/static/icons/06007213.png
new file mode 100755
index 00000000..93e4804d
Binary files /dev/null and b/static/icons/06007213.png differ
diff --git a/static/icons/06007214.png b/static/icons/06007214.png
new file mode 100755
index 00000000..eeb95632
Binary files /dev/null and b/static/icons/06007214.png differ
diff --git a/static/icons/06007215.png b/static/icons/06007215.png
new file mode 100755
index 00000000..65b80287
Binary files /dev/null and b/static/icons/06007215.png differ
diff --git a/static/icons/06007216.png b/static/icons/06007216.png
new file mode 100755
index 00000000..6f5bef6c
Binary files /dev/null and b/static/icons/06007216.png differ
diff --git a/static/icons/06007217.png b/static/icons/06007217.png
new file mode 100755
index 00000000..0cbcb293
Binary files /dev/null and b/static/icons/06007217.png differ
diff --git a/static/icons/06007218.png b/static/icons/06007218.png
new file mode 100755
index 00000000..e5a75b19
Binary files /dev/null and b/static/icons/06007218.png differ
diff --git a/static/icons/06007219.png b/static/icons/06007219.png
new file mode 100755
index 00000000..7daff697
Binary files /dev/null and b/static/icons/06007219.png differ
diff --git a/static/icons/0600721A.png b/static/icons/0600721A.png
new file mode 100755
index 00000000..dbd6fa9c
Binary files /dev/null and b/static/icons/0600721A.png differ
diff --git a/static/icons/0600721B.png b/static/icons/0600721B.png
new file mode 100755
index 00000000..bb13993f
Binary files /dev/null and b/static/icons/0600721B.png differ
diff --git a/static/icons/0600721C.png b/static/icons/0600721C.png
new file mode 100755
index 00000000..58f456a3
Binary files /dev/null and b/static/icons/0600721C.png differ
diff --git a/static/icons/0600721D.png b/static/icons/0600721D.png
new file mode 100755
index 00000000..6473ac13
Binary files /dev/null and b/static/icons/0600721D.png differ
diff --git a/static/icons/0600721E.png b/static/icons/0600721E.png
new file mode 100755
index 00000000..63344673
Binary files /dev/null and b/static/icons/0600721E.png differ
diff --git a/static/icons/0600721F.png b/static/icons/0600721F.png
new file mode 100755
index 00000000..f2cd43c4
Binary files /dev/null and b/static/icons/0600721F.png differ
diff --git a/static/icons/06007220.png b/static/icons/06007220.png
new file mode 100755
index 00000000..e734ef71
Binary files /dev/null and b/static/icons/06007220.png differ
diff --git a/static/icons/06007221.png b/static/icons/06007221.png
new file mode 100755
index 00000000..f2121d8e
Binary files /dev/null and b/static/icons/06007221.png differ
diff --git a/static/icons/06007222.png b/static/icons/06007222.png
new file mode 100755
index 00000000..60cc524e
Binary files /dev/null and b/static/icons/06007222.png differ
diff --git a/static/icons/06007223.png b/static/icons/06007223.png
new file mode 100755
index 00000000..44f1661d
Binary files /dev/null and b/static/icons/06007223.png differ
diff --git a/static/icons/06007224.png b/static/icons/06007224.png
new file mode 100755
index 00000000..8b6ac359
Binary files /dev/null and b/static/icons/06007224.png differ
diff --git a/static/icons/06007225.png b/static/icons/06007225.png
new file mode 100755
index 00000000..9a164d82
Binary files /dev/null and b/static/icons/06007225.png differ
diff --git a/static/icons/06007226.png b/static/icons/06007226.png
new file mode 100755
index 00000000..af524836
Binary files /dev/null and b/static/icons/06007226.png differ
diff --git a/static/icons/06007227.png b/static/icons/06007227.png
new file mode 100755
index 00000000..e371a007
Binary files /dev/null and b/static/icons/06007227.png differ
diff --git a/static/icons/06007228.png b/static/icons/06007228.png
new file mode 100755
index 00000000..39fc139b
Binary files /dev/null and b/static/icons/06007228.png differ
diff --git a/static/icons/06007229.png b/static/icons/06007229.png
new file mode 100755
index 00000000..bd1931c4
Binary files /dev/null and b/static/icons/06007229.png differ
diff --git a/static/icons/0600722A.png b/static/icons/0600722A.png
new file mode 100755
index 00000000..501e7762
Binary files /dev/null and b/static/icons/0600722A.png differ
diff --git a/static/icons/0600722B.png b/static/icons/0600722B.png
new file mode 100755
index 00000000..b02b0a92
Binary files /dev/null and b/static/icons/0600722B.png differ
diff --git a/static/icons/0600722C.png b/static/icons/0600722C.png
new file mode 100755
index 00000000..0edcdbf8
Binary files /dev/null and b/static/icons/0600722C.png differ
diff --git a/static/icons/0600722D.png b/static/icons/0600722D.png
new file mode 100755
index 00000000..711ed18f
Binary files /dev/null and b/static/icons/0600722D.png differ
diff --git a/static/icons/0600722E.png b/static/icons/0600722E.png
new file mode 100755
index 00000000..3d695d76
Binary files /dev/null and b/static/icons/0600722E.png differ
diff --git a/static/icons/0600722F.png b/static/icons/0600722F.png
new file mode 100755
index 00000000..1a7c1f85
Binary files /dev/null and b/static/icons/0600722F.png differ
diff --git a/static/icons/06007230.png b/static/icons/06007230.png
new file mode 100755
index 00000000..c1b59167
Binary files /dev/null and b/static/icons/06007230.png differ
diff --git a/static/icons/06007231.png b/static/icons/06007231.png
new file mode 100755
index 00000000..97c256aa
Binary files /dev/null and b/static/icons/06007231.png differ
diff --git a/static/icons/06007232.png b/static/icons/06007232.png
new file mode 100755
index 00000000..3e00f8d3
Binary files /dev/null and b/static/icons/06007232.png differ
diff --git a/static/icons/06007233.png b/static/icons/06007233.png
new file mode 100755
index 00000000..0979e9d6
Binary files /dev/null and b/static/icons/06007233.png differ
diff --git a/static/icons/06007234.png b/static/icons/06007234.png
new file mode 100755
index 00000000..86200762
Binary files /dev/null and b/static/icons/06007234.png differ
diff --git a/static/icons/06007235.png b/static/icons/06007235.png
new file mode 100755
index 00000000..b679e06b
Binary files /dev/null and b/static/icons/06007235.png differ
diff --git a/static/icons/06007236.png b/static/icons/06007236.png
new file mode 100755
index 00000000..1e1f1235
Binary files /dev/null and b/static/icons/06007236.png differ
diff --git a/static/icons/06007237.png b/static/icons/06007237.png
new file mode 100755
index 00000000..f4599ff9
Binary files /dev/null and b/static/icons/06007237.png differ
diff --git a/static/icons/06007238.png b/static/icons/06007238.png
new file mode 100755
index 00000000..03d22433
Binary files /dev/null and b/static/icons/06007238.png differ
diff --git a/static/icons/06007239.png b/static/icons/06007239.png
new file mode 100755
index 00000000..7703fc4f
Binary files /dev/null and b/static/icons/06007239.png differ
diff --git a/static/icons/0600723A.png b/static/icons/0600723A.png
new file mode 100755
index 00000000..ad2b3144
Binary files /dev/null and b/static/icons/0600723A.png differ
diff --git a/static/icons/0600723B.png b/static/icons/0600723B.png
new file mode 100755
index 00000000..9254cdb0
Binary files /dev/null and b/static/icons/0600723B.png differ
diff --git a/static/icons/0600723C.png b/static/icons/0600723C.png
new file mode 100755
index 00000000..37fbec44
Binary files /dev/null and b/static/icons/0600723C.png differ
diff --git a/static/icons/0600723D.png b/static/icons/0600723D.png
new file mode 100755
index 00000000..263c8600
Binary files /dev/null and b/static/icons/0600723D.png differ
diff --git a/static/icons/0600723E.png b/static/icons/0600723E.png
new file mode 100755
index 00000000..8215fce7
Binary files /dev/null and b/static/icons/0600723E.png differ
diff --git a/static/icons/0600723F.png b/static/icons/0600723F.png
new file mode 100755
index 00000000..a3bda316
Binary files /dev/null and b/static/icons/0600723F.png differ
diff --git a/static/icons/06007240.png b/static/icons/06007240.png
new file mode 100755
index 00000000..bc29b5d3
Binary files /dev/null and b/static/icons/06007240.png differ
diff --git a/static/icons/06007241.png b/static/icons/06007241.png
new file mode 100755
index 00000000..c90f20bc
Binary files /dev/null and b/static/icons/06007241.png differ
diff --git a/static/icons/06007242.png b/static/icons/06007242.png
new file mode 100755
index 00000000..6a604b38
Binary files /dev/null and b/static/icons/06007242.png differ
diff --git a/static/icons/06007243.png b/static/icons/06007243.png
new file mode 100755
index 00000000..572b4f11
Binary files /dev/null and b/static/icons/06007243.png differ
diff --git a/static/icons/06007244.png b/static/icons/06007244.png
new file mode 100755
index 00000000..7a3a7dbf
Binary files /dev/null and b/static/icons/06007244.png differ
diff --git a/static/icons/06007245.png b/static/icons/06007245.png
new file mode 100755
index 00000000..49011836
Binary files /dev/null and b/static/icons/06007245.png differ
diff --git a/static/icons/06007246.png b/static/icons/06007246.png
new file mode 100755
index 00000000..00878934
Binary files /dev/null and b/static/icons/06007246.png differ
diff --git a/static/icons/06007247.png b/static/icons/06007247.png
new file mode 100755
index 00000000..e7d53544
Binary files /dev/null and b/static/icons/06007247.png differ
diff --git a/static/icons/06007248.png b/static/icons/06007248.png
new file mode 100755
index 00000000..80661488
Binary files /dev/null and b/static/icons/06007248.png differ
diff --git a/static/icons/06007249.png b/static/icons/06007249.png
new file mode 100755
index 00000000..d261e34f
Binary files /dev/null and b/static/icons/06007249.png differ
diff --git a/static/icons/0600724A.png b/static/icons/0600724A.png
new file mode 100755
index 00000000..ff510e9c
Binary files /dev/null and b/static/icons/0600724A.png differ
diff --git a/static/icons/0600724B.png b/static/icons/0600724B.png
new file mode 100755
index 00000000..d4f9e44c
Binary files /dev/null and b/static/icons/0600724B.png differ
diff --git a/static/icons/0600724C.png b/static/icons/0600724C.png
new file mode 100755
index 00000000..e8c284a0
Binary files /dev/null and b/static/icons/0600724C.png differ
diff --git a/static/icons/0600724D.png b/static/icons/0600724D.png
new file mode 100755
index 00000000..0cb84b06
Binary files /dev/null and b/static/icons/0600724D.png differ
diff --git a/static/icons/0600724E.png b/static/icons/0600724E.png
new file mode 100755
index 00000000..4c5da36c
Binary files /dev/null and b/static/icons/0600724E.png differ
diff --git a/static/icons/0600724F.png b/static/icons/0600724F.png
new file mode 100755
index 00000000..d73046b4
Binary files /dev/null and b/static/icons/0600724F.png differ
diff --git a/static/icons/06007250.png b/static/icons/06007250.png
new file mode 100755
index 00000000..35e18653
Binary files /dev/null and b/static/icons/06007250.png differ
diff --git a/static/icons/06007251.png b/static/icons/06007251.png
new file mode 100755
index 00000000..e86f85f9
Binary files /dev/null and b/static/icons/06007251.png differ
diff --git a/static/icons/06007252.png b/static/icons/06007252.png
new file mode 100755
index 00000000..3b838841
Binary files /dev/null and b/static/icons/06007252.png differ
diff --git a/static/icons/06007253.png b/static/icons/06007253.png
new file mode 100755
index 00000000..40e334b2
Binary files /dev/null and b/static/icons/06007253.png differ
diff --git a/static/icons/06007254.png b/static/icons/06007254.png
new file mode 100755
index 00000000..e049d242
Binary files /dev/null and b/static/icons/06007254.png differ
diff --git a/static/icons/06007255.png b/static/icons/06007255.png
new file mode 100755
index 00000000..d3977bcc
Binary files /dev/null and b/static/icons/06007255.png differ
diff --git a/static/icons/06007256.png b/static/icons/06007256.png
new file mode 100755
index 00000000..640cbba8
Binary files /dev/null and b/static/icons/06007256.png differ
diff --git a/static/icons/06007257.png b/static/icons/06007257.png
new file mode 100755
index 00000000..9e1aaf75
Binary files /dev/null and b/static/icons/06007257.png differ
diff --git a/static/icons/06007258.png b/static/icons/06007258.png
new file mode 100755
index 00000000..429ee139
Binary files /dev/null and b/static/icons/06007258.png differ
diff --git a/static/icons/06007259.png b/static/icons/06007259.png
new file mode 100755
index 00000000..56519e99
Binary files /dev/null and b/static/icons/06007259.png differ
diff --git a/static/icons/0600725A.png b/static/icons/0600725A.png
new file mode 100755
index 00000000..1cd03ceb
Binary files /dev/null and b/static/icons/0600725A.png differ
diff --git a/static/icons/0600725B.png b/static/icons/0600725B.png
new file mode 100755
index 00000000..5d1c3e46
Binary files /dev/null and b/static/icons/0600725B.png differ
diff --git a/static/icons/0600725C.png b/static/icons/0600725C.png
new file mode 100755
index 00000000..7ead71ea
Binary files /dev/null and b/static/icons/0600725C.png differ
diff --git a/static/icons/0600725D.png b/static/icons/0600725D.png
new file mode 100755
index 00000000..7ae3ccf6
Binary files /dev/null and b/static/icons/0600725D.png differ
diff --git a/static/icons/0600725E.png b/static/icons/0600725E.png
new file mode 100755
index 00000000..103cd714
Binary files /dev/null and b/static/icons/0600725E.png differ
diff --git a/static/icons/0600725F.png b/static/icons/0600725F.png
new file mode 100755
index 00000000..7e4bdf0a
Binary files /dev/null and b/static/icons/0600725F.png differ
diff --git a/static/icons/06007260.png b/static/icons/06007260.png
new file mode 100755
index 00000000..566d690e
Binary files /dev/null and b/static/icons/06007260.png differ
diff --git a/static/icons/06007261.png b/static/icons/06007261.png
new file mode 100755
index 00000000..d8344903
Binary files /dev/null and b/static/icons/06007261.png differ
diff --git a/static/icons/06007262.png b/static/icons/06007262.png
new file mode 100755
index 00000000..0047e735
Binary files /dev/null and b/static/icons/06007262.png differ
diff --git a/static/icons/06007263.png b/static/icons/06007263.png
new file mode 100755
index 00000000..a0f3df91
Binary files /dev/null and b/static/icons/06007263.png differ
diff --git a/static/icons/06007264.png b/static/icons/06007264.png
new file mode 100755
index 00000000..840c434c
Binary files /dev/null and b/static/icons/06007264.png differ
diff --git a/static/icons/06007265.png b/static/icons/06007265.png
new file mode 100755
index 00000000..65a8615b
Binary files /dev/null and b/static/icons/06007265.png differ
diff --git a/static/icons/06007266.png b/static/icons/06007266.png
new file mode 100755
index 00000000..8973f997
Binary files /dev/null and b/static/icons/06007266.png differ
diff --git a/static/icons/06007267.png b/static/icons/06007267.png
new file mode 100755
index 00000000..0c616869
Binary files /dev/null and b/static/icons/06007267.png differ
diff --git a/static/icons/06007268.png b/static/icons/06007268.png
new file mode 100755
index 00000000..ca33d7d7
Binary files /dev/null and b/static/icons/06007268.png differ
diff --git a/static/icons/06007269.png b/static/icons/06007269.png
new file mode 100755
index 00000000..1ba0b260
Binary files /dev/null and b/static/icons/06007269.png differ
diff --git a/static/icons/0600726A.png b/static/icons/0600726A.png
new file mode 100755
index 00000000..ec411419
Binary files /dev/null and b/static/icons/0600726A.png differ
diff --git a/static/icons/0600726B.png b/static/icons/0600726B.png
new file mode 100755
index 00000000..341b0e8a
Binary files /dev/null and b/static/icons/0600726B.png differ
diff --git a/static/icons/0600726C.png b/static/icons/0600726C.png
new file mode 100755
index 00000000..f4d55bd5
Binary files /dev/null and b/static/icons/0600726C.png differ
diff --git a/static/icons/0600726D.png b/static/icons/0600726D.png
new file mode 100755
index 00000000..bc229971
Binary files /dev/null and b/static/icons/0600726D.png differ
diff --git a/static/icons/0600726E.png b/static/icons/0600726E.png
new file mode 100755
index 00000000..298a62fe
Binary files /dev/null and b/static/icons/0600726E.png differ
diff --git a/static/icons/0600726F.png b/static/icons/0600726F.png
new file mode 100755
index 00000000..d061cf8f
Binary files /dev/null and b/static/icons/0600726F.png differ
diff --git a/static/icons/06007270.png b/static/icons/06007270.png
new file mode 100755
index 00000000..58c20124
Binary files /dev/null and b/static/icons/06007270.png differ
diff --git a/static/icons/06007271.png b/static/icons/06007271.png
new file mode 100755
index 00000000..822323df
Binary files /dev/null and b/static/icons/06007271.png differ
diff --git a/static/icons/06007272.png b/static/icons/06007272.png
new file mode 100755
index 00000000..822cdce5
Binary files /dev/null and b/static/icons/06007272.png differ
diff --git a/static/icons/06007275.png b/static/icons/06007275.png
new file mode 100755
index 00000000..9b62d3e5
Binary files /dev/null and b/static/icons/06007275.png differ
diff --git a/static/icons/06007288.png b/static/icons/06007288.png
new file mode 100755
index 00000000..fdbd2491
Binary files /dev/null and b/static/icons/06007288.png differ
diff --git a/static/icons/0600728B.png b/static/icons/0600728B.png
new file mode 100755
index 00000000..62aa6f28
Binary files /dev/null and b/static/icons/0600728B.png differ
diff --git a/static/icons/0600728C.png b/static/icons/0600728C.png
new file mode 100755
index 00000000..0cd88d1d
Binary files /dev/null and b/static/icons/0600728C.png differ
diff --git a/static/icons/0600728D.png b/static/icons/0600728D.png
new file mode 100755
index 00000000..221de422
Binary files /dev/null and b/static/icons/0600728D.png differ
diff --git a/static/icons/0600728E.png b/static/icons/0600728E.png
new file mode 100755
index 00000000..f67bce0d
Binary files /dev/null and b/static/icons/0600728E.png differ
diff --git a/static/icons/0600728F.png b/static/icons/0600728F.png
new file mode 100755
index 00000000..d1f4c836
Binary files /dev/null and b/static/icons/0600728F.png differ
diff --git a/static/icons/06007290.png b/static/icons/06007290.png
new file mode 100755
index 00000000..29585616
Binary files /dev/null and b/static/icons/06007290.png differ
diff --git a/static/icons/06007291.png b/static/icons/06007291.png
new file mode 100755
index 00000000..9fae6062
Binary files /dev/null and b/static/icons/06007291.png differ
diff --git a/static/icons/06007292.png b/static/icons/06007292.png
new file mode 100755
index 00000000..6dbccd40
Binary files /dev/null and b/static/icons/06007292.png differ
diff --git a/static/icons/06007293.png b/static/icons/06007293.png
new file mode 100755
index 00000000..a82c503e
Binary files /dev/null and b/static/icons/06007293.png differ
diff --git a/static/icons/06007294.png b/static/icons/06007294.png
new file mode 100755
index 00000000..336091a9
Binary files /dev/null and b/static/icons/06007294.png differ
diff --git a/static/icons/06007295.png b/static/icons/06007295.png
new file mode 100755
index 00000000..43b1ef15
Binary files /dev/null and b/static/icons/06007295.png differ
diff --git a/static/icons/06007296.png b/static/icons/06007296.png
new file mode 100755
index 00000000..d36eab2b
Binary files /dev/null and b/static/icons/06007296.png differ
diff --git a/static/icons/06007297.png b/static/icons/06007297.png
new file mode 100755
index 00000000..ba21b969
Binary files /dev/null and b/static/icons/06007297.png differ
diff --git a/static/icons/06007298.png b/static/icons/06007298.png
new file mode 100755
index 00000000..558fe7b1
Binary files /dev/null and b/static/icons/06007298.png differ
diff --git a/static/icons/06007299.png b/static/icons/06007299.png
new file mode 100755
index 00000000..12e145ab
Binary files /dev/null and b/static/icons/06007299.png differ
diff --git a/static/icons/0600729A.png b/static/icons/0600729A.png
new file mode 100755
index 00000000..4cd9227d
Binary files /dev/null and b/static/icons/0600729A.png differ
diff --git a/static/icons/0600729B.png b/static/icons/0600729B.png
new file mode 100755
index 00000000..d29bede0
Binary files /dev/null and b/static/icons/0600729B.png differ
diff --git a/static/icons/0600729C.png b/static/icons/0600729C.png
new file mode 100755
index 00000000..eda625e8
Binary files /dev/null and b/static/icons/0600729C.png differ
diff --git a/static/icons/0600729D.png b/static/icons/0600729D.png
new file mode 100755
index 00000000..80a3417c
Binary files /dev/null and b/static/icons/0600729D.png differ
diff --git a/static/icons/0600729E.png b/static/icons/0600729E.png
new file mode 100755
index 00000000..6ea38351
Binary files /dev/null and b/static/icons/0600729E.png differ
diff --git a/static/icons/0600729F.png b/static/icons/0600729F.png
new file mode 100755
index 00000000..6f9f3f0e
Binary files /dev/null and b/static/icons/0600729F.png differ
diff --git a/static/icons/060072A0.png b/static/icons/060072A0.png
new file mode 100755
index 00000000..7a36dfbe
Binary files /dev/null and b/static/icons/060072A0.png differ
diff --git a/static/icons/060072A1.png b/static/icons/060072A1.png
new file mode 100755
index 00000000..02d65f2f
Binary files /dev/null and b/static/icons/060072A1.png differ
diff --git a/static/icons/060072A2.png b/static/icons/060072A2.png
new file mode 100755
index 00000000..2ef91081
Binary files /dev/null and b/static/icons/060072A2.png differ
diff --git a/static/icons/060072A3.png b/static/icons/060072A3.png
new file mode 100755
index 00000000..badfe967
Binary files /dev/null and b/static/icons/060072A3.png differ
diff --git a/static/icons/060072A4.png b/static/icons/060072A4.png
new file mode 100755
index 00000000..20205b98
Binary files /dev/null and b/static/icons/060072A4.png differ
diff --git a/static/icons/060072A5.png b/static/icons/060072A5.png
new file mode 100755
index 00000000..dd23456b
Binary files /dev/null and b/static/icons/060072A5.png differ
diff --git a/static/icons/060072A6.png b/static/icons/060072A6.png
new file mode 100755
index 00000000..20205b98
Binary files /dev/null and b/static/icons/060072A6.png differ
diff --git a/static/icons/060072A7.png b/static/icons/060072A7.png
new file mode 100755
index 00000000..cf3bd28a
Binary files /dev/null and b/static/icons/060072A7.png differ
diff --git a/static/icons/060072A8.png b/static/icons/060072A8.png
new file mode 100755
index 00000000..c6952131
Binary files /dev/null and b/static/icons/060072A8.png differ
diff --git a/static/icons/060072A9.png b/static/icons/060072A9.png
new file mode 100755
index 00000000..9cdff7eb
Binary files /dev/null and b/static/icons/060072A9.png differ
diff --git a/static/icons/060072AA.png b/static/icons/060072AA.png
new file mode 100755
index 00000000..1c226109
Binary files /dev/null and b/static/icons/060072AA.png differ
diff --git a/static/icons/060072AB.png b/static/icons/060072AB.png
new file mode 100755
index 00000000..08e067f8
Binary files /dev/null and b/static/icons/060072AB.png differ
diff --git a/static/icons/060072AC.png b/static/icons/060072AC.png
new file mode 100755
index 00000000..728f799c
Binary files /dev/null and b/static/icons/060072AC.png differ
diff --git a/static/icons/060072AD.png b/static/icons/060072AD.png
new file mode 100755
index 00000000..035a2bca
Binary files /dev/null and b/static/icons/060072AD.png differ
diff --git a/static/icons/060072AE.png b/static/icons/060072AE.png
new file mode 100755
index 00000000..95445ae4
Binary files /dev/null and b/static/icons/060072AE.png differ
diff --git a/static/icons/060072AF.png b/static/icons/060072AF.png
new file mode 100755
index 00000000..3e41cf0d
Binary files /dev/null and b/static/icons/060072AF.png differ
diff --git a/static/icons/060072B0.png b/static/icons/060072B0.png
new file mode 100755
index 00000000..e1cc936b
Binary files /dev/null and b/static/icons/060072B0.png differ
diff --git a/static/icons/060072B1.png b/static/icons/060072B1.png
new file mode 100755
index 00000000..16fe62c9
Binary files /dev/null and b/static/icons/060072B1.png differ
diff --git a/static/icons/060072B2.png b/static/icons/060072B2.png
new file mode 100755
index 00000000..76cd1ec0
Binary files /dev/null and b/static/icons/060072B2.png differ
diff --git a/static/icons/060072B3.png b/static/icons/060072B3.png
new file mode 100755
index 00000000..41c97128
Binary files /dev/null and b/static/icons/060072B3.png differ
diff --git a/static/icons/060072B4.png b/static/icons/060072B4.png
new file mode 100755
index 00000000..ce1e68ab
Binary files /dev/null and b/static/icons/060072B4.png differ
diff --git a/static/icons/060072B5.png b/static/icons/060072B5.png
new file mode 100755
index 00000000..6922c50c
Binary files /dev/null and b/static/icons/060072B5.png differ
diff --git a/static/icons/060072C3.png b/static/icons/060072C3.png
new file mode 100755
index 00000000..433ca738
Binary files /dev/null and b/static/icons/060072C3.png differ
diff --git a/static/icons/060072C4.png b/static/icons/060072C4.png
new file mode 100755
index 00000000..9cd32d54
Binary files /dev/null and b/static/icons/060072C4.png differ
diff --git a/static/icons/060072C5.png b/static/icons/060072C5.png
new file mode 100755
index 00000000..bdb7581a
Binary files /dev/null and b/static/icons/060072C5.png differ
diff --git a/static/icons/060072CC.png b/static/icons/060072CC.png
new file mode 100755
index 00000000..bb594494
Binary files /dev/null and b/static/icons/060072CC.png differ
diff --git a/static/icons/060072CD.png b/static/icons/060072CD.png
new file mode 100755
index 00000000..d572627b
Binary files /dev/null and b/static/icons/060072CD.png differ
diff --git a/static/icons/060072CE.png b/static/icons/060072CE.png
new file mode 100755
index 00000000..f2c62147
Binary files /dev/null and b/static/icons/060072CE.png differ
diff --git a/static/icons/060072CF.png b/static/icons/060072CF.png
new file mode 100755
index 00000000..342d2f8b
Binary files /dev/null and b/static/icons/060072CF.png differ
diff --git a/static/icons/060072D0.png b/static/icons/060072D0.png
new file mode 100755
index 00000000..d1764820
Binary files /dev/null and b/static/icons/060072D0.png differ
diff --git a/static/icons/060072D6.png b/static/icons/060072D6.png
new file mode 100755
index 00000000..49151ea1
Binary files /dev/null and b/static/icons/060072D6.png differ
diff --git a/static/icons/060072D7.png b/static/icons/060072D7.png
new file mode 100755
index 00000000..90b29a68
Binary files /dev/null and b/static/icons/060072D7.png differ
diff --git a/static/icons/060072D8.png b/static/icons/060072D8.png
new file mode 100755
index 00000000..e7ba2c8f
Binary files /dev/null and b/static/icons/060072D8.png differ
diff --git a/static/icons/060072D9.png b/static/icons/060072D9.png
new file mode 100755
index 00000000..7046e977
Binary files /dev/null and b/static/icons/060072D9.png differ
diff --git a/static/icons/060072DA.png b/static/icons/060072DA.png
new file mode 100755
index 00000000..3f6710b1
Binary files /dev/null and b/static/icons/060072DA.png differ
diff --git a/static/icons/060072E7.png b/static/icons/060072E7.png
new file mode 100755
index 00000000..d0d68816
Binary files /dev/null and b/static/icons/060072E7.png differ
diff --git a/static/icons/060072E8.png b/static/icons/060072E8.png
new file mode 100755
index 00000000..ceac83fc
Binary files /dev/null and b/static/icons/060072E8.png differ
diff --git a/static/icons/060072E9.png b/static/icons/060072E9.png
new file mode 100755
index 00000000..0a16cad5
Binary files /dev/null and b/static/icons/060072E9.png differ
diff --git a/static/icons/060072EB.png b/static/icons/060072EB.png
new file mode 100755
index 00000000..f2d7547f
Binary files /dev/null and b/static/icons/060072EB.png differ
diff --git a/static/icons/060072EC.png b/static/icons/060072EC.png
new file mode 100755
index 00000000..0030f9bd
Binary files /dev/null and b/static/icons/060072EC.png differ
diff --git a/static/icons/060072ED.png b/static/icons/060072ED.png
new file mode 100755
index 00000000..ba9500eb
Binary files /dev/null and b/static/icons/060072ED.png differ
diff --git a/static/icons/060072EE.png b/static/icons/060072EE.png
new file mode 100755
index 00000000..79e49be3
Binary files /dev/null and b/static/icons/060072EE.png differ
diff --git a/static/icons/060072EF.png b/static/icons/060072EF.png
new file mode 100755
index 00000000..db508c2a
Binary files /dev/null and b/static/icons/060072EF.png differ
diff --git a/static/icons/060072F0.png b/static/icons/060072F0.png
new file mode 100755
index 00000000..1773e744
Binary files /dev/null and b/static/icons/060072F0.png differ
diff --git a/static/icons/060072F1.png b/static/icons/060072F1.png
new file mode 100755
index 00000000..cb6013f2
Binary files /dev/null and b/static/icons/060072F1.png differ
diff --git a/static/icons/060072F2.png b/static/icons/060072F2.png
new file mode 100755
index 00000000..dec67fe2
Binary files /dev/null and b/static/icons/060072F2.png differ
diff --git a/static/icons/060072F3.png b/static/icons/060072F3.png
new file mode 100755
index 00000000..2fc57931
Binary files /dev/null and b/static/icons/060072F3.png differ
diff --git a/static/icons/060072F4.png b/static/icons/060072F4.png
new file mode 100755
index 00000000..4a642533
Binary files /dev/null and b/static/icons/060072F4.png differ
diff --git a/static/icons/060072F5.png b/static/icons/060072F5.png
new file mode 100755
index 00000000..1955ea4a
Binary files /dev/null and b/static/icons/060072F5.png differ
diff --git a/static/icons/060072F6.png b/static/icons/060072F6.png
new file mode 100755
index 00000000..c6fad8dc
Binary files /dev/null and b/static/icons/060072F6.png differ
diff --git a/static/icons/060072F7.png b/static/icons/060072F7.png
new file mode 100755
index 00000000..04da59e4
Binary files /dev/null and b/static/icons/060072F7.png differ
diff --git a/static/icons/060072F8.png b/static/icons/060072F8.png
new file mode 100755
index 00000000..47b63599
Binary files /dev/null and b/static/icons/060072F8.png differ
diff --git a/static/icons/060072F9.png b/static/icons/060072F9.png
new file mode 100755
index 00000000..908a0af2
Binary files /dev/null and b/static/icons/060072F9.png differ
diff --git a/static/icons/060072FA.png b/static/icons/060072FA.png
new file mode 100755
index 00000000..733eff8d
Binary files /dev/null and b/static/icons/060072FA.png differ
diff --git a/static/icons/060072FB.png b/static/icons/060072FB.png
new file mode 100755
index 00000000..d0898cb4
Binary files /dev/null and b/static/icons/060072FB.png differ
diff --git a/static/icons/060072FC.png b/static/icons/060072FC.png
new file mode 100755
index 00000000..13355a7a
Binary files /dev/null and b/static/icons/060072FC.png differ
diff --git a/static/icons/060072FD.png b/static/icons/060072FD.png
new file mode 100755
index 00000000..d8e3570d
Binary files /dev/null and b/static/icons/060072FD.png differ
diff --git a/static/icons/060072FE.png b/static/icons/060072FE.png
new file mode 100755
index 00000000..0f8b3241
Binary files /dev/null and b/static/icons/060072FE.png differ
diff --git a/static/icons/060072FF.png b/static/icons/060072FF.png
new file mode 100755
index 00000000..6c6133da
Binary files /dev/null and b/static/icons/060072FF.png differ
diff --git a/static/icons/06007300.png b/static/icons/06007300.png
new file mode 100755
index 00000000..a497d25b
Binary files /dev/null and b/static/icons/06007300.png differ
diff --git a/static/icons/06007301.png b/static/icons/06007301.png
new file mode 100755
index 00000000..e3a87455
Binary files /dev/null and b/static/icons/06007301.png differ
diff --git a/static/icons/06007302.png b/static/icons/06007302.png
new file mode 100755
index 00000000..87b2c212
Binary files /dev/null and b/static/icons/06007302.png differ
diff --git a/static/icons/06007303.png b/static/icons/06007303.png
new file mode 100755
index 00000000..77298586
Binary files /dev/null and b/static/icons/06007303.png differ
diff --git a/static/icons/06007304.png b/static/icons/06007304.png
new file mode 100755
index 00000000..5932df09
Binary files /dev/null and b/static/icons/06007304.png differ
diff --git a/static/icons/06007305.png b/static/icons/06007305.png
new file mode 100755
index 00000000..d41ff697
Binary files /dev/null and b/static/icons/06007305.png differ
diff --git a/static/icons/06007306.png b/static/icons/06007306.png
new file mode 100755
index 00000000..5a2c337e
Binary files /dev/null and b/static/icons/06007306.png differ
diff --git a/static/icons/06007307.png b/static/icons/06007307.png
new file mode 100755
index 00000000..84088d59
Binary files /dev/null and b/static/icons/06007307.png differ
diff --git a/static/icons/06007308.png b/static/icons/06007308.png
new file mode 100755
index 00000000..bd517254
Binary files /dev/null and b/static/icons/06007308.png differ
diff --git a/static/icons/06007309.png b/static/icons/06007309.png
new file mode 100755
index 00000000..5ec974a9
Binary files /dev/null and b/static/icons/06007309.png differ
diff --git a/static/icons/0600730A.png b/static/icons/0600730A.png
new file mode 100755
index 00000000..136f8cf1
Binary files /dev/null and b/static/icons/0600730A.png differ
diff --git a/static/icons/0600730B.png b/static/icons/0600730B.png
new file mode 100755
index 00000000..88a9093a
Binary files /dev/null and b/static/icons/0600730B.png differ
diff --git a/static/icons/0600730C.png b/static/icons/0600730C.png
new file mode 100755
index 00000000..101a578c
Binary files /dev/null and b/static/icons/0600730C.png differ
diff --git a/static/icons/0600730D.png b/static/icons/0600730D.png
new file mode 100755
index 00000000..a30c8e8a
Binary files /dev/null and b/static/icons/0600730D.png differ
diff --git a/static/icons/0600730E.png b/static/icons/0600730E.png
new file mode 100755
index 00000000..3a5475f8
Binary files /dev/null and b/static/icons/0600730E.png differ
diff --git a/static/icons/0600730F.png b/static/icons/0600730F.png
new file mode 100755
index 00000000..f730b59e
Binary files /dev/null and b/static/icons/0600730F.png differ
diff --git a/static/icons/06007310.png b/static/icons/06007310.png
new file mode 100755
index 00000000..9af1c166
Binary files /dev/null and b/static/icons/06007310.png differ
diff --git a/static/icons/06007311.png b/static/icons/06007311.png
new file mode 100755
index 00000000..8fd64730
Binary files /dev/null and b/static/icons/06007311.png differ
diff --git a/static/icons/06007312.png b/static/icons/06007312.png
new file mode 100755
index 00000000..242d3114
Binary files /dev/null and b/static/icons/06007312.png differ
diff --git a/static/icons/06007313.png b/static/icons/06007313.png
new file mode 100755
index 00000000..dffcb351
Binary files /dev/null and b/static/icons/06007313.png differ
diff --git a/static/icons/06007314.png b/static/icons/06007314.png
new file mode 100755
index 00000000..09caa07a
Binary files /dev/null and b/static/icons/06007314.png differ
diff --git a/static/icons/06007315.png b/static/icons/06007315.png
new file mode 100755
index 00000000..ed9fa9e1
Binary files /dev/null and b/static/icons/06007315.png differ
diff --git a/static/icons/06007327.png b/static/icons/06007327.png
new file mode 100755
index 00000000..c4882674
Binary files /dev/null and b/static/icons/06007327.png differ
diff --git a/static/icons/06007328.png b/static/icons/06007328.png
new file mode 100755
index 00000000..e9f3d79f
Binary files /dev/null and b/static/icons/06007328.png differ
diff --git a/static/icons/06007329.png b/static/icons/06007329.png
new file mode 100755
index 00000000..7d76df3f
Binary files /dev/null and b/static/icons/06007329.png differ
diff --git a/static/icons/0600732A.png b/static/icons/0600732A.png
new file mode 100755
index 00000000..e718ba57
Binary files /dev/null and b/static/icons/0600732A.png differ
diff --git a/static/icons/0600732B.png b/static/icons/0600732B.png
new file mode 100755
index 00000000..c77aacef
Binary files /dev/null and b/static/icons/0600732B.png differ
diff --git a/static/icons/0600732C.png b/static/icons/0600732C.png
new file mode 100755
index 00000000..743786c5
Binary files /dev/null and b/static/icons/0600732C.png differ
diff --git a/static/icons/0600732D.png b/static/icons/0600732D.png
new file mode 100755
index 00000000..98c3df2b
Binary files /dev/null and b/static/icons/0600732D.png differ
diff --git a/static/icons/0600732E.png b/static/icons/0600732E.png
new file mode 100755
index 00000000..0022b21c
Binary files /dev/null and b/static/icons/0600732E.png differ
diff --git a/static/icons/0600732F.png b/static/icons/0600732F.png
new file mode 100755
index 00000000..376c2358
Binary files /dev/null and b/static/icons/0600732F.png differ
diff --git a/static/icons/06007330.png b/static/icons/06007330.png
new file mode 100755
index 00000000..856d092f
Binary files /dev/null and b/static/icons/06007330.png differ
diff --git a/static/icons/06007331.png b/static/icons/06007331.png
new file mode 100755
index 00000000..6f2e1426
Binary files /dev/null and b/static/icons/06007331.png differ
diff --git a/static/icons/06007332.png b/static/icons/06007332.png
new file mode 100755
index 00000000..ab54f669
Binary files /dev/null and b/static/icons/06007332.png differ
diff --git a/static/icons/06007333.png b/static/icons/06007333.png
new file mode 100755
index 00000000..b4678a77
Binary files /dev/null and b/static/icons/06007333.png differ
diff --git a/static/icons/06007334.png b/static/icons/06007334.png
new file mode 100755
index 00000000..a22938a6
Binary files /dev/null and b/static/icons/06007334.png differ
diff --git a/static/icons/06007335.png b/static/icons/06007335.png
new file mode 100755
index 00000000..596cb381
Binary files /dev/null and b/static/icons/06007335.png differ
diff --git a/static/icons/06007336.png b/static/icons/06007336.png
new file mode 100755
index 00000000..cebcb252
Binary files /dev/null and b/static/icons/06007336.png differ
diff --git a/static/icons/06007337.png b/static/icons/06007337.png
new file mode 100755
index 00000000..113a4777
Binary files /dev/null and b/static/icons/06007337.png differ
diff --git a/static/icons/06007338.png b/static/icons/06007338.png
new file mode 100755
index 00000000..1e79f243
Binary files /dev/null and b/static/icons/06007338.png differ
diff --git a/static/icons/06007339.png b/static/icons/06007339.png
new file mode 100755
index 00000000..a467d349
Binary files /dev/null and b/static/icons/06007339.png differ
diff --git a/static/icons/0600733A.png b/static/icons/0600733A.png
new file mode 100755
index 00000000..638a7dca
Binary files /dev/null and b/static/icons/0600733A.png differ
diff --git a/static/icons/0600733B.png b/static/icons/0600733B.png
new file mode 100755
index 00000000..519357e0
Binary files /dev/null and b/static/icons/0600733B.png differ
diff --git a/static/icons/0600733C.png b/static/icons/0600733C.png
new file mode 100755
index 00000000..c6f42d61
Binary files /dev/null and b/static/icons/0600733C.png differ
diff --git a/static/icons/0600733D.png b/static/icons/0600733D.png
new file mode 100755
index 00000000..be21fea1
Binary files /dev/null and b/static/icons/0600733D.png differ
diff --git a/static/icons/0600733E.png b/static/icons/0600733E.png
new file mode 100755
index 00000000..15626b12
Binary files /dev/null and b/static/icons/0600733E.png differ
diff --git a/static/icons/0600733F.png b/static/icons/0600733F.png
new file mode 100755
index 00000000..4db9013c
Binary files /dev/null and b/static/icons/0600733F.png differ
diff --git a/static/icons/06007340.png b/static/icons/06007340.png
new file mode 100755
index 00000000..6b87265f
Binary files /dev/null and b/static/icons/06007340.png differ
diff --git a/static/icons/06007341.png b/static/icons/06007341.png
new file mode 100755
index 00000000..30801f62
Binary files /dev/null and b/static/icons/06007341.png differ
diff --git a/static/icons/06007342.png b/static/icons/06007342.png
new file mode 100755
index 00000000..37374def
Binary files /dev/null and b/static/icons/06007342.png differ
diff --git a/static/icons/06007343.png b/static/icons/06007343.png
new file mode 100755
index 00000000..762ff05b
Binary files /dev/null and b/static/icons/06007343.png differ
diff --git a/static/icons/06007344.png b/static/icons/06007344.png
new file mode 100755
index 00000000..9f67bf56
Binary files /dev/null and b/static/icons/06007344.png differ
diff --git a/static/icons/06007345.png b/static/icons/06007345.png
new file mode 100755
index 00000000..47dbce7e
Binary files /dev/null and b/static/icons/06007345.png differ
diff --git a/static/icons/06007346.png b/static/icons/06007346.png
new file mode 100755
index 00000000..99358b1a
Binary files /dev/null and b/static/icons/06007346.png differ
diff --git a/static/icons/06007347.png b/static/icons/06007347.png
new file mode 100755
index 00000000..34a18f02
Binary files /dev/null and b/static/icons/06007347.png differ
diff --git a/static/icons/06007348.png b/static/icons/06007348.png
new file mode 100755
index 00000000..ecd2db7f
Binary files /dev/null and b/static/icons/06007348.png differ
diff --git a/static/icons/06007349.png b/static/icons/06007349.png
new file mode 100755
index 00000000..b4a03c2a
Binary files /dev/null and b/static/icons/06007349.png differ
diff --git a/static/icons/0600734A.png b/static/icons/0600734A.png
new file mode 100755
index 00000000..45d5cf4a
Binary files /dev/null and b/static/icons/0600734A.png differ
diff --git a/static/icons/0600734B.png b/static/icons/0600734B.png
new file mode 100755
index 00000000..81d4fdc6
Binary files /dev/null and b/static/icons/0600734B.png differ
diff --git a/static/icons/0600734C.png b/static/icons/0600734C.png
new file mode 100755
index 00000000..9f223d62
Binary files /dev/null and b/static/icons/0600734C.png differ
diff --git a/static/icons/0600734D.png b/static/icons/0600734D.png
new file mode 100755
index 00000000..e7781afc
Binary files /dev/null and b/static/icons/0600734D.png differ
diff --git a/static/icons/0600734E.png b/static/icons/0600734E.png
new file mode 100755
index 00000000..982b9b4a
Binary files /dev/null and b/static/icons/0600734E.png differ
diff --git a/static/icons/0600734F.png b/static/icons/0600734F.png
new file mode 100755
index 00000000..caad6c23
Binary files /dev/null and b/static/icons/0600734F.png differ
diff --git a/static/icons/06007350.png b/static/icons/06007350.png
new file mode 100755
index 00000000..7bc222fe
Binary files /dev/null and b/static/icons/06007350.png differ
diff --git a/static/icons/06007351.png b/static/icons/06007351.png
new file mode 100755
index 00000000..9a563b09
Binary files /dev/null and b/static/icons/06007351.png differ
diff --git a/static/icons/06007352.png b/static/icons/06007352.png
new file mode 100755
index 00000000..472abd31
Binary files /dev/null and b/static/icons/06007352.png differ
diff --git a/static/icons/06007353.png b/static/icons/06007353.png
new file mode 100755
index 00000000..7ac23fbd
Binary files /dev/null and b/static/icons/06007353.png differ
diff --git a/static/icons/06007354.png b/static/icons/06007354.png
new file mode 100755
index 00000000..14cf9800
Binary files /dev/null and b/static/icons/06007354.png differ
diff --git a/static/icons/06007355.png b/static/icons/06007355.png
new file mode 100755
index 00000000..8bf1d161
Binary files /dev/null and b/static/icons/06007355.png differ
diff --git a/static/icons/06007356.png b/static/icons/06007356.png
new file mode 100755
index 00000000..766a3fb2
Binary files /dev/null and b/static/icons/06007356.png differ
diff --git a/static/icons/06007357.png b/static/icons/06007357.png
new file mode 100755
index 00000000..0681f3cc
Binary files /dev/null and b/static/icons/06007357.png differ
diff --git a/static/icons/06007358.png b/static/icons/06007358.png
new file mode 100755
index 00000000..7475da2e
Binary files /dev/null and b/static/icons/06007358.png differ
diff --git a/static/icons/06007359.png b/static/icons/06007359.png
new file mode 100755
index 00000000..fdd5f0b2
Binary files /dev/null and b/static/icons/06007359.png differ
diff --git a/static/icons/0600735A.png b/static/icons/0600735A.png
new file mode 100755
index 00000000..c7eb2e32
Binary files /dev/null and b/static/icons/0600735A.png differ
diff --git a/static/icons/0600735B.png b/static/icons/0600735B.png
new file mode 100755
index 00000000..cc7e3d56
Binary files /dev/null and b/static/icons/0600735B.png differ
diff --git a/static/icons/0600735C.png b/static/icons/0600735C.png
new file mode 100755
index 00000000..dfca3e8d
Binary files /dev/null and b/static/icons/0600735C.png differ
diff --git a/static/icons/0600735D.png b/static/icons/0600735D.png
new file mode 100755
index 00000000..94ce92d7
Binary files /dev/null and b/static/icons/0600735D.png differ
diff --git a/static/icons/0600735E.png b/static/icons/0600735E.png
new file mode 100755
index 00000000..93640014
Binary files /dev/null and b/static/icons/0600735E.png differ
diff --git a/static/icons/0600735F.png b/static/icons/0600735F.png
new file mode 100755
index 00000000..3a83bb7e
Binary files /dev/null and b/static/icons/0600735F.png differ
diff --git a/static/icons/06007360.png b/static/icons/06007360.png
new file mode 100755
index 00000000..98518eda
Binary files /dev/null and b/static/icons/06007360.png differ
diff --git a/static/icons/06007361.png b/static/icons/06007361.png
new file mode 100755
index 00000000..7ba29931
Binary files /dev/null and b/static/icons/06007361.png differ
diff --git a/static/icons/06007362.png b/static/icons/06007362.png
new file mode 100755
index 00000000..940fd945
Binary files /dev/null and b/static/icons/06007362.png differ
diff --git a/static/icons/06007363.png b/static/icons/06007363.png
new file mode 100755
index 00000000..ab7b6247
Binary files /dev/null and b/static/icons/06007363.png differ
diff --git a/static/icons/06007366.png b/static/icons/06007366.png
new file mode 100755
index 00000000..b32d0ab0
Binary files /dev/null and b/static/icons/06007366.png differ
diff --git a/static/icons/06007367.png b/static/icons/06007367.png
new file mode 100755
index 00000000..a5f436d0
Binary files /dev/null and b/static/icons/06007367.png differ
diff --git a/static/icons/06007368.png b/static/icons/06007368.png
new file mode 100755
index 00000000..0bd3e160
Binary files /dev/null and b/static/icons/06007368.png differ
diff --git a/static/icons/06007369.png b/static/icons/06007369.png
new file mode 100755
index 00000000..74c83583
Binary files /dev/null and b/static/icons/06007369.png differ
diff --git a/static/icons/0600736A.png b/static/icons/0600736A.png
new file mode 100755
index 00000000..a53b3ae9
Binary files /dev/null and b/static/icons/0600736A.png differ
diff --git a/static/icons/0600736B.png b/static/icons/0600736B.png
new file mode 100755
index 00000000..58d79d92
Binary files /dev/null and b/static/icons/0600736B.png differ
diff --git a/static/icons/0600736C.png b/static/icons/0600736C.png
new file mode 100755
index 00000000..7c8523a3
Binary files /dev/null and b/static/icons/0600736C.png differ
diff --git a/static/icons/0600736D.png b/static/icons/0600736D.png
new file mode 100755
index 00000000..8a9f8157
Binary files /dev/null and b/static/icons/0600736D.png differ
diff --git a/static/icons/0600736E.png b/static/icons/0600736E.png
new file mode 100755
index 00000000..b4ea488a
Binary files /dev/null and b/static/icons/0600736E.png differ
diff --git a/static/icons/0600736F.png b/static/icons/0600736F.png
new file mode 100755
index 00000000..23e816ad
Binary files /dev/null and b/static/icons/0600736F.png differ
diff --git a/static/icons/06007370.png b/static/icons/06007370.png
new file mode 100755
index 00000000..29cdc259
Binary files /dev/null and b/static/icons/06007370.png differ
diff --git a/static/icons/06007371.png b/static/icons/06007371.png
new file mode 100755
index 00000000..fd131eb4
Binary files /dev/null and b/static/icons/06007371.png differ
diff --git a/static/icons/06007372.png b/static/icons/06007372.png
new file mode 100755
index 00000000..be04e220
Binary files /dev/null and b/static/icons/06007372.png differ
diff --git a/static/icons/06007373.png b/static/icons/06007373.png
new file mode 100755
index 00000000..b68ee140
Binary files /dev/null and b/static/icons/06007373.png differ
diff --git a/static/icons/06007374.png b/static/icons/06007374.png
new file mode 100755
index 00000000..77c86d33
Binary files /dev/null and b/static/icons/06007374.png differ
diff --git a/static/icons/06007375.png b/static/icons/06007375.png
new file mode 100755
index 00000000..8178907f
Binary files /dev/null and b/static/icons/06007375.png differ
diff --git a/static/icons/06007376.png b/static/icons/06007376.png
new file mode 100755
index 00000000..6ca055d8
Binary files /dev/null and b/static/icons/06007376.png differ
diff --git a/static/icons/06007377.png b/static/icons/06007377.png
new file mode 100755
index 00000000..a08b9ef8
Binary files /dev/null and b/static/icons/06007377.png differ
diff --git a/static/icons/06007378.png b/static/icons/06007378.png
new file mode 100755
index 00000000..68abc645
Binary files /dev/null and b/static/icons/06007378.png differ
diff --git a/static/icons/06007379.png b/static/icons/06007379.png
new file mode 100755
index 00000000..596f9412
Binary files /dev/null and b/static/icons/06007379.png differ
diff --git a/static/icons/0600737A.png b/static/icons/0600737A.png
new file mode 100755
index 00000000..23fe2ef1
Binary files /dev/null and b/static/icons/0600737A.png differ
diff --git a/static/icons/0600737B.png b/static/icons/0600737B.png
new file mode 100755
index 00000000..e336397f
Binary files /dev/null and b/static/icons/0600737B.png differ
diff --git a/static/icons/06007381.png b/static/icons/06007381.png
new file mode 100755
index 00000000..c33e3aeb
Binary files /dev/null and b/static/icons/06007381.png differ
diff --git a/static/icons/06007382.png b/static/icons/06007382.png
new file mode 100755
index 00000000..284a7d56
Binary files /dev/null and b/static/icons/06007382.png differ
diff --git a/static/icons/06007383.png b/static/icons/06007383.png
new file mode 100755
index 00000000..dac405eb
Binary files /dev/null and b/static/icons/06007383.png differ
diff --git a/static/icons/06007384.png b/static/icons/06007384.png
new file mode 100755
index 00000000..39abb870
Binary files /dev/null and b/static/icons/06007384.png differ
diff --git a/static/icons/06007385.png b/static/icons/06007385.png
new file mode 100755
index 00000000..2a7d45f1
Binary files /dev/null and b/static/icons/06007385.png differ
diff --git a/static/icons/06007386.png b/static/icons/06007386.png
new file mode 100755
index 00000000..b1dd3d3c
Binary files /dev/null and b/static/icons/06007386.png differ
diff --git a/static/icons/060073C9.png b/static/icons/060073C9.png
new file mode 100755
index 00000000..8e577f0c
Binary files /dev/null and b/static/icons/060073C9.png differ
diff --git a/static/icons/060073CA.png b/static/icons/060073CA.png
new file mode 100755
index 00000000..0ecba933
Binary files /dev/null and b/static/icons/060073CA.png differ
diff --git a/static/icons/060073CB.png b/static/icons/060073CB.png
new file mode 100755
index 00000000..ca1b1f8b
Binary files /dev/null and b/static/icons/060073CB.png differ
diff --git a/static/icons/060073CC.png b/static/icons/060073CC.png
new file mode 100755
index 00000000..8d493415
Binary files /dev/null and b/static/icons/060073CC.png differ
diff --git a/static/icons/060073CD.png b/static/icons/060073CD.png
new file mode 100755
index 00000000..215e7968
Binary files /dev/null and b/static/icons/060073CD.png differ
diff --git a/static/icons/060073CE.png b/static/icons/060073CE.png
new file mode 100755
index 00000000..f4057489
Binary files /dev/null and b/static/icons/060073CE.png differ
diff --git a/static/icons/060073CF.png b/static/icons/060073CF.png
new file mode 100755
index 00000000..98cb0fbf
Binary files /dev/null and b/static/icons/060073CF.png differ
diff --git a/static/icons/060073D0.png b/static/icons/060073D0.png
new file mode 100755
index 00000000..71ea2ba0
Binary files /dev/null and b/static/icons/060073D0.png differ
diff --git a/static/icons/060073D1.png b/static/icons/060073D1.png
new file mode 100755
index 00000000..ed2e0bad
Binary files /dev/null and b/static/icons/060073D1.png differ
diff --git a/static/icons/060073D2.png b/static/icons/060073D2.png
new file mode 100755
index 00000000..bc42fa69
Binary files /dev/null and b/static/icons/060073D2.png differ
diff --git a/static/icons/060073D3.png b/static/icons/060073D3.png
new file mode 100755
index 00000000..447e4e0f
Binary files /dev/null and b/static/icons/060073D3.png differ
diff --git a/static/icons/060073D4.png b/static/icons/060073D4.png
new file mode 100755
index 00000000..12955c8a
Binary files /dev/null and b/static/icons/060073D4.png differ
diff --git a/static/icons/060073D5.png b/static/icons/060073D5.png
new file mode 100755
index 00000000..a36615e0
Binary files /dev/null and b/static/icons/060073D5.png differ
diff --git a/static/icons/060073D6.png b/static/icons/060073D6.png
new file mode 100755
index 00000000..03bc96d9
Binary files /dev/null and b/static/icons/060073D6.png differ
diff --git a/static/icons/060073D7.png b/static/icons/060073D7.png
new file mode 100755
index 00000000..56ac4fbe
Binary files /dev/null and b/static/icons/060073D7.png differ
diff --git a/static/icons/060073D8.png b/static/icons/060073D8.png
new file mode 100755
index 00000000..8c67723f
Binary files /dev/null and b/static/icons/060073D8.png differ
diff --git a/static/icons/060073D9.png b/static/icons/060073D9.png
new file mode 100755
index 00000000..f72f266c
Binary files /dev/null and b/static/icons/060073D9.png differ
diff --git a/static/icons/060073DA.png b/static/icons/060073DA.png
new file mode 100755
index 00000000..196f8bf9
Binary files /dev/null and b/static/icons/060073DA.png differ
diff --git a/static/icons/060073DB.png b/static/icons/060073DB.png
new file mode 100755
index 00000000..95e54472
Binary files /dev/null and b/static/icons/060073DB.png differ
diff --git a/static/icons/060073DC.png b/static/icons/060073DC.png
new file mode 100755
index 00000000..9ad61a84
Binary files /dev/null and b/static/icons/060073DC.png differ
diff --git a/static/icons/060073DD.png b/static/icons/060073DD.png
new file mode 100755
index 00000000..3552896e
Binary files /dev/null and b/static/icons/060073DD.png differ
diff --git a/static/icons/060073DE.png b/static/icons/060073DE.png
new file mode 100755
index 00000000..0299c740
Binary files /dev/null and b/static/icons/060073DE.png differ
diff --git a/static/icons/060073DF.png b/static/icons/060073DF.png
new file mode 100755
index 00000000..9e3263fc
Binary files /dev/null and b/static/icons/060073DF.png differ
diff --git a/static/icons/060073E0.png b/static/icons/060073E0.png
new file mode 100755
index 00000000..bbd21a88
Binary files /dev/null and b/static/icons/060073E0.png differ
diff --git a/static/icons/060073E1.png b/static/icons/060073E1.png
new file mode 100755
index 00000000..bc430bf2
Binary files /dev/null and b/static/icons/060073E1.png differ
diff --git a/static/icons/060073E2.png b/static/icons/060073E2.png
new file mode 100755
index 00000000..68a8cfa6
Binary files /dev/null and b/static/icons/060073E2.png differ
diff --git a/static/icons/060073E8.png b/static/icons/060073E8.png
new file mode 100755
index 00000000..a4c51712
Binary files /dev/null and b/static/icons/060073E8.png differ
diff --git a/static/icons/060073E9.png b/static/icons/060073E9.png
new file mode 100755
index 00000000..6bc60b1a
Binary files /dev/null and b/static/icons/060073E9.png differ
diff --git a/static/icons/060073EA.png b/static/icons/060073EA.png
new file mode 100755
index 00000000..ea2a6fdf
Binary files /dev/null and b/static/icons/060073EA.png differ
diff --git a/static/icons/060073EB.png b/static/icons/060073EB.png
new file mode 100755
index 00000000..345a0e8a
Binary files /dev/null and b/static/icons/060073EB.png differ
diff --git a/static/icons/060073EC.png b/static/icons/060073EC.png
new file mode 100755
index 00000000..99bd4403
Binary files /dev/null and b/static/icons/060073EC.png differ
diff --git a/static/icons/060073ED.png b/static/icons/060073ED.png
new file mode 100755
index 00000000..868458b5
Binary files /dev/null and b/static/icons/060073ED.png differ
diff --git a/static/icons/060073EE.png b/static/icons/060073EE.png
new file mode 100755
index 00000000..faa40755
Binary files /dev/null and b/static/icons/060073EE.png differ
diff --git a/static/icons/060073EF.png b/static/icons/060073EF.png
new file mode 100755
index 00000000..9d070660
Binary files /dev/null and b/static/icons/060073EF.png differ
diff --git a/static/icons/060073F0.png b/static/icons/060073F0.png
new file mode 100755
index 00000000..a0be26b2
Binary files /dev/null and b/static/icons/060073F0.png differ
diff --git a/static/icons/060073F1.png b/static/icons/060073F1.png
new file mode 100755
index 00000000..b4852951
Binary files /dev/null and b/static/icons/060073F1.png differ
diff --git a/static/icons/060073F2.png b/static/icons/060073F2.png
new file mode 100755
index 00000000..75a4c9d7
Binary files /dev/null and b/static/icons/060073F2.png differ
diff --git a/static/icons/060073F3.png b/static/icons/060073F3.png
new file mode 100755
index 00000000..e51f4b6a
Binary files /dev/null and b/static/icons/060073F3.png differ
diff --git a/static/icons/060073F4.png b/static/icons/060073F4.png
new file mode 100755
index 00000000..e7c4dbbb
Binary files /dev/null and b/static/icons/060073F4.png differ
diff --git a/static/icons/060073F5.png b/static/icons/060073F5.png
new file mode 100755
index 00000000..d4203655
Binary files /dev/null and b/static/icons/060073F5.png differ
diff --git a/static/icons/060073F6.png b/static/icons/060073F6.png
new file mode 100755
index 00000000..2c6e21fc
Binary files /dev/null and b/static/icons/060073F6.png differ
diff --git a/static/icons/060073F7.png b/static/icons/060073F7.png
new file mode 100755
index 00000000..d12c10da
Binary files /dev/null and b/static/icons/060073F7.png differ
diff --git a/static/icons/060073F8.png b/static/icons/060073F8.png
new file mode 100755
index 00000000..bcab2825
Binary files /dev/null and b/static/icons/060073F8.png differ
diff --git a/static/icons/06007409.png b/static/icons/06007409.png
new file mode 100755
index 00000000..5cdc9d1d
Binary files /dev/null and b/static/icons/06007409.png differ
diff --git a/static/icons/0600740A.png b/static/icons/0600740A.png
new file mode 100755
index 00000000..a6f03085
Binary files /dev/null and b/static/icons/0600740A.png differ
diff --git a/static/icons/0600740B.png b/static/icons/0600740B.png
new file mode 100755
index 00000000..ee542f44
Binary files /dev/null and b/static/icons/0600740B.png differ
diff --git a/static/icons/0600740C.png b/static/icons/0600740C.png
new file mode 100755
index 00000000..9f0219b6
Binary files /dev/null and b/static/icons/0600740C.png differ
diff --git a/static/icons/0600740D.png b/static/icons/0600740D.png
new file mode 100755
index 00000000..59f611bc
Binary files /dev/null and b/static/icons/0600740D.png differ
diff --git a/static/icons/0600740E.png b/static/icons/0600740E.png
new file mode 100755
index 00000000..800ba23d
Binary files /dev/null and b/static/icons/0600740E.png differ
diff --git a/static/icons/0600740F.png b/static/icons/0600740F.png
new file mode 100755
index 00000000..057d0c9e
Binary files /dev/null and b/static/icons/0600740F.png differ
diff --git a/static/icons/06007410.png b/static/icons/06007410.png
new file mode 100755
index 00000000..346cc8ba
Binary files /dev/null and b/static/icons/06007410.png differ
diff --git a/static/icons/06007411.png b/static/icons/06007411.png
new file mode 100755
index 00000000..ac325824
Binary files /dev/null and b/static/icons/06007411.png differ
diff --git a/static/icons/06007412.png b/static/icons/06007412.png
new file mode 100755
index 00000000..e38a0787
Binary files /dev/null and b/static/icons/06007412.png differ
diff --git a/static/icons/0600741E.png b/static/icons/0600741E.png
new file mode 100755
index 00000000..8d7b7929
Binary files /dev/null and b/static/icons/0600741E.png differ
diff --git a/static/icons/0600741F.png b/static/icons/0600741F.png
new file mode 100755
index 00000000..43ae71cd
Binary files /dev/null and b/static/icons/0600741F.png differ
diff --git a/static/icons/06007420.png b/static/icons/06007420.png
new file mode 100755
index 00000000..4a1720c8
Binary files /dev/null and b/static/icons/06007420.png differ
diff --git a/static/icons/06007422.png b/static/icons/06007422.png
new file mode 100755
index 00000000..4a6a524f
Binary files /dev/null and b/static/icons/06007422.png differ
diff --git a/static/icons/06007423.png b/static/icons/06007423.png
new file mode 100755
index 00000000..9957b5a8
Binary files /dev/null and b/static/icons/06007423.png differ
diff --git a/static/icons/06007424.png b/static/icons/06007424.png
new file mode 100755
index 00000000..ff865a8a
Binary files /dev/null and b/static/icons/06007424.png differ
diff --git a/static/icons/06007425.png b/static/icons/06007425.png
new file mode 100755
index 00000000..26551b8b
Binary files /dev/null and b/static/icons/06007425.png differ
diff --git a/static/icons/06007426.png b/static/icons/06007426.png
new file mode 100755
index 00000000..0460315e
Binary files /dev/null and b/static/icons/06007426.png differ
diff --git a/static/icons/06007427.png b/static/icons/06007427.png
new file mode 100755
index 00000000..4c9805af
Binary files /dev/null and b/static/icons/06007427.png differ
diff --git a/static/icons/06007428.png b/static/icons/06007428.png
new file mode 100755
index 00000000..1954c293
Binary files /dev/null and b/static/icons/06007428.png differ
diff --git a/static/icons/0600742A.png b/static/icons/0600742A.png
new file mode 100755
index 00000000..52927416
Binary files /dev/null and b/static/icons/0600742A.png differ
diff --git a/static/icons/0600742B.png b/static/icons/0600742B.png
new file mode 100755
index 00000000..64d59dd3
Binary files /dev/null and b/static/icons/0600742B.png differ
diff --git a/static/icons/0600742C.png b/static/icons/0600742C.png
new file mode 100755
index 00000000..142f23ae
Binary files /dev/null and b/static/icons/0600742C.png differ
diff --git a/static/icons/0600742D.png b/static/icons/0600742D.png
new file mode 100755
index 00000000..fde3c740
Binary files /dev/null and b/static/icons/0600742D.png differ
diff --git a/static/icons/0600742E.png b/static/icons/0600742E.png
new file mode 100755
index 00000000..aae09e4b
Binary files /dev/null and b/static/icons/0600742E.png differ
diff --git a/static/icons/0600742F.png b/static/icons/0600742F.png
new file mode 100755
index 00000000..10c7570f
Binary files /dev/null and b/static/icons/0600742F.png differ
diff --git a/static/icons/06007430.png b/static/icons/06007430.png
new file mode 100755
index 00000000..6b47e79f
Binary files /dev/null and b/static/icons/06007430.png differ
diff --git a/static/icons/06007431.png b/static/icons/06007431.png
new file mode 100755
index 00000000..182c13f4
Binary files /dev/null and b/static/icons/06007431.png differ
diff --git a/static/icons/06007432.png b/static/icons/06007432.png
new file mode 100755
index 00000000..fdfea6b7
Binary files /dev/null and b/static/icons/06007432.png differ
diff --git a/static/icons/06007433.png b/static/icons/06007433.png
new file mode 100755
index 00000000..b23fc40f
Binary files /dev/null and b/static/icons/06007433.png differ
diff --git a/static/icons/06007434.png b/static/icons/06007434.png
new file mode 100755
index 00000000..8d4c74c3
Binary files /dev/null and b/static/icons/06007434.png differ
diff --git a/static/icons/06007435.png b/static/icons/06007435.png
new file mode 100755
index 00000000..e627431c
Binary files /dev/null and b/static/icons/06007435.png differ
diff --git a/static/icons/06007436.png b/static/icons/06007436.png
new file mode 100755
index 00000000..7b37c6f4
Binary files /dev/null and b/static/icons/06007436.png differ
diff --git a/static/icons/06007437.png b/static/icons/06007437.png
new file mode 100755
index 00000000..6e14a4c3
Binary files /dev/null and b/static/icons/06007437.png differ
diff --git a/static/icons/06007438.png b/static/icons/06007438.png
new file mode 100755
index 00000000..3e26874c
Binary files /dev/null and b/static/icons/06007438.png differ
diff --git a/static/icons/06007439.png b/static/icons/06007439.png
new file mode 100755
index 00000000..71f6cda7
Binary files /dev/null and b/static/icons/06007439.png differ
diff --git a/static/icons/0600743A.png b/static/icons/0600743A.png
new file mode 100755
index 00000000..b1572cdd
Binary files /dev/null and b/static/icons/0600743A.png differ
diff --git a/static/icons/0600743B.png b/static/icons/0600743B.png
new file mode 100755
index 00000000..3c4e14ef
Binary files /dev/null and b/static/icons/0600743B.png differ
diff --git a/static/icons/0600743C.png b/static/icons/0600743C.png
new file mode 100755
index 00000000..9992be06
Binary files /dev/null and b/static/icons/0600743C.png differ
diff --git a/static/icons/0600743D.png b/static/icons/0600743D.png
new file mode 100755
index 00000000..c989f7fa
Binary files /dev/null and b/static/icons/0600743D.png differ
diff --git a/static/icons/0600743E.png b/static/icons/0600743E.png
new file mode 100755
index 00000000..81795fdb
Binary files /dev/null and b/static/icons/0600743E.png differ
diff --git a/static/icons/0600743F.png b/static/icons/0600743F.png
new file mode 100755
index 00000000..0f98b333
Binary files /dev/null and b/static/icons/0600743F.png differ
diff --git a/static/icons/06007440.png b/static/icons/06007440.png
new file mode 100755
index 00000000..12f0e27e
Binary files /dev/null and b/static/icons/06007440.png differ
diff --git a/static/icons/06007441.png b/static/icons/06007441.png
new file mode 100755
index 00000000..82b36317
Binary files /dev/null and b/static/icons/06007441.png differ
diff --git a/static/icons/06007442.png b/static/icons/06007442.png
new file mode 100755
index 00000000..04b96271
Binary files /dev/null and b/static/icons/06007442.png differ
diff --git a/static/icons/06007443.png b/static/icons/06007443.png
new file mode 100755
index 00000000..c2604ec4
Binary files /dev/null and b/static/icons/06007443.png differ
diff --git a/static/icons/06007444.png b/static/icons/06007444.png
new file mode 100755
index 00000000..3737f99e
Binary files /dev/null and b/static/icons/06007444.png differ
diff --git a/static/icons/06007445.png b/static/icons/06007445.png
new file mode 100755
index 00000000..7febfd3c
Binary files /dev/null and b/static/icons/06007445.png differ
diff --git a/static/icons/06007446.png b/static/icons/06007446.png
new file mode 100755
index 00000000..c8677943
Binary files /dev/null and b/static/icons/06007446.png differ
diff --git a/static/icons/06007447.png b/static/icons/06007447.png
new file mode 100755
index 00000000..46e65f6c
Binary files /dev/null and b/static/icons/06007447.png differ
diff --git a/static/icons/06007448.png b/static/icons/06007448.png
new file mode 100755
index 00000000..63fbb479
Binary files /dev/null and b/static/icons/06007448.png differ
diff --git a/static/icons/06007449.png b/static/icons/06007449.png
new file mode 100755
index 00000000..97d6c284
Binary files /dev/null and b/static/icons/06007449.png differ
diff --git a/static/icons/0600744A.png b/static/icons/0600744A.png
new file mode 100755
index 00000000..dfe3de05
Binary files /dev/null and b/static/icons/0600744A.png differ
diff --git a/static/icons/0600744B.png b/static/icons/0600744B.png
new file mode 100755
index 00000000..dff848ff
Binary files /dev/null and b/static/icons/0600744B.png differ
diff --git a/static/icons/0600744C.png b/static/icons/0600744C.png
new file mode 100755
index 00000000..777e5dc1
Binary files /dev/null and b/static/icons/0600744C.png differ
diff --git a/static/icons/0600744D.png b/static/icons/0600744D.png
new file mode 100755
index 00000000..bb1bc485
Binary files /dev/null and b/static/icons/0600744D.png differ
diff --git a/static/icons/0600744E.png b/static/icons/0600744E.png
new file mode 100755
index 00000000..a29b9707
Binary files /dev/null and b/static/icons/0600744E.png differ
diff --git a/static/icons/0600744F.png b/static/icons/0600744F.png
new file mode 100755
index 00000000..2334c8c9
Binary files /dev/null and b/static/icons/0600744F.png differ
diff --git a/static/icons/06007450.png b/static/icons/06007450.png
new file mode 100755
index 00000000..0b735cfa
Binary files /dev/null and b/static/icons/06007450.png differ
diff --git a/static/icons/06007451.png b/static/icons/06007451.png
new file mode 100755
index 00000000..1d4486f4
Binary files /dev/null and b/static/icons/06007451.png differ
diff --git a/static/icons/06007452.png b/static/icons/06007452.png
new file mode 100755
index 00000000..3cfaae1e
Binary files /dev/null and b/static/icons/06007452.png differ
diff --git a/static/icons/06007453.png b/static/icons/06007453.png
new file mode 100755
index 00000000..2fd27cf7
Binary files /dev/null and b/static/icons/06007453.png differ
diff --git a/static/icons/06007454.png b/static/icons/06007454.png
new file mode 100755
index 00000000..2536aff6
Binary files /dev/null and b/static/icons/06007454.png differ
diff --git a/static/icons/06007455.png b/static/icons/06007455.png
new file mode 100755
index 00000000..4500bd98
Binary files /dev/null and b/static/icons/06007455.png differ
diff --git a/static/icons/06007456.png b/static/icons/06007456.png
new file mode 100755
index 00000000..7000c874
Binary files /dev/null and b/static/icons/06007456.png differ
diff --git a/static/icons/06007457.png b/static/icons/06007457.png
new file mode 100755
index 00000000..5137f78a
Binary files /dev/null and b/static/icons/06007457.png differ
diff --git a/static/icons/06007458.png b/static/icons/06007458.png
new file mode 100755
index 00000000..8cf02d6b
Binary files /dev/null and b/static/icons/06007458.png differ
diff --git a/static/icons/06007459.png b/static/icons/06007459.png
new file mode 100755
index 00000000..c0e404bb
Binary files /dev/null and b/static/icons/06007459.png differ
diff --git a/static/icons/0600745A.png b/static/icons/0600745A.png
new file mode 100755
index 00000000..176ba5f0
Binary files /dev/null and b/static/icons/0600745A.png differ
diff --git a/static/icons/0600745B.png b/static/icons/0600745B.png
new file mode 100755
index 00000000..c59bbc40
Binary files /dev/null and b/static/icons/0600745B.png differ
diff --git a/static/icons/0600745C.png b/static/icons/0600745C.png
new file mode 100755
index 00000000..3a4e17f0
Binary files /dev/null and b/static/icons/0600745C.png differ
diff --git a/static/icons/0600745D.png b/static/icons/0600745D.png
new file mode 100755
index 00000000..84162532
Binary files /dev/null and b/static/icons/0600745D.png differ
diff --git a/static/icons/0600745E.png b/static/icons/0600745E.png
new file mode 100755
index 00000000..1cf92fd1
Binary files /dev/null and b/static/icons/0600745E.png differ
diff --git a/static/icons/0600745F.png b/static/icons/0600745F.png
new file mode 100755
index 00000000..164466d8
Binary files /dev/null and b/static/icons/0600745F.png differ
diff --git a/static/icons/06007460.png b/static/icons/06007460.png
new file mode 100755
index 00000000..3cd8acc1
Binary files /dev/null and b/static/icons/06007460.png differ
diff --git a/static/icons/06007461.png b/static/icons/06007461.png
new file mode 100755
index 00000000..749c60f5
Binary files /dev/null and b/static/icons/06007461.png differ
diff --git a/static/icons/06007462.png b/static/icons/06007462.png
new file mode 100755
index 00000000..f189ec18
Binary files /dev/null and b/static/icons/06007462.png differ
diff --git a/static/icons/06007463.png b/static/icons/06007463.png
new file mode 100755
index 00000000..91dac132
Binary files /dev/null and b/static/icons/06007463.png differ
diff --git a/static/icons/06007464.png b/static/icons/06007464.png
new file mode 100755
index 00000000..44757c5b
Binary files /dev/null and b/static/icons/06007464.png differ
diff --git a/static/icons/06007465.png b/static/icons/06007465.png
new file mode 100755
index 00000000..e9b6f6d2
Binary files /dev/null and b/static/icons/06007465.png differ
diff --git a/static/icons/06007466.png b/static/icons/06007466.png
new file mode 100755
index 00000000..e66bd437
Binary files /dev/null and b/static/icons/06007466.png differ
diff --git a/static/icons/06007467.png b/static/icons/06007467.png
new file mode 100755
index 00000000..488a00e9
Binary files /dev/null and b/static/icons/06007467.png differ
diff --git a/static/icons/06007468.png b/static/icons/06007468.png
new file mode 100755
index 00000000..ca4afcc8
Binary files /dev/null and b/static/icons/06007468.png differ
diff --git a/static/icons/06007469.png b/static/icons/06007469.png
new file mode 100755
index 00000000..de9f6d26
Binary files /dev/null and b/static/icons/06007469.png differ
diff --git a/static/icons/0600746A.png b/static/icons/0600746A.png
new file mode 100755
index 00000000..513b5a55
Binary files /dev/null and b/static/icons/0600746A.png differ
diff --git a/static/icons/0600746B.png b/static/icons/0600746B.png
new file mode 100755
index 00000000..077e61cc
Binary files /dev/null and b/static/icons/0600746B.png differ
diff --git a/static/icons/0600746C.png b/static/icons/0600746C.png
new file mode 100755
index 00000000..7e5ecd9a
Binary files /dev/null and b/static/icons/0600746C.png differ
diff --git a/static/icons/0600746D.png b/static/icons/0600746D.png
new file mode 100755
index 00000000..a89c8a32
Binary files /dev/null and b/static/icons/0600746D.png differ
diff --git a/static/icons/0600746E.png b/static/icons/0600746E.png
new file mode 100755
index 00000000..209bdc2c
Binary files /dev/null and b/static/icons/0600746E.png differ
diff --git a/static/icons/0600746F.png b/static/icons/0600746F.png
new file mode 100755
index 00000000..788c7057
Binary files /dev/null and b/static/icons/0600746F.png differ
diff --git a/static/icons/06007470.png b/static/icons/06007470.png
new file mode 100755
index 00000000..a5e92b5e
Binary files /dev/null and b/static/icons/06007470.png differ
diff --git a/static/icons/06007471.png b/static/icons/06007471.png
new file mode 100755
index 00000000..11e0ef1d
Binary files /dev/null and b/static/icons/06007471.png differ
diff --git a/static/icons/06007472.png b/static/icons/06007472.png
new file mode 100755
index 00000000..8b8fd451
Binary files /dev/null and b/static/icons/06007472.png differ
diff --git a/static/icons/06007473.png b/static/icons/06007473.png
new file mode 100755
index 00000000..247d6283
Binary files /dev/null and b/static/icons/06007473.png differ
diff --git a/static/icons/06007474.png b/static/icons/06007474.png
new file mode 100755
index 00000000..5605a139
Binary files /dev/null and b/static/icons/06007474.png differ
diff --git a/static/icons/06007477.png b/static/icons/06007477.png
new file mode 100755
index 00000000..59ee31a7
Binary files /dev/null and b/static/icons/06007477.png differ
diff --git a/static/icons/06007478.png b/static/icons/06007478.png
new file mode 100755
index 00000000..dd43eaf1
Binary files /dev/null and b/static/icons/06007478.png differ
diff --git a/static/icons/0600747E.png b/static/icons/0600747E.png
new file mode 100755
index 00000000..10b5ba3f
Binary files /dev/null and b/static/icons/0600747E.png differ
diff --git a/static/icons/0600747F.png b/static/icons/0600747F.png
new file mode 100755
index 00000000..e626d73d
Binary files /dev/null and b/static/icons/0600747F.png differ
diff --git a/static/icons/06007480.png b/static/icons/06007480.png
new file mode 100755
index 00000000..97e9bb89
Binary files /dev/null and b/static/icons/06007480.png differ
diff --git a/static/icons/06007481.png b/static/icons/06007481.png
new file mode 100755
index 00000000..df95503c
Binary files /dev/null and b/static/icons/06007481.png differ
diff --git a/static/icons/06007482.png b/static/icons/06007482.png
new file mode 100755
index 00000000..f023c8fb
Binary files /dev/null and b/static/icons/06007482.png differ
diff --git a/static/icons/06007483.png b/static/icons/06007483.png
new file mode 100755
index 00000000..47b27f59
Binary files /dev/null and b/static/icons/06007483.png differ
diff --git a/static/icons/06007484.png b/static/icons/06007484.png
new file mode 100755
index 00000000..5998c933
Binary files /dev/null and b/static/icons/06007484.png differ
diff --git a/static/icons/06007485.png b/static/icons/06007485.png
new file mode 100755
index 00000000..ffa1b730
Binary files /dev/null and b/static/icons/06007485.png differ
diff --git a/static/icons/06007486.png b/static/icons/06007486.png
new file mode 100755
index 00000000..c08e4d43
Binary files /dev/null and b/static/icons/06007486.png differ
diff --git a/static/icons/06007487.png b/static/icons/06007487.png
new file mode 100755
index 00000000..be885e89
Binary files /dev/null and b/static/icons/06007487.png differ
diff --git a/static/icons/06007488.png b/static/icons/06007488.png
new file mode 100755
index 00000000..1c42c0e7
Binary files /dev/null and b/static/icons/06007488.png differ
diff --git a/static/icons/06007489.png b/static/icons/06007489.png
new file mode 100755
index 00000000..d5235294
Binary files /dev/null and b/static/icons/06007489.png differ
diff --git a/static/icons/0600748A.png b/static/icons/0600748A.png
new file mode 100755
index 00000000..792d4d46
Binary files /dev/null and b/static/icons/0600748A.png differ
diff --git a/static/icons/0600748B.png b/static/icons/0600748B.png
new file mode 100755
index 00000000..b7ee834a
Binary files /dev/null and b/static/icons/0600748B.png differ
diff --git a/static/icons/0600748C.png b/static/icons/0600748C.png
new file mode 100755
index 00000000..4d53290c
Binary files /dev/null and b/static/icons/0600748C.png differ
diff --git a/static/icons/0600748D.png b/static/icons/0600748D.png
new file mode 100755
index 00000000..60209201
Binary files /dev/null and b/static/icons/0600748D.png differ
diff --git a/static/icons/0600748E.png b/static/icons/0600748E.png
new file mode 100755
index 00000000..d9a7ffc5
Binary files /dev/null and b/static/icons/0600748E.png differ
diff --git a/static/icons/0600748F.png b/static/icons/0600748F.png
new file mode 100755
index 00000000..0c75bfe9
Binary files /dev/null and b/static/icons/0600748F.png differ
diff --git a/static/icons/06007490.png b/static/icons/06007490.png
new file mode 100755
index 00000000..22d2bf43
Binary files /dev/null and b/static/icons/06007490.png differ
diff --git a/static/icons/06007491.png b/static/icons/06007491.png
new file mode 100755
index 00000000..c28de7bc
Binary files /dev/null and b/static/icons/06007491.png differ
diff --git a/static/icons/06007492.png b/static/icons/06007492.png
new file mode 100755
index 00000000..88d36007
Binary files /dev/null and b/static/icons/06007492.png differ
diff --git a/static/icons/06007493.png b/static/icons/06007493.png
new file mode 100755
index 00000000..5d72bd31
Binary files /dev/null and b/static/icons/06007493.png differ
diff --git a/static/icons/06007494.png b/static/icons/06007494.png
new file mode 100755
index 00000000..4c01094f
Binary files /dev/null and b/static/icons/06007494.png differ
diff --git a/static/icons/06007495.png b/static/icons/06007495.png
new file mode 100755
index 00000000..85d7cae1
Binary files /dev/null and b/static/icons/06007495.png differ
diff --git a/static/icons/06007498.png b/static/icons/06007498.png
new file mode 100755
index 00000000..52c51bf0
Binary files /dev/null and b/static/icons/06007498.png differ
diff --git a/static/icons/06007499.png b/static/icons/06007499.png
new file mode 100755
index 00000000..5fda661c
Binary files /dev/null and b/static/icons/06007499.png differ
diff --git a/static/icons/0600749A.png b/static/icons/0600749A.png
new file mode 100755
index 00000000..25a7afd2
Binary files /dev/null and b/static/icons/0600749A.png differ
diff --git a/static/icons/0600749B.png b/static/icons/0600749B.png
new file mode 100755
index 00000000..6d3bf898
Binary files /dev/null and b/static/icons/0600749B.png differ
diff --git a/static/icons/0600749C.png b/static/icons/0600749C.png
new file mode 100755
index 00000000..61e03967
Binary files /dev/null and b/static/icons/0600749C.png differ
diff --git a/static/icons/0600749D.png b/static/icons/0600749D.png
new file mode 100755
index 00000000..9354d30f
Binary files /dev/null and b/static/icons/0600749D.png differ
diff --git a/static/icons/0600749E.png b/static/icons/0600749E.png
new file mode 100755
index 00000000..b90a0c28
Binary files /dev/null and b/static/icons/0600749E.png differ
diff --git a/static/icons/0600749F.png b/static/icons/0600749F.png
new file mode 100755
index 00000000..37199b8a
Binary files /dev/null and b/static/icons/0600749F.png differ
diff --git a/static/icons/060074A0.png b/static/icons/060074A0.png
new file mode 100755
index 00000000..2d4d431e
Binary files /dev/null and b/static/icons/060074A0.png differ
diff --git a/static/icons/060074A1.png b/static/icons/060074A1.png
new file mode 100755
index 00000000..c84e2a71
Binary files /dev/null and b/static/icons/060074A1.png differ
diff --git a/static/icons/060074A2.png b/static/icons/060074A2.png
new file mode 100755
index 00000000..130acd64
Binary files /dev/null and b/static/icons/060074A2.png differ
diff --git a/static/icons/060074A3.png b/static/icons/060074A3.png
new file mode 100755
index 00000000..ff2cc585
Binary files /dev/null and b/static/icons/060074A3.png differ
diff --git a/static/icons/060074A4.png b/static/icons/060074A4.png
new file mode 100755
index 00000000..ffbcae74
Binary files /dev/null and b/static/icons/060074A4.png differ
diff --git a/static/icons/060074A5.png b/static/icons/060074A5.png
new file mode 100755
index 00000000..3f7baf28
Binary files /dev/null and b/static/icons/060074A5.png differ
diff --git a/static/icons/060074A6.png b/static/icons/060074A6.png
new file mode 100755
index 00000000..73c3ae9c
Binary files /dev/null and b/static/icons/060074A6.png differ
diff --git a/static/icons/060074A7.png b/static/icons/060074A7.png
new file mode 100755
index 00000000..7b149e5e
Binary files /dev/null and b/static/icons/060074A7.png differ
diff --git a/static/icons/060074A8.png b/static/icons/060074A8.png
new file mode 100755
index 00000000..238c5ac8
Binary files /dev/null and b/static/icons/060074A8.png differ
diff --git a/static/icons/060074A9.png b/static/icons/060074A9.png
new file mode 100755
index 00000000..951e1638
Binary files /dev/null and b/static/icons/060074A9.png differ
diff --git a/static/icons/060074AA.png b/static/icons/060074AA.png
new file mode 100755
index 00000000..44a6d97a
Binary files /dev/null and b/static/icons/060074AA.png differ
diff --git a/static/icons/060074AB.png b/static/icons/060074AB.png
new file mode 100755
index 00000000..5a1016b8
Binary files /dev/null and b/static/icons/060074AB.png differ
diff --git a/static/icons/060074AC.png b/static/icons/060074AC.png
new file mode 100755
index 00000000..fef6a2fd
Binary files /dev/null and b/static/icons/060074AC.png differ
diff --git a/static/icons/060074AD.png b/static/icons/060074AD.png
new file mode 100755
index 00000000..6038c5c6
Binary files /dev/null and b/static/icons/060074AD.png differ
diff --git a/static/icons/060074AE.png b/static/icons/060074AE.png
new file mode 100755
index 00000000..0bc9cbf6
Binary files /dev/null and b/static/icons/060074AE.png differ
diff --git a/static/icons/060074AF.png b/static/icons/060074AF.png
new file mode 100755
index 00000000..0246575f
Binary files /dev/null and b/static/icons/060074AF.png differ
diff --git a/static/icons/060074B0.png b/static/icons/060074B0.png
new file mode 100755
index 00000000..f427ff2f
Binary files /dev/null and b/static/icons/060074B0.png differ
diff --git a/static/icons/060074B1.png b/static/icons/060074B1.png
new file mode 100755
index 00000000..26673e2b
Binary files /dev/null and b/static/icons/060074B1.png differ
diff --git a/static/icons/060074B2.png b/static/icons/060074B2.png
new file mode 100755
index 00000000..c4916ce6
Binary files /dev/null and b/static/icons/060074B2.png differ
diff --git a/static/icons/060074B7.png b/static/icons/060074B7.png
new file mode 100755
index 00000000..d8e42ed3
Binary files /dev/null and b/static/icons/060074B7.png differ
diff --git a/static/icons/060074B8.png b/static/icons/060074B8.png
new file mode 100755
index 00000000..04d2f2a9
Binary files /dev/null and b/static/icons/060074B8.png differ
diff --git a/static/icons/060074BF.png b/static/icons/060074BF.png
new file mode 100755
index 00000000..81f7f233
Binary files /dev/null and b/static/icons/060074BF.png differ
diff --git a/static/icons/060074C0.png b/static/icons/060074C0.png
new file mode 100755
index 00000000..de146059
Binary files /dev/null and b/static/icons/060074C0.png differ
diff --git a/static/icons/060074C1.png b/static/icons/060074C1.png
new file mode 100755
index 00000000..092db3d8
Binary files /dev/null and b/static/icons/060074C1.png differ
diff --git a/static/icons/060074C2.png b/static/icons/060074C2.png
new file mode 100755
index 00000000..37432dc0
Binary files /dev/null and b/static/icons/060074C2.png differ
diff --git a/static/icons/060074C3.png b/static/icons/060074C3.png
new file mode 100755
index 00000000..92dc54be
Binary files /dev/null and b/static/icons/060074C3.png differ
diff --git a/static/icons/060074C4.png b/static/icons/060074C4.png
new file mode 100755
index 00000000..a13a99c2
Binary files /dev/null and b/static/icons/060074C4.png differ
diff --git a/static/icons/060074C5.png b/static/icons/060074C5.png
new file mode 100755
index 00000000..c81f0ad3
Binary files /dev/null and b/static/icons/060074C5.png differ
diff --git a/static/icons/060074C6.png b/static/icons/060074C6.png
new file mode 100755
index 00000000..1e49ea3d
Binary files /dev/null and b/static/icons/060074C6.png differ
diff --git a/static/icons/060074C7.png b/static/icons/060074C7.png
new file mode 100755
index 00000000..5ab33f8c
Binary files /dev/null and b/static/icons/060074C7.png differ
diff --git a/static/icons/060074C8.png b/static/icons/060074C8.png
new file mode 100755
index 00000000..7c14764b
Binary files /dev/null and b/static/icons/060074C8.png differ
diff --git a/static/icons/060074C9.png b/static/icons/060074C9.png
new file mode 100755
index 00000000..11a16ed5
Binary files /dev/null and b/static/icons/060074C9.png differ
diff --git a/static/icons/060074CA.png b/static/icons/060074CA.png
new file mode 100755
index 00000000..03ac235c
Binary files /dev/null and b/static/icons/060074CA.png differ
diff --git a/static/icons/060074CB.png b/static/icons/060074CB.png
new file mode 100755
index 00000000..b9883215
Binary files /dev/null and b/static/icons/060074CB.png differ
diff --git a/static/icons/060074CC.png b/static/icons/060074CC.png
new file mode 100755
index 00000000..6cd8718e
Binary files /dev/null and b/static/icons/060074CC.png differ
diff --git a/static/icons/060074CD.png b/static/icons/060074CD.png
new file mode 100755
index 00000000..b37b4fc6
Binary files /dev/null and b/static/icons/060074CD.png differ
diff --git a/static/icons/060074CE.png b/static/icons/060074CE.png
new file mode 100755
index 00000000..36a815e6
Binary files /dev/null and b/static/icons/060074CE.png differ
diff --git a/static/icons/060074CF.png b/static/icons/060074CF.png
new file mode 100755
index 00000000..0a32e151
Binary files /dev/null and b/static/icons/060074CF.png differ
diff --git a/static/icons/060074D0.png b/static/icons/060074D0.png
new file mode 100755
index 00000000..8fe98360
Binary files /dev/null and b/static/icons/060074D0.png differ
diff --git a/static/icons/060074D1.png b/static/icons/060074D1.png
new file mode 100755
index 00000000..48d66fd7
Binary files /dev/null and b/static/icons/060074D1.png differ
diff --git a/static/icons/060074D2.png b/static/icons/060074D2.png
new file mode 100755
index 00000000..3790ff6f
Binary files /dev/null and b/static/icons/060074D2.png differ
diff --git a/static/icons/060074D3.png b/static/icons/060074D3.png
new file mode 100755
index 00000000..384ca071
Binary files /dev/null and b/static/icons/060074D3.png differ
diff --git a/static/icons/060074D4.png b/static/icons/060074D4.png
new file mode 100755
index 00000000..d0666624
Binary files /dev/null and b/static/icons/060074D4.png differ
diff --git a/static/icons/060074D5.png b/static/icons/060074D5.png
new file mode 100755
index 00000000..20359d4f
Binary files /dev/null and b/static/icons/060074D5.png differ
diff --git a/static/icons/060074D6.png b/static/icons/060074D6.png
new file mode 100755
index 00000000..c78dc1a2
Binary files /dev/null and b/static/icons/060074D6.png differ
diff --git a/static/icons/060074D7.png b/static/icons/060074D7.png
new file mode 100755
index 00000000..1c4a3218
Binary files /dev/null and b/static/icons/060074D7.png differ
diff --git a/static/icons/060074D8.png b/static/icons/060074D8.png
new file mode 100755
index 00000000..bf4e16ef
Binary files /dev/null and b/static/icons/060074D8.png differ
diff --git a/static/icons/060074D9.png b/static/icons/060074D9.png
new file mode 100755
index 00000000..548faf28
Binary files /dev/null and b/static/icons/060074D9.png differ
diff --git a/static/icons/060074DA.png b/static/icons/060074DA.png
new file mode 100755
index 00000000..0b8ba523
Binary files /dev/null and b/static/icons/060074DA.png differ
diff --git a/static/icons/060074DB.png b/static/icons/060074DB.png
new file mode 100755
index 00000000..79544edb
Binary files /dev/null and b/static/icons/060074DB.png differ
diff --git a/static/icons/060074DC.png b/static/icons/060074DC.png
new file mode 100755
index 00000000..dafd98c0
Binary files /dev/null and b/static/icons/060074DC.png differ
diff --git a/static/icons/060074DD.png b/static/icons/060074DD.png
new file mode 100755
index 00000000..224555bd
Binary files /dev/null and b/static/icons/060074DD.png differ
diff --git a/static/icons/060074DE.png b/static/icons/060074DE.png
new file mode 100755
index 00000000..01c321f2
Binary files /dev/null and b/static/icons/060074DE.png differ
diff --git a/static/icons/060074DF.png b/static/icons/060074DF.png
new file mode 100755
index 00000000..76efb064
Binary files /dev/null and b/static/icons/060074DF.png differ
diff --git a/static/icons/060074E0.png b/static/icons/060074E0.png
new file mode 100755
index 00000000..9270fa76
Binary files /dev/null and b/static/icons/060074E0.png differ
diff --git a/static/icons/060074E1.png b/static/icons/060074E1.png
new file mode 100755
index 00000000..f2dcf765
Binary files /dev/null and b/static/icons/060074E1.png differ
diff --git a/static/icons/060074E2.png b/static/icons/060074E2.png
new file mode 100755
index 00000000..7eb382f0
Binary files /dev/null and b/static/icons/060074E2.png differ
diff --git a/static/icons/060074E3.png b/static/icons/060074E3.png
new file mode 100755
index 00000000..57822ece
Binary files /dev/null and b/static/icons/060074E3.png differ
diff --git a/static/icons/060074E4.png b/static/icons/060074E4.png
new file mode 100755
index 00000000..8e231be1
Binary files /dev/null and b/static/icons/060074E4.png differ
diff --git a/static/icons/060074E5.png b/static/icons/060074E5.png
new file mode 100755
index 00000000..3b056705
Binary files /dev/null and b/static/icons/060074E5.png differ
diff --git a/static/icons/060074E6.png b/static/icons/060074E6.png
new file mode 100755
index 00000000..436a4b49
Binary files /dev/null and b/static/icons/060074E6.png differ
diff --git a/static/icons/060074E7.png b/static/icons/060074E7.png
new file mode 100755
index 00000000..adca64f0
Binary files /dev/null and b/static/icons/060074E7.png differ
diff --git a/static/icons/060074E8.png b/static/icons/060074E8.png
new file mode 100755
index 00000000..923b88f3
Binary files /dev/null and b/static/icons/060074E8.png differ
diff --git a/static/icons/060074E9.png b/static/icons/060074E9.png
new file mode 100755
index 00000000..72941c8e
Binary files /dev/null and b/static/icons/060074E9.png differ
diff --git a/static/icons/060074EA.png b/static/icons/060074EA.png
new file mode 100755
index 00000000..6938f5fb
Binary files /dev/null and b/static/icons/060074EA.png differ
diff --git a/static/icons/060074EC.png b/static/icons/060074EC.png
new file mode 100755
index 00000000..89feced1
Binary files /dev/null and b/static/icons/060074EC.png differ
diff --git a/static/icons/060074ED.png b/static/icons/060074ED.png
new file mode 100755
index 00000000..056a6cf1
Binary files /dev/null and b/static/icons/060074ED.png differ
diff --git a/static/icons/060074EE.png b/static/icons/060074EE.png
new file mode 100755
index 00000000..74c3ead6
Binary files /dev/null and b/static/icons/060074EE.png differ
diff --git a/static/icons/060074EF.png b/static/icons/060074EF.png
new file mode 100755
index 00000000..ad96e1d4
Binary files /dev/null and b/static/icons/060074EF.png differ
diff --git a/static/icons/060074F0.png b/static/icons/060074F0.png
new file mode 100755
index 00000000..8b372157
Binary files /dev/null and b/static/icons/060074F0.png differ
diff --git a/static/icons/060074F1.png b/static/icons/060074F1.png
new file mode 100755
index 00000000..256b8b4f
Binary files /dev/null and b/static/icons/060074F1.png differ
diff --git a/static/icons/060074F2.png b/static/icons/060074F2.png
new file mode 100755
index 00000000..ba44e513
Binary files /dev/null and b/static/icons/060074F2.png differ
diff --git a/static/icons/060074F3.png b/static/icons/060074F3.png
new file mode 100755
index 00000000..0227e326
Binary files /dev/null and b/static/icons/060074F3.png differ
diff --git a/static/icons/060074F4.png b/static/icons/060074F4.png
new file mode 100755
index 00000000..6df732df
Binary files /dev/null and b/static/icons/060074F4.png differ
diff --git a/static/icons/060074F5.png b/static/icons/060074F5.png
new file mode 100755
index 00000000..931a52ca
Binary files /dev/null and b/static/icons/060074F5.png differ
diff --git a/static/icons/060074F6.png b/static/icons/060074F6.png
new file mode 100755
index 00000000..c48da34d
Binary files /dev/null and b/static/icons/060074F6.png differ
diff --git a/static/icons/060074F7.png b/static/icons/060074F7.png
new file mode 100755
index 00000000..8d03b107
Binary files /dev/null and b/static/icons/060074F7.png differ
diff --git a/static/icons/060074F8.png b/static/icons/060074F8.png
new file mode 100755
index 00000000..26de178b
Binary files /dev/null and b/static/icons/060074F8.png differ
diff --git a/static/icons/060074F9.png b/static/icons/060074F9.png
new file mode 100755
index 00000000..daa9572b
Binary files /dev/null and b/static/icons/060074F9.png differ
diff --git a/static/icons/060074FA.png b/static/icons/060074FA.png
new file mode 100755
index 00000000..2a57ee5f
Binary files /dev/null and b/static/icons/060074FA.png differ
diff --git a/static/icons/060074FB.png b/static/icons/060074FB.png
new file mode 100755
index 00000000..1d1cd0d7
Binary files /dev/null and b/static/icons/060074FB.png differ
diff --git a/static/icons/060074FC.png b/static/icons/060074FC.png
new file mode 100755
index 00000000..3e19009a
Binary files /dev/null and b/static/icons/060074FC.png differ
diff --git a/static/icons/060074FD.png b/static/icons/060074FD.png
new file mode 100755
index 00000000..468471df
Binary files /dev/null and b/static/icons/060074FD.png differ
diff --git a/static/icons/060074FE.png b/static/icons/060074FE.png
new file mode 100755
index 00000000..8b9457f7
Binary files /dev/null and b/static/icons/060074FE.png differ
diff --git a/static/icons/060074FF.png b/static/icons/060074FF.png
new file mode 100755
index 00000000..3cda34da
Binary files /dev/null and b/static/icons/060074FF.png differ
diff --git a/static/icons/06007500.png b/static/icons/06007500.png
new file mode 100755
index 00000000..b7712f39
Binary files /dev/null and b/static/icons/06007500.png differ
diff --git a/static/icons/06007501.png b/static/icons/06007501.png
new file mode 100755
index 00000000..ee53aaa8
Binary files /dev/null and b/static/icons/06007501.png differ
diff --git a/static/icons/06007502.png b/static/icons/06007502.png
new file mode 100755
index 00000000..b8ea6f58
Binary files /dev/null and b/static/icons/06007502.png differ
diff --git a/static/icons/06007503.png b/static/icons/06007503.png
new file mode 100755
index 00000000..59037dc6
Binary files /dev/null and b/static/icons/06007503.png differ
diff --git a/static/icons/06007504.png b/static/icons/06007504.png
new file mode 100755
index 00000000..2903d26a
Binary files /dev/null and b/static/icons/06007504.png differ
diff --git a/static/icons/06007505.png b/static/icons/06007505.png
new file mode 100755
index 00000000..a846c172
Binary files /dev/null and b/static/icons/06007505.png differ
diff --git a/static/icons/06007506.png b/static/icons/06007506.png
new file mode 100755
index 00000000..10003f6e
Binary files /dev/null and b/static/icons/06007506.png differ
diff --git a/static/icons/06007507.png b/static/icons/06007507.png
new file mode 100755
index 00000000..4c52c52b
Binary files /dev/null and b/static/icons/06007507.png differ
diff --git a/static/icons/06007508.png b/static/icons/06007508.png
new file mode 100755
index 00000000..19fc7504
Binary files /dev/null and b/static/icons/06007508.png differ
diff --git a/static/icons/06007509.png b/static/icons/06007509.png
new file mode 100755
index 00000000..1bba06dc
Binary files /dev/null and b/static/icons/06007509.png differ
diff --git a/static/icons/0600750A.png b/static/icons/0600750A.png
new file mode 100755
index 00000000..e6b5d484
Binary files /dev/null and b/static/icons/0600750A.png differ
diff --git a/static/icons/0600750B.png b/static/icons/0600750B.png
new file mode 100755
index 00000000..59cf2b72
Binary files /dev/null and b/static/icons/0600750B.png differ
diff --git a/static/icons/0600750C.png b/static/icons/0600750C.png
new file mode 100755
index 00000000..e5d53e21
Binary files /dev/null and b/static/icons/0600750C.png differ
diff --git a/static/icons/0600750D.png b/static/icons/0600750D.png
new file mode 100755
index 00000000..ddb8e9de
Binary files /dev/null and b/static/icons/0600750D.png differ
diff --git a/static/icons/0600750E.png b/static/icons/0600750E.png
new file mode 100755
index 00000000..4addb797
Binary files /dev/null and b/static/icons/0600750E.png differ
diff --git a/static/icons/0600750F.png b/static/icons/0600750F.png
new file mode 100755
index 00000000..84b0a639
Binary files /dev/null and b/static/icons/0600750F.png differ
diff --git a/static/icons/06007510.png b/static/icons/06007510.png
new file mode 100755
index 00000000..6bb41aee
Binary files /dev/null and b/static/icons/06007510.png differ
diff --git a/static/icons/06007511.png b/static/icons/06007511.png
new file mode 100755
index 00000000..a4b10138
Binary files /dev/null and b/static/icons/06007511.png differ
diff --git a/static/icons/06007512.png b/static/icons/06007512.png
new file mode 100755
index 00000000..5c5b19d4
Binary files /dev/null and b/static/icons/06007512.png differ
diff --git a/static/icons/06007513.png b/static/icons/06007513.png
new file mode 100755
index 00000000..3730376a
Binary files /dev/null and b/static/icons/06007513.png differ
diff --git a/static/icons/06007514.png b/static/icons/06007514.png
new file mode 100755
index 00000000..5b77d629
Binary files /dev/null and b/static/icons/06007514.png differ
diff --git a/static/icons/06007515.png b/static/icons/06007515.png
new file mode 100755
index 00000000..37377a1b
Binary files /dev/null and b/static/icons/06007515.png differ
diff --git a/static/icons/06007516.png b/static/icons/06007516.png
new file mode 100755
index 00000000..9ea8526b
Binary files /dev/null and b/static/icons/06007516.png differ
diff --git a/static/icons/06007517.png b/static/icons/06007517.png
new file mode 100755
index 00000000..1ae436fe
Binary files /dev/null and b/static/icons/06007517.png differ
diff --git a/static/icons/06007518.png b/static/icons/06007518.png
new file mode 100755
index 00000000..c34a3c5f
Binary files /dev/null and b/static/icons/06007518.png differ
diff --git a/static/icons/06007519.png b/static/icons/06007519.png
new file mode 100755
index 00000000..0db9060d
Binary files /dev/null and b/static/icons/06007519.png differ
diff --git a/static/icons/0600751A.png b/static/icons/0600751A.png
new file mode 100755
index 00000000..3a2ecc83
Binary files /dev/null and b/static/icons/0600751A.png differ
diff --git a/static/icons/0600751B.png b/static/icons/0600751B.png
new file mode 100755
index 00000000..ed00b93c
Binary files /dev/null and b/static/icons/0600751B.png differ
diff --git a/static/icons/0600751C.png b/static/icons/0600751C.png
new file mode 100755
index 00000000..2aa930e6
Binary files /dev/null and b/static/icons/0600751C.png differ
diff --git a/static/icons/0600751D.png b/static/icons/0600751D.png
new file mode 100755
index 00000000..004b1351
Binary files /dev/null and b/static/icons/0600751D.png differ
diff --git a/static/icons/0600751E.png b/static/icons/0600751E.png
new file mode 100755
index 00000000..554fbbf4
Binary files /dev/null and b/static/icons/0600751E.png differ
diff --git a/static/icons/0600751F.png b/static/icons/0600751F.png
new file mode 100755
index 00000000..47e86451
Binary files /dev/null and b/static/icons/0600751F.png differ
diff --git a/static/icons/06007520.png b/static/icons/06007520.png
new file mode 100755
index 00000000..3e3e4c2b
Binary files /dev/null and b/static/icons/06007520.png differ
diff --git a/static/icons/06007522.png b/static/icons/06007522.png
new file mode 100755
index 00000000..93676964
Binary files /dev/null and b/static/icons/06007522.png differ
diff --git a/static/icons/06007523.png b/static/icons/06007523.png
new file mode 100755
index 00000000..95e76efe
Binary files /dev/null and b/static/icons/06007523.png differ
diff --git a/static/icons/06007524.png b/static/icons/06007524.png
new file mode 100755
index 00000000..bd4d6d79
Binary files /dev/null and b/static/icons/06007524.png differ
diff --git a/static/icons/06007525.png b/static/icons/06007525.png
new file mode 100755
index 00000000..dd140335
Binary files /dev/null and b/static/icons/06007525.png differ
diff --git a/static/icons/06007526.png b/static/icons/06007526.png
new file mode 100755
index 00000000..31595b30
Binary files /dev/null and b/static/icons/06007526.png differ
diff --git a/static/icons/06007527.png b/static/icons/06007527.png
new file mode 100755
index 00000000..07da9c8a
Binary files /dev/null and b/static/icons/06007527.png differ
diff --git a/static/icons/06007528.png b/static/icons/06007528.png
new file mode 100755
index 00000000..47f76ab3
Binary files /dev/null and b/static/icons/06007528.png differ
diff --git a/static/icons/0600752A.png b/static/icons/0600752A.png
new file mode 100755
index 00000000..c3d20f44
Binary files /dev/null and b/static/icons/0600752A.png differ
diff --git a/static/icons/0600752B.png b/static/icons/0600752B.png
new file mode 100755
index 00000000..a3af48e7
Binary files /dev/null and b/static/icons/0600752B.png differ
diff --git a/static/icons/0600752C.png b/static/icons/0600752C.png
new file mode 100755
index 00000000..2f0a6e7d
Binary files /dev/null and b/static/icons/0600752C.png differ
diff --git a/static/icons/0600752D.png b/static/icons/0600752D.png
new file mode 100755
index 00000000..af058ce9
Binary files /dev/null and b/static/icons/0600752D.png differ
diff --git a/static/icons/0600752E.png b/static/icons/0600752E.png
new file mode 100755
index 00000000..d7a0b0c6
Binary files /dev/null and b/static/icons/0600752E.png differ
diff --git a/static/icons/0600752F.png b/static/icons/0600752F.png
new file mode 100755
index 00000000..acf48f27
Binary files /dev/null and b/static/icons/0600752F.png differ
diff --git a/static/icons/06007530.png b/static/icons/06007530.png
new file mode 100755
index 00000000..224d73bf
Binary files /dev/null and b/static/icons/06007530.png differ
diff --git a/static/icons/06007531.png b/static/icons/06007531.png
new file mode 100755
index 00000000..aa6ebcc7
Binary files /dev/null and b/static/icons/06007531.png differ
diff --git a/static/icons/06007532.png b/static/icons/06007532.png
new file mode 100755
index 00000000..bdc3a17f
Binary files /dev/null and b/static/icons/06007532.png differ
diff --git a/static/icons/06007533.png b/static/icons/06007533.png
new file mode 100755
index 00000000..467b9d5e
Binary files /dev/null and b/static/icons/06007533.png differ
diff --git a/static/icons/06007534.png b/static/icons/06007534.png
new file mode 100755
index 00000000..37e30aa7
Binary files /dev/null and b/static/icons/06007534.png differ
diff --git a/static/icons/06007535.png b/static/icons/06007535.png
new file mode 100755
index 00000000..6ac69c4e
Binary files /dev/null and b/static/icons/06007535.png differ
diff --git a/static/icons/06007536.png b/static/icons/06007536.png
new file mode 100755
index 00000000..7619b76f
Binary files /dev/null and b/static/icons/06007536.png differ
diff --git a/static/icons/06007537.png b/static/icons/06007537.png
new file mode 100755
index 00000000..6a912973
Binary files /dev/null and b/static/icons/06007537.png differ
diff --git a/static/icons/06007538.png b/static/icons/06007538.png
new file mode 100755
index 00000000..37da3354
Binary files /dev/null and b/static/icons/06007538.png differ
diff --git a/static/icons/06007539.png b/static/icons/06007539.png
new file mode 100755
index 00000000..c7d02bba
Binary files /dev/null and b/static/icons/06007539.png differ
diff --git a/static/icons/0600753A.png b/static/icons/0600753A.png
new file mode 100755
index 00000000..19622566
Binary files /dev/null and b/static/icons/0600753A.png differ
diff --git a/static/icons/0600753B.png b/static/icons/0600753B.png
new file mode 100755
index 00000000..fca11813
Binary files /dev/null and b/static/icons/0600753B.png differ
diff --git a/static/icons/0600753C.png b/static/icons/0600753C.png
new file mode 100755
index 00000000..2263863f
Binary files /dev/null and b/static/icons/0600753C.png differ
diff --git a/static/icons/0600753D.png b/static/icons/0600753D.png
new file mode 100755
index 00000000..98643e3a
Binary files /dev/null and b/static/icons/0600753D.png differ
diff --git a/static/icons/0600753F.png b/static/icons/0600753F.png
new file mode 100755
index 00000000..aef0ec7d
Binary files /dev/null and b/static/icons/0600753F.png differ
diff --git a/static/icons/06007540.png b/static/icons/06007540.png
new file mode 100755
index 00000000..ed319888
Binary files /dev/null and b/static/icons/06007540.png differ
diff --git a/static/icons/06007541.png b/static/icons/06007541.png
new file mode 100755
index 00000000..7d3a4c4e
Binary files /dev/null and b/static/icons/06007541.png differ
diff --git a/static/icons/06007542.png b/static/icons/06007542.png
new file mode 100755
index 00000000..33e518b5
Binary files /dev/null and b/static/icons/06007542.png differ
diff --git a/static/icons/06007543.png b/static/icons/06007543.png
new file mode 100755
index 00000000..8d47e1a8
Binary files /dev/null and b/static/icons/06007543.png differ
diff --git a/static/icons/06007544.png b/static/icons/06007544.png
new file mode 100755
index 00000000..1cd17ece
Binary files /dev/null and b/static/icons/06007544.png differ
diff --git a/static/icons/06007545.png b/static/icons/06007545.png
new file mode 100755
index 00000000..d566664a
Binary files /dev/null and b/static/icons/06007545.png differ
diff --git a/static/icons/06007546.png b/static/icons/06007546.png
new file mode 100755
index 00000000..04ac31ad
Binary files /dev/null and b/static/icons/06007546.png differ
diff --git a/static/icons/06007547.png b/static/icons/06007547.png
new file mode 100755
index 00000000..6068e0e2
Binary files /dev/null and b/static/icons/06007547.png differ
diff --git a/static/icons/06007548.png b/static/icons/06007548.png
new file mode 100755
index 00000000..2457364c
Binary files /dev/null and b/static/icons/06007548.png differ
diff --git a/static/icons/06007549.png b/static/icons/06007549.png
new file mode 100755
index 00000000..de638da9
Binary files /dev/null and b/static/icons/06007549.png differ
diff --git a/static/icons/0600754A.png b/static/icons/0600754A.png
new file mode 100755
index 00000000..cc1e5d39
Binary files /dev/null and b/static/icons/0600754A.png differ
diff --git a/static/icons/0600754B.png b/static/icons/0600754B.png
new file mode 100755
index 00000000..bd818d0f
Binary files /dev/null and b/static/icons/0600754B.png differ
diff --git a/static/icons/0600754C.png b/static/icons/0600754C.png
new file mode 100755
index 00000000..f5fc71fa
Binary files /dev/null and b/static/icons/0600754C.png differ
diff --git a/static/icons/0600754D.png b/static/icons/0600754D.png
new file mode 100755
index 00000000..e2c45ed0
Binary files /dev/null and b/static/icons/0600754D.png differ
diff --git a/static/icons/0600754E.png b/static/icons/0600754E.png
new file mode 100755
index 00000000..a63a703e
Binary files /dev/null and b/static/icons/0600754E.png differ
diff --git a/static/icons/0600754F.png b/static/icons/0600754F.png
new file mode 100755
index 00000000..6868c527
Binary files /dev/null and b/static/icons/0600754F.png differ
diff --git a/static/icons/06007550.png b/static/icons/06007550.png
new file mode 100755
index 00000000..6868c527
Binary files /dev/null and b/static/icons/06007550.png differ
diff --git a/static/icons/06007551.png b/static/icons/06007551.png
new file mode 100755
index 00000000..6c1df057
Binary files /dev/null and b/static/icons/06007551.png differ
diff --git a/static/icons/06007552.png b/static/icons/06007552.png
new file mode 100755
index 00000000..857aeaa8
Binary files /dev/null and b/static/icons/06007552.png differ
diff --git a/static/icons/06007553.png b/static/icons/06007553.png
new file mode 100755
index 00000000..9fb6c455
Binary files /dev/null and b/static/icons/06007553.png differ
diff --git a/static/icons/06007554.png b/static/icons/06007554.png
new file mode 100755
index 00000000..00d160c5
Binary files /dev/null and b/static/icons/06007554.png differ
diff --git a/static/icons/06007555.png b/static/icons/06007555.png
new file mode 100755
index 00000000..d6390e31
Binary files /dev/null and b/static/icons/06007555.png differ
diff --git a/static/icons/06007556.png b/static/icons/06007556.png
new file mode 100755
index 00000000..07ce1d52
Binary files /dev/null and b/static/icons/06007556.png differ
diff --git a/static/icons/06007557.png b/static/icons/06007557.png
new file mode 100755
index 00000000..fc332a21
Binary files /dev/null and b/static/icons/06007557.png differ
diff --git a/static/icons/06007558.png b/static/icons/06007558.png
new file mode 100755
index 00000000..520f9c8d
Binary files /dev/null and b/static/icons/06007558.png differ
diff --git a/static/icons/06007559.png b/static/icons/06007559.png
new file mode 100755
index 00000000..b87950d4
Binary files /dev/null and b/static/icons/06007559.png differ
diff --git a/static/icons/0600755A.png b/static/icons/0600755A.png
new file mode 100755
index 00000000..8bf09bff
Binary files /dev/null and b/static/icons/0600755A.png differ
diff --git a/static/icons/0600755B.png b/static/icons/0600755B.png
new file mode 100755
index 00000000..f338cc17
Binary files /dev/null and b/static/icons/0600755B.png differ
diff --git a/static/icons/0600755C.png b/static/icons/0600755C.png
new file mode 100755
index 00000000..efd87a4d
Binary files /dev/null and b/static/icons/0600755C.png differ
diff --git a/static/icons/0600755D.png b/static/icons/0600755D.png
new file mode 100755
index 00000000..13ca3fb2
Binary files /dev/null and b/static/icons/0600755D.png differ
diff --git a/static/icons/0600755E.png b/static/icons/0600755E.png
new file mode 100755
index 00000000..9da5c58d
Binary files /dev/null and b/static/icons/0600755E.png differ
diff --git a/static/icons/0600755F.png b/static/icons/0600755F.png
new file mode 100755
index 00000000..c34555df
Binary files /dev/null and b/static/icons/0600755F.png differ
diff --git a/static/icons/06007560.png b/static/icons/06007560.png
new file mode 100755
index 00000000..868187b6
Binary files /dev/null and b/static/icons/06007560.png differ
diff --git a/static/icons/06007561.png b/static/icons/06007561.png
new file mode 100755
index 00000000..366bed67
Binary files /dev/null and b/static/icons/06007561.png differ
diff --git a/static/icons/06007562.png b/static/icons/06007562.png
new file mode 100755
index 00000000..4e276d1a
Binary files /dev/null and b/static/icons/06007562.png differ
diff --git a/static/icons/06007563.png b/static/icons/06007563.png
new file mode 100755
index 00000000..0e4406bf
Binary files /dev/null and b/static/icons/06007563.png differ
diff --git a/static/icons/06007564.png b/static/icons/06007564.png
new file mode 100755
index 00000000..1fc4d45a
Binary files /dev/null and b/static/icons/06007564.png differ
diff --git a/static/icons/06007566.png b/static/icons/06007566.png
new file mode 100755
index 00000000..29ff1c08
Binary files /dev/null and b/static/icons/06007566.png differ
diff --git a/static/icons/06007567.png b/static/icons/06007567.png
new file mode 100755
index 00000000..7f38f8c1
Binary files /dev/null and b/static/icons/06007567.png differ
diff --git a/static/icons/06007568.png b/static/icons/06007568.png
new file mode 100755
index 00000000..744d914a
Binary files /dev/null and b/static/icons/06007568.png differ
diff --git a/static/icons/06007569.png b/static/icons/06007569.png
new file mode 100755
index 00000000..2d4a5196
Binary files /dev/null and b/static/icons/06007569.png differ
diff --git a/static/icons/0600756A.png b/static/icons/0600756A.png
new file mode 100755
index 00000000..c3f6be22
Binary files /dev/null and b/static/icons/0600756A.png differ
diff --git a/static/icons/0600756B.png b/static/icons/0600756B.png
new file mode 100755
index 00000000..3cbadd24
Binary files /dev/null and b/static/icons/0600756B.png differ
diff --git a/static/icons/0600756C.png b/static/icons/0600756C.png
new file mode 100755
index 00000000..1574fbe9
Binary files /dev/null and b/static/icons/0600756C.png differ
diff --git a/static/icons/0600756D.png b/static/icons/0600756D.png
new file mode 100755
index 00000000..1bf94604
Binary files /dev/null and b/static/icons/0600756D.png differ
diff --git a/static/icons/0600756E.png b/static/icons/0600756E.png
new file mode 100755
index 00000000..1a2b6a3b
Binary files /dev/null and b/static/icons/0600756E.png differ
diff --git a/static/icons/0600756F.png b/static/icons/0600756F.png
new file mode 100755
index 00000000..5ab4cb99
Binary files /dev/null and b/static/icons/0600756F.png differ
diff --git a/static/icons/06007570.png b/static/icons/06007570.png
new file mode 100755
index 00000000..ce7c7e0d
Binary files /dev/null and b/static/icons/06007570.png differ
diff --git a/static/icons/06007571.png b/static/icons/06007571.png
new file mode 100755
index 00000000..a3a2895f
Binary files /dev/null and b/static/icons/06007571.png differ
diff --git a/static/icons/06007572.png b/static/icons/06007572.png
new file mode 100755
index 00000000..804a2664
Binary files /dev/null and b/static/icons/06007572.png differ
diff --git a/static/icons/06007573.png b/static/icons/06007573.png
new file mode 100755
index 00000000..4e2e725c
Binary files /dev/null and b/static/icons/06007573.png differ
diff --git a/static/icons/06007574.png b/static/icons/06007574.png
new file mode 100755
index 00000000..d0c49368
Binary files /dev/null and b/static/icons/06007574.png differ
diff --git a/static/icons/06007575.png b/static/icons/06007575.png
new file mode 100755
index 00000000..24874859
Binary files /dev/null and b/static/icons/06007575.png differ
diff --git a/static/icons/06007576.png b/static/icons/06007576.png
new file mode 100755
index 00000000..82aba158
Binary files /dev/null and b/static/icons/06007576.png differ
diff --git a/static/script.js b/static/script.js
index 53df5b5e..5a95bab0 100644
--- a/static/script.js
+++ b/static/script.js
@@ -460,11 +460,182 @@ function showInventoryWindow(name) {
header.appendChild(title);
header.appendChild(closeBtn);
win.appendChild(header);
+ // Loading message
+ const loading = document.createElement('div');
+ loading.className = 'inventory-loading';
+ loading.textContent = 'Loading inventory...';
+ win.appendChild(loading);
+
// Content container
const content = document.createElement('div');
content.className = 'inventory-content';
- content.innerHTML = 'Inventory feature coming soon...
';
+ content.style.display = 'none';
win.appendChild(content);
+
+ // Fetch inventory data from main app (which will proxy to inventory service)
+ fetch(`${API_BASE}/inventory/${encodeURIComponent(name)}?limit=1000`)
+ .then(response => {
+ if (!response.ok) throw new Error(`HTTP ${response.status}`);
+ return response.json();
+ })
+ .then(data => {
+ loading.style.display = 'none';
+ content.style.display = 'block';
+
+ // Create inventory grid
+ const grid = document.createElement('div');
+ grid.className = 'inventory-grid';
+
+ // Render each item
+ data.items.forEach(item => {
+
+ const slot = document.createElement('div');
+ slot.className = 'inventory-slot';
+
+ // Create layered icon container
+ const iconContainer = document.createElement('div');
+ iconContainer.className = 'item-icon-composite';
+
+ // Get base icon ID with portal.dat offset
+ const baseIconId = (item.icon + 0x06000000).toString(16).toUpperCase().padStart(8, '0');
+
+ // Check for overlay and underlay from enhanced format or legacy format
+ let overlayIconId = null;
+ let underlayIconId = null;
+
+ // Enhanced format (inventory service) - check for proper icon overlay/underlay properties
+ if (item.icon_overlay_id && item.icon_overlay_id > 0) {
+ overlayIconId = (item.icon_overlay_id + 0x06000000).toString(16).toUpperCase().padStart(8, '0');
+ }
+
+ if (item.icon_underlay_id && item.icon_underlay_id > 0) {
+ underlayIconId = (item.icon_underlay_id + 0x06000000).toString(16).toUpperCase().padStart(8, '0');
+ }
+
+ // Fallback: Enhanced format (inventory service) - check spells object for decal info
+ if (!overlayIconId && !underlayIconId && item.spells && typeof item.spells === 'object') {
+ // Icon overlay (using the actual property names from the data)
+ // Only use valid icon IDs (must be > 100 to avoid invalid small IDs)
+ if (item.spells.spell_decal_218103838 && item.spells.spell_decal_218103838 > 100) {
+ overlayIconId = (item.spells.spell_decal_218103838 + 0x06000000).toString(16).toUpperCase().padStart(8, '0');
+ }
+
+ // Icon underlay
+ if (item.spells.spell_decal_218103848 && item.spells.spell_decal_218103848 > 100) {
+ underlayIconId = (item.spells.spell_decal_218103848 + 0x06000000).toString(16).toUpperCase().padStart(8, '0');
+ }
+ } else if (item.item_data) {
+ // Legacy format - parse item_data
+ try {
+ const itemData = typeof item.item_data === 'string' ? JSON.parse(item.item_data) : item.item_data;
+
+ if (itemData.IntValues) {
+ // Icon overlay (ID 218103849) - only use valid icon IDs
+ if (itemData.IntValues['218103849'] && itemData.IntValues['218103849'] > 100) {
+ overlayIconId = (itemData.IntValues['218103849'] + 0x06000000).toString(16).toUpperCase().padStart(8, '0');
+ }
+
+ // Icon underlay (ID 218103850) - only use valid icon IDs
+ if (itemData.IntValues['218103850'] && itemData.IntValues['218103850'] > 100) {
+ underlayIconId = (itemData.IntValues['218103850'] + 0x06000000).toString(16).toUpperCase().padStart(8, '0');
+ }
+ }
+ } catch (e) {
+ console.warn('Failed to parse item data for', item.name);
+ }
+ }
+
+ // Create underlay (bottom layer)
+ if (underlayIconId) {
+ const underlayImg = document.createElement('img');
+ underlayImg.className = 'icon-underlay';
+ underlayImg.src = `/icons/${underlayIconId}.png`;
+ underlayImg.alt = 'underlay';
+ underlayImg.onerror = function() { this.style.display = 'none'; };
+ iconContainer.appendChild(underlayImg);
+ }
+
+ // Create base icon (middle layer)
+ const baseImg = document.createElement('img');
+ baseImg.className = 'icon-base';
+ baseImg.src = `/icons/${baseIconId}.png`;
+ baseImg.alt = item.name || 'Unknown Item';
+ baseImg.onerror = function() {
+ // Final fallback
+ this.src = '/icons/06000133.png';
+ };
+ iconContainer.appendChild(baseImg);
+
+ // Create overlay (top layer)
+ if (overlayIconId) {
+ const overlayImg = document.createElement('img');
+ overlayImg.className = 'icon-overlay';
+ overlayImg.src = `/icons/${overlayIconId}.png`;
+ overlayImg.alt = 'overlay';
+ overlayImg.onerror = function() { this.style.display = 'none'; };
+ iconContainer.appendChild(overlayImg);
+ }
+
+ // Create tooltip data
+ slot.dataset.name = item.name || 'Unknown Item';
+ slot.dataset.value = item.value || 0;
+ slot.dataset.burden = item.burden || 0;
+
+ // Store enhanced data for tooltips
+ // All data now comes from inventory service (no more local fallback)
+ if (item.max_damage !== undefined || item.object_class_name !== undefined || item.spells !== undefined) {
+ // Inventory service provides clean, structured data with translations
+ // Only include properties that actually exist on the item
+ const enhancedData = {};
+
+ // Check all possible enhanced properties from inventory service
+ const possibleProps = [
+ 'max_damage', 'armor_level', 'damage_bonus', 'attack_bonus',
+ 'wield_level', 'skill_level', 'lore_requirement', 'equip_skill', 'equip_skill_name',
+ 'material', 'material_name', 'material_id', 'imbue', 'item_set', 'tinks',
+ 'workmanship', 'workmanship_text', 'damage_rating', 'crit_rating',
+ 'heal_boost_rating', 'has_id_data', 'object_class_name', 'spells',
+ 'enhanced_properties', 'damage_range', 'damage_type', 'min_damage',
+ 'speed_text', 'speed_value', 'mana_display', 'spellcraft', 'current_mana', 'max_mana',
+ 'melee_defense_bonus', 'magic_defense_bonus', 'missile_defense_bonus',
+ 'elemental_damage_vs_monsters', 'mana_conversion_bonus', 'icon_overlay_id', 'icon_underlay_id'
+ ];
+
+ // Only add properties that exist and have meaningful values
+ possibleProps.forEach(prop => {
+ if (item.hasOwnProperty(prop) && item[prop] !== undefined && item[prop] !== null) {
+ enhancedData[prop] = item[prop];
+ }
+ });
+
+ slot.dataset.enhancedData = JSON.stringify(enhancedData);
+ } else {
+ // No enhanced data available
+ slot.dataset.enhancedData = JSON.stringify({});
+ }
+
+ // Add tooltip on hover
+ slot.addEventListener('mouseenter', e => showInventoryTooltip(e, slot));
+ slot.addEventListener('mousemove', e => showInventoryTooltip(e, slot));
+ slot.addEventListener('mouseleave', hideInventoryTooltip);
+
+ slot.appendChild(iconContainer);
+ grid.appendChild(slot);
+ });
+
+ content.appendChild(grid);
+
+ // Add item count
+ const count = document.createElement('div');
+ count.className = 'inventory-count';
+ count.textContent = `${data.item_count} items`;
+ content.appendChild(count);
+ })
+ .catch(err => {
+ loading.textContent = `Failed to load inventory: ${err.message}`;
+ console.error('Inventory fetch failed:', err);
+ });
+
document.body.appendChild(win);
inventoryWindows[name] = win;
@@ -472,6 +643,238 @@ function showInventoryWindow(name) {
makeDraggable(win, header);
}
+// Inventory tooltip functions
+let inventoryTooltip = null;
+
+function showInventoryTooltip(e, slot) {
+ if (!inventoryTooltip) {
+ inventoryTooltip = document.createElement('div');
+ inventoryTooltip.className = 'inventory-tooltip';
+ document.body.appendChild(inventoryTooltip);
+ }
+
+ const name = slot.dataset.name;
+ const value = parseInt(slot.dataset.value) || 0;
+ const burden = parseInt(slot.dataset.burden) || 0;
+
+ // Build enhanced tooltip
+ let tooltipHTML = `${name}
`;
+
+ // Basic stats
+ tooltipHTML += ``;
+
+ // Enhanced data from inventory service
+ if (slot.dataset.enhancedData) {
+ try {
+ const enhanced = JSON.parse(slot.dataset.enhancedData);
+
+ // Only show enhanced sections if we have enhanced data
+ if (Object.keys(enhanced).length > 0) {
+
+ // Helper function to check for valid values
+ const isValid = (val) => val !== undefined && val !== null && val !== -1 && val !== -1.0;
+
+ // Weapon-specific stats section (for weapons)
+ if (enhanced.damage_range || enhanced.speed_text || enhanced.equip_skill_name) {
+ tooltipHTML += ``;
+
+ // Skill requirement
+ if (enhanced.equip_skill_name) {
+ tooltipHTML += `
Skill: ${enhanced.equip_skill_name}
`;
+ }
+
+ // Damage with type
+ if (enhanced.damage_range && enhanced.damage_type) {
+ const damageText = enhanced.damage_type !== 'Physical' ?
+ `${enhanced.damage_range}, ${enhanced.damage_type}` :
+ enhanced.damage_range;
+ tooltipHTML += `
Damage: ${damageText}
`;
+ }
+
+ // Speed
+ if (enhanced.speed_text) {
+ tooltipHTML += `
Speed: ${enhanced.speed_text}
`;
+ }
+
+ // Attack and defense bonuses (as percentages)
+ if (isValid(enhanced.attack_bonus)) {
+ const attackPercent = ((enhanced.attack_bonus - 1) * 100).toFixed(1);
+ if (attackPercent !== "0.0") {
+ tooltipHTML += `
Bonus to Attack Skill: ${attackPercent > 0 ? '+' : ''}${attackPercent}%
`;
+ }
+ }
+
+ // Defense bonuses
+ if (enhanced.melee_defense_bonus && isValid(enhanced.melee_defense_bonus)) {
+ const defensePercent = ((enhanced.melee_defense_bonus - 1) * 100).toFixed(1);
+ if (defensePercent !== "0.0") {
+ tooltipHTML += `
Bonus to Melee Defense: ${defensePercent > 0 ? '+' : ''}${defensePercent}%
`;
+ }
+ }
+
+ // Magic defense bonus
+ if (enhanced.magic_defense_bonus && isValid(enhanced.magic_defense_bonus)) {
+ const magicDefensePercent = ((enhanced.magic_defense_bonus - 1) * 100).toFixed(1);
+ if (magicDefensePercent !== "0.0") {
+ tooltipHTML += `
Bonus to Magic Defense: ${magicDefensePercent > 0 ? '+' : ''}${magicDefensePercent}%
`;
+ }
+ }
+
+ // Elemental damage vs monsters
+ if (enhanced.elemental_damage_vs_monsters && isValid(enhanced.elemental_damage_vs_monsters)) {
+ const elementalPercent = ((enhanced.elemental_damage_vs_monsters - 1) * 100).toFixed(1);
+ if (elementalPercent !== "0.0") {
+ tooltipHTML += `
Elemental Damage vs Monsters: ${elementalPercent > 0 ? '+' : ''}${elementalPercent}%
`;
+ }
+ }
+
+ tooltipHTML += `
`;
+ }
+
+ // Traditional combat stats section (for non-weapons or additional stats)
+ const combatProps = [];
+ if (isValid(enhanced.armor_level)) combatProps.push(`Armor Level: ${enhanced.armor_level}`);
+ if (!enhanced.damage_range && isValid(enhanced.max_damage)) combatProps.push(`Max Damage: ${enhanced.max_damage}`);
+ if (!enhanced.attack_bonus && isValid(enhanced.damage_bonus)) combatProps.push(`Damage Bonus: ${enhanced.damage_bonus.toFixed(1)}`);
+
+ if (combatProps.length > 0) {
+ tooltipHTML += ``;
+ }
+
+ // Requirements section
+ const reqProps = [];
+ if (isValid(enhanced.wield_level)) reqProps.push(`Level Required: ${enhanced.wield_level}`);
+ if (isValid(enhanced.skill_level)) reqProps.push(`Skill Level: ${enhanced.skill_level}`);
+ if (enhanced.equip_skill_name) reqProps.push(`Skill: ${enhanced.equip_skill_name}`);
+ if (isValid(enhanced.lore_requirement)) reqProps.push(`Lore: ${enhanced.lore_requirement}`);
+
+ if (reqProps.length > 0) {
+ tooltipHTML += ``;
+ }
+
+ // Enhancement section
+ const enhanceProps = [];
+ if (enhanced.material_name) enhanceProps.push(`Material: ${enhanced.material_name}`);
+ if (enhanced.imbue) enhanceProps.push(`Imbue: ${enhanced.imbue}`);
+ if (enhanced.item_set) enhanceProps.push(`Set: ${enhanced.item_set}`);
+ if (isValid(enhanced.tinks)) enhanceProps.push(`Tinks: ${enhanced.tinks}`);
+ // Use workmanship_text if available, otherwise numeric value
+ if (enhanced.workmanship_text) {
+ enhanceProps.push(`Workmanship: ${enhanced.workmanship_text}`);
+ } else if (isValid(enhanced.workmanship)) {
+ enhanceProps.push(`Workmanship: ${enhanced.workmanship.toFixed(1)}`);
+ }
+
+ if (enhanceProps.length > 0) {
+ tooltipHTML += ``;
+ }
+
+ // Ratings section
+ const ratingProps = [];
+ if (isValid(enhanced.damage_rating)) ratingProps.push(`Damage Rating: ${enhanced.damage_rating}`);
+ if (isValid(enhanced.crit_rating)) ratingProps.push(`Crit Rating: ${enhanced.crit_rating}`);
+ if (isValid(enhanced.heal_boost_rating)) ratingProps.push(`Heal Boost: ${enhanced.heal_boost_rating}`);
+
+ if (ratingProps.length > 0) {
+ tooltipHTML += ``;
+ }
+
+ // Spells section (condensed list)
+ if (enhanced.spells && enhanced.spells.spells && enhanced.spells.spells.length > 0) {
+ const spellNames = enhanced.spells.spells.map(spell => spell.name).join(', ');
+ tooltipHTML += ``;
+ }
+
+ // Mana and Spellcraft section
+ if (enhanced.mana_display || enhanced.spellcraft) {
+ tooltipHTML += ``;
+ }
+
+ // Detailed Spell Descriptions section
+ if (enhanced.spells && enhanced.spells.spells && enhanced.spells.spells.length > 0) {
+ tooltipHTML += ``;
+ }
+
+ // Object class info
+ if (enhanced.object_class_name) {
+ tooltipHTML += ``;
+ }
+
+ } // End of enhanced data check
+
+ } catch (e) {
+ console.warn('Failed to parse enhanced tooltip data', e);
+ }
+ }
+
+ inventoryTooltip.innerHTML = tooltipHTML;
+
+ // Position tooltip near cursor
+ const x = e.clientX + 10;
+ const y = e.clientY + 10;
+ inventoryTooltip.style.left = `${x}px`;
+ inventoryTooltip.style.top = `${y}px`;
+ inventoryTooltip.style.display = 'block';
+}
+
+function hideInventoryTooltip() {
+ if (inventoryTooltip) {
+ inventoryTooltip.style.display = 'none';
+ }
+}
+
const applyTransform = () =>
group.style.transform = `translate(${offX}px,${offY}px) scale(${scale})`;
diff --git a/static/style.css b/static/style.css
index 4102e318..1f3fc519 100644
--- a/static/style.css
+++ b/static/style.css
@@ -490,3 +490,232 @@ body.noselect, body.noselect * {
color: #888;
font-style: italic;
}
+
+/* Inventory window specific styles */
+.inventory-window {
+ position: fixed;
+ top: 100px;
+ left: 400px;
+ width: 600px;
+ height: 500px;
+ background: var(--card);
+ border: 1px solid #555;
+ border-radius: 8px;
+ display: flex;
+ flex-direction: column;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
+ z-index: 1000;
+}
+
+.inventory-loading {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 100%;
+ font-size: 1.1rem;
+ color: #888;
+}
+
+/* Inventory grid layout - matches AC original */
+.inventory-grid {
+ display: grid;
+ grid-template-columns: repeat(8, 36px);
+ gap: 0px;
+ padding: 8px;
+ background:
+ linear-gradient(90deg, #333 1px, transparent 1px),
+ linear-gradient(180deg, #333 1px, transparent 1px),
+ #111;
+ background-size: 36px 36px;
+ max-height: 450px;
+ overflow-y: auto;
+ border: 1px solid #444;
+}
+
+/* Individual inventory slots - no borders like AC original */
+.inventory-slot {
+ width: 36px;
+ height: 36px;
+ background: transparent;
+ border: none;
+ border-radius: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ transition: background 0.1s ease;
+ padding: 0;
+ margin: 0;
+}
+
+.inventory-slot:hover {
+ background: rgba(136, 136, 255, 0.3);
+}
+
+.inventory-icon {
+ width: 36px;
+ height: 36px;
+ object-fit: contain;
+ image-rendering: pixelated;
+ /* Improve icon appearance - make background match slot */
+ border: none;
+ outline: none;
+ background: #1a1a1a;
+ border-radius: 2px;
+}
+
+/* Icon compositing for overlays/underlays - matches AC original */
+.item-icon-composite {
+ position: relative;
+ width: 36px;
+ height: 36px;
+ display: block;
+ background: transparent;
+ padding: 0;
+ margin: 0;
+}
+
+.icon-underlay,
+.icon-base,
+.icon-overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 36px;
+ height: 36px;
+ border: none;
+ outline: none;
+ background: transparent;
+ padding: 0;
+ margin: 0;
+}
+
+.icon-underlay {
+ z-index: 1;
+}
+
+.icon-base {
+ z-index: 2;
+}
+
+.icon-overlay {
+ z-index: 3;
+}
+
+/* Item count */
+.inventory-count {
+ text-align: center;
+ padding: 10px;
+ color: #888;
+ font-size: 0.9rem;
+}
+
+/* Inventory tooltip */
+.inventory-tooltip {
+ position: fixed;
+ background: rgba(0, 0, 0, 0.95);
+ border: 1px solid #555;
+ border-radius: 4px;
+ padding: 10px;
+ pointer-events: none;
+ z-index: 20000;
+ display: none;
+ min-width: 200px;
+ max-width: 350px;
+ font-size: 0.9rem;
+}
+
+.tooltip-name {
+ font-weight: bold;
+ color: var(--accent);
+ margin-bottom: 8px;
+ font-size: 1rem;
+}
+
+.tooltip-section {
+ margin-bottom: 6px;
+}
+
+.tooltip-section-title {
+ font-weight: bold;
+ color: #ffd700;
+ margin-bottom: 3px;
+ font-size: 0.85rem;
+ text-transform: uppercase;
+}
+
+.tooltip-stats {
+ display: flex;
+ flex-direction: column;
+ gap: 3px;
+ font-size: 0.9rem;
+}
+
+.tooltip-stat,
+.tooltip-requirement,
+.tooltip-property {
+ color: #ddd;
+ font-size: 0.85rem;
+ margin-left: 8px;
+}
+
+.tooltip-requirement {
+ color: #ffaa00;
+}
+
+.tooltip-property {
+ color: #88ff88;
+}
+
+.tooltip-string {
+ color: #add8e6;
+ font-size: 0.8rem;
+ margin-left: 8px;
+}
+
+.tooltip-spell {
+ color: #dda0dd;
+ font-size: 0.8rem;
+ margin-left: 8px;
+ margin-bottom: 2px;
+}
+
+.spell-name {
+ color: #4a90e2;
+ font-weight: 500;
+}
+
+.spell-school {
+ font-size: 11px;
+ color: #888;
+ font-style: italic;
+}
+
+.tooltip-info {
+ color: #f0e68c;
+ font-size: 0.8rem;
+ margin-left: 8px;
+}
+
+.tooltip-description {
+ color: #ccc;
+ font-style: italic;
+ margin-top: 8px;
+ padding-top: 8px;
+ border-top: 1px solid #444;
+}
+
+.tooltip-value {
+ color: #4CAF50;
+}
+
+.tooltip-burden {
+ color: #FFC107;
+}
+
+.tooltip-source {
+ font-size: 10px;
+ color: #888;
+ margin-top: 4px;
+ text-align: center;
+}