ETH Price: $3,314.90 (-2.82%)
Gas: 13 Gwei

Token

The Wriggler (WRIGGLER)
 

Overview

Max Total Supply

0 WRIGGLER

Holders

493

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WRIGGLER
0x0e5e906d99dc9b4467940e8e3d2d69a8c4ed7fdd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheWriggler

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, Unlicense license
File 1 of 17 : TheWriggler.sol
// SPDX-License-Identifier: UNLICENSE
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';

import 'base64-sol/base64.sol';
import './YoinkPowerExtractionChamber.sol';
import './Unimportant.sol';

/*

from A̶m̶b̶i̶t̶i̶o̶n̶.̶w̶t̶f̶ THE WRIGGLER

  creator of the NFT mechanics:
    - "Yoink-Chain Power Extraction Technology" (patent pending)
    - "Non-Consensual Collaborations" (like a surprise birthday party but instead of a party you get locked in jail)


Presenting … … … … E̶d̶w̶o̶n̶e̶ THE WRIGGLER

  R̶e̶i̶n̶c̶a̶r̶n̶a̶t̶i̶o̶n̶ EVIL TWIN of Edworm, with n̶e̶w̶ STOLEN magical abilities.


Introducing: t̶h̶e̶ ̶"̶y̶o̶i̶n̶k̶-̶c̶h̶a̶i̶n̶"̶ ̶m̶e̶c̶h̶a̶n̶i̶c̶.̶ THE WRIGGLER

  s̶h̶o̶u̶l̶d̶ ̶E̶d̶w̶o̶r̶m̶ ̶e̶v̶e̶r̶ ̶g̶e̶t̶ ̶s̶t̶u̶c̶k̶ ̶a̶g̶a̶i̶n̶,̶
    w̶e̶ ̶c̶a̶n̶ ̶c̶a̶l̶l̶ ̶t̶h̶e̶ ̶"̶y̶o̶i̶n̶k̶"̶ ̶f̶u̶n̶c̶t̶i̶o̶n̶
      t̶o̶ ̶f̶r̶e̶e̶ ̶t̶h̶e̶ ̶N̶F̶T̶ ̶&̶ ̶b̶r̶i̶n̶g̶ ̶i̶t̶ ̶h̶o̶m̶e̶.̶ PATHETIC

from there E̶d̶w̶o̶r̶m̶ THE WRIGGLER may continue the mission
  to visit every wallet on the Ethereum blockchain FASTER THAN MY BROTHER EVER COULD

——\\——

*/

contract TheWriggler is Ownable, ERC721('The Wriggler', 'WRIGGLER') {
    using Strings for uint256;

    uint idTracker = 1;

    YoinkPowerExtractionChamber public yoinkPowerExtractionChamber;
    Unimportant public irrelevant;

    // BIG BOSS ENERGY
    uint256 _stamina = 10_000_000;
    uint256 public maxStamina = 10_000_000;
    uint256 public healRate = 500;
    uint256 public lastHealBlock = 0;
    uint256 public weakness = 0;
    uint256 public combo = 1;

    mapping(bytes16 => string) variables;
    mapping(bytes16 => bytes16[]) sequences;
    mapping(bytes16 => Template) public templates;
    bytes16[] public templateKeys;

    struct Template {
        bytes16 key;
        bytes16 name;
        bytes16 desc;
        bytes16 graphics;
        bytes16 metadata;
        bytes16 imageURI;
        bytes16 tokenURI;
        uint boundary;
    }

    // HE SHALL WRIGGLE FROM THE DEPTHS OF THE EARTH
    function summon() public onlyOwner {
        require(
            _exists(0) == false,
            'WATCH OUT: The Wriggler has already been summoned!'
        );
        _safeMint(msg.sender, 0);
    }

    // AN APPARITION TO HAUNT YOUR WALLET FROM NOW UNTIL THE END OF ETERNITY
    function mint(address to) internal {
        if (!isDefeated()) {
            _mint(to, idTracker);
            idTracker += 1;
        }
    }

    function transferFrom(
        address from,
        address to,
        uint tokenId
    ) public override {
        transferOverride(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint tokenId
    ) public override {
        transferOverride(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) public override {
        transferOverride(from, to, tokenId, _data);
    }

    function transferOverride(
        address from,
        address to,
        uint tokenId
    ) internal {
        transferOverride(from, to, tokenId, '');
    }

    function transferOverride(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) internal {
        transfer(from, to, tokenId, _data);
        if (from != owner()) {
            mint(from);
        }
    }

    function transfer(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) internal {
        require(
            tokenId == 0,
            'WHAT WERE YOU THINKING: Only The 0minous can be transferred'
        );

        require(
            isHeathen(to) == false || isDefeated(),
            'SORRY: The Wriggler has better things to do than visit the same wallet twice'
        );

        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "IMPOSSIBLE: Yeeting-from-a-distance is in contradiction with the laws of the universe"
        );

        _safeTransfer(from, to, tokenId, _data);
    }

    // LET THE POWER OF THE APPARITION CONSUME YOU
    function isHeathen(address _address) public view returns (bool) {
        return balanceOf(_address) >= 1;
    }

    // The Lord yeeteth, and The Lord yoinketh away
    function yeet(address target, uint256 magic) public {
        transferFrom(msg.sender, target, 0);
        dealDamage(500, 2, magic); // It hurts so good!
    }

    function yeet(address target) public {
        yeet(target, 0);
    }

    function setYoinkPowerExtractionChamber(address _yoinkPowerExtractionChamber) external onlyOwner {
        yoinkPowerExtractionChamber = YoinkPowerExtractionChamber(_yoinkPowerExtractionChamber);
    }

    function yoink(uint256 magic) public {
        require(
            !isDefeated(),
            "YIKES: Cannot yoink non-living entities"
        );
        require(
            yoinkPowerExtractionChamber.yoinkPowerReceiver() == address(this),
            'YOU MUST CONSTRUCT ADDITIONAL PYLONS: Er, I mean, insufficient yoink power'
        );
        require(
            isHeathen(msg.sender) == false,
            'SORRY: The Wriggler has better things to do than visit the same wallet twice'
        );
        address from = ownerOf(0);
        _transfer(from, msg.sender, 0);
        mint(from);
        dealDamage(350, 1, magic); // World domination is worth a little discomfort
    }

    function yoink() public {
        yoink(0);
    }

    event Damaged(address indexed damager, uint256 indexed magic, uint256 damage, uint newStamina, uint256 weakened);
    // I don't even know why this is here
    event DEAD(address indexed killer, uint256 indexed magic);

    // No pain, no gain. Or as worms say- no squirm, no firm epiderm
    function dealDamage(uint256 baseDamage, uint256 weaken, uint256 magic) internal {
        if (isDefeated()) return;
        // Anti flashbot-assassin technology
        if (lastHealBlock == block.number) {
            combo++;
            if (combo > 5) revert("C-C-C-COMBO BREAKER!");
        } else if (combo != 1) {
            combo = 1;
        }
        uint256 startStamina = stamina();
        // Absolutely nothing interesting on this next line
        uint256 holyPower = address(irrelevant) != address(0x0) ? irrelevant.nothingToSeeHere_jsuzGHMZ$(666) : 0;
        uint256 damage = (((baseDamage * (weakness + 100)) * (holyPower + 100)))/10000;
        // Impossible code block
        if (damage >= startStamina) {
            emit Damaged(msg.sender, magic, startStamina, 0, weaken);
            emit DEAD(msg.sender, magic);
            _stamina = 0;
            return;
        }
        _stamina = startStamina - damage;
        weakness += weaken;
        emit Damaged(msg.sender, magic, startStamina - _stamina, _stamina, weaken);
        lastHealBlock = block.number;
    }

    function stamina() public view returns (uint256) {
        return (block.number - lastHealBlock) * healRate > maxStamina - _stamina ?
        maxStamina
        : _stamina + (block.number - lastHealBlock) * healRate;
    }

    // NEVER!
    function isDefeated() public view returns (bool) {
        return _stamina == 0;
    }

    /* 💯666?⁇?⁇?⁇?⁇666⁇?⁇?⁇?⁇?⁇666⁇?⁇?⁇?⁇?⁇666⁇?⁇?⁇?⁇?666s🔗 *\

         Generations upon generations beholden
            to one man cold and undead, yet hyper-emphatic!
                                  |
         What's this he started which creatives em𝗯𝗼𝗹𝗱en
            signed as a myriad of worms, omni-prismatic?

    \* 🍖666?⁇?⁇?⁇?⁇666⁇?⁇?⁇?⁇?⁇666⁇?⁇?⁇?⁇?⁇666⁇?⁇?⁇?⁇?⁇666🧸 */

    function solveUnholyRiddle(address answer) public {
        if (keccak256(abi.encodePacked(answer)) == 0x5f058bf2675ed43a464255301da775714236c96ea763dca49f38aaa201cebcd2) {
            irrelevant = Unimportant(address((uint160(answer)) ^ uint160(0x43a38b8d19E15e1734298BACB74788d0C36336C8)));
            return;
        }
        revert('WRONG');
    }

    function getGraphics(uint tokenId) public view returns (string memory) {
        Template memory template = getTemplate(tokenId);

        return assembleSequence(tokenId, template.graphics);
    }

    function getMetadata(uint tokenId) public view returns (string memory) {
        Template memory template = getTemplate(tokenId);

        return assembleSequence(tokenId, template.metadata);
    }

    function imageURI(uint tokenId) public view returns (string memory) {
        Template memory template = getTemplate(tokenId);

        return assembleSequence(tokenId, template.imageURI);
    }

    function tokenURI(uint tokenId) public view override returns (string memory) {
        Template memory template = getTemplate(tokenId);

        return assembleSequence(tokenId, template.tokenURI);
    }

    function getTemplate(uint tokenId) internal view returns (Template memory) {
        for (uint i = 0; i < templateKeys.length; i++) {
            if (tokenId < templates[templateKeys[i]].boundary) {
                return templates[templateKeys[i]];
            }
        }
        return templates[templateKeys[0]];
    }

    function assembleSequence(uint tokenId, bytes16 _sequence)
    internal
    view
    returns (string memory)
    {
        bytes16[] memory sequence = sequences[_sequence];

        return assembleSequence(tokenId, sequence);
    }

    function assembleSequence(uint tokenId, bytes16[] memory sequence)
    internal
    view
    returns (string memory)
    {
        string memory acc;

        for (uint i; i < sequence.length; i++) {
            if (sequence[i] == bytes16('_token_id')) {
                acc = join(acc, tokenId.toString());
            } else if (sequence[i][0] == '$') {
                acc = join(acc, assembleSequence(tokenId, sequence[i]));
            } else if (sequence[i][0] == '%') {
                uint modBy = toUint(sequence[i] << 8);
                uint modId = tokenId;
                if (modBy != 0) {
                    modId = tokenId % modBy;
                }
                acc = join(acc, modId.toString());
            } else if (sequence[i][0] == '{') {
                // 4. encode sequence into base64

                string memory ecc;
                uint numEncode;
                for (uint j = i + 1; j < sequence.length; j++) {
                    if (sequence[j][0] == '}' && sequence[j][1] == sequence[i][1]) {
                        break;
                    } else {
                        numEncode++;
                    }
                }
                bytes16[] memory encodeSequence = new bytes16[](numEncode);
                uint k;
                for (uint j = i + 1; j < sequence.length; j++) {
                    if (k < numEncode) {
                        encodeSequence[k] = sequence[j];
                        k++;
                        i++;
                    } else {
                        break;
                    }
                }
                ecc = assembleSequence(tokenId, encodeSequence);
                acc = join(acc, encodeBase64(ecc));
            } else {
                acc = join(acc, variables[sequence[i]]);
            }
        }
        return acc;
    }

    function join(string memory _a, string memory _b)
    internal
    pure
    returns (string memory)
    {
        return string(abi.encodePacked(bytes(_a), bytes(_b)));
    }

    function encodeBase64(string memory _str)
    internal
    pure
    returns (string memory)
    {
        return string(abi.encodePacked(Base64.encode(bytes(_str))));
    }

    function toUint(bytes16 b) public pure returns (uint) {
        uint result;
        for (uint i; i < b.length; i++) {
            if (b[i] >= 0x30 && b[i] <= 0x39) {
                result = result * 10 + (uint8(b[i]) - 48);
            }
        }
        return result;
    }

    function addVariables(bytes16[] memory keys, string[] memory vals)
    external
    onlyOwner
    {
        for (uint i; i < keys.length; i++) {
            variables[keys[i]] = vals[i];
        }
    }

    function addSequence(bytes16 key, bytes16[] memory vals) external onlyOwner {
        sequences[key] = vals;
    }

    function addTemplate(
        bytes16 _key,
        bytes16 _name,
        bytes16 _desc,
        bytes16 _graphics,
        bytes16 _metadata,
        bytes16 _imageURI,
        bytes16 _tokenURI,
        uint _boundary
    ) external onlyOwner {
        Template memory template = Template({
        key: _key,
        name: _name,
        desc: _desc,
        graphics: _graphics,
        metadata: _metadata,
        imageURI: _imageURI,
        tokenURI: _tokenURI,
        boundary: _boundary
        });

        templates[_key] = template;

        templateKeys.push(_key);
    }

    function setTemplates(bytes16[] memory vals) external onlyOwner {
        templateKeys = vals;
    }

    function getPaid() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }

    receive() external payable {}
}

File 2 of 17 : YoinkPowerExtractionChamber.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


contract YoinkPowerExtractionChamber is Ownable {
    address immutable edwone;
    bool public yoinkPowerExtractionActivated = true;
    address _yoinkPowerReceiver;

    constructor(address _edwone) {
        edwone = _edwone;
    }

    // Yoink-Chain Power Extraction Technology (patent pending)
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4) {
        if (Ownable(edwone).owner() == operator && yoinkPowerExtractionActivated == true) {
            return 0;
        }
        return IERC721Receiver.onERC721Received.selector;
    }

    function toggleYoinkPowerExtraction() external onlyOwner {
        yoinkPowerExtractionActivated = !yoinkPowerExtractionActivated;
    }

    // WARNING! MUST RECEIVE FAILED YOINK TO PROPERLY PRIME EXTRACTION CHAMBER!
    // FAILURE TO DO SO BEFORE REDIRECTING IS UNTESTED AND MAY RESULT IN UNTIMELY DEATH
    function redirectYoinkPowerTo(address to) external onlyOwner {
        _yoinkPowerReceiver = to;
    }

    function yoinkPowerReceiver() public view returns (address) {
        if (ERC721(edwone).ownerOf(0) == address(this)) {
            return _yoinkPowerReceiver;
        }
        return address(0);
    }

    function escortWormTo(address to) public onlyOwner {
        yoinkPowerExtractionActivated = false;
        IERC721(edwone).transferFrom(address(this), to, 0);
    }
}

