diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..9845bcb --- /dev/null +++ b/config.yml @@ -0,0 +1,250 @@ +# =============================================== +# == Default Configuration File of 'ShopChest' == +# =============================================== +# +# Lines starting with '#' are comments and are ignored by the server. +# +# If you are using special characters be sure to save this file in ANSI encoding! +# +# Color Codes (Must be BEFORE Formatting Codes): +# &0 = Black +# &1 = Dark Blue +# &2 = Dark Green +# &3 = Dark Aqua +# &4 = Dark Red +# &5 = Dark Purple +# &6 = Gold +# &7 = Gray +# &8 = Dark Gray +# &9 = Blue +# &a = Green +# &b = Aqua +# &c = Red +# &d = Light Purple +# &e = Yellow +# &f = White +# +# Formatting Codes (Must be AFTER Color Codes): +# &k = Obfuscated +# &l = Bold +# &m = Strikethrough +# &n = Underline +# &o = Italic +# &r = Reset +# \n = Extra line + +# Set the main command you have to enter to manage the shops (default: "/shop ...") +# DO NOT USE COLOR-/FORMATTING CODES HERE! +main-command-name: "shop" + +# Set the maximal distance to the shop where the player can see the hologram. +# Value MUST be a number (e.g. 1, 1.5, 2.75, ...) +maximal-distance: 1.75 + +# Set the currency symbol after price values +currency-symbol: $ + +# Set whether the buy price must be greater than or equal sell price. +buy-greater-or-equal-sell: true + +# Set the minimum prices for each individual Item. Not per Stack, per single Item! +# To add an item DELETE THE '[]' after 'minimum-prices:' and follow the format below. +# Important: You must have exactly 2 spaces between the text and the edge (Just like the other properties) +# You can find the item names in the 'item_names.txt' file. +minimum-prices: [] +# "STONE:1": 0.5 +# "DIAMOND_SWORD": 100 + + +messages: + + # Set the message when a shop is created at the clicked chest. + shop-created: "&6Shop created." + + # Set the message when the clicked chest already is a shop. + chest-already-shop: "&cChest already is shop." + + # Set the message when the clicked shop is removed. + shop-removed: "&6Shop removed." + + # Set the message when the clicked chest is not a shop. + chest-no-shop: "&cChest is not a shop." + + shop-info: + + # Set the message the player gets in the first row after entering '/shop info'. + # Usable regex: %VENDOR% + vendor: "&6Vendor: %VENDOR%" + + # Set the message the player gets in the second row after entering '/shop info'. + # Usable regex: %AMOUNT%, %ITEMNAME% + product: "&6Product: %AMOUNT% x %ITEMNAME%" + + # Set the message the player gets in the third row after entering '/shop info' if the item is enchanted + # Usable regex: %ENCHANTMENT% + enchantments: "&6Enchantments: %ENCHANTMENT%" + + # Set the message the player gets in the third/fourth row after entering '/shop info'. + # Usable regex: %BUY-PRICE%, %SELL-PRICE%, %CURRENCY-SYMBOL% + price: "&6Price: Buy: %BUY-PRICE%%CURRENCY-SYMBOL%, Sell: %SELL-PRICE%%CURRENCY-SYMBOL%" + + # If the sell price or buy price is disabled, this message will be displayed instead of the price and the currency symbol in the message above. + disabled: "&7Disabled&6" + + # Set the message the player gets in the fourth/fifth row after entering '/shop info'... + # ...when the shop is infinite. + is-infinite: "&6Type: Infinite" + + # ...when the shop is not infinite. + is-not-infinite: "&6Type: Normal" + + # Set the message when the clicked block is not a chest. + block-no-chest: "&cBlock is not a chest" + + # Set the message when the player tries to create a shop with sell price and buy price set to 0 + buy-and-sell-disabled: "&cYou can't create a shop with buying and selling disabled." + + # Set the message when the player successfully bought something. + # Usable regex: %AMOUNT%, %ITEMNAME%, %BUY-PRICE%, %CURRENCY-SYMBOL%, %VENDOR% + buy-success: "&aYou bought &6%AMOUNT% x %ITEMNAME%&a for &6%BUY-PRICE%%CURRENCY-SYMBOL%&a from &6%VENDOR%&a." + + # Set the message when the player successfully bought something. + # Usable regex: %AMOUNT%, %ITEMNAME%, %SELL-PRICE%, %CURRENCY-SYMBOL%, %VENDOR% + sell-success: "&aYou sold &6%AMOUNT% x %ITEMNAME%&a for &6%SELL-PRICE%%CURRENCY-SYMBOL%&a to &6%VENDOR%&a." + + # Set the message when the inventory is full when the player is buying something. + not-enough-inventory-space: "&cNot enough space in inventory." + + # Set the message when the shops' inventory is full when the player is selling something. + chest-not-enough-inventory-space: "&cShop is full." + + # Set the message when the player doesn't have enough money to buy something. + not-enough-money: "&cNot enough money." + + # Set the message when the player doesn't have enough items to sell. + not-enough-items: "&cNot enough items." + + # Set the message when the shop is out of stock. + out-of-stock: "&cShop out of stock." + + # Set the message when an error occurred. + # Usable regex: %ERROR% + error-occurred: "&cAn error occurred: %ERROR%" + + # Set the message when the arguments and of '/shop create' are not a number. + amount-and-price-not-number: "&cAmount and price must be a number." + + # Set the message when the player doesn't hold an item in the hand. + no-item-in-hand: "&cNo item in hand" + + # Set the message when the player must click a chest to create a shop. + click-chest-to-create-shop: "&aClick a chest to create a shop." + + # Set the message when the player must click a shop to remove it. + click-chest-to-remove-shop: "&aClick a shop-chest to remove the shop." + + # Set the message when the player must click a shop to retrieve information. + click-chest-for-info: "&aClick a shop to retrieve information." + + # Set the message when the player opened a shop. + # Usable regex: %VENDOR% + opened-shop: "&aYou opened %VENDOR%'s shop." + + # Set the message when the player tries to break a shop. + cannot-break-shop: "&cYou can't break a shop." + + # Set the message when the player tries to sell a broken item. + cannot-sell-broken-item: "&cYou can't sell a broken item." + + # Set the message when the entered buy price is below the minimum price. + # Usable regex: %MIN-PRICE%, %CURRENCY-SYMBOL% + buy-price-too-low: "&cThe buy price must be higher than %MIN-PRICE%%CURRENCY-SYMBOL%." + + # Set the message when the entered sell price is below the minimum price. + # Usable regex: %MIN-PRICE%, %CURRENCY-SYMBOL% + sell-price-too-low: "&cThe sell price must be higher than %MIN-PRICE%%CURRENCY-SYMBOL%." + + # Set the message when buying is disabled at the shop. + buying-disabled: "&cBuying is disabled at this shop." + + # Set the message when selling is disabled at the shop. + selling-disabled: "&cSelling is disabled at this shop." + + # Set the message when reloading is done. + # Usable regex: %AMOUNT% (Amount of shops) + reloaded-shops: "&aSuccessfully reloaded %AMOUNT% shop/s." + + update: + + # Set the message when an update is available. + # Unfortunately only the last colored part of the text (if you have multiple colors) becomes clickable (default: only '&chere' is clickable). + # Usable regex: %VERSION% + update-available: "&l&6Version &c%VERSION% &6of &cShopChest &6is available &chere." + + # Set the message you get when hovering over the available message. + click-to-download: "Click to download" + + # Set the message when no update is available. + no-update: "&l&6No new update available." + + # Set the message when the update checker is started. + checking: "&l&6Checking for Updates..." + + hologram: + + # Set the message in the second row of the shops' hologram when the player can buy and sell an item. + # Usable regex: %BUY-PRICE%, %SELL-PRICE%, %CURRENCY-SYMBOL% + buy-and-sell: "Buy %BUY-PRICE%%CURRENCY-SYMBOL% | %SELL-PRICE%%CURRENCY-SYMBOL% Sell" + + # Set the message in the second row of the shops' hologram when the player can only buy an item. + # Usable regex: %BUY-PRICE%, %CURRENCY-SYMBOL% + only-buy: "Buy %BUY-PRICE%%CURRENCY-SYMBOL%" + + # Set the message in the second row of the shops' hologram when the player can only sell an item. + # Usable regex: %SELL-PRICE%, %CURRENCY-SYMBOL% + only-sell: "Sell %SELL-PRICE%%CURRENCY-SYMBOL%" + + no-permission: + + # Set the message when a not permitted player tries to create a shop. + create: "&cYou don't have permission to create a shop." + + # Set the message when a not permitted player tries to create an infinite shop. + create-infinite: "&cYou don't have permission to create an infinite shop." + + # Set the message when a not permitted player tries to open another players' shop. + open-others: "&cYou don't have permission to open this chest." + + # Set the message when a not permitted player tries to buy something. + buy: "&cYou don't have permission to buy something." + + # Set the message when a not permitted player tries to sell something. + sell: "&cYou don't have permission to sell something." + + # Set the message when a not permitted player tries to remove another players' shop. + remove-others: "&cYou don't have permission to remove this shop." + + # Set the message when a not permitted player tries to reload the shops. + reload: "&cYou don't have permission to reload the shops." + + # Set the message when a not permitted player tries to check for updates. + update: "&cYou don't have permission to check for updates." + + command-description: + + # Set the command description message for '/ create' when you type '/'. + create: "Create a shop." + + # Set the command description message for '/ remove' when you type '/'. + remove: "Remove a shop." + + # Set the command description message for '/ info' when you type '/'. + info: "Retrieve shop information." + + # Set the command description message for '/ reload' when you type '/'. + reload: "Reload shops." + + # Set the command description message for '/ update' when you type '/'. + update: "Check for Updates." + +# End of file. \ No newline at end of file diff --git a/item_names b/item_names new file mode 100644 index 0000000..e87a01a --- /dev/null +++ b/item_names @@ -0,0 +1,387 @@ +(Source: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) + +ACACIA_DOOR +ACACIA_DOOR_ITEM +ACACIA_FENCE +ACACIA_FENCE_GATE +ACACIA_STAIRS +ACTIVATOR_RAIL +AIR +ANVIL +APPLE +ARMOR_STAND +ARROW +BAKED_POTATO +BANNER +BARRIER +BEACON +BED +BED_BLOCK +BEDROCK +BIRCH_DOOR +BIRCH_DOOR_ITEM +BIRCH_FENCE +BIRCH_FENCE_GATE +BIRCH_WOOD_STAIRS +BLAZE_POWDER +BLAZE_ROD +BOAT +BONE +BOOK +BOOK_AND_QUILL +BOOKSHELF +BOW +BOWL +BREAD +BREWING_STAND +BREWING_STAND_ITEM +BRICK +BRICK_STAIRS +BROWN_MUSHROOM +BUCKET +BURNING_FURNACE +CACTUS +CAKE +CAKE_BLOCK +CARPET +CARROT +CARROT_ITEM +CARROT_STICK +CAULDRON +CAULDRON_ITEM +CHAINMAIL_BOOTS +CHAINMAIL_CHESTPLATE +CHAINMAIL_HELMET +CHAINMAIL_LEGGINGS +CHEST +CLAY +CLAY_BALL +CLAY_BRICK +COAL +COAL_BLOCK +COAL_ORE +COBBLE_WALL +COBBLESTONE +COBBLESTONE_STAIRS +COCOA +COMMAND +COMMAND_MINECART +COMPASS +COOKED_BEEF +COOKED_CHICKEN +COOKED_FISH +COOKED_MUTTON +COOKED_RABBIT +COOKIE +CROPS +DARK_OAK_DOOR +DARK_OAK_DOOR_ITEM +DARK_OAK_FENCE +DARK_OAK_FENCE_GATE +DARK_OAK_STAIRS +DAYLIGHT_DETECTOR +DAYLIGHT_DETECTOR_INVERTED +DEAD_BUSH +DETECTOR_RAIL +DIAMOND +DIAMOND_AXE +DIAMOND_BARDING +DIAMOND_BLOCK +DIAMOND_BOOTS +DIAMOND_CHESTPLATE +DIAMOND_HELMET +DIAMOND_HOE +DIAMOND_LEGGINGS +DIAMOND_ORE +DIAMOND_PICKAXE +DIAMOND_SPADE +DIAMOND_SWORD +DIODE +DIODE_BLOCK_OFF +DIODE_BLOCK_ON +DIRT +DISPENSER +DOUBLE_PLANT +DOUBLE_STEP +DOUBLE_STONE_SLAB2 +DRAGON_EGG +DROPPER +EGG +EMERALD +EMERALD_BLOCK +EMERALD_ORE +EMPTY_MAP +ENCHANTED_BOOK +ENCHANTMENT_TABLE +ENDER_CHEST +ENDER_PEARL +ENDER_PORTAL +ENDER_PORTAL_FRAME +ENDER_STONE +EXP_BOTTLE +EXPLOSIVE_MINECART +EYE_OF_ENDER +FEATHER +FENCE +FENCE_GATE +FERMENTED_SPIDER_EYE +FIRE +FIREBALL +FIREWORK +FIREWORK_CHARGE +FISHING_ROD +FLINT +FLINT_AND_STEEL +FLOWER_POT +FLOWER_POT_ITEM +FURNACE +GHAST_TEAR +GLASS +GLASS_BOTTLE +GLOWING_REDSTONE_ORE +GLOWSTONE +GLOWSTONE_DUST +GOLD_AXE +GOLD_BARDING +GOLD_BLOCK +GOLD_BOOTS +GOLD_CHESTPLATE +GOLD_HELMET +GOLD_HOE +GOLD_INGOT +GOLD_LEGGINGS +GOLD_NUGGET +GOLD_ORE +GOLD_PICKAXE +GOLD_PLATE +GOLD_RECORD +GOLD_SPADE +GOLD_SWORD +GOLDEN_APPLE +GOLDEN_CARROT +GRASS +GRAVEL +GREEN_RECORD +GRILLED_PORK +HARD_CLAY +HAY_BLOCK +HOPPER +HOPPER_MINECART +HUGE_MUSHROOM_1 +HUGE_MUSHROOM_2 +ICE +INK_SACK +IRON_AXE +IRON_BARDING +IRON_BLOCK +IRON_BOOTS +IRON_CHESTPLATE +IRON_DOOR +IRON_DOOR_BLOCK +IRON_FENCE +IRON_HELMET +IRON_HOE +IRON_INGOT +IRON_LEGGINGS +IRON_ORE +IRON_PICKAXE +IRON_PLATE +IRON_SPADE +IRON_SWORD +IRON_TRAPDOOR +ITEM_FRAME +JACK_O_LANTERN +JUKEBOX +JUNGLE_DOOR +JUNGLE_DOOR_ITEM +JUNGLE_FENCE +JUNGLE_FENCE_GATE +JUNGLE_WOOD_STAIRS +LADDER +LAPIS_BLOCK +LAPIS_ORE +LAVA +LAVA_BUCKET +LEASH +LEATHER +LEATHER_BOOTS +LEATHER_CHESTPLATE +LEATHER_HELMET +LEATHER_LEGGINGS +LEAVES +LEAVES_2 +LEVER +LOG +LOG_2 +LONG_GRASS +MAGMA_CREAM +MAP +MELON +MELON_BLOCK +MELON_SEEDS +MELON_STEM +MILK_BUCKET +MINECART +MOB_SPAWNER +MONSTER_EGG +MONSTER_EGGS +MOSSY_COBBLESTONE +MUSHROOM_SOUP +MUTTON +MYCEL +NAME_TAG +NETHER_BRICK +NETHER_BRICK_ITEM +NETHER_BRICK_STAIRS +NETHER_FENCE +NETHER_STALK +NETHER_STAR +NETHER_WARTS +NETHERRACK +NOTE_BLOCK +OBSIDIAN +PACKED_ICE +PAINTING +PAPER +PISTON_BASE +PISTON_EXTENSION +PISTON_MOVING_PIECE +PISTON_STICKY_BASE +POISONOUS_POTATO +PORK +PORTAL +POTATO +POTATO_ITEM +POTION +POWERED_MINECART +POWERED_RAIL +PRISMARINE +PRISMARINE_CRYSTALS +PRISMARINE_SHARD +PUMPKIN +PUMPKIN_PIE +PUMPKIN_SEEDS +PUMPKIN_STEM +QUARTZ +QUARTZ_BLOCK +QUARTZ_ORE +QUARTZ_STAIRS +RABBIT +RABBIT_FOOT +RABBIT_HIDE +RABBIT_STEW +RAILS +RAW_BEEF +RAW_CHICKEN +RAW_FISH +RECORD_10 +RECORD_11 +RECORD_12 +RECORD_3 +RECORD_4 +RECORD_5 +RECORD_6 +RECORD_7 +RECORD_8 +RECORD_9 +RED_MUSHROOM +RED_ROSE +RED_SANDSTONE +RED_SANDSTONE_STAIRS +REDSTONE +REDSTONE_BLOCK +REDSTONE_COMPARATOR +REDSTONE_COMPARATOR_OFF +REDSTONE_COMPARATOR_ON +REDSTONE_LAMP_OFF +REDSTONE_LAMP_ON +REDSTONE_ORE +REDSTONE_TORCH_OFF +REDSTONE_TORCH_ON +REDSTONE_WIRE +ROTTEN_FLESH +SADDLE +SAND +SANDSTONE +SANDSTONE_STAIRS +SAPLING +SEA_LANTERN +SEEDS +SHEARS +SIGN +SIGN_POST +SKULL +SKULL_ITEM +SLIME_BALL +SLIME_BLOCK +SMOOTH_BRICK +SMOOTH_STAIRS +SNOW +SNOW_BALL +SNOW_BLOCK +SOIL +SOUL_SAND +SPECKLED_MELON +SPIDER_EYE +SPONGE +SPRUCE_DOOR +SPRUCE_DOOR_ITEM +SPRUCE_FENCE +SPRUCE_FENCE_GATE +SPRUCE_WOOD_STAIRS +STAINED_CLAY +STAINED_GLASS +STAINED_GLASS_PANE +STANDING_BANNER +STATIONARY_LAVA +STATIONARY_WATER +STEP +STICK +STONE +STONE_AXE +STONE_BUTTON +STONE_HOE +STONE_PICKAXE +STONE_PLATE +STONE_SLAB2 +STONE_SPADE +STONE_SWORD +STORAGE_MINECART +STRING +SUGAR +SUGAR_CANE +SUGAR_CANE_BLOCK +SULPHUR +THIN_GLASS +TNT +TORCH +TRAP_DOOR +TRAPPED_CHEST +TRIPWIRE +TRIPWIRE_HOOK +VINE +WALL_BANNER +WALL_SIGN +WATCH +WATER +WATER_BUCKET +WATER_LILY +WEB +WHEAT +WOOD +WOOD_AXE +WOOD_BUTTON +WOOD_DOOR +WOOD_DOUBLE_STEP +WOOD_HOE +WOOD_PICKAXE +WOOD_PLATE +WOOD_SPADE +WOOD_STAIRS +WOOD_STEP +WOOD_SWORD +WOODEN_DOOR +WOOL +WORKBENCH +WRITTEN_BOOK +YELLOW_FLOWER \ No newline at end of file diff --git a/libs/org/jsoup/Connection$Base.class b/libs/org/jsoup/Connection$Base.class new file mode 100644 index 0000000..17e9dcd Binary files /dev/null and b/libs/org/jsoup/Connection$Base.class differ diff --git a/libs/org/jsoup/Connection$KeyVal.class b/libs/org/jsoup/Connection$KeyVal.class new file mode 100644 index 0000000..fb9a423 Binary files /dev/null and b/libs/org/jsoup/Connection$KeyVal.class differ diff --git a/libs/org/jsoup/Connection$Method.class b/libs/org/jsoup/Connection$Method.class new file mode 100644 index 0000000..35cdf89 Binary files /dev/null and b/libs/org/jsoup/Connection$Method.class differ diff --git a/libs/org/jsoup/Connection$Request.class b/libs/org/jsoup/Connection$Request.class new file mode 100644 index 0000000..78077bc Binary files /dev/null and b/libs/org/jsoup/Connection$Request.class differ diff --git a/libs/org/jsoup/Connection$Response.class b/libs/org/jsoup/Connection$Response.class new file mode 100644 index 0000000..0f8f043 Binary files /dev/null and b/libs/org/jsoup/Connection$Response.class differ diff --git a/libs/org/jsoup/Connection.class b/libs/org/jsoup/Connection.class new file mode 100644 index 0000000..8a01b03 Binary files /dev/null and b/libs/org/jsoup/Connection.class differ diff --git a/libs/org/jsoup/HttpStatusException.class b/libs/org/jsoup/HttpStatusException.class new file mode 100644 index 0000000..042638f Binary files /dev/null and b/libs/org/jsoup/HttpStatusException.class differ diff --git a/libs/org/jsoup/Jsoup.class b/libs/org/jsoup/Jsoup.class new file mode 100644 index 0000000..d5a69dd Binary files /dev/null and b/libs/org/jsoup/Jsoup.class differ diff --git a/libs/org/jsoup/UnsupportedMimeTypeException.class b/libs/org/jsoup/UnsupportedMimeTypeException.class new file mode 100644 index 0000000..8190608 Binary files /dev/null and b/libs/org/jsoup/UnsupportedMimeTypeException.class differ diff --git a/libs/org/jsoup/examples/HtmlToPlainText$1.class b/libs/org/jsoup/examples/HtmlToPlainText$1.class new file mode 100644 index 0000000..367a3c1 Binary files /dev/null and b/libs/org/jsoup/examples/HtmlToPlainText$1.class differ diff --git a/libs/org/jsoup/examples/HtmlToPlainText$FormattingVisitor.class b/libs/org/jsoup/examples/HtmlToPlainText$FormattingVisitor.class new file mode 100644 index 0000000..a728d9b Binary files /dev/null and b/libs/org/jsoup/examples/HtmlToPlainText$FormattingVisitor.class differ diff --git a/libs/org/jsoup/examples/HtmlToPlainText.class b/libs/org/jsoup/examples/HtmlToPlainText.class new file mode 100644 index 0000000..c364a0a Binary files /dev/null and b/libs/org/jsoup/examples/HtmlToPlainText.class differ diff --git a/libs/org/jsoup/examples/ListLinks.class b/libs/org/jsoup/examples/ListLinks.class new file mode 100644 index 0000000..ca952e5 Binary files /dev/null and b/libs/org/jsoup/examples/ListLinks.class differ diff --git a/libs/org/jsoup/helper/DataUtil.class b/libs/org/jsoup/helper/DataUtil.class new file mode 100644 index 0000000..6abaeab Binary files /dev/null and b/libs/org/jsoup/helper/DataUtil.class differ diff --git a/libs/org/jsoup/helper/DescendableLinkedList$1.class b/libs/org/jsoup/helper/DescendableLinkedList$1.class new file mode 100644 index 0000000..a7adb99 Binary files /dev/null and b/libs/org/jsoup/helper/DescendableLinkedList$1.class differ diff --git a/libs/org/jsoup/helper/DescendableLinkedList$DescendingIterator.class b/libs/org/jsoup/helper/DescendableLinkedList$DescendingIterator.class new file mode 100644 index 0000000..e5b0838 Binary files /dev/null and b/libs/org/jsoup/helper/DescendableLinkedList$DescendingIterator.class differ diff --git a/libs/org/jsoup/helper/DescendableLinkedList.class b/libs/org/jsoup/helper/DescendableLinkedList.class new file mode 100644 index 0000000..d510a54 Binary files /dev/null and b/libs/org/jsoup/helper/DescendableLinkedList.class differ diff --git a/libs/org/jsoup/helper/HttpConnection$1.class b/libs/org/jsoup/helper/HttpConnection$1.class new file mode 100644 index 0000000..cd91b23 Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection$1.class differ diff --git a/libs/org/jsoup/helper/HttpConnection$Base.class b/libs/org/jsoup/helper/HttpConnection$Base.class new file mode 100644 index 0000000..3b08bb8 Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection$Base.class differ diff --git a/libs/org/jsoup/helper/HttpConnection$KeyVal.class b/libs/org/jsoup/helper/HttpConnection$KeyVal.class new file mode 100644 index 0000000..5ef776b Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection$KeyVal.class differ diff --git a/libs/org/jsoup/helper/HttpConnection$Request.class b/libs/org/jsoup/helper/HttpConnection$Request.class new file mode 100644 index 0000000..fa2c2c8 Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection$Request.class differ diff --git a/libs/org/jsoup/helper/HttpConnection$Response$1.class b/libs/org/jsoup/helper/HttpConnection$Response$1.class new file mode 100644 index 0000000..fe7fe3d Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection$Response$1.class differ diff --git a/libs/org/jsoup/helper/HttpConnection$Response$2.class b/libs/org/jsoup/helper/HttpConnection$Response$2.class new file mode 100644 index 0000000..eddc45c Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection$Response$2.class differ diff --git a/libs/org/jsoup/helper/HttpConnection$Response.class b/libs/org/jsoup/helper/HttpConnection$Response.class new file mode 100644 index 0000000..ed5c2d9 Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection$Response.class differ diff --git a/libs/org/jsoup/helper/HttpConnection.class b/libs/org/jsoup/helper/HttpConnection.class new file mode 100644 index 0000000..2620217 Binary files /dev/null and b/libs/org/jsoup/helper/HttpConnection.class differ diff --git a/libs/org/jsoup/helper/StringUtil.class b/libs/org/jsoup/helper/StringUtil.class new file mode 100644 index 0000000..438ca97 Binary files /dev/null and b/libs/org/jsoup/helper/StringUtil.class differ diff --git a/libs/org/jsoup/helper/Validate.class b/libs/org/jsoup/helper/Validate.class new file mode 100644 index 0000000..8940022 Binary files /dev/null and b/libs/org/jsoup/helper/Validate.class differ diff --git a/libs/org/jsoup/helper/W3CDom$W3CBuilder.class b/libs/org/jsoup/helper/W3CDom$W3CBuilder.class new file mode 100644 index 0000000..e1461da Binary files /dev/null and b/libs/org/jsoup/helper/W3CDom$W3CBuilder.class differ diff --git a/libs/org/jsoup/helper/W3CDom.class b/libs/org/jsoup/helper/W3CDom.class new file mode 100644 index 0000000..bee1a06 Binary files /dev/null and b/libs/org/jsoup/helper/W3CDom.class differ diff --git a/libs/org/jsoup/nodes/Attribute.class b/libs/org/jsoup/nodes/Attribute.class new file mode 100644 index 0000000..8ff6f1c Binary files /dev/null and b/libs/org/jsoup/nodes/Attribute.class differ diff --git a/libs/org/jsoup/nodes/Attributes$1.class b/libs/org/jsoup/nodes/Attributes$1.class new file mode 100644 index 0000000..955c55b Binary files /dev/null and b/libs/org/jsoup/nodes/Attributes$1.class differ diff --git a/libs/org/jsoup/nodes/Attributes$Dataset$DatasetIterator.class b/libs/org/jsoup/nodes/Attributes$Dataset$DatasetIterator.class new file mode 100644 index 0000000..3530175 Binary files /dev/null and b/libs/org/jsoup/nodes/Attributes$Dataset$DatasetIterator.class differ diff --git a/libs/org/jsoup/nodes/Attributes$Dataset$EntrySet.class b/libs/org/jsoup/nodes/Attributes$Dataset$EntrySet.class new file mode 100644 index 0000000..289e399 Binary files /dev/null and b/libs/org/jsoup/nodes/Attributes$Dataset$EntrySet.class differ diff --git a/libs/org/jsoup/nodes/Attributes$Dataset.class b/libs/org/jsoup/nodes/Attributes$Dataset.class new file mode 100644 index 0000000..b90ae99 Binary files /dev/null and b/libs/org/jsoup/nodes/Attributes$Dataset.class differ diff --git a/libs/org/jsoup/nodes/Attributes.class b/libs/org/jsoup/nodes/Attributes.class new file mode 100644 index 0000000..1017ba1 Binary files /dev/null and b/libs/org/jsoup/nodes/Attributes.class differ diff --git a/libs/org/jsoup/nodes/BooleanAttribute.class b/libs/org/jsoup/nodes/BooleanAttribute.class new file mode 100644 index 0000000..709def9 Binary files /dev/null and b/libs/org/jsoup/nodes/BooleanAttribute.class differ diff --git a/libs/org/jsoup/nodes/Comment.class b/libs/org/jsoup/nodes/Comment.class new file mode 100644 index 0000000..53881cd Binary files /dev/null and b/libs/org/jsoup/nodes/Comment.class differ diff --git a/libs/org/jsoup/nodes/DataNode.class b/libs/org/jsoup/nodes/DataNode.class new file mode 100644 index 0000000..bc78de5 Binary files /dev/null and b/libs/org/jsoup/nodes/DataNode.class differ diff --git a/libs/org/jsoup/nodes/Document$OutputSettings$Syntax.class b/libs/org/jsoup/nodes/Document$OutputSettings$Syntax.class new file mode 100644 index 0000000..04e3544 Binary files /dev/null and b/libs/org/jsoup/nodes/Document$OutputSettings$Syntax.class differ diff --git a/libs/org/jsoup/nodes/Document$OutputSettings.class b/libs/org/jsoup/nodes/Document$OutputSettings.class new file mode 100644 index 0000000..c88b297 Binary files /dev/null and b/libs/org/jsoup/nodes/Document$OutputSettings.class differ diff --git a/libs/org/jsoup/nodes/Document$QuirksMode.class b/libs/org/jsoup/nodes/Document$QuirksMode.class new file mode 100644 index 0000000..1aebdf8 Binary files /dev/null and b/libs/org/jsoup/nodes/Document$QuirksMode.class differ diff --git a/libs/org/jsoup/nodes/Document.class b/libs/org/jsoup/nodes/Document.class new file mode 100644 index 0000000..15cb35d Binary files /dev/null and b/libs/org/jsoup/nodes/Document.class differ diff --git a/libs/org/jsoup/nodes/DocumentType.class b/libs/org/jsoup/nodes/DocumentType.class new file mode 100644 index 0000000..c4652bd Binary files /dev/null and b/libs/org/jsoup/nodes/DocumentType.class differ diff --git a/libs/org/jsoup/nodes/Element$1.class b/libs/org/jsoup/nodes/Element$1.class new file mode 100644 index 0000000..979a2a6 Binary files /dev/null and b/libs/org/jsoup/nodes/Element$1.class differ diff --git a/libs/org/jsoup/nodes/Element.class b/libs/org/jsoup/nodes/Element.class new file mode 100644 index 0000000..438ca7b Binary files /dev/null and b/libs/org/jsoup/nodes/Element.class differ diff --git a/libs/org/jsoup/nodes/Entities$1.class b/libs/org/jsoup/nodes/Entities$1.class new file mode 100644 index 0000000..7955cb8 Binary files /dev/null and b/libs/org/jsoup/nodes/Entities$1.class differ diff --git a/libs/org/jsoup/nodes/Entities$CoreCharset.class b/libs/org/jsoup/nodes/Entities$CoreCharset.class new file mode 100644 index 0000000..fe0c9b1 Binary files /dev/null and b/libs/org/jsoup/nodes/Entities$CoreCharset.class differ diff --git a/libs/org/jsoup/nodes/Entities$EscapeMode.class b/libs/org/jsoup/nodes/Entities$EscapeMode.class new file mode 100644 index 0000000..135d52e Binary files /dev/null and b/libs/org/jsoup/nodes/Entities$EscapeMode.class differ diff --git a/libs/org/jsoup/nodes/Entities.class b/libs/org/jsoup/nodes/Entities.class new file mode 100644 index 0000000..9ecc115 Binary files /dev/null and b/libs/org/jsoup/nodes/Entities.class differ diff --git a/libs/org/jsoup/nodes/FormElement.class b/libs/org/jsoup/nodes/FormElement.class new file mode 100644 index 0000000..bc1ff77 Binary files /dev/null and b/libs/org/jsoup/nodes/FormElement.class differ diff --git a/libs/org/jsoup/nodes/Node$1.class b/libs/org/jsoup/nodes/Node$1.class new file mode 100644 index 0000000..49cdf53 Binary files /dev/null and b/libs/org/jsoup/nodes/Node$1.class differ diff --git a/libs/org/jsoup/nodes/Node$OuterHtmlVisitor.class b/libs/org/jsoup/nodes/Node$OuterHtmlVisitor.class new file mode 100644 index 0000000..b94303b Binary files /dev/null and b/libs/org/jsoup/nodes/Node$OuterHtmlVisitor.class differ diff --git a/libs/org/jsoup/nodes/Node.class b/libs/org/jsoup/nodes/Node.class new file mode 100644 index 0000000..f8e36f3 Binary files /dev/null and b/libs/org/jsoup/nodes/Node.class differ diff --git a/libs/org/jsoup/nodes/TextNode.class b/libs/org/jsoup/nodes/TextNode.class new file mode 100644 index 0000000..c844591 Binary files /dev/null and b/libs/org/jsoup/nodes/TextNode.class differ diff --git a/libs/org/jsoup/nodes/XmlDeclaration.class b/libs/org/jsoup/nodes/XmlDeclaration.class new file mode 100644 index 0000000..5fc1a5c Binary files /dev/null and b/libs/org/jsoup/nodes/XmlDeclaration.class differ diff --git a/libs/org/jsoup/nodes/entities-base.properties b/libs/org/jsoup/nodes/entities-base.properties new file mode 100644 index 0000000..3d1d11e --- /dev/null +++ b/libs/org/jsoup/nodes/entities-base.properties @@ -0,0 +1,106 @@ +AElig=000C6 +AMP=00026 +Aacute=000C1 +Acirc=000C2 +Agrave=000C0 +Aring=000C5 +Atilde=000C3 +Auml=000C4 +COPY=000A9 +Ccedil=000C7 +ETH=000D0 +Eacute=000C9 +Ecirc=000CA +Egrave=000C8 +Euml=000CB +GT=0003E +Iacute=000CD +Icirc=000CE +Igrave=000CC +Iuml=000CF +LT=0003C +Ntilde=000D1 +Oacute=000D3 +Ocirc=000D4 +Ograve=000D2 +Oslash=000D8 +Otilde=000D5 +Ouml=000D6 +QUOT=00022 +REG=000AE +THORN=000DE +Uacute=000DA +Ucirc=000DB +Ugrave=000D9 +Uuml=000DC +Yacute=000DD +aacute=000E1 +acirc=000E2 +acute=000B4 +aelig=000E6 +agrave=000E0 +amp=00026 +aring=000E5 +atilde=000E3 +auml=000E4 +brvbar=000A6 +ccedil=000E7 +cedil=000B8 +cent=000A2 +copy=000A9 +curren=000A4 +deg=000B0 +divide=000F7 +eacute=000E9 +ecirc=000EA +egrave=000E8 +eth=000F0 +euml=000EB +frac12=000BD +frac14=000BC +frac34=000BE +gt=0003E +iacute=000ED +icirc=000EE +iexcl=000A1 +igrave=000EC +iquest=000BF +iuml=000EF +laquo=000AB +lt=0003C +macr=000AF +micro=000B5 +middot=000B7 +nbsp=000A0 +not=000AC +ntilde=000F1 +oacute=000F3 +ocirc=000F4 +ograve=000F2 +ordf=000AA +ordm=000BA +oslash=000F8 +otilde=000F5 +ouml=000F6 +para=000B6 +plusmn=000B1 +pound=000A3 +quot=00022 +raquo=000BB +reg=000AE +sect=000A7 +shy=000AD +sup1=000B9 +sup2=000B2 +sup3=000B3 +szlig=000DF +thorn=000FE +times=000D7 +uacute=000FA +ucirc=000FB +ugrave=000F9 +uml=000A8 +uuml=000FC +yacute=000FD +yen=000A5 +yuml=000FF diff --git a/libs/org/jsoup/nodes/entities-full.properties b/libs/org/jsoup/nodes/entities-full.properties new file mode 100644 index 0000000..92f124f --- /dev/null +++ b/libs/org/jsoup/nodes/entities-full.properties @@ -0,0 +1,2032 @@ +AElig=000C6 +AMP=00026 +Aacute=000C1 +Abreve=00102 +Acirc=000C2 +Acy=00410 +Afr=1D504 +Agrave=000C0 +Alpha=00391 +Amacr=00100 +And=02A53 +Aogon=00104 +Aopf=1D538 +ApplyFunction=02061 +Aring=000C5 +Ascr=1D49C +Assign=02254 +Atilde=000C3 +Auml=000C4 +Backslash=02216 +Barv=02AE7 +Barwed=02306 +Bcy=00411 +Because=02235 +Bernoullis=0212C +Beta=00392 +Bfr=1D505 +Bopf=1D539 +Breve=002D8 +Bscr=0212C +Bumpeq=0224E +CHcy=00427 +COPY=000A9 +Cacute=00106 +Cap=022D2 +CapitalDifferentialD=02145 +Cayleys=0212D +Ccaron=0010C +Ccedil=000C7 +Ccirc=00108 +Cconint=02230 +Cdot=0010A +Cedilla=000B8 +CenterDot=000B7 +Cfr=0212D +Chi=003A7 +CircleDot=02299 +CircleMinus=02296 +CirclePlus=02295 +CircleTimes=02297 +ClockwiseContourIntegral=02232 +CloseCurlyDoubleQuote=0201D +CloseCurlyQuote=02019 +Colon=02237 +Colone=02A74 +Congruent=02261 +Conint=0222F +ContourIntegral=0222E +Copf=02102 +Coproduct=02210 +CounterClockwiseContourIntegral=02233 +Cross=02A2F +Cscr=1D49E +Cup=022D3 +CupCap=0224D +DD=02145 +DDotrahd=02911 +DJcy=00402 +DScy=00405 +DZcy=0040F +Dagger=02021 +Darr=021A1 +Dashv=02AE4 +Dcaron=0010E +Dcy=00414 +Del=02207 +Delta=00394 +Dfr=1D507 +DiacriticalAcute=000B4 +DiacriticalDot=002D9 +DiacriticalDoubleAcute=002DD +DiacriticalGrave=00060 +DiacriticalTilde=002DC +Diamond=022C4 +DifferentialD=02146 +Dopf=1D53B +Dot=000A8 +DotDot=020DC +DotEqual=02250 +DoubleContourIntegral=0222F +DoubleDot=000A8 +DoubleDownArrow=021D3 +DoubleLeftArrow=021D0 +DoubleLeftRightArrow=021D4 +DoubleLeftTee=02AE4 +DoubleLongLeftArrow=027F8 +DoubleLongLeftRightArrow=027FA +DoubleLongRightArrow=027F9 +DoubleRightArrow=021D2 +DoubleRightTee=022A8 +DoubleUpArrow=021D1 +DoubleUpDownArrow=021D5 +DoubleVerticalBar=02225 +DownArrow=02193 +DownArrowBar=02913 +DownArrowUpArrow=021F5 +DownBreve=00311 +DownLeftRightVector=02950 +DownLeftTeeVector=0295E +DownLeftVector=021BD +DownLeftVectorBar=02956 +DownRightTeeVector=0295F +DownRightVector=021C1 +DownRightVectorBar=02957 +DownTee=022A4 +DownTeeArrow=021A7 +Downarrow=021D3 +Dscr=1D49F +Dstrok=00110 +ENG=0014A +ETH=000D0 +Eacute=000C9 +Ecaron=0011A +Ecirc=000CA +Ecy=0042D +Edot=00116 +Efr=1D508 +Egrave=000C8 +Element=02208 +Emacr=00112 +EmptySmallSquare=025FB +EmptyVerySmallSquare=025AB +Eogon=00118 +Eopf=1D53C +Epsilon=00395 +Equal=02A75 +EqualTilde=02242 +Equilibrium=021CC +Escr=02130 +Esim=02A73 +Eta=00397 +Euml=000CB +Exists=02203 +ExponentialE=02147 +Fcy=00424 +Ffr=1D509 +FilledSmallSquare=025FC +FilledVerySmallSquare=025AA +Fopf=1D53D +ForAll=02200 +Fouriertrf=02131 +Fscr=02131 +GJcy=00403 +GT=0003E +Gamma=00393 +Gammad=003DC +Gbreve=0011E +Gcedil=00122 +Gcirc=0011C +Gcy=00413 +Gdot=00120 +Gfr=1D50A +Gg=022D9 +Gopf=1D53E +GreaterEqual=02265 +GreaterEqualLess=022DB +GreaterFullEqual=02267 +GreaterGreater=02AA2 +GreaterLess=02277 +GreaterSlantEqual=02A7E +GreaterTilde=02273 +Gscr=1D4A2 +Gt=0226B +HARDcy=0042A +Hacek=002C7 +Hat=0005E +Hcirc=00124 +Hfr=0210C +HilbertSpace=0210B +Hopf=0210D +HorizontalLine=02500 +Hscr=0210B +Hstrok=00126 +HumpDownHump=0224E +HumpEqual=0224F +IEcy=00415 +IJlig=00132 +IOcy=00401 +Iacute=000CD +Icirc=000CE +Icy=00418 +Idot=00130 +Ifr=02111 +Igrave=000CC +Im=02111 +Imacr=0012A +ImaginaryI=02148 +Implies=021D2 +Int=0222C +Integral=0222B +Intersection=022C2 +InvisibleComma=02063 +InvisibleTimes=02062 +Iogon=0012E +Iopf=1D540 +Iota=00399 +Iscr=02110 +Itilde=00128 +Iukcy=00406 +Iuml=000CF +Jcirc=00134 +Jcy=00419 +Jfr=1D50D +Jopf=1D541 +Jscr=1D4A5 +Jsercy=00408 +Jukcy=00404 +KHcy=00425 +KJcy=0040C +Kappa=0039A +Kcedil=00136 +Kcy=0041A +Kfr=1D50E +Kopf=1D542 +Kscr=1D4A6 +LJcy=00409 +LT=0003C +Lacute=00139 +Lambda=0039B +Lang=027EA +Laplacetrf=02112 +Larr=0219E +Lcaron=0013D +Lcedil=0013B +Lcy=0041B +LeftAngleBracket=027E8 +LeftArrow=02190 +LeftArrowBar=021E4 +LeftArrowRightArrow=021C6 +LeftCeiling=02308 +LeftDoubleBracket=027E6 +LeftDownTeeVector=02961 +LeftDownVector=021C3 +LeftDownVectorBar=02959 +LeftFloor=0230A +LeftRightArrow=02194 +LeftRightVector=0294E +LeftTee=022A3 +LeftTeeArrow=021A4 +LeftTeeVector=0295A +LeftTriangle=022B2 +LeftTriangleBar=029CF +LeftTriangleEqual=022B4 +LeftUpDownVector=02951 +LeftUpTeeVector=02960 +LeftUpVector=021BF +LeftUpVectorBar=02958 +LeftVector=021BC +LeftVectorBar=02952 +Leftarrow=021D0 +Leftrightarrow=021D4 +LessEqualGreater=022DA +LessFullEqual=02266 +LessGreater=02276 +LessLess=02AA1 +LessSlantEqual=02A7D +LessTilde=02272 +Lfr=1D50F +Ll=022D8 +Lleftarrow=021DA +Lmidot=0013F +LongLeftArrow=027F5 +LongLeftRightArrow=027F7 +LongRightArrow=027F6 +Longleftarrow=027F8 +Longleftrightarrow=027FA +Longrightarrow=027F9 +Lopf=1D543 +LowerLeftArrow=02199 +LowerRightArrow=02198 +Lscr=02112 +Lsh=021B0 +Lstrok=00141 +Lt=0226A +Map=02905 +Mcy=0041C +MediumSpace=0205F +Mellintrf=02133 +Mfr=1D510 +MinusPlus=02213 +Mopf=1D544 +Mscr=02133 +Mu=0039C +NJcy=0040A +Nacute=00143 +Ncaron=00147 +Ncedil=00145 +Ncy=0041D +NegativeMediumSpace=0200B +NegativeThickSpace=0200B +NegativeThinSpace=0200B +NegativeVeryThinSpace=0200B +NestedGreaterGreater=0226B +NestedLessLess=0226A +NewLine=0000A +Nfr=1D511 +NoBreak=02060 +NonBreakingSpace=000A0 +Nopf=02115 +Not=02AEC +NotCongruent=02262 +NotCupCap=0226D +NotDoubleVerticalBar=02226 +NotElement=02209 +NotEqual=02260 +NotExists=02204 +NotGreater=0226F +NotGreaterEqual=02271 +NotGreaterLess=02279 +NotGreaterTilde=02275 +NotLeftTriangle=022EA +NotLeftTriangleEqual=022EC +NotLess=0226E +NotLessEqual=02270 +NotLessGreater=02278 +NotLessTilde=02274 +NotPrecedes=02280 +NotPrecedesSlantEqual=022E0 +NotReverseElement=0220C +NotRightTriangle=022EB +NotRightTriangleEqual=022ED +NotSquareSubsetEqual=022E2 +NotSquareSupersetEqual=022E3 +NotSubsetEqual=02288 +NotSucceeds=02281 +NotSucceedsSlantEqual=022E1 +NotSupersetEqual=02289 +NotTilde=02241 +NotTildeEqual=02244 +NotTildeFullEqual=02247 +NotTildeTilde=02249 +NotVerticalBar=02224 +Nscr=1D4A9 +Ntilde=000D1 +Nu=0039D +OElig=00152 +Oacute=000D3 +Ocirc=000D4 +Ocy=0041E +Odblac=00150 +Ofr=1D512 +Ograve=000D2 +Omacr=0014C +Omega=003A9 +Omicron=0039F +Oopf=1D546 +OpenCurlyDoubleQuote=0201C +OpenCurlyQuote=02018 +Or=02A54 +Oscr=1D4AA +Oslash=000D8 +Otilde=000D5 +Otimes=02A37 +Ouml=000D6 +OverBar=0203E +OverBrace=023DE +OverBracket=023B4 +OverParenthesis=023DC +PartialD=02202 +Pcy=0041F +Pfr=1D513 +Phi=003A6 +Pi=003A0 +PlusMinus=000B1 +Poincareplane=0210C +Popf=02119 +Pr=02ABB +Precedes=0227A +PrecedesEqual=02AAF +PrecedesSlantEqual=0227C +PrecedesTilde=0227E +Prime=02033 +Product=0220F +Proportion=02237 +Proportional=0221D +Pscr=1D4AB +Psi=003A8 +QUOT=00022 +Qfr=1D514 +Qopf=0211A +Qscr=1D4AC +RBarr=02910 +REG=000AE +Racute=00154 +Rang=027EB +Rarr=021A0 +Rarrtl=02916 +Rcaron=00158 +Rcedil=00156 +Rcy=00420 +Re=0211C +ReverseElement=0220B +ReverseEquilibrium=021CB +ReverseUpEquilibrium=0296F +Rfr=0211C +Rho=003A1 +RightAngleBracket=027E9 +RightArrow=02192 +RightArrowBar=021E5 +RightArrowLeftArrow=021C4 +RightCeiling=02309 +RightDoubleBracket=027E7 +RightDownTeeVector=0295D +RightDownVector=021C2 +RightDownVectorBar=02955 +RightFloor=0230B +RightTee=022A2 +RightTeeArrow=021A6 +RightTeeVector=0295B +RightTriangle=022B3 +RightTriangleBar=029D0 +RightTriangleEqual=022B5 +RightUpDownVector=0294F +RightUpTeeVector=0295C +RightUpVector=021BE +RightUpVectorBar=02954 +RightVector=021C0 +RightVectorBar=02953 +Rightarrow=021D2 +Ropf=0211D +RoundImplies=02970 +Rrightarrow=021DB +Rscr=0211B +Rsh=021B1 +RuleDelayed=029F4 +SHCHcy=00429 +SHcy=00428 +SOFTcy=0042C +Sacute=0015A +Sc=02ABC +Scaron=00160 +Scedil=0015E +Scirc=0015C +Scy=00421 +Sfr=1D516 +ShortDownArrow=02193 +ShortLeftArrow=02190 +ShortRightArrow=02192 +ShortUpArrow=02191 +Sigma=003A3 +SmallCircle=02218 +Sopf=1D54A +Sqrt=0221A +Square=025A1 +SquareIntersection=02293 +SquareSubset=0228F +SquareSubsetEqual=02291 +SquareSuperset=02290 +SquareSupersetEqual=02292 +SquareUnion=02294 +Sscr=1D4AE +Star=022C6 +Sub=022D0 +Subset=022D0 +SubsetEqual=02286 +Succeeds=0227B +SucceedsEqual=02AB0 +SucceedsSlantEqual=0227D +SucceedsTilde=0227F +SuchThat=0220B +Sum=02211 +Sup=022D1 +Superset=02283 +SupersetEqual=02287 +Supset=022D1 +THORN=000DE +TRADE=02122 +TSHcy=0040B +TScy=00426 +Tab=00009 +Tau=003A4 +Tcaron=00164 +Tcedil=00162 +Tcy=00422 +Tfr=1D517 +Therefore=02234 +Theta=00398 +ThinSpace=02009 +Tilde=0223C +TildeEqual=02243 +TildeFullEqual=02245 +TildeTilde=02248 +Topf=1D54B +TripleDot=020DB +Tscr=1D4AF +Tstrok=00166 +Uacute=000DA +Uarr=0219F +Uarrocir=02949 +Ubrcy=0040E +Ubreve=0016C +Ucirc=000DB +Ucy=00423 +Udblac=00170 +Ufr=1D518 +Ugrave=000D9 +Umacr=0016A +UnderBar=0005F +UnderBrace=023DF +UnderBracket=023B5 +UnderParenthesis=023DD +Union=022C3 +UnionPlus=0228E +Uogon=00172 +Uopf=1D54C +UpArrow=02191 +UpArrowBar=02912 +UpArrowDownArrow=021C5 +UpDownArrow=02195 +UpEquilibrium=0296E +UpTee=022A5 +UpTeeArrow=021A5 +Uparrow=021D1 +Updownarrow=021D5 +UpperLeftArrow=02196 +UpperRightArrow=02197 +Upsi=003D2 +Upsilon=003A5 +Uring=0016E +Uscr=1D4B0 +Utilde=00168 +Uuml=000DC +VDash=022AB +Vbar=02AEB +Vcy=00412 +Vdash=022A9 +Vdashl=02AE6 +Vee=022C1 +Verbar=02016 +Vert=02016 +VerticalBar=02223 +VerticalLine=0007C +VerticalSeparator=02758 +VerticalTilde=02240 +VeryThinSpace=0200A +Vfr=1D519 +Vopf=1D54D +Vscr=1D4B1 +Vvdash=022AA +Wcirc=00174 +Wedge=022C0 +Wfr=1D51A +Wopf=1D54E +Wscr=1D4B2 +Xfr=1D51B +Xi=0039E +Xopf=1D54F +Xscr=1D4B3 +YAcy=0042F +YIcy=00407 +YUcy=0042E +Yacute=000DD +Ycirc=00176 +Ycy=0042B +Yfr=1D51C +Yopf=1D550 +Yscr=1D4B4 +Yuml=00178 +ZHcy=00416 +Zacute=00179 +Zcaron=0017D +Zcy=00417 +Zdot=0017B +ZeroWidthSpace=0200B +Zeta=00396 +Zfr=02128 +Zopf=02124 +Zscr=1D4B5 +aacute=000E1 +abreve=00103 +ac=0223E +acd=0223F +acirc=000E2 +acute=000B4 +acy=00430 +aelig=000E6 +af=02061 +afr=1D51E +agrave=000E0 +alefsym=02135 +aleph=02135 +alpha=003B1 +amacr=00101 +amalg=02A3F +amp=00026 +and=02227 +andand=02A55 +andd=02A5C +andslope=02A58 +andv=02A5A +ang=02220 +ange=029A4 +angle=02220 +angmsd=02221 +angmsdaa=029A8 +angmsdab=029A9 +angmsdac=029AA +angmsdad=029AB +angmsdae=029AC +angmsdaf=029AD +angmsdag=029AE +angmsdah=029AF +angrt=0221F +angrtvb=022BE +angrtvbd=0299D +angsph=02222 +angst=000C5 +angzarr=0237C +aogon=00105 +aopf=1D552 +ap=02248 +apE=02A70 +apacir=02A6F +ape=0224A +apid=0224B +apos=00027 +approx=02248 +approxeq=0224A +aring=000E5 +ascr=1D4B6 +ast=0002A +asymp=02248 +asympeq=0224D +atilde=000E3 +auml=000E4 +awconint=02233 +awint=02A11 +bNot=02AED +backcong=0224C +backepsilon=003F6 +backprime=02035 +backsim=0223D +backsimeq=022CD +barvee=022BD +barwed=02305 +barwedge=02305 +bbrk=023B5 +bbrktbrk=023B6 +bcong=0224C +bcy=00431 +bdquo=0201E +becaus=02235 +because=02235 +bemptyv=029B0 +bepsi=003F6 +bernou=0212C +beta=003B2 +beth=02136 +between=0226C +bfr=1D51F +bigcap=022C2 +bigcirc=025EF +bigcup=022C3 +bigodot=02A00 +bigoplus=02A01 +bigotimes=02A02 +bigsqcup=02A06 +bigstar=02605 +bigtriangledown=025BD +bigtriangleup=025B3 +biguplus=02A04 +bigvee=022C1 +bigwedge=022C0 +bkarow=0290D +blacklozenge=029EB +blacksquare=025AA +blacktriangle=025B4 +blacktriangledown=025BE +blacktriangleleft=025C2 +blacktriangleright=025B8 +blank=02423 +blk12=02592 +blk14=02591 +blk34=02593 +block=02588 +bnot=02310 +bopf=1D553 +bot=022A5 +bottom=022A5 +bowtie=022C8 +boxDL=02557 +boxDR=02554 +boxDl=02556 +boxDr=02553 +boxH=02550 +boxHD=02566 +boxHU=02569 +boxHd=02564 +boxHu=02567 +boxUL=0255D +boxUR=0255A +boxUl=0255C +boxUr=02559 +boxV=02551 +boxVH=0256C +boxVL=02563 +boxVR=02560 +boxVh=0256B +boxVl=02562 +boxVr=0255F +boxbox=029C9 +boxdL=02555 +boxdR=02552 +boxdl=02510 +boxdr=0250C +boxh=02500 +boxhD=02565 +boxhU=02568 +boxhd=0252C +boxhu=02534 +boxminus=0229F +boxplus=0229E +boxtimes=022A0 +boxuL=0255B +boxuR=02558 +boxul=02518 +boxur=02514 +boxv=02502 +boxvH=0256A +boxvL=02561 +boxvR=0255E +boxvh=0253C +boxvl=02524 +boxvr=0251C +bprime=02035 +breve=002D8 +brvbar=000A6 +bscr=1D4B7 +bsemi=0204F +bsim=0223D +bsime=022CD +bsol=0005C +bsolb=029C5 +bsolhsub=027C8 +bull=02022 +bullet=02022 +bump=0224E +bumpE=02AAE +bumpe=0224F +bumpeq=0224F +cacute=00107 +cap=02229 +capand=02A44 +capbrcup=02A49 +capcap=02A4B +capcup=02A47 +capdot=02A40 +caret=02041 +caron=002C7 +ccaps=02A4D +ccaron=0010D +ccedil=000E7 +ccirc=00109 +ccups=02A4C +ccupssm=02A50 +cdot=0010B +cedil=000B8 +cemptyv=029B2 +cent=000A2 +centerdot=000B7 +cfr=1D520 +chcy=00447 +check=02713 +checkmark=02713 +chi=003C7 +cir=025CB +cirE=029C3 +circ=002C6 +circeq=02257 +circlearrowleft=021BA +circlearrowright=021BB +circledR=000AE +circledS=024C8 +circledast=0229B +circledcirc=0229A +circleddash=0229D +cire=02257 +cirfnint=02A10 +cirmid=02AEF +cirscir=029C2 +clubs=02663 +clubsuit=02663 +colon=0003A +colone=02254 +coloneq=02254 +comma=0002C +commat=00040 +comp=02201 +compfn=02218 +complement=02201 +complexes=02102 +cong=02245 +congdot=02A6D +conint=0222E +copf=1D554 +coprod=02210 +copy=000A9 +copysr=02117 +crarr=021B5 +cross=02717 +cscr=1D4B8 +csub=02ACF +csube=02AD1 +csup=02AD0 +csupe=02AD2 +ctdot=022EF +cudarrl=02938 +cudarrr=02935 +cuepr=022DE +cuesc=022DF +cularr=021B6 +cularrp=0293D +cup=0222A +cupbrcap=02A48 +cupcap=02A46 +cupcup=02A4A +cupdot=0228D +cupor=02A45 +curarr=021B7 +curarrm=0293C +curlyeqprec=022DE +curlyeqsucc=022DF +curlyvee=022CE +curlywedge=022CF +curren=000A4 +curvearrowleft=021B6 +curvearrowright=021B7 +cuvee=022CE +cuwed=022CF +cwconint=02232 +cwint=02231 +cylcty=0232D +dArr=021D3 +dHar=02965 +dagger=02020 +daleth=02138 +darr=02193 +dash=02010 +dashv=022A3 +dbkarow=0290F +dblac=002DD +dcaron=0010F +dcy=00434 +dd=02146 +ddagger=02021 +ddarr=021CA +ddotseq=02A77 +deg=000B0 +delta=003B4 +demptyv=029B1 +dfisht=0297F +dfr=1D521 +dharl=021C3 +dharr=021C2 +diam=022C4 +diamond=022C4 +diamondsuit=02666 +diams=02666 +die=000A8 +digamma=003DD +disin=022F2 +div=000F7 +divide=000F7 +divideontimes=022C7 +divonx=022C7 +djcy=00452 +dlcorn=0231E +dlcrop=0230D +dollar=00024 +dopf=1D555 +dot=002D9 +doteq=02250 +doteqdot=02251 +dotminus=02238 +dotplus=02214 +dotsquare=022A1 +doublebarwedge=02306 +downarrow=02193 +downdownarrows=021CA +downharpoonleft=021C3 +downharpoonright=021C2 +drbkarow=02910 +drcorn=0231F +drcrop=0230C +dscr=1D4B9 +dscy=00455 +dsol=029F6 +dstrok=00111 +dtdot=022F1 +dtri=025BF +dtrif=025BE +duarr=021F5 +duhar=0296F +dwangle=029A6 +dzcy=0045F +dzigrarr=027FF +eDDot=02A77 +eDot=02251 +eacute=000E9 +easter=02A6E +ecaron=0011B +ecir=02256 +ecirc=000EA +ecolon=02255 +ecy=0044D +edot=00117 +ee=02147 +efDot=02252 +efr=1D522 +eg=02A9A +egrave=000E8 +egs=02A96 +egsdot=02A98 +el=02A99 +elinters=023E7 +ell=02113 +els=02A95 +elsdot=02A97 +emacr=00113 +empty=02205 +emptyset=02205 +emptyv=02205 +emsp13=02004 +emsp14=02005 +emsp=02003 +eng=0014B +ensp=02002 +eogon=00119 +eopf=1D556 +epar=022D5 +eparsl=029E3 +eplus=02A71 +epsi=003B5 +epsilon=003B5 +epsiv=003F5 +eqcirc=02256 +eqcolon=02255 +eqsim=02242 +eqslantgtr=02A96 +eqslantless=02A95 +equals=0003D +equest=0225F +equiv=02261 +equivDD=02A78 +eqvparsl=029E5 +erDot=02253 +erarr=02971 +escr=0212F +esdot=02250 +esim=02242 +eta=003B7 +eth=000F0 +euml=000EB +euro=020AC +excl=00021 +exist=02203 +expectation=02130 +exponentiale=02147 +fallingdotseq=02252 +fcy=00444 +female=02640 +ffilig=0FB03 +fflig=0FB00 +ffllig=0FB04 +ffr=1D523 +filig=0FB01 +flat=0266D +fllig=0FB02 +fltns=025B1 +fnof=00192 +fopf=1D557 +forall=02200 +fork=022D4 +forkv=02AD9 +fpartint=02A0D +frac12=000BD +frac13=02153 +frac14=000BC +frac15=02155 +frac16=02159 +frac18=0215B +frac23=02154 +frac25=02156 +frac34=000BE +frac35=02157 +frac38=0215C +frac45=02158 +frac56=0215A +frac58=0215D +frac78=0215E +frasl=02044 +frown=02322 +fscr=1D4BB +gE=02267 +gEl=02A8C +gacute=001F5 +gamma=003B3 +gammad=003DD +gap=02A86 +gbreve=0011F +gcirc=0011D +gcy=00433 +gdot=00121 +ge=02265 +gel=022DB +geq=02265 +geqq=02267 +geqslant=02A7E +ges=02A7E +gescc=02AA9 +gesdot=02A80 +gesdoto=02A82 +gesdotol=02A84 +gesles=02A94 +gfr=1D524 +gg=0226B +ggg=022D9 +gimel=02137 +gjcy=00453 +gl=02277 +glE=02A92 +gla=02AA5 +glj=02AA4 +gnE=02269 +gnap=02A8A +gnapprox=02A8A +gne=02A88 +gneq=02A88 +gneqq=02269 +gnsim=022E7 +gopf=1D558 +grave=00060 +gscr=0210A +gsim=02273 +gsime=02A8E +gsiml=02A90 +gt=0003E +gtcc=02AA7 +gtcir=02A7A +gtdot=022D7 +gtlPar=02995 +gtquest=02A7C +gtrapprox=02A86 +gtrarr=02978 +gtrdot=022D7 +gtreqless=022DB +gtreqqless=02A8C +gtrless=02277 +gtrsim=02273 +hArr=021D4 +hairsp=0200A +half=000BD +hamilt=0210B +hardcy=0044A +harr=02194 +harrcir=02948 +harrw=021AD +hbar=0210F +hcirc=00125 +hearts=02665 +heartsuit=02665 +hellip=02026 +hercon=022B9 +hfr=1D525 +hksearow=02925 +hkswarow=02926 +hoarr=021FF +homtht=0223B +hookleftarrow=021A9 +hookrightarrow=021AA +hopf=1D559 +horbar=02015 +hscr=1D4BD +hslash=0210F +hstrok=00127 +hybull=02043 +hyphen=02010 +iacute=000ED +ic=02063 +icirc=000EE +icy=00438 +iecy=00435 +iexcl=000A1 +iff=021D4 +ifr=1D526 +igrave=000EC +ii=02148 +iiiint=02A0C +iiint=0222D +iinfin=029DC +iiota=02129 +ijlig=00133 +imacr=0012B +image=02111 +imagline=02110 +imagpart=02111 +imath=00131 +imof=022B7 +imped=001B5 +in=02208 +incare=02105 +infin=0221E +infintie=029DD +inodot=00131 +int=0222B +intcal=022BA +integers=02124 +intercal=022BA +intlarhk=02A17 +intprod=02A3C +iocy=00451 +iogon=0012F +iopf=1D55A +iota=003B9 +iprod=02A3C +iquest=000BF +iscr=1D4BE +isin=02208 +isinE=022F9 +isindot=022F5 +isins=022F4 +isinsv=022F3 +isinv=02208 +it=02062 +itilde=00129 +iukcy=00456 +iuml=000EF +jcirc=00135 +jcy=00439 +jfr=1D527 +jmath=00237 +jopf=1D55B +jscr=1D4BF +jsercy=00458 +jukcy=00454 +kappa=003BA +kappav=003F0 +kcedil=00137 +kcy=0043A +kfr=1D528 +kgreen=00138 +khcy=00445 +kjcy=0045C +kopf=1D55C +kscr=1D4C0 +lAarr=021DA +lArr=021D0 +lAtail=0291B +lBarr=0290E +lE=02266 +lEg=02A8B +lHar=02962 +lacute=0013A +laemptyv=029B4 +lagran=02112 +lambda=003BB +lang=027E8 +langd=02991 +langle=027E8 +lap=02A85 +laquo=000AB +larr=02190 +larrb=021E4 +larrbfs=0291F +larrfs=0291D +larrhk=021A9 +larrlp=021AB +larrpl=02939 +larrsim=02973 +larrtl=021A2 +lat=02AAB +latail=02919 +late=02AAD +lbarr=0290C +lbbrk=02772 +lbrace=0007B +lbrack=0005B +lbrke=0298B +lbrksld=0298F +lbrkslu=0298D +lcaron=0013E +lcedil=0013C +lceil=02308 +lcub=0007B +lcy=0043B +ldca=02936 +ldquo=0201C +ldquor=0201E +ldrdhar=02967 +ldrushar=0294B +ldsh=021B2 +le=02264 +leftarrow=02190 +leftarrowtail=021A2 +leftharpoondown=021BD +leftharpoonup=021BC +leftleftarrows=021C7 +leftrightarrow=02194 +leftrightarrows=021C6 +leftrightharpoons=021CB +leftrightsquigarrow=021AD +leftthreetimes=022CB +leg=022DA +leq=02264 +leqq=02266 +leqslant=02A7D +les=02A7D +lescc=02AA8 +lesdot=02A7F +lesdoto=02A81 +lesdotor=02A83 +lesges=02A93 +lessapprox=02A85 +lessdot=022D6 +lesseqgtr=022DA +lesseqqgtr=02A8B +lessgtr=02276 +lesssim=02272 +lfisht=0297C +lfloor=0230A +lfr=1D529 +lg=02276 +lgE=02A91 +lhard=021BD +lharu=021BC +lharul=0296A +lhblk=02584 +ljcy=00459 +ll=0226A +llarr=021C7 +llcorner=0231E +llhard=0296B +lltri=025FA +lmidot=00140 +lmoust=023B0 +lmoustache=023B0 +lnE=02268 +lnap=02A89 +lnapprox=02A89 +lne=02A87 +lneq=02A87 +lneqq=02268 +lnsim=022E6 +loang=027EC +loarr=021FD +lobrk=027E6 +longleftarrow=027F5 +longleftrightarrow=027F7 +longmapsto=027FC +longrightarrow=027F6 +looparrowleft=021AB +looparrowright=021AC +lopar=02985 +lopf=1D55D +loplus=02A2D +lotimes=02A34 +lowast=02217 +lowbar=0005F +loz=025CA +lozenge=025CA +lozf=029EB +lpar=00028 +lparlt=02993 +lrarr=021C6 +lrcorner=0231F +lrhar=021CB +lrhard=0296D +lrm=0200E +lrtri=022BF +lsaquo=02039 +lscr=1D4C1 +lsh=021B0 +lsim=02272 +lsime=02A8D +lsimg=02A8F +lsqb=0005B +lsquo=02018 +lsquor=0201A +lstrok=00142 +lt=0003C +ltcc=02AA6 +ltcir=02A79 +ltdot=022D6 +lthree=022CB +ltimes=022C9 +ltlarr=02976 +ltquest=02A7B +ltrPar=02996 +ltri=025C3 +ltrie=022B4 +ltrif=025C2 +lurdshar=0294A +luruhar=02966 +mDDot=0223A +macr=000AF +male=02642 +malt=02720 +maltese=02720 +map=021A6 +mapsto=021A6 +mapstodown=021A7 +mapstoleft=021A4 +mapstoup=021A5 +marker=025AE +mcomma=02A29 +mcy=0043C +mdash=02014 +measuredangle=02221 +mfr=1D52A +mho=02127 +micro=000B5 +mid=02223 +midast=0002A +midcir=02AF0 +middot=000B7 +minus=02212 +minusb=0229F +minusd=02238 +minusdu=02A2A +mlcp=02ADB +mldr=02026 +mnplus=02213 +models=022A7 +mopf=1D55E +mp=02213 +mscr=1D4C2 +mstpos=0223E +mu=003BC +multimap=022B8 +mumap=022B8 +nLeftarrow=021CD +nLeftrightarrow=021CE +nRightarrow=021CF +nVDash=022AF +nVdash=022AE +nabla=02207 +nacute=00144 +nap=02249 +napos=00149 +napprox=02249 +natur=0266E +natural=0266E +naturals=02115 +nbsp=000A0 +ncap=02A43 +ncaron=00148 +ncedil=00146 +ncong=02247 +ncup=02A42 +ncy=0043D +ndash=02013 +ne=02260 +neArr=021D7 +nearhk=02924 +nearr=02197 +nearrow=02197 +nequiv=02262 +nesear=02928 +nexist=02204 +nexists=02204 +nfr=1D52B +nge=02271 +ngeq=02271 +ngsim=02275 +ngt=0226F +ngtr=0226F +nhArr=021CE +nharr=021AE +nhpar=02AF2 +ni=0220B +nis=022FC +nisd=022FA +niv=0220B +njcy=0045A +nlArr=021CD +nlarr=0219A +nldr=02025 +nle=02270 +nleftarrow=0219A +nleftrightarrow=021AE +nleq=02270 +nless=0226E +nlsim=02274 +nlt=0226E +nltri=022EA +nltrie=022EC +nmid=02224 +nopf=1D55F +not=000AC +notin=02209 +notinva=02209 +notinvb=022F7 +notinvc=022F6 +notni=0220C +notniva=0220C +notnivb=022FE +notnivc=022FD +npar=02226 +nparallel=02226 +npolint=02A14 +npr=02280 +nprcue=022E0 +nprec=02280 +nrArr=021CF +nrarr=0219B +nrightarrow=0219B +nrtri=022EB +nrtrie=022ED +nsc=02281 +nsccue=022E1 +nscr=1D4C3 +nshortmid=02224 +nshortparallel=02226 +nsim=02241 +nsime=02244 +nsimeq=02244 +nsmid=02224 +nspar=02226 +nsqsube=022E2 +nsqsupe=022E3 +nsub=02284 +nsube=02288 +nsubseteq=02288 +nsucc=02281 +nsup=02285 +nsupe=02289 +nsupseteq=02289 +ntgl=02279 +ntilde=000F1 +ntlg=02278 +ntriangleleft=022EA +ntrianglelefteq=022EC +ntriangleright=022EB +ntrianglerighteq=022ED +nu=003BD +num=00023 +numero=02116 +numsp=02007 +nvDash=022AD +nvHarr=02904 +nvdash=022AC +nvinfin=029DE +nvlArr=02902 +nvrArr=02903 +nwArr=021D6 +nwarhk=02923 +nwarr=02196 +nwarrow=02196 +nwnear=02927 +oS=024C8 +oacute=000F3 +oast=0229B +ocir=0229A +ocirc=000F4 +ocy=0043E +odash=0229D +odblac=00151 +odiv=02A38 +odot=02299 +odsold=029BC +oelig=00153 +ofcir=029BF +ofr=1D52C +ogon=002DB +ograve=000F2 +ogt=029C1 +ohbar=029B5 +ohm=003A9 +oint=0222E +olarr=021BA +olcir=029BE +olcross=029BB +oline=0203E +olt=029C0 +omacr=0014D +omega=003C9 +omicron=003BF +omid=029B6 +ominus=02296 +oopf=1D560 +opar=029B7 +operp=029B9 +oplus=02295 +or=02228 +orarr=021BB +ord=02A5D +order=02134 +orderof=02134 +ordf=000AA +ordm=000BA +origof=022B6 +oror=02A56 +orslope=02A57 +orv=02A5B +oscr=02134 +oslash=000F8 +osol=02298 +otilde=000F5 +otimes=02297 +otimesas=02A36 +ouml=000F6 +ovbar=0233D +par=02225 +para=000B6 +parallel=02225 +parsim=02AF3 +parsl=02AFD +part=02202 +pcy=0043F +percnt=00025 +period=0002E +permil=02030 +perp=022A5 +pertenk=02031 +pfr=1D52D +phi=003C6 +phiv=003D5 +phmmat=02133 +phone=0260E +pi=003C0 +pitchfork=022D4 +piv=003D6 +planck=0210F +planckh=0210E +plankv=0210F +plus=0002B +plusacir=02A23 +plusb=0229E +pluscir=02A22 +plusdo=02214 +plusdu=02A25 +pluse=02A72 +plusmn=000B1 +plussim=02A26 +plustwo=02A27 +pm=000B1 +pointint=02A15 +popf=1D561 +pound=000A3 +pr=0227A +prE=02AB3 +prap=02AB7 +prcue=0227C +pre=02AAF +prec=0227A +precapprox=02AB7 +preccurlyeq=0227C +preceq=02AAF +precnapprox=02AB9 +precneqq=02AB5 +precnsim=022E8 +precsim=0227E +prime=02032 +primes=02119 +prnE=02AB5 +prnap=02AB9 +prnsim=022E8 +prod=0220F +profalar=0232E +profline=02312 +profsurf=02313 +prop=0221D +propto=0221D +prsim=0227E +prurel=022B0 +pscr=1D4C5 +psi=003C8 +puncsp=02008 +qfr=1D52E +qint=02A0C +qopf=1D562 +qprime=02057 +qscr=1D4C6 +quaternions=0210D +quatint=02A16 +quest=0003F +questeq=0225F +quot=00022 +rAarr=021DB +rArr=021D2 +rAtail=0291C +rBarr=0290F +rHar=02964 +racute=00155 +radic=0221A +raemptyv=029B3 +rang=027E9 +rangd=02992 +range=029A5 +rangle=027E9 +raquo=000BB +rarr=02192 +rarrap=02975 +rarrb=021E5 +rarrbfs=02920 +rarrc=02933 +rarrfs=0291E +rarrhk=021AA +rarrlp=021AC +rarrpl=02945 +rarrsim=02974 +rarrtl=021A3 +rarrw=0219D +ratail=0291A +ratio=02236 +rationals=0211A +rbarr=0290D +rbbrk=02773 +rbrace=0007D +rbrack=0005D +rbrke=0298C +rbrksld=0298E +rbrkslu=02990 +rcaron=00159 +rcedil=00157 +rceil=02309 +rcub=0007D +rcy=00440 +rdca=02937 +rdldhar=02969 +rdquo=0201D +rdquor=0201D +rdsh=021B3 +real=0211C +realine=0211B +realpart=0211C +reals=0211D +rect=025AD +reg=000AE +rfisht=0297D +rfloor=0230B +rfr=1D52F +rhard=021C1 +rharu=021C0 +rharul=0296C +rho=003C1 +rhov=003F1 +rightarrow=02192 +rightarrowtail=021A3 +rightharpoondown=021C1 +rightharpoonup=021C0 +rightleftarrows=021C4 +rightleftharpoons=021CC +rightrightarrows=021C9 +rightsquigarrow=0219D +rightthreetimes=022CC +ring=002DA +risingdotseq=02253 +rlarr=021C4 +rlhar=021CC +rlm=0200F +rmoust=023B1 +rmoustache=023B1 +rnmid=02AEE +roang=027ED +roarr=021FE +robrk=027E7 +ropar=02986 +ropf=1D563 +roplus=02A2E +rotimes=02A35 +rpar=00029 +rpargt=02994 +rppolint=02A12 +rrarr=021C9 +rsaquo=0203A +rscr=1D4C7 +rsh=021B1 +rsqb=0005D +rsquo=02019 +rsquor=02019 +rthree=022CC +rtimes=022CA +rtri=025B9 +rtrie=022B5 +rtrif=025B8 +rtriltri=029CE +ruluhar=02968 +rx=0211E +sacute=0015B +sbquo=0201A +sc=0227B +scE=02AB4 +scap=02AB8 +scaron=00161 +sccue=0227D +sce=02AB0 +scedil=0015F +scirc=0015D +scnE=02AB6 +scnap=02ABA +scnsim=022E9 +scpolint=02A13 +scsim=0227F +scy=00441 +sdot=022C5 +sdotb=022A1 +sdote=02A66 +seArr=021D8 +searhk=02925 +searr=02198 +searrow=02198 +sect=000A7 +semi=0003B +seswar=02929 +setminus=02216 +setmn=02216 +sext=02736 +sfr=1D530 +sfrown=02322 +sharp=0266F +shchcy=00449 +shcy=00448 +shortmid=02223 +shortparallel=02225 +shy=000AD +sigma=003C3 +sigmaf=003C2 +sigmav=003C2 +sim=0223C +simdot=02A6A +sime=02243 +simeq=02243 +simg=02A9E +simgE=02AA0 +siml=02A9D +simlE=02A9F +simne=02246 +simplus=02A24 +simrarr=02972 +slarr=02190 +smallsetminus=02216 +smashp=02A33 +smeparsl=029E4 +smid=02223 +smile=02323 +smt=02AAA +smte=02AAC +softcy=0044C +sol=0002F +solb=029C4 +solbar=0233F +sopf=1D564 +spades=02660 +spadesuit=02660 +spar=02225 +sqcap=02293 +sqcup=02294 +sqsub=0228F +sqsube=02291 +sqsubset=0228F +sqsubseteq=02291 +sqsup=02290 +sqsupe=02292 +sqsupset=02290 +sqsupseteq=02292 +squ=025A1 +square=025A1 +squarf=025AA +squf=025AA +srarr=02192 +sscr=1D4C8 +ssetmn=02216 +ssmile=02323 +sstarf=022C6 +star=02606 +starf=02605 +straightepsilon=003F5 +straightphi=003D5 +strns=000AF +sub=02282 +subE=02AC5 +subdot=02ABD +sube=02286 +subedot=02AC3 +submult=02AC1 +subnE=02ACB +subne=0228A +subplus=02ABF +subrarr=02979 +subset=02282 +subseteq=02286 +subseteqq=02AC5 +subsetneq=0228A +subsetneqq=02ACB +subsim=02AC7 +subsub=02AD5 +subsup=02AD3 +succ=0227B +succapprox=02AB8 +succcurlyeq=0227D +succeq=02AB0 +succnapprox=02ABA +succneqq=02AB6 +succnsim=022E9 +succsim=0227F +sum=02211 +sung=0266A +sup1=000B9 +sup2=000B2 +sup3=000B3 +sup=02283 +supE=02AC6 +supdot=02ABE +supdsub=02AD8 +supe=02287 +supedot=02AC4 +suphsol=027C9 +suphsub=02AD7 +suplarr=0297B +supmult=02AC2 +supnE=02ACC +supne=0228B +supplus=02AC0 +supset=02283 +supseteq=02287 +supseteqq=02AC6 +supsetneq=0228B +supsetneqq=02ACC +supsim=02AC8 +supsub=02AD4 +supsup=02AD6 +swArr=021D9 +swarhk=02926 +swarr=02199 +swarrow=02199 +swnwar=0292A +szlig=000DF +target=02316 +tau=003C4 +tbrk=023B4 +tcaron=00165 +tcedil=00163 +tcy=00442 +tdot=020DB +telrec=02315 +tfr=1D531 +there4=02234 +therefore=02234 +theta=003B8 +thetasym=003D1 +thetav=003D1 +thickapprox=02248 +thicksim=0223C +thinsp=02009 +thkap=02248 +thksim=0223C +thorn=000FE +tilde=002DC +times=000D7 +timesb=022A0 +timesbar=02A31 +timesd=02A30 +tint=0222D +toea=02928 +top=022A4 +topbot=02336 +topcir=02AF1 +topf=1D565 +topfork=02ADA +tosa=02929 +tprime=02034 +trade=02122 +triangle=025B5 +triangledown=025BF +triangleleft=025C3 +trianglelefteq=022B4 +triangleq=0225C +triangleright=025B9 +trianglerighteq=022B5 +tridot=025EC +trie=0225C +triminus=02A3A +triplus=02A39 +trisb=029CD +tritime=02A3B +trpezium=023E2 +tscr=1D4C9 +tscy=00446 +tshcy=0045B +tstrok=00167 +twixt=0226C +twoheadleftarrow=0219E +twoheadrightarrow=021A0 +uArr=021D1 +uHar=02963 +uacute=000FA +uarr=02191 +ubrcy=0045E +ubreve=0016D +ucirc=000FB +ucy=00443 +udarr=021C5 +udblac=00171 +udhar=0296E +ufisht=0297E +ufr=1D532 +ugrave=000F9 +uharl=021BF +uharr=021BE +uhblk=02580 +ulcorn=0231C +ulcorner=0231C +ulcrop=0230F +ultri=025F8 +umacr=0016B +uml=000A8 +uogon=00173 +uopf=1D566 +uparrow=02191 +updownarrow=02195 +upharpoonleft=021BF +upharpoonright=021BE +uplus=0228E +upsi=003C5 +upsih=003D2 +upsilon=003C5 +upuparrows=021C8 +urcorn=0231D +urcorner=0231D +urcrop=0230E +uring=0016F +urtri=025F9 +uscr=1D4CA +utdot=022F0 +utilde=00169 +utri=025B5 +utrif=025B4 +uuarr=021C8 +uuml=000FC +uwangle=029A7 +vArr=021D5 +vBar=02AE8 +vBarv=02AE9 +vDash=022A8 +vangrt=0299C +varepsilon=003F5 +varkappa=003F0 +varnothing=02205 +varphi=003D5 +varpi=003D6 +varpropto=0221D +varr=02195 +varrho=003F1 +varsigma=003C2 +vartheta=003D1 +vartriangleleft=022B2 +vartriangleright=022B3 +vcy=00432 +vdash=022A2 +vee=02228 +veebar=022BB +veeeq=0225A +vellip=022EE +verbar=0007C +vert=0007C +vfr=1D533 +vltri=022B2 +vopf=1D567 +vprop=0221D +vrtri=022B3 +vscr=1D4CB +vzigzag=0299A +wcirc=00175 +wedbar=02A5F +wedge=02227 +wedgeq=02259 +weierp=02118 +wfr=1D534 +wopf=1D568 +wp=02118 +wr=02240 +wreath=02240 +wscr=1D4CC +xcap=022C2 +xcirc=025EF +xcup=022C3 +xdtri=025BD +xfr=1D535 +xhArr=027FA +xharr=027F7 +xi=003BE +xlArr=027F8 +xlarr=027F5 +xmap=027FC +xnis=022FB +xodot=02A00 +xopf=1D569 +xoplus=02A01 +xotime=02A02 +xrArr=027F9 +xrarr=027F6 +xscr=1D4CD +xsqcup=02A06 +xuplus=02A04 +xutri=025B3 +xvee=022C1 +xwedge=022C0 +yacute=000FD +yacy=0044F +ycirc=00177 +ycy=0044B +yen=000A5 +yfr=1D536 +yicy=00457 +yopf=1D56A +yscr=1D4CE +yucy=0044E +yuml=000FF +zacute=0017A +zcaron=0017E +zcy=00437 +zdot=0017C +zeetrf=02128 +zeta=003B6 +zfr=1D537 +zhcy=00436 +zigrarr=021DD +zopf=1D56B +zscr=1D4CF +zwj=0200D +zwnj=0200C diff --git a/libs/org/jsoup/parser/CharacterReader.class b/libs/org/jsoup/parser/CharacterReader.class new file mode 100644 index 0000000..14654cc Binary files /dev/null and b/libs/org/jsoup/parser/CharacterReader.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilder.class b/libs/org/jsoup/parser/HtmlTreeBuilder.class new file mode 100644 index 0000000..a9f94e9 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilder.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$1.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$1.class new file mode 100644 index 0000000..7e81ad8 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$1.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$10.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$10.class new file mode 100644 index 0000000..3bc53a5 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$10.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$11.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$11.class new file mode 100644 index 0000000..6ae1804 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$11.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$12.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$12.class new file mode 100644 index 0000000..c5a9769 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$12.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$13.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$13.class new file mode 100644 index 0000000..d297600 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$13.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$14.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$14.class new file mode 100644 index 0000000..ab3a398 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$14.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$15.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$15.class new file mode 100644 index 0000000..59f084c Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$15.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$16.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$16.class new file mode 100644 index 0000000..8b58fb1 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$16.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$17.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$17.class new file mode 100644 index 0000000..8bf94b9 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$17.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$18.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$18.class new file mode 100644 index 0000000..21d5f97 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$18.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$19.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$19.class new file mode 100644 index 0000000..8dc33bf Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$19.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$2.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$2.class new file mode 100644 index 0000000..1d87886 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$2.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$20.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$20.class new file mode 100644 index 0000000..f7f0ffd Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$20.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$21.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$21.class new file mode 100644 index 0000000..dcd298e Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$21.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$22.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$22.class new file mode 100644 index 0000000..8d795d5 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$22.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$23.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$23.class new file mode 100644 index 0000000..fcbd71c Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$23.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$24.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$24.class new file mode 100644 index 0000000..4571b81 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$24.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$3.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$3.class new file mode 100644 index 0000000..3039b26 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$3.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$4.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$4.class new file mode 100644 index 0000000..8e29dde Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$4.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$5.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$5.class new file mode 100644 index 0000000..f9c9712 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$5.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$6.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$6.class new file mode 100644 index 0000000..b009403 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$6.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$7.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$7.class new file mode 100644 index 0000000..d7b51ee Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$7.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$8.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$8.class new file mode 100644 index 0000000..690800f Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$8.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$9.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$9.class new file mode 100644 index 0000000..fc1e0fe Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$9.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState$Constants.class b/libs/org/jsoup/parser/HtmlTreeBuilderState$Constants.class new file mode 100644 index 0000000..4c3be3a Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState$Constants.class differ diff --git a/libs/org/jsoup/parser/HtmlTreeBuilderState.class b/libs/org/jsoup/parser/HtmlTreeBuilderState.class new file mode 100644 index 0000000..0ec9d34 Binary files /dev/null and b/libs/org/jsoup/parser/HtmlTreeBuilderState.class differ diff --git a/libs/org/jsoup/parser/ParseError.class b/libs/org/jsoup/parser/ParseError.class new file mode 100644 index 0000000..0363057 Binary files /dev/null and b/libs/org/jsoup/parser/ParseError.class differ diff --git a/libs/org/jsoup/parser/ParseErrorList.class b/libs/org/jsoup/parser/ParseErrorList.class new file mode 100644 index 0000000..64077f5 Binary files /dev/null and b/libs/org/jsoup/parser/ParseErrorList.class differ diff --git a/libs/org/jsoup/parser/Parser.class b/libs/org/jsoup/parser/Parser.class new file mode 100644 index 0000000..b40be2c Binary files /dev/null and b/libs/org/jsoup/parser/Parser.class differ diff --git a/libs/org/jsoup/parser/Tag.class b/libs/org/jsoup/parser/Tag.class new file mode 100644 index 0000000..7eef594 Binary files /dev/null and b/libs/org/jsoup/parser/Tag.class differ diff --git a/libs/org/jsoup/parser/Token$1.class b/libs/org/jsoup/parser/Token$1.class new file mode 100644 index 0000000..53a5aa7 Binary files /dev/null and b/libs/org/jsoup/parser/Token$1.class differ diff --git a/libs/org/jsoup/parser/Token$Character.class b/libs/org/jsoup/parser/Token$Character.class new file mode 100644 index 0000000..23ce793 Binary files /dev/null and b/libs/org/jsoup/parser/Token$Character.class differ diff --git a/libs/org/jsoup/parser/Token$Comment.class b/libs/org/jsoup/parser/Token$Comment.class new file mode 100644 index 0000000..29345d9 Binary files /dev/null and b/libs/org/jsoup/parser/Token$Comment.class differ diff --git a/libs/org/jsoup/parser/Token$Doctype.class b/libs/org/jsoup/parser/Token$Doctype.class new file mode 100644 index 0000000..8c18e14 Binary files /dev/null and b/libs/org/jsoup/parser/Token$Doctype.class differ diff --git a/libs/org/jsoup/parser/Token$EOF.class b/libs/org/jsoup/parser/Token$EOF.class new file mode 100644 index 0000000..819847b Binary files /dev/null and b/libs/org/jsoup/parser/Token$EOF.class differ diff --git a/libs/org/jsoup/parser/Token$EndTag.class b/libs/org/jsoup/parser/Token$EndTag.class new file mode 100644 index 0000000..0f785aa Binary files /dev/null and b/libs/org/jsoup/parser/Token$EndTag.class differ diff --git a/libs/org/jsoup/parser/Token$StartTag.class b/libs/org/jsoup/parser/Token$StartTag.class new file mode 100644 index 0000000..963998f Binary files /dev/null and b/libs/org/jsoup/parser/Token$StartTag.class differ diff --git a/libs/org/jsoup/parser/Token$Tag.class b/libs/org/jsoup/parser/Token$Tag.class new file mode 100644 index 0000000..8d20984 Binary files /dev/null and b/libs/org/jsoup/parser/Token$Tag.class differ diff --git a/libs/org/jsoup/parser/Token$TokenType.class b/libs/org/jsoup/parser/Token$TokenType.class new file mode 100644 index 0000000..4a2ef5c Binary files /dev/null and b/libs/org/jsoup/parser/Token$TokenType.class differ diff --git a/libs/org/jsoup/parser/Token.class b/libs/org/jsoup/parser/Token.class new file mode 100644 index 0000000..f1cc389 Binary files /dev/null and b/libs/org/jsoup/parser/Token.class differ diff --git a/libs/org/jsoup/parser/TokenQueue.class b/libs/org/jsoup/parser/TokenQueue.class new file mode 100644 index 0000000..41a0716 Binary files /dev/null and b/libs/org/jsoup/parser/TokenQueue.class differ diff --git a/libs/org/jsoup/parser/Tokeniser.class b/libs/org/jsoup/parser/Tokeniser.class new file mode 100644 index 0000000..4e804c8 Binary files /dev/null and b/libs/org/jsoup/parser/Tokeniser.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$1.class b/libs/org/jsoup/parser/TokeniserState$1.class new file mode 100644 index 0000000..f8c35de Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$1.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$10.class b/libs/org/jsoup/parser/TokeniserState$10.class new file mode 100644 index 0000000..c02b0f0 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$10.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$11.class b/libs/org/jsoup/parser/TokeniserState$11.class new file mode 100644 index 0000000..af38de4 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$11.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$12.class b/libs/org/jsoup/parser/TokeniserState$12.class new file mode 100644 index 0000000..f17940e Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$12.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$13.class b/libs/org/jsoup/parser/TokeniserState$13.class new file mode 100644 index 0000000..0b6c2be Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$13.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$14.class b/libs/org/jsoup/parser/TokeniserState$14.class new file mode 100644 index 0000000..0380488 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$14.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$15.class b/libs/org/jsoup/parser/TokeniserState$15.class new file mode 100644 index 0000000..da74647 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$15.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$16.class b/libs/org/jsoup/parser/TokeniserState$16.class new file mode 100644 index 0000000..906883e Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$16.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$17.class b/libs/org/jsoup/parser/TokeniserState$17.class new file mode 100644 index 0000000..3d5fcd0 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$17.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$18.class b/libs/org/jsoup/parser/TokeniserState$18.class new file mode 100644 index 0000000..a45c86d Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$18.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$19.class b/libs/org/jsoup/parser/TokeniserState$19.class new file mode 100644 index 0000000..63ca0ee Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$19.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$2.class b/libs/org/jsoup/parser/TokeniserState$2.class new file mode 100644 index 0000000..8ba3638 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$2.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$20.class b/libs/org/jsoup/parser/TokeniserState$20.class new file mode 100644 index 0000000..4d2ff36 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$20.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$21.class b/libs/org/jsoup/parser/TokeniserState$21.class new file mode 100644 index 0000000..8a9c6f5 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$21.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$22.class b/libs/org/jsoup/parser/TokeniserState$22.class new file mode 100644 index 0000000..45dd852 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$22.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$23.class b/libs/org/jsoup/parser/TokeniserState$23.class new file mode 100644 index 0000000..65c3f3c Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$23.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$24.class b/libs/org/jsoup/parser/TokeniserState$24.class new file mode 100644 index 0000000..e283240 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$24.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$25.class b/libs/org/jsoup/parser/TokeniserState$25.class new file mode 100644 index 0000000..2380a21 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$25.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$26.class b/libs/org/jsoup/parser/TokeniserState$26.class new file mode 100644 index 0000000..2c3a229 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$26.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$27.class b/libs/org/jsoup/parser/TokeniserState$27.class new file mode 100644 index 0000000..b2960da Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$27.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$28.class b/libs/org/jsoup/parser/TokeniserState$28.class new file mode 100644 index 0000000..89bc89d Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$28.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$29.class b/libs/org/jsoup/parser/TokeniserState$29.class new file mode 100644 index 0000000..5993d3b Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$29.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$3.class b/libs/org/jsoup/parser/TokeniserState$3.class new file mode 100644 index 0000000..a979853 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$3.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$30.class b/libs/org/jsoup/parser/TokeniserState$30.class new file mode 100644 index 0000000..d4dcada Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$30.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$31.class b/libs/org/jsoup/parser/TokeniserState$31.class new file mode 100644 index 0000000..36fe927 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$31.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$32.class b/libs/org/jsoup/parser/TokeniserState$32.class new file mode 100644 index 0000000..db04f99 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$32.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$33.class b/libs/org/jsoup/parser/TokeniserState$33.class new file mode 100644 index 0000000..df7bacc Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$33.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$34.class b/libs/org/jsoup/parser/TokeniserState$34.class new file mode 100644 index 0000000..5c10353 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$34.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$35.class b/libs/org/jsoup/parser/TokeniserState$35.class new file mode 100644 index 0000000..44864d8 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$35.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$36.class b/libs/org/jsoup/parser/TokeniserState$36.class new file mode 100644 index 0000000..27ebd2c Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$36.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$37.class b/libs/org/jsoup/parser/TokeniserState$37.class new file mode 100644 index 0000000..cacd5b3 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$37.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$38.class b/libs/org/jsoup/parser/TokeniserState$38.class new file mode 100644 index 0000000..940f429 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$38.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$39.class b/libs/org/jsoup/parser/TokeniserState$39.class new file mode 100644 index 0000000..7e43219 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$39.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$4.class b/libs/org/jsoup/parser/TokeniserState$4.class new file mode 100644 index 0000000..7ee140d Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$4.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$40.class b/libs/org/jsoup/parser/TokeniserState$40.class new file mode 100644 index 0000000..be4a814 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$40.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$41.class b/libs/org/jsoup/parser/TokeniserState$41.class new file mode 100644 index 0000000..2158083 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$41.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$42.class b/libs/org/jsoup/parser/TokeniserState$42.class new file mode 100644 index 0000000..f6afdc5 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$42.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$43.class b/libs/org/jsoup/parser/TokeniserState$43.class new file mode 100644 index 0000000..9c7f253 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$43.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$44.class b/libs/org/jsoup/parser/TokeniserState$44.class new file mode 100644 index 0000000..2aab717 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$44.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$45.class b/libs/org/jsoup/parser/TokeniserState$45.class new file mode 100644 index 0000000..6cb3c1e Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$45.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$46.class b/libs/org/jsoup/parser/TokeniserState$46.class new file mode 100644 index 0000000..b92db41 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$46.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$47.class b/libs/org/jsoup/parser/TokeniserState$47.class new file mode 100644 index 0000000..8aa3466 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$47.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$48.class b/libs/org/jsoup/parser/TokeniserState$48.class new file mode 100644 index 0000000..b696219 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$48.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$49.class b/libs/org/jsoup/parser/TokeniserState$49.class new file mode 100644 index 0000000..e7142fe Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$49.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$5.class b/libs/org/jsoup/parser/TokeniserState$5.class new file mode 100644 index 0000000..1c4930f Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$5.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$50.class b/libs/org/jsoup/parser/TokeniserState$50.class new file mode 100644 index 0000000..1d48152 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$50.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$51.class b/libs/org/jsoup/parser/TokeniserState$51.class new file mode 100644 index 0000000..d8c7cad Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$51.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$52.class b/libs/org/jsoup/parser/TokeniserState$52.class new file mode 100644 index 0000000..7e917a8 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$52.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$53.class b/libs/org/jsoup/parser/TokeniserState$53.class new file mode 100644 index 0000000..f09d165 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$53.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$54.class b/libs/org/jsoup/parser/TokeniserState$54.class new file mode 100644 index 0000000..45c0896 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$54.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$55.class b/libs/org/jsoup/parser/TokeniserState$55.class new file mode 100644 index 0000000..50eac0c Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$55.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$56.class b/libs/org/jsoup/parser/TokeniserState$56.class new file mode 100644 index 0000000..ce3dac9 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$56.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$57.class b/libs/org/jsoup/parser/TokeniserState$57.class new file mode 100644 index 0000000..16952ae Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$57.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$58.class b/libs/org/jsoup/parser/TokeniserState$58.class new file mode 100644 index 0000000..c94e838 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$58.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$59.class b/libs/org/jsoup/parser/TokeniserState$59.class new file mode 100644 index 0000000..b3aedef Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$59.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$6.class b/libs/org/jsoup/parser/TokeniserState$6.class new file mode 100644 index 0000000..eacbd98 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$6.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$60.class b/libs/org/jsoup/parser/TokeniserState$60.class new file mode 100644 index 0000000..fa9faad Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$60.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$61.class b/libs/org/jsoup/parser/TokeniserState$61.class new file mode 100644 index 0000000..be0714f Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$61.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$62.class b/libs/org/jsoup/parser/TokeniserState$62.class new file mode 100644 index 0000000..8b97716 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$62.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$63.class b/libs/org/jsoup/parser/TokeniserState$63.class new file mode 100644 index 0000000..2041a9f Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$63.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$64.class b/libs/org/jsoup/parser/TokeniserState$64.class new file mode 100644 index 0000000..340cffa Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$64.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$65.class b/libs/org/jsoup/parser/TokeniserState$65.class new file mode 100644 index 0000000..4a3ae6c Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$65.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$66.class b/libs/org/jsoup/parser/TokeniserState$66.class new file mode 100644 index 0000000..c98464c Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$66.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$67.class b/libs/org/jsoup/parser/TokeniserState$67.class new file mode 100644 index 0000000..92f3d8c Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$67.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$7.class b/libs/org/jsoup/parser/TokeniserState$7.class new file mode 100644 index 0000000..ee5d3c1 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$7.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$8.class b/libs/org/jsoup/parser/TokeniserState$8.class new file mode 100644 index 0000000..a29c8e5 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$8.class differ diff --git a/libs/org/jsoup/parser/TokeniserState$9.class b/libs/org/jsoup/parser/TokeniserState$9.class new file mode 100644 index 0000000..02fb4b3 Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState$9.class differ diff --git a/libs/org/jsoup/parser/TokeniserState.class b/libs/org/jsoup/parser/TokeniserState.class new file mode 100644 index 0000000..51c4e9a Binary files /dev/null and b/libs/org/jsoup/parser/TokeniserState.class differ diff --git a/libs/org/jsoup/parser/TreeBuilder.class b/libs/org/jsoup/parser/TreeBuilder.class new file mode 100644 index 0000000..09223d5 Binary files /dev/null and b/libs/org/jsoup/parser/TreeBuilder.class differ diff --git a/libs/org/jsoup/parser/XmlTreeBuilder$1.class b/libs/org/jsoup/parser/XmlTreeBuilder$1.class new file mode 100644 index 0000000..c3e6f02 Binary files /dev/null and b/libs/org/jsoup/parser/XmlTreeBuilder$1.class differ diff --git a/libs/org/jsoup/parser/XmlTreeBuilder.class b/libs/org/jsoup/parser/XmlTreeBuilder.class new file mode 100644 index 0000000..8cdbd10 Binary files /dev/null and b/libs/org/jsoup/parser/XmlTreeBuilder.class differ diff --git a/libs/org/jsoup/safety/Cleaner$1.class b/libs/org/jsoup/safety/Cleaner$1.class new file mode 100644 index 0000000..c11f3e8 Binary files /dev/null and b/libs/org/jsoup/safety/Cleaner$1.class differ diff --git a/libs/org/jsoup/safety/Cleaner$CleaningVisitor.class b/libs/org/jsoup/safety/Cleaner$CleaningVisitor.class new file mode 100644 index 0000000..0eb8635 Binary files /dev/null and b/libs/org/jsoup/safety/Cleaner$CleaningVisitor.class differ diff --git a/libs/org/jsoup/safety/Cleaner$ElementMeta.class b/libs/org/jsoup/safety/Cleaner$ElementMeta.class new file mode 100644 index 0000000..c9cc9a2 Binary files /dev/null and b/libs/org/jsoup/safety/Cleaner$ElementMeta.class differ diff --git a/libs/org/jsoup/safety/Cleaner.class b/libs/org/jsoup/safety/Cleaner.class new file mode 100644 index 0000000..793c001 Binary files /dev/null and b/libs/org/jsoup/safety/Cleaner.class differ diff --git a/libs/org/jsoup/safety/Whitelist$AttributeKey.class b/libs/org/jsoup/safety/Whitelist$AttributeKey.class new file mode 100644 index 0000000..aae67a9 Binary files /dev/null and b/libs/org/jsoup/safety/Whitelist$AttributeKey.class differ diff --git a/libs/org/jsoup/safety/Whitelist$AttributeValue.class b/libs/org/jsoup/safety/Whitelist$AttributeValue.class new file mode 100644 index 0000000..03c3e23 Binary files /dev/null and b/libs/org/jsoup/safety/Whitelist$AttributeValue.class differ diff --git a/libs/org/jsoup/safety/Whitelist$Protocol.class b/libs/org/jsoup/safety/Whitelist$Protocol.class new file mode 100644 index 0000000..c981c40 Binary files /dev/null and b/libs/org/jsoup/safety/Whitelist$Protocol.class differ diff --git a/libs/org/jsoup/safety/Whitelist$TagName.class b/libs/org/jsoup/safety/Whitelist$TagName.class new file mode 100644 index 0000000..64db883 Binary files /dev/null and b/libs/org/jsoup/safety/Whitelist$TagName.class differ diff --git a/libs/org/jsoup/safety/Whitelist$TypedValue.class b/libs/org/jsoup/safety/Whitelist$TypedValue.class new file mode 100644 index 0000000..40f4e70 Binary files /dev/null and b/libs/org/jsoup/safety/Whitelist$TypedValue.class differ diff --git a/libs/org/jsoup/safety/Whitelist.class b/libs/org/jsoup/safety/Whitelist.class new file mode 100644 index 0000000..42dd349 Binary files /dev/null and b/libs/org/jsoup/safety/Whitelist.class differ diff --git a/libs/org/jsoup/select/Collector$Accumulator.class b/libs/org/jsoup/select/Collector$Accumulator.class new file mode 100644 index 0000000..666c692 Binary files /dev/null and b/libs/org/jsoup/select/Collector$Accumulator.class differ diff --git a/libs/org/jsoup/select/Collector.class b/libs/org/jsoup/select/Collector.class new file mode 100644 index 0000000..d297588 Binary files /dev/null and b/libs/org/jsoup/select/Collector.class differ diff --git a/libs/org/jsoup/select/CombiningEvaluator$And.class b/libs/org/jsoup/select/CombiningEvaluator$And.class new file mode 100644 index 0000000..b74e17a Binary files /dev/null and b/libs/org/jsoup/select/CombiningEvaluator$And.class differ diff --git a/libs/org/jsoup/select/CombiningEvaluator$Or.class b/libs/org/jsoup/select/CombiningEvaluator$Or.class new file mode 100644 index 0000000..9c7462e Binary files /dev/null and b/libs/org/jsoup/select/CombiningEvaluator$Or.class differ diff --git a/libs/org/jsoup/select/CombiningEvaluator.class b/libs/org/jsoup/select/CombiningEvaluator.class new file mode 100644 index 0000000..a4d4afc Binary files /dev/null and b/libs/org/jsoup/select/CombiningEvaluator.class differ diff --git a/libs/org/jsoup/select/Elements.class b/libs/org/jsoup/select/Elements.class new file mode 100644 index 0000000..079d10b Binary files /dev/null and b/libs/org/jsoup/select/Elements.class differ diff --git a/libs/org/jsoup/select/Evaluator$AllElements.class b/libs/org/jsoup/select/Evaluator$AllElements.class new file mode 100644 index 0000000..1d6370a Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AllElements.class differ diff --git a/libs/org/jsoup/select/Evaluator$Attribute.class b/libs/org/jsoup/select/Evaluator$Attribute.class new file mode 100644 index 0000000..935c07b Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$Attribute.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeKeyPair.class b/libs/org/jsoup/select/Evaluator$AttributeKeyPair.class new file mode 100644 index 0000000..4e3b971 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeKeyPair.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeStarting.class b/libs/org/jsoup/select/Evaluator$AttributeStarting.class new file mode 100644 index 0000000..fa4dfc3 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeStarting.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeWithValue.class b/libs/org/jsoup/select/Evaluator$AttributeWithValue.class new file mode 100644 index 0000000..756346d Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeWithValue.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeWithValueContaining.class b/libs/org/jsoup/select/Evaluator$AttributeWithValueContaining.class new file mode 100644 index 0000000..64c707b Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeWithValueContaining.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeWithValueEnding.class b/libs/org/jsoup/select/Evaluator$AttributeWithValueEnding.class new file mode 100644 index 0000000..8aed486 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeWithValueEnding.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeWithValueMatching.class b/libs/org/jsoup/select/Evaluator$AttributeWithValueMatching.class new file mode 100644 index 0000000..9bfddd5 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeWithValueMatching.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeWithValueNot.class b/libs/org/jsoup/select/Evaluator$AttributeWithValueNot.class new file mode 100644 index 0000000..faee626 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeWithValueNot.class differ diff --git a/libs/org/jsoup/select/Evaluator$AttributeWithValueStarting.class b/libs/org/jsoup/select/Evaluator$AttributeWithValueStarting.class new file mode 100644 index 0000000..96521b6 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$AttributeWithValueStarting.class differ diff --git a/libs/org/jsoup/select/Evaluator$Class.class b/libs/org/jsoup/select/Evaluator$Class.class new file mode 100644 index 0000000..62b08df Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$Class.class differ diff --git a/libs/org/jsoup/select/Evaluator$ContainsOwnText.class b/libs/org/jsoup/select/Evaluator$ContainsOwnText.class new file mode 100644 index 0000000..ad59c42 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$ContainsOwnText.class differ diff --git a/libs/org/jsoup/select/Evaluator$ContainsText.class b/libs/org/jsoup/select/Evaluator$ContainsText.class new file mode 100644 index 0000000..0e55ea1 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$ContainsText.class differ diff --git a/libs/org/jsoup/select/Evaluator$CssNthEvaluator.class b/libs/org/jsoup/select/Evaluator$CssNthEvaluator.class new file mode 100644 index 0000000..6cc1fb5 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$CssNthEvaluator.class differ diff --git a/libs/org/jsoup/select/Evaluator$Id.class b/libs/org/jsoup/select/Evaluator$Id.class new file mode 100644 index 0000000..f8c5fcc Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$Id.class differ diff --git a/libs/org/jsoup/select/Evaluator$IndexEquals.class b/libs/org/jsoup/select/Evaluator$IndexEquals.class new file mode 100644 index 0000000..7b5bdd7 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IndexEquals.class differ diff --git a/libs/org/jsoup/select/Evaluator$IndexEvaluator.class b/libs/org/jsoup/select/Evaluator$IndexEvaluator.class new file mode 100644 index 0000000..e6f9852 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IndexEvaluator.class differ diff --git a/libs/org/jsoup/select/Evaluator$IndexGreaterThan.class b/libs/org/jsoup/select/Evaluator$IndexGreaterThan.class new file mode 100644 index 0000000..52fdb25 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IndexGreaterThan.class differ diff --git a/libs/org/jsoup/select/Evaluator$IndexLessThan.class b/libs/org/jsoup/select/Evaluator$IndexLessThan.class new file mode 100644 index 0000000..ceefd4c Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IndexLessThan.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsEmpty.class b/libs/org/jsoup/select/Evaluator$IsEmpty.class new file mode 100644 index 0000000..5f053f0 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsEmpty.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsFirstChild.class b/libs/org/jsoup/select/Evaluator$IsFirstChild.class new file mode 100644 index 0000000..285478a Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsFirstChild.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsFirstOfType.class b/libs/org/jsoup/select/Evaluator$IsFirstOfType.class new file mode 100644 index 0000000..f12a903 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsFirstOfType.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsLastChild.class b/libs/org/jsoup/select/Evaluator$IsLastChild.class new file mode 100644 index 0000000..6eb29ac Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsLastChild.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsLastOfType.class b/libs/org/jsoup/select/Evaluator$IsLastOfType.class new file mode 100644 index 0000000..e1ed2d2 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsLastOfType.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsNthChild.class b/libs/org/jsoup/select/Evaluator$IsNthChild.class new file mode 100644 index 0000000..b7ae631 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsNthChild.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsNthLastChild.class b/libs/org/jsoup/select/Evaluator$IsNthLastChild.class new file mode 100644 index 0000000..10f60be Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsNthLastChild.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsNthLastOfType.class b/libs/org/jsoup/select/Evaluator$IsNthLastOfType.class new file mode 100644 index 0000000..b5aa5ff Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsNthLastOfType.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsNthOfType.class b/libs/org/jsoup/select/Evaluator$IsNthOfType.class new file mode 100644 index 0000000..882a806 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsNthOfType.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsOnlyChild.class b/libs/org/jsoup/select/Evaluator$IsOnlyChild.class new file mode 100644 index 0000000..ca4f4a9 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsOnlyChild.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsOnlyOfType.class b/libs/org/jsoup/select/Evaluator$IsOnlyOfType.class new file mode 100644 index 0000000..b998d34 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsOnlyOfType.class differ diff --git a/libs/org/jsoup/select/Evaluator$IsRoot.class b/libs/org/jsoup/select/Evaluator$IsRoot.class new file mode 100644 index 0000000..a04fa2b Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$IsRoot.class differ diff --git a/libs/org/jsoup/select/Evaluator$Matches.class b/libs/org/jsoup/select/Evaluator$Matches.class new file mode 100644 index 0000000..8936c4d Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$Matches.class differ diff --git a/libs/org/jsoup/select/Evaluator$MatchesOwn.class b/libs/org/jsoup/select/Evaluator$MatchesOwn.class new file mode 100644 index 0000000..401a1fc Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$MatchesOwn.class differ diff --git a/libs/org/jsoup/select/Evaluator$Tag.class b/libs/org/jsoup/select/Evaluator$Tag.class new file mode 100644 index 0000000..8a54ed4 Binary files /dev/null and b/libs/org/jsoup/select/Evaluator$Tag.class differ diff --git a/libs/org/jsoup/select/Evaluator.class b/libs/org/jsoup/select/Evaluator.class new file mode 100644 index 0000000..810c3bb Binary files /dev/null and b/libs/org/jsoup/select/Evaluator.class differ diff --git a/libs/org/jsoup/select/NodeTraversor.class b/libs/org/jsoup/select/NodeTraversor.class new file mode 100644 index 0000000..c4a5fc0 Binary files /dev/null and b/libs/org/jsoup/select/NodeTraversor.class differ diff --git a/libs/org/jsoup/select/NodeVisitor.class b/libs/org/jsoup/select/NodeVisitor.class new file mode 100644 index 0000000..de1433a Binary files /dev/null and b/libs/org/jsoup/select/NodeVisitor.class differ diff --git a/libs/org/jsoup/select/QueryParser.class b/libs/org/jsoup/select/QueryParser.class new file mode 100644 index 0000000..17f09ea Binary files /dev/null and b/libs/org/jsoup/select/QueryParser.class differ diff --git a/libs/org/jsoup/select/Selector$SelectorParseException.class b/libs/org/jsoup/select/Selector$SelectorParseException.class new file mode 100644 index 0000000..c465525 Binary files /dev/null and b/libs/org/jsoup/select/Selector$SelectorParseException.class differ diff --git a/libs/org/jsoup/select/Selector.class b/libs/org/jsoup/select/Selector.class new file mode 100644 index 0000000..eae49eb Binary files /dev/null and b/libs/org/jsoup/select/Selector.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator$Has.class b/libs/org/jsoup/select/StructuralEvaluator$Has.class new file mode 100644 index 0000000..e0b3f78 Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator$Has.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator$ImmediateParent.class b/libs/org/jsoup/select/StructuralEvaluator$ImmediateParent.class new file mode 100644 index 0000000..49e2963 Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator$ImmediateParent.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator$ImmediatePreviousSibling.class b/libs/org/jsoup/select/StructuralEvaluator$ImmediatePreviousSibling.class new file mode 100644 index 0000000..09e0e67 Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator$ImmediatePreviousSibling.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator$Not.class b/libs/org/jsoup/select/StructuralEvaluator$Not.class new file mode 100644 index 0000000..1890df7 Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator$Not.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator$Parent.class b/libs/org/jsoup/select/StructuralEvaluator$Parent.class new file mode 100644 index 0000000..7658e7c Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator$Parent.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator$PreviousSibling.class b/libs/org/jsoup/select/StructuralEvaluator$PreviousSibling.class new file mode 100644 index 0000000..26a702c Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator$PreviousSibling.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator$Root.class b/libs/org/jsoup/select/StructuralEvaluator$Root.class new file mode 100644 index 0000000..2522dfe Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator$Root.class differ diff --git a/libs/org/jsoup/select/StructuralEvaluator.class b/libs/org/jsoup/select/StructuralEvaluator.class new file mode 100644 index 0000000..6aa52bf Binary files /dev/null and b/libs/org/jsoup/select/StructuralEvaluator.class differ diff --git a/plugin.yml b/plugin.yml new file mode 100644 index 0000000..81d3531 --- /dev/null +++ b/plugin.yml @@ -0,0 +1,50 @@ +# Do not change anything in here unless you know what you're doing! + +name: ShopChest +main: de.epiceric.shopchest.ShopChest +version: 1.4.6 +author: EpicEric +website: https://www.spigotmc.org/resources/shopchest.11431/ +depends: [Vault] + +permissions: + shopchest.*: + description: Gives access to all ShopChest permissions. + children: + shopchest.create: true + shopchest.create.infinite: true + shopchest.removeOther: true + shopchest.buy: true + shopchest.openOther: true + shopchest.notification.update: true + shopchest.reload: true + shopchest.update: true + shopchest.create: + description: Allows you to create a shop. + default: true + shopchest.create.infinite: + description: Allows you to create an infinite shop. + children: + shopchest.create: true + default: op + shopchest.removeOther: + description: Allows you to remove other players' shop. + default: op + shopchest.buy: + description: Allows you to buy something. + default: true + shopchest.sell: + description: Allows you to sell something. + default: true + shopchest.openOther: + description: Allows you to open other players' shop. + default: op + shopchest.notification.update: + description: Allows you to get update notification on join. + default: op + shopchest.reload: + description: Allows you to reload the shops. + default: op + shopchest.update: + description: Allows you to check for updates. + default: op \ No newline at end of file diff --git a/de/epiceric/shopchest/Commands.java b/src/de/epiceric/shopchest/Commands.java similarity index 100% rename from de/epiceric/shopchest/Commands.java rename to src/de/epiceric/shopchest/Commands.java diff --git a/de/epiceric/shopchest/ShopChest.java b/src/de/epiceric/shopchest/ShopChest.java similarity index 100% rename from de/epiceric/shopchest/ShopChest.java rename to src/de/epiceric/shopchest/ShopChest.java diff --git a/de/epiceric/shopchest/config/Config.java b/src/de/epiceric/shopchest/config/Config.java similarity index 100% rename from de/epiceric/shopchest/config/Config.java rename to src/de/epiceric/shopchest/config/Config.java diff --git a/de/epiceric/shopchest/config/Regex.java b/src/de/epiceric/shopchest/config/Regex.java similarity index 100% rename from de/epiceric/shopchest/config/Regex.java rename to src/de/epiceric/shopchest/config/Regex.java diff --git a/de/epiceric/shopchest/event/InteractShop.java b/src/de/epiceric/shopchest/event/InteractShop.java similarity index 100% rename from de/epiceric/shopchest/event/InteractShop.java rename to src/de/epiceric/shopchest/event/InteractShop.java diff --git a/de/epiceric/shopchest/event/NotifyUpdate.java b/src/de/epiceric/shopchest/event/NotifyUpdate.java similarity index 100% rename from de/epiceric/shopchest/event/NotifyUpdate.java rename to src/de/epiceric/shopchest/event/NotifyUpdate.java diff --git a/de/epiceric/shopchest/event/ProtectChest.java b/src/de/epiceric/shopchest/event/ProtectChest.java similarity index 100% rename from de/epiceric/shopchest/event/ProtectChest.java rename to src/de/epiceric/shopchest/event/ProtectChest.java diff --git a/de/epiceric/shopchest/event/RegenerateShopItem.java b/src/de/epiceric/shopchest/event/RegenerateShopItem.java similarity index 100% rename from de/epiceric/shopchest/event/RegenerateShopItem.java rename to src/de/epiceric/shopchest/event/RegenerateShopItem.java diff --git a/de/epiceric/shopchest/event/UpdateHolograms.java b/src/de/epiceric/shopchest/event/UpdateHolograms.java similarity index 100% rename from de/epiceric/shopchest/event/UpdateHolograms.java rename to src/de/epiceric/shopchest/event/UpdateHolograms.java diff --git a/de/epiceric/shopchest/shop/Hologram.java b/src/de/epiceric/shopchest/shop/Hologram.java similarity index 100% rename from de/epiceric/shopchest/shop/Hologram.java rename to src/de/epiceric/shopchest/shop/Hologram.java diff --git a/de/epiceric/shopchest/shop/Shop.java b/src/de/epiceric/shopchest/shop/Shop.java similarity index 100% rename from de/epiceric/shopchest/shop/Shop.java rename to src/de/epiceric/shopchest/shop/Shop.java diff --git a/de/epiceric/shopchest/utils/ClickType.java b/src/de/epiceric/shopchest/utils/ClickType.java similarity index 100% rename from de/epiceric/shopchest/utils/ClickType.java rename to src/de/epiceric/shopchest/utils/ClickType.java diff --git a/de/epiceric/shopchest/utils/EnchantmentNames.java b/src/de/epiceric/shopchest/utils/EnchantmentNames.java similarity index 100% rename from de/epiceric/shopchest/utils/EnchantmentNames.java rename to src/de/epiceric/shopchest/utils/EnchantmentNames.java diff --git a/de/epiceric/shopchest/utils/ItemNames.java b/src/de/epiceric/shopchest/utils/ItemNames.java similarity index 100% rename from de/epiceric/shopchest/utils/ItemNames.java rename to src/de/epiceric/shopchest/utils/ItemNames.java diff --git a/de/epiceric/shopchest/utils/JsonBuilder.java b/src/de/epiceric/shopchest/utils/JsonBuilder.java similarity index 100% rename from de/epiceric/shopchest/utils/JsonBuilder.java rename to src/de/epiceric/shopchest/utils/JsonBuilder.java diff --git a/de/epiceric/shopchest/utils/Metrics.java b/src/de/epiceric/shopchest/utils/Metrics.java similarity index 100% rename from de/epiceric/shopchest/utils/Metrics.java rename to src/de/epiceric/shopchest/utils/Metrics.java diff --git a/de/epiceric/shopchest/utils/ShopUtils.java b/src/de/epiceric/shopchest/utils/ShopUtils.java similarity index 100% rename from de/epiceric/shopchest/utils/ShopUtils.java rename to src/de/epiceric/shopchest/utils/ShopUtils.java diff --git a/de/epiceric/shopchest/utils/UpdateChecker.java b/src/de/epiceric/shopchest/utils/UpdateChecker.java similarity index 100% rename from de/epiceric/shopchest/utils/UpdateChecker.java rename to src/de/epiceric/shopchest/utils/UpdateChecker.java diff --git a/de/epiceric/shopchest/utils/Utils.java b/src/de/epiceric/shopchest/utils/Utils.java similarity index 100% rename from de/epiceric/shopchest/utils/Utils.java rename to src/de/epiceric/shopchest/utils/Utils.java