ETH Price: $3,266.51 (-4.22%)
Gas: 15 Gwei

Token

Biffy's Stamps (BSTP)
 

Overview

Max Total Supply

0 BSTP

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mkdragon.eth
Balance
1 BSTP
0xA0ab8Eddf14a5174688E2eb1bdb69CDF377142C3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Audit Stamps raised 30 ETH to pay for the Love Farm audit by QuillHash.

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x52115695...c38dFD2D4
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
infiNFTPublic

Compiler Version
v0.5.14+commit.01f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-27
*/

pragma solidity ^0.5.14;
/*
 * @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 GSN 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.
 */
 
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\@openzeppelin\contracts\ownership\Ownable.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.
 *
 * 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.
 */
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 () internal {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     *
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either {approve} or {setApprovalForAll}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either {approve} or {setApprovalForAll}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a {IERC721-safeTransferFrom}. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing 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.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != 0x0 && codehash != accountHash);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @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].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

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

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

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

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

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = 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"
        );

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][to] = approved;
        emit ApprovalForAll(_msgSender(), to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the _msgSender() to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransferFrom(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal {
        _transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, 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.
     *
     * This function is deprecated.
     * @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)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data);
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;
    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }


    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
     

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = uri;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

contract infiNFTPublic is ERC721, ERC721Metadata, Ownable {
    using SafeMath for uint256;
    
    uint256 public totalArtPieces;
    string public fileIPFSReferenceURL;
    string public fileArweaveReferenceURL;
    string public tokenReferenceURI;
    address public artistWalletAddress;
    address public factoryAddressRef;
    
    mapping (uint256 => string) internal fileIPFSHashStorage;
    mapping (uint256 => string) internal fileArweaveHashStorage;
    mapping (uint256 => string) internal thumbnailHashStorage;    
    mapping (uint256 => string) internal artTitleStorage;
    mapping (uint256 => string) internal artistNameStorage;
    mapping (uint256 => string) internal artistNoteStorage;
    mapping (uint256 => uint256) internal royaltyFeeStorage;
    mapping (uint256 => uint256) internal editionNumberStorage;
    mapping (uint256 => uint256) internal totalEditionsStorage;
    mapping (uint256 => string) internal fileTypeStorage;
    mapping (uint256 => string) internal exhibitionStorage;
    
    event NewArtMetadata(uint256 tokenID, string artistName, string artTitle, string artistNote, uint256 editionNumber, uint256 totalCap);
    event NewArtAddtData(uint256 tokenID, string exhibition, string fileType);
    event NewArtImageRefs(uint256 tokenID, string fileIPFSHash, string fileArweaveHash);
    event NewArtRoyaltyInfo(uint256 tokenID, uint256 royaltyFee, address artistAddress); 
    
    constructor(string memory _name, string memory _symbol, address factoryAddress, address contractCreator) ERC721Metadata(_name, _symbol) public {
        fileIPFSReferenceURL = "https://gateway.pinata.cloud/ipfs/";
        fileArweaveReferenceURL = "https://arweave.rocks/";
        tokenReferenceURI = "https://infiNFT.azurewebsites.net/api/HttpTrigger?artContract=";
        factoryAddressRef = factoryAddress;
        artistWalletAddress = contractCreator;
    }
    
    function getCoreMetadata(uint256 tokenID) public view returns (string memory fileIPFSHashByID, string memory fileArweaveHashByID, string memory artistNameByID, string memory artTitleByID, string memory artistNoteByID, uint256 editionNumberByID, uint256 totalEditionsByID) {
        fileIPFSHashByID = fileIPFSHashStorage[tokenID];
        fileArweaveHashByID = fileArweaveHashStorage[tokenID];
        artistNameByID = artistNameStorage[tokenID];
        artTitleByID = artTitleStorage[tokenID];
        artistNoteByID = artistNoteStorage[tokenID];
        editionNumberByID = editionNumberStorage[tokenID];
        totalEditionsByID = totalEditionsStorage[tokenID];
    }
    
    function getAdditionalMetadata(uint256 tokenID) public view returns (string memory exhibitionByID, string memory fileTypeByID, string memory thumbnailHashByID) {
        exhibitionByID = exhibitionStorage[tokenID];
        fileTypeByID = fileTypeStorage[tokenID];
        thumbnailHashByID = thumbnailHashStorage[tokenID];
    }
    
    function getRoyaltyData(uint256 tokenID) public view returns (address artistAddress, uint256 royaltyFeeByID) {
        artistAddress = artistWalletAddress;
        royaltyFeeByID = royaltyFeeStorage[tokenID];
    }
    
    function getImageLink(uint256 tokenID) public view returns (string memory fileIPFSURL, string memory fileArweaveURL, string memory thumbnailURL) {
        fileIPFSURL = string(abi.encodePacked(fileIPFSReferenceURL, fileIPFSHashStorage[tokenID]));
        fileArweaveURL = string(abi.encodePacked(fileArweaveReferenceURL, fileArweaveHashStorage[tokenID]));
        thumbnailURL = string(abi.encodePacked(fileArweaveReferenceURL, thumbnailHashStorage[tokenID]));
    }
    
    function updateLinks(string memory newIPFSURL, string memory newArweaveURL) public onlyOwner {
        fileIPFSReferenceURL = newIPFSURL;
        fileArweaveReferenceURL = newArweaveURL;
    }

    function updateURI(string memory newURI) public onlyOwner {
        tokenReferenceURI = newURI;
    }
    
    function updateArtistAddress(address newAddress) public onlyOwner {
        artistWalletAddress = newAddress;
    }
    
    function whatIsMyAddress() internal view returns (address myAddress) {
        myAddress = address(this);
    }

    function createArt(string memory fileIPFSHash, string memory fileArweaveHash, string memory thumbnailHash, string memory artistName, string memory artTitle, string memory artistNote, string memory exhibition, uint256 royaltyFee, uint256 totalCap, string memory fileType) payable public onlyOwner {

        uint createArtCost = infiNFTFactory(factoryAddressRef).getMintingCost();

        require(msg.value == createArtCost);
        address(0x4C7BEdfA26C744e6bd61CBdF86F3fc4a76DCa073).transfer(msg.value);    
    
        for (uint8 i = 1; i <= totalCap; i++) { 
            totalArtPieces = totalArtPieces + 1;
    
            fileIPFSHashStorage[totalArtPieces] = fileIPFSHash;
            fileArweaveHashStorage[totalArtPieces] = fileArweaveHash;
            thumbnailHashStorage[totalArtPieces] = thumbnailHash;
            artistNameStorage[totalArtPieces] = artistName; 
            artTitleStorage[totalArtPieces] = artTitle;
            artistNoteStorage[totalArtPieces] = artistNote;    
            exhibitionStorage[totalArtPieces] = exhibition;
            royaltyFeeStorage[totalArtPieces] = royaltyFee;
            editionNumberStorage[totalArtPieces] = i;
            totalEditionsStorage[totalArtPieces] = totalCap;
            fileTypeStorage[totalArtPieces] = fileType;
    
            uint256 tokenId = totalArtPieces;
            _mint(artistWalletAddress, tokenId);
    
            emit NewArtMetadata(totalArtPieces, artistName, artTitle, artistNote, i, totalCap);
            emit NewArtAddtData(totalArtPieces, exhibition, fileType);
            emit NewArtImageRefs(totalArtPieces, fileIPFSHash, fileArweaveHash);
            emit NewArtRoyaltyInfo(totalArtPieces, royaltyFee, artistWalletAddress);
        }
    }   

    
    function tokenURI(uint256 tokenID) external view returns (string memory) {
        return string(abi.encodePacked(tokenReferenceURI, addressToString(whatIsMyAddress()), "&id=", integerToString(tokenID)));
    } 
    
    
    function integerToString(uint _i) internal pure returns (string memory) {
     
        if (_i == 0) {
        return "0";
        }
        
        uint j = _i;
        uint len;
      
        while (j != 0) {
        len++;
        j /= 10;
        }
        
        bytes memory bstr = new bytes(len);
        uint k = len - 1;
      
        while (_i != 0) {
        bstr[k--] = byte(uint8(48 + _i % 10));
        _i /= 10;
        }
        return string(bstr);
    }
   
    function addressToString(address _addr) internal pure returns(string memory) {
        bytes32 value = bytes32(uint256(_addr));
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(42);
        str[0] = '0';
        str[1] = 'x';
        for (uint256 i = 0; i < 20; i++) {
            str[2+i*2] = alphabet[uint8(value[i + 12] >> 4)];
            str[3+i*2] = alphabet[uint8(value[i + 12] & 0x0f)];
        }
        return string(str);
    }   
   
}

