ETH Price: $3,501.87 (+0.07%)
Gas: 5 Gwei

Token

MafiaPunksNFT (MPF)
 

Overview

Max Total Supply

581 MPF

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fourmeka.eth
Balance
3 MPF
0x1C6F6C1bE333E6b93F53E5459594419359a590fA
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MafiaPunks

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-16
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-16
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-15
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/Bear.sol



pragma solidity ^0.8.0;

contract MafiaPunks is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://QmRLYBUgzqXgH5uaVsijhozAHQNaLBSmnZBcsqWHK2ZK5s/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.015 ether;
  uint256 public freeSupply = 500;
  uint256 public maxSupply = 2500;
  uint256 public reservedSupply = 65;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = true;
  bool public revealed = true;
  bool public reserveMinted = false;

  constructor() ERC721("MafiaPunksNFT", "MPF") {
    setHiddenMetadataUri("");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    if (supply.current() > freeSupply) {
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }

    _mintLoop(msg.sender, _mintAmount);
  }

  function mintReserved() public payable onlyOwner {
    require(!reserveMinted, "Reserved NFTs have already been minted");
    _mintLoop(msg.sender, reservedSupply);
    reserveMinted = true;
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setFreeSupply(uint256 _freeSupply) public onlyOwner {
    freeSupply = _freeSupply;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintReserved","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260366080818152906200298260a0398051620000299160089160209091019062000219565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000589160099162000219565b5066354a6ba7a18000600b556101f4600c556109c4600d556041600e556005600f556010805462ff00001961ff001960ff199092166001179190911661010017169055348015620000a857600080fd5b50604080518082018252600d81526c1358599a58541d5b9adcd39195609a1b60208083019182528351808501909452600384526226a82360e91b908401528151919291620000f99160009162000219565b5080516200010f90600190602084019062000219565b5050506200012c620001266200014c60201b60201c565b62000150565b6040805160208101909152600081526200014690620001a2565b62000331565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ac6200014c565b6001600160a01b0316620001bf6200020a565b6001600160a01b031614620001f15760405162461bcd60e51b8152600401620001e890620002bf565b60405180910390fd5b80516200020690600a90602084019062000219565b5050565b6006546001600160a01b031690565b8280546200022790620002f4565b90600052602060002090601f0160209004810192826200024b576000855562000296565b82601f106200026657805160ff191683800117855562000296565b8280016001018555821562000296579182015b828111156200029657825182559160200191906001019062000279565b50620002a4929150620002a8565b5090565b5b80821115620002a45760008155600101620002a9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200030957607f821691505b602082108114156200032b57634e487b7160e01b600052602260045260246000fd5b50919050565b61264180620003416000396000f3fe6080604052600436106102465760003560e01c806362b99ad411610139578063a45ba8e7116100b6578063e0a808531161007a578063e0a808531461062f578063e985e9c51461064f578063ec8c89041461066f578063efbd73f414610677578063f2fde38b14610697578063f676308a146106b757610246565b8063a45ba8e7146105a5578063b071401b146105ba578063b88d4fde146105da578063c87b56dd146105fa578063d5abeb011461061a57610246565b80638da5cb5b116100fd5780638da5cb5b1461053357806394354fd01461054857806395d89b411461055d578063a0712d6814610572578063a22cb4651461058557610246565b806362b99ad4146104a95780636352211e146104be57806370a08231146104de578063715018a6146104fe5780637ec4a6591461051357610246565b80633ccfd60b116101c75780634c81433f1161018b5780634c81433f146104355780634fdd43cb1461044a578063518302271461046a5780635503a0e81461047f5780635c975abb1461049457610246565b80633ccfd60b1461039e57806342842e0e146103b3578063438b6300146103d357806344a0d68a1461040057806344d19d2b1461042057610246565b806316ba10e01161020e57806316ba10e01461031457806316c38b3c1461033457806318160ddd1461035457806323b872dd1461036957806324a6ab0c1461038957610246565b806301ffc9a71461024b57806306fdde0314610281578063081812fc146102a3578063095ea7b3146102d057806313faede6146102f2575b600080fd5b34801561025757600080fd5b5061026b610266366004611cde565b6106d7565b6040516102789190611f1c565b60405180910390f35b34801561028d57600080fd5b5061029661071f565b6040516102789190611f27565b3480156102af57600080fd5b506102c36102be366004611d5c565b6107b1565b6040516102789190611e87565b3480156102dc57600080fd5b506102f06102eb366004611c9b565b6107fd565b005b3480156102fe57600080fd5b50610307610895565b60405161027891906124a6565b34801561032057600080fd5b506102f061032f366004611d16565b61089b565b34801561034057600080fd5b506102f061034f366004611cc4565b6108f1565b34801561036057600080fd5b50610307610943565b34801561037557600080fd5b506102f0610384366004611bbe565b610954565b34801561039557600080fd5b5061030761098c565b3480156103aa57600080fd5b506102f0610992565b3480156103bf57600080fd5b506102f06103ce366004611bbe565b610a44565b3480156103df57600080fd5b506103f36103ee366004611b72565b610a5f565b6040516102789190611ed8565b34801561040c57600080fd5b506102f061041b366004611d5c565b610b5c565b34801561042c57600080fd5b50610307610ba0565b34801561044157600080fd5b5061026b610ba6565b34801561045657600080fd5b506102f0610465366004611d16565b610bb5565b34801561047657600080fd5b5061026b610c07565b34801561048b57600080fd5b50610296610c15565b3480156104a057600080fd5b5061026b610ca3565b3480156104b557600080fd5b50610296610cac565b3480156104ca57600080fd5b506102c36104d9366004611d5c565b610cb9565b3480156104ea57600080fd5b506103076104f9366004611b72565b610cee565b34801561050a57600080fd5b506102f0610d32565b34801561051f57600080fd5b506102f061052e366004611d16565b610d7d565b34801561053f57600080fd5b506102c3610dcf565b34801561055457600080fd5b50610307610dde565b34801561056957600080fd5b50610296610de4565b6102f0610580366004611d5c565b610df3565b34801561059157600080fd5b506102f06105a0366004611c72565b610ec5565b3480156105b157600080fd5b50610296610ed7565b3480156105c657600080fd5b506102f06105d5366004611d5c565b610ee4565b3480156105e657600080fd5b506102f06105f5366004611bf9565b610f28565b34801561060657600080fd5b50610296610615366004611d5c565b610f67565b34801561062657600080fd5b5061030761108e565b34801561063b57600080fd5b506102f061064a366004611cc4565b611094565b34801561065b57600080fd5b5061026b61066a366004611b8c565b6110ed565b6102f061111b565b34801561068357600080fd5b506102f0610692366004611d74565b6111a2565b3480156106a357600080fd5b506102f06106b2366004611b72565b611250565b3480156106c357600080fd5b506102f06106d2366004611d5c565b6112be565b60006001600160e01b031982166380ac58cd60e01b148061070857506001600160e01b03198216635b5e139f60e01b145b80610717575061071782611302565b90505b919050565b60606000805461072e90612549565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90612549565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b60006107bc8261131b565b6107e15760405162461bcd60e51b81526004016107d890612223565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080882610cb9565b9050806001600160a01b0316836001600160a01b0316141561083c5760405162461bcd60e51b81526004016107d890612373565b806001600160a01b031661084e611338565b6001600160a01b0316148061086a575061086a8161066a611338565b6108865760405162461bcd60e51b81526004016107d8906120fe565b610890838361133c565b505050565b600b5481565b6108a3611338565b6001600160a01b03166108b4610dcf565b6001600160a01b0316146108da5760405162461bcd60e51b81526004016107d89061226f565b80516108ed906009906020840190611a42565b5050565b6108f9611338565b6001600160a01b031661090a610dcf565b6001600160a01b0316146109305760405162461bcd60e51b81526004016107d89061226f565b6010805460ff1916911515919091179055565b600061094f60076113aa565b905090565b61096561095f611338565b826113ae565b6109815760405162461bcd60e51b81526004016107d890612428565b610890838383611433565b600c5481565b61099a611338565b6001600160a01b03166109ab610dcf565b6001600160a01b0316146109d15760405162461bcd60e51b81526004016107d89061226f565b60006109db610dcf565b6001600160a01b0316476040516109f190611e84565b60006040518083038185875af1925050503d8060008114610a2e576040519150601f19603f3d011682016040523d82523d6000602084013e610a33565b606091505b5050905080610a4157600080fd5b50565b61089083838360405180602001604052806000815250610f28565b60606000610a6c83610cee565b905060008167ffffffffffffffff811115610a9757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ac0578160200160208202803683370190505b509050600160005b8381108015610ad95750600d548211155b15610b52576000610ae983610cb9565b9050866001600160a01b0316816001600160a01b03161415610b3f5782848381518110610b2657634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610b3b81612584565b9250505b82610b4981612584565b93505050610ac8565b5090949350505050565b610b64611338565b6001600160a01b0316610b75610dcf565b6001600160a01b031614610b9b5760405162461bcd60e51b81526004016107d89061226f565b600b55565b600e5481565b60105462010000900460ff1681565b610bbd611338565b6001600160a01b0316610bce610dcf565b6001600160a01b031614610bf45760405162461bcd60e51b81526004016107d89061226f565b80516108ed90600a906020840190611a42565b601054610100900460ff1681565b60098054610c2290612549565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4e90612549565b8015610c9b5780601f10610c7057610100808354040283529160200191610c9b565b820191906000526020600020905b815481529060010190602001808311610c7e57829003601f168201915b505050505081565b60105460ff1681565b60088054610c2290612549565b6000818152600260205260408120546001600160a01b0316806107175760405162461bcd60e51b81526004016107d8906121a5565b60006001600160a01b038216610d165760405162461bcd60e51b81526004016107d89061215b565b506001600160a01b031660009081526003602052604090205490565b610d3a611338565b6001600160a01b0316610d4b610dcf565b6001600160a01b031614610d715760405162461bcd60e51b81526004016107d89061226f565b610d7b6000611560565b565b610d85611338565b6001600160a01b0316610d96610dcf565b6001600160a01b031614610dbc5760405162461bcd60e51b81526004016107d89061226f565b80516108ed906008906020840190611a42565b6006546001600160a01b031690565b600f5481565b60606001805461072e90612549565b80600081118015610e065750600f548111155b610e225760405162461bcd60e51b81526004016107d890612009565b600d5481610e3060076113aa565b610e3a91906124bb565b1115610e585760405162461bcd60e51b81526004016107d8906123b4565b60105460ff1615610e7b5760405162461bcd60e51b81526004016107d8906122a4565b600c54610e8860076113aa565b1115610ebb5781600b54610e9c91906124e7565b341015610ebb5760405162461bcd60e51b81526004016107d890612479565b6108ed33836115b2565b6108ed610ed0611338565b83836115ec565b600a8054610c2290612549565b610eec611338565b6001600160a01b0316610efd610dcf565b6001600160a01b031614610f235760405162461bcd60e51b81526004016107d89061226f565b600f55565b610f39610f33611338565b836113ae565b610f555760405162461bcd60e51b81526004016107d890612428565b610f618484848461168f565b50505050565b6060610f728261131b565b610f8e5760405162461bcd60e51b81526004016107d890612324565b601054610100900460ff1661102f57600a8054610faa90612549565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd690612549565b80156110235780601f10610ff857610100808354040283529160200191611023565b820191906000526020600020905b81548152906001019060200180831161100657829003601f168201915b5050505050905061071a565b60006110396116c2565b905060008151116110595760405180602001604052806000815250611087565b80611063846116d1565b600960405160200161107793929190611dc2565b6040516020818303038152906040525b9392505050565b600d5481565b61109c611338565b6001600160a01b03166110ad610dcf565b6001600160a01b0316146110d35760405162461bcd60e51b81526004016107d89061226f565b601080549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611123611338565b6001600160a01b0316611134610dcf565b6001600160a01b03161461115a5760405162461bcd60e51b81526004016107d89061226f565b60105462010000900460ff16156111835760405162461bcd60e51b81526004016107d8906123e2565b61118f33600e546115b2565b6010805462ff0000191662010000179055565b816000811180156111b55750600f548111155b6111d15760405162461bcd60e51b81526004016107d890612009565b600d54816111df60076113aa565b6111e991906124bb565b11156112075760405162461bcd60e51b81526004016107d8906123b4565b61120f611338565b6001600160a01b0316611220610dcf565b6001600160a01b0316146112465760405162461bcd60e51b81526004016107d89061226f565b61089082846115b2565b611258611338565b6001600160a01b0316611269610dcf565b6001600160a01b03161461128f5760405162461bcd60e51b81526004016107d89061226f565b6001600160a01b0381166112b55760405162461bcd60e51b81526004016107d890611f8c565b610a4181611560565b6112c6611338565b6001600160a01b03166112d7610dcf565b6001600160a01b0316146112fd5760405162461bcd60e51b81526004016107d89061226f565b600c55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137182610cb9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60006113b98261131b565b6113d55760405162461bcd60e51b81526004016107d8906120b2565b60006113e083610cb9565b9050806001600160a01b0316846001600160a01b0316148061141b5750836001600160a01b0316611410846107b1565b6001600160a01b0316145b8061142b575061142b81856110ed565b949350505050565b826001600160a01b031661144682610cb9565b6001600160a01b03161461146c5760405162461bcd60e51b81526004016107d8906122db565b6001600160a01b0382166114925760405162461bcd60e51b81526004016107d890612037565b61149d838383610890565b6114a860008261133c565b6001600160a01b03831660009081526003602052604081208054600192906114d1908490612506565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ff9084906124bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610890576115c760076117ec565b6115da836115d560076113aa565b6117f5565b806115e481612584565b9150506115b5565b816001600160a01b0316836001600160a01b0316141561161e5760405162461bcd60e51b81526004016107d89061207b565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611682908590611f1c565b60405180910390a3505050565b61169a848484611433565b6116a68484848461180f565b610f615760405162461bcd60e51b81526004016107d890611f3a565b60606008805461072e90612549565b6060816116f657506040805180820190915260018152600360fc1b602082015261071a565b8160005b8115611720578061170a81612584565b91506117199050600a836124d3565b91506116fa565b60008167ffffffffffffffff81111561174957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611773576020820181803683370190505b5090505b841561142b57611788600183612506565b9150611795600a8661259f565b6117a09060306124bb565b60f81b8183815181106117c357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117e5600a866124d3565b9450611777565b80546001019055565b6108ed82826040518060200160405280600081525061192a565b6000611823846001600160a01b031661195d565b1561191f57836001600160a01b031663150b7a0261183f611338565b8786866040518563ffffffff1660e01b81526004016118619493929190611e9b565b602060405180830381600087803b15801561187b57600080fd5b505af19250505080156118ab575060408051601f3d908101601f191682019092526118a891810190611cfa565b60015b611905573d8080156118d9576040519150601f19603f3d011682016040523d82523d6000602084013e6118de565b606091505b5080516118fd5760405162461bcd60e51b81526004016107d890611f3a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061142b565b506001949350505050565b6119348383611963565b611941600084848461180f565b6108905760405162461bcd60e51b81526004016107d890611f3a565b3b151590565b6001600160a01b0382166119895760405162461bcd60e51b81526004016107d8906121ee565b6119928161131b565b156119af5760405162461bcd60e51b81526004016107d890611fd2565b6119bb60008383610890565b6001600160a01b03821660009081526003602052604081208054600192906119e49084906124bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a4e90612549565b90600052602060002090601f016020900481019282611a705760008555611ab6565b82601f10611a8957805160ff1916838001178555611ab6565b82800160010185558215611ab6579182015b82811115611ab6578251825591602001919060010190611a9b565b50611ac2929150611ac6565b5090565b5b80821115611ac25760008155600101611ac7565b600067ffffffffffffffff80841115611af657611af66125df565b604051601f8501601f191681016020018281118282101715611b1a57611b1a6125df565b604052848152915081838501861015611b3257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461071a57600080fd5b8035801515811461071a57600080fd5b600060208284031215611b83578081fd5b61108782611b4b565b60008060408385031215611b9e578081fd5b611ba783611b4b565b9150611bb560208401611b4b565b90509250929050565b600080600060608486031215611bd2578081fd5b611bdb84611b4b565b9250611be960208501611b4b565b9150604084013590509250925092565b60008060008060808587031215611c0e578081fd5b611c1785611b4b565b9350611c2560208601611b4b565b925060408501359150606085013567ffffffffffffffff811115611c47578182fd5b8501601f81018713611c57578182fd5b611c6687823560208401611adb565b91505092959194509250565b60008060408385031215611c84578182fd5b611c8d83611b4b565b9150611bb560208401611b62565b60008060408385031215611cad578182fd5b611cb683611b4b565b946020939093013593505050565b600060208284031215611cd5578081fd5b61108782611b62565b600060208284031215611cef578081fd5b8135611087816125f5565b600060208284031215611d0b578081fd5b8151611087816125f5565b600060208284031215611d27578081fd5b813567ffffffffffffffff811115611d3d578182fd5b8201601f81018413611d4d578182fd5b61142b84823560208401611adb565b600060208284031215611d6d578081fd5b5035919050565b60008060408385031215611d86578182fd5b82359150611bb560208401611b4b565b60008151808452611dae81602086016020860161251d565b601f01601f19169290920160200192915050565b600084516020611dd58285838a0161251d565b855191840191611de88184848a0161251d565b8554920191839060028104600180831680611e0457607f831692505b858310811415611e2257634e487b7160e01b88526022600452602488fd5b808015611e365760018114611e4757611e73565b60ff19851688528388019550611e73565b611e508b6124af565b895b85811015611e6b5781548a820152908401908801611e52565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ece90830184611d96565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1057835183529284019291840191600101611ef4565b50909695505050505050565b901515815260200190565b6000602082526110876020830184611d96565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526026908201527f5265736572766564204e465473206861766520616c7265616479206265656e206040820152651b5a5b9d195960d21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b90815260200190565b60009081526020902090565b600082198211156124ce576124ce6125b3565b500190565b6000826124e2576124e26125c9565b500490565b6000816000190483118215151615612501576125016125b3565b500290565b600082821015612518576125186125b3565b500390565b60005b83811015612538578181015183820152602001612520565b83811115610f615750506000910152565b60028104600182168061255d57607f821691505b6020821081141561257e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612598576125986125b3565b5060010190565b6000826125ae576125ae6125c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a4157600080fdfea26469706673582212205a96b5fadd5d7796cf48dffba98d4201f9ea9581d6353ccab59f79dff517b6e964736f6c63430008000033697066733a2f2f516d524c594255677a715867483575615673696a686f7a4148514e614c42536d6e5a4263737157484b325a4b35732f

Deployed Bytecode

0x6080604052600436106102465760003560e01c806362b99ad411610139578063a45ba8e7116100b6578063e0a808531161007a578063e0a808531461062f578063e985e9c51461064f578063ec8c89041461066f578063efbd73f414610677578063f2fde38b14610697578063f676308a146106b757610246565b8063a45ba8e7146105a5578063b071401b146105ba578063b88d4fde146105da578063c87b56dd146105fa578063d5abeb011461061a57610246565b80638da5cb5b116100fd5780638da5cb5b1461053357806394354fd01461054857806395d89b411461055d578063a0712d6814610572578063a22cb4651461058557610246565b806362b99ad4146104a95780636352211e146104be57806370a08231146104de578063715018a6146104fe5780637ec4a6591461051357610246565b80633ccfd60b116101c75780634c81433f1161018b5780634c81433f146104355780634fdd43cb1461044a578063518302271461046a5780635503a0e81461047f5780635c975abb1461049457610246565b80633ccfd60b1461039e57806342842e0e146103b3578063438b6300146103d357806344a0d68a1461040057806344d19d2b1461042057610246565b806316ba10e01161020e57806316ba10e01461031457806316c38b3c1461033457806318160ddd1461035457806323b872dd1461036957806324a6ab0c1461038957610246565b806301ffc9a71461024b57806306fdde0314610281578063081812fc146102a3578063095ea7b3146102d057806313faede6146102f2575b600080fd5b34801561025757600080fd5b5061026b610266366004611cde565b6106d7565b6040516102789190611f1c565b60405180910390f35b34801561028d57600080fd5b5061029661071f565b6040516102789190611f27565b3480156102af57600080fd5b506102c36102be366004611d5c565b6107b1565b6040516102789190611e87565b3480156102dc57600080fd5b506102f06102eb366004611c9b565b6107fd565b005b3480156102fe57600080fd5b50610307610895565b60405161027891906124a6565b34801561032057600080fd5b506102f061032f366004611d16565b61089b565b34801561034057600080fd5b506102f061034f366004611cc4565b6108f1565b34801561036057600080fd5b50610307610943565b34801561037557600080fd5b506102f0610384366004611bbe565b610954565b34801561039557600080fd5b5061030761098c565b3480156103aa57600080fd5b506102f0610992565b3480156103bf57600080fd5b506102f06103ce366004611bbe565b610a44565b3480156103df57600080fd5b506103f36103ee366004611b72565b610a5f565b6040516102789190611ed8565b34801561040c57600080fd5b506102f061041b366004611d5c565b610b5c565b34801561042c57600080fd5b50610307610ba0565b34801561044157600080fd5b5061026b610ba6565b34801561045657600080fd5b506102f0610465366004611d16565b610bb5565b34801561047657600080fd5b5061026b610c07565b34801561048b57600080fd5b50610296610c15565b3480156104a057600080fd5b5061026b610ca3565b3480156104b557600080fd5b50610296610cac565b3480156104ca57600080fd5b506102c36104d9366004611d5c565b610cb9565b3480156104ea57600080fd5b506103076104f9366004611b72565b610cee565b34801561050a57600080fd5b506102f0610d32565b34801561051f57600080fd5b506102f061052e366004611d16565b610d7d565b34801561053f57600080fd5b506102c3610dcf565b34801561055457600080fd5b50610307610dde565b34801561056957600080fd5b50610296610de4565b6102f0610580366004611d5c565b610df3565b34801561059157600080fd5b506102f06105a0366004611c72565b610ec5565b3480156105b157600080fd5b50610296610ed7565b3480156105c657600080fd5b506102f06105d5366004611d5c565b610ee4565b3480156105e657600080fd5b506102f06105f5366004611bf9565b610f28565b34801561060657600080fd5b50610296610615366004611d5c565b610f67565b34801561062657600080fd5b5061030761108e565b34801561063b57600080fd5b506102f061064a366004611cc4565b611094565b34801561065b57600080fd5b5061026b61066a366004611b8c565b6110ed565b6102f061111b565b34801561068357600080fd5b506102f0610692366004611d74565b6111a2565b3480156106a357600080fd5b506102f06106b2366004611b72565b611250565b3480156106c357600080fd5b506102f06106d2366004611d5c565b6112be565b60006001600160e01b031982166380ac58cd60e01b148061070857506001600160e01b03198216635b5e139f60e01b145b80610717575061071782611302565b90505b919050565b60606000805461072e90612549565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90612549565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b60006107bc8261131b565b6107e15760405162461bcd60e51b81526004016107d890612223565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080882610cb9565b9050806001600160a01b0316836001600160a01b0316141561083c5760405162461bcd60e51b81526004016107d890612373565b806001600160a01b031661084e611338565b6001600160a01b0316148061086a575061086a8161066a611338565b6108865760405162461bcd60e51b81526004016107d8906120fe565b610890838361133c565b505050565b600b5481565b6108a3611338565b6001600160a01b03166108b4610dcf565b6001600160a01b0316146108da5760405162461bcd60e51b81526004016107d89061226f565b80516108ed906009906020840190611a42565b5050565b6108f9611338565b6001600160a01b031661090a610dcf565b6001600160a01b0316146109305760405162461bcd60e51b81526004016107d89061226f565b6010805460ff1916911515919091179055565b600061094f60076113aa565b905090565b61096561095f611338565b826113ae565b6109815760405162461bcd60e51b81526004016107d890612428565b610890838383611433565b600c5481565b61099a611338565b6001600160a01b03166109ab610dcf565b6001600160a01b0316146109d15760405162461bcd60e51b81526004016107d89061226f565b60006109db610dcf565b6001600160a01b0316476040516109f190611e84565b60006040518083038185875af1925050503d8060008114610a2e576040519150601f19603f3d011682016040523d82523d6000602084013e610a33565b606091505b5050905080610a4157600080fd5b50565b61089083838360405180602001604052806000815250610f28565b60606000610a6c83610cee565b905060008167ffffffffffffffff811115610a9757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ac0578160200160208202803683370190505b509050600160005b8381108015610ad95750600d548211155b15610b52576000610ae983610cb9565b9050866001600160a01b0316816001600160a01b03161415610b3f5782848381518110610b2657634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610b3b81612584565b9250505b82610b4981612584565b93505050610ac8565b5090949350505050565b610b64611338565b6001600160a01b0316610b75610dcf565b6001600160a01b031614610b9b5760405162461bcd60e51b81526004016107d89061226f565b600b55565b600e5481565b60105462010000900460ff1681565b610bbd611338565b6001600160a01b0316610bce610dcf565b6001600160a01b031614610bf45760405162461bcd60e51b81526004016107d89061226f565b80516108ed90600a906020840190611a42565b601054610100900460ff1681565b60098054610c2290612549565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4e90612549565b8015610c9b5780601f10610c7057610100808354040283529160200191610c9b565b820191906000526020600020905b815481529060010190602001808311610c7e57829003601f168201915b505050505081565b60105460ff1681565b60088054610c2290612549565b6000818152600260205260408120546001600160a01b0316806107175760405162461bcd60e51b81526004016107d8906121a5565b60006001600160a01b038216610d165760405162461bcd60e51b81526004016107d89061215b565b506001600160a01b031660009081526003602052604090205490565b610d3a611338565b6001600160a01b0316610d4b610dcf565b6001600160a01b031614610d715760405162461bcd60e51b81526004016107d89061226f565b610d7b6000611560565b565b610d85611338565b6001600160a01b0316610d96610dcf565b6001600160a01b031614610dbc5760405162461bcd60e51b81526004016107d89061226f565b80516108ed906008906020840190611a42565b6006546001600160a01b031690565b600f5481565b60606001805461072e90612549565b80600081118015610e065750600f548111155b610e225760405162461bcd60e51b81526004016107d890612009565b600d5481610e3060076113aa565b610e3a91906124bb565b1115610e585760405162461bcd60e51b81526004016107d8906123b4565b60105460ff1615610e7b5760405162461bcd60e51b81526004016107d8906122a4565b600c54610e8860076113aa565b1115610ebb5781600b54610e9c91906124e7565b341015610ebb5760405162461bcd60e51b81526004016107d890612479565b6108ed33836115b2565b6108ed610ed0611338565b83836115ec565b600a8054610c2290612549565b610eec611338565b6001600160a01b0316610efd610dcf565b6001600160a01b031614610f235760405162461bcd60e51b81526004016107d89061226f565b600f55565b610f39610f33611338565b836113ae565b610f555760405162461bcd60e51b81526004016107d890612428565b610f618484848461168f565b50505050565b6060610f728261131b565b610f8e5760405162461bcd60e51b81526004016107d890612324565b601054610100900460ff1661102f57600a8054610faa90612549565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd690612549565b80156110235780601f10610ff857610100808354040283529160200191611023565b820191906000526020600020905b81548152906001019060200180831161100657829003601f168201915b5050505050905061071a565b60006110396116c2565b905060008151116110595760405180602001604052806000815250611087565b80611063846116d1565b600960405160200161107793929190611dc2565b6040516020818303038152906040525b9392505050565b600d5481565b61109c611338565b6001600160a01b03166110ad610dcf565b6001600160a01b0316146110d35760405162461bcd60e51b81526004016107d89061226f565b601080549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611123611338565b6001600160a01b0316611134610dcf565b6001600160a01b03161461115a5760405162461bcd60e51b81526004016107d89061226f565b60105462010000900460ff16156111835760405162461bcd60e51b81526004016107d8906123e2565b61118f33600e546115b2565b6010805462ff0000191662010000179055565b816000811180156111b55750600f548111155b6111d15760405162461bcd60e51b81526004016107d890612009565b600d54816111df60076113aa565b6111e991906124bb565b11156112075760405162461bcd60e51b81526004016107d8906123b4565b61120f611338565b6001600160a01b0316611220610dcf565b6001600160a01b0316146112465760405162461bcd60e51b81526004016107d89061226f565b61089082846115b2565b611258611338565b6001600160a01b0316611269610dcf565b6001600160a01b03161461128f5760405162461bcd60e51b81526004016107d89061226f565b6001600160a01b0381166112b55760405162461bcd60e51b81526004016107d890611f8c565b610a4181611560565b6112c6611338565b6001600160a01b03166112d7610dcf565b6001600160a01b0316146112fd5760405162461bcd60e51b81526004016107d89061226f565b600c55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137182610cb9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60006113b98261131b565b6113d55760405162461bcd60e51b81526004016107d8906120b2565b60006113e083610cb9565b9050806001600160a01b0316846001600160a01b0316148061141b5750836001600160a01b0316611410846107b1565b6001600160a01b0316145b8061142b575061142b81856110ed565b949350505050565b826001600160a01b031661144682610cb9565b6001600160a01b03161461146c5760405162461bcd60e51b81526004016107d8906122db565b6001600160a01b0382166114925760405162461bcd60e51b81526004016107d890612037565b61149d838383610890565b6114a860008261133c565b6001600160a01b03831660009081526003602052604081208054600192906114d1908490612506565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ff9084906124bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610890576115c760076117ec565b6115da836115d560076113aa565b6117f5565b806115e481612584565b9150506115b5565b816001600160a01b0316836001600160a01b0316141561161e5760405162461bcd60e51b81526004016107d89061207b565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611682908590611f1c565b60405180910390a3505050565b61169a848484611433565b6116a68484848461180f565b610f615760405162461bcd60e51b81526004016107d890611f3a565b60606008805461072e90612549565b6060816116f657506040805180820190915260018152600360fc1b602082015261071a565b8160005b8115611720578061170a81612584565b91506117199050600a836124d3565b91506116fa565b60008167ffffffffffffffff81111561174957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611773576020820181803683370190505b5090505b841561142b57611788600183612506565b9150611795600a8661259f565b6117a09060306124bb565b60f81b8183815181106117c357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117e5600a866124d3565b9450611777565b80546001019055565b6108ed82826040518060200160405280600081525061192a565b6000611823846001600160a01b031661195d565b1561191f57836001600160a01b031663150b7a0261183f611338565b8786866040518563ffffffff1660e01b81526004016118619493929190611e9b565b602060405180830381600087803b15801561187b57600080fd5b505af19250505080156118ab575060408051601f3d908101601f191682019092526118a891810190611cfa565b60015b611905573d8080156118d9576040519150601f19603f3d011682016040523d82523d6000602084013e6118de565b606091505b5080516118fd5760405162461bcd60e51b81526004016107d890611f3a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061142b565b506001949350505050565b6119348383611963565b611941600084848461180f565b6108905760405162461bcd60e51b81526004016107d890611f3a565b3b151590565b6001600160a01b0382166119895760405162461bcd60e51b81526004016107d8906121ee565b6119928161131b565b156119af5760405162461bcd60e51b81526004016107d890611fd2565b6119bb60008383610890565b6001600160a01b03821660009081526003602052604081208054600192906119e49084906124bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a4e90612549565b90600052602060002090601f016020900481019282611a705760008555611ab6565b82601f10611a8957805160ff1916838001178555611ab6565b82800160010185558215611ab6579182015b82811115611ab6578251825591602001919060010190611a9b565b50611ac2929150611ac6565b5090565b5b80821115611ac25760008155600101611ac7565b600067ffffffffffffffff80841115611af657611af66125df565b604051601f8501601f191681016020018281118282101715611b1a57611b1a6125df565b604052848152915081838501861015611b3257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461071a57600080fd5b8035801515811461071a57600080fd5b600060208284031215611b83578081fd5b61108782611b4b565b60008060408385031215611b9e578081fd5b611ba783611b4b565b9150611bb560208401611b4b565b90509250929050565b600080600060608486031215611bd2578081fd5b611bdb84611b4b565b9250611be960208501611b4b565b9150604084013590509250925092565b60008060008060808587031215611c0e578081fd5b611c1785611b4b565b9350611c2560208601611b4b565b925060408501359150606085013567ffffffffffffffff811115611c47578182fd5b8501601f81018713611c57578182fd5b611c6687823560208401611adb565b91505092959194509250565b60008060408385031215611c84578182fd5b611c8d83611b4b565b9150611bb560208401611b62565b60008060408385031215611cad578182fd5b611cb683611b4b565b946020939093013593505050565b600060208284031215611cd5578081fd5b61108782611b62565b600060208284031215611cef578081fd5b8135611087816125f5565b600060208284031215611d0b578081fd5b8151611087816125f5565b600060208284031215611d27578081fd5b813567ffffffffffffffff811115611d3d578182fd5b8201601f81018413611d4d578182fd5b61142b84823560208401611adb565b600060208284031215611d6d578081fd5b5035919050565b60008060408385031215611d86578182fd5b82359150611bb560208401611b4b565b60008151808452611dae81602086016020860161251d565b601f01601f19169290920160200192915050565b600084516020611dd58285838a0161251d565b855191840191611de88184848a0161251d565b8554920191839060028104600180831680611e0457607f831692505b858310811415611e2257634e487b7160e01b88526022600452602488fd5b808015611e365760018114611e4757611e73565b60ff19851688528388019550611e73565b611e508b6124af565b895b85811015611e6b5781548a820152908401908801611e52565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ece90830184611d96565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1057835183529284019291840191600101611ef4565b50909695505050505050565b901515815260200190565b6000602082526110876020830184611d96565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526026908201527f5265736572766564204e465473206861766520616c7265616479206265656e206040820152651b5a5b9d195960d21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b90815260200190565b60009081526020902090565b600082198211156124ce576124ce6125b3565b500190565b6000826124e2576124e26125c9565b500490565b6000816000190483118215151615612501576125016125b3565b500290565b600082821015612518576125186125b3565b500390565b60005b83811015612538578181015183820152602001612520565b83811115610f615750506000910152565b60028104600182168061255d57607f821691505b6020821081141561257e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612598576125986125b3565b5060010190565b6000826125ae576125ae6125c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a4157600080fdfea26469706673582212205a96b5fadd5d7796cf48dffba98d4201f9ea9581d6353ccab59f79dff517b6e964736f6c63430008000033

Deployed Bytecode Sourcemap

37886:4151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25384:305;;;;;;;;;;-1:-1:-1;25384:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27888:221::-;;;;;;;;;;-1:-1:-1;27888:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27411:411::-;;;;;;;;;;-1:-1:-1;27411:411:0;;;;;:::i;:::-;;:::i;:::-;;38205:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41284:100::-;;;;;;;;;;-1:-1:-1;41284:100:0;;;;;:::i;:::-;;:::i;41390:77::-;;;;;;;;;;-1:-1:-1;41390:77:0;;;;;:::i;:::-;;:::i;38828:89::-;;;;;;;;;;;;;:::i;28638:339::-;;;;;;;;;;-1:-1:-1;28638:339:0;;;;;:::i;:::-;;:::i;38243:31::-;;;;;;;;;;;;;:::i;41577:137::-;;;;;;;;;;;;;:::i;29048:185::-;;;;;;;;;;-1:-1:-1;29048:185:0;;;;;:::i;:::-;;:::i;39596:635::-;;;;;;;;;;-1:-1:-1;39596:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40824:74::-;;;;;;;;;;-1:-1:-1;40824:74:0;;;;;:::i;:::-;;:::i;38315:34::-;;;;;;;;;;;;;:::i;38460:33::-;;;;;;;;;;;;;:::i;41040:132::-;;;;;;;;;;-1:-1:-1;41040:132:0;;;;;:::i;:::-;;:::i;38428:27::-;;;;;;;;;;;;;:::i;38127:33::-;;;;;;;;;;;;;:::i;38398:25::-;;;;;;;;;;;;;:::i;38040:82::-;;;;;;;;;;;;;:::i;26023:239::-;;;;;;;;;;-1:-1:-1;26023:239:0;;;;;:::i;:::-;;:::i;25753:208::-;;;;;;;;;;-1:-1:-1;25753:208:0;;;;;:::i;:::-;;:::i;6372:103::-;;;;;;;;;;;;;:::i;41178:100::-;;;;;;;;;;-1:-1:-1;41178:100:0;;;;;:::i;:::-;;:::i;5721:87::-;;;;;;;;;;;;;:::i;38354:37::-;;;;;;;;;;;;;:::i;26498:104::-;;;;;;;;;;;;;:::i;38923:300::-;;;;;;:::i;:::-;;:::i;28181:155::-;;;;;;;;;;-1:-1:-1;28181:155:0;;;;;:::i;:::-;;:::i;38165:31::-;;;;;;;;;;;;;:::i;40904:130::-;;;;;;;;;;-1:-1:-1;40904:130:0;;;;;:::i;:::-;;:::i;29304:328::-;;;;;;;;;;-1:-1:-1;29304:328:0;;;;;:::i;:::-;;:::i;40237:494::-;;;;;;;;;;-1:-1:-1;40237:494:0;;;;;:::i;:::-;;:::i;38279:31::-;;;;;;;;;;;;;:::i;40737:81::-;;;;;;;;;;-1:-1:-1;40737:81:0;;;;;:::i;:::-;;:::i;28407:164::-;;;;;;;;;;-1:-1:-1;28407:164:0;;;;;:::i;:::-;;:::i;39229:198::-;;;:::i;39435:155::-;;;;;;;;;;-1:-1:-1;39435:155:0;;;;;:::i;:::-;;:::i;6630:201::-;;;;;;;;;;-1:-1:-1;6630:201:0;;;;;:::i;:::-;;:::i;41473:98::-;;;;;;;;;;-1:-1:-1;41473:98:0;;;;;:::i;:::-;;:::i;25384:305::-;25486:4;-1:-1:-1;;;;;;25523:40:0;;-1:-1:-1;;;25523:40:0;;:105;;-1:-1:-1;;;;;;;25580:48:0;;-1:-1:-1;;;25580:48:0;25523:105;:158;;;;25645:36;25669:11;25645:23;:36::i;:::-;25503:178;;25384:305;;;;:::o;26329:100::-;26383:13;26416:5;26409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26329:100;:::o;27888:221::-;27964:7;27992:16;28000:7;27992;:16::i;:::-;27984:73;;;;-1:-1:-1;;;27984:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;28077:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28077:24:0;;27888:221::o;27411:411::-;27492:13;27508:23;27523:7;27508:14;:23::i;:::-;27492:39;;27556:5;-1:-1:-1;;;;;27550:11:0;:2;-1:-1:-1;;;;;27550:11:0;;;27542:57;;;;-1:-1:-1;;;27542:57:0;;;;;;;:::i;:::-;27650:5;-1:-1:-1;;;;;27634:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27634:21:0;;:62;;;;27659:37;27676:5;27683:12;:10;:12::i;27659:37::-;27612:168;;;;-1:-1:-1;;;27612:168:0;;;;;;;:::i;:::-;27793:21;27802:2;27806:7;27793:8;:21::i;:::-;27411:411;;;:::o;38205:33::-;;;;:::o;41284:100::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;41356:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41284:100:::0;:::o;41390:77::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;41446:6:::1;:15:::0;;-1:-1:-1;;41446:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41390:77::o;38828:89::-;38872:7;38895:16;:6;:14;:16::i;:::-;38888:23;;38828:89;:::o;28638:339::-;28833:41;28852:12;:10;:12::i;:::-;28866:7;28833:18;:41::i;:::-;28825:103;;;;-1:-1:-1;;;28825:103:0;;;;;;;:::i;:::-;28941:28;28951:4;28957:2;28961:7;28941:9;:28::i;38243:31::-;;;;:::o;41577:137::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;41622:7:::1;41643;:5;:7::i;:::-;-1:-1:-1::0;;;;;41635:21:0::1;41664;41635:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41621:69;;;41705:2;41697:11;;;::::0;::::1;;6012:1;41577:137::o:0;29048:185::-;29186:39;29203:4;29209:2;29213:7;29186:39;;;;;;;;;;;;:16;:39::i;39596:635::-;39671:16;39699:23;39725:17;39735:6;39725:9;:17::i;:::-;39699:43;;39749:30;39796:15;39782:30;;;;;;-1:-1:-1;;;39782:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39782:30:0;-1:-1:-1;39749:63:0;-1:-1:-1;39844:1:0;39819:22;39888:309;39913:15;39895;:33;:64;;;;;39950:9;;39932:14;:27;;39895:64;39888:309;;;39970:25;39998:23;40006:14;39998:7;:23::i;:::-;39970:51;;40057:6;-1:-1:-1;;;;;40036:27:0;:17;-1:-1:-1;;;;;40036:27:0;;40032:131;;;40109:14;40076:13;40090:15;40076:30;;;;;;-1:-1:-1;;;40076:30:0;;;;;;;;;;;;;;;;;;:47;40136:17;;;;:::i;:::-;;;;40032:131;40173:16;;;;:::i;:::-;;;;39888:309;;;;-1:-1:-1;40212:13:0;;39596:635;-1:-1:-1;;;;39596:635:0:o;40824:74::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;40880:4:::1;:12:::0;40824:74::o;38315:34::-;;;;:::o;38460:33::-;;;;;;;;;:::o;41040:132::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;41128:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;38428:27::-:0;;;;;;;;;:::o;38127:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38398:25::-;;;;;;:::o;38040:82::-;;;;;;;:::i;26023:239::-;26095:7;26131:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26131:16:0;26166:19;26158:73;;;;-1:-1:-1;;;26158:73:0;;;;;;;:::i;25753:208::-;25825:7;-1:-1:-1;;;;;25853:19:0;;25845:74;;;;-1:-1:-1;;;25845:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25937:16:0;;;;;:9;:16;;;;;;;25753:208::o;6372:103::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;6437:30:::1;6464:1;6437:18;:30::i;:::-;6372:103::o:0;41178:100::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;41250:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;5721:87::-:0;5794:6;;-1:-1:-1;;;;;5794:6:0;5721:87;:::o;38354:37::-;;;;:::o;26498:104::-;26554:13;26587:7;26580:14;;;;;:::i;38923:300::-;38988:11;38662:1;38648:11;:15;:52;;;;;38682:18;;38667:11;:33;;38648:52;38640:85;;;;-1:-1:-1;;;38640:85:0;;;;;;;:::i;:::-;38774:9;;38759:11;38740:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;38732:76;;;;-1:-1:-1;;;38732:76:0;;;;;;;:::i;:::-;39017:6:::1;::::0;::::1;;39016:7;39008:43;;;;-1:-1:-1::0;;;39008:43:0::1;;;;;;;:::i;:::-;39081:10;;39062:16;:6;:14;:16::i;:::-;:29;39058:117;;;39132:11;39125:4;;:18;;;;:::i;:::-;39112:9;:31;;39104:63;;;;-1:-1:-1::0;;;39104:63:0::1;;;;;;;:::i;:::-;39183:34;39193:10;39205:11;39183:9;:34::i;28181:155::-:0;28276:52;28295:12;:10;:12::i;:::-;28309:8;28319;28276:18;:52::i;38165:31::-;;;;;;;:::i;40904:130::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;40988:18:::1;:40:::0;40904:130::o;29304:328::-;29479:41;29498:12;:10;:12::i;:::-;29512:7;29479:18;:41::i;:::-;29471:103;;;;-1:-1:-1;;;29471:103:0;;;;;;;:::i;:::-;29585:39;29599:4;29605:2;29609:7;29618:5;29585:13;:39::i;:::-;29304:328;;;;:::o;40237:494::-;40336:13;40377:17;40385:8;40377:7;:17::i;:::-;40361:98;;;;-1:-1:-1;;;40361:98:0;;;;;;;:::i;:::-;40472:8;;;;;;;40468:64;;40507:17;40500:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40468:64;40540:28;40571:10;:8;:10::i;:::-;40540:41;;40626:1;40601:14;40595:28;:32;:130;;;;;;;;;;;;;;;;;40663:14;40679:19;:8;:17;:19::i;:::-;40700:9;40646:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40595:130;40588:137;40237:494;-1:-1:-1;;;40237:494:0:o;38279:31::-;;;;:::o;40737:81::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;40795:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;40795:17:0;;::::1;::::0;;;::::1;::::0;;40737:81::o;28407:164::-;-1:-1:-1;;;;;28528:25:0;;;28504:4;28528:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28407:164::o;39229:198::-;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;39294:13:::1;::::0;;;::::1;;;39293:14;39285:65;;;;-1:-1:-1::0;;;39285:65:0::1;;;;;;;:::i;:::-;39357:37;39367:10;39379:14;;39357:9;:37::i;:::-;39401:13;:20:::0;;-1:-1:-1;;39401:20:0::1;::::0;::::1;::::0;;39229:198::o;39435:155::-;39521:11;38662:1;38648:11;:15;:52;;;;;38682:18;;38667:11;:33;;38648:52;38640:85;;;;-1:-1:-1;;;38640:85:0;;;;;;;:::i;:::-;38774:9;;38759:11;38740:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;38732:76;;;;-1:-1:-1;;;38732:76:0;;;;;;;:::i;:::-;5952:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;5941:23:0::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;5941:23:0::1;;5933:68;;;;-1:-1:-1::0;;;5933:68:0::1;;;;;;;:::i;:::-;39551:33:::2;39561:9;39572:11;39551:9;:33::i;6630:201::-:0;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6719:22:0;::::1;6711:73;;;;-1:-1:-1::0;;;6711:73:0::1;;;;;;;:::i;:::-;6795:28;6814:8;6795:18;:28::i;41473:98::-:0;5952:12;:10;:12::i;:::-;-1:-1:-1;;;;;5941:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5941:23:0;;5933:68;;;;-1:-1:-1;;;5933:68:0;;;;;;;:::i;:::-;41541:10:::1;:24:::0;41473:98::o;18153:157::-;-1:-1:-1;;;;;;18262:40:0;;-1:-1:-1;;;18262:40:0;18153:157;;;:::o;31142:127::-;31207:4;31231:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31231:16:0;:30;;;31142:127::o;4445:98::-;4525:10;4445:98;:::o;35124:174::-;35199:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35199:29:0;-1:-1:-1;;;;;35199:29:0;;;;;;;;:24;;35253:23;35199:24;35253:14;:23::i;:::-;-1:-1:-1;;;;;35244:46:0;;;;;;;;;;;35124:174;;:::o;1049:114::-;1141:14;;1049:114::o;31436:348::-;31529:4;31554:16;31562:7;31554;:16::i;:::-;31546:73;;;;-1:-1:-1;;;31546:73:0;;;;;;;:::i;:::-;31630:13;31646:23;31661:7;31646:14;:23::i;:::-;31630:39;;31699:5;-1:-1:-1;;;;;31688:16:0;:7;-1:-1:-1;;;;;31688:16:0;;:51;;;;31732:7;-1:-1:-1;;;;;31708:31:0;:20;31720:7;31708:11;:20::i;:::-;-1:-1:-1;;;;;31708:31:0;;31688:51;:87;;;;31743:32;31760:5;31767:7;31743:16;:32::i;:::-;31680:96;31436:348;-1:-1:-1;;;;31436:348:0:o;34428:578::-;34587:4;-1:-1:-1;;;;;34560:31:0;:23;34575:7;34560:14;:23::i;:::-;-1:-1:-1;;;;;34560:31:0;;34552:85;;;;-1:-1:-1;;;34552:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34656:16:0;;34648:65;;;;-1:-1:-1;;;34648:65:0;;;;;;;:::i;:::-;34726:39;34747:4;34753:2;34757:7;34726:20;:39::i;:::-;34830:29;34847:1;34851:7;34830:8;:29::i;:::-;-1:-1:-1;;;;;34872:15:0;;;;;;:9;:15;;;;;:20;;34891:1;;34872:15;:20;;34891:1;;34872:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34903:13:0;;;;;;:9;:13;;;;;:18;;34920:1;;34903:13;:18;;34920:1;;34903:18;:::i;:::-;;;;-1:-1:-1;;34932:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34932:21:0;-1:-1:-1;;;;;34932:21:0;;;;;;;;;34971:27;;34932:16;;34971:27;;;;;;;34428:578;;;:::o;6991:191::-;7084:6;;;-1:-1:-1;;;;;7101:17:0;;;-1:-1:-1;;;;;;7101:17:0;;;;;;;7134:40;;7084:6;;;7101:17;7084:6;;7134:40;;7065:16;;7134:40;6991:191;;:::o;41720:204::-;41800:9;41795:124;41819:11;41815:1;:15;41795:124;;;41846:18;:6;:16;:18::i;:::-;41873:38;41883:9;41894:16;:6;:14;:16::i;:::-;41873:9;:38::i;:::-;41832:3;;;;:::i;:::-;;;;41795:124;;35440:315;35595:8;-1:-1:-1;;;;;35586:17:0;:5;-1:-1:-1;;;;;35586:17:0;;;35578:55;;;;-1:-1:-1;;;35578:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35644:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;35644:46:0;;;;;;;35706:41;;;;;35644:46;;35706:41;:::i;:::-;;;;;;;;35440:315;;;:::o;30514:::-;30671:28;30681:4;30687:2;30691:7;30671:9;:28::i;:::-;30718:48;30741:4;30747:2;30751:7;30760:5;30718:22;:48::i;:::-;30710:111;;;;-1:-1:-1;;;30710:111:0;;;;;;;:::i;41930:104::-;41990:13;42019:9;42012:16;;;;;:::i;2007:723::-;2063:13;2284:10;2280:53;;-1:-1:-1;2311:10:0;;;;;;;;;;;;-1:-1:-1;;;2311:10:0;;;;;;2280:53;2358:5;2343:12;2399:78;2406:9;;2399:78;;2432:8;;;;:::i;:::-;;-1:-1:-1;2455:10:0;;-1:-1:-1;2463:2:0;2455:10;;:::i;:::-;;;2399:78;;;2487:19;2519:6;2509:17;;;;;;-1:-1:-1;;;2509:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2509:17:0;;2487:39;;2537:154;2544:10;;2537:154;;2571:11;2581:1;2571:11;;:::i;:::-;;-1:-1:-1;2640:10:0;2648:2;2640:5;:10;:::i;:::-;2627:24;;:2;:24;:::i;:::-;2614:39;;2597:6;2604;2597:14;;;;;;-1:-1:-1;;;2597:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2597:56:0;;;;;;;;-1:-1:-1;2668:11:0;2677:2;2668:11;;:::i;:::-;;;2537:154;;1171:127;1260:19;;1278:1;1260:19;;;1171:127::o;32126:110::-;32202:26;32212:2;32216:7;32202:26;;;;;;;;;;;;:9;:26::i;36320:799::-;36475:4;36496:15;:2;-1:-1:-1;;;;;36496:13:0;;:15::i;:::-;36492:620;;;36548:2;-1:-1:-1;;;;;36532:36:0;;36569:12;:10;:12::i;:::-;36583:4;36589:7;36598:5;36532:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36532:72:0;;;;;;;;-1:-1:-1;;36532:72:0;;;;;;;;;;;;:::i;:::-;;;36528:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36774:13:0;;36770:272;;36817:60;;-1:-1:-1;;;36817:60:0;;;;;;;:::i;36770:272::-;36992:6;36986:13;36977:6;36973:2;36969:15;36962:38;36528:529;-1:-1:-1;;;;;;36655:51:0;-1:-1:-1;;;36655:51:0;;-1:-1:-1;36648:58:0;;36492:620;-1:-1:-1;37096:4:0;36320:799;;;;;;:::o;32463:321::-;32593:18;32599:2;32603:7;32593:5;:18::i;:::-;32644:54;32675:1;32679:2;32683:7;32692:5;32644:22;:54::i;:::-;32622:154;;;;-1:-1:-1;;;32622:154:0;;;;;;;:::i;8009:387::-;8332:20;8380:8;;;8009:387::o;33120:382::-;-1:-1:-1;;;;;33200:16:0;;33192:61;;;;-1:-1:-1;;;33192:61:0;;;;;;;:::i;:::-;33273:16;33281:7;33273;:16::i;:::-;33272:17;33264:58;;;;-1:-1:-1;;;33264:58:0;;;;;;;:::i;:::-;33335:45;33364:1;33368:2;33372:7;33335:20;:45::i;:::-;-1:-1:-1;;;;;33393:13:0;;;;;;:9;:13;;;;;:18;;33410:1;;33393:13;:18;;33410:1;;33393:18;:::i;:::-;;;;-1:-1:-1;;33422:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33422:21:0;-1:-1:-1;;;;;33422:21:0;;;;;;;;33461:33;;33422:16;;;33461:33;;33422:16;;33461:33;33120:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:266::-;;;4589:2;4577:9;4568:7;4564:23;4560:32;4557:2;;;4610:6;4602;4595:22;4557:2;4651:9;4638:23;4628:33;;4680:40;4716:2;4705:9;4701:18;4680:40;:::i;4731:259::-;;4812:5;4806:12;4839:6;4834:3;4827:19;4855:63;4911:6;4904:4;4899:3;4895:14;4888:4;4881:5;4877:16;4855:63;:::i;:::-;4972:2;4951:15;-1:-1:-1;;4947:29:1;4938:39;;;;4979:4;4934:50;;4782:208;-1:-1:-1;;4782:208:1:o;4995:1532::-;;5257:6;5251:13;5283:4;5296:51;5340:6;5335:3;5330:2;5322:6;5318:15;5296:51;:::i;:::-;5410:13;;5369:16;;;;5432:55;5410:13;5369:16;5454:15;;;5432:55;:::i;:::-;5578:13;;5509:20;;;5549:3;;5655:1;5640:17;;5676:1;5712:18;;;;5739:2;;5817:4;5807:8;5803:19;5791:31;;5739:2;5880;5870:8;5867:16;5847:18;5844:40;5841:2;;;-1:-1:-1;;;5907:33:1;;5963:4;5960:1;5953:15;5993:4;5914:3;5981:17;5841:2;6024:18;6051:110;;;;6175:1;6170:332;;;;6017:485;;6051:110;-1:-1:-1;;6086:24:1;;6072:39;;6131:20;;;;-1:-1:-1;6051:110:1;;6170:332;6206:39;6238:6;6206:39;:::i;:::-;6267:3;6283:169;6297:8;6294:1;6291:15;6283:169;;;6379:14;;6364:13;;;6357:37;6422:16;;;;6314:10;;6283:169;;;6287:3;;6483:8;6476:5;6472:20;6465:27;;6017:485;-1:-1:-1;6518:3:1;;5227:1300;-1:-1:-1;;;;;;;;;;;5227:1300:1:o;6532:205::-;6732:3;6723:14::o;6742:203::-;-1:-1:-1;;;;;6906:32:1;;;;6888:51;;6876:2;6861:18;;6843:102::o;6950:490::-;-1:-1:-1;;;;;7219:15:1;;;7201:34;;7271:15;;7266:2;7251:18;;7244:43;7318:2;7303:18;;7296:34;;;7366:3;7361:2;7346:18;;7339:31;;;6950:490;;7387:47;;7414:19;;7406:6;7387:47;:::i;:::-;7379:55;7153:287;-1:-1:-1;;;;;;7153:287:1:o;7445:635::-;7616:2;7668:21;;;7738:13;;7641:18;;;7760:22;;;7445:635;;7616:2;7839:15;;;;7813:2;7798:18;;;7445:635;7885:169;7899:6;7896:1;7893:13;7885:169;;;7960:13;;7948:26;;8029:15;;;;7994:12;;;;7921:1;7914:9;7885:169;;;-1:-1:-1;8071:3:1;;7596:484;-1:-1:-1;;;;;;7596:484:1:o;8085:187::-;8250:14;;8243:22;8225:41;;8213:2;8198:18;;8180:92::o;8277:221::-;;8426:2;8415:9;8408:21;8446:46;8488:2;8477:9;8473:18;8465:6;8446:46;:::i;8503:414::-;8705:2;8687:21;;;8744:2;8724:18;;;8717:30;8783:34;8778:2;8763:18;;8756:62;-1:-1:-1;;;8849:2:1;8834:18;;8827:48;8907:3;8892:19;;8677:240::o;8922:402::-;9124:2;9106:21;;;9163:2;9143:18;;;9136:30;9202:34;9197:2;9182:18;;9175:62;-1:-1:-1;;;9268:2:1;9253:18;;9246:36;9314:3;9299:19;;9096:228::o;9329:352::-;9531:2;9513:21;;;9570:2;9550:18;;;9543:30;9609;9604:2;9589:18;;9582:58;9672:2;9657:18;;9503:178::o;9686:344::-;9888:2;9870:21;;;9927:2;9907:18;;;9900:30;-1:-1:-1;;;9961:2:1;9946:18;;9939:50;10021:2;10006:18;;9860:170::o;10035:400::-;10237:2;10219:21;;;10276:2;10256:18;;;10249:30;10315:34;10310:2;10295:18;;10288:62;-1:-1:-1;;;10381:2:1;10366:18;;10359:34;10425:3;10410:19;;10209:226::o;10440:349::-;10642:2;10624:21;;;10681:2;10661:18;;;10654:30;10720:27;10715:2;10700:18;;10693:55;10780:2;10765:18;;10614:175::o;10794:408::-;10996:2;10978:21;;;11035:2;11015:18;;;11008:30;11074:34;11069:2;11054:18;;11047:62;-1:-1:-1;;;11140:2:1;11125:18;;11118:42;11192:3;11177:19;;10968:234::o;11207:420::-;11409:2;11391:21;;;11448:2;11428:18;;;11421:30;11487:34;11482:2;11467:18;;11460:62;11558:26;11553:2;11538:18;;11531:54;11617:3;11602:19;;11381:246::o;11632:406::-;11834:2;11816:21;;;11873:2;11853:18;;;11846:30;11912:34;11907:2;11892:18;;11885:62;-1:-1:-1;;;11978:2:1;11963:18;;11956:40;12028:3;12013:19;;11806:232::o;12043:405::-;12245:2;12227:21;;;12284:2;12264:18;;;12257:30;12323:34;12318:2;12303:18;;12296:62;-1:-1:-1;;;12389:2:1;12374:18;;12367:39;12438:3;12423:19;;12217:231::o;12453:356::-;12655:2;12637:21;;;12674:18;;;12667:30;12733:34;12728:2;12713:18;;12706:62;12800:2;12785:18;;12627:182::o;12814:408::-;13016:2;12998:21;;;13055:2;13035:18;;;13028:30;13094:34;13089:2;13074:18;;13067:62;-1:-1:-1;;;13160:2:1;13145:18;;13138:42;13212:3;13197:19;;12988:234::o;13227:356::-;13429:2;13411:21;;;13448:18;;;13441:30;13507:34;13502:2;13487:18;;13480:62;13574:2;13559:18;;13401:182::o;13588:347::-;13790:2;13772:21;;;13829:2;13809:18;;;13802:30;13868:25;13863:2;13848:18;;13841:53;13926:2;13911:18;;13762:173::o;13940:405::-;14142:2;14124:21;;;14181:2;14161:18;;;14154:30;14220:34;14215:2;14200:18;;14193:62;-1:-1:-1;;;14286:2:1;14271:18;;14264:39;14335:3;14320:19;;14114:231::o;14350:411::-;14552:2;14534:21;;;14591:2;14571:18;;;14564:30;14630:34;14625:2;14610:18;;14603:62;-1:-1:-1;;;14696:2:1;14681:18;;14674:45;14751:3;14736:19;;14524:237::o;14766:397::-;14968:2;14950:21;;;15007:2;14987:18;;;14980:30;15046:34;15041:2;15026:18;;15019:62;-1:-1:-1;;;15112:2:1;15097:18;;15090:31;15153:3;15138:19;;14940:223::o;15168:344::-;15370:2;15352:21;;;15409:2;15389:18;;;15382:30;-1:-1:-1;;;15443:2:1;15428:18;;15421:50;15503:2;15488:18;;15342:170::o;15517:402::-;15719:2;15701:21;;;15758:2;15738:18;;;15731:30;15797:34;15792:2;15777:18;;15770:62;-1:-1:-1;;;15863:2:1;15848:18;;15841:36;15909:3;15894:19;;15691:228::o;15924:413::-;16126:2;16108:21;;;16165:2;16145:18;;;16138:30;16204:34;16199:2;16184:18;;16177:62;-1:-1:-1;;;16270:2:1;16255:18;;16248:47;16327:3;16312:19;;16098:239::o;16342:343::-;16544:2;16526:21;;;16583:2;16563:18;;;16556:30;-1:-1:-1;;;16617:2:1;16602:18;;16595:49;16676:2;16661:18;;16516:169::o;16690:177::-;16836:25;;;16824:2;16809:18;;16791:76::o;16872:129::-;;16940:17;;;16990:4;16974:21;;;16930:71::o;17006:128::-;;17077:1;17073:6;17070:1;17067:13;17064:2;;;17083:18;;:::i;:::-;-1:-1:-1;17119:9:1;;17054:80::o;17139:120::-;;17205:1;17195:2;;17210:18;;:::i;:::-;-1:-1:-1;17244:9:1;;17185:74::o;17264:168::-;;17370:1;17366;17362:6;17358:14;17355:1;17352:21;17347:1;17340:9;17333:17;17329:45;17326:2;;;17377:18;;:::i;:::-;-1:-1:-1;17417:9:1;;17316:116::o;17437:125::-;;17505:1;17502;17499:8;17496:2;;;17510:18;;:::i;:::-;-1:-1:-1;17547:9:1;;17486:76::o;17567:258::-;17639:1;17649:113;17663:6;17660:1;17657:13;17649:113;;;17739:11;;;17733:18;17720:11;;;17713:39;17685:2;17678:10;17649:113;;;17780:6;17777:1;17774:13;17771:2;;;-1:-1:-1;;17815:1:1;17797:16;;17790:27;17620:205::o;17830:380::-;17915:1;17905:12;;17962:1;17952:12;;;17973:2;;18027:4;18019:6;18015:17;18005:27;;17973:2;18080;18072:6;18069:14;18049:18;18046:38;18043:2;;;18126:10;18121:3;18117:20;18114:1;18107:31;18161:4;18158:1;18151:15;18189:4;18186:1;18179:15;18043:2;;17885:325;;;:::o;18215:135::-;;-1:-1:-1;;18275:17:1;;18272:2;;;18295:18;;:::i;:::-;-1:-1:-1;18342:1:1;18331:13;;18262:88::o;18355:112::-;;18413:1;18403:2;;18418:18;;:::i;:::-;-1:-1:-1;18452:9:1;;18393:74::o;18472:127::-;18533:10;18528:3;18524:20;18521:1;18514:31;18564:4;18561:1;18554:15;18588:4;18585:1;18578:15;18604:127;18665:10;18660:3;18656:20;18653:1;18646:31;18696:4;18693:1;18686:15;18720:4;18717:1;18710:15;18736:127;18797:10;18792:3;18788:20;18785:1;18778:31;18828:4;18825:1;18818:15;18852:4;18849:1;18842:15;18868:133;-1:-1:-1;;;;;;18944:32:1;;18934:43;;18924:2;;18991:1;18988;18981:12

Swarm Source

ipfs://5a96b5fadd5d7796cf48dffba98d4201f9ea9581d6353ccab59f79dff517b6e9
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.