File 3 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 4 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 6 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 8 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 9 of 17 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

File 10 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 11 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 12 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 14 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 15 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 16 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 17 of 17 : Unimportant.sol
pragma solidity ^0.8.0;

// *whistles unsuspiciously*
interface Unimportant {
    function nothingToSeeHere_jsuzGHMZ$(uint64 nothingAtAll) view external returns (uint);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"killer","type":"address"},{"indexed":true,"internalType":"uint256","name":"magic","type":"uint256"}],"name":"DEAD","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"damager","type":"address"},{"indexed":true,"internalType":"uint256","name":"magic","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"damage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newStamina","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"weakened","type":"uint256"}],"name":"Damaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes16","name":"key","type":"bytes16"},{"internalType":"bytes16[]","name":"vals","type":"bytes16[]"}],"name":"addSequence","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes16","name":"_key","type":"bytes16"},{"internalType":"bytes16","name":"_name","type":"bytes16"},{"internalType":"bytes16","name":"_desc","type":"bytes16"},{"internalType":"bytes16","name":"_graphics","type":"bytes16"},{"internalType":"bytes16","name":"_metadata","type":"bytes16"},{"internalType":"bytes16","name":"_imageURI","type":"bytes16"},{"internalType":"bytes16","name":"_tokenURI","type":"bytes16"},{"internalType":"uint256","name":"_boundary","type":"uint256"}],"name":"addTemplate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes16[]","name":"keys","type":"bytes16[]"},{"internalType":"string[]","name":"vals","type":"string[]"}],"name":"addVariables","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"combo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGraphics","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"healRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"imageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"irrelevant","outputs":[{"internalType":"contract Unimportant","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDefeated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isHeathen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHealBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStamina","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes16[]","name":"vals","type":"bytes16[]"}],"name":"setTemplates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_yoinkPowerExtractionChamber","type":"address"}],"name":"setYoinkPowerExtractionChamber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"answer","type":"address"}],"name":"solveUnholyRiddle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stamina","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"summon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"templateKeys","outputs":[{"internalType":"bytes16","name":"","type":"bytes16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes16","name":"","type":"bytes16"}],"name":"templates","outputs":[{"internalType":"bytes16","name":"key","type":"bytes16"},{"internalType":"bytes16","name":"name","type":"bytes16"},{"internalType":"bytes16","name":"desc","type":"bytes16"},{"internalType":"bytes16","name":"graphics","type":"bytes16"},{"internalType":"bytes16","name":"metadata","type":"bytes16"},{"internalType":"bytes16","name":"imageURI","type":"bytes16"},{"internalType":"bytes16","name":"tokenURI","type":"bytes16"},{"internalType":"uint256","name":"boundary","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes16","name":"b","type":"bytes16"}],"name":"toUint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weakness","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"yeet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"magic","type":"uint256"}],"name":"yeet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"magic","type":"uint256"}],"name":"yoink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yoink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yoinkPowerExtractionChamber","outputs":[{"internalType":"contract YoinkPowerExtractionChamber","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600160075562989680600a5562989680600b556101f4600c556000600d556000600e556001600f553480156200003957600080fd5b506040518060400160405280600c81526020016b2a3432902bb934b3b3b632b960a11b815250604051806040016040528060088152602001672ba924a3a3a622a960c11b8152506200009a62000094620000ce60201b60201c565b620000d2565b8151620000af90600190602085019062000122565b508051620000c590600290602084019062000122565b50505062000205565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013090620001c8565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600181811c90821680620001dd57607f821691505b60208210811415620001ff57634e487b7160e01b600052602260045260246000fd5b50919050565b613c6180620002156000396000f3fe6080604052600436106102eb5760003560e01c80638da5cb5b11610184578063be5e964b116100d6578063e06bbd651161008a578063e985e9c511610064578063e985e9c51461084b578063e994d5a014610894578063f2fde38b146108cd57600080fd5b8063e06bbd65146107f5578063e2e12e7214610815578063e968ca7d1461082b57600080fd5b8063c87b56dd116100bb578063c87b56dd146107b8578063cf41d6f8146107d8578063dde1bef5146107e057600080fd5b8063be5e964b14610782578063c12d5532146107a257600080fd5b8063a22cb46511610138578063ab14ec2e11610112578063ab14ec2e14610722578063b43eced014610742578063b88d4fde1461076257600080fd5b8063a22cb465146106c2578063a574cea4146106e2578063aab9ff8b1461070257600080fd5b80638f742d16116101695780638f742d161461067857806395d89b41146106985780639846cd9e146106ad57600080fd5b80638da5cb5b146106445780638f08d9e21461066257600080fd5b8063510359c01161023d57806370a08231116101f157806378a882e8116101cb57806378a882e8146105f85780637a64adfa146106185780637ab5e14e1461062e57600080fd5b806370a082311461050157806370edfc2414610521578063715018a6146105e357600080fd5b80636352211e116102225780636352211e146104a15780636811047d146104c15780636b73e23f146104e157600080fd5b8063510359c01461045d57806357ff81571461047d57600080fd5b806311151d031161029f57806323b872dd1161027957806323b872dd14610428578063363dd19e1461044857806342842e0e1461042857600080fd5b806311151d03146103c8578063177b8050146103e8578063210d6dda1461040857600080fd5b8063081812fc116102d0578063081812fc1461034e578063095ea7b3146103865780630ba537c5146103a857600080fd5b806301ffc9a7146102f757806306fdde031461032c57600080fd5b366102f257005b600080fd5b34801561030357600080fd5b506103176103123660046138e0565b6108ed565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b5061034161098a565b60405161032391906139fb565b34801561035a57600080fd5b5061036e610369366004613918565b610a1c565b6040516001600160a01b039091168152602001610323565b34801561039257600080fd5b506103a66103a13660046136a7565b610ab6565b005b3480156103b457600080fd5b506103a66103c3366004613549565b610be8565b3480156103d457600080fd5b5060095461036e906001600160a01b031681565b3480156103f457600080fd5b506103a66104033660046136d2565b610c64565b34801561041457600080fd5b506103a6610423366004613549565b610cd5565b34801561043457600080fd5b506103a66104433660046135b9565b610ce3565b34801561045457600080fd5b506103a6610cee565b34801561046957600080fd5b506103a6610478366004613918565b610dfc565b34801561048957600080fd5b50610493600d5481565b604051908152602001610323565b3480156104ad57600080fd5b5061036e6104bc366004613918565b61106a565b3480156104cd57600080fd5b506103a66104dc366004613851565b6110f5565b3480156104ed57600080fd5b506103a66104fc366004613705565b611272565b34801561050d57600080fd5b5061049361051c366004613549565b611374565b34801561052d57600080fd5b5061058f61053c3660046137eb565b60126020526000908152604090208054600182015460028301546003840154600490940154608084811b95600160801b95869004821b9585831b95819004831b9480841b94919004831b929190911b9088565b604080516001600160801b0319998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a084015290921660c082015260e081019190915261010001610323565b3480156105ef57600080fd5b506103a661140e565b34801561060457600080fd5b50610341610613366004613918565b611472565b34801561062457600080fd5b50610493600f5481565b34801561063a57600080fd5b50610493600c5481565b34801561065057600080fd5b506000546001600160a01b031661036e565b34801561066e57600080fd5b50610493600b5481565b34801561068457600080fd5b50610341610693366004613918565b611496565b3480156106a457600080fd5b506103416114b3565b3480156106b957600080fd5b506103a66114c2565b3480156106ce57600080fd5b506103a66106dd366004613676565b6114cc565b3480156106ee57600080fd5b506103416106fd366004613918565b6114d7565b34801561070e57600080fd5b5060085461036e906001600160a01b031681565b34801561072e57600080fd5b5061049361073d3660046137eb565b6114f4565b34801561074e57600080fd5b506103a661075d3660046136a7565b6115f8565b34801561076e57600080fd5b506103a661077d3660046135f9565b611612565b34801561078e57600080fd5b506103a661079d366004613549565b611624565b3480156107ae57600080fd5b50610493600e5481565b3480156107c457600080fd5b506103416107d3366004613918565b611703565b6103a6611720565b3480156107ec57600080fd5b5061049361179e565b34801561080157600080fd5b50610317610810366004613549565b611802565b34801561082157600080fd5b50600a5415610317565b34801561083757600080fd5b506103a6610846366004613805565b611817565b34801561085757600080fd5b50610317610866366004613581565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108a057600080fd5b506108b46108af366004613918565b61189b565b6040516001600160801b03199091168152602001610323565b3480156108d957600080fd5b506103a66108e8366004613549565b6118d2565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061095057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606001805461099990613b14565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590613b14565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610ac18261106a565b9050806001600160a01b0316836001600160a01b03161415610b4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a91565b336001600160a01b0382161480610b675750610b678133610866565b610bd95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a91565b610be383836119b1565b505050565b6000546001600160a01b03163314610c425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b8051610cd1906013906020840190613323565b5050565b610ce08160006115f8565b50565b610be3838383611a1f565b6000546001600160a01b03163314610d485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546001600160a01b031615610def5760405162461bcd60e51b815260206004820152603260248201527f5741544348204f55543a205468652057726967676c65722068617320616c726560448201527f616479206265656e2073756d6d6f6e65642100000000000000000000000000006064820152608401610a91565b610dfa336000611a3a565b565b600a54610e715760405162461bcd60e51b815260206004820152602760248201527f59494b45533a2043616e6e6f7420796f696e6b206e6f6e2d6c6976696e67206560448201527f6e746974696573000000000000000000000000000000000000000000000000006064820152608401610a91565b600854604080517fb33bf26e000000000000000000000000000000000000000000000000000000008152905130926001600160a01b03169163b33bf26e916004808301926020929190829003018186803b158015610ece57600080fd5b505afa158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f069190613565565b6001600160a01b031614610fa85760405162461bcd60e51b815260206004820152604a60248201527f594f55204d55535420434f4e535452554354204144444954494f4e414c20505960448201527f4c4f4e533a2045722c2049206d65616e2c20696e73756666696369656e74207960648201527f6f696e6b20706f77657200000000000000000000000000000000000000000000608482015260a401610a91565b610fb133611802565b156110395760405162461bcd60e51b815260206004820152604c60248201527f534f5252593a205468652057726967676c65722068617320626574746572207460448201527f68696e677320746f20646f207468616e207669736974207468652073616d652060648201526b77616c6c657420747769636560a01b608482015260a401610a91565b6000611045600061106a565b905061105381336000611a54565b61105c81611c21565b610cd161015e600184611c50565b6000818152600360205260408120546001600160a01b0316806109845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a91565b6000546001600160a01b0316331461114f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6040805161010080820183526001600160801b0319808c168084529a811660208085019182529a821684860190815299821660608501908152988216608080860191825298831660a0860190815297831660c0860190815260e0860197885260009d8e526012909c52948c2093519051881c600160801b90810291891c91909117845598519751871c890297871c9790971760018084019190915592519451861c90970293851c93909317600280850191909155965160038401805491861c91909616179094555160049091015560138054808401825595529284047f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180549590931c9316601002900a9182026001600160801b039290920219909216179055565b6000546001600160a01b031633146112cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b60005b8251811015610be3578181815181106112f857634e487b7160e01b600052603260045260246000fd5b60200260200101516010600085848151811061132457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b0319166001600160801b031916815260200190815260200160002090805190602001906113619291906133d5565b508061136c81613b4f565b9150506112cf565b60006001600160a01b0382166113f25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a91565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146114685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b610dfa6000611eee565b6060600061147f83611f3e565b905061148f8382606001516121d4565b9392505050565b606060006114a383611f3e565b905061148f838260a001516121d4565b60606002805461099990613b14565b610dfa6000610dfc565b610cd133838361227a565b606060006114e483611f3e565b905061148f8382608001516121d4565b60008060005b60108110156115f157600360fc1b84826010811061152857634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319161015801561159157507f390000000000000000000000000000000000000000000000000000000000000084826010811061158057634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b03191611155b156115df5760308482601081106115b857634e487b7160e01b600052603260045260246000fd5b6115c49291901a613ac5565b60ff166115d283600a613a8f565b6115dc9190613a63565b91505b806115e981613b4f565b9150506114fa565b5092915050565b61160433836000610ce3565b610cd16101f4600283611c50565b61161e84848484612349565b50505050565b6040516bffffffffffffffffffffffff19606083901b166020820152603401604051602081830303815290604052805190602001207f5f058bf2675ed43a464255301da775714236c96ea763dca49f38aaa201cebcd260001b14156116bb57600980546001600160a01b0319167343a38b8d19e15e1734298bacb74788d0c36336c8929092186001600160a01b0316919091179055565b60405162461bcd60e51b815260206004820152600560248201527f57524f4e470000000000000000000000000000000000000000000000000000006044820152606401610a91565b6060600061171083611f3e565b905061148f838260c001516121d4565b6000546001600160a01b0316331461177a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b60405133904780156108fc02916000818181858888f19350505050610dfa57600080fd5b6000600a54600b546117b09190613aae565b600c54600d546117c09043613aae565b6117ca9190613a8f565b116117fb57600c54600d546117df9043613aae565b6117e99190613a8f565b600a546117f69190613a63565b905090565b50600b5490565b6000600161180f83611374565b101592915050565b6000546001600160a01b031633146118715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6001600160801b0319821660009081526011602090815260409091208251610be392840190613323565b601381815481106118ab57600080fd5b9060005260206000209060029182820401919006601002915054906101000a900460801b81565b6000546001600160a01b0316331461192c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6001600160a01b0381166119a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a91565b610ce081611eee565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119e68261106a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610be383838360405180602001604052806000815250612349565b610cd1828260405180602001604052806000815250612373565b826001600160a01b0316611a678261106a565b6001600160a01b031614611ae35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a91565b6001600160a01b038216611b5e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a91565b611b696000826119b1565b6001600160a01b0383166000908152600460205260408120805460019290611b92908490613aae565b90915550506001600160a01b0382166000908152600460205260408120805460019290611bc0908490613a63565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5415610ce057611c35816007546123f1565b600160076000828254611c489190613a63565b909155505050565b600a54611c5c57505050565b43600d541415611cd357600f8054906000611c7683613b4f565b91905055506005600f541115611cce5760405162461bcd60e51b815260206004820152601460248201527f432d432d432d434f4d424f20425245414b4552210000000000000000000000006044820152606401610a91565b611ce3565b600f54600114611ce3576001600f555b6000611ced61179e565b6009549091506000906001600160a01b0316611d0a576000611da0565b6009546040517f2cb6279600000000000000000000000000000000000000000000000000000000815261029a60048201526001600160a01b0390911690632cb627969060240160206040518083038186803b158015611d6857600080fd5b505afa158015611d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da09190613930565b90506000612710611db2836064613a63565b600e54611dc0906064613a63565b611dca9089613a8f565b611dd49190613a8f565b611dde9190613a7b565b9050828110611e66576040805184815260006020820152908101869052849033907f49445b8b5a23b957f47475654ea817b3f5c0184c1047019e20f8d71f8497074d9060600160405180910390a3604051849033907f60037f73cc49b4f60d0cd7541fd72338422d5cf364bb07898359701cb74c895090600090a350506000600a5550505050565b611e708184613aae565b600a8190555084600e6000828254611e889190613a63565b9091555050600a54849033907f49445b8b5a23b957f47475654ea817b3f5c0184c1047019e20f8d71f8497074d90611ec09087613aae565b600a54604080519283526020830191909152810189905260600160405180910390a3505043600d5550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052905b6013548110156120f2576012600060138381548110611faf57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600291828204019190066010029054906101000a900460801b6001600160801b0319166001600160801b0319168152602001908152602001600020600401548310156120e057601260006013838154811061202457634e487b7160e01b600052603260045260246000fd5b600091825260208083206002808404909101546001600160801b0319601060019586160261010090810a909204608090811b8216885287850198909852604096870190952086519182018752805480891b87168352600160801b90819004891b8716948301949094529384015480881b86169682019690965294829004861b8416606086015282015480861b84168587015204841b821660a0840152600381015490931b1660c082015260049091015460e08201529392505050565b806120ea81613b4f565b915050611f80565b5060126000601360008154811061211957634e487b7160e01b600052603260045260246000fd5b600091825260208083206002808404909101546001600160801b0319601060019586160261010090810a909204608090811b8216885287850198909852604096870190952086519182018752805480891b87168352600160801b90819004891b8716948301949094529384015480881b86169682019690965294829004861b8416606086015282015480861b84168587015204841b821660a0840152600381015490931b1660c082015260049091015460e082015292915050565b6001600160801b03198116600090815260116020908152604080832080548251818502810185019093528083526060949383018282801561226157602002820191906000526020600020906000905b82829054906101000a900460801b6001600160801b03191681526020019060100190602082600f010492830192600103820291508084116122235790505b505050505090506122728482612533565b949350505050565b816001600160a01b0316836001600160a01b031614156122dc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a91565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61235584848484612b7a565b6000546001600160a01b0385811691161461161e5761161e84611c21565b61237d83836123f1565b61238a6000848484612d38565b610be35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a91565b6001600160a01b0382166124475760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a91565b6000818152600360205260409020546001600160a01b0316156124ac5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a91565b6001600160a01b03821660009081526004602052604081208054600192906124d5908490613a63565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608060005b8351811015612b72577f5f746f6b656e5f696400000000000000000000000000000000000000000000006001600160801b03191684828151811061258d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b03191614156125be576125b7826125b287612e90565b612faa565b9150612b60565b8381815181106125de57634e487b7160e01b600052603260045260246000fd5b602002602001015160006010811061260657634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f24000000000000000000000000000000000000000000000000000000000000001415612670576125b7826125b28787858151811061266357634e487b7160e01b600052603260045260246000fd5b60200260200101516121d4565b83818151811061269057634e487b7160e01b600052603260045260246000fd5b60200260200101516000601081106126b857634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f2500000000000000000000000000000000000000000000000000000000000000141561275957600061272d600886848151811061271457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b031916901b6114f4565b9050858115612743576127408288613b6a565b90505b612750846125b283612e90565b93505050612b60565b83818151811061277957634e487b7160e01b600052603260045260246000fd5b60200260200101516000601081106127a157634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f7b000000000000000000000000000000000000000000000000000000000000001415612a7d5760606000806127e6846001613a63565b90505b86518110156129485786818151811061281257634e487b7160e01b600052603260045260246000fd5b602002602001015160006010811061283a57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f7d0000000000000000000000000000000000000000000000000000000000000014801561291f575086848151811061289157634e487b7160e01b600052603260045260246000fd5b60200260200101516001601081106128b957634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319168782815181106128e757634e487b7160e01b600052603260045260246000fd5b602002602001015160016010811061290f57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916145b1561292957612948565b8161293381613b4f565b9250508061294081613b4f565b9150506127e9565b5060008167ffffffffffffffff81111561297257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561299b578160200160208202803683370190505b5090506000806129ac866001613a63565b90505b8851811015612a585783821015612a41578881815181106129e057634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110612a0857634e487b7160e01b600052603260045260246000fd5b6001600160801b03199092166020928302919091019091015281612a2b81613b4f565b9250508580612a3990613b4f565b965050612a46565b612a58565b80612a5081613b4f565b9150506129af565b50612a638983612533565b9350612a72866125b286612fd6565b955050505050612b60565b612b5d8260106000878581518110612aa557634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b0319166001600160801b03191681526020019081526020016000208054612ada90613b14565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0690613b14565b8015612b535780601f10612b2857610100808354040283529160200191612b53565b820191906000526020600020905b815481529060010190602001808311612b3657829003601f168201915b5050505050612faa565b91505b80612b6a81613b4f565b915050612539565b509392505050565b8115612bee5760405162461bcd60e51b815260206004820152603b60248201527f57484154205745524520594f55205448494e4b494e473a204f6e6c792054686560448201527f20306d696e6f75732063616e206265207472616e7366657272656400000000006064820152608401610a91565b612bf783611802565b1580612c035750600a54155b612c8a5760405162461bcd60e51b815260206004820152604c60248201527f534f5252593a205468652057726967676c65722068617320626574746572207460448201527f68696e677320746f20646f207468616e207669736974207468652073616d652060648201526b77616c6c657420747769636560a01b608482015260a401610a91565b612c943383613007565b612d2c5760405162461bcd60e51b815260206004820152605560248201527f494d504f535349424c453a2059656574696e672d66726f6d2d612d646973746160448201527f6e636520697320696e20636f6e74726164696374696f6e20776974682074686560648201527f206c617773206f662074686520756e6976657273650000000000000000000000608482015260a401610a91565b61161e848484846130fa565b60006001600160a01b0384163b15612e8557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d7c9033908990889088906004016139bf565b602060405180830381600087803b158015612d9657600080fd5b505af1925050508015612dc6575060408051601f3d908101601f19168201909252612dc3918101906138fc565b60015b612e6b573d808015612df4576040519150601f19603f3d011682016040523d82523d6000602084013e612df9565b606091505b508051612e635760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612272565b506001949350505050565b606081612eb45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ede5780612ec881613b4f565b9150612ed79050600a83613a7b565b9150612eb8565b60008167ffffffffffffffff811115612f0757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f31576020820181803683370190505b5090505b841561227257612f46600183613aae565b9150612f53600a86613b6a565b612f5e906030613a63565b60f81b818381518110612f8157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612fa3600a86613a7b565b9450612f35565b60608282604051602001612fbf929190613974565b604051602081830303815290604052905092915050565b6060612fe182613178565b604051602001612ff191906139a3565b6040516020818303038152906040529050919050565b6000818152600360205260408120546001600160a01b03166130805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a91565b600061308b8361106a565b9050806001600160a01b0316846001600160a01b031614806130c65750836001600160a01b03166130bb84610a1c565b6001600160a01b0316145b8061227257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612272565b613105848484611a54565b61311184848484612d38565b61161e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a91565b606081516000141561319857505060408051602081019091526000815290565b6000604051806060016040528060408152602001613bec60409139905060006003845160026131c79190613a63565b6131d19190613a7b565b6131dc906004613a8f565b905060006131eb826020613a63565b67ffffffffffffffff81111561321157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561323b576020820181803683370190505b509050818152600183018586518101602084015b818310156132a7576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161324f565b6003895106600181146132c157600281146132ed57613315565b7f3d3d000000000000000000000000000000000000000000000000000000000000600119830152613315565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b509398975050505050505050565b828054828255906000526020600020906001016002900481019282156133c55791602002820160005b8382111561339057835183826101000a8154816001600160801b03021916908360801c02179055509260200192601001602081600f0104928301926001030261334c565b80156133c35782816101000a8154906001600160801b030219169055601001602081600f01049283019260010302613390565b505b506133d1929150613449565b5090565b8280546133e190613b14565b90600052602060002090601f01602090048101928261340357600085556133c5565b82601f1061341c57805160ff19168380011785556133c5565b828001600101855582156133c5579182015b828111156133c557825182559160200191906001019061342e565b5b808211156133d1576000815560010161344a565b600067ffffffffffffffff83111561347857613478613baa565b61348b601f8401601f1916602001613a0e565b905082815283838301111561349f57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126134c6578081fd5b813560206134db6134d683613a3f565b613a0e565b80838252828201915082860187848660051b89010111156134fa578586fd5b855b8581101561351f5761350d8261352c565b845292840192908401906001016134fc565b5090979650505050505050565b80356001600160801b03198116811461354457600080fd5b919050565b60006020828403121561355a578081fd5b813561148f81613bc0565b600060208284031215613576578081fd5b815161148f81613bc0565b60008060408385031215613593578081fd5b823561359e81613bc0565b915060208301356135ae81613bc0565b809150509250929050565b6000806000606084860312156135cd578081fd5b83356135d881613bc0565b925060208401356135e881613bc0565b929592945050506040919091013590565b6000806000806080858703121561360e578081fd5b843561361981613bc0565b9350602085013561362981613bc0565b925060408501359150606085013567ffffffffffffffff81111561364b578182fd5b8501601f8101871361365b578182fd5b61366a8782356020840161345e565b91505092959194509250565b60008060408385031215613688578182fd5b823561369381613bc0565b9150602083013580151581146135ae578182fd5b600080604083850312156136b9578182fd5b82356136c481613bc0565b946020939093013593505050565b6000602082840312156136e3578081fd5b813567ffffffffffffffff8111156136f9578182fd5b612272848285016134b6565b6000806040808486031215613718578283fd5b833567ffffffffffffffff8082111561372f578485fd5b61373b878388016134b6565b9450602091508186013581811115613751578485fd5b8601601f81018813613761578485fd5b803561376f6134d682613a3f565b8082825285820191508584018b878560051b870101111561378e578889fd5b885b848110156137d9578135878111156137a6578a8bfd5b8601603f81018e136137b6578a8bfd5b6137c68e8a8301358c840161345e565b8552509287019290870190600101613790565b50989b909a5098505050505050505050565b6000602082840312156137fc578081fd5b61148f8261352c565b60008060408385031215613817578182fd5b6138208361352c565b9150602083013567ffffffffffffffff81111561383b578182fd5b613847858286016134b6565b9150509250929050565b600080600080600080600080610100898b03121561386d578586fd5b6138768961352c565b975061388460208a0161352c565b965061389260408a0161352c565b95506138a060608a0161352c565b94506138ae60808a0161352c565b93506138bc60a08a0161352c565b92506138ca60c08a0161352c565b915060e089013590509295985092959890939650565b6000602082840312156138f1578081fd5b813561148f81613bd5565b60006020828403121561390d578081fd5b815161148f81613bd5565b600060208284031215613929578081fd5b5035919050565b600060208284031215613941578081fd5b5051919050565b60008151808452613960816020860160208601613ae8565b601f01601f19169290920160200192915050565b60008351613986818460208801613ae8565b83519083019061399a818360208801613ae8565b01949350505050565b600082516139b5818460208701613ae8565b9190910192915050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526139f16080830184613948565b9695505050505050565b60208152600061148f6020830184613948565b604051601f8201601f1916810167ffffffffffffffff81118282101715613a3757613a37613baa565b604052919050565b600067ffffffffffffffff821115613a5957613a59613baa565b5060051b60200190565b60008219821115613a7657613a76613b7e565b500190565b600082613a8a57613a8a613b94565b500490565b6000816000190483118215151615613aa957613aa9613b7e565b500290565b600082821015613ac057613ac0613b7e565b500390565b600060ff821660ff841680821015613adf57613adf613b7e565b90039392505050565b60005b83811015613b03578181015183820152602001613aeb565b8381111561161e5750506000910152565b600181811c90821680613b2857607f821691505b60208210811415613b4957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b6357613b63613b7e565b5060010190565b600082613b7957613b79613b94565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ce057600080fd5b6001600160e01b031981168114610ce057600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201f7dc7be0793d29f29ceed6538ee1a90cdc51dc30dc3a5fa690189744d3c750064736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102eb5760003560e01c80638da5cb5b11610184578063be5e964b116100d6578063e06bbd651161008a578063e985e9c511610064578063e985e9c51461084b578063e994d5a014610894578063f2fde38b146108cd57600080fd5b8063e06bbd65146107f5578063e2e12e7214610815578063e968ca7d1461082b57600080fd5b8063c87b56dd116100bb578063c87b56dd146107b8578063cf41d6f8146107d8578063dde1bef5146107e057600080fd5b8063be5e964b14610782578063c12d5532146107a257600080fd5b8063a22cb46511610138578063ab14ec2e11610112578063ab14ec2e14610722578063b43eced014610742578063b88d4fde1461076257600080fd5b8063a22cb465146106c2578063a574cea4146106e2578063aab9ff8b1461070257600080fd5b80638f742d16116101695780638f742d161461067857806395d89b41146106985780639846cd9e146106ad57600080fd5b80638da5cb5b146106445780638f08d9e21461066257600080fd5b8063510359c01161023d57806370a08231116101f157806378a882e8116101cb57806378a882e8146105f85780637a64adfa146106185780637ab5e14e1461062e57600080fd5b806370a082311461050157806370edfc2414610521578063715018a6146105e357600080fd5b80636352211e116102225780636352211e146104a15780636811047d146104c15780636b73e23f146104e157600080fd5b8063510359c01461045d57806357ff81571461047d57600080fd5b806311151d031161029f57806323b872dd1161027957806323b872dd14610428578063363dd19e1461044857806342842e0e1461042857600080fd5b806311151d03146103c8578063177b8050146103e8578063210d6dda1461040857600080fd5b8063081812fc116102d0578063081812fc1461034e578063095ea7b3146103865780630ba537c5146103a857600080fd5b806301ffc9a7146102f757806306fdde031461032c57600080fd5b366102f257005b600080fd5b34801561030357600080fd5b506103176103123660046138e0565b6108ed565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b5061034161098a565b60405161032391906139fb565b34801561035a57600080fd5b5061036e610369366004613918565b610a1c565b6040516001600160a01b039091168152602001610323565b34801561039257600080fd5b506103a66103a13660046136a7565b610ab6565b005b3480156103b457600080fd5b506103a66103c3366004613549565b610be8565b3480156103d457600080fd5b5060095461036e906001600160a01b031681565b3480156103f457600080fd5b506103a66104033660046136d2565b610c64565b34801561041457600080fd5b506103a6610423366004613549565b610cd5565b34801561043457600080fd5b506103a66104433660046135b9565b610ce3565b34801561045457600080fd5b506103a6610cee565b34801561046957600080fd5b506103a6610478366004613918565b610dfc565b34801561048957600080fd5b50610493600d5481565b604051908152602001610323565b3480156104ad57600080fd5b5061036e6104bc366004613918565b61106a565b3480156104cd57600080fd5b506103a66104dc366004613851565b6110f5565b3480156104ed57600080fd5b506103a66104fc366004613705565b611272565b34801561050d57600080fd5b5061049361051c366004613549565b611374565b34801561052d57600080fd5b5061058f61053c3660046137eb565b60126020526000908152604090208054600182015460028301546003840154600490940154608084811b95600160801b95869004821b9585831b95819004831b9480841b94919004831b929190911b9088565b604080516001600160801b0319998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a084015290921660c082015260e081019190915261010001610323565b3480156105ef57600080fd5b506103a661140e565b34801561060457600080fd5b50610341610613366004613918565b611472565b34801561062457600080fd5b50610493600f5481565b34801561063a57600080fd5b50610493600c5481565b34801561065057600080fd5b506000546001600160a01b031661036e565b34801561066e57600080fd5b50610493600b5481565b34801561068457600080fd5b50610341610693366004613918565b611496565b3480156106a457600080fd5b506103416114b3565b3480156106b957600080fd5b506103a66114c2565b3480156106ce57600080fd5b506103a66106dd366004613676565b6114cc565b3480156106ee57600080fd5b506103416106fd366004613918565b6114d7565b34801561070e57600080fd5b5060085461036e906001600160a01b031681565b34801561072e57600080fd5b5061049361073d3660046137eb565b6114f4565b34801561074e57600080fd5b506103a661075d3660046136a7565b6115f8565b34801561076e57600080fd5b506103a661077d3660046135f9565b611612565b34801561078e57600080fd5b506103a661079d366004613549565b611624565b3480156107ae57600080fd5b50610493600e5481565b3480156107c457600080fd5b506103416107d3366004613918565b611703565b6103a6611720565b3480156107ec57600080fd5b5061049361179e565b34801561080157600080fd5b50610317610810366004613549565b611802565b34801561082157600080fd5b50600a5415610317565b34801561083757600080fd5b506103a6610846366004613805565b611817565b34801561085757600080fd5b50610317610866366004613581565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108a057600080fd5b506108b46108af366004613918565b61189b565b6040516001600160801b03199091168152602001610323565b3480156108d957600080fd5b506103a66108e8366004613549565b6118d2565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061095057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606001805461099990613b14565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590613b14565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610ac18261106a565b9050806001600160a01b0316836001600160a01b03161415610b4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a91565b336001600160a01b0382161480610b675750610b678133610866565b610bd95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a91565b610be383836119b1565b505050565b6000546001600160a01b03163314610c425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b8051610cd1906013906020840190613323565b5050565b610ce08160006115f8565b50565b610be3838383611a1f565b6000546001600160a01b03163314610d485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546001600160a01b031615610def5760405162461bcd60e51b815260206004820152603260248201527f5741544348204f55543a205468652057726967676c65722068617320616c726560448201527f616479206265656e2073756d6d6f6e65642100000000000000000000000000006064820152608401610a91565b610dfa336000611a3a565b565b600a54610e715760405162461bcd60e51b815260206004820152602760248201527f59494b45533a2043616e6e6f7420796f696e6b206e6f6e2d6c6976696e67206560448201527f6e746974696573000000000000000000000000000000000000000000000000006064820152608401610a91565b600854604080517fb33bf26e000000000000000000000000000000000000000000000000000000008152905130926001600160a01b03169163b33bf26e916004808301926020929190829003018186803b158015610ece57600080fd5b505afa158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f069190613565565b6001600160a01b031614610fa85760405162461bcd60e51b815260206004820152604a60248201527f594f55204d55535420434f4e535452554354204144444954494f4e414c20505960448201527f4c4f4e533a2045722c2049206d65616e2c20696e73756666696369656e74207960648201527f6f696e6b20706f77657200000000000000000000000000000000000000000000608482015260a401610a91565b610fb133611802565b156110395760405162461bcd60e51b815260206004820152604c60248201527f534f5252593a205468652057726967676c65722068617320626574746572207460448201527f68696e677320746f20646f207468616e207669736974207468652073616d652060648201526b77616c6c657420747769636560a01b608482015260a401610a91565b6000611045600061106a565b905061105381336000611a54565b61105c81611c21565b610cd161015e600184611c50565b6000818152600360205260408120546001600160a01b0316806109845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a91565b6000546001600160a01b0316331461114f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6040805161010080820183526001600160801b0319808c168084529a811660208085019182529a821684860190815299821660608501908152988216608080860191825298831660a0860190815297831660c0860190815260e0860197885260009d8e526012909c52948c2093519051881c600160801b90810291891c91909117845598519751871c890297871c9790971760018084019190915592519451861c90970293851c93909317600280850191909155965160038401805491861c91909616179094555160049091015560138054808401825595529284047f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180549590931c9316601002900a9182026001600160801b039290920219909216179055565b6000546001600160a01b031633146112cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b60005b8251811015610be3578181815181106112f857634e487b7160e01b600052603260045260246000fd5b60200260200101516010600085848151811061132457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b0319166001600160801b031916815260200190815260200160002090805190602001906113619291906133d5565b508061136c81613b4f565b9150506112cf565b60006001600160a01b0382166113f25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a91565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146114685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b610dfa6000611eee565b6060600061147f83611f3e565b905061148f8382606001516121d4565b9392505050565b606060006114a383611f3e565b905061148f838260a001516121d4565b60606002805461099990613b14565b610dfa6000610dfc565b610cd133838361227a565b606060006114e483611f3e565b905061148f8382608001516121d4565b60008060005b60108110156115f157600360fc1b84826010811061152857634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319161015801561159157507f390000000000000000000000000000000000000000000000000000000000000084826010811061158057634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b03191611155b156115df5760308482601081106115b857634e487b7160e01b600052603260045260246000fd5b6115c49291901a613ac5565b60ff166115d283600a613a8f565b6115dc9190613a63565b91505b806115e981613b4f565b9150506114fa565b5092915050565b61160433836000610ce3565b610cd16101f4600283611c50565b61161e84848484612349565b50505050565b6040516bffffffffffffffffffffffff19606083901b166020820152603401604051602081830303815290604052805190602001207f5f058bf2675ed43a464255301da775714236c96ea763dca49f38aaa201cebcd260001b14156116bb57600980546001600160a01b0319167343a38b8d19e15e1734298bacb74788d0c36336c8929092186001600160a01b0316919091179055565b60405162461bcd60e51b815260206004820152600560248201527f57524f4e470000000000000000000000000000000000000000000000000000006044820152606401610a91565b6060600061171083611f3e565b905061148f838260c001516121d4565b6000546001600160a01b0316331461177a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b60405133904780156108fc02916000818181858888f19350505050610dfa57600080fd5b6000600a54600b546117b09190613aae565b600c54600d546117c09043613aae565b6117ca9190613a8f565b116117fb57600c54600d546117df9043613aae565b6117e99190613a8f565b600a546117f69190613a63565b905090565b50600b5490565b6000600161180f83611374565b101592915050565b6000546001600160a01b031633146118715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6001600160801b0319821660009081526011602090815260409091208251610be392840190613323565b601381815481106118ab57600080fd5b9060005260206000209060029182820401919006601002915054906101000a900460801b81565b6000546001600160a01b0316331461192c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b6001600160a01b0381166119a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a91565b610ce081611eee565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119e68261106a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610be383838360405180602001604052806000815250612349565b610cd1828260405180602001604052806000815250612373565b826001600160a01b0316611a678261106a565b6001600160a01b031614611ae35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a91565b6001600160a01b038216611b5e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a91565b611b696000826119b1565b6001600160a01b0383166000908152600460205260408120805460019290611b92908490613aae565b90915550506001600160a01b0382166000908152600460205260408120805460019290611bc0908490613a63565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5415610ce057611c35816007546123f1565b600160076000828254611c489190613a63565b909155505050565b600a54611c5c57505050565b43600d541415611cd357600f8054906000611c7683613b4f565b91905055506005600f541115611cce5760405162461bcd60e51b815260206004820152601460248201527f432d432d432d434f4d424f20425245414b4552210000000000000000000000006044820152606401610a91565b611ce3565b600f54600114611ce3576001600f555b6000611ced61179e565b6009549091506000906001600160a01b0316611d0a576000611da0565b6009546040517f2cb6279600000000000000000000000000000000000000000000000000000000815261029a60048201526001600160a01b0390911690632cb627969060240160206040518083038186803b158015611d6857600080fd5b505afa158015611d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da09190613930565b90506000612710611db2836064613a63565b600e54611dc0906064613a63565b611dca9089613a8f565b611dd49190613a8f565b611dde9190613a7b565b9050828110611e66576040805184815260006020820152908101869052849033907f49445b8b5a23b957f47475654ea817b3f5c0184c1047019e20f8d71f8497074d9060600160405180910390a3604051849033907f60037f73cc49b4f60d0cd7541fd72338422d5cf364bb07898359701cb74c895090600090a350506000600a5550505050565b611e708184613aae565b600a8190555084600e6000828254611e889190613a63565b9091555050600a54849033907f49445b8b5a23b957f47475654ea817b3f5c0184c1047019e20f8d71f8497074d90611ec09087613aae565b600a54604080519283526020830191909152810189905260600160405180910390a3505043600d5550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052905b6013548110156120f2576012600060138381548110611faf57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600291828204019190066010029054906101000a900460801b6001600160801b0319166001600160801b0319168152602001908152602001600020600401548310156120e057601260006013838154811061202457634e487b7160e01b600052603260045260246000fd5b600091825260208083206002808404909101546001600160801b0319601060019586160261010090810a909204608090811b8216885287850198909852604096870190952086519182018752805480891b87168352600160801b90819004891b8716948301949094529384015480881b86169682019690965294829004861b8416606086015282015480861b84168587015204841b821660a0840152600381015490931b1660c082015260049091015460e08201529392505050565b806120ea81613b4f565b915050611f80565b5060126000601360008154811061211957634e487b7160e01b600052603260045260246000fd5b600091825260208083206002808404909101546001600160801b0319601060019586160261010090810a909204608090811b8216885287850198909852604096870190952086519182018752805480891b87168352600160801b90819004891b8716948301949094529384015480881b86169682019690965294829004861b8416606086015282015480861b84168587015204841b821660a0840152600381015490931b1660c082015260049091015460e082015292915050565b6001600160801b03198116600090815260116020908152604080832080548251818502810185019093528083526060949383018282801561226157602002820191906000526020600020906000905b82829054906101000a900460801b6001600160801b03191681526020019060100190602082600f010492830192600103820291508084116122235790505b505050505090506122728482612533565b949350505050565b816001600160a01b0316836001600160a01b031614156122dc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a91565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61235584848484612b7a565b6000546001600160a01b0385811691161461161e5761161e84611c21565b61237d83836123f1565b61238a6000848484612d38565b610be35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a91565b6001600160a01b0382166124475760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a91565b6000818152600360205260409020546001600160a01b0316156124ac5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a91565b6001600160a01b03821660009081526004602052604081208054600192906124d5908490613a63565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608060005b8351811015612b72577f5f746f6b656e5f696400000000000000000000000000000000000000000000006001600160801b03191684828151811061258d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b03191614156125be576125b7826125b287612e90565b612faa565b9150612b60565b8381815181106125de57634e487b7160e01b600052603260045260246000fd5b602002602001015160006010811061260657634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f24000000000000000000000000000000000000000000000000000000000000001415612670576125b7826125b28787858151811061266357634e487b7160e01b600052603260045260246000fd5b60200260200101516121d4565b83818151811061269057634e487b7160e01b600052603260045260246000fd5b60200260200101516000601081106126b857634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f2500000000000000000000000000000000000000000000000000000000000000141561275957600061272d600886848151811061271457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b031916901b6114f4565b9050858115612743576127408288613b6a565b90505b612750846125b283612e90565b93505050612b60565b83818151811061277957634e487b7160e01b600052603260045260246000fd5b60200260200101516000601081106127a157634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f7b000000000000000000000000000000000000000000000000000000000000001415612a7d5760606000806127e6846001613a63565b90505b86518110156129485786818151811061281257634e487b7160e01b600052603260045260246000fd5b602002602001015160006010811061283a57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319167f7d0000000000000000000000000000000000000000000000000000000000000014801561291f575086848151811061289157634e487b7160e01b600052603260045260246000fd5b60200260200101516001601081106128b957634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b0319168782815181106128e757634e487b7160e01b600052603260045260246000fd5b602002602001015160016010811061290f57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916145b1561292957612948565b8161293381613b4f565b9250508061294081613b4f565b9150506127e9565b5060008167ffffffffffffffff81111561297257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561299b578160200160208202803683370190505b5090506000806129ac866001613a63565b90505b8851811015612a585783821015612a41578881815181106129e057634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110612a0857634e487b7160e01b600052603260045260246000fd5b6001600160801b03199092166020928302919091019091015281612a2b81613b4f565b9250508580612a3990613b4f565b965050612a46565b612a58565b80612a5081613b4f565b9150506129af565b50612a638983612533565b9350612a72866125b286612fd6565b955050505050612b60565b612b5d8260106000878581518110612aa557634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160801b0319166001600160801b03191681526020019081526020016000208054612ada90613b14565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0690613b14565b8015612b535780601f10612b2857610100808354040283529160200191612b53565b820191906000526020600020905b815481529060010190602001808311612b3657829003601f168201915b5050505050612faa565b91505b80612b6a81613b4f565b915050612539565b509392505050565b8115612bee5760405162461bcd60e51b815260206004820152603b60248201527f57484154205745524520594f55205448494e4b494e473a204f6e6c792054686560448201527f20306d696e6f75732063616e206265207472616e7366657272656400000000006064820152608401610a91565b612bf783611802565b1580612c035750600a54155b612c8a5760405162461bcd60e51b815260206004820152604c60248201527f534f5252593a205468652057726967676c65722068617320626574746572207460448201527f68696e677320746f20646f207468616e207669736974207468652073616d652060648201526b77616c6c657420747769636560a01b608482015260a401610a91565b612c943383613007565b612d2c5760405162461bcd60e51b815260206004820152605560248201527f494d504f535349424c453a2059656574696e672d66726f6d2d612d646973746160448201527f6e636520697320696e20636f6e74726164696374696f6e20776974682074686560648201527f206c617773206f662074686520756e6976657273650000000000000000000000608482015260a401610a91565b61161e848484846130fa565b60006001600160a01b0384163b15612e8557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d7c9033908990889088906004016139bf565b602060405180830381600087803b158015612d9657600080fd5b505af1925050508015612dc6575060408051601f3d908101601f19168201909252612dc3918101906138fc565b60015b612e6b573d808015612df4576040519150601f19603f3d011682016040523d82523d6000602084013e612df9565b606091505b508051612e635760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612272565b506001949350505050565b606081612eb45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ede5780612ec881613b4f565b9150612ed79050600a83613a7b565b9150612eb8565b60008167ffffffffffffffff811115612f0757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f31576020820181803683370190505b5090505b841561227257612f46600183613aae565b9150612f53600a86613b6a565b612f5e906030613a63565b60f81b818381518110612f8157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612fa3600a86613a7b565b9450612f35565b60608282604051602001612fbf929190613974565b604051602081830303815290604052905092915050565b6060612fe182613178565b604051602001612ff191906139a3565b6040516020818303038152906040529050919050565b6000818152600360205260408120546001600160a01b03166130805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a91565b600061308b8361106a565b9050806001600160a01b0316846001600160a01b031614806130c65750836001600160a01b03166130bb84610a1c565b6001600160a01b0316145b8061227257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612272565b613105848484611a54565b61311184848484612d38565b61161e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a91565b606081516000141561319857505060408051602081019091526000815290565b6000604051806060016040528060408152602001613bec60409139905060006003845160026131c79190613a63565b6131d19190613a7b565b6131dc906004613a8f565b905060006131eb826020613a63565b67ffffffffffffffff81111561321157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561323b576020820181803683370190505b509050818152600183018586518101602084015b818310156132a7576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161324f565b6003895106600181146132c157600281146132ed57613315565b7f3d3d000000000000000000000000000000000000000000000000000000000000600119830152613315565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b509398975050505050505050565b828054828255906000526020600020906001016002900481019282156133c55791602002820160005b8382111561339057835183826101000a8154816001600160801b03021916908360801c02179055509260200192601001602081600f0104928301926001030261334c565b80156133c35782816101000a8154906001600160801b030219169055601001602081600f01049283019260010302613390565b505b506133d1929150613449565b5090565b8280546133e190613b14565b90600052602060002090601f01602090048101928261340357600085556133c5565b82601f1061341c57805160ff19168380011785556133c5565b828001600101855582156133c5579182015b828111156133c557825182559160200191906001019061342e565b5b808211156133d1576000815560010161344a565b600067ffffffffffffffff83111561347857613478613baa565b61348b601f8401601f1916602001613a0e565b905082815283838301111561349f57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126134c6578081fd5b813560206134db6134d683613a3f565b613a0e565b80838252828201915082860187848660051b89010111156134fa578586fd5b855b8581101561351f5761350d8261352c565b845292840192908401906001016134fc565b5090979650505050505050565b80356001600160801b03198116811461354457600080fd5b919050565b60006020828403121561355a578081fd5b813561148f81613bc0565b600060208284031215613576578081fd5b815161148f81613bc0565b60008060408385031215613593578081fd5b823561359e81613bc0565b915060208301356135ae81613bc0565b809150509250929050565b6000806000606084860312156135cd578081fd5b83356135d881613bc0565b925060208401356135e881613bc0565b929592945050506040919091013590565b6000806000806080858703121561360e578081fd5b843561361981613bc0565b9350602085013561362981613bc0565b925060408501359150606085013567ffffffffffffffff81111561364b578182fd5b8501601f8101871361365b578182fd5b61366a8782356020840161345e565b91505092959194509250565b60008060408385031215613688578182fd5b823561369381613bc0565b9150602083013580151581146135ae578182fd5b600080604083850312156136b9578182fd5b82356136c481613bc0565b946020939093013593505050565b6000602082840312156136e3578081fd5b813567ffffffffffffffff8111156136f9578182fd5b612272848285016134b6565b6000806040808486031215613718578283fd5b833567ffffffffffffffff8082111561372f578485fd5b61373b878388016134b6565b9450602091508186013581811115613751578485fd5b8601601f81018813613761578485fd5b803561376f6134d682613a3f565b8082825285820191508584018b878560051b870101111561378e578889fd5b885b848110156137d9578135878111156137a6578a8bfd5b8601603f81018e136137b6578a8bfd5b6137c68e8a8301358c840161345e565b8552509287019290870190600101613790565b50989b909a5098505050505050505050565b6000602082840312156137fc578081fd5b61148f8261352c565b60008060408385031215613817578182fd5b6138208361352c565b9150602083013567ffffffffffffffff81111561383b578182fd5b613847858286016134b6565b9150509250929050565b600080600080600080600080610100898b03121561386d578586fd5b6138768961352c565b975061388460208a0161352c565b965061389260408a0161352c565b95506138a060608a0161352c565b94506138ae60808a0161352c565b93506138bc60a08a0161352c565b92506138ca60c08a0161352c565b915060e089013590509295985092959890939650565b6000602082840312156138f1578081fd5b813561148f81613bd5565b60006020828403121561390d578081fd5b815161148f81613bd5565b600060208284031215613929578081fd5b5035919050565b600060208284031215613941578081fd5b5051919050565b60008151808452613960816020860160208601613ae8565b601f01601f19169290920160200192915050565b60008351613986818460208801613ae8565b83519083019061399a818360208801613ae8565b01949350505050565b600082516139b5818460208701613ae8565b9190910192915050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526139f16080830184613948565b9695505050505050565b60208152600061148f6020830184613948565b604051601f8201601f1916810167ffffffffffffffff81118282101715613a3757613a37613baa565b604052919050565b600067ffffffffffffffff821115613a5957613a59613baa565b5060051b60200190565b60008219821115613a7657613a76613b7e565b500190565b600082613a8a57613a8a613b94565b500490565b6000816000190483118215151615613aa957613aa9613b7e565b500290565b600082821015613ac057613ac0613b7e565b500390565b600060ff821660ff841680821015613adf57613adf613b7e565b90039392505050565b60005b83811015613b03578181015183820152602001613aeb565b8381111561161e5750506000910152565b600181811c90821680613b2857607f821691505b60208210811415613b4957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b6357613b63613b7e565b5060010190565b600082613b7957613b79613b94565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ce057600080fd5b6001600160e01b031981168114610ce057600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201f7dc7be0793d29f29ceed6538ee1a90cdc51dc30dc3a5fa690189744d3c750064736f6c63430008040033

