├── .gitignore ├── Gruntfile.js ├── LICENSE ├── PID └── .getkeep ├── README.md ├── __init__.py ├── conf └── default.conf ├── controllers ├── __init__.py ├── achv.py ├── admin.py ├── ajax.py ├── api.py ├── basic.py ├── creation_center.py ├── events.py ├── guild.py ├── items.py ├── locations.py ├── misc.py ├── player.py ├── shop.py ├── spells.py └── statistics.py ├── dbinit └── tweeriadb.tar.gz ├── import_base ├── .getkeep ├── Actions.csv ├── Events.csv ├── _raw_messages.csv ├── achvs.csv ├── artworks.csv ├── dungeons.csv ├── items.csv ├── messages.csv ├── monsters.csv ├── pvp_rewards.csv ├── quests.csv ├── settings_classes_names.csv ├── settings_classes_stats.csv ├── shop_items.csv ├── spells.csv ├── spells_actions.csv └── stats.csv ├── loader.sh ├── logs └── .getkeep ├── models ├── __init__.py ├── model_achv_stats.py ├── model_basic.py ├── model_events.py ├── model_guilds.py ├── model_items.py ├── model_misc.py ├── model_player.py └── model_spells.py ├── package.json ├── requirements.txt ├── service_catcher.py ├── system ├── __init__.py ├── db.py ├── image_creation.py ├── logger.py ├── memcache_controller.py ├── parser_modules │ ├── censore_filter.py │ ├── fight.py │ ├── ignore_game_tweets.py │ ├── ignore_services.py │ ├── player_styles.py │ └── spell_casting.py ├── post_notifications.py ├── settings.py └── tweet_parser.py ├── templates ├── _500_ │ └── 502.html ├── _debug_menu.jinja2 ├── _footer.jinja2 ├── _header.jinja2 ├── admin │ ├── admin_index.jinja2 │ ├── admin_popups.jinja2 │ ├── approve_artworks.jinja2 │ ├── approve_items.jinja2 │ ├── approve_rules.jinja2 │ ├── approve_spells.jinja2 │ ├── approvements.jinja2 │ ├── artists.jinja2 │ ├── artworks_delete.jinja2 │ ├── ban_player.jinja2 │ ├── deleted.jinja2 │ ├── featured_artwork.jinja2 │ ├── get_timeline.jinja2 │ ├── item_admin_page.jinja2 │ ├── messages │ │ ├── _messages_help.jinja2 │ │ ├── message_edit.jinja2 │ │ ├── message_new.jinja2 │ │ ├── messages.jinja2 │ │ └── messages_list.jinja2 │ ├── people.jinja2 │ ├── rejected_artworks.jinja2 │ ├── rejected_items.jinja2 │ ├── rejected_spells.jinja2 │ ├── reported_artworks.jinja2 │ ├── reported_items.jinja2 │ ├── reported_spells.jinja2 │ ├── set_level.jinja2 │ ├── tags │ │ └── tags.jinja2 │ ├── take_achv.jinja2 │ ├── tips.jinja2 │ ├── user_invites.jinja2 │ └── user_moderators.jinja2 ├── ajax │ ├── preview_image.jinja2 │ └── test_img.jinja2 ├── data │ ├── achvs │ │ ├── 1000items.jpg │ │ ├── 100items.jpg │ │ ├── alone1.jpg │ │ ├── alone2.jpg │ │ ├── alone3.jpg │ │ ├── bard.jpg │ │ ├── beta.jpg │ │ ├── dungeons │ │ │ ├── elemental.jpg │ │ │ ├── eye.jpg │ │ │ ├── field.jpg │ │ │ ├── frozen.jpg │ │ │ ├── general.jpg │ │ │ ├── god.jpg │ │ │ ├── grim.jpg │ │ │ ├── karpe.jpg │ │ │ ├── lich.jpg │ │ │ ├── lion_king.jpg │ │ │ ├── loogaroo.jpg │ │ │ ├── lord.jpg │ │ │ ├── mirrors.jpg │ │ │ ├── naga.jpg │ │ │ ├── spider.jpg │ │ │ ├── summoner.jpg │ │ │ ├── survivor.jpg │ │ │ ├── takian.jpg │ │ │ └── warmaster.jpg │ │ ├── guild.jpg │ │ ├── help.jpg │ │ ├── kill1.jpg │ │ ├── kill2.jpg │ │ ├── kill3.jpg │ │ ├── kill4.jpg │ │ ├── kill5.jpg │ │ ├── level10.jpg │ │ ├── level20.jpg │ │ ├── level30.jpg │ │ ├── level40.jpg │ │ ├── level50.jpg │ │ ├── level60.jpg │ │ ├── magic1.jpg │ │ ├── magic2.jpg │ │ ├── magic3.jpg │ │ ├── magic4.jpg │ │ ├── magic5.jpg │ │ ├── monster1.jpg │ │ ├── monster2.jpg │ │ ├── monster3.jpg │ │ ├── monster4.jpg │ │ ├── monster5.jpg │ │ ├── party1.jpg │ │ ├── party2.jpg │ │ ├── party3.jpg │ │ ├── party4.jpg │ │ ├── party5.jpg │ │ ├── peasant1.jpg │ │ ├── peasant2.jpg │ │ ├── peasant3.jpg │ │ ├── peasant4.jpg │ │ ├── peasant5.jpg │ │ ├── people.jpg │ │ ├── raid1.jpg │ │ ├── raid2.jpg │ │ ├── raid3.jpg │ │ ├── raid4.jpg │ │ ├── raid5.jpg │ │ ├── raids │ │ │ ├── app.jpg │ │ │ ├── caller.jpg │ │ │ ├── dragon.jpg │ │ │ ├── hunter.jpg │ │ │ ├── jack.jpg │ │ │ ├── mage.jpg │ │ │ ├── master.jpg │ │ │ ├── salamander.jpg │ │ │ ├── serpent.jpg │ │ │ ├── son.jpg │ │ │ ├── tomb.jpg │ │ │ ├── tribe.jpg │ │ │ └── worm.jpg │ │ ├── run1.jpg │ │ ├── run2.jpg │ │ ├── run3.jpg │ │ ├── run4.jpg │ │ ├── run5.jpg │ │ ├── skull1.jpg │ │ ├── skull2.jpg │ │ ├── skull3.jpg │ │ ├── skull4.jpg │ │ └── skull5.jpg │ ├── artwork_delete.jpg │ ├── artwork_empty.jpg │ ├── buffer │ │ └── .gitignore │ ├── characters │ │ ├── Elf_Mage_f1_017.jpg │ │ ├── Elf_Warrior_f1_010.jpg │ │ ├── Elf_Warrior_f1_012.jpg │ │ ├── Human_Hunter_f1_001.jpg │ │ ├── Human_Hunter_f2_004.jpg │ │ ├── Human_Hunter_f3_008.jpg │ │ ├── Human_Hunter_f4_015.jpg │ │ ├── Human_Hunter_m1_005.jpg │ │ ├── Human_Mage_f1_016.jpg │ │ ├── Human_Mage_m1_003.jpg │ │ ├── Human_Warrior_f1_013.jpg │ │ ├── Human_Warrior_f2_014.jpg │ │ ├── Human_Warrior_m1_006.jpg │ │ ├── Human_Warrior_m2_002.jpg │ │ ├── Orc_Hunter_m1_021.jpg │ │ ├── Orc_Warrior_f1_022.jpg │ │ ├── Orc_Warrior_f2_023.jpg │ │ ├── Orc_Warrior_m1_007.jpg │ │ ├── Orc_Warrior_m2_009.jpg │ │ ├── Troll_Warrior_m1_018.jpg │ │ ├── Troll_Warrior_m2_019.jpg │ │ ├── Troll_Warrior_m3_024.jpg │ │ ├── Undead_Mage_f1_020.jpg │ │ ├── Undead_Mage_m1_011.jpg │ │ ├── Undead_Mage_m2_025.jpg │ │ └── old │ │ │ ├── Human_Hunter_f1.jpg │ │ │ ├── Human_Hunter_f2.jpg │ │ │ ├── Human_Hunter_m1.jpg │ │ │ ├── Human_Mage_m1.jpg │ │ │ ├── Human_Warrior_m1.jpg │ │ │ ├── Human_Warrior_m2.jpg │ │ │ └── Orc_Warrior_m1.jpg │ ├── effects │ │ ├── air.jpg │ │ ├── arcane.jpg │ │ ├── fire.jpg │ │ ├── frost.jpg │ │ ├── inc_def.jpg │ │ ├── inc_dex.jpg │ │ ├── inc_dmg.jpg │ │ ├── inc_int.jpg │ │ ├── inc_str.jpg │ │ ├── red_def.jpg │ │ ├── red_dex.jpg │ │ ├── red_dmg.jpg │ │ ├── red_int.jpg │ │ └── red_str.jpg │ ├── fonts │ │ ├── sans.ttf │ │ ├── sans_bold.ttf │ │ ├── serif.ttf │ │ └── serif_bold.ttf │ ├── guild_default.jpg │ ├── items │ │ ├── _example.png │ │ ├── _example_fit.png │ │ ├── amulets │ │ │ ├── amulet10.jpg │ │ │ ├── amulet11.jpg │ │ │ ├── amulet12.jpg │ │ │ ├── amulet13.jpg │ │ │ ├── amulet14.jpg │ │ │ ├── amulet15.jpg │ │ │ ├── amulet16.jpg │ │ │ ├── amulet17.jpg │ │ │ ├── amulet18.jpg │ │ │ ├── amulet19.jpg │ │ │ ├── amulet20.jpg │ │ │ ├── amulet21.jpg │ │ │ ├── amulet22.jpg │ │ │ ├── amulet23.jpg │ │ │ ├── amulet24.jpg │ │ │ ├── amulet25.jpg │ │ │ ├── amulet26.jpg │ │ │ ├── amulet27.jpg │ │ │ ├── amulet28.jpg │ │ │ ├── amulet29.jpg │ │ │ ├── amulet30.jpg │ │ │ ├── amulet31.jpg │ │ │ ├── amulet32.jpg │ │ │ ├── amulet33.jpg │ │ │ ├── amulet34.jpg │ │ │ ├── amulet35.jpg │ │ │ ├── amulet36.jpg │ │ │ ├── amulet37.jpg │ │ │ ├── amulet38.jpg │ │ │ ├── amulet39.jpg │ │ │ ├── amulet40.jpg │ │ │ ├── amulet41.jpg │ │ │ ├── amulet42.jpg │ │ │ ├── amulet43.jpg │ │ │ ├── amulet44.jpg │ │ │ ├── amulet45.jpg │ │ │ ├── amulet46.jpg │ │ │ ├── amulet47.jpg │ │ │ ├── amulet48.jpg │ │ │ ├── amulet49.jpg │ │ │ ├── amulet50.jpg │ │ │ ├── amulet51.jpg │ │ │ ├── amulet52.jpg │ │ │ ├── amulet53.jpg │ │ │ └── amulet54.jpg │ │ ├── axe │ │ │ ├── axe10.jpg │ │ │ ├── axe11.jpg │ │ │ ├── axe12.jpg │ │ │ ├── axe13.jpg │ │ │ ├── axe14.jpg │ │ │ ├── axe15.jpg │ │ │ ├── axe16.jpg │ │ │ ├── axe17.jpg │ │ │ ├── axe18.jpg │ │ │ ├── axe19.jpg │ │ │ ├── axe20.jpg │ │ │ ├── axe21.jpg │ │ │ ├── axe22.jpg │ │ │ ├── axe23.jpg │ │ │ ├── axe24.jpg │ │ │ ├── axe25.jpg │ │ │ ├── axe26.jpg │ │ │ ├── axe29.jpg │ │ │ ├── axe30.jpg │ │ │ ├── axe31.jpg │ │ │ ├── axe33.jpg │ │ │ ├── axe34.jpg │ │ │ ├── axe35.jpg │ │ │ ├── axe36.jpg │ │ │ ├── axe40.jpg │ │ │ ├── axe44.jpg │ │ │ ├── axe45.jpg │ │ │ ├── axe46.jpg │ │ │ ├── axe49.jpg │ │ │ ├── axe50.jpg │ │ │ ├── axe51.jpg │ │ │ ├── axe52.jpg │ │ │ ├── axe53.jpg │ │ │ ├── axe54.jpg │ │ │ ├── axe55.jpg │ │ │ ├── axe56.jpg │ │ │ ├── axe57.jpg │ │ │ └── axe59.jpg │ │ ├── boots │ │ │ ├── boots10.jpg │ │ │ ├── boots11.jpg │ │ │ ├── boots12.jpg │ │ │ ├── boots13.jpg │ │ │ ├── boots14.jpg │ │ │ ├── boots15.jpg │ │ │ ├── boots16.jpg │ │ │ ├── boots17.jpg │ │ │ ├── boots18.jpg │ │ │ ├── boots19.jpg │ │ │ ├── boots20.jpg │ │ │ ├── boots21.jpg │ │ │ ├── boots22.jpg │ │ │ ├── boots23.jpg │ │ │ ├── boots24.jpg │ │ │ ├── boots25.jpg │ │ │ ├── boots26.jpg │ │ │ ├── boots27.jpg │ │ │ ├── boots28.jpg │ │ │ ├── boots29.jpg │ │ │ ├── boots30.jpg │ │ │ ├── boots31.jpg │ │ │ ├── boots32.jpg │ │ │ ├── boots33.jpg │ │ │ ├── boots34.jpg │ │ │ ├── boots35.jpg │ │ │ ├── boots_mail01.jpg │ │ │ ├── boots_mail02.jpg │ │ │ ├── boots_mail03.jpg │ │ │ ├── boots_mail04.jpg │ │ │ ├── boots_mail05.jpg │ │ │ ├── boots_mail06.jpg │ │ │ ├── boots_mail07.jpg │ │ │ ├── boots_mail08.jpg │ │ │ ├── boots_mail09.jpg │ │ │ ├── boots_mail10.jpg │ │ │ ├── boots_mail11.jpg │ │ │ ├── boots_mail12.jpg │ │ │ ├── boots_mail13.jpg │ │ │ ├── boots_mail14.jpg │ │ │ ├── boots_mail15.jpg │ │ │ ├── boots_mail16.jpg │ │ │ ├── boots_mail17.jpg │ │ │ ├── boots_mail20.jpg │ │ │ ├── boots_mail21.jpg │ │ │ ├── boots_mail22.jpg │ │ │ ├── boots_mail23.jpg │ │ │ ├── boots_mail24.jpg │ │ │ ├── boots_mail25.jpg │ │ │ ├── boots_mail26.jpg │ │ │ ├── boots_mail27.jpg │ │ │ ├── boots_mail28.jpg │ │ │ ├── boots_mail29.jpg │ │ │ └── boots_mail30.jpg │ │ ├── bow │ │ │ ├── bow10.jpg │ │ │ ├── bow11.jpg │ │ │ ├── bow12.jpg │ │ │ ├── bow13.jpg │ │ │ ├── bow14.jpg │ │ │ ├── bow15.jpg │ │ │ ├── bow16.jpg │ │ │ ├── bow17.jpg │ │ │ ├── bow18.jpg │ │ │ ├── bow19.jpg │ │ │ ├── bow20.jpg │ │ │ ├── bow28.jpg │ │ │ ├── bow30.jpg │ │ │ ├── bow31.jpg │ │ │ ├── bow32.jpg │ │ │ ├── bow33.jpg │ │ │ ├── bow34.jpg │ │ │ ├── bow35.jpg │ │ │ ├── bow36.jpg │ │ │ ├── bow37.jpg │ │ │ ├── bow38.jpg │ │ │ ├── bow39.jpg │ │ │ ├── bow40.jpg │ │ │ ├── bow41.jpg │ │ │ ├── bow42.jpg │ │ │ ├── bow43.jpg │ │ │ ├── bow44.jpg │ │ │ ├── bow45.jpg │ │ │ ├── bow46.jpg │ │ │ ├── bow47.jpg │ │ │ ├── bow48.jpg │ │ │ ├── bow49.jpg │ │ │ ├── bow50.jpg │ │ │ ├── bow51.jpg │ │ │ ├── bow52.jpg │ │ │ ├── bow54.jpg │ │ │ ├── bow55.jpg │ │ │ ├── bow56.jpg │ │ │ ├── bow57.jpg │ │ │ ├── crossbow10.jpg │ │ │ ├── crossbow11.jpg │ │ │ ├── crossbow12.jpg │ │ │ ├── crossbow13.jpg │ │ │ ├── crossbow17.jpg │ │ │ ├── crossbow20.jpg │ │ │ └── crossbow29.jpg │ │ ├── chest │ │ │ ├── chest_cloth10.jpg │ │ │ ├── chest_cloth11.jpg │ │ │ ├── chest_cloth12.jpg │ │ │ ├── chest_cloth13.jpg │ │ │ ├── chest_cloth14.jpg │ │ │ ├── chest_cloth15.jpg │ │ │ ├── chest_cloth16.jpg │ │ │ ├── chest_cloth17.jpg │ │ │ ├── chest_cloth18.jpg │ │ │ ├── chest_cloth19.jpg │ │ │ ├── chest_cloth20.jpg │ │ │ ├── chest_cloth21.jpg │ │ │ ├── chest_cloth22.jpg │ │ │ ├── chest_cloth23.jpg │ │ │ ├── chest_cloth24.jpg │ │ │ ├── chest_cloth25.jpg │ │ │ ├── chest_cloth26.jpg │ │ │ ├── chest_cloth27.jpg │ │ │ ├── chest_cloth28.jpg │ │ │ ├── chest_cloth29.jpg │ │ │ ├── chest_cloth30.jpg │ │ │ ├── chest_cloth31.jpg │ │ │ ├── chest_cloth32.jpg │ │ │ ├── chest_cloth33.jpg │ │ │ ├── chest_cloth34.jpg │ │ │ ├── chest_cloth35.jpg │ │ │ ├── chest_cloth36.jpg │ │ │ ├── chest_mail03.jpg │ │ │ ├── chest_mail04.jpg │ │ │ ├── chest_mail05.jpg │ │ │ ├── chest_mail06.jpg │ │ │ ├── chest_mail07.jpg │ │ │ ├── chest_mail08.jpg │ │ │ ├── chest_mail09.jpg │ │ │ ├── chest_mail10.jpg │ │ │ ├── chest_mail11.jpg │ │ │ ├── chest_mail12.jpg │ │ │ ├── chest_mail13.jpg │ │ │ ├── chest_mail15.jpg │ │ │ ├── chest_mail16.jpg │ │ │ ├── chest_mail17.jpg │ │ │ ├── chest_mail18.jpg │ │ │ ├── chest_mail19.jpg │ │ │ ├── chest_mail20.jpg │ │ │ ├── chest_mail21.jpg │ │ │ ├── chest_mail22.jpg │ │ │ ├── chest_mail90.jpg │ │ │ ├── chest_mail91.jpg │ │ │ ├── chest_mail92.jpg │ │ │ ├── chest_mail93.jpg │ │ │ ├── chest_mail94.jpg │ │ │ ├── chest_mail95.jpg │ │ │ ├── chest_mail96.jpg │ │ │ ├── chest_mail97.jpg │ │ │ └── chest_mail98.jpg │ │ ├── hand │ │ │ ├── hand10.jpg │ │ │ ├── hand11.jpg │ │ │ ├── hand12.jpg │ │ │ ├── hand13.jpg │ │ │ ├── hand14.jpg │ │ │ ├── hand15.jpg │ │ │ ├── hand16.jpg │ │ │ ├── hand17.jpg │ │ │ ├── hand18.jpg │ │ │ ├── hand19.jpg │ │ │ ├── hand20.jpg │ │ │ ├── hand21.jpg │ │ │ ├── hand22.jpg │ │ │ ├── hand23.jpg │ │ │ ├── hand24.jpg │ │ │ ├── hand25.jpg │ │ │ ├── hand26.jpg │ │ │ ├── hand27.jpg │ │ │ ├── hand28.jpg │ │ │ ├── hand29.jpg │ │ │ ├── hand30.jpg │ │ │ ├── hand31.jpg │ │ │ ├── hand32.jpg │ │ │ ├── hand40.jpg │ │ │ ├── hand41.jpg │ │ │ ├── hand44.jpg │ │ │ ├── hand47.jpg │ │ │ ├── hand48.jpg │ │ │ ├── hand49.jpg │ │ │ ├── hand50.jpg │ │ │ ├── hand51.jpg │ │ │ ├── hand52.jpg │ │ │ ├── hand53.jpg │ │ │ ├── hand54.jpg │ │ │ ├── hand55.jpg │ │ │ ├── hand56.jpg │ │ │ ├── hand57.jpg │ │ │ ├── hand58.jpg │ │ │ ├── hand59.jpg │ │ │ ├── hand60.jpg │ │ │ ├── hand70.jpg │ │ │ ├── hand71.jpg │ │ │ ├── hand72.jpg │ │ │ ├── hand73.jpg │ │ │ ├── hand74.jpg │ │ │ ├── hand75.jpg │ │ │ ├── hand76.jpg │ │ │ ├── hand79.jpg │ │ │ ├── hand84.jpg │ │ │ ├── hand85.jpg │ │ │ ├── hand86.jpg │ │ │ ├── hand87.jpg │ │ │ ├── hand88.jpg │ │ │ ├── hand89.jpg │ │ │ └── hand90.jpg │ │ ├── head │ │ │ ├── head10.jpg │ │ │ ├── head11.jpg │ │ │ ├── head12.jpg │ │ │ ├── head13.jpg │ │ │ ├── head14.jpg │ │ │ ├── head15.jpg │ │ │ ├── head16.jpg │ │ │ ├── head17.jpg │ │ │ ├── head18.jpg │ │ │ ├── head19.jpg │ │ │ ├── head20.jpg │ │ │ ├── head21.jpg │ │ │ ├── head22.jpg │ │ │ ├── head23.jpg │ │ │ ├── head24.jpg │ │ │ ├── head25.jpg │ │ │ ├── head26.jpg │ │ │ ├── head27.jpg │ │ │ ├── head28.jpg │ │ │ ├── head29.jpg │ │ │ ├── head30.jpg │ │ │ ├── head31.jpg │ │ │ ├── head32.jpg │ │ │ ├── head33.jpg │ │ │ ├── head34.jpg │ │ │ ├── head35.jpg │ │ │ ├── head36.jpg │ │ │ ├── head37.jpg │ │ │ ├── head38.jpg │ │ │ ├── head39.jpg │ │ │ ├── head40.jpg │ │ │ ├── head41.jpg │ │ │ ├── head42.jpg │ │ │ ├── head43.jpg │ │ │ ├── head44.jpg │ │ │ ├── head45.jpg │ │ │ ├── head46.jpg │ │ │ ├── head47.jpg │ │ │ ├── head48.jpg │ │ │ ├── head49.jpg │ │ │ ├── head50.jpg │ │ │ ├── head51.jpg │ │ │ ├── head52.jpg │ │ │ ├── head53.jpg │ │ │ ├── head54.jpg │ │ │ ├── head55.jpg │ │ │ ├── head56.jpg │ │ │ ├── head57.jpg │ │ │ ├── head58.jpg │ │ │ ├── head59.jpg │ │ │ ├── head60.jpg │ │ │ ├── head61.jpg │ │ │ ├── head62.jpg │ │ │ ├── head63.jpg │ │ │ └── head64.jpg │ │ ├── legs │ │ │ ├── legs_cloth10.jpg │ │ │ ├── legs_cloth11.jpg │ │ │ ├── legs_cloth12.jpg │ │ │ ├── legs_cloth13.jpg │ │ │ ├── legs_cloth14.jpg │ │ │ ├── legs_cloth15.jpg │ │ │ ├── legs_cloth16.jpg │ │ │ ├── legs_cloth17.jpg │ │ │ ├── legs_cloth18.jpg │ │ │ ├── legs_cloth19.jpg │ │ │ ├── legs_cloth20.jpg │ │ │ ├── legs_cloth21.jpg │ │ │ ├── legs_cloth22.jpg │ │ │ ├── legs_cloth23.jpg │ │ │ ├── legs_cloth24.jpg │ │ │ ├── legs_cloth25.jpg │ │ │ ├── legs_cloth26.jpg │ │ │ ├── legs_cloth27.jpg │ │ │ ├── legs_cloth28.jpg │ │ │ ├── legs_cloth29.jpg │ │ │ ├── legs_cloth34.jpg │ │ │ ├── legs_cloth35.jpg │ │ │ ├── legs_cloth36.jpg │ │ │ ├── legs_cloth37.jpg │ │ │ ├── legs_cloth38.jpg │ │ │ ├── legs_cloth39.jpg │ │ │ ├── legs_cloth40.jpg │ │ │ ├── legs_mail10.jpg │ │ │ ├── legs_mail11.jpg │ │ │ ├── legs_mail12.jpg │ │ │ ├── legs_mail13.jpg │ │ │ ├── legs_mail14.jpg │ │ │ ├── legs_mail15.jpg │ │ │ ├── legs_mail16.jpg │ │ │ ├── legs_mail17.jpg │ │ │ ├── legs_mail18.jpg │ │ │ ├── legs_mail19.jpg │ │ │ ├── legs_mail20.jpg │ │ │ ├── legs_mail21.jpg │ │ │ ├── legs_mail24.jpg │ │ │ ├── legs_mail25.jpg │ │ │ ├── legs_mail26.jpg │ │ │ ├── legs_mail27.jpg │ │ │ ├── legs_mail28.jpg │ │ │ ├── legs_mail30.jpg │ │ │ ├── legs_mail31.jpg │ │ │ ├── legs_mail32.jpg │ │ │ ├── legs_mail35.jpg │ │ │ ├── legs_mail36.jpg │ │ │ ├── legs_mail37.jpg │ │ │ ├── legs_mail38.jpg │ │ │ ├── legs_mail39.jpg │ │ │ ├── legs_mail40.jpg │ │ │ ├── legs_mail41.jpg │ │ │ └── legs_mail42.jpg │ │ ├── non_combat │ │ │ ├── bear.jpg │ │ │ ├── beetle.jpg │ │ │ ├── bird.jpg │ │ │ ├── bone.jpg │ │ │ ├── castle.jpg │ │ │ ├── cat.jpg │ │ │ ├── cookie.jpg │ │ │ ├── developer.jpg │ │ │ ├── dog.jpg │ │ │ ├── dragon.jpg │ │ │ ├── elephant.jpg │ │ │ ├── farm.jpg │ │ │ ├── frog.jpg │ │ │ ├── griffon.jpg │ │ │ ├── headcrab.jpg │ │ │ ├── horse.jpg │ │ │ ├── house.jpg │ │ │ ├── hut.jpg │ │ │ ├── kobold.jpg │ │ │ ├── library.jpg │ │ │ ├── lizard.jpg │ │ │ ├── mansion.jpg │ │ │ ├── mine.jpg │ │ │ ├── murloc.jpg │ │ │ ├── panther.jpg │ │ │ ├── pony.jpg │ │ │ ├── rat.jpg │ │ │ ├── ruins.jpg │ │ │ ├── scorpion.jpg │ │ │ ├── serpent.jpg │ │ │ ├── shark.jpg │ │ │ ├── snail.jpg │ │ │ ├── sparrow.jpg │ │ │ ├── stronghold.jpg │ │ │ ├── tent.jpg │ │ │ ├── tiger.jpg │ │ │ ├── title.jpg │ │ │ ├── title2.jpg │ │ │ ├── title3.jpg │ │ │ ├── title4.jpg │ │ │ ├── title5.jpg │ │ │ ├── tower.jpg │ │ │ ├── tree.jpg │ │ │ ├── turtle.jpg │ │ │ ├── village.jpg │ │ │ ├── voodoo.jpg │ │ │ ├── whale.jpg │ │ │ ├── wolf.jpg │ │ │ ├── workshop.jpg │ │ │ └── yak.jpg │ │ ├── ring │ │ │ ├── ring10.jpg │ │ │ ├── ring11.jpg │ │ │ ├── ring12.jpg │ │ │ ├── ring13.jpg │ │ │ ├── ring14.jpg │ │ │ ├── ring15.jpg │ │ │ ├── ring16.jpg │ │ │ ├── ring17.jpg │ │ │ ├── ring18.jpg │ │ │ ├── ring19.jpg │ │ │ ├── ring20.jpg │ │ │ ├── ring21.jpg │ │ │ ├── ring22.jpg │ │ │ ├── ring23.jpg │ │ │ ├── ring24.jpg │ │ │ ├── ring25.jpg │ │ │ ├── ring26.jpg │ │ │ ├── ring27.jpg │ │ │ ├── ring28.jpg │ │ │ ├── ring29.jpg │ │ │ ├── ring30.jpg │ │ │ ├── ring31.jpg │ │ │ ├── ring32.jpg │ │ │ ├── ring33.jpg │ │ │ ├── ring34.jpg │ │ │ ├── ring35.jpg │ │ │ ├── ring36.jpg │ │ │ ├── ring37.jpg │ │ │ ├── ring38.jpg │ │ │ ├── ring39.jpg │ │ │ ├── ring40.jpg │ │ │ ├── ring41.jpg │ │ │ ├── ring42.jpg │ │ │ ├── ring43.jpg │ │ │ ├── ring44.jpg │ │ │ ├── ring45.jpg │ │ │ ├── ring46.jpg │ │ │ ├── ring47.jpg │ │ │ ├── ring54.jpg │ │ │ ├── ring55.jpg │ │ │ ├── ring56.jpg │ │ │ ├── ring57.jpg │ │ │ ├── ring58.jpg │ │ │ ├── ring59.jpg │ │ │ ├── ring60.jpg │ │ │ ├── ring61.jpg │ │ │ ├── ring62.jpg │ │ │ ├── ring63.jpg │ │ │ ├── ring64.jpg │ │ │ ├── ring65.jpg │ │ │ ├── ring66.jpg │ │ │ ├── ring67.jpg │ │ │ ├── ring68.jpg │ │ │ ├── ring69.jpg │ │ │ └── ring70.jpg │ │ ├── shoulder │ │ │ ├── shoulder10.jpg │ │ │ ├── shoulder11.jpg │ │ │ ├── shoulder12.jpg │ │ │ ├── shoulder13.jpg │ │ │ ├── shoulder14.jpg │ │ │ ├── shoulder15.jpg │ │ │ ├── shoulder16.jpg │ │ │ ├── shoulder17.jpg │ │ │ ├── shoulder18.jpg │ │ │ ├── shoulder19.jpg │ │ │ ├── shoulder20.jpg │ │ │ ├── shoulder21.jpg │ │ │ ├── shoulder22.jpg │ │ │ ├── shoulder23.jpg │ │ │ ├── shoulder24.jpg │ │ │ ├── shoulder25.jpg │ │ │ ├── shoulder26.jpg │ │ │ ├── shoulder27.jpg │ │ │ ├── shoulder28.jpg │ │ │ ├── shoulder29.jpg │ │ │ ├── shoulder30.jpg │ │ │ ├── shoulder31.jpg │ │ │ ├── shoulder32.jpg │ │ │ ├── shoulder33.jpg │ │ │ ├── shoulder34.jpg │ │ │ ├── shoulder35.jpg │ │ │ ├── shoulder36.jpg │ │ │ ├── shoulder37.jpg │ │ │ ├── shoulder40.jpg │ │ │ ├── shoulder41.jpg │ │ │ ├── shoulder44.jpg │ │ │ ├── shoulder47.jpg │ │ │ ├── shoulder48.jpg │ │ │ ├── shoulder49.jpg │ │ │ ├── shoulder50.jpg │ │ │ ├── shoulder51.jpg │ │ │ ├── shoulder52.jpg │ │ │ ├── shoulder53.jpg │ │ │ ├── shoulder54.jpg │ │ │ ├── shoulder55.jpg │ │ │ ├── shoulder56.jpg │ │ │ ├── shoulder57.jpg │ │ │ ├── shoulder58.jpg │ │ │ ├── shoulder59.jpg │ │ │ ├── shoulder60.jpg │ │ │ ├── shoulder61.jpg │ │ │ ├── shoulder62.jpg │ │ │ ├── shoulder63.jpg │ │ │ ├── shoulder64.jpg │ │ │ ├── shoulder65.jpg │ │ │ ├── shoulder66.jpg │ │ │ ├── shoulder67.jpg │ │ │ ├── shoulder68.jpg │ │ │ ├── shoulder69.jpg │ │ │ └── shoulder70.jpg │ │ ├── staff │ │ │ ├── staff10.jpg │ │ │ ├── staff11.jpg │ │ │ ├── staff12.jpg │ │ │ ├── staff13.jpg │ │ │ ├── staff14.jpg │ │ │ ├── staff15.jpg │ │ │ ├── staff16.jpg │ │ │ ├── staff17.jpg │ │ │ ├── staff18.jpg │ │ │ ├── staff19.jpg │ │ │ ├── staff20.jpg │ │ │ ├── staff21.jpg │ │ │ ├── staff22.jpg │ │ │ ├── staff23.jpg │ │ │ ├── staff24.jpg │ │ │ ├── staff25.jpg │ │ │ ├── staff26.jpg │ │ │ ├── staff27.jpg │ │ │ ├── staff28.jpg │ │ │ ├── staff29.jpg │ │ │ ├── staff30.jpg │ │ │ ├── staff31.jpg │ │ │ ├── staff32.jpg │ │ │ ├── staff33.jpg │ │ │ ├── staff34.jpg │ │ │ ├── staff35.jpg │ │ │ ├── staff36.jpg │ │ │ ├── staff37.jpg │ │ │ ├── staff38.jpg │ │ │ ├── staff39.jpg │ │ │ ├── staff40.jpg │ │ │ ├── staff41.jpg │ │ │ ├── staff42.jpg │ │ │ ├── staff43.jpg │ │ │ ├── staff45.jpg │ │ │ ├── staff46.jpg │ │ │ ├── staff47.jpg │ │ │ ├── staff48.jpg │ │ │ ├── staff49.jpg │ │ │ ├── staff50.jpg │ │ │ ├── staff51.jpg │ │ │ ├── staff52.jpg │ │ │ ├── staff53.jpg │ │ │ ├── staff54.jpg │ │ │ ├── staff55.jpg │ │ │ └── staff56.jpg │ │ ├── sword │ │ │ ├── dagger01.jpg │ │ │ ├── dagger02.jpg │ │ │ ├── dagger03.jpg │ │ │ ├── dagger04.jpg │ │ │ ├── dagger05.jpg │ │ │ ├── dagger06.jpg │ │ │ ├── sword10.jpg │ │ │ ├── sword11.jpg │ │ │ ├── sword12.jpg │ │ │ ├── sword13.jpg │ │ │ ├── sword14.jpg │ │ │ ├── sword15.jpg │ │ │ ├── sword16.jpg │ │ │ ├── sword17.jpg │ │ │ ├── sword18.jpg │ │ │ ├── sword19.jpg │ │ │ ├── sword20.jpg │ │ │ ├── sword21.jpg │ │ │ ├── sword22.jpg │ │ │ ├── sword23.jpg │ │ │ ├── sword24.jpg │ │ │ ├── sword25.jpg │ │ │ ├── sword26.jpg │ │ │ ├── sword27.jpg │ │ │ ├── sword28.jpg │ │ │ ├── sword29.jpg │ │ │ ├── sword30.jpg │ │ │ ├── sword31.jpg │ │ │ ├── sword32.jpg │ │ │ ├── sword33.jpg │ │ │ ├── sword34.jpg │ │ │ ├── sword35.jpg │ │ │ ├── sword36.jpg │ │ │ ├── sword37.jpg │ │ │ ├── sword38.jpg │ │ │ ├── sword39.jpg │ │ │ ├── sword40.jpg │ │ │ ├── sword41.jpg │ │ │ ├── sword42.jpg │ │ │ ├── sword43.jpg │ │ │ ├── sword44.jpg │ │ │ ├── sword45.jpg │ │ │ ├── sword46.jpg │ │ │ ├── sword47.jpg │ │ │ ├── sword48.jpg │ │ │ ├── sword49.jpg │ │ │ ├── sword55.jpg │ │ │ ├── sword56.jpg │ │ │ ├── sword57.jpg │ │ │ ├── sword58.jpg │ │ │ ├── sword59.jpg │ │ │ └── sword60.jpg │ │ ├── waist │ │ │ ├── waist10.jpg │ │ │ ├── waist11.jpg │ │ │ ├── waist12.jpg │ │ │ ├── waist13.jpg │ │ │ ├── waist14.jpg │ │ │ ├── waist15.jpg │ │ │ ├── waist16.jpg │ │ │ ├── waist17.jpg │ │ │ ├── waist18.jpg │ │ │ ├── waist19.jpg │ │ │ ├── waist20.jpg │ │ │ ├── waist21.jpg │ │ │ ├── waist22.jpg │ │ │ ├── waist23.jpg │ │ │ ├── waist24.jpg │ │ │ ├── waist25.jpg │ │ │ ├── waist26.jpg │ │ │ ├── waist27.jpg │ │ │ ├── waist28.jpg │ │ │ ├── waist29.jpg │ │ │ ├── waist30.jpg │ │ │ ├── waist31.jpg │ │ │ ├── waist32.jpg │ │ │ ├── waist33.jpg │ │ │ ├── waist34.jpg │ │ │ ├── waist35.jpg │ │ │ ├── waist36.jpg │ │ │ ├── waist37.jpg │ │ │ ├── waist38.jpg │ │ │ ├── waist39.jpg │ │ │ ├── waist40.jpg │ │ │ ├── waist41.jpg │ │ │ ├── waist42.jpg │ │ │ ├── waist43.jpg │ │ │ ├── waist44.jpg │ │ │ ├── waist45.jpg │ │ │ ├── waist46.jpg │ │ │ ├── waist47.jpg │ │ │ ├── waist48.jpg │ │ │ ├── waist49.jpg │ │ │ ├── waist50.jpg │ │ │ ├── waist51.jpg │ │ │ ├── waist52.jpg │ │ │ ├── waist56.jpg │ │ │ ├── waist57.jpg │ │ │ ├── waist58.jpg │ │ │ ├── waist59.jpg │ │ │ ├── waist60.jpg │ │ │ ├── waist61.jpg │ │ │ ├── waist62.jpg │ │ │ ├── waist63.jpg │ │ │ ├── waist64.jpg │ │ │ ├── waist65.jpg │ │ │ ├── waist66.jpg │ │ │ └── waist67.jpg │ │ └── wrist │ │ │ ├── wrist10.jpg │ │ │ ├── wrist11.jpg │ │ │ ├── wrist12.jpg │ │ │ ├── wrist13.jpg │ │ │ ├── wrist14.jpg │ │ │ ├── wrist15.jpg │ │ │ ├── wrist16.jpg │ │ │ ├── wrist17.jpg │ │ │ ├── wrist18.jpg │ │ │ ├── wrist19.jpg │ │ │ ├── wrist20.jpg │ │ │ ├── wrist21.jpg │ │ │ ├── wrist22.jpg │ │ │ ├── wrist23.jpg │ │ │ ├── wrist24.jpg │ │ │ ├── wrist25.jpg │ │ │ ├── wrist26.jpg │ │ │ ├── wrist27.jpg │ │ │ ├── wrist28.jpg │ │ │ ├── wrist29.jpg │ │ │ ├── wrist30.jpg │ │ │ ├── wrist31.jpg │ │ │ ├── wrist32.jpg │ │ │ ├── wrist33.jpg │ │ │ ├── wrist34.jpg │ │ │ ├── wrist37.jpg │ │ │ ├── wrist38.jpg │ │ │ ├── wrist39.jpg │ │ │ ├── wrist40.jpg │ │ │ ├── wrist41.jpg │ │ │ ├── wrist42.jpg │ │ │ ├── wrist43.jpg │ │ │ ├── wrist44.jpg │ │ │ ├── wrist45.jpg │ │ │ ├── wrist46.jpg │ │ │ ├── wrist47.jpg │ │ │ ├── wrist48.jpg │ │ │ ├── wrist49.jpg │ │ │ ├── wrist50.jpg │ │ │ ├── wrist51.jpg │ │ │ ├── wrist52.jpg │ │ │ ├── wrist53.jpg │ │ │ ├── wrist56.jpg │ │ │ ├── wrist57.jpg │ │ │ ├── wrist59.jpg │ │ │ ├── wrist60.jpg │ │ │ ├── wrist61.jpg │ │ │ ├── wrist62.jpg │ │ │ ├── wrist63.jpg │ │ │ ├── wrist64.jpg │ │ │ ├── wrist65.jpg │ │ │ ├── wrist66.jpg │ │ │ ├── wrist67.jpg │ │ │ ├── wrist68.jpg │ │ │ └── wrist69.jpg │ ├── map.json │ ├── mymap.hxm │ ├── resized_image │ │ ├── .gitignore │ │ ├── artworks │ │ │ └── .gitignore │ │ ├── guilds_avatars │ │ │ └── .gitignore │ │ ├── items │ │ │ └── .gitignore │ │ └── spells │ │ │ └── .gitignore │ ├── spells │ │ ├── air.jpg │ │ ├── arrow.jpg │ │ ├── bless.jpg │ │ ├── bless2.jpg │ │ ├── blizzard.jpg │ │ ├── corruption.jpg │ │ ├── curse.jpg │ │ ├── fireball.jpg │ │ ├── frostball.jpg │ │ ├── ido_q.jpg │ │ ├── none.jpg │ │ └── reduce_str.jpg │ └── tmp_image │ │ └── .gitignore ├── error.jinja2 ├── events │ ├── event_page.jinja2 │ ├── event_page_gvg.jinja2 │ ├── events_list.jinja2 │ ├── finished_events.jinja2 │ └── new_event.jinja2 ├── footer.jinja2 ├── guilds │ ├── add_news.jinja2 │ ├── all_guilds.jinja2 │ ├── guild_add.jinja2 │ ├── guild_detail.jinja2 │ ├── guild_settings.jinja2 │ ├── news_list.jinja2 │ └── news_page.jinja2 ├── header.jinja2 ├── index.jinja2 ├── inline_errors.jinja2 ├── invites │ └── access.jinja2 ├── js │ ├── libs │ │ ├── jquery-1.8.js │ │ ├── jquery-ui-1.8.23.custom.min.js │ │ └── modernizr-2.5.3.min.js │ ├── page_scripts_source │ │ ├── admin_approve.js │ │ ├── admin_message_edit.js │ │ ├── admin_messages.js │ │ ├── approvements.js │ │ ├── artists.js │ │ ├── create_artwork.js │ │ ├── create_item.js │ │ ├── create_spell.js │ │ ├── creation_center.js │ │ ├── crop_img.js │ │ ├── faction_page.js │ │ ├── guild-add.js │ │ ├── guild_detail.js │ │ ├── help.js │ │ ├── inviter.js │ │ ├── item-rating.js │ │ ├── items_drag.js │ │ ├── landing_page.js │ │ ├── last_events.js │ │ ├── like.js │ │ ├── main.js │ │ ├── player.js │ │ ├── player_map.js │ │ ├── players_top.js │ │ ├── registration.js │ │ ├── rejected.js │ │ ├── settings_page.js │ │ ├── share.js │ │ ├── shop.js │ │ ├── spellbook.js │ │ ├── sprite-map.js │ │ ├── upcoming_events.js │ │ ├── validate.js │ │ └── world.js │ ├── plugins.jinja2 │ ├── plugins │ │ ├── cluetip.js │ │ ├── dragscrollable.js │ │ ├── fancybox.js │ │ ├── form.js │ │ ├── jcrop.js │ │ ├── jquery.kinetic.js │ │ ├── jquery.tmpl.js │ │ ├── mousewheel.js │ │ ├── scrollsync.js │ │ ├── timepicker.js │ │ ├── ui.touch-punch.js │ │ ├── uniform.js │ │ ├── user.js │ │ └── validation.js │ ├── script.js │ └── tmp.js ├── locations │ └── world.jinja2 ├── misc │ ├── _admin_reject.jinja2 │ ├── _artwork_data_attr.jinja2 │ ├── _cluetip_item_slot.jinja2 │ ├── _debuff_cluetip.jinja2 │ ├── _feedback.jinja2 │ ├── _gplus_header_meta.jinja2 │ ├── _help_overflow.jinja2 │ ├── _item_cluetip.jinja2 │ ├── _item_cluetip_without_img.jinja2 │ ├── _item_data_attr.jinja2 │ ├── _item_new_types.jinja2 │ ├── _like_block.jinja2 │ ├── _like_inline_block.jinja2 │ ├── _like_main_page.jinja2 │ ├── _messages_.jinja2 │ ├── _share_buttons.jinja2 │ ├── _spell_cluetip.jinja2 │ ├── _spell_data_attr.jinja2 │ ├── _twitter_cards.jinja2 │ ├── credits.jinja2 │ ├── faction.jinja2 │ ├── help.jinja2 │ ├── help_auth.jinja2 │ ├── help_layout.jinja2 │ ├── help_ugc.jinja2 │ ├── landing_page.jinja2 │ ├── licenses.jinja2 │ ├── quick_tour.jinja2 │ └── thx.jinja2 ├── players │ ├── all_authors.jinja2 │ ├── all_players.jinja2 │ ├── invite_center.jinja2 │ ├── items.jinja2 │ ├── last_events.jinja2 │ ├── nearby_popup.jinja2 │ ├── player-ajax.jinja2 │ ├── player.jinja2 │ ├── player_abilities.jinja2 │ ├── player_achvs.jinja2 │ ├── player_map.jinja2 │ ├── player_stats.jinja2 │ ├── registration.jinja2 │ ├── settings.jinja2 │ ├── share.jinja2 │ ├── spellbook.jinja2 │ ├── top.jinja2 │ ├── upcoming_events.jinja2 │ └── works.jinja2 ├── popups │ ├── _item_popup_share.jinja2 │ ├── artwork.jinja2 │ ├── item.jinja2 │ └── spell.jinja2 ├── redirect.jinja2 ├── search.jinja2 ├── shop │ ├── disabled.jinja2 │ ├── shop.jinja2 │ ├── shop_artwork_filter.jinja2 │ ├── shop_artworks.jinja2 │ ├── shop_artworks_list.jinja2 │ ├── shop_item_filter.jinja2 │ ├── shop_items_list.jinja2 │ ├── shop_items_table.jinja2 │ ├── shop_loader.jinja2 │ ├── shop_new_things.jinja2 │ ├── shop_news_list.jinja2 │ ├── shop_players_items.jinja2 │ ├── shop_popups.jinja2 │ ├── shop_spell_filter.jinja2 │ ├── shop_spells.jinja2 │ ├── shop_spells_list.jinja2 │ ├── shop_spells_table.jinja2 │ ├── shop_trivia.jinja2 │ └── shop_trivias_list.jinja2 ├── sitemap.xml ├── src │ ├── coffee │ │ ├── admin_message_edit.coffee │ │ ├── admin_messages.coffee │ │ ├── artists.coffee │ │ ├── landing_page.coffee │ │ └── registration.coffee │ ├── css │ │ ├── error.css │ │ ├── ido.css │ │ ├── invite.css │ │ ├── jquery.cluetip.css │ │ ├── jquery.fancybox.css │ │ ├── map.css │ │ ├── modern.css │ │ ├── plugins.css │ │ ├── style-to-merge.css │ │ ├── style.css │ │ └── uniform.aristo.css │ └── scss │ │ ├── common │ │ ├── buttons.scss │ │ ├── fonts.scss │ │ ├── general.scss │ │ ├── reset.scss │ │ └── the_end.scss │ │ ├── libs │ │ └── cluetip.scss │ │ ├── mixins │ │ └── index.scss │ │ ├── pages │ │ ├── admin │ │ │ ├── admin_common.scss │ │ │ ├── index.scss │ │ │ └── messages.scss │ │ ├── index.scss │ │ ├── misc.scss │ │ ├── player.scss │ │ └── ugc.scss │ │ └── tweeria.scss ├── style │ ├── PIE.htc │ ├── favicon.ico │ ├── favicon.png │ ├── fonts │ │ ├── ptf55f_w.eot │ │ ├── ptf55f_w.svg │ │ ├── ptf55f_w.ttf │ │ ├── ptf55f_w.woff │ │ ├── ptf56f_w.eot │ │ ├── ptf56f_w.svg │ │ ├── ptf56f_w.ttf │ │ ├── ptf56f_w.woff │ │ ├── ptf75f_w.eot │ │ ├── ptf75f_w.svg │ │ ├── ptf75f_w.ttf │ │ ├── ptf75f_w.woff │ │ ├── ptf76f_w.eot │ │ ├── ptf76f_w.svg │ │ ├── ptf76f_w.ttf │ │ ├── ptf76f_w.woff │ │ ├── trajanpro-bold-webfont.eot │ │ ├── trajanpro-bold-webfont.svg │ │ ├── trajanpro-bold-webfont.ttf │ │ ├── trajanpro-bold-webfont.woff │ │ ├── trajanpro-regular-webfont.eot │ │ ├── trajanpro-regular-webfont.svg │ │ ├── trajanpro-regular-webfont.ttf │ │ └── trajanpro-regular-webfont.woff │ ├── img │ │ ├── .gitignore │ │ ├── 10x10.gif │ │ ├── 150x100.gif │ │ ├── _invite │ │ │ ├── big_logo.png │ │ │ └── invite_bg.gif │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.gif_fit.png │ │ ├── ajax-loader.gif_thumb.png │ │ ├── ajax-loader_2.gif │ │ ├── artists-rating-index.png │ │ ├── body-bg.png │ │ ├── box-shadow-bg.png │ │ ├── clean-spell-slot.png │ │ ├── create-artwork-file-input-bg.png │ │ ├── create-item-add-img-button.png │ │ ├── create-spell-add-img-button.png │ │ ├── create-summary-block-bg.png │ │ ├── create_artwork_img.png │ │ ├── create_item_img.png │ │ ├── create_spell_img.png │ │ ├── datepicker-input-bg.png │ │ ├── event-list-achv-earned-bg.png │ │ ├── events-border-bg.jpg │ │ ├── exp-bar.png │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_overlay.png │ │ │ └── fancybox_sprite.png │ │ ├── footer-shadow.jpg │ │ ├── footer-shadow.png │ │ ├── ft-faction-img.png │ │ ├── global-map │ │ │ ├── 321x363.gif │ │ │ ├── map_1.jpg │ │ │ ├── map_10.jpg │ │ │ ├── map_11.jpg │ │ │ ├── map_12.jpg │ │ │ ├── map_13.jpg │ │ │ ├── map_14.jpg │ │ │ ├── map_15.jpg │ │ │ ├── map_16.jpg │ │ │ ├── map_17.jpg │ │ │ ├── map_18.jpg │ │ │ ├── map_19.jpg │ │ │ ├── map_2.jpg │ │ │ ├── map_20.jpg │ │ │ ├── map_21.jpg │ │ │ ├── map_22.jpg │ │ │ ├── map_23.jpg │ │ │ ├── map_24.jpg │ │ │ ├── map_25.jpg │ │ │ ├── map_26.jpg │ │ │ ├── map_27.jpg │ │ │ ├── map_28.jpg │ │ │ ├── map_29.jpg │ │ │ ├── map_3.jpg │ │ │ ├── map_30.jpg │ │ │ ├── map_31.jpg │ │ │ ├── map_32.jpg │ │ │ ├── map_33.jpg │ │ │ ├── map_34.jpg │ │ │ ├── map_35.jpg │ │ │ ├── map_36.jpg │ │ │ ├── map_37.jpg │ │ │ ├── map_38.jpg │ │ │ ├── map_39.jpg │ │ │ ├── map_4.jpg │ │ │ ├── map_40.jpg │ │ │ ├── map_41.jpg │ │ │ ├── map_42.jpg │ │ │ ├── map_43.jpg │ │ │ ├── map_44.jpg │ │ │ ├── map_45.jpg │ │ │ ├── map_46.jpg │ │ │ ├── map_47.jpg │ │ │ ├── map_48.jpg │ │ │ ├── map_49.jpg │ │ │ ├── map_5.jpg │ │ │ ├── map_50.jpg │ │ │ ├── map_51.jpg │ │ │ ├── map_52.jpg │ │ │ ├── map_53.jpg │ │ │ ├── map_54.jpg │ │ │ ├── map_55.jpg │ │ │ ├── map_56.jpg │ │ │ ├── map_57.jpg │ │ │ ├── map_58.jpg │ │ │ ├── map_59.jpg │ │ │ ├── map_6.jpg │ │ │ ├── map_60.jpg │ │ │ ├── map_61.jpg │ │ │ ├── map_62.jpg │ │ │ ├── map_63.jpg │ │ │ ├── map_64.jpg │ │ │ ├── map_65.jpg │ │ │ ├── map_66.jpg │ │ │ ├── map_67.jpg │ │ │ ├── map_68.jpg │ │ │ ├── map_69.jpg │ │ │ ├── map_7.jpg │ │ │ ├── map_70.jpg │ │ │ ├── map_71.jpg │ │ │ ├── map_72.jpg │ │ │ ├── map_73.jpg │ │ │ ├── map_74.jpg │ │ │ ├── map_75.jpg │ │ │ ├── map_76.jpg │ │ │ ├── map_77.jpg │ │ │ ├── map_78.jpg │ │ │ ├── map_79.jpg │ │ │ ├── map_8.jpg │ │ │ ├── map_80.jpg │ │ │ ├── map_81.jpg │ │ │ └── map_9.jpg │ │ ├── ha-faction-img.png │ │ ├── header-player-menu-bg.png │ │ ├── help │ │ │ └── player.png │ │ ├── icon.png │ │ ├── licenses │ │ │ ├── cc-by-nc-nd.png │ │ │ ├── cc-by-nc-sa.png │ │ │ ├── cc-by-nc.png │ │ │ ├── cc-by-nd.png │ │ │ ├── cc-by-sa.png │ │ │ └── cc-by.png │ │ ├── locked-slot.png │ │ ├── logo_7_2.png │ │ ├── logo_7_3.png │ │ ├── lore.jpg │ │ ├── main-new-item-bg.jpg │ │ ├── main-page-center-top-bg.jpg │ │ ├── main-page-right-bg.jpg │ │ ├── main-page-welcome-bg.jpg │ │ ├── manacost-text.png │ │ ├── map-sprite │ │ │ └── grass-sprite.png │ │ ├── ne-faction-img.png │ │ ├── pacman-waiting.gif │ │ ├── player-gold-bg.png │ │ ├── player-right-bg.png │ │ ├── player-tooltip-bg.png │ │ ├── popup-tracery.png │ │ ├── promo-page-logo.png │ │ ├── shop-header-bg.jpg │ │ ├── spell-img.png │ │ ├── spellbook-available-effects.png │ │ ├── spellbook-hr-texture.png │ │ ├── spellbook-item-bg.png │ │ ├── spellbook-sprite.png │ │ ├── spellbook-using-effects.png │ │ ├── sprite-bar.png │ │ ├── sprite-items.png │ │ ├── sprite-landing-page.png │ │ ├── sprite-share.png │ │ ├── sprite.png │ │ ├── sprite_registration.png │ │ ├── textures │ │ │ ├── 1x1_black_33.png │ │ │ ├── 1x1_black_50.png │ │ │ ├── 1x1_black_80.png │ │ │ ├── 1x1_black_90.png │ │ │ ├── author_texture.jpg │ │ │ ├── author_texture_big.jpg │ │ │ ├── bg_main.jpg │ │ │ ├── clear_white.png │ │ │ ├── create_li_bg.png │ │ │ ├── error.jpg │ │ │ ├── footer-input-bg.png │ │ │ ├── footer-top-bg.png │ │ │ ├── gray_down.png │ │ │ ├── guild_detail_bg.jpg │ │ │ ├── header-bg-wide-texture.jpg │ │ │ ├── header-user-menu-bg.jpeg │ │ │ ├── header-user-menu-bg2.jpeg │ │ │ ├── light_green.png │ │ │ ├── main-trending-texture.png │ │ │ ├── noise_dark_50.png │ │ │ ├── player-page-popup-bg.jpg │ │ │ ├── shop_filter_bg.jpg │ │ │ ├── spellbook-middle-texture.png │ │ │ ├── success.jpg │ │ │ ├── white-transparent-bg.png │ │ │ ├── yellow.png │ │ │ └── yellow2.png │ │ ├── tour │ │ │ ├── tour1.jpg │ │ │ ├── tour2.jpg │ │ │ └── tour3.jpg │ │ ├── uniform │ │ │ └── sprite-aristo.png │ │ ├── unknown.jpg │ │ └── white-background-texture.png │ └── tweenk-ui │ │ ├── images │ │ ├── Jcrop.gif │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png │ │ ├── ui-bg_glass_25_cb842e_1x400.png │ │ ├── ui-bg_glass_70_ede4d4_1x400.png │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png │ │ ├── ui-icons_c47a23_256x240.png │ │ ├── ui-icons_cb672b_256x240.png │ │ ├── ui-icons_f08000_256x240.png │ │ ├── ui-icons_f35f07_256x240.png │ │ ├── ui-icons_ff7519_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.8.23.custom.css │ │ └── jquery.Jcrop.css ├── the_end.jinja2 ├── tmp │ └── vk_like.jinja2 └── ugc │ ├── _artwork_edit_info_block.jinja2 │ ├── _artwork_info_block.jinja2 │ ├── _artwork_info_creation.jinja2 │ ├── artwork_edit_page.jinja2 │ ├── artwork_page.jinja2 │ ├── create_artwork.jinja2 │ ├── create_item.jinja2 │ ├── create_spell.jinja2 │ ├── creation_center.jinja2 │ ├── creation_center_popups.jinja2 │ ├── item_edit_page.jinja2 │ ├── item_page.jinja2 │ ├── not_enough │ ├── ne_item.jinja2 │ └── ne_spell.jinja2 │ ├── request_auth.jinja2 │ ├── rules_agree_form.jinja2 │ ├── select_create_form.jinja2 │ ├── spell_edit_page.jinja2 │ ├── spell_page.jinja2 │ └── ugc_disabled_message.jinja2 ├── tools ├── __init__.py ├── _admin.py ├── _create_map.py ├── authors_ratings.py ├── converter.py ├── fvf_creator.py ├── get_csv.sh ├── liveblog_integration.py ├── map │ ├── map.hxm │ └── monster_layer_map.hxm ├── mention_notifications.py ├── post_process.py ├── ratings.py └── weekly_stats.py ├── tweenk.py └── web ├── __init__.py ├── controllers_loader.py ├── functions.py ├── informer.py └── site_builder.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/LICENSE -------------------------------------------------------------------------------- /PID/.getkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/__init__.py -------------------------------------------------------------------------------- /conf/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/conf/default.conf -------------------------------------------------------------------------------- /controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/__init__.py -------------------------------------------------------------------------------- /controllers/achv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/achv.py -------------------------------------------------------------------------------- /controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/admin.py -------------------------------------------------------------------------------- /controllers/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/ajax.py -------------------------------------------------------------------------------- /controllers/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/api.py -------------------------------------------------------------------------------- /controllers/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/basic.py -------------------------------------------------------------------------------- /controllers/creation_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/creation_center.py -------------------------------------------------------------------------------- /controllers/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/events.py -------------------------------------------------------------------------------- /controllers/guild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/guild.py -------------------------------------------------------------------------------- /controllers/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/items.py -------------------------------------------------------------------------------- /controllers/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/locations.py -------------------------------------------------------------------------------- /controllers/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/misc.py -------------------------------------------------------------------------------- /controllers/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/player.py -------------------------------------------------------------------------------- /controllers/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/shop.py -------------------------------------------------------------------------------- /controllers/spells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/spells.py -------------------------------------------------------------------------------- /controllers/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/controllers/statistics.py -------------------------------------------------------------------------------- /dbinit/tweeriadb.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/dbinit/tweeriadb.tar.gz -------------------------------------------------------------------------------- /import_base/.getkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import_base/Actions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/Actions.csv -------------------------------------------------------------------------------- /import_base/Events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/Events.csv -------------------------------------------------------------------------------- /import_base/_raw_messages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/_raw_messages.csv -------------------------------------------------------------------------------- /import_base/achvs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/achvs.csv -------------------------------------------------------------------------------- /import_base/artworks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/artworks.csv -------------------------------------------------------------------------------- /import_base/dungeons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/dungeons.csv -------------------------------------------------------------------------------- /import_base/items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/items.csv -------------------------------------------------------------------------------- /import_base/messages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/messages.csv -------------------------------------------------------------------------------- /import_base/monsters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/monsters.csv -------------------------------------------------------------------------------- /import_base/pvp_rewards.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/pvp_rewards.csv -------------------------------------------------------------------------------- /import_base/quests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/quests.csv -------------------------------------------------------------------------------- /import_base/settings_classes_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/settings_classes_names.csv -------------------------------------------------------------------------------- /import_base/settings_classes_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/settings_classes_stats.csv -------------------------------------------------------------------------------- /import_base/shop_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/shop_items.csv -------------------------------------------------------------------------------- /import_base/spells.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/spells.csv -------------------------------------------------------------------------------- /import_base/spells_actions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/spells_actions.csv -------------------------------------------------------------------------------- /import_base/stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/import_base/stats.csv -------------------------------------------------------------------------------- /loader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/loader.sh -------------------------------------------------------------------------------- /logs/.getkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/model_achv_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_achv_stats.py -------------------------------------------------------------------------------- /models/model_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_basic.py -------------------------------------------------------------------------------- /models/model_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_events.py -------------------------------------------------------------------------------- /models/model_guilds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_guilds.py -------------------------------------------------------------------------------- /models/model_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_items.py -------------------------------------------------------------------------------- /models/model_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_misc.py -------------------------------------------------------------------------------- /models/model_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_player.py -------------------------------------------------------------------------------- /models/model_spells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/models/model_spells.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/requirements.txt -------------------------------------------------------------------------------- /service_catcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/service_catcher.py -------------------------------------------------------------------------------- /system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/__init__.py -------------------------------------------------------------------------------- /system/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/db.py -------------------------------------------------------------------------------- /system/image_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/image_creation.py -------------------------------------------------------------------------------- /system/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/logger.py -------------------------------------------------------------------------------- /system/memcache_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/memcache_controller.py -------------------------------------------------------------------------------- /system/parser_modules/censore_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/parser_modules/censore_filter.py -------------------------------------------------------------------------------- /system/parser_modules/fight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/parser_modules/fight.py -------------------------------------------------------------------------------- /system/parser_modules/player_styles.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ido' 2 | -------------------------------------------------------------------------------- /system/parser_modules/spell_casting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/parser_modules/spell_casting.py -------------------------------------------------------------------------------- /system/post_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/post_notifications.py -------------------------------------------------------------------------------- /system/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/settings.py -------------------------------------------------------------------------------- /system/tweet_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/system/tweet_parser.py -------------------------------------------------------------------------------- /templates/_500_/502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/_500_/502.html -------------------------------------------------------------------------------- /templates/_debug_menu.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/_debug_menu.jinja2 -------------------------------------------------------------------------------- /templates/_footer.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/_footer.jinja2 -------------------------------------------------------------------------------- /templates/_header.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/_header.jinja2 -------------------------------------------------------------------------------- /templates/admin/admin_index.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/admin_index.jinja2 -------------------------------------------------------------------------------- /templates/admin/admin_popups.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/admin_popups.jinja2 -------------------------------------------------------------------------------- /templates/admin/approve_artworks.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/approve_artworks.jinja2 -------------------------------------------------------------------------------- /templates/admin/approve_items.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/approve_items.jinja2 -------------------------------------------------------------------------------- /templates/admin/approve_rules.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/approve_rules.jinja2 -------------------------------------------------------------------------------- /templates/admin/approve_spells.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/approve_spells.jinja2 -------------------------------------------------------------------------------- /templates/admin/approvements.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/approvements.jinja2 -------------------------------------------------------------------------------- /templates/admin/artists.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/artists.jinja2 -------------------------------------------------------------------------------- /templates/admin/artworks_delete.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/artworks_delete.jinja2 -------------------------------------------------------------------------------- /templates/admin/ban_player.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/ban_player.jinja2 -------------------------------------------------------------------------------- /templates/admin/deleted.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/deleted.jinja2 -------------------------------------------------------------------------------- /templates/admin/featured_artwork.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/featured_artwork.jinja2 -------------------------------------------------------------------------------- /templates/admin/get_timeline.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/get_timeline.jinja2 -------------------------------------------------------------------------------- /templates/admin/item_admin_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/item_admin_page.jinja2 -------------------------------------------------------------------------------- /templates/admin/people.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/people.jinja2 -------------------------------------------------------------------------------- /templates/admin/rejected_items.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/rejected_items.jinja2 -------------------------------------------------------------------------------- /templates/admin/rejected_spells.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/rejected_spells.jinja2 -------------------------------------------------------------------------------- /templates/admin/reported_items.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/reported_items.jinja2 -------------------------------------------------------------------------------- /templates/admin/reported_spells.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/reported_spells.jinja2 -------------------------------------------------------------------------------- /templates/admin/set_level.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/set_level.jinja2 -------------------------------------------------------------------------------- /templates/admin/tags/tags.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/tags/tags.jinja2 -------------------------------------------------------------------------------- /templates/admin/take_achv.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/take_achv.jinja2 -------------------------------------------------------------------------------- /templates/admin/tips.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/tips.jinja2 -------------------------------------------------------------------------------- /templates/admin/user_invites.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/user_invites.jinja2 -------------------------------------------------------------------------------- /templates/admin/user_moderators.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/admin/user_moderators.jinja2 -------------------------------------------------------------------------------- /templates/ajax/preview_image.jinja2: -------------------------------------------------------------------------------- 1 | {{ param_img }} -------------------------------------------------------------------------------- /templates/ajax/test_img.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ajax/test_img.jinja2 -------------------------------------------------------------------------------- /templates/data/achvs/1000items.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/1000items.jpg -------------------------------------------------------------------------------- /templates/data/achvs/100items.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/100items.jpg -------------------------------------------------------------------------------- /templates/data/achvs/alone1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/alone1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/alone2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/alone2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/alone3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/alone3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/bard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/bard.jpg -------------------------------------------------------------------------------- /templates/data/achvs/beta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/beta.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/eye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/eye.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/field.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/field.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/god.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/god.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/grim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/grim.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/karpe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/karpe.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/lich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/lich.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/lord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/lord.jpg -------------------------------------------------------------------------------- /templates/data/achvs/dungeons/naga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/dungeons/naga.jpg -------------------------------------------------------------------------------- /templates/data/achvs/guild.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/guild.jpg -------------------------------------------------------------------------------- /templates/data/achvs/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/help.jpg -------------------------------------------------------------------------------- /templates/data/achvs/kill1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/kill1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/kill2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/kill2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/kill3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/kill3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/kill4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/kill4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/kill5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/kill5.jpg -------------------------------------------------------------------------------- /templates/data/achvs/level10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/level10.jpg -------------------------------------------------------------------------------- /templates/data/achvs/level20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/level20.jpg -------------------------------------------------------------------------------- /templates/data/achvs/level30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/level30.jpg -------------------------------------------------------------------------------- /templates/data/achvs/level40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/level40.jpg -------------------------------------------------------------------------------- /templates/data/achvs/level50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/level50.jpg -------------------------------------------------------------------------------- /templates/data/achvs/level60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/level60.jpg -------------------------------------------------------------------------------- /templates/data/achvs/magic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/magic1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/magic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/magic2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/magic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/magic3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/magic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/magic4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/magic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/magic5.jpg -------------------------------------------------------------------------------- /templates/data/achvs/monster1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/monster1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/monster2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/monster2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/monster3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/monster3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/monster4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/monster4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/monster5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/monster5.jpg -------------------------------------------------------------------------------- /templates/data/achvs/party1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/party1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/party2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/party2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/party3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/party3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/party4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/party4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/party5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/party5.jpg -------------------------------------------------------------------------------- /templates/data/achvs/peasant1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/peasant1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/peasant2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/peasant2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/peasant3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/peasant3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/peasant4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/peasant4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/peasant5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/peasant5.jpg -------------------------------------------------------------------------------- /templates/data/achvs/people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/people.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raid1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raid1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raid2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raid2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raid3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raid3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raid4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raid4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raid5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raid5.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/app.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/caller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/caller.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/dragon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/dragon.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/hunter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/hunter.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/jack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/jack.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/mage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/mage.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/master.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/master.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/serpent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/serpent.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/son.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/son.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/tomb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/tomb.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/tribe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/tribe.jpg -------------------------------------------------------------------------------- /templates/data/achvs/raids/worm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/raids/worm.jpg -------------------------------------------------------------------------------- /templates/data/achvs/run1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/run1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/run2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/run2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/run3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/run3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/run4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/run4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/run5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/run5.jpg -------------------------------------------------------------------------------- /templates/data/achvs/skull1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/skull1.jpg -------------------------------------------------------------------------------- /templates/data/achvs/skull2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/skull2.jpg -------------------------------------------------------------------------------- /templates/data/achvs/skull3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/skull3.jpg -------------------------------------------------------------------------------- /templates/data/achvs/skull4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/skull4.jpg -------------------------------------------------------------------------------- /templates/data/achvs/skull5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/achvs/skull5.jpg -------------------------------------------------------------------------------- /templates/data/artwork_delete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/artwork_delete.jpg -------------------------------------------------------------------------------- /templates/data/artwork_empty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/artwork_empty.jpg -------------------------------------------------------------------------------- /templates/data/buffer/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/data/effects/air.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/air.jpg -------------------------------------------------------------------------------- /templates/data/effects/arcane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/arcane.jpg -------------------------------------------------------------------------------- /templates/data/effects/fire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/fire.jpg -------------------------------------------------------------------------------- /templates/data/effects/frost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/frost.jpg -------------------------------------------------------------------------------- /templates/data/effects/inc_def.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/inc_def.jpg -------------------------------------------------------------------------------- /templates/data/effects/inc_dex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/inc_dex.jpg -------------------------------------------------------------------------------- /templates/data/effects/inc_dmg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/inc_dmg.jpg -------------------------------------------------------------------------------- /templates/data/effects/inc_int.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/inc_int.jpg -------------------------------------------------------------------------------- /templates/data/effects/inc_str.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/inc_str.jpg -------------------------------------------------------------------------------- /templates/data/effects/red_def.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/red_def.jpg -------------------------------------------------------------------------------- /templates/data/effects/red_dex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/red_dex.jpg -------------------------------------------------------------------------------- /templates/data/effects/red_dmg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/red_dmg.jpg -------------------------------------------------------------------------------- /templates/data/effects/red_int.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/red_int.jpg -------------------------------------------------------------------------------- /templates/data/effects/red_str.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/effects/red_str.jpg -------------------------------------------------------------------------------- /templates/data/fonts/sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/fonts/sans.ttf -------------------------------------------------------------------------------- /templates/data/fonts/sans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/fonts/sans_bold.ttf -------------------------------------------------------------------------------- /templates/data/fonts/serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/fonts/serif.ttf -------------------------------------------------------------------------------- /templates/data/fonts/serif_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/fonts/serif_bold.ttf -------------------------------------------------------------------------------- /templates/data/guild_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/guild_default.jpg -------------------------------------------------------------------------------- /templates/data/items/_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/_example.png -------------------------------------------------------------------------------- /templates/data/items/_example_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/_example_fit.png -------------------------------------------------------------------------------- /templates/data/items/axe/axe10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe10.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe11.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe12.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe13.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe14.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe15.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe16.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe17.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe18.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe19.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe20.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe21.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe22.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe23.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe24.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe25.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe26.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe29.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe30.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe31.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe33.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe34.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe35.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe36.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe40.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe44.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe45.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe46.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe49.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe50.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe51.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe52.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe53.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe54.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe55.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe56.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe57.jpg -------------------------------------------------------------------------------- /templates/data/items/axe/axe59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/axe/axe59.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots10.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots11.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots12.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots13.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots14.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots15.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots16.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots17.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots18.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots19.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots20.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots21.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots22.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots23.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots24.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots25.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots26.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots27.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots28.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots29.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots30.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots31.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots32.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots33.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots34.jpg -------------------------------------------------------------------------------- /templates/data/items/boots/boots35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/boots/boots35.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow10.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow11.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow12.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow13.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow14.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow15.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow16.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow17.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow18.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow19.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow20.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow28.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow30.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow31.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow32.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow33.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow34.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow35.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow36.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow37.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow38.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow39.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow40.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow41.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow42.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow43.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow44.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow45.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow46.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow47.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow48.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow49.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow50.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow51.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow52.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow54.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow55.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow56.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/bow57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/bow57.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/crossbow10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/crossbow10.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/crossbow11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/crossbow11.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/crossbow12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/crossbow12.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/crossbow13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/crossbow13.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/crossbow17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/crossbow17.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/crossbow20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/crossbow20.jpg -------------------------------------------------------------------------------- /templates/data/items/bow/crossbow29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/bow/crossbow29.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand10.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand11.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand12.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand13.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand14.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand15.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand16.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand17.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand18.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand19.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand20.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand21.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand22.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand23.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand24.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand25.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand26.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand27.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand28.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand29.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand30.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand31.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand32.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand40.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand41.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand44.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand47.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand48.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand49.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand50.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand51.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand52.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand53.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand54.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand55.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand56.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand57.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand58.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand59.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand60.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand70.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand71.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand72.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand73.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand74.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand75.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand76.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand79.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand84.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand85.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand86.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand87.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand88.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand89.jpg -------------------------------------------------------------------------------- /templates/data/items/hand/hand90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/hand/hand90.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head10.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head11.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head12.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head13.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head14.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head15.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head16.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head17.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head18.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head19.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head20.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head21.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head22.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head23.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head24.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head25.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head26.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head27.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head28.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head29.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head30.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head31.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head32.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head33.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head34.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head35.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head36.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head37.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head38.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head39.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head40.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head41.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head42.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head43.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head44.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head45.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head46.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head47.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head48.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head49.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head50.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head51.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head52.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head53.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head54.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head55.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head56.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head57.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head58.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head59.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head60.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head61.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head62.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head63.jpg -------------------------------------------------------------------------------- /templates/data/items/head/head64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/head/head64.jpg -------------------------------------------------------------------------------- /templates/data/items/non_combat/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/non_combat/cat.jpg -------------------------------------------------------------------------------- /templates/data/items/non_combat/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/non_combat/dog.jpg -------------------------------------------------------------------------------- /templates/data/items/non_combat/hut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/non_combat/hut.jpg -------------------------------------------------------------------------------- /templates/data/items/non_combat/rat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/non_combat/rat.jpg -------------------------------------------------------------------------------- /templates/data/items/non_combat/yak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/non_combat/yak.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring10.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring11.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring12.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring13.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring14.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring15.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring16.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring17.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring18.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring19.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring20.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring21.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring22.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring23.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring24.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring25.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring26.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring27.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring28.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring29.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring30.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring31.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring32.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring33.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring34.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring35.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring36.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring37.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring38.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring39.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring40.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring41.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring42.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring43.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring44.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring45.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring46.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring47.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring54.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring55.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring56.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring57.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring58.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring59.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring60.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring61.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring62.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring63.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring64.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring65.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring66.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring67.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring68.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring69.jpg -------------------------------------------------------------------------------- /templates/data/items/ring/ring70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/ring/ring70.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff10.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff11.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff12.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff13.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff14.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff15.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff16.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff17.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff18.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff19.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff20.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff21.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff22.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff23.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff24.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff25.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff26.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff27.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff28.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff29.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff30.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff31.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff32.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff33.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff34.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff35.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff36.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff37.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff38.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff39.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff40.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff41.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff42.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff43.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff45.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff46.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff47.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff48.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff49.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff50.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff51.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff52.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff53.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff54.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff55.jpg -------------------------------------------------------------------------------- /templates/data/items/staff/staff56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/staff/staff56.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/dagger01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/dagger01.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/dagger02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/dagger02.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/dagger03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/dagger03.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/dagger04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/dagger04.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/dagger05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/dagger05.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/dagger06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/dagger06.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword10.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword11.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword12.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword13.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword14.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword15.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword16.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword17.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword18.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword19.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword20.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword21.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword22.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword23.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword24.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword25.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword26.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword27.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword28.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword29.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword30.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword31.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword32.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword33.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword34.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword35.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword36.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword37.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword38.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword39.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword40.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword41.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword42.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword43.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword44.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword45.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword46.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword47.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword48.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword49.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword55.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword56.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword57.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword58.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword59.jpg -------------------------------------------------------------------------------- /templates/data/items/sword/sword60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/sword/sword60.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist10.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist11.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist12.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist13.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist14.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist15.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist16.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist17.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist18.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist19.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist20.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist21.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist22.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist23.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist24.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist25.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist26.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist27.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist28.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist29.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist30.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist31.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist32.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist33.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist34.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist35.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist36.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist37.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist38.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist39.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist40.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist41.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist42.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist43.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist44.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist45.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist46.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist47.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist48.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist49.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist50.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist51.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist52.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist56.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist57.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist58.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist59.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist60.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist61.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist62.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist63.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist64.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist65.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist66.jpg -------------------------------------------------------------------------------- /templates/data/items/waist/waist67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/waist/waist67.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist10.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist11.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist12.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist13.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist14.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist15.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist16.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist17.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist18.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist19.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist20.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist21.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist22.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist23.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist24.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist25.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist26.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist27.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist28.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist29.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist30.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist31.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist32.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist33.jpg -------------------------------------------------------------------------------- /templates/data/items/wrist/wrist34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/items/wrist/wrist34.jpg -------------------------------------------------------------------------------- /templates/data/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/map.json -------------------------------------------------------------------------------- /templates/data/mymap.hxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/mymap.hxm -------------------------------------------------------------------------------- /templates/data/resized_image/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/data/resized_image/artworks/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/data/resized_image/guilds_avatars/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/data/resized_image/items/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/data/resized_image/spells/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/data/spells/air.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/air.jpg -------------------------------------------------------------------------------- /templates/data/spells/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/arrow.jpg -------------------------------------------------------------------------------- /templates/data/spells/bless.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/bless.jpg -------------------------------------------------------------------------------- /templates/data/spells/bless2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/bless2.jpg -------------------------------------------------------------------------------- /templates/data/spells/blizzard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/blizzard.jpg -------------------------------------------------------------------------------- /templates/data/spells/corruption.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/corruption.jpg -------------------------------------------------------------------------------- /templates/data/spells/curse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/curse.jpg -------------------------------------------------------------------------------- /templates/data/spells/fireball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/fireball.jpg -------------------------------------------------------------------------------- /templates/data/spells/frostball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/frostball.jpg -------------------------------------------------------------------------------- /templates/data/spells/ido_q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/ido_q.jpg -------------------------------------------------------------------------------- /templates/data/spells/none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/none.jpg -------------------------------------------------------------------------------- /templates/data/spells/reduce_str.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/data/spells/reduce_str.jpg -------------------------------------------------------------------------------- /templates/data/tmp_image/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/error.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/error.jinja2 -------------------------------------------------------------------------------- /templates/events/event_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/events/event_page.jinja2 -------------------------------------------------------------------------------- /templates/events/events_list.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/events/events_list.jinja2 -------------------------------------------------------------------------------- /templates/events/new_event.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/events/new_event.jinja2 -------------------------------------------------------------------------------- /templates/footer.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/footer.jinja2 -------------------------------------------------------------------------------- /templates/guilds/add_news.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/guilds/add_news.jinja2 -------------------------------------------------------------------------------- /templates/guilds/all_guilds.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/guilds/all_guilds.jinja2 -------------------------------------------------------------------------------- /templates/guilds/guild_add.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/guilds/guild_add.jinja2 -------------------------------------------------------------------------------- /templates/guilds/guild_detail.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/guilds/guild_detail.jinja2 -------------------------------------------------------------------------------- /templates/guilds/news_list.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/guilds/news_list.jinja2 -------------------------------------------------------------------------------- /templates/guilds/news_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/guilds/news_page.jinja2 -------------------------------------------------------------------------------- /templates/header.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/header.jinja2 -------------------------------------------------------------------------------- /templates/index.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/index.jinja2 -------------------------------------------------------------------------------- /templates/inline_errors.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/inline_errors.jinja2 -------------------------------------------------------------------------------- /templates/invites/access.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/invites/access.jinja2 -------------------------------------------------------------------------------- /templates/js/libs/jquery-1.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/libs/jquery-1.8.js -------------------------------------------------------------------------------- /templates/js/page_scripts_source/help.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/js/page_scripts_source/rejected.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".item-popuped tbody tr td").unbind('click'); 3 | }); -------------------------------------------------------------------------------- /templates/js/plugins.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins.jinja2 -------------------------------------------------------------------------------- /templates/js/plugins/cluetip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/cluetip.js -------------------------------------------------------------------------------- /templates/js/plugins/fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/fancybox.js -------------------------------------------------------------------------------- /templates/js/plugins/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/form.js -------------------------------------------------------------------------------- /templates/js/plugins/jcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/jcrop.js -------------------------------------------------------------------------------- /templates/js/plugins/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/jquery.tmpl.js -------------------------------------------------------------------------------- /templates/js/plugins/mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/mousewheel.js -------------------------------------------------------------------------------- /templates/js/plugins/scrollsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/scrollsync.js -------------------------------------------------------------------------------- /templates/js/plugins/timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/timepicker.js -------------------------------------------------------------------------------- /templates/js/plugins/uniform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/uniform.js -------------------------------------------------------------------------------- /templates/js/plugins/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/user.js -------------------------------------------------------------------------------- /templates/js/plugins/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/plugins/validation.js -------------------------------------------------------------------------------- /templates/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/script.js -------------------------------------------------------------------------------- /templates/js/tmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/js/tmp.js -------------------------------------------------------------------------------- /templates/locations/world.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/locations/world.jinja2 -------------------------------------------------------------------------------- /templates/misc/_admin_reject.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_admin_reject.jinja2 -------------------------------------------------------------------------------- /templates/misc/_debuff_cluetip.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_debuff_cluetip.jinja2 -------------------------------------------------------------------------------- /templates/misc/_feedback.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_feedback.jinja2 -------------------------------------------------------------------------------- /templates/misc/_help_overflow.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_help_overflow.jinja2 -------------------------------------------------------------------------------- /templates/misc/_item_cluetip.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_item_cluetip.jinja2 -------------------------------------------------------------------------------- /templates/misc/_item_data_attr.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_item_data_attr.jinja2 -------------------------------------------------------------------------------- /templates/misc/_item_new_types.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_item_new_types.jinja2 -------------------------------------------------------------------------------- /templates/misc/_like_block.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_like_block.jinja2 -------------------------------------------------------------------------------- /templates/misc/_like_main_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_like_main_page.jinja2 -------------------------------------------------------------------------------- /templates/misc/_messages_.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_messages_.jinja2 -------------------------------------------------------------------------------- /templates/misc/_share_buttons.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_share_buttons.jinja2 -------------------------------------------------------------------------------- /templates/misc/_spell_cluetip.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_spell_cluetip.jinja2 -------------------------------------------------------------------------------- /templates/misc/_twitter_cards.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/_twitter_cards.jinja2 -------------------------------------------------------------------------------- /templates/misc/credits.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/credits.jinja2 -------------------------------------------------------------------------------- /templates/misc/faction.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/faction.jinja2 -------------------------------------------------------------------------------- /templates/misc/help.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/help.jinja2 -------------------------------------------------------------------------------- /templates/misc/help_auth.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/help_auth.jinja2 -------------------------------------------------------------------------------- /templates/misc/help_layout.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/help_layout.jinja2 -------------------------------------------------------------------------------- /templates/misc/help_ugc.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/help_ugc.jinja2 -------------------------------------------------------------------------------- /templates/misc/landing_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/landing_page.jinja2 -------------------------------------------------------------------------------- /templates/misc/licenses.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/licenses.jinja2 -------------------------------------------------------------------------------- /templates/misc/quick_tour.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/quick_tour.jinja2 -------------------------------------------------------------------------------- /templates/misc/thx.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/misc/thx.jinja2 -------------------------------------------------------------------------------- /templates/players/all_authors.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/all_authors.jinja2 -------------------------------------------------------------------------------- /templates/players/all_players.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/all_players.jinja2 -------------------------------------------------------------------------------- /templates/players/items.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/items.jinja2 -------------------------------------------------------------------------------- /templates/players/last_events.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/last_events.jinja2 -------------------------------------------------------------------------------- /templates/players/nearby_popup.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/nearby_popup.jinja2 -------------------------------------------------------------------------------- /templates/players/player-ajax.jinja2: -------------------------------------------------------------------------------- 1 | {{ result }} -------------------------------------------------------------------------------- /templates/players/player.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/player.jinja2 -------------------------------------------------------------------------------- /templates/players/player_achvs.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/player_achvs.jinja2 -------------------------------------------------------------------------------- /templates/players/player_map.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/player_map.jinja2 -------------------------------------------------------------------------------- /templates/players/player_stats.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/player_stats.jinja2 -------------------------------------------------------------------------------- /templates/players/registration.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/registration.jinja2 -------------------------------------------------------------------------------- /templates/players/settings.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/settings.jinja2 -------------------------------------------------------------------------------- /templates/players/share.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/share.jinja2 -------------------------------------------------------------------------------- /templates/players/spellbook.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/spellbook.jinja2 -------------------------------------------------------------------------------- /templates/players/top.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/top.jinja2 -------------------------------------------------------------------------------- /templates/players/works.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/players/works.jinja2 -------------------------------------------------------------------------------- /templates/popups/artwork.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/popups/artwork.jinja2 -------------------------------------------------------------------------------- /templates/popups/item.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/popups/item.jinja2 -------------------------------------------------------------------------------- /templates/popups/spell.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/popups/spell.jinja2 -------------------------------------------------------------------------------- /templates/redirect.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/redirect.jinja2 -------------------------------------------------------------------------------- /templates/search.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/search.jinja2 -------------------------------------------------------------------------------- /templates/shop/disabled.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/disabled.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_artworks.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_artworks.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_items_list.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_items_list.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_loader.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_loader.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_new_things.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_new_things.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_news_list.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_news_list.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_popups.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_popups.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_spells.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_spells.jinja2 -------------------------------------------------------------------------------- /templates/shop/shop_trivia.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/shop/shop_trivia.jinja2 -------------------------------------------------------------------------------- /templates/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/sitemap.xml -------------------------------------------------------------------------------- /templates/src/coffee/artists.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/coffee/artists.coffee -------------------------------------------------------------------------------- /templates/src/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/error.css -------------------------------------------------------------------------------- /templates/src/css/ido.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/ido.css -------------------------------------------------------------------------------- /templates/src/css/invite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/invite.css -------------------------------------------------------------------------------- /templates/src/css/jquery.cluetip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/jquery.cluetip.css -------------------------------------------------------------------------------- /templates/src/css/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/jquery.fancybox.css -------------------------------------------------------------------------------- /templates/src/css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/map.css -------------------------------------------------------------------------------- /templates/src/css/modern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/modern.css -------------------------------------------------------------------------------- /templates/src/css/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/plugins.css -------------------------------------------------------------------------------- /templates/src/css/style-to-merge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/style-to-merge.css -------------------------------------------------------------------------------- /templates/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/style.css -------------------------------------------------------------------------------- /templates/src/css/uniform.aristo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/css/uniform.aristo.css -------------------------------------------------------------------------------- /templates/src/scss/common/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/common/fonts.scss -------------------------------------------------------------------------------- /templates/src/scss/common/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/common/reset.scss -------------------------------------------------------------------------------- /templates/src/scss/libs/cluetip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/libs/cluetip.scss -------------------------------------------------------------------------------- /templates/src/scss/mixins/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/mixins/index.scss -------------------------------------------------------------------------------- /templates/src/scss/pages/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/pages/index.scss -------------------------------------------------------------------------------- /templates/src/scss/pages/misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/pages/misc.scss -------------------------------------------------------------------------------- /templates/src/scss/pages/player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/pages/player.scss -------------------------------------------------------------------------------- /templates/src/scss/pages/ugc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/pages/ugc.scss -------------------------------------------------------------------------------- /templates/src/scss/tweeria.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/src/scss/tweeria.scss -------------------------------------------------------------------------------- /templates/style/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/PIE.htc -------------------------------------------------------------------------------- /templates/style/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/favicon.ico -------------------------------------------------------------------------------- /templates/style/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/favicon.png -------------------------------------------------------------------------------- /templates/style/fonts/ptf55f_w.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf55f_w.eot -------------------------------------------------------------------------------- /templates/style/fonts/ptf55f_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf55f_w.svg -------------------------------------------------------------------------------- /templates/style/fonts/ptf55f_w.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf55f_w.ttf -------------------------------------------------------------------------------- /templates/style/fonts/ptf55f_w.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf55f_w.woff -------------------------------------------------------------------------------- /templates/style/fonts/ptf56f_w.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf56f_w.eot -------------------------------------------------------------------------------- /templates/style/fonts/ptf56f_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf56f_w.svg -------------------------------------------------------------------------------- /templates/style/fonts/ptf56f_w.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf56f_w.ttf -------------------------------------------------------------------------------- /templates/style/fonts/ptf56f_w.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf56f_w.woff -------------------------------------------------------------------------------- /templates/style/fonts/ptf75f_w.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf75f_w.eot -------------------------------------------------------------------------------- /templates/style/fonts/ptf75f_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf75f_w.svg -------------------------------------------------------------------------------- /templates/style/fonts/ptf75f_w.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf75f_w.ttf -------------------------------------------------------------------------------- /templates/style/fonts/ptf75f_w.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf75f_w.woff -------------------------------------------------------------------------------- /templates/style/fonts/ptf76f_w.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf76f_w.eot -------------------------------------------------------------------------------- /templates/style/fonts/ptf76f_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf76f_w.svg -------------------------------------------------------------------------------- /templates/style/fonts/ptf76f_w.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf76f_w.ttf -------------------------------------------------------------------------------- /templates/style/fonts/ptf76f_w.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/fonts/ptf76f_w.woff -------------------------------------------------------------------------------- /templates/style/img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/style/img/10x10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/10x10.gif -------------------------------------------------------------------------------- /templates/style/img/150x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/150x100.gif -------------------------------------------------------------------------------- /templates/style/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/ajax-loader.gif -------------------------------------------------------------------------------- /templates/style/img/ajax-loader_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/ajax-loader_2.gif -------------------------------------------------------------------------------- /templates/style/img/body-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/body-bg.png -------------------------------------------------------------------------------- /templates/style/img/box-shadow-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/box-shadow-bg.png -------------------------------------------------------------------------------- /templates/style/img/exp-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/exp-bar.png -------------------------------------------------------------------------------- /templates/style/img/footer-shadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/footer-shadow.jpg -------------------------------------------------------------------------------- /templates/style/img/footer-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/footer-shadow.png -------------------------------------------------------------------------------- /templates/style/img/help/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/help/player.png -------------------------------------------------------------------------------- /templates/style/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/icon.png -------------------------------------------------------------------------------- /templates/style/img/locked-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/locked-slot.png -------------------------------------------------------------------------------- /templates/style/img/logo_7_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/logo_7_2.png -------------------------------------------------------------------------------- /templates/style/img/logo_7_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/logo_7_3.png -------------------------------------------------------------------------------- /templates/style/img/lore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/lore.jpg -------------------------------------------------------------------------------- /templates/style/img/manacost-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/manacost-text.png -------------------------------------------------------------------------------- /templates/style/img/popup-tracery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/popup-tracery.png -------------------------------------------------------------------------------- /templates/style/img/spell-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/spell-img.png -------------------------------------------------------------------------------- /templates/style/img/sprite-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/sprite-bar.png -------------------------------------------------------------------------------- /templates/style/img/sprite-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/sprite-items.png -------------------------------------------------------------------------------- /templates/style/img/sprite-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/sprite-share.png -------------------------------------------------------------------------------- /templates/style/img/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/sprite.png -------------------------------------------------------------------------------- /templates/style/img/tour/tour1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/tour/tour1.jpg -------------------------------------------------------------------------------- /templates/style/img/tour/tour2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/tour/tour2.jpg -------------------------------------------------------------------------------- /templates/style/img/tour/tour3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/tour/tour3.jpg -------------------------------------------------------------------------------- /templates/style/img/unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/style/img/unknown.jpg -------------------------------------------------------------------------------- /templates/the_end.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/the_end.jinja2 -------------------------------------------------------------------------------- /templates/tmp/vk_like.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/tmp/vk_like.jinja2 -------------------------------------------------------------------------------- /templates/ugc/artwork_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/artwork_page.jinja2 -------------------------------------------------------------------------------- /templates/ugc/create_artwork.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/create_artwork.jinja2 -------------------------------------------------------------------------------- /templates/ugc/create_item.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/create_item.jinja2 -------------------------------------------------------------------------------- /templates/ugc/create_spell.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/create_spell.jinja2 -------------------------------------------------------------------------------- /templates/ugc/creation_center.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/creation_center.jinja2 -------------------------------------------------------------------------------- /templates/ugc/item_edit_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/item_edit_page.jinja2 -------------------------------------------------------------------------------- /templates/ugc/item_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/item_page.jinja2 -------------------------------------------------------------------------------- /templates/ugc/request_auth.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/request_auth.jinja2 -------------------------------------------------------------------------------- /templates/ugc/rules_agree_form.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/rules_agree_form.jinja2 -------------------------------------------------------------------------------- /templates/ugc/spell_edit_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/spell_edit_page.jinja2 -------------------------------------------------------------------------------- /templates/ugc/spell_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/templates/ugc/spell_page.jinja2 -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/_admin.py -------------------------------------------------------------------------------- /tools/_create_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/_create_map.py -------------------------------------------------------------------------------- /tools/authors_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/authors_ratings.py -------------------------------------------------------------------------------- /tools/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/converter.py -------------------------------------------------------------------------------- /tools/fvf_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/fvf_creator.py -------------------------------------------------------------------------------- /tools/get_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/get_csv.sh -------------------------------------------------------------------------------- /tools/liveblog_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/liveblog_integration.py -------------------------------------------------------------------------------- /tools/map/map.hxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/map/map.hxm -------------------------------------------------------------------------------- /tools/map/monster_layer_map.hxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/map/monster_layer_map.hxm -------------------------------------------------------------------------------- /tools/mention_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/mention_notifications.py -------------------------------------------------------------------------------- /tools/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/post_process.py -------------------------------------------------------------------------------- /tools/ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/ratings.py -------------------------------------------------------------------------------- /tools/weekly_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tools/weekly_stats.py -------------------------------------------------------------------------------- /tweenk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/tweenk.py -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/web/__init__.py -------------------------------------------------------------------------------- /web/controllers_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/web/controllers_loader.py -------------------------------------------------------------------------------- /web/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/web/functions.py -------------------------------------------------------------------------------- /web/informer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/web/informer.py -------------------------------------------------------------------------------- /web/site_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idooo/tweeria/HEAD/web/site_builder.py --------------------------------------------------------------------------------