contract infiNFTFactory is Ownable {

    uint256 public deploymentCost;
    uint256 public artMintingCost;

    constructor() public {
        deploymentCost = 100000000000000000;
        artMintingCost = 5000000000000000;
    }
  
    function whatIsMyAddress() internal view returns (address myAddress) {
        myAddress = address(this);
    }
  
    function createContract(string memory name, string memory symbol) payable public returns (address) {
        require(msg.value == deploymentCost);
        address factoryAddress = whatIsMyAddress();
        address(0x4C7BEdfA26C744e6bd61CBdF86F3fc4a76DCa073).transfer(msg.value);
      
        infiNFTPublic asset = new infiNFTPublic(name, symbol, factoryAddress, msg.sender);
        asset.transferOwnership(msg.sender);
        return address(asset);
    }
  
    function updateCosts(uint deployCost, uint artCost) public onlyOwner {
         deploymentCost = deployCost;
         artMintingCost = artCost;
    }
  
    function getMintingCost() public view returns (uint256 mintingCost) {
        mintingCost = artMintingCost;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"factoryAddress","type":"address"},{"internalType":"address","name":"contractCreator","type":"address"}],"payable":false,"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":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"exhibition","type":"string"},{"indexed":false,"internalType":"string","name":"fileType","type":"string"}],"name":"NewArtAddtData","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"fileIPFSHash","type":"string"},{"indexed":false,"internalType":"string","name":"fileArweaveHash","type":"string"}],"name":"NewArtImageRefs","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"artistName","type":"string"},{"indexed":false,"internalType":"string","name":"artTitle","type":"string"},{"indexed":false,"internalType":"string","name":"artistNote","type":"string"},{"indexed":false,"internalType":"uint256","name":"editionNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalCap","type":"uint256"}],"name":"NewArtMetadata","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"indexed":false,"internalType":"address","name":"artistAddress","type":"address"}],"name":"NewArtRoyaltyInfo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"artistWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"fileIPFSHash","type":"string"},{"internalType":"string","name":"fileArweaveHash","type":"string"},{"internalType":"string","name":"thumbnailHash","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"artTitle","type":"string"},{"internalType":"string","name":"artistNote","type":"string"},{"internalType":"string","name":"exhibition","type":"string"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"internalType":"uint256","name":"totalCap","type":"uint256"},{"internalType":"string","name":"fileType","type":"string"}],"name":"createArt","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"factoryAddressRef","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fileArweaveReferenceURL","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fileIPFSReferenceURL","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getAdditionalMetadata","outputs":[{"internalType":"string","name":"exhibitionByID","type":"string"},{"internalType":"string","name":"fileTypeByID","type":"string"},{"internalType":"string","name":"thumbnailHashByID","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getCoreMetadata","outputs":[{"internalType":"string","name":"fileIPFSHashByID","type":"string"},{"internalType":"string","name":"fileArweaveHashByID","type":"string"},{"internalType":"string","name":"artistNameByID","type":"string"},{"internalType":"string","name":"artTitleByID","type":"string"},{"internalType":"string","name":"artistNoteByID","type":"string"},{"internalType":"uint256","name":"editionNumberByID","type":"uint256"},{"internalType":"uint256","name":"totalEditionsByID","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getImageLink","outputs":[{"internalType":"string","name":"fileIPFSURL","type":"string"},{"internalType":"string","name":"fileArweaveURL","type":"string"},{"internalType":"string","name":"thumbnailURL","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getRoyaltyData","outputs":[{"internalType":"address","name":"artistAddress","type":"address"},{"internalType":"uint256","name":"royaltyFeeByID","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenReferenceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalArtPieces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateArtistAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newIPFSURL","type":"string"},{"internalType":"string","name":"newArweaveURL","type":"string"}],"name":"updateLinks","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200541a3803806200541a833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291905050508383620001e66301ffc9a760e01b6200045560201b60201c565b620001fe6380ac58cd60e01b6200045560201b60201c565b81600590805190602001906200021692919062000566565b5080600690805190602001906200022f92919062000566565b5062000248635b5e139f60e01b6200045560201b60201c565b50506200025a6200055e60201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3604051806060016040528060228152602001620053ba60229139600a90805190602001906200034892919062000566565b506040518060400160405280601681526020017f68747470733a2f2f617277656176652e726f636b732f00000000000000000000815250600b90805190602001906200039692919062000566565b506040518060600160405280603e8152602001620053dc603e9139600c9080519060200190620003c892919062000566565b5081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000615565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620004f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005a957805160ff1916838001178555620005da565b82800160010185558215620005da579182015b82811115620005d9578251825591602001919060010190620005bc565b5b509050620005e99190620005ed565b5090565b6200061291905b808211156200060e576000816000905550600101620005f4565b5090565b90565b614d9580620006256000396000f3fe6080604052600436106101d85760003560e01c80638da5cb5b11610102578063c30f4a5a11610095578063f2fde38b11610064578063f2fde38b14611282578063f42906ab146112d3578063f9ea1e5814611432578063fd73d81c14611923576101d8565b8063c30f4a5a14611026578063c87b56dd146110ee578063e985e9c5146111a2578063ea13cc341461122b576101d8565b8063a22cb465116100d1578063a22cb46514610de4578063a65ff74c14610e41578063b784c96614610ec3578063b88d4fde14610f14576101d8565b80638da5cb5b14610b425780638f32d59b14610b9957806395d89b4114610bc85780639bdb6f8014610c58576101d8565b80633ee984821161017a57806370a082311161014957806370a0823114610a0b578063715018a614610a7057806378954d1814610a8757806385fadf9414610b17576101d8565b80633ee984821461051757806342842e0e1461078957806344a9f184146108045780636352211e14610990576101d8565b8063081812fc116101b6578063081812fc14610336578063095ea7b3146103b15780631f9dbb2c1461040c57806323b872dd1461049c576101d8565b806301ffc9a7146101dd5780630605d6ae1461024f57806306fdde03146102a6575b600080fd5b3480156101e957600080fd5b506102356004803603602081101561020057600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506119b3565b604051808215151515815260200191505060405180910390f35b34801561025b57600080fd5b50610264611a1a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102b257600080fd5b506102bb611a40565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102fb5780820151818401526020810190506102e0565b50505050905090810190601f1680156103285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034257600080fd5b5061036f6004803603602081101561035957600080fd5b8101908080359060200190929190505050611ae2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103bd57600080fd5b5061040a600480360360408110156103d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b7d565b005b34801561041857600080fd5b50610421611d64565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610461578082015181840152602081019050610446565b50505050905090810190601f16801561048e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104a857600080fd5b50610515600480360360608110156104bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e02565b005b34801561052357600080fd5b506105506004803603602081101561053a57600080fd5b8101908080359060200190929190505050611e78565b60405180806020018060200180602001806020018060200188815260200187815260200186810386528d818151815260200191508051906020019080838360005b838110156105ac578082015181840152602081019050610591565b50505050905090810190601f1680156105d95780820380516001836020036101000a031916815260200191505b5086810385528c818151815260200191508051906020019080838360005b838110156106125780820151818401526020810190506105f7565b50505050905090810190601f16801561063f5780820380516001836020036101000a031916815260200191505b5086810384528b818151815260200191508051906020019080838360005b8381101561067857808201518184015260208101905061065d565b50505050905090810190601f1680156106a55780820380516001836020036101000a031916815260200191505b5086810383528a818151815260200191508051906020019080838360005b838110156106de5780820151818401526020810190506106c3565b50505050905090810190601f16801561070b5780820380516001836020036101000a031916815260200191505b50868103825289818151815260200191508051906020019080838360005b83811015610744578082015181840152602081019050610729565b50505050905090810190601f1680156107715780820380516001836020036101000a031916815260200191505b509c5050505050505050505050505060405180910390f35b34801561079557600080fd5b50610802600480360360608110156107ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612220565b005b34801561081057600080fd5b5061083d6004803603602081101561082757600080fd5b8101908080359060200190929190505050612240565b60405180806020018060200180602001848103845287818151815260200191508051906020019080838360005b8381101561088557808201518184015260208101905061086a565b50505050905090810190601f1680156108b25780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b838110156108eb5780820151818401526020810190506108d0565b50505050905090810190601f1680156109185780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b83811015610951578082015181840152602081019050610936565b50505050905090810190601f16801561097e5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b34801561099c57600080fd5b506109c9600480360360208110156109b357600080fd5b8101908080359060200190929190505050612456565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1757600080fd5b50610a5a60048036036020811015610a2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061251e565b6040518082815260200191505060405180910390f35b348015610a7c57600080fd5b50610a856125f3565b005b348015610a9357600080fd5b50610a9c61272e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610adc578082015181840152602081019050610ac1565b50505050905090810190601f168015610b095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b2357600080fd5b50610b2c6127cc565b6040518082815260200191505060405180910390f35b348015610b4e57600080fd5b50610b576127d2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ba557600080fd5b50610bae6127fc565b604051808215151515815260200191505060405180910390f35b348015610bd457600080fd5b50610bdd61285b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c1d578082015181840152602081019050610c02565b50505050905090810190601f168015610c4a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c6457600080fd5b50610c9160048036036020811015610c7b57600080fd5b81019080803590602001909291905050506128fd565b60405180806020018060200180602001848103845287818151815260200191508051906020019080838360005b83811015610cd9578082015181840152602081019050610cbe565b50505050905090810190601f168015610d065780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b83811015610d3f578082015181840152602081019050610d24565b50505050905090810190601f168015610d6c5780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b83811015610da5578082015181840152602081019050610d8a565b50505050905090810190601f168015610dd25780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b348015610df057600080fd5b50610e3f60048036036040811015610e0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612bb2565b005b348015610e4d57600080fd5b50610e7a60048036036020811015610e6457600080fd5b8101908080359060200190929190505050612d6a565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b348015610ecf57600080fd5b50610f1260048036036020811015610ee657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dad565b005b348015610f2057600080fd5b5061102460048036036080811015610f3757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f9e57600080fd5b820183602082011115610fb057600080fd5b80359060200191846001830284011164010000000083111715610fd257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e6b565b005b34801561103257600080fd5b506110ec6004803603602081101561104957600080fd5b810190808035906020019064010000000081111561106657600080fd5b82018360208201111561107857600080fd5b8035906020019184600183028401116401000000008311171561109a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612ee3565b005b3480156110fa57600080fd5b506111276004803603602081101561111157600080fd5b8101908080359060200190929190505050612f77565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561116757808201518184015260208101905061114c565b50505050905090810190601f1680156111945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111ae57600080fd5b50611211600480360360408110156111c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130d9565b604051808215151515815260200191505060405180910390f35b34801561123757600080fd5b5061124061316d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561128e57600080fd5b506112d1600480360360208110156112a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613193565b005b3480156112df57600080fd5b50611430600480360360408110156112f657600080fd5b810190808035906020019064010000000081111561131357600080fd5b82018360208201111561132557600080fd5b8035906020019184600183028401116401000000008311171561134757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156113aa57600080fd5b8201836020820111156113bc57600080fd5b803590602001918460018302840111640100000000831117156113de57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613219565b005b611921600480360361014081101561144957600080fd5b810190808035906020019064010000000081111561146657600080fd5b82018360208201111561147857600080fd5b8035906020019184600183028401116401000000008311171561149a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156114fd57600080fd5b82018360208201111561150f57600080fd5b8035906020019184600183028401116401000000008311171561153157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561159457600080fd5b8201836020820111156115a657600080fd5b803590602001918460018302840111640100000000831117156115c857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561162b57600080fd5b82018360208201111561163d57600080fd5b8035906020019184600183028401116401000000008311171561165f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156116c257600080fd5b8201836020820111156116d457600080fd5b803590602001918460018302840111640100000000831117156116f657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561175957600080fd5b82018360208201111561176b57600080fd5b8035906020019184600183028401116401000000008311171561178d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156117f057600080fd5b82018360208201111561180257600080fd5b8035906020019184600183028401116401000000008311171561182457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803590602001909291908035906020019064010000000081111561189b57600080fd5b8201836020820111156118ad57600080fd5b803590602001918460018302840111640100000000831117156118cf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506132c5565b005b34801561192f57600080fd5b50611938613aaa565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561197857808201518184015260208101905061195d565b50505050905090810190601f1680156119a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ad85780601f10611aad57610100808354040283529160200191611ad8565b820191906000526020600020905b815481529060010190602001808311611abb57829003601f168201915b5050505050905090565b6000611aed82613b48565b611b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614cba602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611b8882612456565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614d0f6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611c2e613bba565b73ffffffffffffffffffffffffffffffffffffffff161480611c5d5750611c5c81611c57613bba565b6130d9565b5b611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614c2f6038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dfa5780601f10611dcf57610100808354040283529160200191611dfa565b820191906000526020600020905b815481529060010190602001808311611ddd57829003601f168201915b505050505081565b611e13611e0d613bba565b82613bc2565b611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d306031913960400191505060405180910390fd5b611e73838383613cb6565b505050565b6060806060806060600080600f60008981526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f2a5780601f10611eff57610100808354040283529160200191611f2a565b820191906000526020600020905b815481529060010190602001808311611f0d57829003601f168201915b50505050509650601060008981526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fd85780601f10611fad57610100808354040283529160200191611fd8565b820191906000526020600020905b815481529060010190602001808311611fbb57829003601f168201915b50505050509550601360008981526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120865780601f1061205b57610100808354040283529160200191612086565b820191906000526020600020905b81548152906001019060200180831161206957829003601f168201915b50505050509450601260008981526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121345780601f1061210957610100808354040283529160200191612134565b820191906000526020600020905b81548152906001019060200180831161211757829003601f168201915b50505050509350601460008981526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121e25780601f106121b7576101008083540402835291602001916121e2565b820191906000526020600020905b8154815290600101906020018083116121c557829003601f168201915b505050505092506016600089815260200190815260200160002054915060176000898152602001908152602001600020549050919395979092949650565b61223b83838360405180602001604052806000815250612e6b565b505050565b6060806060601960008581526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122ec5780601f106122c1576101008083540402835291602001916122ec565b820191906000526020600020905b8154815290600101906020018083116122cf57829003601f168201915b50505050509250601860008581526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561239a5780601f1061236f5761010080835404028352916020019161239a565b820191906000526020600020905b81548152906001019060200180831161237d57829003601f168201915b50505050509150601160008581526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124485780601f1061241d57610100808354040283529160200191612448565b820191906000526020600020905b81548152906001019060200180831161242b57829003601f168201915b505050505090509193909250565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612515576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c916029913960400191505060405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614c67602a913960400191505060405180910390fd5b6125ec600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f11565b9050919050565b6125fb6127fc565b61266d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b505050505081565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661283f613bba565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128f35780601f106128c8576101008083540402835291602001916128f3565b820191906000526020600020905b8154815290600101906020018083116128d657829003601f168201915b5050505050905090565b6060806060600a600f600086815260200190815260200160002060405160200180838054600181600116156101000203166002900480156129755780601f10612953576101008083540402835291820191612975565b820191906000526020600020905b815481529060010190602001808311612961575b5050828054600181600116156101000203166002900480156129ce5780601f106129ac5761010080835404028352918201916129ce565b820191906000526020600020905b8154815290600101906020018083116129ba575b5050925050506040516020818303038152906040529250600b601060008681526020019081526020016000206040516020018083805460018160011615610100020316600290048015612a585780601f10612a36576101008083540402835291820191612a58565b820191906000526020600020905b815481529060010190602001808311612a44575b505082805460018160011615610100020316600290048015612ab15780601f10612a8f576101008083540402835291820191612ab1565b820191906000526020600020905b815481529060010190602001808311612a9d575b5050925050506040516020818303038152906040529150600b601160008681526020019081526020016000206040516020018083805460018160011615610100020316600290048015612b3b5780601f10612b19576101008083540402835291820191612b3b565b820191906000526020600020905b815481529060010190602001808311612b27575b505082805460018160011615610100020316600290048015612b945780601f10612b72576101008083540402835291820191612b94565b820191906000526020600020905b815481529060010190602001808311612b80575b50509250505060405160208183030381529060405290509193909250565b612bba613bba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000612c68613bba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612d15613bba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915060156000848152602001908152602001600020549050915091565b612db56127fc565b612e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612e7c612e76613bba565b83613bc2565b612ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d306031913960400191505060405180910390fd5b612edd84848484613f1f565b50505050565b612eeb6127fc565b612f5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c9080519060200190612f73929190614ae1565b5050565b6060600c612f8b612f86613f91565b613f99565b612f948461421a565b6040516020018084805460018160011615610100020316600290048015612ff25780601f10612fd0576101008083540402835291820191612ff2565b820191906000526020600020905b815481529060010190602001808311612fde575b505083805190602001908083835b602083106130235780518252602082019150602081019050602083039250613000565b6001836020036101000a038019825116818451168082178552505050505050905001807f2669643d0000000000000000000000000000000000000000000000000000000081525060040182805190602001908083835b6020831061309c5780518252602082019150602081019050602083039250613079565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61319b6127fc565b61320d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61321681614347565b50565b6132216127fc565b613293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600a90805190602001906132a9929190614ae1565b5080600b90805190602001906132c0929190614ae1565b505050565b6132cd6127fc565b61333f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e66fcda86040518163ffffffff1660e01b815260040160206040518083038186803b1580156133a957600080fd5b505afa1580156133bd573d6000803e3d6000fd5b505050506040513d60208110156133d357600080fd5b810190808051906020019092919050505090508034146133f257600080fd5b734c7bedfa26c744e6bd61cbdf86f3fc4a76dca07373ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561344c573d6000803e3d6000fd5b506000600190505b838160ff1611613a9c576001600954016009819055508b600f600060095481526020019081526020016000209080519060200190613493929190614ae1565b508a60106000600954815260200190815260200160002090805190602001906134bd929190614ae1565b508960116000600954815260200190815260200160002090805190602001906134e7929190614ae1565b50886013600060095481526020019081526020016000209080519060200190613511929190614ae1565b5087601260006009548152602001908152602001600020908051906020019061353b929190614ae1565b50866014600060095481526020019081526020016000209080519060200190613565929190614ae1565b5085601960006009548152602001908152602001600020908051906020019061358f929190614ae1565b5084601560006009548152602001908152602001600020819055508060ff1660166000600954815260200190815260200160002081905550836017600060095481526020019081526020016000208190555082601860006009548152602001908152602001600020908051906020019061360a929190614ae1565b506000600954905061363e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261448d565b7fb595052542148b2bf1b1e55e14a41579ae9163be75cff6d179f3e96c2bbf4c7f6009548b8b8b868a604051808781526020018060200180602001806020018660ff168152602001858152602001848103845289818151815260200191508051906020019080838360005b838110156136c45780820151818401526020810190506136a9565b50505050905090810190601f1680156136f15780820380516001836020036101000a031916815260200191505b50848103835288818151815260200191508051906020019080838360005b8381101561372a57808201518184015260208101905061370f565b50505050905090810190601f1680156137575780820380516001836020036101000a031916815260200191505b50848103825287818151815260200191508051906020019080838360005b83811015613790578082015181840152602081019050613775565b50505050905090810190601f1680156137bd5780820380516001836020036101000a031916815260200191505b50995050505050505050505060405180910390a17f90e6b4da472f8ec07306fc53fed35e13564cad5724e516216889b889b331dbae6009548886604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015613841578082015181840152602081019050613826565b50505050905090810190601f16801561386e5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156138a757808201518184015260208101905061388c565b50505050905090810190601f1680156138d45780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a17f554b8ec88e9796df3410a6b1e9233856c2613d4b93eb5a37e34224567d8499696009548e8e604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015613954578082015181840152602081019050613939565b50505050905090810190601f1680156139815780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156139ba57808201518184015260208101905061399f565b50505050905090810190601f1680156139e75780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a17f423231a1c91c63d9ab32b93c11c2235d0be62c1f5a0906840e38f2685f2cf92860095487600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a1508080600101915050613454565b505050505050505050505050565b600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613b405780601f10613b1557610100808354040283529160200191613b40565b820191906000526020600020905b815481529060010190602001808311613b2357829003601f168201915b505050505081565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b6000613bcd82613b48565b613c22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614c03602c913960400191505060405180910390fd5b6000613c2d83612456565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613c9c57508373ffffffffffffffffffffffffffffffffffffffff16613c8484611ae2565b73ffffffffffffffffffffffffffffffffffffffff16145b80613cad5750613cac81856130d9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613cd682612456565b73ffffffffffffffffffffffffffffffffffffffff1614613d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614ce66029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614bdf6024913960400191505060405180910390fd5b613dd1816146a5565b613e18600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614763565b613e5f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614786565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b613f2a848484613cb6565b613f368484848461479c565b613f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614b876032913960400191505060405180910390fd5b50505050565b600030905090565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060606040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506060602a6040519080825280601f01601f1916602001820160405280156140295781602001600182028038833980820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061405a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106140b757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060008090505b601481101561420e5782600485600c84016020811061410757fe5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff168151811061413f57fe5b602001015160f81c60f81b82600283026002018151811061415c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c8401602081106141a057fe5b1a60f81b1660f81c60ff16815181106141b557fe5b602001015160f81c60f81b8260028302600301815181106141d257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506140ec565b50809350505050919050565b60606000821415614262576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614342565b600082905060005b6000821461428c578080600101915050600a828161428457fe5b04915061426a565b6060816040519080825280601f01601f1916602001820160405280156142c15781602001600182028038833980820191505090505b50905060006001830390505b6000861461433a57600a86816142df57fe5b0660300160f81b828280600190039350815181106142f957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161433257fe5b0495506142cd565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156143cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614bb96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61453981613b48565b156145ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550614645600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614786565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146147605760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61477b6001826000015461498c90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b60006147bd8473ffffffffffffffffffffffffffffffffffffffff166149d6565b6147ca5760019050614984565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a026147f0613bba565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156148ac578082015181840152602081019050614891565b50505050905090810190601f1680156148d95780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156148fb57600080fd5b505af115801561490f573d6000803e3d6000fd5b505050506040513d602081101561492557600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60006149ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614a21565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b8214158015614a185750808214155b92505050919050565b6000838311158290614ace576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a93578082015181840152602081019050614a78565b50505050905090810190601f168015614ac05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614b2257805160ff1916838001178555614b50565b82800160010185558215614b50579182015b82811115614b4f578251825591602001919060010190614b34565b5b509050614b5d9190614b61565b5090565b614b8391905b80821115614b7f576000816000905550600101614b67565b5090565b9056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a7231582092eff0c8c79cdb135c776ae1ea3c1be9c0bbdc7e864c8c2909bb4037191afab964736f6c634300050e003268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f68747470733a2f2f696e66694e46542e617a75726577656273697465732e6e65742f6170692f48747470547269676765723f617274436f6e74726163743d000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000677444a94d7ba549acab94da8767e1145e001aaa00000000000000000000000063a9dbce75413036b2b778e670aabd4493aaf9f300000000000000000000000000000000000000000000000000000000000000146e617465616c657820636f6e636570742061727400000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e41434100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80638da5cb5b11610102578063c30f4a5a11610095578063f2fde38b11610064578063f2fde38b14611282578063f42906ab146112d3578063f9ea1e5814611432578063fd73d81c14611923576101d8565b8063c30f4a5a14611026578063c87b56dd146110ee578063e985e9c5146111a2578063ea13cc341461122b576101d8565b8063a22cb465116100d1578063a22cb46514610de4578063a65ff74c14610e41578063b784c96614610ec3578063b88d4fde14610f14576101d8565b80638da5cb5b14610b425780638f32d59b14610b9957806395d89b4114610bc85780639bdb6f8014610c58576101d8565b80633ee984821161017a57806370a082311161014957806370a0823114610a0b578063715018a614610a7057806378954d1814610a8757806385fadf9414610b17576101d8565b80633ee984821461051757806342842e0e1461078957806344a9f184146108045780636352211e14610990576101d8565b8063081812fc116101b6578063081812fc14610336578063095ea7b3146103b15780631f9dbb2c1461040c57806323b872dd1461049c576101d8565b806301ffc9a7146101dd5780630605d6ae1461024f57806306fdde03146102a6575b600080fd5b3480156101e957600080fd5b506102356004803603602081101561020057600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506119b3565b604051808215151515815260200191505060405180910390f35b34801561025b57600080fd5b50610264611a1a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102b257600080fd5b506102bb611a40565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102fb5780820151818401526020810190506102e0565b50505050905090810190601f1680156103285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034257600080fd5b5061036f6004803603602081101561035957600080fd5b8101908080359060200190929190505050611ae2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103bd57600080fd5b5061040a600480360360408110156103d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b7d565b005b34801561041857600080fd5b50610421611d64565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610461578082015181840152602081019050610446565b50505050905090810190601f16801561048e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104a857600080fd5b50610515600480360360608110156104bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e02565b005b34801561052357600080fd5b506105506004803603602081101561053a57600080fd5b8101908080359060200190929190505050611e78565b60405180806020018060200180602001806020018060200188815260200187815260200186810386528d818151815260200191508051906020019080838360005b838110156105ac578082015181840152602081019050610591565b50505050905090810190601f1680156105d95780820380516001836020036101000a031916815260200191505b5086810385528c818151815260200191508051906020019080838360005b838110156106125780820151818401526020810190506105f7565b50505050905090810190601f16801561063f5780820380516001836020036101000a031916815260200191505b5086810384528b818151815260200191508051906020019080838360005b8381101561067857808201518184015260208101905061065d565b50505050905090810190601f1680156106a55780820380516001836020036101000a031916815260200191505b5086810383528a818151815260200191508051906020019080838360005b838110156106de5780820151818401526020810190506106c3565b50505050905090810190601f16801561070b5780820380516001836020036101000a031916815260200191505b50868103825289818151815260200191508051906020019080838360005b83811015610744578082015181840152602081019050610729565b50505050905090810190601f1680156107715780820380516001836020036101000a031916815260200191505b509c5050505050505050505050505060405180910390f35b34801561079557600080fd5b50610802600480360360608110156107ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612220565b005b34801561081057600080fd5b5061083d6004803603602081101561082757600080fd5b8101908080359060200190929190505050612240565b60405180806020018060200180602001848103845287818151815260200191508051906020019080838360005b8381101561088557808201518184015260208101905061086a565b50505050905090810190601f1680156108b25780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b838110156108eb5780820151818401526020810190506108d0565b50505050905090810190601f1680156109185780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b83811015610951578082015181840152602081019050610936565b50505050905090810190601f16801561097e5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b34801561099c57600080fd5b506109c9600480360360208110156109b357600080fd5b8101908080359060200190929190505050612456565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1757600080fd5b50610a5a60048036036020811015610a2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061251e565b6040518082815260200191505060405180910390f35b348015610a7c57600080fd5b50610a856125f3565b005b348015610a9357600080fd5b50610a9c61272e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610adc578082015181840152602081019050610ac1565b50505050905090810190601f168015610b095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b2357600080fd5b50610b2c6127cc565b6040518082815260200191505060405180910390f35b348015610b4e57600080fd5b50610b576127d2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ba557600080fd5b50610bae6127fc565b604051808215151515815260200191505060405180910390f35b348015610bd457600080fd5b50610bdd61285b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c1d578082015181840152602081019050610c02565b50505050905090810190601f168015610c4a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c6457600080fd5b50610c9160048036036020811015610c7b57600080fd5b81019080803590602001909291905050506128fd565b60405180806020018060200180602001848103845287818151815260200191508051906020019080838360005b83811015610cd9578082015181840152602081019050610cbe565b50505050905090810190601f168015610d065780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b83811015610d3f578082015181840152602081019050610d24565b50505050905090810190601f168015610d6c5780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b83811015610da5578082015181840152602081019050610d8a565b50505050905090810190601f168015610dd25780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b348015610df057600080fd5b50610e3f60048036036040811015610e0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612bb2565b005b348015610e4d57600080fd5b50610e7a60048036036020811015610e6457600080fd5b8101908080359060200190929190505050612d6a565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b348015610ecf57600080fd5b50610f1260048036036020811015610ee657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dad565b005b348015610f2057600080fd5b5061102460048036036080811015610f3757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f9e57600080fd5b820183602082011115610fb057600080fd5b80359060200191846001830284011164010000000083111715610fd257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e6b565b005b34801561103257600080fd5b506110ec6004803603602081101561104957600080fd5b810190808035906020019064010000000081111561106657600080fd5b82018360208201111561107857600080fd5b8035906020019184600183028401116401000000008311171561109a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612ee3565b005b3480156110fa57600080fd5b506111276004803603602081101561111157600080fd5b8101908080359060200190929190505050612f77565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561116757808201518184015260208101905061114c565b50505050905090810190601f1680156111945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111ae57600080fd5b50611211600480360360408110156111c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130d9565b604051808215151515815260200191505060405180910390f35b34801561123757600080fd5b5061124061316d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561128e57600080fd5b506112d1600480360360208110156112a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613193565b005b3480156112df57600080fd5b50611430600480360360408110156112f657600080fd5b810190808035906020019064010000000081111561131357600080fd5b82018360208201111561132557600080fd5b8035906020019184600183028401116401000000008311171561134757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156113aa57600080fd5b8201836020820111156113bc57600080fd5b803590602001918460018302840111640100000000831117156113de57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613219565b005b611921600480360361014081101561144957600080fd5b810190808035906020019064010000000081111561146657600080fd5b82018360208201111561147857600080fd5b8035906020019184600183028401116401000000008311171561149a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156114fd57600080fd5b82018360208201111561150f57600080fd5b8035906020019184600183028401116401000000008311171561153157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561159457600080fd5b8201836020820111156115a657600080fd5b803590602001918460018302840111640100000000831117156115c857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561162b57600080fd5b82018360208201111561163d57600080fd5b8035906020019184600183028401116401000000008311171561165f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156116c257600080fd5b8201836020820111156116d457600080fd5b803590602001918460018302840111640100000000831117156116f657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561175957600080fd5b82018360208201111561176b57600080fd5b8035906020019184600183028401116401000000008311171561178d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156117f057600080fd5b82018360208201111561180257600080fd5b8035906020019184600183028401116401000000008311171561182457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803590602001909291908035906020019064010000000081111561189b57600080fd5b8201836020820111156118ad57600080fd5b803590602001918460018302840111640100000000831117156118cf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506132c5565b005b34801561192f57600080fd5b50611938613aaa565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561197857808201518184015260208101905061195d565b50505050905090810190601f1680156119a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ad85780601f10611aad57610100808354040283529160200191611ad8565b820191906000526020600020905b815481529060010190602001808311611abb57829003601f168201915b5050505050905090565b6000611aed82613b48565b611b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614cba602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611b8882612456565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614d0f6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611c2e613bba565b73ffffffffffffffffffffffffffffffffffffffff161480611c5d5750611c5c81611c57613bba565b6130d9565b5b611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614c2f6038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dfa5780601f10611dcf57610100808354040283529160200191611dfa565b820191906000526020600020905b815481529060010190602001808311611ddd57829003601f168201915b505050505081565b611e13611e0d613bba565b82613bc2565b611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d306031913960400191505060405180910390fd5b611e73838383613cb6565b505050565b6060806060806060600080600f60008981526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f2a5780601f10611eff57610100808354040283529160200191611f2a565b820191906000526020600020905b815481529060010190602001808311611f0d57829003601f168201915b50505050509650601060008981526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fd85780601f10611fad57610100808354040283529160200191611fd8565b820191906000526020600020905b815481529060010190602001808311611fbb57829003601f168201915b50505050509550601360008981526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120865780601f1061205b57610100808354040283529160200191612086565b820191906000526020600020905b81548152906001019060200180831161206957829003601f168201915b50505050509450601260008981526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121345780601f1061210957610100808354040283529160200191612134565b820191906000526020600020905b81548152906001019060200180831161211757829003601f168201915b50505050509350601460008981526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121e25780601f106121b7576101008083540402835291602001916121e2565b820191906000526020600020905b8154815290600101906020018083116121c557829003601f168201915b505050505092506016600089815260200190815260200160002054915060176000898152602001908152602001600020549050919395979092949650565b61223b83838360405180602001604052806000815250612e6b565b505050565b6060806060601960008581526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122ec5780601f106122c1576101008083540402835291602001916122ec565b820191906000526020600020905b8154815290600101906020018083116122cf57829003601f168201915b50505050509250601860008581526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561239a5780601f1061236f5761010080835404028352916020019161239a565b820191906000526020600020905b81548152906001019060200180831161237d57829003601f168201915b50505050509150601160008581526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124485780601f1061241d57610100808354040283529160200191612448565b820191906000526020600020905b81548152906001019060200180831161242b57829003601f168201915b505050505090509193909250565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612515576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c916029913960400191505060405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614c67602a913960400191505060405180910390fd5b6125ec600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f11565b9050919050565b6125fb6127fc565b61266d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b505050505081565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661283f613bba565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128f35780601f106128c8576101008083540402835291602001916128f3565b820191906000526020600020905b8154815290600101906020018083116128d657829003601f168201915b5050505050905090565b6060806060600a600f600086815260200190815260200160002060405160200180838054600181600116156101000203166002900480156129755780601f10612953576101008083540402835291820191612975565b820191906000526020600020905b815481529060010190602001808311612961575b5050828054600181600116156101000203166002900480156129ce5780601f106129ac5761010080835404028352918201916129ce565b820191906000526020600020905b8154815290600101906020018083116129ba575b5050925050506040516020818303038152906040529250600b601060008681526020019081526020016000206040516020018083805460018160011615610100020316600290048015612a585780601f10612a36576101008083540402835291820191612a58565b820191906000526020600020905b815481529060010190602001808311612a44575b505082805460018160011615610100020316600290048015612ab15780601f10612a8f576101008083540402835291820191612ab1565b820191906000526020600020905b815481529060010190602001808311612a9d575b5050925050506040516020818303038152906040529150600b601160008681526020019081526020016000206040516020018083805460018160011615610100020316600290048015612b3b5780601f10612b19576101008083540402835291820191612b3b565b820191906000526020600020905b815481529060010190602001808311612b27575b505082805460018160011615610100020316600290048015612b945780601f10612b72576101008083540402835291820191612b94565b820191906000526020600020905b815481529060010190602001808311612b80575b50509250505060405160208183030381529060405290509193909250565b612bba613bba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000612c68613bba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612d15613bba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915060156000848152602001908152602001600020549050915091565b612db56127fc565b612e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612e7c612e76613bba565b83613bc2565b612ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d306031913960400191505060405180910390fd5b612edd84848484613f1f565b50505050565b612eeb6127fc565b612f5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c9080519060200190612f73929190614ae1565b5050565b6060600c612f8b612f86613f91565b613f99565b612f948461421a565b6040516020018084805460018160011615610100020316600290048015612ff25780601f10612fd0576101008083540402835291820191612ff2565b820191906000526020600020905b815481529060010190602001808311612fde575b505083805190602001908083835b602083106130235780518252602082019150602081019050602083039250613000565b6001836020036101000a038019825116818451168082178552505050505050905001807f2669643d0000000000000000000000000000000000000000000000000000000081525060040182805190602001908083835b6020831061309c5780518252602082019150602081019050602083039250613079565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61319b6127fc565b61320d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61321681614347565b50565b6132216127fc565b613293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600a90805190602001906132a9929190614ae1565b5080600b90805190602001906132c0929190614ae1565b505050565b6132cd6127fc565b61333f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e66fcda86040518163ffffffff1660e01b815260040160206040518083038186803b1580156133a957600080fd5b505afa1580156133bd573d6000803e3d6000fd5b505050506040513d60208110156133d357600080fd5b810190808051906020019092919050505090508034146133f257600080fd5b734c7bedfa26c744e6bd61cbdf86f3fc4a76dca07373ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561344c573d6000803e3d6000fd5b506000600190505b838160ff1611613a9c576001600954016009819055508b600f600060095481526020019081526020016000209080519060200190613493929190614ae1565b508a60106000600954815260200190815260200160002090805190602001906134bd929190614ae1565b508960116000600954815260200190815260200160002090805190602001906134e7929190614ae1565b50886013600060095481526020019081526020016000209080519060200190613511929190614ae1565b5087601260006009548152602001908152602001600020908051906020019061353b929190614ae1565b50866014600060095481526020019081526020016000209080519060200190613565929190614ae1565b5085601960006009548152602001908152602001600020908051906020019061358f929190614ae1565b5084601560006009548152602001908152602001600020819055508060ff1660166000600954815260200190815260200160002081905550836017600060095481526020019081526020016000208190555082601860006009548152602001908152602001600020908051906020019061360a929190614ae1565b506000600954905061363e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261448d565b7fb595052542148b2bf1b1e55e14a41579ae9163be75cff6d179f3e96c2bbf4c7f6009548b8b8b868a604051808781526020018060200180602001806020018660ff168152602001858152602001848103845289818151815260200191508051906020019080838360005b838110156136c45780820151818401526020810190506136a9565b50505050905090810190601f1680156136f15780820380516001836020036101000a031916815260200191505b50848103835288818151815260200191508051906020019080838360005b8381101561372a57808201518184015260208101905061370f565b50505050905090810190601f1680156137575780820380516001836020036101000a031916815260200191505b50848103825287818151815260200191508051906020019080838360005b83811015613790578082015181840152602081019050613775565b50505050905090810190601f1680156137bd5780820380516001836020036101000a031916815260200191505b50995050505050505050505060405180910390a17f90e6b4da472f8ec07306fc53fed35e13564cad5724e516216889b889b331dbae6009548886604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015613841578082015181840152602081019050613826565b50505050905090810190601f16801561386e5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156138a757808201518184015260208101905061388c565b50505050905090810190601f1680156138d45780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a17f554b8ec88e9796df3410a6b1e9233856c2613d4b93eb5a37e34224567d8499696009548e8e604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015613954578082015181840152602081019050613939565b50505050905090810190601f1680156139815780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156139ba57808201518184015260208101905061399f565b50505050905090810190601f1680156139e75780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a17f423231a1c91c63d9ab32b93c11c2235d0be62c1f5a0906840e38f2685f2cf92860095487600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a1508080600101915050613454565b505050505050505050505050565b600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613b405780601f10613b1557610100808354040283529160200191613b40565b820191906000526020600020905b815481529060010190602001808311613b2357829003601f168201915b505050505081565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b6000613bcd82613b48565b613c22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614c03602c913960400191505060405180910390fd5b6000613c2d83612456565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613c9c57508373ffffffffffffffffffffffffffffffffffffffff16613c8484611ae2565b73ffffffffffffffffffffffffffffffffffffffff16145b80613cad5750613cac81856130d9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613cd682612456565b73ffffffffffffffffffffffffffffffffffffffff1614613d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614ce66029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614bdf6024913960400191505060405180910390fd5b613dd1816146a5565b613e18600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614763565b613e5f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614786565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b613f2a848484613cb6565b613f368484848461479c565b613f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614b876032913960400191505060405180910390fd5b50505050565b600030905090565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060606040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506060602a6040519080825280601f01601f1916602001820160405280156140295781602001600182028038833980820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061405a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106140b757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060008090505b601481101561420e5782600485600c84016020811061410757fe5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff168151811061413f57fe5b602001015160f81c60f81b82600283026002018151811061415c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c8401602081106141a057fe5b1a60f81b1660f81c60ff16815181106141b557fe5b602001015160f81c60f81b8260028302600301815181106141d257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506140ec565b50809350505050919050565b60606000821415614262576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614342565b600082905060005b6000821461428c578080600101915050600a828161428457fe5b04915061426a565b6060816040519080825280601f01601f1916602001820160405280156142c15781602001600182028038833980820191505090505b50905060006001830390505b6000861461433a57600a86816142df57fe5b0660300160f81b828280600190039350815181106142f957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161433257fe5b0495506142cd565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156143cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614bb96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61453981613b48565b156145ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550614645600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614786565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146147605760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61477b6001826000015461498c90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b60006147bd8473ffffffffffffffffffffffffffffffffffffffff166149d6565b6147ca5760019050614984565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a026147f0613bba565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156148ac578082015181840152602081019050614891565b50505050905090810190601f1680156148d95780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156148fb57600080fd5b505af115801561490f573d6000803e3d6000fd5b505050506040513d602081101561492557600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60006149ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614a21565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b8214158015614a185750808214155b92505050919050565b6000838311158290614ace576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a93578082015181840152602081019050614a78565b50505050905090810190601f168015614ac05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614b2257805160ff1916838001178555614b50565b82800160010185558215614b50579182015b82811115614b4f578251825591602001919060010190614b34565b5b509050614b5d9190614b61565b5090565b614b8391905b80821115614b7f576000816000905550600101614b67565b5090565b9056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a7231582092eff0c8c79cdb135c776ae1ea3c1be9c0bbdc7e864c8c2909bb4037191afab964736f6c634300050e0032