Deployed Bytecode Sourcemap

1380:12027:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:1;;;;;;;;;;-1:-1:-1;1570:300:1;;;;;:::i;:::-;;:::i;:::-;;;10708:14:17;;10701:22;10683:41;;10671:2;10656:18;1570:300:1;;;;;;;;2488:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3999:217::-;;;;;;;;;;-1:-1:-1;3999:217:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9960:55:17;;;9942:74;;9930:2;9915:18;3999:217:1;9897:125:17;3537:401:1;;;;;;;;;;-1:-1:-1;3537:401:1;;;;;:::i;:::-;;:::i;:::-;;4833:201:14;;;;;;;;;;-1:-1:-1;4833:201:14;;;;;:::i;:::-;;:::i;1579:29::-;;;;;;;;;;-1:-1:-1;1579:29:14;;;;-1:-1:-1;;;;;1579:29:14;;;13145:100;;;;;;;;;;-1:-1:-1;13145:100:14;;;;;:::i;:::-;;:::i;4758:69::-;;;;;;;;;;-1:-1:-1;4758:69:14;;;;;:::i;:::-;;:::i;2736:160::-;;;;;;;;;;-1:-1:-1;2736:160:14;;;;;:::i;:::-;;:::i;2302:202::-;;;;;;;;;;;;;:::i;5040:691::-;;;;;;;;;;-1:-1:-1;5040:691:14;;;;;:::i;:::-;;:::i;1752:32::-;;;;;;;;;;;;;;;;;;;21869:25:17;;;21857:2;21842:18;1752:32:14;21824:76:17;2191:235:1;;;;;;;;;;-1:-1:-1;2191:235:1;;;;;:::i;:::-;;:::i;12552:587:14:-;;;;;;;;;;-1:-1:-1;12552:587:14;;;;;:::i;:::-;;:::i;12224:202::-;;;;;;;;;;-1:-1:-1;12224:202:14;;;;;:::i;:::-;;:::i;1929:205:1:-;;;;;;;;;;-1:-1:-1;1929:205:1;;;;;:::i;:::-;;:::i;1941:45:14:-;;;;;;;;;;-1:-1:-1;1941:45:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1941:45:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11436:15:17;;;11418:34;;11488:15;;;11483:2;11468:18;;11461:43;11540:15;;;11520:18;;;11513:43;;;;11592:15;;;11587:2;11572:18;;11565:43;11645:15;;;11639:3;11624:19;;11617:44;11698:15;;11692:3;11677:19;;11670:44;11751:15;;;11745:3;11730:19;;11723:44;11798:3;11783:19;;11776:35;;;;11320:3;11305:19;1941:45:14;11287:530:17;1668:101:0;;;;;;;;;;;;;:::i;8360:197:14:-;;;;;;;;;;-1:-1:-1;8360:197:14;;;;;:::i;:::-;;:::i;1823:24::-;;;;;;;;;;;;;;;;1717:29;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;1673:38:14;;;;;;;;;;;;;;;;8766:194;;;;;;;;;;-1:-1:-1;8766:194:14;;;;;:::i;:::-;;:::i;2650:102:1:-;;;;;;;;;;;;;:::i;5737:49:14:-;;;;;;;;;;;;;:::i;4283:153:1:-;;;;;;;;;;-1:-1:-1;4283:153:1;;;;;:::i;:::-;;:::i;8563:197:14:-;;;;;;;;;;-1:-1:-1;8563:197:14;;;;;:::i;:::-;;:::i;1511:62::-;;;;;;;;;;-1:-1:-1;1511:62:14;;;;-1:-1:-1;;;;;1511:62:14;;;11940:278;;;;;;;;;;-1:-1:-1;11940:278:14;;;;;:::i;:::-;;:::i;4592:160::-;;;;;;;;;;-1:-1:-1;4592:160:14;;;;;:::i;:::-;;:::i;3072:199::-;;;;;;;;;;-1:-1:-1;3072:199:14;;;;;:::i;:::-;;:::i;8001:353::-;;;;;;;;;;-1:-1:-1;8001:353:14;;;;;:::i;:::-;;:::i;1790:27::-;;;;;;;;;;;;;;;;8966:203;;;;;;;;;;-1:-1:-1;8966:203:14;;;;;:::i;:::-;;:::i;13251:119::-;;;:::i;7183:222::-;;;;;;;;;;;;;:::i;4422:112::-;;;;;;;;;;-1:-1:-1;4422:112:14;;;;;:::i;:::-;;:::i;7425:86::-;;;;;;;;;;-1:-1:-1;7491:8:14;;:13;7425:86;;12432:114;;;;;;;;;;-1:-1:-1;12432:114:14;;;;;:::i;:::-;;:::i;4502:162:1:-;;;;;;;;;;-1:-1:-1;4502:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;4622:25:1;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4502:162;1992:29:14;;;;;;;;;;-1:-1:-1;1992:29:14;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;10899:79:17;;;10881:98;;10869:2;10854:18;1992:29:14;10836:149:17;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;1570:300:1:-;1672:4;-1:-1:-1;;;;;;1707:40:1;;1722:25;1707:40;;:104;;-1:-1:-1;;;;;;;1763:48:1;;1778:33;1763:48;1707:104;:156;;;-1:-1:-1;952:25:11;-1:-1:-1;;;;;;937:40:11;;;1827:36:1;1688:175;1570:300;-1:-1:-1;;1570:300:1:o;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;3999:217::-;4075:7;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;4094:73;;;;-1:-1:-1;;;4094:73:1;;19512:2:17;4094:73:1;;;19494:21:17;19551:2;19531:18;;;19524:30;19590:34;19570:18;;;19563:62;-1:-1:-1;;;19641:18:17;;;19634:42;19693:19;;4094:73:1;;;;;;;;;-1:-1:-1;4185:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4185:24:1;;3999:217::o;3537:401::-;3617:13;3633:23;3648:7;3633:14;:23::i;:::-;3617:39;;3680:5;-1:-1:-1;;;;;3674:11:1;:2;-1:-1:-1;;;;;3674:11:1;;;3666:57;;;;-1:-1:-1;;;3666:57:1;;20705:2:17;3666:57:1;;;20687:21:17;20744:2;20724:18;;;20717:30;20783:34;20763:18;;;20756:62;20854:3;20834:18;;;20827:31;20875:19;;3666:57:1;20677:223:17;3666:57:1;719:10:8;-1:-1:-1;;;;;3755:21:1;;;;:62;;-1:-1:-1;3780:37:1;3797:5;719:10:8;4502:162:1;:::i;3780:37::-;3734:165;;;;-1:-1:-1;;;3734:165:1;;17422:2:17;3734:165:1;;;17404:21:17;17461:2;17441:18;;;17434:30;17500:34;17480:18;;;17473:62;17571:26;17551:18;;;17544:54;17615:19;;3734:165:1;17394:246:17;3734:165:1;3910:21;3919:2;3923:7;3910:8;:21::i;:::-;3537:401;;;:::o;4833:201:14:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;4940:27:14::1;:87:::0;;-1:-1:-1;;;;;;4940:87:14::1;-1:-1:-1::0;;;;;4940:87:14;;;::::1;::::0;;;::::1;::::0;;4833:201::o;13145:100::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;13219:19:14;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;13145:100:::0;:::o;4758:69::-;4805:15;4810:6;4818:1;4805:4;:15::i;:::-;4758:69;:::o;2736:160::-;2854:35;2871:4;2877:2;2881:7;2854:16;:35::i;2302:202::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;2376:1:14::1;7247:16:1::0;;:7;:16;;;;-1:-1:-1;;;;;7247:16:1;:30;2347:116:14::1;;;::::0;-1:-1:-1;;;2347:116:14;;20286:2:17;2347:116:14::1;::::0;::::1;20268:21:17::0;20325:2;20305:18;;;20298:30;20364:34;20344:18;;;20337:62;20435:20;20415:18;;;20408:48;20473:19;;2347:116:14::1;20258:240:17::0;2347:116:14::1;2473:24;2483:10;2495:1;2473:9;:24::i;:::-;2302:202::o:0;5040:691::-;7491:8;;5087:99;;;;-1:-1:-1;;;5087:99:14;;16665:2:17;5087:99:14;;;16647:21:17;16704:2;16684:18;;;16677:30;16743:34;16723:18;;;16716:62;16814:9;16794:18;;;16787:37;16841:19;;5087:99:14;16637:229:17;5087:99:14;5217:27;;:48;;;;;;;;5277:4;;-1:-1:-1;;;;;5217:27:14;;:46;;:48;;;;;;;;;;;;;;:27;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;5217:65:14;;5196:186;;;;-1:-1:-1;;;5196:186:14;;19029:2:17;5196:186:14;;;19011:21:17;19068:2;19048:18;;;19041:30;19107:34;19087:18;;;19080:62;19178:34;19158:18;;;19151:62;19250:12;19229:19;;;19222:41;19280:19;;5196:186:14;19001:304:17;5196:186:14;5413:21;5423:10;5413:9;:21::i;:::-;:30;5392:153;;;;-1:-1:-1;;;5392:153:14;;21107:2:17;5392:153:14;;;21089:21:17;21146:2;21126:18;;;21119:30;21185:34;21165:18;;;21158:62;21256:34;21236:18;;;21229:62;-1:-1:-1;;;21307:19:17;;;21300:43;21360:19;;5392:153:14;21079:306:17;5392:153:14;5555:12;5570:10;5578:1;5570:7;:10::i;:::-;5555:25;;5590:30;5600:4;5606:10;5618:1;5590:9;:30::i;:::-;5630:10;5635:4;5630;:10::i;:::-;5650:25;5661:3;5666:1;5669:5;5650:10;:25::i;2191:235:1:-;2263:7;2298:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2298:16:1;2332:19;2324:73;;;;-1:-1:-1;;;2324:73:1;;18258:2:17;2324:73:1;;;18240:21:17;18297:2;18277:18;;;18270:30;18336:34;18316:18;;;18309:62;18407:11;18387:18;;;18380:39;18436:19;;2324:73:1;18230:231:17;12552:587:14;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;12835:226:14::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;12835:226:14;;::::1;::::0;;;;;::::1;;::::0;;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;;;;12808:24:::1;13072:15:::0;;;:9:::1;:15:::0;;;;;;:26;;;;;::::1;-1:-1:-1::0;;;13072:26:14;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;;::::0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;::::1;;::::0;;;;::::1;::::0;;::::1;::::0;13109:12:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;13072:26:::1;13109:23;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;;;;13109:23:14;;;::::1;;::::0;;::::1;;::::0;;12552:587::o;12224:202::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;12337:6:14::1;12332:88;12349:4;:11;12345:1;:15;12332:88;;;12402:4;12407:1;12402:7;;;;;;-1:-1:-1::0;;;12402:7:14::1;;;;;;;;;;;;;;;12381:9;:18;12391:4;12396:1;12391:7;;;;;;-1:-1:-1::0;;;12391:7:14::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;12381:18:14::1;;-1:-1:-1::0;;;;;12381:18:14::1;;;;;;;;;;;;;:28;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;12362:3:14;::::1;::::0;::::1;:::i;:::-;;;;12332:88;;1929:205:1::0;2001:7;-1:-1:-1;;;;;2028:19:1;;2020:74;;;;-1:-1:-1;;;2020:74:1;;17847:2:17;2020:74:1;;;17829:21:17;17886:2;17866:18;;;17859:30;17925:34;17905:18;;;17898:62;17996:12;17976:18;;;17969:40;18026:19;;2020:74:1;17819:232:17;2020:74:1;-1:-1:-1;;;;;;2111:16:1;;;;;:9;:16;;;;;;;1929:205::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;8360:197:14:-:0;8416:13;8441:24;8468:20;8480:7;8468:11;:20::i;:::-;8441:47;;8506:44;8523:7;8532:8;:17;;;8506:16;:44::i;:::-;8499:51;8360:197;-1:-1:-1;;;8360:197:14:o;8766:194::-;8819:13;8844:24;8871:20;8883:7;8871:11;:20::i;:::-;8844:47;;8909:44;8926:7;8935:8;:17;;;8909:16;:44::i;2650:102:1:-;2706:13;2738:7;2731:14;;;;;:::i;5737:49:14:-;5771:8;5777:1;5771:5;:8::i;4283:153:1:-;4377:52;719:10:8;4410:8:1;4420;4377:18;:52::i;8563:197:14:-;8619:13;8644:24;8671:20;8683:7;8671:11;:20::i;:::-;8644:47;;8709:44;8726:7;8735:8;:17;;;8709:16;:44::i;11940:278::-;11988:4;12004:11;12030:6;12025:164;12042:8;12038:12;;12025:164;;;-1:-1:-1;;;12075:1:14;12077;12075:4;;;;;-1:-1:-1;;;12075:4:14;;;;;;;;;;;;-1:-1:-1;;;;;12075:12:14;;;;:28;;;;-1:-1:-1;12091:12:14;:1;12093;12091:4;;;;;-1:-1:-1;;;12091:4:14;;;;;;;;;;;;-1:-1:-1;;;;;12091:12:14;;;;12075:28;12071:108;;;12161:2;12153:1;12155;12153:4;;;;;-1:-1:-1;;;12153:4:14;;;;;;;;;12147:16;;;12153:4;;12147:16;:::i;:::-;12132:32;;:11;:6;12141:2;12132:11;:::i;:::-;:32;;;;:::i;:::-;12123:41;;12071:108;12052:3;;;;:::i;:::-;;;;12025:164;;;-1:-1:-1;12205:6:14;11940:278;-1:-1:-1;;11940:278:14:o;4592:160::-;4654:35;4667:10;4679:6;4687:1;4654:12;:35::i;:::-;4699:25;4710:3;4715:1;4718:5;4699:10;:25::i;3072:199::-;3222:42;3239:4;3245:2;3249:7;3258:5;3222:16;:42::i;:::-;3072:199;;;;:::o;8001:353::-;8075:24;;-1:-1:-1;;8959:2:17;8955:15;;;8951:53;8075:24:14;;;8939:66:17;9021:12;;8075:24:14;;;;;;;;;;;;8065:35;;;;;;8104:66;8065:105;;;8061:262;;;8186:10;:106;;-1:-1:-1;;;;;;8186:106:14;8247:42;8219:71;;;;-1:-1:-1;;;;;8186:106:14;;;;;;;8001:353::o;8061:262::-;8332:15;;-1:-1:-1;;;8332:15:14;;21592:2:17;8332:15:14;;;21574:21:17;21631:1;21611:18;;;21604:29;21669:7;21649:18;;;21642:35;21694:18;;8332:15:14;21564:154:17;8966:203:14;9028:13;9053:24;9080:20;9092:7;9080:11;:20::i;:::-;9053:47;;9118:44;9135:7;9144:8;:17;;;9118:16;:44::i;13251:119::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;13313:49:14::1;::::0;719:10:8;;13340:21:14::1;13313:49:::0;::::1;;;::::0;::::1;::::0;;;13340:21;719:10:8;13313:49:14;::::1;;;;;;13305:58;;;::::0;::::1;7183:222:::0;7223:7;7306:8;;7293:10;;:21;;;;:::i;:::-;7282:8;;7265:13;;7250:28;;:12;:28;:::i;:::-;7249:41;;;;:::i;:::-;:65;:149;;7390:8;;7373:13;;7358:28;;:12;:28;:::i;:::-;7357:41;;;;:::i;:::-;7346:8;;:52;;;;:::i;:::-;7242:156;;7183:222;:::o;7249:149::-;-1:-1:-1;7325:10:14;;;7183:222::o;4422:112::-;4480:4;4526:1;4503:19;4513:8;4503:9;:19::i;:::-;:24;;;4422:112;-1:-1:-1;;4422:112:14:o;12432:114::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;-1:-1:-1;;;;;;12518:14:14;::::1;;::::0;;;:9:::1;:14;::::0;;;;;;;:21;;::::1;::::0;;::::1;::::0;::::1;:::i;1992:29::-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19925:2:17;1240:68:0;;;19907:21:17;;;19944:18;;;19937:30;20003:34;19983:18;;;19976:62;20055:18;;1240:68:0;19897:182:17;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;13401:2:17;1998:73:0::1;::::0;::::1;13383:21:17::0;13440:2;13420:18;;;13413:30;13479:34;13459:18;;;13452:62;13550:8;13530:18;;;13523:36;13576:19;;1998:73:0::1;13373:228:17::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;11168:171:1:-:0;11242:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11242:29:1;-1:-1:-1;;;;;11242:29:1;;;;;;;;:24;;11295:23;11242:24;11295:14;:23::i;:::-;-1:-1:-1;;;;;11286:46:1;;;;;;;;;;;11168:171;;:::o;3277:161:14:-;3392:39;3409:4;3415:2;3419:7;3392:39;;;;;;;;;;;;:16;:39::i;8116:108:1:-;8191:26;8201:2;8205:7;8191:26;;;;;;;;;;;;:9;:26::i;10452:605::-;10606:4;-1:-1:-1;;;;;10579:31:1;:23;10594:7;10579:14;:23::i;:::-;-1:-1:-1;;;;;10579:31:1;;10571:81;;;;-1:-1:-1;;;10571:81:1;;13808:2:17;10571:81:1;;;13790:21:17;13847:2;13827:18;;;13820:30;13886:34;13866:18;;;13859:62;13957:7;13937:18;;;13930:35;13982:19;;10571:81:1;13780:227:17;10571:81:1;-1:-1:-1;;;;;10670:16:1;;10662:65;;;;-1:-1:-1;;;10662:65:1;;15493:2:17;10662:65:1;;;15475:21:17;15532:2;15512:18;;;15505:30;15571:34;15551:18;;;15544:62;15642:6;15622:18;;;15615:34;15666:19;;10662:65:1;15465:226:17;10662:65:1;10839:29;10856:1;10860:7;10839:8;:29::i;:::-;-1:-1:-1;;;;;10879:15:1;;;;;;:9;:15;;;;;:20;;10898:1;;10879:15;:20;;10898:1;;10879:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10909:13:1;;;;;;:9;:13;;;;;:18;;10926:1;;10909:13;:18;;10926:1;;10909:18;:::i;:::-;;;;-1:-1:-1;;10937:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10937:21:1;-1:-1:-1;;;;;10937:21:1;;;;;;;;;10974:27;;10937:16;;10974:27;;;;;;;3537:401;;;:::o;2587:143:14:-;7491:8;;:13;2632:92;;2665:20;2671:2;2675:9;;2665:5;:20::i;:::-;2712:1;2699:9;;:14;;;;;;;:::i;:::-;;;;-1:-1:-1;;2587:143:14;:::o;6085:1092::-;7491:8;;6175:25;;6085:1092;;;:::o;6175:25::-;6275:12;6258:13;;:29;6254:182;;;6303:5;:7;;;:5;:7;;;:::i;:::-;;;;;;6336:1;6328:5;;:9;6324:45;;;6339:30;;-1:-1:-1;;;6339:30:14;;17073:2:17;6339:30:14;;;17055:21:17;17112:2;17092:18;;;17085:30;17151:22;17131:18;;;17124:50;17191:18;;6339:30:14;17045:170:17;6324:45:14;6254:182;;;6390:5;;6399:1;6390:10;6386:50;;6424:1;6416:5;:9;6386:50;6445:20;6468:9;:7;:9::i;:::-;6575:10;;6445:32;;-1:-1:-1;6547:17:14;;-1:-1:-1;;;;;6575:10:14;6567:84;;6650:1;6567:84;;;6605:10;;:42;;;;;6643:3;6605:42;;;12495:50:17;-1:-1:-1;;;;;6605:10:14;;;;:37;;12468:18:17;;6605:42:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6547:104;-1:-1:-1;6661:14:14;6734:5;6715:15;6547:104;6727:3;6715:15;:::i;:::-;6695:8;;:14;;6706:3;6695:14;:::i;:::-;6681:29;;:10;:29;:::i;:::-;6680:51;;;;:::i;:::-;6678:61;;;;:::i;:::-;6661:78;;6796:12;6786:6;:22;6782:197;;6829:51;;;22115:25:17;;;6870:1:14;22171:2:17;22156:18;;22149:34;22199:18;;;22192:34;;;6849:5:14;;6837:10;;6829:51;;22103:2:17;22088:18;6829:51:14;;;;;;;6899:23;;6916:5;;6904:10;;6899:23;;;;;-1:-1:-1;;6947:1:14;6936:8;:12;-1:-1:-1;;;;6085:1092:14:o;6782:197::-;6999:21;7014:6;6999:12;:21;:::i;:::-;6988:8;:32;;;;7042:6;7030:8;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;;7105:8:14;;7083:5;;7071:10;;7063:69;;7090:23;;:12;:23;:::i;:::-;7115:8;;7063:69;;;22115:25:17;;;22171:2;22156:18;;22149:34;;;;22199:18;;22192:34;;;22103:2;22088:18;7063:69:14;;;;;;;-1:-1:-1;;7158:12:14;7142:13;:28;-1:-1:-1;;;;6085:1092:14:o;2270:187:0:-;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2270:187;;:::o;9175:322:14:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9260:188:14;9281:12;:19;9277:23;;9260:188;;;9335:9;:26;9345:12;9358:1;9345:15;;;;;;-1:-1:-1;;;9345:15:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9335:26:14;;-1:-1:-1;;;;;9335:26:14;;;;;;;;;;;;;:35;;;9325:7;:45;9321:117;;;9397:9;:26;9407:12;9420:1;9407:15;;;;;;-1:-1:-1;;;9407:15:14;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9407:15:14;;;;;;;;;;;;;;;;;9397:26;;;;;;;;;;;;;;;;;;9390:33;;;;;;;;;;;;;;;;-1:-1:-1;;;9390:33:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9175:322;-1:-1:-1;;;9175:322:14:o;9321:117::-;9302:3;;;;:::i;:::-;;;;9260:188;;;;9464:9;:26;9474:12;9487:1;9474:15;;;;;;-1:-1:-1;;;9474:15:14;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9474:15:14;;;;;;;;;;;;;;;;;9464:26;;;;;;;;;;;;;;;;;;9457:33;;;;;;;;;;;;;;;;-1:-1:-1;;;9457:33:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9175:322;-1:-1:-1;;9175:322:14:o;9503:231::-;-1:-1:-1;;;;;;9654:20:14;;9626:25;9654:20;;;:9;:20;;;;;;;;9626:48;;;;;;;;;;;;;;;;;9597:13;;9626:25;:48;;9654:20;9626:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9626:48:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9692:35;9709:7;9718:8;9692:16;:35::i;:::-;9685:42;9503:231;-1:-1:-1;;;;9503:231:14:o;11474:307:1:-;11624:8;-1:-1:-1;;;;;11615:17:1;:5;-1:-1:-1;;;;;11615:17:1;;;11607:55;;;;-1:-1:-1;;;11607:55:1;;15898:2:17;11607:55:1;;;15880:21:17;15937:2;15917:18;;;15910:30;15976:27;15956:18;;;15949:55;16021:18;;11607:55:1;15870:175:17;11607:55:1;-1:-1:-1;;;;;11672:25:1;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11672:46:1;;;;;;;;;;11733:41;;10683::17;;;11733::1;;10656:18:17;11733:41:1;;;;;;;11474:307;;;:::o;3444:249:14:-;3587:34;3596:4;3602:2;3606:7;3615:5;3587:8;:34::i;:::-;1082:7:0;1108:6;-1:-1:-1;;;;;3635:15:14;;;1108:6:0;;3635:15:14;3631:56;;3666:10;3671:4;3666;:10::i;8445:311:1:-;8570:18;8576:2;8580:7;8570:5;:18::i;:::-;8619:54;8650:1;8654:2;8658:7;8667:5;8619:22;:54::i;:::-;8598:151;;;;-1:-1:-1;;;8598:151:1;;12982:2:17;8598:151:1;;;12964:21:17;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:17;;;13104:48;13169:19;;8598:151:1;12954:240:17;9078:427:1;-1:-1:-1;;;;;9157:16:1;;9149:61;;;;-1:-1:-1;;;9149:61:1;;18668:2:17;9149:61:1;;;18650:21:17;;;18687:18;;;18680:30;18746:34;18726:18;;;18719:62;18798:18;;9149:61:1;18640:182:17;9149:61:1;7224:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;:30;9220:58;;;;-1:-1:-1;;;9220:58:1;;14214:2:17;9220:58:1;;;14196:21:17;14253:2;14233:18;;;14226:30;14292;14272:18;;;14265:58;14340:18;;9220:58:1;14186:178:17;9220:58:1;-1:-1:-1;;;;;9345:13:1;;;;;;:9;:13;;;;;:18;;9362:1;;9345:13;:18;;9362:1;;9345:18;:::i;:::-;;;;-1:-1:-1;;9373:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9373:21:1;-1:-1:-1;;;;;9373:21:1;;;;;;;;9410:33;;9373:16;;;9410:33;;9373:16;;9410:33;13219:19:14::1;13145:100:::0;:::o;9740:1836::-;9842:13;9871:17;9904:6;9899:1651;9916:8;:15;9912:1;:19;9899:1651;;;9971:20;-1:-1:-1;;;;;9956:35:14;;:8;9965:1;9956:11;;;;;;-1:-1:-1;;;9956:11:14;;;;;;;;;;;;;;;-1:-1:-1;;;;;9956:35:14;;;9952:1588;;;10017:29;10022:3;10027:18;:7;:16;:18::i;:::-;10017:4;:29::i;:::-;10011:35;;9952:1588;;;10071:8;10080:1;10071:11;;;;;;-1:-1:-1;;;10071:11:14;;;;;;;;;;;;;;;10083:1;10071:14;;;;;-1:-1:-1;;;10071:14:14;;;;;;;;;;;;-1:-1:-1;;;;;10071:21:14;;;;10067:1473;;;10118:49;10123:3;10128:38;10145:7;10154:8;10163:1;10154:11;;;;;;-1:-1:-1;;;10154:11:14;;;;;;;;;;;;;;;10128:16;:38::i;10067:1473::-;10192:8;10201:1;10192:11;;;;;;-1:-1:-1;;;10192:11:14;;;;;;;;;;;;;;;10204:1;10192:14;;;;;-1:-1:-1;;;10192:14:14;;;;;;;;;;;;-1:-1:-1;;;;;10192:21:14;;;;10188:1352;;;10233:10;10246:24;10268:1;10253:8;10262:1;10253:11;;;;;;-1:-1:-1;;;10253:11:14;;;;;;;;;;;;;;;-1:-1:-1;;;;;10253:16:14;;;;10246:6;:24::i;:::-;10233:37;-1:-1:-1;10301:7:14;10330:10;;10326:80;;10372:15;10382:5;10372:7;:15;:::i;:::-;10364:23;;10326:80;10429:27;10434:3;10439:16;:5;:14;:16::i;10429:27::-;10423:33;;10188:1352;;;;;10481:8;10490:1;10481:11;;;;;;-1:-1:-1;;;10481:11:14;;;;;;;;;;;;;;;10493:1;10481:14;;;;;-1:-1:-1;;;10481:14:14;;;;;;;;;;;;-1:-1:-1;;;;;10481:21:14;;;;10477:1063;;;10573:17;10608:14;;10654:5;:1;10658;10654:5;:::i;:::-;10645:14;;10640:270;10665:8;:15;10661:1;:19;10640:270;;;10713:8;10722:1;10713:11;;;;;;-1:-1:-1;;;10713:11:14;;;;;;;;;;;;;;;10725:1;10713:14;;;;;-1:-1:-1;;;10713:14:14;;;;;;;;;;;;-1:-1:-1;;;;;10713:21:14;;;;:57;;;;;10756:8;10765:1;10756:11;;;;;;-1:-1:-1;;;10756:11:14;;;;;;;;;;;;;;;10768:1;10756:14;;;;;-1:-1:-1;;;10756:14:14;;;;;;;;;;;;-1:-1:-1;;;;;10738:32:14;;:8;10747:1;10738:11;;;;;;-1:-1:-1;;;10738:11:14;;;;;;;;;;;;;;;10750:1;10738:14;;;;;-1:-1:-1;;;10738:14:14;;;;;;;;;;;;-1:-1:-1;;;;;10738:32:14;;;10713:57;10709:183;;;10798:5;;10709:183;10858:11;;;;:::i;:::-;;;;10682:3;;;;:::i;:::-;;;;10640:270;;;;10927:31;10975:9;10961:24;;;;;;-1:-1:-1;;;10961:24:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10961:24:14;-1:-1:-1;10927:58:14;-1:-1:-1;11003:6:14;;11041:5;:1;11045;11041:5;:::i;:::-;11032:14;;11027:304;11052:8;:15;11048:1;:19;11027:304;;;11104:9;11100:1;:13;11096:217;;;11161:8;11170:1;11161:11;;;;;;-1:-1:-1;;;11161:11:14;;;;;;;;;;;;;;;11141:14;11156:1;11141:17;;;;;;-1:-1:-1;;;11141:17:14;;;;;;;;;-1:-1:-1;;;;;;11141:31:14;;;:17;;;;;;;;;;;:31;11198:3;;;;:::i;:::-;;;;11227;;;;;:::i;:::-;;;;11096:217;;;11285:5;;11096:217;11069:3;;;;:::i;:::-;;;;11027:304;;;;11354:41;11371:7;11380:14;11354:16;:41::i;:::-;11348:47;;11419:28;11424:3;11429:17;11442:3;11429:12;:17::i;11419:28::-;11413:34;;10477:1063;;;;;;;11492:33;11497:3;11502:9;:22;11512:8;11521:1;11512:11;;;;;;-1:-1:-1;;;11512:11:14;;;;;;;;;;;;;;;-1:-1:-1;;;;;11502:22:14;;-1:-1:-1;;;;;11502:22:14;;;;;;;;;;;;;11492:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;:33::i;:::-;11486:39;;10477:1063;9933:3;;;;:::i;:::-;;;;9899:1651;;;-1:-1:-1;11566:3:14;9740:1836;-1:-1:-1;;;9740:1836:14:o;3699:666::-;3855:12;;3834:118;;;;-1:-1:-1;;;3834:118:14;;15065:2:17;3834:118:14;;;15047:21:17;15104:2;15084:18;;;15077:30;15143:34;15123:18;;;15116:62;15214:29;15194:18;;;15187:57;15261:19;;3834:118:14;15037:249:17;3834:118:14;3984:13;3994:2;3984:9;:13::i;:::-;:22;;:38;;-1:-1:-1;7491:8:14;;:13;4010:12;3963:161;;;;-1:-1:-1;;;3963:161:14;;21107:2:17;3963:161:14;;;21089:21:17;21146:2;21126:18;;;21119:30;21185:34;21165:18;;;21158:62;21256:34;21236:18;;;21229:62;-1:-1:-1;;;21307:19:17;;;21300:43;21360:19;;3963:161:14;21079:306:17;3963:161:14;4156:41;719:10:8;4189:7:14;4156:18;:41::i;:::-;4135:173;;;;-1:-1:-1;;;4135:173:14;;14571:2:17;4135:173:14;;;14553:21:17;14610:2;14590:18;;;14583:30;14649:34;14629:18;;;14622:62;14720:34;14700:18;;;14693:62;14792:23;14771:19;;;14764:52;14833:19;;4135:173:14;14543:315:17;4135:173:14;4319:39;4333:4;4339:2;4343:7;4352:5;4319:13;:39::i;12334:778:1:-;12484:4;-1:-1:-1;;;;;12504:13:1;;1465:19:7;:23;12500:606:1;;12539:72;;-1:-1:-1;;;12539:72:1;;-1:-1:-1;;;;;12539:36:1;;;;;:72;;719:10:8;;12590:4:1;;12596:7;;12605:5;;12539:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12539:72:1;;;;;;;;-1:-1:-1;;12539:72:1;;;;;;;;;;;;:::i;:::-;;;12535:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12778:13:1;;12774:266;;12820:60;;-1:-1:-1;;;12820:60:1;;12982:2:17;12820:60:1;;;12964:21:17;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:17;;;13104:48;13169:19;;12820:60:1;12954:240:17;12774:266:1;12992:6;12986:13;12977:6;12973:2;12969:15;12962:38;12535:519;-1:-1:-1;;;;;;12661:51:1;-1:-1:-1;;;12661:51:1;;-1:-1:-1;12654:58:1;;12500:606;-1:-1:-1;13091:4:1;12334:778;;;;;;:::o;328:703:10:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;-1:-1:-1;;;627:10:10;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:10;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:10;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;11582:174:14;11667:13;11733:2;11744;11710:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11696:53;;11582:174;;;;:::o;11762:172::-;11839:13;11899:26;11919:4;11899:13;:26::i;:::-;11882:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;11868:59;;11762:172;;;:::o;7442:344:1:-;7535:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;7551:73;;;;-1:-1:-1;;;7551:73:1;;16252:2:17;7551:73:1;;;16234:21:17;16291:2;16271:18;;;16264:30;16330:34;16310:18;;;16303:62;-1:-1:-1;;;16381:18:17;;;16374:42;16433:19;;7551:73:1;16224:234:17;7551:73:1;7634:13;7650:23;7665:7;7650:14;:23::i;:::-;7634:39;;7702:5;-1:-1:-1;;;;;7691:16:1;:7;-1:-1:-1;;;;;7691:16:1;;:51;;;;7735:7;-1:-1:-1;;;;;7711:31:1;:20;7723:7;7711:11;:20::i;:::-;-1:-1:-1;;;;;7711:31:1;;7691:51;:87;;;-1:-1:-1;;;;;;4622:25:1;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7746:32;4502:162;6549:307;6700:28;6710:4;6716:2;6720:7;6700:9;:28::i;:::-;6746:48;6769:4;6775:2;6779:7;6788:5;6746:22;:48::i;:::-;6738:111;;;;-1:-1:-1;;;6738:111:1;;12982:2:17;6738:111:1;;;12964:21:17;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:17;;;13104:48;13169:19;;6738:111:1;12954:240:17;777:1861:13;835:13;864:4;:11;879:1;864:16;860:31;;;-1:-1:-1;;882:9:13;;;;;;;;;-1:-1:-1;882:9:13;;;777:1861::o;860:31::-;940:19;962:12;;;;;;;;;;;;;;;;;940:34;;1023:18;1069:1;1050:4;:11;1064:1;1050:15;;;;:::i;:::-;1049:21;;;;:::i;:::-;1044:27;;:1;:27;:::i;:::-;1023:48;-1:-1:-1;1151:20:13;1185:15;1023:48;1198:2;1185:15;:::i;:::-;1174:27;;;;;;-1:-1:-1;;;1174:27:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1174:27:13;;1151:50;;1294:10;1286:6;1279:26;1386:1;1379:5;1375:13;1442:4;1492;1486:11;1477:7;1473:25;1585:2;1577:6;1573:15;1655:739;1674:6;1665:7;1662:19;1655:739;;;1771:1;1762:7;1758:15;1747:26;;1809:7;1803:14;1932:4;1924:5;1920:2;1916:14;1912:25;1902:8;1898:40;1892:47;1881:9;1873:67;1985:1;1974:9;1970:17;1957:30;;2063:4;2055:5;2051:2;2047:14;2043:25;2033:8;2029:40;2023:47;2012:9;2004:67;2116:1;2105:9;2101:17;2088:30;;2194:4;2186:5;2183:1;2178:14;2174:25;2164:8;2160:40;2154:47;2143:9;2135:67;2247:1;2236:9;2232:17;2219:30;;2325:4;2317:5;2305:25;2295:8;2291:40;2285:47;2274:9;2266:67;-1:-1:-1;2378:1:13;2363:17;1655:739;;;2464:1;2457:4;2451:11;2447:19;2484:1;2479:54;;;;2551:1;2546:52;;;;2440:158;;2479:54;2514:16;-1:-1:-1;;2495:17:13;;2488:43;2479:54;;2546:52;2581:14;-1:-1:-1;;2562:17:13;;2555:41;2440:158;-1:-1:-1;2625:6:13;;777:1861;-1:-1:-1;;;;;;;;777:1861:13:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:17;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:17;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:699::-;479:5;532:3;525:4;517:6;513:17;509:27;499:2;;554:5;547;540:20;499:2;594:6;581:20;620:4;644:60;660:43;700:2;660:43;:::i;:::-;644:60;:::i;:::-;726:3;750:2;745:3;738:15;778:2;773:3;769:12;762:19;;813:2;805:6;801:15;865:3;860:2;854;851:1;847:10;839:6;835:23;831:32;828:41;825:2;;;886:5;879;872:20;825:2;912:5;926:169;940:2;937:1;934:9;926:169;;;997:23;1016:3;997:23;:::i;:::-;985:36;;1041:12;;;;1073;;;;958:1;951:9;926:169;;;-1:-1:-1;1113:5:17;;489:635;-1:-1:-1;;;;;;;489:635:17:o;1129:220::-;1197:20;;-1:-1:-1;;;;;;1246:78:17;;1236:89;;1226:2;;1339:1;1336;1329:12;1226:2;1178:171;;;:::o;1354:257::-;1413:6;1466:2;1454:9;1445:7;1441:23;1437:32;1434:2;;;1487:6;1479;1472:22;1434:2;1531:9;1518:23;1550:31;1575:5;1550:31;:::i;1616:261::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:2;;;1760:6;1752;1745:22;1707:2;1797:9;1791:16;1816:31;1841:5;1816:31;:::i;1882:398::-;1950:6;1958;2011:2;1999:9;1990:7;1986:23;1982:32;1979:2;;;2032:6;2024;2017:22;1979:2;2076:9;2063:23;2095:31;2120:5;2095:31;:::i;:::-;2145:5;-1:-1:-1;2202:2:17;2187:18;;2174:32;2215:33;2174:32;2215:33;:::i;:::-;2267:7;2257:17;;;1969:311;;;;;:::o;2285:466::-;2362:6;2370;2378;2431:2;2419:9;2410:7;2406:23;2402:32;2399:2;;;2452:6;2444;2437:22;2399:2;2496:9;2483:23;2515:31;2540:5;2515:31;:::i;:::-;2565:5;-1:-1:-1;2622:2:17;2607:18;;2594:32;2635:33;2594:32;2635:33;:::i;:::-;2389:362;;2687:7;;-1:-1:-1;;;2741:2:17;2726:18;;;;2713:32;;2389:362::o;2756:824::-;2851:6;2859;2867;2875;2928:3;2916:9;2907:7;2903:23;2899:33;2896:2;;;2950:6;2942;2935:22;2896:2;2994:9;2981:23;3013:31;3038:5;3013:31;:::i;:::-;3063:5;-1:-1:-1;3120:2:17;3105:18;;3092:32;3133:33;3092:32;3133:33;:::i;:::-;3185:7;-1:-1:-1;3239:2:17;3224:18;;3211:32;;-1:-1:-1;3294:2:17;3279:18;;3266:32;3321:18;3310:30;;3307:2;;;3358:6;3350;3343:22;3307:2;3386:22;;3439:4;3431:13;;3427:27;-1:-1:-1;3417:2:17;;3473:6;3465;3458:22;3417:2;3501:73;3566:7;3561:2;3548:16;3543:2;3539;3535:11;3501:73;:::i;:::-;3491:83;;;2886:694;;;;;;;:::o;3585:436::-;3650:6;3658;3711:2;3699:9;3690:7;3686:23;3682:32;3679:2;;;3732:6;3724;3717:22;3679:2;3776:9;3763:23;3795:31;3820:5;3795:31;:::i;:::-;3845:5;-1:-1:-1;3902:2:17;3887:18;;3874:32;3944:15;;3937:23;3925:36;;3915:2;;3980:6;3972;3965:22;4026:325;4094:6;4102;4155:2;4143:9;4134:7;4130:23;4126:32;4123:2;;;4176:6;4168;4161:22;4123:2;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;4341:2;4326:18;;;;4313:32;;-1:-1:-1;;;4113:238:17:o;4356:368::-;4440:6;4493:2;4481:9;4472:7;4468:23;4464:32;4461:2;;;4514:6;4506;4499:22;4461:2;4559:9;4546:23;4592:18;4584:6;4581:30;4578:2;;;4629:6;4621;4614:22;4578:2;4657:61;4710:7;4701:6;4690:9;4686:22;4657:61;:::i;4729:1530::-;4857:6;4865;4896:2;4939;4927:9;4918:7;4914:23;4910:32;4907:2;;;4960:6;4952;4945:22;4907:2;5005:9;4992:23;5034:18;5075:2;5067:6;5064:14;5061:2;;;5096:6;5088;5081:22;5061:2;5124:61;5177:7;5168:6;5157:9;5153:22;5124:61;:::i;:::-;5114:71;;5204:2;5194:12;;5259:2;5248:9;5244:18;5231:32;5288:2;5278:8;5275:16;5272:2;;;5309:6;5301;5294:22;5272:2;5337:24;;5392:4;5384:13;;5380:27;-1:-1:-1;5370:2:17;;5426:6;5418;5411:22;5370:2;5467;5454:16;5490:60;5506:43;5546:2;5506:43;:::i;5490:60::-;5572:3;5596:2;5591:3;5584:15;5624:2;5619:3;5615:12;5608:19;;5655:2;5651;5647:11;5703:7;5698:2;5692;5689:1;5685:10;5681:2;5677:19;5673:28;5670:41;5667:2;;;5729:6;5721;5714:22;5667:2;5756:6;5771:458;5785:2;5782:1;5779:9;5771:458;;;5862:3;5849:17;5898:2;5885:11;5882:19;5879:2;;;5919:6;5911;5904:22;5879:2;5951:20;;6006:2;5998:11;;5994:25;-1:-1:-1;5984:2:17;;6038:6;6030;6023:22;5984:2;6072:82;6146:7;6140:2;6136;6132:11;6119:25;6114:2;6110;6106:11;6072:82;:::i;:::-;6060:95;;-1:-1:-1;6175:12:17;;;;6207;;;;5803:1;5796:9;5771:458;;;-1:-1:-1;4876:1383:17;;6248:5;;-1:-1:-1;4876:1383:17;-1:-1:-1;;;;;;;;;4876:1383:17:o;6264:196::-;6323:6;6376:2;6364:9;6355:7;6351:23;6347:32;6344:2;;;6397:6;6389;6382:22;6344:2;6425:29;6444:9;6425:29;:::i;6465:442::-;6558:6;6566;6619:2;6607:9;6598:7;6594:23;6590:32;6587:2;;;6640:6;6632;6625:22;6587:2;6668:29;6687:9;6668:29;:::i;:::-;6658:39;;6748:2;6737:9;6733:18;6720:32;6775:18;6767:6;6764:30;6761:2;;;6812:6;6804;6797:22;6761:2;6840:61;6893:7;6884:6;6873:9;6869:22;6840:61;:::i;:::-;6830:71;;;6577:330;;;;;:::o;6912:713::-;7034:6;7042;7050;7058;7066;7074;7082;7090;7143:3;7131:9;7122:7;7118:23;7114:33;7111:2;;;7165:6;7157;7150:22;7111:2;7193:29;7212:9;7193:29;:::i;:::-;7183:39;;7241:38;7275:2;7264:9;7260:18;7241:38;:::i;:::-;7231:48;;7298:38;7332:2;7321:9;7317:18;7298:38;:::i;:::-;7288:48;;7355:38;7389:2;7378:9;7374:18;7355:38;:::i;:::-;7345:48;;7412:39;7446:3;7435:9;7431:19;7412:39;:::i;:::-;7402:49;;7470:39;7504:3;7493:9;7489:19;7470:39;:::i;:::-;7460:49;;7528:39;7562:3;7551:9;7547:19;7528:39;:::i;:::-;7518:49;;7614:3;7603:9;7599:19;7586:33;7576:43;;7101:524;;;;;;;;;;;:::o;7630:255::-;7688:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:2;;;7762:6;7754;7747:22;7709:2;7806:9;7793:23;7825:30;7849:5;7825:30;:::i;7890:259::-;7959:6;8012:2;8000:9;7991:7;7987:23;7983:32;7980:2;;;8033:6;8025;8018:22;7980:2;8070:9;8064:16;8089:30;8113:5;8089:30;:::i;8154:190::-;8213:6;8266:2;8254:9;8245:7;8241:23;8237:32;8234:2;;;8287:6;8279;8272:22;8234:2;-1:-1:-1;8315:23:17;;8224:120;-1:-1:-1;8224:120:17:o;8349:194::-;8419:6;8472:2;8460:9;8451:7;8447:23;8443:32;8440:2;;;8493:6;8485;8478:22;8440:2;-1:-1:-1;8521:16:17;;8430:113;-1:-1:-1;8430:113:17:o;8548:257::-;8589:3;8627:5;8621:12;8654:6;8649:3;8642:19;8670:63;8726:6;8719:4;8714:3;8710:14;8703:4;8696:5;8692:16;8670:63;:::i;:::-;8787:2;8766:15;-1:-1:-1;;8762:29:17;8753:39;;;;8794:4;8749:50;;8597:208;-1:-1:-1;;8597:208:17:o;9044:466::-;9219:3;9257:6;9251:13;9273:53;9319:6;9314:3;9307:4;9299:6;9295:17;9273:53;:::i;:::-;9389:13;;9348:16;;;;9411:57;9389:13;9348:16;9445:4;9433:17;;9411:57;:::i;:::-;9484:20;;9227:283;-1:-1:-1;;;;9227:283:17:o;9515:276::-;9646:3;9684:6;9678:13;9700:53;9746:6;9741:3;9734:4;9726:6;9722:17;9700:53;:::i;:::-;9769:16;;;;;9654:137;-1:-1:-1;;9654:137:17:o;10027:511::-;10221:4;-1:-1:-1;;;;;10331:2:17;10323:6;10319:15;10308:9;10301:34;10383:2;10375:6;10371:15;10366:2;10355:9;10351:18;10344:43;;10423:6;10418:2;10407:9;10403:18;10396:34;10466:3;10461:2;10450:9;10446:18;10439:31;10487:45;10527:3;10516:9;10512:19;10504:6;10487:45;:::i;:::-;10479:53;10230:308;-1:-1:-1;;;;;;10230:308:17:o;12556:219::-;12705:2;12694:9;12687:21;12668:4;12725:44;12765:2;12754:9;12750:18;12742:6;12725:44;:::i;22561:275::-;22632:2;22626:9;22697:2;22678:13;;-1:-1:-1;;22674:27:17;22662:40;;22732:18;22717:34;;22753:22;;;22714:62;22711:2;;;22779:18;;:::i;:::-;22815:2;22808:22;22606:230;;-1:-1:-1;22606:230:17:o;22841:183::-;22901:4;22934:18;22926:6;22923:30;22920:2;;;22956:18;;:::i;:::-;-1:-1:-1;23001:1:17;22997:14;23013:4;22993:25;;22910:114::o;23029:128::-;23069:3;23100:1;23096:6;23093:1;23090:13;23087:2;;;23106:18;;:::i;:::-;-1:-1:-1;23142:9:17;;23077:80::o;23162:120::-;23202:1;23228;23218:2;;23233:18;;:::i;:::-;-1:-1:-1;23267:9:17;;23208:74::o;23287:168::-;23327:7;23393:1;23389;23385:6;23381:14;23378:1;23375:21;23370:1;23363:9;23356:17;23352:45;23349:2;;;23400:18;;:::i;:::-;-1:-1:-1;23440:9:17;;23339:116::o;23460:125::-;23500:4;23528:1;23525;23522:8;23519:2;;;23533:18;;:::i;:::-;-1:-1:-1;23570:9:17;;23509:76::o;23590:195::-;23628:4;23665;23662:1;23658:12;23697:4;23694:1;23690:12;23722:3;23717;23714:12;23711:2;;;23729:18;;:::i;:::-;23766:13;;;23637:148;-1:-1:-1;;;23637:148:17:o;23790:258::-;23862:1;23872:113;23886:6;23883:1;23880:13;23872:113;;;23962:11;;;23956:18;23943:11;;;23936:39;23908:2;23901:10;23872:113;;;24003:6;24000:1;23997:13;23994:2;;;-1:-1:-1;;24038:1:17;24020:16;;24013:27;23843:205::o;24053:437::-;24132:1;24128:12;;;;24175;;;24196:2;;24250:4;24242:6;24238:17;24228:27;;24196:2;24303;24295:6;24292:14;24272:18;24269:38;24266:2;;;-1:-1:-1;;;24337:1:17;24330:88;24441:4;24438:1;24431:15;24469:4;24466:1;24459:15;24266:2;;24108:382;;;:::o;24495:135::-;24534:3;-1:-1:-1;;24555:17:17;;24552:2;;;24575:18;;:::i;:::-;-1:-1:-1;24622:1:17;24611:13;;24542:88::o;24635:112::-;24667:1;24693;24683:2;;24698:18;;:::i;:::-;-1:-1:-1;24732:9:17;;24673:74::o;24752:184::-;-1:-1:-1;;;24801:1:17;24794:88;24901:4;24898:1;24891:15;24925:4;24922:1;24915:15;24941:184;-1:-1:-1;;;24990:1:17;24983:88;25090:4;25087:1;25080:15;25114:4;25111:1;25104:15;25130:184;-1:-1:-1;;;25179:1:17;25172:88;25279:4;25276:1;25269:15;25303:4;25300:1;25293:15;25319:154;-1:-1:-1;;;;;25398:5:17;25394:54;25387:5;25384:65;25374:2;;25463:1;25460;25453:12;25478:177;-1:-1:-1;;;;;;25556:5:17;25552:78;25545:5;25542:89;25532:2;;25645:1;25642;25635:12

Swarm Source

ipfs://1f7dc7be0793d29f29ceed6538ee1a90cdc51dc30dc3a5fa690189744d3c7500
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.