ETH Price: $3,430.55 (+7.47%)
Gas: 14 Gwei

Token

0xHunter (0xH)
 

Overview

Max Total Supply

1,942 0xH

Holders

1,067

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 0xH
0xe80ce4a83c8dfc128804d8c09dab65c5c1e376b4
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:
Hunter

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 8 of 19: Hunter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";

/**
 * @title 0xHunter
 */
contract Hunter is
    ContextMixin,
    ERC721Enumerable,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;

    string public baseTokenURI;
    uint256 private _currentTokenId = 0;
    uint256 MAX_SUPPLY = 8888;
    uint256 public totalMint = 0;
    uint256 public totalPledge;

    uint256 public presaleTime = 1635346800;
    uint256 public pledgeTime = 1635519600;

    mapping(address => uint8) public whitelist;
    mapping(address => uint8) public pledgeNumOfPlayer;
    mapping(address => uint8) public claimed;
    mapping(address => uint8) public airdropNum;

    event Rider(uint256 indexed tokenId, address indexed luckyDog);

    /**
     * @dev Throws if called by any account that's not whitelisted.
     */
    modifier onlyWhitelisted() {
        require(
            whitelist[msg.sender] > 0,
            "0xHunter: You're not on the whitelist."
        );
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC721(_name, _symbol) {
        baseTokenURI = _uri;
        _initializeEIP712(_name);
    }

    /**
     * @dev Mint to msg.sender. Only whitelisted users can participate
     */
    function presale() external payable onlyWhitelisted {
        require(
            block.timestamp >= presaleTime &&
                block.timestamp < presaleTime + 1 days,
            "0xHunter: Presale has not yet started."
        );
        require(
            msg.value == uint256(whitelist[msg.sender]) * 6e16,
            "0xHunter: You need to pay the exact price."
        );
        _mintList(whitelist[msg.sender]);
        totalMint += uint256(whitelist[msg.sender]);
        whitelist[msg.sender] = 0;
    }

    /**
     * @dev Pledge for the purchase. Each address can only purchase up to 5 0xHunters.
     * @param _num Quantity to purchase
     */
    function summon(uint8 _num) external payable {
        require(
            block.timestamp >= pledgeTime && block.timestamp <= pledgeTime + 7 days,
            "0xHunter: Pledge has not yet started."
        );
        require(
            (_num + pledgeNumOfPlayer[msg.sender] + claimed[msg.sender]) <= 5,
            "0xHunter: Each address can only purchase up to 5 0xHunters."
        );
        require(
            totalMint + uint256(_num) <= MAX_SUPPLY - totalPledge - 1650,
            "0xHunter: Sorry, all 0xHunters are sold out."
        );
        require(
            msg.value == uint256(_num) * 6e16,
            "0xHunter: You need to pay the exact price."
        );
        pledgeNumOfPlayer[msg.sender] = pledgeNumOfPlayer[msg.sender] + _num;
        totalPledge += uint256(_num);
    }

    /**
     * @dev Your 0xHunters can only be claimed at the end of the sale.
     */
    function claim() external {
        require(
            block.timestamp >= pledgeTime && block.timestamp <= pledgeTime + 7 days,
            "0xHunter: You don't satisfy the claiming conditions."
        );
        _mintList(pledgeNumOfPlayer[msg.sender]);
        claimed[msg.sender] += pledgeNumOfPlayer[msg.sender];
        pledgeNumOfPlayer[msg.sender] = 0;
    }

    /**
     * @dev Airdrop hunters directly to several addresses.
     * @param _recipients addresss of the future owner of the token
     */
    function mintTo(address[] memory _recipients) external onlyOwner {
        for (uint256 i = 0; i < _recipients.length; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(_recipients[i], newTokenId);
            _incrementTokenId();
        }
        totalMint += _recipients.length;
    }

    /**
     * @dev Airdrop hunters to several addresses.
     * @param _recipients addresss of the future owner of the token
     */
    function airdrop(address[] memory _recipients, uint8[] memory _amounts)
        external
        onlyOwner
    {
        require(
            block.timestamp >= pledgeTime,
            "0xHunter: Pledge has not yet started."
        );
        for (uint256 i = 0; i < _recipients.length; i++) {
            airdropNum[_recipients[i]] = _amounts[i];
        }
    }

    function getAirdrop() external {
        require(airdropNum[msg.sender] > 0 && block.timestamp <= pledgeTime + 7 days, "0xHunter: You don't satisfy the claiming conditions.");
        _mintList(airdropNum[msg.sender]);
        airdropNum[msg.sender] = 0;
    }

    /**
     * @dev For the last sales, 1 random 0xHunter will be picked and gifted with a Mustang as his ride.
     */
    function _mintList(uint8 _num) private {
        for (uint8 i = 0; i < _num; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(msg.sender, newTokenId);
            _incrementTokenId();
            if (newTokenId == MAX_SUPPLY - 1650) {
                uint256 randomNum = random() % 999;
                bytes32 randomHash = keccak256(
                    abi.encode(
                        ownerOf(newTokenId - randomNum - 1000),
                        ownerOf(newTokenId - randomNum - 2000),
                        ownerOf(newTokenId - randomNum - 3000)
                    )
                );
                uint256 riderId = newTokenId -
                    (uint256(randomHash) % newTokenId);
                emit Rider(riderId, ownerOf(riderId));
            }
        }
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev generates a random number based on block info
     */
    function random() private view returns (uint256) {
        bytes32 randomHash = keccak256(
            abi.encode(
                block.timestamp,
                block.difficulty,
                block.coinbase,
                msg.sender
            )
        );
        return uint256(randomHash);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        require(_currentTokenId < MAX_SUPPLY);
        _currentTokenId++;
    }

    /**
     * @dev change the baseTokenURI only by Admin
     */
    function setBaseUri(string memory _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    /**
     * @dev set the presale and pledge time only by Admin
     */
    function setAllTime(uint256 _preSaleTime, uint256 _pledgeTime)
        external
        onlyOwner
    {
        presaleTime = _preSaleTime;
        pledgeTime = _pledgeTime;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }

    function recoverGodhead() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    receive() external payable {}

    /**
     * @dev add addresses to the whitelist
     * @param addrs addresses
     * @param _amounts amounts
     */
    function addAddressesToWhitelist(
        address[] memory addrs,
        uint8[] memory _amounts
    ) public onlyOwner {
        for (uint256 i = 0; i < addrs.length; i++) {
            whitelist[addrs[i]] = _amounts[i];
        }
    }
}

File 1 of 19: Address.sol
// SPDX-License-Identifier: MIT

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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 2 of 19: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 3 of 19: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

/**
 * @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 4 of 19: EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 5 of 19: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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 6 of 19: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own"
        );
        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);
    }

    /**
     * @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 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 {}
}

File 7 of 19: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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 9 of 19: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

/**
 * @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 10 of 19: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "./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 19: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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 tokenId);

    /**
     * @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 12 of 19: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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 13 of 19: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

/**
 * @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 14 of 19: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 15 of 19: Migrations.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

contract Migrations {
    address public owner;
    uint256 public last_completed_migration;

    constructor() {
        owner = msg.sender;
    }

    modifier restricted() {
        if (msg.sender == owner) _;
    }

    function setCompleted(uint256 completed) public restricted {
        last_completed_migration = completed;
    }

    function upgrade(address new_address) public restricted {
        Migrations upgraded = Migrations(new_address);
        upgraded.setCompleted(last_completed_migration);
    }
}

File 16 of 19: NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import {SafeMath} from "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 17 of 19: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "./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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 18 of 19: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 19 of 19: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

/**
 * @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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"luckyDog","type":"address"}],"name":"Rider","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":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint8[]","name":"_amounts","type":"uint8[]"}],"name":"addAddressesToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint8[]","name":"_amounts","type":"uint8[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"airdropNum","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"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":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"pledgeNumOfPlayer","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pledgeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverGodhead","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_preSaleTime","type":"uint256"},{"internalType":"uint256","name":"_pledgeTime","type":"uint256"}],"name":"setAllTime","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":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_num","type":"uint8"}],"name":"summon","outputs":[],"stateMutability":"payable","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPledge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a805460ff191690556000600f8190556122b8601055601155636179697060135563617c0c706014553480156200003b57600080fd5b5060405162003882380380620038828339810160408190526200005e9162000404565b82518390839062000077906000906020850190620002a7565b5080516200008d906001906020840190620002a7565b505050620000aa620000a4620000d460201b60201c565b620000f0565b8051620000bf90600e906020840190620002a7565b50620000cb8362000142565b505050620004e8565b6000620000eb620001a660201b62001a791760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156200018b5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001968162000205565b50600a805460ff19166001179055565b600033301415620001ff57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002029050565b50335b90565b6040518060800160405280604f815260200162003833604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002b59062000495565b90600052602060002090601f016020900481019282620002d9576000855562000324565b82601f10620002f457805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032457825182559160200191906001019062000307565b506200033292915062000336565b5090565b5b8082111562000332576000815560010162000337565b600082601f8301126200035f57600080fd5b81516001600160401b03808211156200037c576200037c620004d2565b604051601f8301601f19908116603f01168101908282118183101715620003a757620003a7620004d2565b81604052838152602092508683858801011115620003c457600080fd5b600091505b83821015620003e85785820183015181830184015290820190620003c9565b83821115620003fa5760008385830101525b9695505050505050565b6000806000606084860312156200041a57600080fd5b83516001600160401b03808211156200043257600080fd5b62000440878388016200034d565b945060208601519150808211156200045757600080fd5b62000465878388016200034d565b935060408601519150808211156200047c57600080fd5b506200048b868287016200034d565b9150509250925092565b600181811c90821680620004aa57607f821691505b60208210811415620004cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61333b80620004f86000396000f3fe6080604052600436106102605760003560e01c80638a6dc8a411610144578063c21a43e4116100b6578063d25f82a01161007a578063d25f82a014610733578063d547cfb714610748578063d9bf10671461075d578063e985e9c514610773578063f2fde38b146107bc578063fdea8e0b146107dc57600080fd5b8063c21a43e414610697578063c6e62e0b146106ad578063c87b56dd146106c3578063c884ef83146106e3578063ce7c8b491461071357600080fd5b8063a061a03a11610108578063a061a03a146105d4578063a0bcfc7f146105f4578063a22cb46514610614578063a3aca16614610634578063b88d4fde14610647578063bc545f5c1461066757600080fd5b80638a6dc8a41461050f5780638da5cb5b1461055157806395d89b411461056f5780639b19251a146105845780639e262e32146105b457600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461046f57806359a7715a1461048f5780636352211e146104a557806370a08231146104c5578063715018a6146104e5578063753df86a146104fa57600080fd5b80632f745c59146103e75780633408e4701461040757806342842e0e1461041a5780634e71d92d1461043a5780634ed3f96f1461044f57600080fd5b80630f7e5970116102245780630f7e59701461033057806318160ddd1461035d57806320379ee51461037c57806323b872dd146103915780632d0335ab146103b157600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630c53c51c1461031d57600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004612c5a565b6107e4565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661080f565b6040516102989190612ede565b3480156102cf57600080fd5b506102e36102de366004612cdd565b6108a1565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612b32565b61093b565b005b6102b661032b366004612ac0565b610a63565b34801561033c57600080fd5b506102b6604051806040016040528060018152602001603160f81b81525081565b34801561036957600080fd5b506008545b604051908152602001610298565b34801561038857600080fd5b50600b5461036e565b34801561039d57600080fd5b5061031b6103ac3660046129e0565b610c4d565b3480156103bd57600080fd5b5061036e6103cc366004612992565b6001600160a01b03166000908152600c602052604090205490565b3480156103f357600080fd5b5061036e610402366004612b32565b610c85565b34801561041357600080fd5b504661036e565b34801561042657600080fd5b5061031b6104353660046129e0565b610d1b565b34801561044657600080fd5b5061031b610d36565b34801561045b57600080fd5b5061031b61046a366004612cf6565b610df5565b34801561047b57600080fd5b5061036e61048a366004612cdd565b610e49565b34801561049b57600080fd5b5061036e60115481565b3480156104b157600080fd5b506102e36104c0366004612cdd565b610edc565b3480156104d157600080fd5b5061036e6104e0366004612992565b610f53565b3480156104f157600080fd5b5061031b610fda565b34801561050657600080fd5b5061031b61102f565b34801561051b57600080fd5b5061053f61052a366004612992565b60186020526000908152604090205460ff1681565b60405160ff9091168152602001610298565b34801561055d57600080fd5b50600d546001600160a01b03166102e3565b34801561057b57600080fd5b506102b66110b4565b34801561059057600080fd5b5061053f61059f366004612992565b60156020526000908152604090205460ff1681565b3480156105c057600080fd5b5061031b6105cf366004612b91565b6110c3565b3480156105e057600080fd5b5061031b6105ef366004612b91565b61119b565b34801561060057600080fd5b5061031b61060f366004612c94565b611295565b34801561062057600080fd5b5061031b61062f366004612a84565b6112f5565b61031b610642366004612d18565b6113f7565b34801561065357600080fd5b5061031b610662366004612a1c565b611601565b34801561067357600080fd5b5061053f610682366004612992565b60166020526000908152604090205460ff1681565b3480156106a357600080fd5b5061036e60125481565b3480156106b957600080fd5b5061036e60135481565b3480156106cf57600080fd5b506102b66106de366004612cdd565b611640565b3480156106ef57600080fd5b5061053f6106fe366004612992565b60176020526000908152604090205460ff1681565b34801561071f57600080fd5b5061031b61072e366004612b5c565b611674565b34801561073f57600080fd5b5061031b611727565b34801561075457600080fd5b506102b66117a8565b34801561076957600080fd5b5061036e60145481565b34801561077f57600080fd5b5061028c61078e3660046129ad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c857600080fd5b5061031b6107d7366004612992565b611836565b61031b6118ed565b60006001600160e01b0319821663780e9d6360e01b1480610809575061080982611ad6565b92915050565b60606000805461081e906131b4565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906131b4565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061094682610edc565b9050806001600160a01b0316836001600160a01b031614156109b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610916565b806001600160a01b03166109c6611b26565b6001600160a01b031614806109e257506109e28161078e611b26565b610a545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610916565b610a5e8383611b35565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610aa18782878787611ba3565b610af75760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610916565b6001600160a01b0387166000908152600c6020526040902054610b1b906001611c93565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610b6b90899033908a90612e75565b60405180910390a1600080306001600160a01b0316888a604051602001610b93929190612d97565b60408051601f1981840301815290829052610bad91612d7b565b6000604051808303816000865af19150503d8060008114610bea576040519150601f19603f3d011682016040523d82523d6000602084013e610bef565b606091505b509150915081610c415760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610916565b98975050505050505050565b610c5e610c58611b26565b82611ca6565b610c7a5760405162461bcd60e51b815260040161091690612fcc565b610a5e838383611d9d565b6000610c9083610f53565b8210610cf25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610916565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a5e83838360405180602001604052806000815250611601565b6014544210158015610d575750601454610d539062093a80613101565b4211155b610d735760405162461bcd60e51b815260040161091690612f43565b33600090815260166020526040902054610d8f9060ff16611f48565b3360009081526016602090815260408083205460179092528220805460ff928316939192610dbf91859116613119565b825460ff9182166101009390930a928302919092021990911617905550336000908152601660205260409020805460ff19169055565b610dfd611b26565b6001600160a01b0316610e18600d546001600160a01b031690565b6001600160a01b031614610e3e5760405162461bcd60e51b815260040161091690612f97565b601391909155601455565b6000610e5460085490565b8210610eb75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610916565b60088281548110610eca57610eca613280565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610916565b60006001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610916565b506001600160a01b031660009081526003602052604090205490565b610fe2611b26565b6001600160a01b0316610ffd600d546001600160a01b031690565b6001600160a01b0316146110235760405162461bcd60e51b815260040161091690612f97565b61102d60006120c9565b565b611037611b26565b6001600160a01b0316611052600d546001600160a01b031690565b6001600160a01b0316146110785760405162461bcd60e51b815260040161091690612f97565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156110b1573d6000803e3d6000fd5b50565b60606001805461081e906131b4565b6110cb611b26565b6001600160a01b03166110e6600d546001600160a01b031690565b6001600160a01b03161461110c5760405162461bcd60e51b815260040161091690612f97565b60005b8251811015610a5e5781818151811061112a5761112a613280565b60200260200101516015600085848151811061114857611148613280565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611193906131ef565b91505061110f565b6111a3611b26565b6001600160a01b03166111be600d546001600160a01b031690565b6001600160a01b0316146111e45760405162461bcd60e51b815260040161091690612f97565b6014544210156112065760405162461bcd60e51b81526004016109169061301d565b60005b8251811015610a5e5781818151811061122457611224613280565b60200260200101516018600085848151811061124257611242613280565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061128d906131ef565b915050611209565b61129d611b26565b6001600160a01b03166112b8600d546001600160a01b031690565b6001600160a01b0316146112de5760405162461bcd60e51b815260040161091690612f97565b80516112f190600e9060208401906127db565b5050565b6112fd611b26565b6001600160a01b0316826001600160a01b0316141561135e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610916565b806005600061136b611b26565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556113af611b26565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113eb911515815260200190565b60405180910390a35050565b601454421015801561141857506014546114149062093a80613101565b4211155b6114345760405162461bcd60e51b81526004016109169061301d565b3360009081526017602090815260408083205460169092529091205460059160ff90811691611464911684613119565b61146e9190613119565b60ff1611156114e55760405162461bcd60e51b815260206004820152603b60248201527f307848756e7465723a204561636820616464726573732063616e206f6e6c792060448201527f707572636861736520757020746f203520307848756e746572732e00000000006064820152608401610916565b6106726012546010546114f89190613171565b6115029190613171565b8160ff166011546115139190613101565b11156115765760405162461bcd60e51b815260206004820152602c60248201527f307848756e7465723a20536f7272792c20616c6c20307848756e74657273206160448201526b39329039b7b6321037baba1760a11b6064820152608401610916565b61158a60ff821666d529ae9e860000613152565b34146115a85760405162461bcd60e51b815260040161091690613062565b336000908152601660205260409020546115c690829060ff16613119565b336000908152601660205260408120805460ff191660ff93841617905560128054928416929091906115f9908490613101565b909155505050565b61161261160c611b26565b83611ca6565b61162e5760405162461bcd60e51b815260040161091690612fcc565b61163a8484848461211b565b50505050565b6060600e61164d8361214e565b60405160200161165e929190612dce565b6040516020818303038152906040529050919050565b61167c611b26565b6001600160a01b0316611697600d546001600160a01b031690565b6001600160a01b0316146116bd5760405162461bcd60e51b815260040161091690612f97565b60005b81518110156117135760006116d361224c565b90506116f88383815181106116ea576116ea613280565b60200260200101518261225d565b6117006123ab565b508061170b816131ef565b9150506116c0565b508051601160008282546115f99190613101565b3360009081526018602052604090205460ff161580159061175757506014546117539062093a80613101565b4211155b6117735760405162461bcd60e51b815260040161091690612f43565b3360009081526018602052604090205461178f9060ff16611f48565b336000908152601860205260409020805460ff19169055565b600e80546117b5906131b4565b80601f01602080910402602001604051908101604052809291908181526020018280546117e1906131b4565b801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b505050505081565b61183e611b26565b6001600160a01b0316611859600d546001600160a01b031690565b6001600160a01b03161461187f5760405162461bcd60e51b815260040161091690612f97565b6001600160a01b0381166118e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610916565b6110b1816120c9565b3360009081526015602052604090205460ff1661195b5760405162461bcd60e51b815260206004820152602660248201527f307848756e7465723a20596f75277265206e6f74206f6e20746865207768697460448201526532b634b9ba1760d11b6064820152608401610916565b601354421015801561197b57506013546119789062015180613101565b42105b6119d65760405162461bcd60e51b815260206004820152602660248201527f307848756e7465723a2050726573616c6520686173206e6f742079657420737460448201526530b93a32b21760d11b6064820152608401610916565b336000908152601560205260409020546119fa9060ff1666d529ae9e860000613152565b3414611a185760405162461bcd60e51b815260040161091690613062565b33600090815260156020526040902054611a349060ff16611f48565b336000908152601560205260408120546011805460ff909216929091611a5b908490613101565b9091555050336000908152601560205260409020805460ff19169055565b600033301415611ad057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611ad39050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611b0757506001600160e01b03198216635b5e139f60e01b145b8061080957506301ffc9a760e01b6001600160e01b0319831614610809565b6000611b30611a79565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6a82610edc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611c095760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610916565b6001611c1c611c17876123d2565b61244f565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611c6a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611c9f8284613101565b9392505050565b6000818152600260205260408120546001600160a01b0316611d1f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610916565b6000611d2a83610edc565b9050806001600160a01b0316846001600160a01b03161480611d655750836001600160a01b0316611d5a846108a1565b6001600160a01b0316145b80611d9557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611db082610edc565b6001600160a01b031614611e185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610916565b6001600160a01b038216611e7a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610916565b611e8583838361247f565b611e90600082611b35565b6001600160a01b0383166000908152600360205260408120805460019290611eb9908490613171565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ee7908490613101565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b8160ff168160ff1610156112f1576000611f6361224c565b9050611f6f338261225d565b611f776123ab565b610672601054611f879190613171565b8114156120b65760006103e7611fd360408051426020808301919091524482840152416060830152336080808401919091528351808403909101815260a0909201909252805191012090565b611fdd919061322a565b90506000611ffb6103e8611ff18486613171565b6104c09190613171565b61200b6107d0611ff18587613171565b61201b610bb8611ff18688613171565b604080516001600160a01b03948516602082015292841690830152909116606082015260800160408051601f19818403018152919052805160209091012090506000612067848361322a565b6120719085613171565b905061207c81610edc565b6001600160a01b0316817f9aa5cb75a58a4e3b56ba42f6c2dac64207266a605b00bfcf4ada2d5d68dc2e0360405160405180910390a35050505b50806120c18161320a565b915050611f4b565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612126848484611d9d565b61213284848484612537565b61163a5760405162461bcd60e51b815260040161091690612ef1565b6060816121725750506040805180820190915260018152600360fc1b602082015290565b8160005b811561219c5780612186816131ef565b91506121959050600a8361313e565b9150612176565b60008167ffffffffffffffff8111156121b7576121b7613296565b6040519080825280601f01601f1916602001820160405280156121e1576020820181803683370190505b5090505b8415611d95576121f6600183613171565b9150612203600a8661322a565b61220e906030613101565b60f81b81838151811061222357612223613280565b60200101906001600160f81b031916908160001a905350612245600a8661313e565b94506121e5565b600f54600090611b30906001611c93565b6001600160a01b0382166122b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610916565b6000818152600260205260409020546001600160a01b0316156123185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610916565b6123246000838361247f565b6001600160a01b038216600090815260036020526040812080546001929061234d908490613101565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b601054600f54106123bb57600080fd5b600f80549060006123cb836131ef565b9190505550565b60006040518060800160405280604381526020016132c36043913980516020918201208351848301516040808701518051908601209051612432950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061245a600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612432565b6001600160a01b0383166124da576124d581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124fd565b816001600160a01b0316836001600160a01b0316146124fd576124fd838261264b565b6001600160a01b03821661251457610a5e816126e8565b826001600160a01b0316826001600160a01b031614610a5e57610a5e8282612797565b60006001600160a01b0384163b1561264057836001600160a01b031663150b7a02612560611b26565b8786866040518563ffffffff1660e01b81526004016125829493929190612ea1565b602060405180830381600087803b15801561259c57600080fd5b505af19250505080156125cc575060408051601f3d908101601f191682019092526125c991810190612c77565b60015b612626573d8080156125fa576040519150601f19603f3d011682016040523d82523d6000602084013e6125ff565b606091505b50805161261e5760405162461bcd60e51b815260040161091690612ef1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d95565b506001949350505050565b6000600161265884610f53565b6126629190613171565b6000838152600760205260409020549091508082146126b5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126fa90600190613171565b6000838152600960205260408120546008805493945090928490811061272257612722613280565b90600052602060002001549050806008838154811061274357612743613280565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061277b5761277b61326a565b6001900381819060005260206000200160009055905550505050565b60006127a283610f53565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127e7906131b4565b90600052602060002090601f016020900481019282612809576000855561284f565b82601f1061282257805160ff191683800117855561284f565b8280016001018555821561284f579182015b8281111561284f578251825591602001919060010190612834565b5061285b92915061285f565b5090565b5b8082111561285b5760008155600101612860565b600067ffffffffffffffff83111561288e5761288e613296565b6128a1601f8401601f19166020016130ac565b90508281528383830111156128b557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146128e357600080fd5b919050565b600082601f8301126128f957600080fd5b8135602061290e612909836130dd565b6130ac565b80838252828201915082860187848660051b890101111561292e57600080fd5b60005b8581101561295457612942826128cc565b84529284019290840190600101612931565b5090979650505050505050565b600082601f83011261297257600080fd5b611c9f83833560208501612874565b803560ff811681146128e357600080fd5b6000602082840312156129a457600080fd5b611c9f826128cc565b600080604083850312156129c057600080fd5b6129c9836128cc565b91506129d7602084016128cc565b90509250929050565b6000806000606084860312156129f557600080fd5b6129fe846128cc565b9250612a0c602085016128cc565b9150604084013590509250925092565b60008060008060808587031215612a3257600080fd5b612a3b856128cc565b9350612a49602086016128cc565b925060408501359150606085013567ffffffffffffffff811115612a6c57600080fd5b612a7887828801612961565b91505092959194509250565b60008060408385031215612a9757600080fd5b612aa0836128cc565b915060208301358015158114612ab557600080fd5b809150509250929050565b600080600080600060a08688031215612ad857600080fd5b612ae1866128cc565b9450602086013567ffffffffffffffff811115612afd57600080fd5b612b0988828901612961565b9450506040860135925060608601359150612b2660808701612981565b90509295509295909350565b60008060408385031215612b4557600080fd5b612b4e836128cc565b946020939093013593505050565b600060208284031215612b6e57600080fd5b813567ffffffffffffffff811115612b8557600080fd5b611d95848285016128e8565b60008060408385031215612ba457600080fd5b823567ffffffffffffffff80821115612bbc57600080fd5b612bc8868387016128e8565b9350602091508185013581811115612bdf57600080fd5b85019050601f81018613612bf257600080fd5b8035612c00612909826130dd565b80828252848201915084840189868560051b8701011115612c2057600080fd5b600094505b83851015612c4a57612c3681612981565b835260019490940193918501918501612c25565b5080955050505050509250929050565b600060208284031215612c6c57600080fd5b8135611c9f816132ac565b600060208284031215612c8957600080fd5b8151611c9f816132ac565b600060208284031215612ca657600080fd5b813567ffffffffffffffff811115612cbd57600080fd5b8201601f81018413612cce57600080fd5b611d9584823560208401612874565b600060208284031215612cef57600080fd5b5035919050565b60008060408385031215612d0957600080fd5b50508035926020909101359150565b600060208284031215612d2a57600080fd5b611c9f82612981565b60008151808452612d4b816020860160208601613188565b601f01601f19169290920160200192915050565b60008151612d71818560208601613188565b9290920192915050565b60008251612d8d818460208701613188565b9190910192915050565b60008351612da9818460208801613188565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c915080831680612dea57607f831692505b6020808410821415612e0a57634e487b7160e01b86526022600452602486fd5b818015612e1e5760018114612e2f57612e5c565b60ff19861689528489019650612e5c565b60008b81526020902060005b86811015612e545781548b820152908501908301612e3b565b505084890196505b505050505050612e6c8185612d5f565b95945050505050565b6001600160a01b03848116825283166020820152606060408201819052600090612e6c90830184612d33565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed490830184612d33565b9695505050505050565b602081526000611c9f6020830184612d33565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526034908201527f307848756e7465723a20596f7520646f6e27742073617469736679207468652060408201527331b630b4b6b4b7339031b7b73234ba34b7b7399760611b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526025908201527f307848756e7465723a20506c6564676520686173206e6f742079657420737461604082015264393a32b21760d91b606082015260800190565b6020808252602a908201527f307848756e7465723a20596f75206e65656420746f207061792074686520657860408201526930b1ba10383934b1b29760b11b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156130d5576130d5613296565b604052919050565b600067ffffffffffffffff8211156130f7576130f7613296565b5060051b60200190565b600082198211156131145761311461323e565b500190565b600060ff821660ff84168060ff038211156131365761313661323e565b019392505050565b60008261314d5761314d613254565b500490565b600081600019048311821515161561316c5761316c61323e565b500290565b6000828210156131835761318361323e565b500390565b60005b838110156131a357818101518382015260200161318b565b8381111561163a5750506000910152565b600181811c908216806131c857607f821691505b602082108114156131e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132035761320361323e565b5060010190565b600060ff821660ff8114156132215761322161323e565b60010192915050565b60008261323957613239613254565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110b157600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212201834129f86d8043fcfa363d81982ed3e42455bd3c1c7b9b0f540b9d73b587dd164736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008307848756e74657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033078480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f7572692e307868756e7465722e696f2f6170692f307868756e7465722f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638a6dc8a411610144578063c21a43e4116100b6578063d25f82a01161007a578063d25f82a014610733578063d547cfb714610748578063d9bf10671461075d578063e985e9c514610773578063f2fde38b146107bc578063fdea8e0b146107dc57600080fd5b8063c21a43e414610697578063c6e62e0b146106ad578063c87b56dd146106c3578063c884ef83146106e3578063ce7c8b491461071357600080fd5b8063a061a03a11610108578063a061a03a146105d4578063a0bcfc7f146105f4578063a22cb46514610614578063a3aca16614610634578063b88d4fde14610647578063bc545f5c1461066757600080fd5b80638a6dc8a41461050f5780638da5cb5b1461055157806395d89b411461056f5780639b19251a146105845780639e262e32146105b457600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461046f57806359a7715a1461048f5780636352211e146104a557806370a08231146104c5578063715018a6146104e5578063753df86a146104fa57600080fd5b80632f745c59146103e75780633408e4701461040757806342842e0e1461041a5780634e71d92d1461043a5780634ed3f96f1461044f57600080fd5b80630f7e5970116102245780630f7e59701461033057806318160ddd1461035d57806320379ee51461037c57806323b872dd146103915780632d0335ab146103b157600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630c53c51c1461031d57600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004612c5a565b6107e4565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661080f565b6040516102989190612ede565b3480156102cf57600080fd5b506102e36102de366004612cdd565b6108a1565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612b32565b61093b565b005b6102b661032b366004612ac0565b610a63565b34801561033c57600080fd5b506102b6604051806040016040528060018152602001603160f81b81525081565b34801561036957600080fd5b506008545b604051908152602001610298565b34801561038857600080fd5b50600b5461036e565b34801561039d57600080fd5b5061031b6103ac3660046129e0565b610c4d565b3480156103bd57600080fd5b5061036e6103cc366004612992565b6001600160a01b03166000908152600c602052604090205490565b3480156103f357600080fd5b5061036e610402366004612b32565b610c85565b34801561041357600080fd5b504661036e565b34801561042657600080fd5b5061031b6104353660046129e0565b610d1b565b34801561044657600080fd5b5061031b610d36565b34801561045b57600080fd5b5061031b61046a366004612cf6565b610df5565b34801561047b57600080fd5b5061036e61048a366004612cdd565b610e49565b34801561049b57600080fd5b5061036e60115481565b3480156104b157600080fd5b506102e36104c0366004612cdd565b610edc565b3480156104d157600080fd5b5061036e6104e0366004612992565b610f53565b3480156104f157600080fd5b5061031b610fda565b34801561050657600080fd5b5061031b61102f565b34801561051b57600080fd5b5061053f61052a366004612992565b60186020526000908152604090205460ff1681565b60405160ff9091168152602001610298565b34801561055d57600080fd5b50600d546001600160a01b03166102e3565b34801561057b57600080fd5b506102b66110b4565b34801561059057600080fd5b5061053f61059f366004612992565b60156020526000908152604090205460ff1681565b3480156105c057600080fd5b5061031b6105cf366004612b91565b6110c3565b3480156105e057600080fd5b5061031b6105ef366004612b91565b61119b565b34801561060057600080fd5b5061031b61060f366004612c94565b611295565b34801561062057600080fd5b5061031b61062f366004612a84565b6112f5565b61031b610642366004612d18565b6113f7565b34801561065357600080fd5b5061031b610662366004612a1c565b611601565b34801561067357600080fd5b5061053f610682366004612992565b60166020526000908152604090205460ff1681565b3480156106a357600080fd5b5061036e60125481565b3480156106b957600080fd5b5061036e60135481565b3480156106cf57600080fd5b506102b66106de366004612cdd565b611640565b3480156106ef57600080fd5b5061053f6106fe366004612992565b60176020526000908152604090205460ff1681565b34801561071f57600080fd5b5061031b61072e366004612b5c565b611674565b34801561073f57600080fd5b5061031b611727565b34801561075457600080fd5b506102b66117a8565b34801561076957600080fd5b5061036e60145481565b34801561077f57600080fd5b5061028c61078e3660046129ad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c857600080fd5b5061031b6107d7366004612992565b611836565b61031b6118ed565b60006001600160e01b0319821663780e9d6360e01b1480610809575061080982611ad6565b92915050565b60606000805461081e906131b4565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906131b4565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061094682610edc565b9050806001600160a01b0316836001600160a01b031614156109b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610916565b806001600160a01b03166109c6611b26565b6001600160a01b031614806109e257506109e28161078e611b26565b610a545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610916565b610a5e8383611b35565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610aa18782878787611ba3565b610af75760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610916565b6001600160a01b0387166000908152600c6020526040902054610b1b906001611c93565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610b6b90899033908a90612e75565b60405180910390a1600080306001600160a01b0316888a604051602001610b93929190612d97565b60408051601f1981840301815290829052610bad91612d7b565b6000604051808303816000865af19150503d8060008114610bea576040519150601f19603f3d011682016040523d82523d6000602084013e610bef565b606091505b509150915081610c415760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610916565b98975050505050505050565b610c5e610c58611b26565b82611ca6565b610c7a5760405162461bcd60e51b815260040161091690612fcc565b610a5e838383611d9d565b6000610c9083610f53565b8210610cf25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610916565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a5e83838360405180602001604052806000815250611601565b6014544210158015610d575750601454610d539062093a80613101565b4211155b610d735760405162461bcd60e51b815260040161091690612f43565b33600090815260166020526040902054610d8f9060ff16611f48565b3360009081526016602090815260408083205460179092528220805460ff928316939192610dbf91859116613119565b825460ff9182166101009390930a928302919092021990911617905550336000908152601660205260409020805460ff19169055565b610dfd611b26565b6001600160a01b0316610e18600d546001600160a01b031690565b6001600160a01b031614610e3e5760405162461bcd60e51b815260040161091690612f97565b601391909155601455565b6000610e5460085490565b8210610eb75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610916565b60088281548110610eca57610eca613280565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610916565b60006001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610916565b506001600160a01b031660009081526003602052604090205490565b610fe2611b26565b6001600160a01b0316610ffd600d546001600160a01b031690565b6001600160a01b0316146110235760405162461bcd60e51b815260040161091690612f97565b61102d60006120c9565b565b611037611b26565b6001600160a01b0316611052600d546001600160a01b031690565b6001600160a01b0316146110785760405162461bcd60e51b815260040161091690612f97565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156110b1573d6000803e3d6000fd5b50565b60606001805461081e906131b4565b6110cb611b26565b6001600160a01b03166110e6600d546001600160a01b031690565b6001600160a01b03161461110c5760405162461bcd60e51b815260040161091690612f97565b60005b8251811015610a5e5781818151811061112a5761112a613280565b60200260200101516015600085848151811061114857611148613280565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611193906131ef565b91505061110f565b6111a3611b26565b6001600160a01b03166111be600d546001600160a01b031690565b6001600160a01b0316146111e45760405162461bcd60e51b815260040161091690612f97565b6014544210156112065760405162461bcd60e51b81526004016109169061301d565b60005b8251811015610a5e5781818151811061122457611224613280565b60200260200101516018600085848151811061124257611242613280565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061128d906131ef565b915050611209565b61129d611b26565b6001600160a01b03166112b8600d546001600160a01b031690565b6001600160a01b0316146112de5760405162461bcd60e51b815260040161091690612f97565b80516112f190600e9060208401906127db565b5050565b6112fd611b26565b6001600160a01b0316826001600160a01b0316141561135e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610916565b806005600061136b611b26565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556113af611b26565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113eb911515815260200190565b60405180910390a35050565b601454421015801561141857506014546114149062093a80613101565b4211155b6114345760405162461bcd60e51b81526004016109169061301d565b3360009081526017602090815260408083205460169092529091205460059160ff90811691611464911684613119565b61146e9190613119565b60ff1611156114e55760405162461bcd60e51b815260206004820152603b60248201527f307848756e7465723a204561636820616464726573732063616e206f6e6c792060448201527f707572636861736520757020746f203520307848756e746572732e00000000006064820152608401610916565b6106726012546010546114f89190613171565b6115029190613171565b8160ff166011546115139190613101565b11156115765760405162461bcd60e51b815260206004820152602c60248201527f307848756e7465723a20536f7272792c20616c6c20307848756e74657273206160448201526b39329039b7b6321037baba1760a11b6064820152608401610916565b61158a60ff821666d529ae9e860000613152565b34146115a85760405162461bcd60e51b815260040161091690613062565b336000908152601660205260409020546115c690829060ff16613119565b336000908152601660205260408120805460ff191660ff93841617905560128054928416929091906115f9908490613101565b909155505050565b61161261160c611b26565b83611ca6565b61162e5760405162461bcd60e51b815260040161091690612fcc565b61163a8484848461211b565b50505050565b6060600e61164d8361214e565b60405160200161165e929190612dce565b6040516020818303038152906040529050919050565b61167c611b26565b6001600160a01b0316611697600d546001600160a01b031690565b6001600160a01b0316146116bd5760405162461bcd60e51b815260040161091690612f97565b60005b81518110156117135760006116d361224c565b90506116f88383815181106116ea576116ea613280565b60200260200101518261225d565b6117006123ab565b508061170b816131ef565b9150506116c0565b508051601160008282546115f99190613101565b3360009081526018602052604090205460ff161580159061175757506014546117539062093a80613101565b4211155b6117735760405162461bcd60e51b815260040161091690612f43565b3360009081526018602052604090205461178f9060ff16611f48565b336000908152601860205260409020805460ff19169055565b600e80546117b5906131b4565b80601f01602080910402602001604051908101604052809291908181526020018280546117e1906131b4565b801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b505050505081565b61183e611b26565b6001600160a01b0316611859600d546001600160a01b031690565b6001600160a01b03161461187f5760405162461bcd60e51b815260040161091690612f97565b6001600160a01b0381166118e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610916565b6110b1816120c9565b3360009081526015602052604090205460ff1661195b5760405162461bcd60e51b815260206004820152602660248201527f307848756e7465723a20596f75277265206e6f74206f6e20746865207768697460448201526532b634b9ba1760d11b6064820152608401610916565b601354421015801561197b57506013546119789062015180613101565b42105b6119d65760405162461bcd60e51b815260206004820152602660248201527f307848756e7465723a2050726573616c6520686173206e6f742079657420737460448201526530b93a32b21760d11b6064820152608401610916565b336000908152601560205260409020546119fa9060ff1666d529ae9e860000613152565b3414611a185760405162461bcd60e51b815260040161091690613062565b33600090815260156020526040902054611a349060ff16611f48565b336000908152601560205260408120546011805460ff909216929091611a5b908490613101565b9091555050336000908152601560205260409020805460ff19169055565b600033301415611ad057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611ad39050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611b0757506001600160e01b03198216635b5e139f60e01b145b8061080957506301ffc9a760e01b6001600160e01b0319831614610809565b6000611b30611a79565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6a82610edc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611c095760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610916565b6001611c1c611c17876123d2565b61244f565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611c6a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611c9f8284613101565b9392505050565b6000818152600260205260408120546001600160a01b0316611d1f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610916565b6000611d2a83610edc565b9050806001600160a01b0316846001600160a01b03161480611d655750836001600160a01b0316611d5a846108a1565b6001600160a01b0316145b80611d9557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611db082610edc565b6001600160a01b031614611e185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610916565b6001600160a01b038216611e7a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610916565b611e8583838361247f565b611e90600082611b35565b6001600160a01b0383166000908152600360205260408120805460019290611eb9908490613171565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ee7908490613101565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b8160ff168160ff1610156112f1576000611f6361224c565b9050611f6f338261225d565b611f776123ab565b610672601054611f879190613171565b8114156120b65760006103e7611fd360408051426020808301919091524482840152416060830152336080808401919091528351808403909101815260a0909201909252805191012090565b611fdd919061322a565b90506000611ffb6103e8611ff18486613171565b6104c09190613171565b61200b6107d0611ff18587613171565b61201b610bb8611ff18688613171565b604080516001600160a01b03948516602082015292841690830152909116606082015260800160408051601f19818403018152919052805160209091012090506000612067848361322a565b6120719085613171565b905061207c81610edc565b6001600160a01b0316817f9aa5cb75a58a4e3b56ba42f6c2dac64207266a605b00bfcf4ada2d5d68dc2e0360405160405180910390a35050505b50806120c18161320a565b915050611f4b565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612126848484611d9d565b61213284848484612537565b61163a5760405162461bcd60e51b815260040161091690612ef1565b6060816121725750506040805180820190915260018152600360fc1b602082015290565b8160005b811561219c5780612186816131ef565b91506121959050600a8361313e565b9150612176565b60008167ffffffffffffffff8111156121b7576121b7613296565b6040519080825280601f01601f1916602001820160405280156121e1576020820181803683370190505b5090505b8415611d95576121f6600183613171565b9150612203600a8661322a565b61220e906030613101565b60f81b81838151811061222357612223613280565b60200101906001600160f81b031916908160001a905350612245600a8661313e565b94506121e5565b600f54600090611b30906001611c93565b6001600160a01b0382166122b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610916565b6000818152600260205260409020546001600160a01b0316156123185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610916565b6123246000838361247f565b6001600160a01b038216600090815260036020526040812080546001929061234d908490613101565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b601054600f54106123bb57600080fd5b600f80549060006123cb836131ef565b9190505550565b60006040518060800160405280604381526020016132c36043913980516020918201208351848301516040808701518051908601209051612432950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061245a600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612432565b6001600160a01b0383166124da576124d581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124fd565b816001600160a01b0316836001600160a01b0316146124fd576124fd838261264b565b6001600160a01b03821661251457610a5e816126e8565b826001600160a01b0316826001600160a01b031614610a5e57610a5e8282612797565b60006001600160a01b0384163b1561264057836001600160a01b031663150b7a02612560611b26565b8786866040518563ffffffff1660e01b81526004016125829493929190612ea1565b602060405180830381600087803b15801561259c57600080fd5b505af19250505080156125cc575060408051601f3d908101601f191682019092526125c991810190612c77565b60015b612626573d8080156125fa576040519150601f19603f3d011682016040523d82523d6000602084013e6125ff565b606091505b50805161261e5760405162461bcd60e51b815260040161091690612ef1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d95565b506001949350505050565b6000600161265884610f53565b6126629190613171565b6000838152600760205260409020549091508082146126b5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126fa90600190613171565b6000838152600960205260408120546008805493945090928490811061272257612722613280565b90600052602060002001549050806008838154811061274357612743613280565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061277b5761277b61326a565b6001900381819060005260206000200160009055905550505050565b60006127a283610f53565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127e7906131b4565b90600052602060002090601f016020900481019282612809576000855561284f565b82601f1061282257805160ff191683800117855561284f565b8280016001018555821561284f579182015b8281111561284f578251825591602001919060010190612834565b5061285b92915061285f565b5090565b5b8082111561285b5760008155600101612860565b600067ffffffffffffffff83111561288e5761288e613296565b6128a1601f8401601f19166020016130ac565b90508281528383830111156128b557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146128e357600080fd5b919050565b600082601f8301126128f957600080fd5b8135602061290e612909836130dd565b6130ac565b80838252828201915082860187848660051b890101111561292e57600080fd5b60005b8581101561295457612942826128cc565b84529284019290840190600101612931565b5090979650505050505050565b600082601f83011261297257600080fd5b611c9f83833560208501612874565b803560ff811681146128e357600080fd5b6000602082840312156129a457600080fd5b611c9f826128cc565b600080604083850312156129c057600080fd5b6129c9836128cc565b91506129d7602084016128cc565b90509250929050565b6000806000606084860312156129f557600080fd5b6129fe846128cc565b9250612a0c602085016128cc565b9150604084013590509250925092565b60008060008060808587031215612a3257600080fd5b612a3b856128cc565b9350612a49602086016128cc565b925060408501359150606085013567ffffffffffffffff811115612a6c57600080fd5b612a7887828801612961565b91505092959194509250565b60008060408385031215612a9757600080fd5b612aa0836128cc565b915060208301358015158114612ab557600080fd5b809150509250929050565b600080600080600060a08688031215612ad857600080fd5b612ae1866128cc565b9450602086013567ffffffffffffffff811115612afd57600080fd5b612b0988828901612961565b9450506040860135925060608601359150612b2660808701612981565b90509295509295909350565b60008060408385031215612b4557600080fd5b612b4e836128cc565b946020939093013593505050565b600060208284031215612b6e57600080fd5b813567ffffffffffffffff811115612b8557600080fd5b611d95848285016128e8565b60008060408385031215612ba457600080fd5b823567ffffffffffffffff80821115612bbc57600080fd5b612bc8868387016128e8565b9350602091508185013581811115612bdf57600080fd5b85019050601f81018613612bf257600080fd5b8035612c00612909826130dd565b80828252848201915084840189868560051b8701011115612c2057600080fd5b600094505b83851015612c4a57612c3681612981565b835260019490940193918501918501612c25565b5080955050505050509250929050565b600060208284031215612c6c57600080fd5b8135611c9f816132ac565b600060208284031215612c8957600080fd5b8151611c9f816132ac565b600060208284031215612ca657600080fd5b813567ffffffffffffffff811115612cbd57600080fd5b8201601f81018413612cce57600080fd5b611d9584823560208401612874565b600060208284031215612cef57600080fd5b5035919050565b60008060408385031215612d0957600080fd5b50508035926020909101359150565b600060208284031215612d2a57600080fd5b611c9f82612981565b60008151808452612d4b816020860160208601613188565b601f01601f19169290920160200192915050565b60008151612d71818560208601613188565b9290920192915050565b60008251612d8d818460208701613188565b9190910192915050565b60008351612da9818460208801613188565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c915080831680612dea57607f831692505b6020808410821415612e0a57634e487b7160e01b86526022600452602486fd5b818015612e1e5760018114612e2f57612e5c565b60ff19861689528489019650612e5c565b60008b81526020902060005b86811015612e545781548b820152908501908301612e3b565b505084890196505b505050505050612e6c8185612d5f565b95945050505050565b6001600160a01b03848116825283166020820152606060408201819052600090612e6c90830184612d33565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed490830184612d33565b9695505050505050565b602081526000611c9f6020830184612d33565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526034908201527f307848756e7465723a20596f7520646f6e27742073617469736679207468652060408201527331b630b4b6b4b7339031b7b73234ba34b7b7399760611b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526025908201527f307848756e7465723a20506c6564676520686173206e6f742079657420737461604082015264393a32b21760d91b606082015260800190565b6020808252602a908201527f307848756e7465723a20596f75206e65656420746f207061792074686520657860408201526930b1ba10383934b1b29760b11b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156130d5576130d5613296565b604052919050565b600067ffffffffffffffff8211156130f7576130f7613296565b5060051b60200190565b600082198211156131145761311461323e565b500190565b600060ff821660ff84168060ff038211156131365761313661323e565b019392505050565b60008261314d5761314d613254565b500490565b600081600019048311821515161561316c5761316c61323e565b500290565b6000828210156131835761318361323e565b500390565b60005b838110156131a357818101518382015260200161318b565b8381111561163a5750506000910152565b600181811c908216806131c857607f821691505b602082108114156131e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132035761320361323e565b5060010190565b600060ff821660ff8114156132215761322161323e565b60010192915050565b60008261323957613239613254565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110b157600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212201834129f86d8043fcfa363d81982ed3e42455bd3c1c7b9b0f540b9d73b587dd164736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008307848756e74657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033078480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f7572692e307868756e7465722e696f2f6170692f307868756e7465722f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): 0xHunter
Arg [1] : _symbol (string): 0xH
Arg [2] : _uri (string): https://uri.0xhunter.io/api/0xhunter/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 307848756e746572000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 3078480000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [8] : 68747470733a2f2f7572692e307868756e7465722e696f2f6170692f30786875
Arg [9] : 6e7465722f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

283:7575:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:290:6;;;;;;;;;;-1:-1:-1;909:290:6;;;;;:::i;:::-;;:::i;:::-;;;11764:14:19;;11757:22;11739:41;;11727:2;11712:18;909:290:6;;;;;;;;2549:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4182:295::-;;;;;;;;;;-1:-1:-1;4182:295:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10215:32:19;;;10197:51;;10185:2;10170:18;4182:295:5;10051:203:19;3720:401:5;;;;;;;;;;-1:-1:-1;3720:401:5;;;;;:::i;:::-;;:::i;:::-;;966:1117:15;;;;;;:::i;:::-;;:::i;288:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:3;;;;;1680:111:6;;;;;;;;;;-1:-1:-1;1767:10:6;:17;1680:111;;;11937:25:19;;;11925:2;11910:18;1680:111:6;11791:177:19;1254:99:3;;;;;;;;;;-1:-1:-1;1331:15:3;;1254:99;;5196:364:5;;;;;;;;;;-1:-1:-1;5196:364:5;;;;;:::i;:::-;;:::i;2491:105:15:-;;;;;;;;;;-1:-1:-1;2491:105:15;;;;;:::i;:::-;-1:-1:-1;;;;;2577:12:15;2544:13;2577:12;;;:6;:12;;;;;;;2491:105;1278:331:6;;;;;;;;;;-1:-1:-1;1278:331:6;;;;;:::i;:::-;;:::i;1359:155:3:-;;;;;;;;;;-1:-1:-1;1470:9:3;1359:155;;5626:179:5;;;;;;;;;;-1:-1:-1;5626:179:5;;;;;:::i;:::-;;:::i;3067:368:7:-;;;;;;;;;;;;;:::i;6680:179::-;;;;;;;;;;-1:-1:-1;6680:179:7;;;;;:::i;:::-;;:::i;1863:308:6:-;;;;;;;;;;-1:-1:-1;1863:308:6;;;;;:::i;:::-;;:::i;524:28:7:-;;;;;;;;;;;;;;;;2174:313:5;;;;;;;;;;-1:-1:-1;2174:313:5;;;;;:::i;:::-;;:::i;1834:283::-;;;;;;;;;;-1:-1:-1;1834:283:5;;;;;:::i;:::-;;:::i;1620:92:16:-;;;;;;;;;;;;;:::i;7347:110:7:-;;;;;;;;;;;;;:::i;831:43::-;;;;;;;;;;-1:-1:-1;831:43:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24937:4:19;24925:17;;;24907:36;;24895:2;24880:18;831:43:7;24765:184:19;988:85:16;;;;;;;;;;-1:-1:-1;1060:6:16;;-1:-1:-1;;;;;1060:6:16;988:85;;2711:102:5;;;;;;;;;;;;;:::i;681:42:7:-;;;;;;;;;;-1:-1:-1;681:42:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;7618:238;;;;;;;;;;-1:-1:-1;7618:238:7;;;;;:::i;:::-;;:::i;4038:364::-;;;;;;;;;;-1:-1:-1;4038:364:7;;;;;:::i;:::-;;:::i;6505:95::-;;;;;;;;;;-1:-1:-1;6505:95:7;;;;;:::i;:::-;;:::i;4544:318:5:-;;;;;;;;;;-1:-1:-1;4544:318:5;;;;;:::i;:::-;;:::i;2167:807:7:-;;;;;;:::i;:::-;;:::i;5871:354:5:-;;;;;;;;;;-1:-1:-1;5871:354:5;;;;;:::i;:::-;;:::i;729:50:7:-;;;;;;;;;;-1:-1:-1;729:50:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;558:26;;;;;;;;;;;;;;;;591:39;;;;;;;;;;;;;;;;6865:219;;;;;;;;;;-1:-1:-1;6865:219:7;;;;;:::i;:::-;;:::i;785:40::-;;;;;;;;;;-1:-1:-1;785:40:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;3584:314;;;;;;;;;;-1:-1:-1;3584:314:7;;;;;:::i;:::-;;:::i;4408:260::-;;;;;;;;;;;;;:::i;420:26::-;;;;;;;;;;;;;:::i;636:38::-;;;;;;;;;;;;;;;;4928:206:5;;;;;;;;;;-1:-1:-1;4928:206:5;;;;;:::i;:::-;-1:-1:-1;;;;;5092:25:5;;;5065:4;5092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4928:206;1861:223:16;;;;;;;;;;-1:-1:-1;1861:223:16;;;;;:::i;:::-;;:::i;1497:521:7:-;;;:::i;909:290:6:-;1051:4;-1:-1:-1;;;;;;1090:50:6;;-1:-1:-1;;;1090:50:6;;:102;;;1156:36;1180:11;1156:23;:36::i;:::-;1071:121;909:290;-1:-1:-1;;909:290:6:o;2549:98:5:-;2603:13;2635:5;2628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2549:98;:::o;4182:295::-;4298:7;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:5;4321:107;;;;-1:-1:-1;;;4321:107:5;;19832:2:19;4321:107:5;;;19814:21:19;19871:2;19851:18;;;19844:30;19910:34;19890:18;;;19883:62;-1:-1:-1;;;19961:18:19;;;19954:42;20013:19;;4321:107:5;;;;;;;;;-1:-1:-1;4446:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4446:24:5;;4182:295::o;3720:401::-;3800:13;3816:23;3831:7;3816:14;:23::i;:::-;3800:39;;3863:5;-1:-1:-1;;;;;3857:11:5;:2;-1:-1:-1;;;;;3857:11:5;;;3849:57;;;;-1:-1:-1;;;3849:57:5;;22267:2:19;3849:57:5;;;22249:21:19;22306:2;22286:18;;;22279:30;22345:34;22325:18;;;22318:62;-1:-1:-1;;;22396:18:19;;;22389:31;22437:19;;3849:57:5;22065:397:19;3849:57:5;3954:5;-1:-1:-1;;;;;3938:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3938:21:5;;:62;;;;3963:37;3980:5;3987:12;:10;:12::i;3963:37::-;3917:165;;;;-1:-1:-1;;;3917:165:5;;17405:2:19;3917:165:5;;;17387:21:19;17444:2;17424:18;;;17417:30;17483:34;17463:18;;;17456:62;17554:26;17534:18;;;17527:54;17598:19;;3917:165:5;17203:420:19;3917:165:5;4093:21;4102:2;4106:7;4093:8;:21::i;:::-;3790:331;3720:401;;:::o;966:1117:15:-;1217:148;;;1161:12;1217:148;;;;;-1:-1:-1;;;;;1254:19:15;;1185:29;1254:19;;;:6;:19;;;;;;;;;1217:148;;;;;;;;;;;1397:45;1261:11;1217:148;1425:4;1431;1437;1397:6;:45::i;:::-;1376:125;;;;-1:-1:-1;;;1376:125:15;;21437:2:19;1376:125:15;;;21419:21:19;21476:2;21456:18;;;21449:30;21515:34;21495:18;;;21488:62;-1:-1:-1;;;21566:18:19;;;21559:31;21607:19;;1376:125:15;21235:397:19;1376:125:15;-1:-1:-1;;;;;1587:19:15;;;;;;:6;:19;;;;;;:26;;1611:1;1587:23;:26::i;:::-;-1:-1:-1;;;;;1565:19:15;;;;;;:6;:19;;;;;;;:48;;;;1629:122;;;;;1572:11;;1699:10;;1724:17;;1629:122;:::i;:::-;;;;;;;;1859:12;1873:23;1908:4;-1:-1:-1;;;;;1900:18:15;1949:17;1968:11;1932:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1932:48:15;;;;;;;;;;1900:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1858:132;;;;2008:7;2000:48;;;;-1:-1:-1;;;2000:48:15;;15113:2:19;2000:48:15;;;15095:21:19;15152:2;15132:18;;;15125:30;15191;15171:18;;;15164:58;15239:18;;2000:48:15;14911:352:19;2000:48:15;2066:10;966:1117;-1:-1:-1;;;;;;;;966:1117:15:o;5196:364:5:-;5398:41;5417:12;:10;:12::i;:::-;5431:7;5398:18;:41::i;:::-;5377:137;;;;-1:-1:-1;;;5377:137:5;;;;;;;:::i;:::-;5525:28;5535:4;5541:2;5545:7;5525:9;:28::i;1278:331:6:-;1415:7;1467:23;1484:5;1467:16;:23::i;:::-;1459:5;:31;1438:121;;;;-1:-1:-1;;;1438:121:6;;13875:2:19;1438:121:6;;;13857:21:19;13914:2;13894:18;;;13887:30;13953:34;13933:18;;;13926:62;-1:-1:-1;;;14004:18:19;;;13997:41;14055:19;;1438:121:6;13673:407:19;1438:121:6;-1:-1:-1;;;;;;1576:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1278:331::o;5626:179:5:-;5759:39;5776:4;5782:2;5786:7;5759:39;;;;;;;;;;;;:16;:39::i;3067:368:7:-;3143:10;;3124:15;:29;;:71;;;;-1:-1:-1;3176:10:7;;:19;;3189:6;3176:19;:::i;:::-;3157:15;:38;;3124:71;3103:170;;;;-1:-1:-1;;;3103:170:7;;;;;;;:::i;:::-;3311:10;3293:29;;;;:17;:29;;;;;;3283:40;;3293:29;;3283:9;:40::i;:::-;3374:10;3356:29;;;;:17;:29;;;;;;;;;3333:7;:19;;;;;:52;;3356:29;;;;;3333:19;;:52;;3356:29;;3333:52;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3413:10:7;-1:-1:-1;3395:29:7;;;:17;:29;;;;;:33;;-1:-1:-1;;3395:33:7;;;3067:368::o;6680:179::-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;6792:11:7::1;:26:::0;;;;6828:10:::1;:24:::0;6680:179::o;1863:308:6:-;1978:7;2030:30;1767:10;:17;;1680:111;2030:30;2022:5;:38;2001:129;;;;-1:-1:-1;;;2001:129:6;;23493:2:19;2001:129:6;;;23475:21:19;23532:2;23512:18;;;23505:30;23571:34;23551:18;;;23544:62;-1:-1:-1;;;23622:18:19;;;23615:42;23674:19;;2001:129:6;23291:408:19;2001:129:6;2147:10;2158:5;2147:17;;;;;;;;:::i;:::-;;;;;;;;;2140:24;;1863:308;;;:::o;2174:313:5:-;2286:7;2325:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2325:16:5;2372:19;2351:107;;;;-1:-1:-1;;;2351:107:5;;18241:2:19;2351:107:5;;;18223:21:19;18280:2;18260:18;;;18253:30;18319:34;18299:18;;;18292:62;-1:-1:-1;;;18370:18:19;;;18363:39;18419:19;;2351:107:5;18039:405:19;1834:283:5;1946:7;-1:-1:-1;;;;;1990:19:5;;1969:108;;;;-1:-1:-1;;;1969:108:5;;17830:2:19;1969:108:5;;;17812:21:19;17869:2;17849:18;;;17842:30;17908:34;17888:18;;;17881:62;-1:-1:-1;;;17959:18:19;;;17952:40;18009:19;;1969:108:5;17628:406:19;1969:108:5;-1:-1:-1;;;;;;2094:16:5;;;;;:9;:16;;;;;;;1834:283::o;1620:92:16:-;1211:12;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;7347:110:7:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1060:6;;7402:48:7::1;::::0;-1:-1:-1;;;;;1060:6:16;;;;7428:21:7::1;7402:48:::0;::::1;;;::::0;::::1;::::0;;;7428:21;1060:6:16;7402:48:7;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;7347:110::o:0;2711:102:5:-;2767:13;2799:7;2792:14;;;;;:::i;7618:238:7:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;7754:9:7::1;7749:101;7773:5;:12;7769:1;:16;7749:101;;;7828:8;7837:1;7828:11;;;;;;;;:::i;:::-;;;;;;;7806:9;:19;7816:5;7822:1;7816:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;7806:19:7::1;-1:-1:-1::0;;;;;7806:19:7::1;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;7787:3;;;;;:::i;:::-;;;;7749:101;;4038:364:::0;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;4199:10:7::1;;4180:15;:29;;4159:113;;;;-1:-1:-1::0;;;4159:113:7::1;;;;;;;:::i;:::-;4287:9;4282:114;4306:11;:18;4302:1;:22;4282:114;;;4374:8;4383:1;4374:11;;;;;;;;:::i;:::-;;;;;;;4345:10;:26;4356:11;4368:1;4356:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4345:26:7::1;-1:-1:-1::0;;;;;4345:26:7::1;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;4326:3;;;;;:::i;:::-;;;;4282:114;;6505:95:::0;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;6574:19:7;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;6505:95:::0;:::o;4544:318:5:-;4686:12;:10;:12::i;:::-;-1:-1:-1;;;;;4674:24:5;:8;-1:-1:-1;;;;;4674:24:5;;;4666:62;;;;-1:-1:-1;;;4666:62:5;;16232:2:19;4666:62:5;;;16214:21:19;16271:2;16251:18;;;16244:30;16310:27;16290:18;;;16283:55;16355:18;;4666:62:5;16030:349:19;4666:62:5;4784:8;4739:18;:32;4758:12;:10;:12::i;:::-;-1:-1:-1;;;;;4739:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4739:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4739:53:5;;;;;;;;;;;4822:12;:10;:12::i;:::-;-1:-1:-1;;;;;4807:48:5;;4846:8;4807:48;;;;11764:14:19;11757:22;11739:41;;11727:2;11712:18;;11599:187;4807:48:5;;;;;;;;4544:318;;:::o;2167:807:7:-;2262:10;;2243:15;:29;;:71;;;;-1:-1:-1;2295:10:7;;:19;;2308:6;2295:19;:::i;:::-;2276:15;:38;;2243:71;2222:155;;;;-1:-1:-1;;;2222:155:7;;;;;;;:::i;:::-;2456:10;2448:19;;;;:7;:19;;;;;;;;;2416:17;:29;;;;;;;2472:1;;2448:19;;;;;2409:36;;2416:29;2409:4;:36;:::i;:::-;:58;;;;:::i;:::-;2408:65;;;;2387:171;;;;-1:-1:-1;;;2387:171:7;;21839:2:19;2387:171:7;;;21821:21:19;21878:2;21858:18;;;21851:30;21917:34;21897:18;;;21890:62;21988:29;21968:18;;;21961:57;22035:19;;2387:171:7;21637:423:19;2387:171:7;2645:4;2631:11;;2618:10;;:24;;;;:::i;:::-;:31;;;;:::i;:::-;2609:4;2601:13;;2589:9;;:25;;;;:::i;:::-;:60;;2568:151;;;;-1:-1:-1;;;2568:151:7;;18651:2:19;2568:151:7;;;18633:21:19;18690:2;18670:18;;;18663:30;18729:34;18709:18;;;18702:62;-1:-1:-1;;;18780:18:19;;;18773:42;18832:19;;2568:151:7;18449:408:19;2568:151:7;2763:20;:13;;;2779:4;2763:20;:::i;:::-;2750:9;:33;2729:122;;;;-1:-1:-1;;;2729:122:7;;;;;;;:::i;:::-;2911:10;2893:29;;;;:17;:29;;;;;;:36;;2925:4;;2893:29;;:36;:::i;:::-;2879:10;2861:29;;;;:17;:29;;;;;:68;;-1:-1:-1;;2861:68:7;;;;;;;;2939:11;:28;;2954:13;;;;2939:11;;2861:29;2939:28;;2954:13;;2939:28;:::i;:::-;;;;-1:-1:-1;;;2167:807:7:o;5871:354:5:-;6053:41;6072:12;:10;:12::i;:::-;6086:7;6053:18;:41::i;:::-;6032:137;;;;-1:-1:-1;;;6032:137:5;;;;;;;:::i;:::-;6179:39;6193:4;6199:2;6203:7;6212:5;6179:13;:39::i;:::-;5871:354;;;;:::o;6865:219:7:-;6963:13;7035:12;7049:26;7066:8;7049:16;:26::i;:::-;7018:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6992:85;;6865:219;;;:::o;3584:314::-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;3664:9:7::1;3659:192;3683:11;:18;3679:1;:22;3659:192;;;3722:18;3743:17;:15;:17::i;:::-;3722:38;;3774:33;3780:11;3792:1;3780:14;;;;;;;;:::i;:::-;;;;;;;3796:10;3774:5;:33::i;:::-;3821:19;:17;:19::i;:::-;-1:-1:-1::0;3703:3:7;::::1;::::0;::::1;:::i;:::-;;;;3659:192;;;;3873:11;:18;3860:9;;:31;;;;;;;:::i;4408:260::-:0;4468:10;4482:1;4457:22;;;:10;:22;;;;;;;;:26;;;;:68;;-1:-1:-1;4506:10:7;;:19;;4519:6;4506:19;:::i;:::-;4487:15;:38;;4457:68;4449:133;;;;-1:-1:-1;;;4449:133:7;;;;;;;:::i;:::-;4613:10;4602:22;;;;:10;:22;;;;;;4592:33;;4602:22;;4592:9;:33::i;:::-;4646:10;4660:1;4635:22;;;:10;:22;;;;;:26;;-1:-1:-1;;4635:26:7;;;4408:260::o;420:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1861:223:16:-;1211:12;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;-1:-1:-1;;;;;1962:22:16;::::1;1941:107;;;::::0;-1:-1:-1;;;1941:107:16;;14706:2:19;1941:107:16::1;::::0;::::1;14688:21:19::0;14745:2;14725:18;;;14718:30;14784:34;14764:18;;;14757:62;-1:-1:-1;;;14835:18:19;;;14828:36;14881:19;;1941:107:16::1;14504:402:19::0;1941:107:16::1;2058:19;2068:8;2058:9;:19::i;1497:521:7:-:0;1102:10;1116:1;1092:21;;;:9;:21;;;;;;;;1071:110;;;;-1:-1:-1;;;1071:110:7;;13468:2:19;1071:110:7;;;13450:21:19;13507:2;13487:18;;;13480:30;13546:34;13526:18;;;13519:62;-1:-1:-1;;;13597:18:19;;;13590:36;13643:19;;1071:110:7;13266:402:19;1071:110:7;1599:11:::1;;1580:15;:30;;:88;;;;-1:-1:-1::0;1648:11:7::1;::::0;:20:::1;::::0;1662:6:::1;1648:20;:::i;:::-;1630:15;:38;1580:88;1559:173;;;::::0;-1:-1:-1;;;1559:173:7;;19064:2:19;1559:173:7::1;::::0;::::1;19046:21:19::0;19103:2;19083:18;;;19076:30;19142:34;19122:18;;;19115:62;-1:-1:-1;;;19193:18:19;;;19186:36;19239:19;;1559:173:7::1;18862:402:19::0;1559:173:7::1;1794:10;1784:21;::::0;;;:9:::1;:21;::::0;;;;;1776:37:::1;::::0;1784:21:::1;;1809:4;1776:37;:::i;:::-;1763:9;:50;1742:139;;;;-1:-1:-1::0;;;1742:139:7::1;;;;;;;:::i;:::-;1911:10;1901:21;::::0;;;:9:::1;:21;::::0;;;;;1891:32:::1;::::0;1901:21:::1;;1891:9;:32::i;:::-;1964:10;1954:21;::::0;;;:9:::1;:21;::::0;;;;;1933:9:::1;:43:::0;;1954:21:::1;::::0;;::::1;::::0;1933:9;;:43:::1;::::0;1954:21;;1933:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;1996:10:7::1;2010:1;1986:21:::0;;;:9:::1;:21;::::0;;;;:25;;-1:-1:-1;;1986:25:7::1;::::0;;1497:521::o;95:603:1:-;139:22;177:10;199:4;177:27;173:496;;;220:18;241:8;;220:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;279:8:1;486:17;480:24;-1:-1:-1;;;;;455:131:1;;-1:-1:-1;173:496:1;;-1:-1:-1;173:496:1;;-1:-1:-1;647:10:1;173:496;95:603;:::o;1431:344:5:-;1573:4;-1:-1:-1;;;;;;1612:40:5;;-1:-1:-1;;;1612:40:5;;:104;;-1:-1:-1;;;;;;;1668:48:5;;-1:-1:-1;;;1668:48:5;1612:104;:156;;;-1:-1:-1;;;;;;;;;;915:40:4;;;1732:36:5;763:199:4;7223:118:7;7277:14;7310:24;:22;:24::i;:::-;7303:31;;7223:118;:::o;11710:171:5:-;11784:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11784:29:5;-1:-1:-1;;;;;11784:29:5;;;;;;;;:24;;11837:23;11784:24;11837:14;:23::i;:::-;-1:-1:-1;;;;;11828:46:5;;;;;;;;;;;11710:171;;:::o;2602:470:15:-;2774:4;-1:-1:-1;;;;;2798:20:15;;2790:70;;;;-1:-1:-1;;;2790:70:15;;16999:2:19;2790:70:15;;;16981:21:19;17038:2;17018:18;;;17011:30;17077:34;17057:18;;;17050:62;-1:-1:-1;;;17128:18:19;;;17121:35;17173:19;;2790:70:15;16797:401:19;2790:70:15;2911:154;2938:47;2957:27;2977:6;2957:19;:27::i;:::-;2938:18;:47::i;:::-;2911:154;;;;;;;;;;;;12622:25:19;;;;12695:4;12683:17;;12663:18;;;12656:45;12717:18;;;12710:34;;;12760:18;;;12753:34;;;12594:19;;2911:154:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2889:176:15;:6;-1:-1:-1;;;;;2889:176:15;;2870:195;;2602:470;;;;;;;:::o;2812:96:17:-;2870:7;2896:5;2900:1;2896;:5;:::i;:::-;2889:12;2812:96;-1:-1:-1;;;2812:96:17:o;8014:438:5:-;8139:4;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:5;8159:107;;;;-1:-1:-1;;;8159:107:5;;16586:2:19;8159:107:5;;;16568:21:19;16625:2;16605:18;;;16598:30;16664:34;16644:18;;;16637:62;-1:-1:-1;;;16715:18:19;;;16708:42;16767:19;;8159:107:5;16384:408:19;8159:107:5;8276:13;8292:23;8307:7;8292:14;:23::i;:::-;8276:39;;8344:5;-1:-1:-1;;;;;8333:16:5;:7;-1:-1:-1;;;;;8333:16:5;;:63;;;;8389:7;-1:-1:-1;;;;;8365:31:5;:20;8377:7;8365:11;:20::i;:::-;-1:-1:-1;;;;;8365:31:5;;8333:63;:111;;;-1:-1:-1;;;;;;5092:25:5;;;5065:4;5092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8412:32;8325:120;8014:438;-1:-1:-1;;;;8014:438:5:o;11005:594::-;11172:4;-1:-1:-1;;;;;11145:31:5;:23;11160:7;11145:14;:23::i;:::-;-1:-1:-1;;;;;11145:31:5;;11124:119;;;;-1:-1:-1;;;11124:119:5;;21027:2:19;11124:119:5;;;21009:21:19;21066:2;21046:18;;;21039:30;21105:34;21085:18;;;21078:62;-1:-1:-1;;;21156:18:19;;;21149:39;21205:19;;11124:119:5;20825:405:19;11124:119:5;-1:-1:-1;;;;;11261:16:5;;11253:65;;;;-1:-1:-1;;;11253:65:5;;15827:2:19;11253:65:5;;;15809:21:19;15866:2;15846:18;;;15839:30;15905:34;15885:18;;;15878:62;-1:-1:-1;;;15956:18:19;;;15949:34;16000:19;;11253:65:5;15625:400:19;11253:65:5;11329:39;11350:4;11356:2;11360:7;11329:20;:39::i;:::-;11430:29;11447:1;11451:7;11430:8;:29::i;:::-;-1:-1:-1;;;;;11470:15:5;;;;;;:9;:15;;;;;:20;;11489:1;;11470:15;:20;;11489:1;;11470:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11500:13:5;;;;;;:9;:13;;;;;:18;;11517:1;;11500:13;:18;;11517:1;;11500:18;:::i;:::-;;;;-1:-1:-1;;11528:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11528:21:5;-1:-1:-1;;;;;11528:21:5;;;;;;;;;11565:27;;11528:16;;11565:27;;;;;;;11005:594;;;:::o;4794:814:7:-;4848:7;4843:759;4865:4;4861:8;;:1;:8;;;4843:759;;;4890:18;4911:17;:15;:17::i;:::-;4890:38;;4942:29;4948:10;4960;4942:5;:29::i;:::-;4985:19;:17;:19::i;:::-;5049:4;5036:10;;:17;;;;:::i;:::-;5022:10;:31;5018:574;;;5073:17;5104:3;5093:8;6037:151;;;6065:15;6037:151;;;;24544:25:19;;;;6098:16:7;24585:18:19;;;24578:34;6132:14:7;24666:18:19;;;24659:43;6164:10:7;24718:18:19;;;;24711:43;;;;6037:151:7;;;;;;;;;;24516:19:19;;;;6037:151:7;;;6014:184;;;;;;5934:307;5093:8;:14;;;;:::i;:::-;5073:34;-1:-1:-1;5125:18:7;5213:38;5246:4;5221:22;5073:34;5221:10;:22;:::i;:::-;:29;;;;:::i;5213:38::-;5277;5310:4;5285:22;5298:9;5285:10;:22;:::i;5277:38::-;5341;5374:4;5349:22;5362:9;5349:10;:22;:::i;5341:38::-;5177:224;;;-1:-1:-1;;;;;10964:15:19;;;5177:224:7;;;10946:34:19;11016:15;;;10996:18;;;10989:43;11068:15;;;11048:18;;;11041:43;10881:18;;5177:224:7;;;-1:-1:-1;;5177:224:7;;;;;;;;;5146:273;;5177:224;5146:273;;;;;-1:-1:-1;5437:15:7;5489:32;5511:10;5146:273;5489:32;:::i;:::-;5455:67;;:10;:67;:::i;:::-;5437:85;;5560:16;5568:7;5560;:16::i;:::-;-1:-1:-1;;;;;5545:32:7;5551:7;5545:32;;;;;;;;;;5055:537;;;5018:574;-1:-1:-1;4871:3:7;;;;:::i;:::-;;;;4843:759;;2090:169:16;2164:6;;;-1:-1:-1;;;;;2180:17:16;;;-1:-1:-1;;;;;;2180:17:16;;;;;;;2212:40;;2164:6;;;2180:17;2164:6;;2212:40;;2145:16;;2212:40;2135:124;2090:169;:::o;7087:341:5:-;7238:28;7248:4;7254:2;7258:7;7238:9;:28::i;:::-;7297:48;7320:4;7326:2;7330:7;7339:5;7297:22;:48::i;:::-;7276:145;;;;-1:-1:-1;;;7276:145:5;;;;;;;:::i;275:703:18:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:18;;;;;;;;;;;;-1:-1:-1;;;574:10:18;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:18;;-1:-1:-1;720:2:18;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:18;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:18;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:18;;;;;;;;-1:-1:-1;919:11:18;928:2;919:11;;:::i;:::-;;;791:150;;5750:104:7;5825:15;;5799:7;;5825:22;;5845:1;5825:19;:22::i;9744:372:5:-;-1:-1:-1;;;;;9823:16:5;;9815:61;;;;-1:-1:-1;;;9815:61:5;;19471:2:19;9815:61:5;;;19453:21:19;;;19490:18;;;19483:30;19549:34;19529:18;;;19522:62;19601:18;;9815:61:5;19269:356:19;9815:61:5;7796:4;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:5;:30;9886:58;;;;-1:-1:-1;;;9886:58:5;;15470:2:19;9886:58:5;;;15452:21:19;15509:2;15489:18;;;15482:30;15548;15528:18;;;15521:58;15596:18;;9886:58:5;15268:352:19;9886:58:5;9955:45;9984:1;9988:2;9992:7;9955:20;:45::i;:::-;-1:-1:-1;;;;;10011:13:5;;;;;;:9;:13;;;;;:18;;10028:1;;10011:13;:18;;10028:1;;10011:18;:::i;:::-;;;;-1:-1:-1;;10039:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10039:21:5;-1:-1:-1;;;;;10039:21:5;;;;;;;;10076:33;;10039:16;;;10076:33;;10039:16;;10076:33;9744:372;;:::o;6315:118:7:-;6388:10;;6370:15;;:28;6362:37;;;;;;6409:15;:17;;;:15;:17;;;:::i;:::-;;;;;;6315:118::o;2089:396:15:-;2196:7;312:106;;;;;;;;;;;;;;;;;289:139;;;;;;;2344:12;;2378:11;;;;2421:24;;;;;2411:35;;;;;;2265:199;;;;;12204:25:19;;;12260:2;12245:18;;12238:34;;;;-1:-1:-1;;;;;12308:32:19;12303:2;12288:18;;12281:60;12372:2;12357:18;;12350:34;12191:3;12176:19;;11973:417;2265:199:15;;;;;;;;;;;;;2238:240;;;;;;2219:259;;2089:396;;;:::o;1874:249:3:-;1970:7;2068:20;1331:15;;;1254:99;2068:20;2039:63;;-1:-1:-1;;;2039:63:3;;;9912:27:19;9955:11;;;9948:27;;;;9991:12;;;9984:28;;;10028:12;;2039:63:3;9654:392:19;2767:572:6;-1:-1:-1;;;;;2966:18:6;;2962:183;;3000:40;3032:7;4148:10;:17;;4121:24;;;;:15;:24;;;;;:44;;;4175:24;;;;;;;;;;;;4045:161;3000:40;2962:183;;;3069:2;-1:-1:-1;;;;;3061:10:6;:4;-1:-1:-1;;;;;3061:10:6;;3057:88;;3087:47;3120:4;3126:7;3087:32;:47::i;:::-;-1:-1:-1;;;;;3158:16:6;;3154:179;;3190:45;3227:7;3190:36;:45::i;3154:179::-;3262:4;-1:-1:-1;;;;;3256:10:6;:2;-1:-1:-1;;;;;3256:10:6;;3252:81;;3282:40;3310:2;3314:7;3282:27;:40::i;12434:950:5:-;12584:4;-1:-1:-1;;;;;12604:13:5;;1034:20:0;1080:8;12600:778:5;;12671:2;-1:-1:-1;;;;;12655:36:5;;12713:12;:10;:12::i;:::-;12747:4;12773:7;12802:5;12655:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12655:170:5;;;;;;;;-1:-1:-1;;12655:170:5;;;;;;;;;;;;:::i;:::-;;;12635:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13004:13:5;;13000:312;;13046:106;;-1:-1:-1;;;13046:106:5;;;;;;;:::i;13000:312::-;13264:6;13258:13;13249:6;13245:2;13241:15;13234:38;12635:691;-1:-1:-1;;;;;;12887:51:5;-1:-1:-1;;;12887:51:5;;-1:-1:-1;12880:58:5;;12600:778;-1:-1:-1;13363:4:5;12434:950;;;;;;:::o;4823:982:6:-;5097:22;5147:1;5122:22;5139:4;5122:16;:22::i;:::-;:26;;;;:::i;:::-;5158:18;5179:26;;;:17;:26;;;;;;5097:51;;-1:-1:-1;5309:28:6;;;5305:323;;-1:-1:-1;;;;;5375:18:6;;5353:19;5375:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5424:30;;;;;;:44;;;5540:30;;:17;:30;;;;;:43;;;5305:323;-1:-1:-1;5721:26:6;;;;:17;:26;;;;;;;;5714:33;;;-1:-1:-1;;;;;5764:18:6;;;;;:12;:18;;;;;:34;;;;;;;5757:41;4823:982::o;6093:1061::-;6367:10;:17;6342:22;;6367:21;;6387:1;;6367:21;:::i;:::-;6398:18;6419:24;;;:15;:24;;;;;;6787:10;:26;;6342:46;;-1:-1:-1;6419:24:6;;6342:46;;6787:26;;;;;;:::i;:::-;;;;;;;;;6765:48;;6849:11;6824:10;6835;6824:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6928:28;;;:15;:28;;;;;;;:41;;;7097:24;;;;;7090:31;7131:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6164:990;;;6093:1061;:::o;3633:217::-;3717:14;3734:20;3751:2;3734:16;:20::i;:::-;-1:-1:-1;;;;;3764:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3808:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3633:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:19;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:19;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:45;;;309:1;306;299:12;268:45;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;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:19;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:19;;603:679;-1:-1:-1;;;;;;;603:679:19:o;1287:220::-;1329:5;1382:3;1375:4;1367:6;1363:17;1359:27;1349:55;;1400:1;1397;1390:12;1349:55;1422:79;1497:3;1488:6;1475:20;1468:4;1460:6;1456:17;1422:79;:::i;1512:156::-;1578:20;;1638:4;1627:16;;1617:27;;1607:55;;1658:1;1655;1648:12;1673:186;1732:6;1785:2;1773:9;1764:7;1760:23;1756:32;1753:52;;;1801:1;1798;1791:12;1753:52;1824:29;1843:9;1824:29;:::i;1864:260::-;1932:6;1940;1993:2;1981:9;1972:7;1968:23;1964:32;1961:52;;;2009:1;2006;1999:12;1961:52;2032:29;2051:9;2032:29;:::i;:::-;2022:39;;2080:38;2114:2;2103:9;2099:18;2080:38;:::i;:::-;2070:48;;1864:260;;;;;:::o;2129:328::-;2206:6;2214;2222;2275:2;2263:9;2254:7;2250:23;2246:32;2243:52;;;2291:1;2288;2281:12;2243:52;2314:29;2333:9;2314:29;:::i;:::-;2304:39;;2362:38;2396:2;2385:9;2381:18;2362:38;:::i;:::-;2352:48;;2447:2;2436:9;2432:18;2419:32;2409:42;;2129:328;;;;;:::o;2462:537::-;2557:6;2565;2573;2581;2634:3;2622:9;2613:7;2609:23;2605:33;2602:53;;;2651:1;2648;2641:12;2602:53;2674:29;2693:9;2674:29;:::i;:::-;2664:39;;2722:38;2756:2;2745:9;2741:18;2722:38;:::i;:::-;2712:48;;2807:2;2796:9;2792:18;2779:32;2769:42;;2862:2;2851:9;2847:18;2834:32;2889:18;2881:6;2878:30;2875:50;;;2921:1;2918;2911:12;2875:50;2944:49;2985:7;2976:6;2965:9;2961:22;2944:49;:::i;:::-;2934:59;;;2462:537;;;;;;;:::o;3004:347::-;3069:6;3077;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3169:29;3188:9;3169:29;:::i;:::-;3159:39;;3248:2;3237:9;3233:18;3220:32;3295:5;3288:13;3281:21;3274:5;3271:32;3261:60;;3317:1;3314;3307:12;3261:60;3340:5;3330:15;;;3004:347;;;;;:::o;3356:602::-;3458:6;3466;3474;3482;3490;3543:3;3531:9;3522:7;3518:23;3514:33;3511:53;;;3560:1;3557;3550:12;3511:53;3583:29;3602:9;3583:29;:::i;:::-;3573:39;;3663:2;3652:9;3648:18;3635:32;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:49;3786:7;3777:6;3766:9;3762:22;3745:49;:::i;:::-;3735:59;;;3841:2;3830:9;3826:18;3813:32;3803:42;;3892:2;3881:9;3877:18;3864:32;3854:42;;3915:37;3947:3;3936:9;3932:19;3915:37;:::i;:::-;3905:47;;3356:602;;;;;;;;:::o;3963:254::-;4031:6;4039;4092:2;4080:9;4071:7;4067:23;4063:32;4060:52;;;4108:1;4105;4098:12;4060:52;4131:29;4150:9;4131:29;:::i;:::-;4121:39;4207:2;4192:18;;;;4179:32;;-1:-1:-1;;;3963:254:19:o;4222:348::-;4306:6;4359:2;4347:9;4338:7;4334:23;4330:32;4327:52;;;4375:1;4372;4365:12;4327:52;4415:9;4402:23;4448:18;4440:6;4437:30;4434:50;;;4480:1;4477;4470:12;4434:50;4503:61;4556:7;4547:6;4536:9;4532:22;4503:61;:::i;4575:1151::-;4691:6;4699;4752:2;4740:9;4731:7;4727:23;4723:32;4720:52;;;4768:1;4765;4758:12;4720:52;4808:9;4795:23;4837:18;4878:2;4870:6;4867:14;4864:34;;;4894:1;4891;4884:12;4864:34;4917:61;4970:7;4961:6;4950:9;4946:22;4917:61;:::i;:::-;4907:71;;4997:2;4987:12;;5052:2;5041:9;5037:18;5024:32;5081:2;5071:8;5068:16;5065:36;;;5097:1;5094;5087:12;5065:36;5120:24;;;-1:-1:-1;5175:4:19;5167:13;;5163:27;-1:-1:-1;5153:55:19;;5204:1;5201;5194:12;5153:55;5240:2;5227:16;5263:60;5279:43;5319:2;5279:43;:::i;5263:60::-;5345:3;5369:2;5364:3;5357:15;5397:2;5392:3;5388:12;5381:19;;5428:2;5424;5420:11;5476:7;5471:2;5465;5462:1;5458:10;5454:2;5450:19;5446:28;5443:41;5440:61;;;5497:1;5494;5487:12;5440:61;5519:1;5510:10;;5529:167;5543:2;5540:1;5537:9;5529:167;;;5600:21;5617:3;5600:21;:::i;:::-;5588:34;;5561:1;5554:9;;;;;5642:12;;;;5674;;5529:167;;;5533:3;5715:5;5705:15;;;;;;;4575:1151;;;;;:::o;5731:245::-;5789:6;5842:2;5830:9;5821:7;5817:23;5813:32;5810:52;;;5858:1;5855;5848:12;5810:52;5897:9;5884:23;5916:30;5940:5;5916:30;:::i;5981:249::-;6050:6;6103:2;6091:9;6082:7;6078:23;6074:32;6071:52;;;6119:1;6116;6109:12;6071:52;6151:9;6145:16;6170:30;6194:5;6170:30;:::i;6235:450::-;6304:6;6357:2;6345:9;6336:7;6332:23;6328:32;6325:52;;;6373:1;6370;6363:12;6325:52;6413:9;6400:23;6446:18;6438:6;6435:30;6432:50;;;6478:1;6475;6468:12;6432:50;6501:22;;6554:4;6546:13;;6542:27;-1:-1:-1;6532:55:19;;6583:1;6580;6573:12;6532:55;6606:73;6671:7;6666:2;6653:16;6648:2;6644;6640:11;6606:73;:::i;6690:180::-;6749:6;6802:2;6790:9;6781:7;6777:23;6773:32;6770:52;;;6818:1;6815;6808:12;6770:52;-1:-1:-1;6841:23:19;;6690:180;-1:-1:-1;6690:180:19:o;6875:248::-;6943:6;6951;7004:2;6992:9;6983:7;6979:23;6975:32;6972:52;;;7020:1;7017;7010:12;6972:52;-1:-1:-1;;7043:23:19;;;7113:2;7098:18;;;7085:32;;-1:-1:-1;6875:248:19:o;7128:182::-;7185:6;7238:2;7226:9;7217:7;7213:23;7209:32;7206:52;;;7254:1;7251;7244:12;7206:52;7277:27;7294:9;7277:27;:::i;7315:268::-;7367:3;7405:5;7399:12;7432:6;7427:3;7420:19;7448:63;7504:6;7497:4;7492:3;7488:14;7481:4;7474:5;7470:16;7448:63;:::i;:::-;7565:2;7544:15;-1:-1:-1;;7540:29:19;7531:39;;;;7572:4;7527:50;;7315:268;-1:-1:-1;;7315:268:19:o;7588:184::-;7629:3;7667:5;7661:12;7682:52;7727:6;7722:3;7715:4;7708:5;7704:16;7682:52;:::i;:::-;7750:16;;;;;7588:184;-1:-1:-1;;7588:184:19:o;7777:274::-;7906:3;7944:6;7938:13;7960:53;8006:6;8001:3;7994:4;7986:6;7982:17;7960:53;:::i;:::-;8029:16;;;;;7777:274;-1:-1:-1;;7777:274:19:o;8056:415::-;8213:3;8251:6;8245:13;8267:53;8313:6;8308:3;8301:4;8293:6;8289:17;8267:53;:::i;:::-;8389:2;8385:15;;;;-1:-1:-1;;8381:53:19;8342:16;;;;8367:68;;;8462:2;8451:14;;8056:415;-1:-1:-1;;8056:415:19:o;8476:1173::-;8652:3;8681:1;8714:6;8708:13;8744:3;8766:1;8794:9;8790:2;8786:18;8776:28;;8854:2;8843:9;8839:18;8876;8866:61;;8920:4;8912:6;8908:17;8898:27;;8866:61;8946:2;8994;8986:6;8983:14;8963:18;8960:38;8957:165;;;-1:-1:-1;;;9021:33:19;;9077:4;9074:1;9067:15;9107:4;9028:3;9095:17;8957:165;9138:18;9165:104;;;;9283:1;9278:320;;;;9131:467;;9165:104;-1:-1:-1;;9198:24:19;;9186:37;;9243:16;;;;-1:-1:-1;9165:104:19;;9278:320;25495:1;25488:14;;;25532:4;25519:18;;9373:1;9387:165;9401:6;9398:1;9395:13;9387:165;;;9479:14;;9466:11;;;9459:35;9522:16;;;;9416:10;;9387:165;;;9391:3;;9581:6;9576:3;9572:16;9565:23;;9131:467;;;;;;;9614:29;9639:3;9631:6;9614:29;:::i;:::-;9607:36;8476:1173;-1:-1:-1;;;;;8476:1173:19:o;10259:442::-;-1:-1:-1;;;;;10516:15:19;;;10498:34;;10568:15;;10563:2;10548:18;;10541:43;10620:2;10615;10600:18;;10593:30;;;10441:4;;10640:55;;10676:18;;10668:6;10640:55;:::i;11095:499::-;-1:-1:-1;;;;;11364:15:19;;;11346:34;;11416:15;;11411:2;11396:18;;11389:43;11463:2;11448:18;;11441:34;;;11511:3;11506:2;11491:18;;11484:31;;;11289:4;;11532:56;;11568:19;;11560:6;11532:56;:::i;:::-;11524:64;11095:499;-1:-1:-1;;;;;;11095:499:19:o;12798:228::-;12945:2;12934:9;12927:21;12908:4;12965:55;13016:2;13005:9;13001:18;12993:6;12965:55;:::i;14085:414::-;14287:2;14269:21;;;14326:2;14306:18;;;14299:30;14365:34;14360:2;14345:18;;14338:62;-1:-1:-1;;;14431:2:19;14416:18;;14409:48;14489:3;14474:19;;14085:414::o;20043:416::-;20245:2;20227:21;;;20284:2;20264:18;;;20257:30;20323:34;20318:2;20303:18;;20296:62;-1:-1:-1;;;20389:2:19;20374:18;;20367:50;20449:3;20434:19;;20043:416::o;20464:356::-;20666:2;20648:21;;;20685:18;;;20678:30;20744:34;20739:2;20724:18;;20717:62;20811:2;20796:18;;20464:356::o;22467:413::-;22669:2;22651:21;;;22708:2;22688:18;;;22681:30;22747:34;22742:2;22727:18;;22720:62;-1:-1:-1;;;22813:2:19;22798:18;;22791:47;22870:3;22855:19;;22467:413::o;22885:401::-;23087:2;23069:21;;;23126:2;23106:18;;;23099:30;23165:34;23160:2;23145:18;;23138:62;-1:-1:-1;;;23231:2:19;23216:18;;23209:35;23276:3;23261:19;;22885:401::o;23704:406::-;23906:2;23888:21;;;23945:2;23925:18;;;23918:30;23984:34;23979:2;23964:18;;23957:62;-1:-1:-1;;;24050:2:19;24035:18;;24028:40;24100:3;24085:19;;23704:406::o;24954:275::-;25025:2;25019:9;25090:2;25071:13;;-1:-1:-1;;25067:27:19;25055:40;;25125:18;25110:34;;25146:22;;;25107:62;25104:88;;;25172:18;;:::i;:::-;25208:2;25201:22;24954:275;;-1:-1:-1;24954:275:19:o;25234:183::-;25294:4;25327:18;25319:6;25316:30;25313:56;;;25349:18;;:::i;:::-;-1:-1:-1;25394:1:19;25390:14;25406:4;25386:25;;25234:183::o;25548:128::-;25588:3;25619:1;25615:6;25612:1;25609:13;25606:39;;;25625:18;;:::i;:::-;-1:-1:-1;25661:9:19;;25548:128::o;25681:204::-;25719:3;25755:4;25752:1;25748:12;25787:4;25784:1;25780:12;25822:3;25816:4;25812:14;25807:3;25804:23;25801:49;;;25830:18;;:::i;:::-;25866:13;;25681:204;-1:-1:-1;;;25681:204:19:o;25890:120::-;25930:1;25956;25946:35;;25961:18;;:::i;:::-;-1:-1:-1;25995:9:19;;25890:120::o;26015:168::-;26055:7;26121:1;26117;26113:6;26109:14;26106:1;26103:21;26098:1;26091:9;26084:17;26080:45;26077:71;;;26128:18;;:::i;:::-;-1:-1:-1;26168:9:19;;26015:168::o;26188:125::-;26228:4;26256:1;26253;26250:8;26247:34;;;26261:18;;:::i;:::-;-1:-1:-1;26298:9:19;;26188:125::o;26318:258::-;26390:1;26400:113;26414:6;26411:1;26408:13;26400:113;;;26490:11;;;26484:18;26471:11;;;26464:39;26436:2;26429:10;26400:113;;;26531:6;26528:1;26525:13;26522:48;;;-1:-1:-1;;26566:1:19;26548:16;;26541:27;26318:258::o;26581:380::-;26660:1;26656:12;;;;26703;;;26724:61;;26778:4;26770:6;26766:17;26756:27;;26724:61;26831:2;26823:6;26820:14;26800:18;26797:38;26794:161;;;26877:10;26872:3;26868:20;26865:1;26858:31;26912:4;26909:1;26902:15;26940:4;26937:1;26930:15;26794:161;;26581:380;;;:::o;26966:135::-;27005:3;-1:-1:-1;;27026:17:19;;27023:43;;;27046:18;;:::i;:::-;-1:-1:-1;27093:1:19;27082:13;;26966:135::o;27106:175::-;27143:3;27187:4;27180:5;27176:16;27216:4;27207:7;27204:17;27201:43;;;27224:18;;:::i;:::-;27273:1;27260:15;;27106:175;-1:-1:-1;;27106:175:19:o;27286:112::-;27318:1;27344;27334:35;;27349:18;;:::i;:::-;-1:-1:-1;27383:9:19;;27286:112::o;27403:127::-;27464:10;27459:3;27455:20;27452:1;27445:31;27495:4;27492:1;27485:15;27519:4;27516:1;27509:15;27535:127;27596:10;27591:3;27587:20;27584:1;27577:31;27627:4;27624:1;27617:15;27651:4;27648:1;27641:15;27667:127;27728:10;27723:3;27719:20;27716:1;27709:31;27759:4;27756:1;27749:15;27783:4;27780:1;27773:15;27799:127;27860:10;27855:3;27851:20;27848:1;27841:31;27891:4;27888:1;27881:15;27915:4;27912:1;27905:15;27931:127;27992:10;27987:3;27983:20;27980:1;27973:31;28023:4;28020:1;28013:15;28047:4;28044:1;28037:15;28063:131;-1:-1:-1;;;;;;28137:32:19;;28127:43;;28117:71;;28184:1;28181;28174:12

Swarm Source

ipfs://1834129f86d8043fcfa363d81982ed3e42455bd3c1c7b9b0f540b9d73b587dd1
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.