Deployed Bytecode Sourcemap

36987:7282:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18250:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18250:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18250:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37291:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37291:32:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35490:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35490:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;35490:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23111:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23111:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23111:204:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22393:425;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22393:425:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22393:425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37168:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37168:37:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;37168:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24794:292;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24794:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24794:292:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38921:680;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38921:680:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38921:680:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38921:680:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38921:680:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38921:680:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38921:680:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38921:680:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25748:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25748:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25748:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39613:332;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39613:332:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39613:332:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39613:332:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39613:332:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39613:332:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21734:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21734:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21734:228:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21297:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21297:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21297:211:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2858:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2858:140:0;;;:::i;:::-;;37212:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37212:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;37212:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37091:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37091:29:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2047:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2047:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2413:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2413:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35690:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35690:89:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;35690:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40186:470;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40186:470:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40186:470:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;40186:470:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;40186:470:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;40186:470:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23616:254;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23616:254:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23616:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39957:217;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39957:217:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39957:217:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40986:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40986:117:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40986:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;26619:272;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26619:272:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;26619:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;26619:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;26619:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;26619:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;26619:272:0;;;;;;;;;;;;;;;:::i;:::-;;40871:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40871:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40871:103:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40871:103:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40871:103:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40871:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;40871:103:0;;;;;;;;;;;;;;;:::i;:::-;;43027:212;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43027:212:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43027:212:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43027:212:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24200:147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24200:147:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24200:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37250:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37250:34:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3153:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3153:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3153:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;40668:195;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40668:195:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40668:195:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40668:195:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40668:195:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40668:195:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;40668:195:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40668:195:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40668:195:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40668:195:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;40668:195:0;;;;;;;;;;;;;;;:::i;:::-;;41236:1774;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;41236:1774:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41236:1774:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41236:1774:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41236:1774:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41236:1774:0;;;;;;;;;;;;;;;:::i;:::-;;37127:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37127:34:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;37127:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18250:135;18320:4;18344:20;:33;18365:11;18344:33;;;;;;;;;;;;;;;;;;;;;;;;;;;18337:40;;18250:135;;;:::o;37291:32::-;;;;;;;;;;;;;:::o;35490:85::-;35529:13;35562:5;35555:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35490:85;:::o;23111:204::-;23170:7;23198:16;23206:7;23198;:16::i;:::-;23190:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23283:15;:24;23299:7;23283:24;;;;;;;;;;;;;;;;;;;;;23276:31;;23111:204;;;:::o;22393:425::-;22457:13;22473:16;22481:7;22473;:16::i;:::-;22457:32;;22514:5;22508:11;;:2;:11;;;;22500:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22594:5;22578:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22603:37;22620:5;22627:12;:10;:12::i;:::-;22603:16;:37::i;:::-;22578:62;22570:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22764:2;22737:15;:24;22753:7;22737:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22802:7;22798:2;22782:28;;22791:5;22782:28;;;;;;;;;;;;22393:425;;;:::o;37168:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24794:292::-;24938:41;24957:12;:10;:12::i;:::-;24971:7;24938:18;:41::i;:::-;24930:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25046:32;25060:4;25066:2;25070:7;25046:13;:32::i;:::-;24794:292;;;:::o;38921:680::-;38984:30;39016:33;39051:28;39081:26;39109:28;39139:25;39166;39223:19;:28;39243:7;39223:28;;;;;;;;;;;39204:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39284:22;:31;39307:7;39284:31;;;;;;;;;;;39262:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39343:17;:26;39361:7;39343:26;;;;;;;;;;;39326:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39395:15;:24;39411:7;39395:24;;;;;;;;;;;39380:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39447:17;:26;39465:7;39447:26;;;;;;;;;;;39430:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39504:20;:29;39525:7;39504:29;;;;;;;;;;;;39484:49;;39564:20;:29;39585:7;39564:29;;;;;;;;;;;;39544:49;;38921:680;;;;;;;;;:::o;25748:134::-;25835:39;25852:4;25858:2;25862:7;25835:39;;;;;;;;;;;;:16;:39::i;:::-;25748:134;;;:::o;39613:332::-;39682:28;39712:26;39740:31;39801:17;:26;39819:7;39801:26;;;;;;;;;;;39784:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39853:15;:24;39869:7;39853:24;;;;;;;;;;;39838:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39908:20;:29;39929:7;39908:29;;;;;;;;;;;39888:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39613:332;;;;;:::o;21734:228::-;21789:7;21809:13;21825:11;:20;21837:7;21825:20;;;;;;;;;;;;;;;;;;;;;21809:36;;21881:1;21864:19;;:5;:19;;;;21856:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21949:5;21942:12;;;21734:228;;;:::o;21297:211::-;21352:7;21397:1;21380:19;;:5;:19;;;;21372:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21466:34;:17;:24;21484:5;21466:24;;;;;;;;;;;;;;;:32;:34::i;:::-;21459:41;;21297:211;;;:::o;2858:140::-;2259:9;:7;:9::i;:::-;2251:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2957:1;2920:40;;2941:6;;;;;;;;;;;2920:40;;;;;;;;;;;;2988:1;2971:6;;:19;;;;;;;;;;;;;;;;;;2858:140::o;37212:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37091:29::-;;;;:::o;2047:79::-;2085:7;2112:6;;;;;;;;;;;2105:13;;2047:79;:::o;2413:94::-;2453:4;2493:6;;;;;;;;;;;2477:22;;:12;:10;:12::i;:::-;:22;;;2470:29;;2413:94;:::o;35690:89::-;35731:13;35764:7;35757:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35690:89;:::o;40186:470::-;40246:25;40273:28;40303:26;40380:20;40402:19;:28;40422:7;40402:28;;;;;;;;;;;40363:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;40363:68:0;;;40342:90;;40484:23;40509:22;:31;40532:7;40509:31;;;;;;;;;;;40467:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;40467:74:0;;;40443:99;;40592:23;40617:20;:29;40638:7;40617:29;;;;;;;;;;;40575:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;40575:72:0;;;40553:95;;40186:470;;;;;:::o;23616:254::-;23702:12;:10;:12::i;:::-;23696:18;;:2;:18;;;;23688:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23796:8;23757:18;:32;23776:12;:10;:12::i;:::-;23757:32;;;;;;;;;;;;;;;:36;23790:2;23757:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;23849:2;23820:42;;23835:12;:10;:12::i;:::-;23820:42;;;23853:8;23820:42;;;;;;;;;;;;;;;;;;;;;;23616:254;;:::o;39957:217::-;40019:21;40042:22;40093:19;;;;;;;;;;;40077:35;;40140:17;:26;40158:7;40140:26;;;;;;;;;;;;40123:43;;39957:217;;;:::o;40986:117::-;2259:9;:7;:9::i;:::-;2251:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41085:10;41063:19;;:32;;;;;;;;;;;;;;;;;;40986:117;:::o;26619:272::-;26734:41;26753:12;:10;:12::i;:::-;26767:7;26734:18;:41::i;:::-;26726:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26840:43;26858:4;26864:2;26868:7;26877:5;26840:17;:43::i;:::-;26619:272;;;;:::o;40871:103::-;2259:9;:7;:9::i;:::-;2251:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40960:6;40940:17;:26;;;;;;;;;;;;:::i;:::-;;40871:103;:::o;43027:212::-;43085:13;43142:17;43161:34;43177:17;:15;:17::i;:::-;43161:15;:34::i;:::-;43205:24;43221:7;43205:15;:24::i;:::-;43125:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;43125:105:0;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;43125:105:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;43125:105:0;;;43111:120;;43027:212;;;:::o;24200:147::-;24280:4;24304:18;:25;24323:5;24304:25;;;;;;;;;;;;;;;:35;24330:8;24304:35;;;;;;;;;;;;;;;;;;;;;;;;;24297:42;;24200:147;;;;:::o;37250:34::-;;;;;;;;;;;;;:::o;3153:109::-;2259:9;:7;:9::i;:::-;2251:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3226:28;3245:8;3226:18;:28::i;:::-;3153:109;:::o;40668:195::-;2259:9;:7;:9::i;:::-;2251:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40795:10;40772:20;:33;;;;;;;;;;;;:::i;:::-;;40842:13;40816:23;:39;;;;;;;;;;;;:::i;:::-;;40668:195;;:::o;41236:1774::-;2259:9;:7;:9::i;:::-;2251:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41545:18;41581:17;;;;;;;;;;;41566:48;;;:50;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41566:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41566:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41566:50:0;;;;;;;;;;;;;;;;41545:71;;41650:13;41637:9;:26;41629:35;;;;;;41683:42;41675:60;;:71;41736:9;41675:71;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41675:71:0;41772:7;41782:1;41772:11;;41767:1236;41790:8;41785:1;:13;;;41767:1236;;41855:1;41838:14;;:18;41821:14;:35;;;;41915:12;41877:19;:35;41897:14;;41877:35;;;;;;;;;;;:50;;;;;;;;;;;;:::i;:::-;;41983:15;41942:22;:38;41965:14;;41942:38;;;;;;;;;;;:56;;;;;;;;;;;;:::i;:::-;;42052:13;42013:20;:36;42034:14;;42013:36;;;;;;;;;;;:52;;;;;;;;;;;;:::i;:::-;;42116:10;42080:17;:33;42098:14;;42080:33;;;;;;;;;;;:46;;;;;;;;;;;;:::i;:::-;;42176:8;42142:15;:31;42158:14;;42142:31;;;;;;;;;;;:42;;;;;;;;;;;;:::i;:::-;;42235:10;42199:17;:33;42217:14;;42199:33;;;;;;;;;;;:46;;;;;;;;;;;;:::i;:::-;;42300:10;42264:17;:33;42282:14;;42264:33;;;;;;;;;;;:46;;;;;;;;;;;;:::i;:::-;;42361:10;42325:17;:33;42343:14;;42325:33;;;;;;;;;;;:46;;;;42425:1;42386:40;;:20;:36;42407:14;;42386:36;;;;;;;;;;;:40;;;;42480:8;42441:20;:36;42462:14;;42441:36;;;;;;;;;;;:47;;;;42537:8;42503:15;:31;42519:14;;42503:31;;;;;;;;;;;:42;;;;;;;;;;;;:::i;:::-;;42566:15;42584:14;;42566:32;;42613:35;42619:19;;;;;;;;;;;42640:7;42613:5;:35::i;:::-;42674:77;42689:14;;42705:10;42717:8;42727:10;42739:1;42742:8;42674:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42674:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42674:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42674:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42771:52;42786:14;;42802:10;42814:8;42771:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42771:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42771:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42843:62;42859:14;;42875:12;42889:15;42843:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42843:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42843:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42925:66;42943:14;;42959:10;42971:19;;;;;;;;;;;42925:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41767:1236;41800:3;;;;;;;41767:1236;;;;2316:1;41236:1774;;;;;;;;;;:::o;37127:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28084:155::-;28141:4;28158:13;28174:11;:20;28186:7;28174:20;;;;;;;;;;;;;;;;;;;;;28158:36;;28229:1;28212:19;;:5;:19;;;;28205:26;;;28084:155;;;:::o;808:98::-;853:15;888:10;881:17;;808:98;:::o;28609:333::-;28694:4;28719:16;28727:7;28719;:16::i;:::-;28711:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28795:13;28811:16;28819:7;28811;:16::i;:::-;28795:32;;28857:5;28846:16;;:7;:16;;;:51;;;;28890:7;28866:31;;:20;28878:7;28866:11;:20::i;:::-;:31;;;28846:51;:87;;;;28901:32;28918:5;28925:7;28901:16;:32::i;:::-;28846:87;28838:96;;;28609:333;;;;:::o;32305:459::-;32419:4;32399:24;;:16;32407:7;32399;:16::i;:::-;:24;;;32391:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32502:1;32488:16;;:2;:16;;;;32480:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32558:23;32573:7;32558:14;:23::i;:::-;32594:35;:17;:23;32612:4;32594:23;;;;;;;;;;;;;;;:33;:35::i;:::-;32640:33;:17;:21;32658:2;32640:21;;;;;;;;;;;;;;;:31;:33::i;:::-;32709:2;32686:11;:20;32698:7;32686:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;32748:7;32744:2;32729:27;;32738:4;32729:27;;;;;;;;;;;;32305:459;;;:::o;17019:114::-;17084:7;17111;:14;;;17104:21;;17019:114;;;:::o;27610:272::-;27720:32;27734:4;27740:2;27744:7;27720:13;:32::i;:::-;27771:48;27794:4;27800:2;27804:7;27813:5;27771:22;:48::i;:::-;27763:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27610:272;;;;:::o;41115:113::-;41165:17;41215:4;41195:25;;41115:113;:::o;43767:491::-;43829:13;43855;43887:5;43879:14;;43871:23;;43855:39;;43905:21;:42;;;;;;;;;;;;;;;;;;;43960:16;43989:2;43979:13;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;43979:13:0;;;;43960:32;;44003:12;:3;44007:1;44003:6;;;;;;;;;;;:12;;;;;;;;;;;44026;:3;44030:1;44026:6;;;;;;;;;;;:12;;;;;;;;;;;44054:9;44066:1;44054:13;;44049:173;44073:2;44069:1;:6;44049:173;;;44110:8;44142:1;44125:5;44135:2;44131:1;:6;44125:13;;;;;;;;;;:18;;;;;44119:25;;44110:35;;;;;;;;;;;;;;;;;;44097:3;44105:1;44103;:3;44101:1;:5;44097:10;;;;;;;;;;;:48;;;;;;;;;;;44173:8;44204:4;44188:20;;:5;44198:2;44194:1;:6;44188:13;;;;;;;;;;:20;44182:27;;44173:37;;;;;;;;;;;;;;;;;;44160:3;44168:1;44166;:3;44164:1;:5;44160:10;;;;;;;;;;;:50;;;;;;;;;;;44077:3;;;;;;;44049:173;;;;44246:3;44232:18;;;;;43767:491;;;:::o;43258:498::-;43315:13;43358:1;43352:2;:7;43348:46;;;43372:10;;;;;;;;;;;;;;;;;;;;;43348:46;43414:6;43423:2;43414:11;;43436:8;43463:61;43475:1;43470;:6;43463:61;;43489:5;;;;;;;43510:2;43505:7;;;;;;;;;43463:61;;;43544:17;43574:3;43564:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;43564:14:0;;;;43544:34;;43589:6;43604:1;43598:3;:7;43589:16;;43624:95;43637:1;43631:2;:7;43624:95;;43684:2;43679;:7;;;;;;43674:2;:12;43663:25;;43651:4;43656:3;;;;;;;43651:9;;;;;;;;;;;:37;;;;;;;;;;;43705:2;43699:8;;;;;;;;;43624:95;;;43743:4;43729:19;;;;;;43258:498;;;;:::o;3368:229::-;3462:1;3442:22;;:8;:22;;;;3434:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3552:8;3523:38;;3544:6;;;;;;;;;;;3523:38;;;;;;;;;;;;3581:8;3572:6;;:17;;;;;;;;;;;;;;;;;;3368:229;:::o;30694:335::-;30780:1;30766:16;;:2;:16;;;;30758:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30839:16;30847:7;30839;:16::i;:::-;30838:17;30830:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30924:2;30901:11;:20;30913:7;30901:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;30937:33;:17;:21;30955:2;30937:21;;;;;;;;;;;;;;;:31;:33::i;:::-;31013:7;31009:2;30988:33;;31005:1;30988:33;;;;;;;;;;;;30694:335;;:::o;33892:175::-;33992:1;33956:38;;:15;:24;33972:7;33956:24;;;;;;;;;;;;;;;;;;;;;:38;;;33952:108;;34046:1;34011:15;:24;34027:7;34011:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;33952:108;33892:175;:::o;17240:110::-;17321:21;17340:1;17321:7;:14;;;:18;;:21;;;;:::i;:::-;17304:7;:14;;:38;;;;17240:110;:::o;17141:91::-;17223:1;17205:7;:14;;;:19;;;;;;;;;;;17141:91;:::o;33366:358::-;33488:4;33515:15;:2;:13;;;:15::i;:::-;33510:60;;33554:4;33547:11;;;;33510:60;33582:13;33614:2;33598:36;;;33635:12;:10;:12::i;:::-;33649:4;33655:7;33664:5;33598:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;33598:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33598:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33598:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33598:72:0;;;;;;;;;;;;;;;;33582:88;;19498:10;33699:16;;33689:26;;;:6;:26;;;;33681:35;;;33366:358;;;;;;;:::o;8793:136::-;8851:7;8878:43;8882:1;8885;8878:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8871:50;;8793:136;;;;:::o;13481:810::-;13541:4;13994:16;14021:19;14043:66;14021:88;;;;14212:7;14200:20;14188:32;;14252:3;14240:15;;:8;:15;;:42;;;;;14271:11;14259:8;:23;;14240:42;14232:51;;;;13481:810;;;:::o;9266:192::-;9352:7;9385:1;9380;:6;;9388:12;9372:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9372:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9412:9;9428:1;9424;:5;9412:17;;9449:1;9442:8;;;9266:192;;;;;:::o;36987:7282::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://92eff0c8c79cdb135c776ae1ea3c1be9c0bbdc7e864c8c2909bb4037191afab9
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.