ETH Price: $2,859.87 (-10.70%)
Gas: 19 Gwei

Token

DigiDyno (DIGI)
 

Overview

Max Total Supply

278 DIGI

Holders

92

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 DIGI
0x1a4ff88456c89382aceb7e0160e2696991fb5120
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:
DigiDyno

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

/**
  _____  _       _ _____                        
 |  __ \(_)     (_)  __ \                       
 | |  | |_  __ _ _| |  | |_   _ _ __   ___  ___ 
 | |  | | |/ _` | | |  | | | | | '_ \ / _ \/ __|
 | |__| | | (_| | | |__| | |_| | | | | (_) \__ \
 |_____/|_|\__, |_|_____/ \__, |_| |_|\___/|___/
            __/ |          __/ |                
           |___/          |___/                 
Twitter - https://twitter.com/mdldao
Discord - https://discord.gg/Qs93nhRhkM
DigiDynos - https://digidyno.eth.link
MDLDAO - https://mdldao.eth.link
  __  __ _____  _      
 |  \/  |  __ \| |     
 | \  / | |  | | |     
 | |\/| | |  | | |     
 | |  | | |__| | |____ 
 |_|  |_|_____/|______|
*/

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @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 (last updated v4.5.0) (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);

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Token.sol

pragma solidity ^0.8.0;
//SPDX-License-Identifier: MIT 

contract DigiDyno is ERC721Enumerable, Ownable{

    address public devWallet = payable(0x98B84A68De1Bf82006054800508d09b034Ee5b5A); 
    address public marketingWallet = payable(0x826e9262658c22862B43CdBDDbbADDbEaBB02f74);
    address public mdlWallet = payable(0x87374Bb8c65873a76B858615b00b5B12EB0769B3);

    uint256 public devShare = 25; 
    uint256 public marketingShare = 30; 
    uint256 public mdlShare = 45;

    using Strings for uint256; 
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    mapping(address => bool) public whitelist; 
    bool public whitelistEnabled = false; 

    bool public mintEnabled = false; 
    bool public metaLock = false;

    //Token URI variables
    string public randomURL = "https://ipfs.io/ipfs/QmZtiYGFyBPGgD3XYfD9ud4tdYw72hf39Sfc1hJPHfePHf";
    string public _contractURI = "https://ipfs.io/ipfs/QmfTu1HVM1QFHazuKaaXRqBK6TRNz99B9Xxzj819kHYZB1"; 
    mapping(uint256 => string) private _tokenURIs;
    string internal baseURI; //Must end in '/'

    constructor() ERC721("DigiDyno", "DIGI") {
        _tokenIds.increment(); 
    }

    uint256 public limit = 7778; 
    uint256 public mintPrice = 0.015 ether; 
    bool public revealed = false; 

    function mintItem(uint256 amount)
      public
      payable
      returns (bool)
    {
      require(mintEnabled == true, "Minting is not enabled"); //Check if mint is enabled 
      require( (_tokenIds.current()+amount) <= limit , "Minting Amount exceeds supply"); //Check mint supply
      require(amount > 0, "Invalid amount"); //Check that amount of tokens to mint is inputted. 
      uint256 amount_req = mintPrice * amount; 
      require( msg.value >= amount_req, "NOT ENOUGH"); //Check that mint price is met. 

      //Whitelist check
      if(whitelistEnabled){
        require( whitelist[msg.sender] == true, "NOT WHITELISTED");
      }
      
      //Divide mint Fees
      uint256 base_100 = msg.value/100; 
      (bool devSuccess,) = devWallet.call{value: base_100*devShare}("");
      (bool marketingSuccess,) = marketingWallet.call{value: base_100*marketingShare}("");
      (bool mdlSuccess,) = mdlWallet.call{value: base_100*mdlShare}("");

      require( devSuccess, "Dev Fee error"); 
      require( marketingSuccess, "Marketing fee error");
      require( mdlSuccess, "MDL fee error"); 
      

      for (uint256 index = 0; index < amount; index++) {
        uint256 id = _tokenIds.current();
        string memory string_id = id.toString(); //maybe storage?
        _mint(msg.sender, id);
        _setTokenURI(id, string_id);
        _tokenIds.increment();
      }
      return true;
    }

    function reveal()
    public
    onlyOwner
    {
        revealed = true;
    }

    function addWhitelist(address _address) public onlyOwner {
        whitelist[_address] = true; 
        return; 
    }

    function addWhitelistMulti(address[] memory _addresses) public onlyOwner {
        for(uint i = 0; i<_addresses.length; i++){
            whitelist[_addresses[i]] = true; 
        }
    }

    function giveawayWinners(address[] memory _addresses) public onlyOwner returns(bool){

        require((_tokenIds.current()+_addresses.length) <= limit, "Minting amount exceeds supply"); //Mint limit check
        for(uint i=0; i<_addresses.length; i++){
        address cur = _addresses[i]; 
        uint256 id = _tokenIds.current(); 
        string memory string_id = id.toString(); 
        _mint(cur, id);
        _setTokenURI(id, string_id); 
        _tokenIds.increment();  
        }
        return true; 
    }

    function currentMintNumber() public view returns(uint256){
        return (_tokenIds.current()-1); 
    } 

    function mintSwitch() public onlyOwner returns(bool){
        mintEnabled = !mintEnabled; 
        return mintEnabled; 
    }

    function whitelistSwitch() public onlyOwner returns(bool){
        whitelistEnabled = !whitelistEnabled; 
        return whitelistEnabled; 
    }

    function setFeeAddresses(address payable dev, address payable market, address payable mdl) public onlyOwner {
        devWallet = dev; 
        marketingWallet = market; 
        mdlWallet = mdl; 
    }

    function setMintFee(uint256 newFee) public onlyOwner{
        mintPrice = newFee; 
    }

    //Token URI storage

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

        

        string memory _tokenURI = _tokenURIs[tokenId];
        if(!revealed){
            return string(abi.encodePacked(randomURL)); 
        }
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal  {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    function _setBaseURI(string memory newURI) public onlyOwner{
        require(metaLock == false, "Metadata is locked!"); 
        baseURI = newURI; 
    }
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    function lockMetadata() public onlyOwner{
        metaLock = true; 
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

}

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":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"_setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addWhitelistMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMintNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giveawayWinners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mdlShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mdlWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metaLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintItem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","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":"address payable","name":"dev","type":"address"},{"internalType":"address payable","name":"market","type":"address"},{"internalType":"address payable","name":"mdl","type":"address"}],"name":"setFeeAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setMintFee","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

600b80546001600160a01b03199081167398b84a68de1bf82006054800508d09b034ee5b5a17909155600c8054821673826e9262658c22862b43cdbddbbaddbeabb02f74179055600d80549091167387374bb8c65873a76b858615b00b5b12eb0769b31790556019600e55601e600f55602d6010556013805462ffffff19169055610100604052604360808181529062002fbe60a0398051620000ab9160149160209091019062000201565b5060405180608001604052806043815260200162002f7b604391398051620000dc9160159160209091019062000201565b50611e6260185566354a6ba7a18000601955601a805460ff191690553480156200010557600080fd5b5060408051808201825260088152674469676944796e6f60c01b6020808301918252835180850190945260048452634449474960e01b908401528151919291620001529160009162000201565b5080516200016890600190602084019062000201565b505050620001856200017f620001a260201b60201c565b620001a6565b6200019c6011620001f860201b620018bd1760201c565b620002e4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b8280546200020f90620002a7565b90600052602060002090601f0160209004810192826200023357600085556200027e565b82601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b5b808211156200028c576000815560010162000291565b600181811c90821680620002bc57607f821691505b60208210811415620002de57634e487b7160e01b600052602260045260246000fd5b50919050565b612c8780620002f46000396000f3fe6080604052600436106102885760003560e01c80638ea5220f1161015a578063baa33c53116100c1578063e985e9c51161007a578063e985e9c51461074b578063eacb912d14610794578063eddd0d9c146107a9578063f2fde38b146107c9578063f7fe6170146107e9578063f80f5dd5146107fe57600080fd5b8063baa33c53146106ad578063bcd25ee5146106cd578063c0e72740146106e2578063c87b56dd146106f7578063d123973014610717578063e8a3d4851461073657600080fd5b8063a4d66daf11610113578063a4d66daf1461060b578063a57b587c14610621578063aa1ef59814610641578063aed04fae14610661578063b88d4fde14610677578063ba6b28d21461069757600080fd5b80638ea5220f1461055c57806395d89b411461057c578063989bdbb6146105915780639b19251a146105a6578063a22cb465146105d6578063a475b5dd146105f657600080fd5b806331b5b907116101fe5780636817c76c116101b75780636817c76c146104b357806370a08231146104c9578063715018a6146104e95780637388a539146104fe57806375f0a8741461051e5780638da5cb5b1461053e57600080fd5b806331b5b907146103ff57806342842e0e1461041f5780634f6ccce71461043f578063518302271461045f57806351fb012d146104795780636352211e1461049357600080fd5b8063095ea7b311610250578063095ea7b31461036057806317fb85941461038257806318160ddd1461039557806323b872dd146103aa57806328000491146103ca5780632f745c59146103df57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063086dd3f01461031c57806309218ee71461033c575b600080fd5b34801561029957600080fd5b506102ad6102a83660046127d4565b61081e565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610849565b6040516102b991906129a4565b3480156102f057600080fd5b506103046102ff366004612857565b6108db565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b506013546102ad9062010000900460ff1681565b34801561034857600080fd5b50610352600f5481565b6040519081526020016102b9565b34801561036c57600080fd5b5061038061037b3660046126ef565b610968565b005b6102ad610390366004612857565b610a7e565b3480156103a157600080fd5b50600854610352565b3480156103b657600080fd5b506103806103c53660046125fb565b610e92565b3480156103d657600080fd5b506102d7610ec3565b3480156103eb57600080fd5b506103526103fa3660046126ef565b610f51565b34801561040b57600080fd5b5061038061041a36600461280e565b610fe7565b34801561042b57600080fd5b5061038061043a3660046125fb565b611077565b34801561044b57600080fd5b5061035261045a366004612857565b611092565b34801561046b57600080fd5b50601a546102ad9060ff1681565b34801561048557600080fd5b506013546102ad9060ff1681565b34801561049f57600080fd5b506103046104ae366004612857565b611125565b3480156104bf57600080fd5b5061035260195481565b3480156104d557600080fd5b506103526104e436600461255a565b61119c565b3480156104f557600080fd5b50610380611223565b34801561050a57600080fd5b5061038061051936600461271b565b611259565b34801561052a57600080fd5b50600c54610304906001600160a01b031681565b34801561054a57600080fd5b50600a546001600160a01b0316610304565b34801561056857600080fd5b50600b54610304906001600160a01b031681565b34801561058857600080fd5b506102d76112eb565b34801561059d57600080fd5b506103806112fa565b3480156105b257600080fd5b506102ad6105c136600461255a565b60126020526000908152604090205460ff1681565b3480156105e257600080fd5b506103806105f13660046126bc565b611337565b34801561060257600080fd5b50610380611342565b34801561061757600080fd5b5061035260185481565b34801561062d57600080fd5b506102ad61063c36600461271b565b61137b565b34801561064d57600080fd5b5061038061065c366004612577565b61148d565b34801561066d57600080fd5b50610352600e5481565b34801561068357600080fd5b5061038061069236600461263c565b6114f6565b3480156106a357600080fd5b5061035260105481565b3480156106b957600080fd5b50600d54610304906001600160a01b031681565b3480156106d957600080fd5b506102ad61152e565b3480156106ee57600080fd5b506102d7611575565b34801561070357600080fd5b506102d7610712366004612857565b611582565b34801561072357600080fd5b506013546102ad90610100900460ff1681565b34801561074257600080fd5b506102d7611724565b34801561075757600080fd5b506102ad6107663660046125c2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a057600080fd5b506102ad611733565b3480156107b557600080fd5b506103806107c4366004612857565b611787565b3480156107d557600080fd5b506103806107e436600461255a565b6117b6565b3480156107f557600080fd5b50610352611851565b34801561080a57600080fd5b5061038061081936600461255a565b61186d565b60006001600160e01b0319821663780e9d6360e01b14806108435750610843826118c6565b92915050565b60606000805461085890612b4e565b80601f016020809104026020016040519081016040528092919081815260200182805461088490612b4e565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b60006108e682611916565b61094c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097382611125565b9050806001600160a01b0316836001600160a01b031614156109e15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610943565b336001600160a01b03821614806109fd57506109fd8133610766565b610a6f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610943565b610a798383611933565b505050565b60135460009060ff610100909104161515600114610ad75760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610943565b60185482610ae460115490565b610aee9190612ac0565b1115610b3c5760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e6720416d6f756e74206578636565647320737570706c790000006044820152606401610943565b60008211610b7d5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610943565b600082601954610b8d9190612aec565b905080341015610bcc5760405162461bcd60e51b815260206004820152600a60248201526909c9ea8408a9c9eaa8e960b31b6044820152606401610943565b60135460ff1615610c2d573360009081526012602052604090205460ff161515600114610c2d5760405162461bcd60e51b815260206004820152600f60248201526e1393d50815d2125511531254d51151608a1b6044820152606401610943565b6000610c3a606434612ad8565b600b54600e549192506000916001600160a01b0390911690610c5c9084612aec565b604051600081818185875af1925050503d8060008114610c98576040519150601f19603f3d011682016040523d82523d6000602084013e610c9d565b606091505b5050600c54600f549192506000916001600160a01b0390911690610cc19085612aec565b604051600081818185875af1925050503d8060008114610cfd576040519150601f19603f3d011682016040523d82523d6000602084013e610d02565b606091505b5050600d546010549192506000916001600160a01b0390911690610d269086612aec565b604051600081818185875af1925050503d8060008114610d62576040519150601f19603f3d011682016040523d82523d6000602084013e610d67565b606091505b5050905082610da85760405162461bcd60e51b815260206004820152600d60248201526c2232bb102332b29032b93937b960991b6044820152606401610943565b81610deb5760405162461bcd60e51b815260206004820152601360248201527226b0b935b2ba34b733903332b29032b93937b960691b6044820152606401610943565b80610e285760405162461bcd60e51b815260206004820152600d60248201526c26a226103332b29032b93937b960991b6044820152606401610943565b60005b87811015610e84576000610e3e60115490565b90506000610e4b826119a1565b9050610e573383611a9f565b610e618282611bde565b610e6f601180546001019055565b50508080610e7c90612b89565b915050610e2b565b506001979650505050505050565b610e9c3382611c69565b610eb85760405162461bcd60e51b815260040161094390612a3e565b610a79838383611d4f565b60148054610ed090612b4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610efc90612b4e565b8015610f495780601f10610f1e57610100808354040283529160200191610f49565b820191906000526020600020905b815481529060010190602001808311610f2c57829003601f168201915b505050505081565b6000610f5c8361119c565b8210610fbe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610943565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146110115760405162461bcd60e51b815260040161094390612a09565b60135462010000900460ff16156110605760405162461bcd60e51b81526020600482015260136024820152724d65746164617461206973206c6f636b65642160681b6044820152606401610943565b8051611073906017906020840190612469565b5050565b610a79838383604051806020016040528060008152506114f6565b600061109d60085490565b82106111005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610943565b6008828154811061111357611113612bfa565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610943565b60006001600160a01b0382166112075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610943565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461124d5760405162461bcd60e51b815260040161094390612a09565b6112576000611ef6565b565b600a546001600160a01b031633146112835760405162461bcd60e51b815260040161094390612a09565b60005b8151811015611073576001601260008484815181106112a7576112a7612bfa565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112e381612b89565b915050611286565b60606001805461085890612b4e565b600a546001600160a01b031633146113245760405162461bcd60e51b815260040161094390612a09565b6013805462ff0000191662010000179055565b611073338383611f48565b600a546001600160a01b0316331461136c5760405162461bcd60e51b815260040161094390612a09565b601a805460ff19166001179055565b600a546000906001600160a01b031633146113a85760405162461bcd60e51b815260040161094390612a09565b60185482516011546113ba9190612ac0565b11156114085760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e6720616d6f756e74206578636565647320737570706c790000006044820152606401610943565b60005b825181101561148457600083828151811061142857611428612bfa565b60200260200101519050600061143d60115490565b9050600061144a826119a1565b90506114568383611a9f565b6114608282611bde565b61146e601180546001019055565b505050808061147c90612b89565b91505061140b565b50600192915050565b600a546001600160a01b031633146114b75760405162461bcd60e51b815260040161094390612a09565b600b80546001600160a01b039485166001600160a01b031991821617909155600c805493851693821693909317909255600d8054919093169116179055565b6115003383611c69565b61151c5760405162461bcd60e51b815260040161094390612a3e565b61152884848484612017565b50505050565b600a546000906001600160a01b0316331461155b5760405162461bcd60e51b815260040161094390612a09565b506013805460ff19811660ff918216159081179092551690565b60158054610ed090612b4e565b606061158d82611916565b6115f35760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610943565b6000828152601660205260408120805461160c90612b4e565b80601f016020809104026020016040519081016040528092919081815260200182805461163890612b4e565b80156116855780601f1061165a57610100808354040283529160200191611685565b820191906000526020600020905b81548152906001019060200180831161166857829003601f168201915b5050601a549394505060ff90921691506116c490505760146040516020016116ad91906128cb565b604051602081830303815290604052915050919050565b60006116ce61204a565b90508051600014156116e1575092915050565b8151156117135780826040516020016116fb92919061289c565b60405160208183030381529060405292505050919050565b61171c84612059565b949350505050565b60606015805461085890612b4e565b600a546000906001600160a01b031633146117605760405162461bcd60e51b815260040161094390612a09565b506013805460ff610100808304821615810261ff0019909316929092179283905591041690565b600a546001600160a01b031633146117b15760405162461bcd60e51b815260040161094390612a09565b601955565b600a546001600160a01b031633146117e05760405162461bcd60e51b815260040161094390612a09565b6001600160a01b0381166118455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610943565b61184e81611ef6565b50565b6000600161185e60115490565b6118689190612b0b565b905090565b600a546001600160a01b031633146118975760405162461bcd60e51b815260040161094390612a09565b6001600160a01b0381166000908152601260205260409020805460ff1916600117905550565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b14806118f757506001600160e01b03198216635b5e139f60e01b145b8061084357506301ffc9a760e01b6001600160e01b0319831614610843565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196882611125565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060816119c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ef57806119d981612b89565b91506119e89050600a83612ad8565b91506119c9565b60008167ffffffffffffffff811115611a0a57611a0a612c10565b6040519080825280601f01601f191660200182016040528015611a34576020820181803683370190505b5090505b841561171c57611a49600183612b0b565b9150611a56600a86612ba4565b611a61906030612ac0565b60f81b818381518110611a7657611a76612bfa565b60200101906001600160f81b031916908160001a905350611a98600a86612ad8565b9450611a38565b6001600160a01b038216611af55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610943565b611afe81611916565b15611b4b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610943565b611b5760008383612114565b6001600160a01b0382166000908152600360205260408120805460019290611b80908490612ac0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611be782611916565b611c4a5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610943565b60008281526016602090815260409091208251610a7992840190612469565b6000611c7482611916565b611cd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610943565b6000611ce083611125565b9050806001600160a01b0316846001600160a01b03161480611d1b5750836001600160a01b0316611d10846108db565b6001600160a01b0316145b8061171c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661171c565b826001600160a01b0316611d6282611125565b6001600160a01b031614611dc65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610943565b6001600160a01b038216611e285760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610943565b611e33838383612114565b611e3e600082611933565b6001600160a01b0383166000908152600360205260408120805460019290611e67908490612b0b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e95908490612ac0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611faa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610943565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612022848484611d4f565b61202e848484846121cc565b6115285760405162461bcd60e51b8152600401610943906129b7565b60606017805461085890612b4e565b606061206482611916565b6120c85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610943565b60006120d261204a565b905060008151116120f2576040518060200160405280600081525061210d565b806120fc846119a1565b6040516020016116ad92919061289c565b9392505050565b6001600160a01b03831661216f5761216a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612192565b816001600160a01b0316836001600160a01b0316146121925761219283826122d9565b6001600160a01b0382166121a957610a7981612376565b826001600160a01b0316826001600160a01b031614610a7957610a798282612425565b60006001600160a01b0384163b156122ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612210903390899088908890600401612967565b602060405180830381600087803b15801561222a57600080fd5b505af192505050801561225a575060408051601f3d908101601f19168201909252612257918101906127f1565b60015b6122b4573d808015612288576040519150601f19603f3d011682016040523d82523d6000602084013e61228d565b606091505b5080516122ac5760405162461bcd60e51b8152600401610943906129b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061171c565b506001949350505050565b600060016122e68461119c565b6122f09190612b0b565b600083815260076020526040902054909150808214612343576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061238890600190612b0b565b600083815260096020526040812054600880549394509092849081106123b0576123b0612bfa565b9060005260206000200154905080600883815481106123d1576123d1612bfa565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061240957612409612be4565b6001900381819060005260206000200160009055905550505050565b60006124308361119c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461247590612b4e565b90600052602060002090601f01602090048101928261249757600085556124dd565b82601f106124b057805160ff19168380011785556124dd565b828001600101855582156124dd579182015b828111156124dd5782518255916020019190600101906124c2565b506124e99291506124ed565b5090565b5b808211156124e957600081556001016124ee565b600067ffffffffffffffff83111561251c5761251c612c10565b61252f601f8401601f1916602001612a8f565b905082815283838301111561254357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561256c57600080fd5b813561210d81612c26565b60008060006060848603121561258c57600080fd5b833561259781612c26565b925060208401356125a781612c26565b915060408401356125b781612c26565b809150509250925092565b600080604083850312156125d557600080fd5b82356125e081612c26565b915060208301356125f081612c26565b809150509250929050565b60008060006060848603121561261057600080fd5b833561261b81612c26565b9250602084013561262b81612c26565b929592945050506040919091013590565b6000806000806080858703121561265257600080fd5b843561265d81612c26565b9350602085013561266d81612c26565b925060408501359150606085013567ffffffffffffffff81111561269057600080fd5b8501601f810187136126a157600080fd5b6126b087823560208401612502565b91505092959194509250565b600080604083850312156126cf57600080fd5b82356126da81612c26565b9150602083013580151581146125f057600080fd5b6000806040838503121561270257600080fd5b823561270d81612c26565b946020939093013593505050565b6000602080838503121561272e57600080fd5b823567ffffffffffffffff8082111561274657600080fd5b818501915085601f83011261275a57600080fd5b81358181111561276c5761276c612c10565b8060051b915061277d848301612a8f565b8181528481019084860184860187018a101561279857600080fd5b600095505b838610156127c757803594506127b285612c26565b8483526001959095019491860191860161279d565b5098975050505050505050565b6000602082840312156127e657600080fd5b813561210d81612c3b565b60006020828403121561280357600080fd5b815161210d81612c3b565b60006020828403121561282057600080fd5b813567ffffffffffffffff81111561283757600080fd5b8201601f8101841361284857600080fd5b61171c84823560208401612502565b60006020828403121561286957600080fd5b5035919050565b60008151808452612888816020860160208601612b22565b601f01601f19169290920160200192915050565b600083516128ae818460208801612b22565b8351908301906128c2818360208801612b22565b01949350505050565b600080835481600182811c9150808316806128e757607f831692505b602080841082141561290757634e487b7160e01b86526022600452602486fd5b81801561291b576001811461292c57612959565b60ff19861689528489019650612959565b60008a81526020902060005b868110156129515781548b820152908501908301612938565b505084890196505b509498975050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061299a90830184612870565b9695505050505050565b60208152600061210d6020830184612870565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ab857612ab8612c10565b604052919050565b60008219821115612ad357612ad3612bb8565b500190565b600082612ae757612ae7612bce565b500490565b6000816000190483118215151615612b0657612b06612bb8565b500290565b600082821015612b1d57612b1d612bb8565b500390565b60005b83811015612b3d578181015183820152602001612b25565b838111156115285750506000910152565b600181811c90821680612b6257607f821691505b60208210811415612b8357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9d57612b9d612bb8565b5060010190565b600082612bb357612bb3612bce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461184e57600080fd5b6001600160e01b03198116811461184e57600080fdfea2646970667358221220943f20d9155fa5a73ffee3f17146c5a36b7b11b6cecb492dd9595d9993b0f62364736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d6654753148564d31514648617a754b6161585271424b3654524e7a3939423958787a6a3831396b48595a423168747470733a2f2f697066732e696f2f697066732f516d5a74695947467942504767443358596644397564347464597737326866333953666331684a50486665504866

Deployed Bytecode

0x6080604052600436106102885760003560e01c80638ea5220f1161015a578063baa33c53116100c1578063e985e9c51161007a578063e985e9c51461074b578063eacb912d14610794578063eddd0d9c146107a9578063f2fde38b146107c9578063f7fe6170146107e9578063f80f5dd5146107fe57600080fd5b8063baa33c53146106ad578063bcd25ee5146106cd578063c0e72740146106e2578063c87b56dd146106f7578063d123973014610717578063e8a3d4851461073657600080fd5b8063a4d66daf11610113578063a4d66daf1461060b578063a57b587c14610621578063aa1ef59814610641578063aed04fae14610661578063b88d4fde14610677578063ba6b28d21461069757600080fd5b80638ea5220f1461055c57806395d89b411461057c578063989bdbb6146105915780639b19251a146105a6578063a22cb465146105d6578063a475b5dd146105f657600080fd5b806331b5b907116101fe5780636817c76c116101b75780636817c76c146104b357806370a08231146104c9578063715018a6146104e95780637388a539146104fe57806375f0a8741461051e5780638da5cb5b1461053e57600080fd5b806331b5b907146103ff57806342842e0e1461041f5780634f6ccce71461043f578063518302271461045f57806351fb012d146104795780636352211e1461049357600080fd5b8063095ea7b311610250578063095ea7b31461036057806317fb85941461038257806318160ddd1461039557806323b872dd146103aa57806328000491146103ca5780632f745c59146103df57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063086dd3f01461031c57806309218ee71461033c575b600080fd5b34801561029957600080fd5b506102ad6102a83660046127d4565b61081e565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610849565b6040516102b991906129a4565b3480156102f057600080fd5b506103046102ff366004612857565b6108db565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b506013546102ad9062010000900460ff1681565b34801561034857600080fd5b50610352600f5481565b6040519081526020016102b9565b34801561036c57600080fd5b5061038061037b3660046126ef565b610968565b005b6102ad610390366004612857565b610a7e565b3480156103a157600080fd5b50600854610352565b3480156103b657600080fd5b506103806103c53660046125fb565b610e92565b3480156103d657600080fd5b506102d7610ec3565b3480156103eb57600080fd5b506103526103fa3660046126ef565b610f51565b34801561040b57600080fd5b5061038061041a36600461280e565b610fe7565b34801561042b57600080fd5b5061038061043a3660046125fb565b611077565b34801561044b57600080fd5b5061035261045a366004612857565b611092565b34801561046b57600080fd5b50601a546102ad9060ff1681565b34801561048557600080fd5b506013546102ad9060ff1681565b34801561049f57600080fd5b506103046104ae366004612857565b611125565b3480156104bf57600080fd5b5061035260195481565b3480156104d557600080fd5b506103526104e436600461255a565b61119c565b3480156104f557600080fd5b50610380611223565b34801561050a57600080fd5b5061038061051936600461271b565b611259565b34801561052a57600080fd5b50600c54610304906001600160a01b031681565b34801561054a57600080fd5b50600a546001600160a01b0316610304565b34801561056857600080fd5b50600b54610304906001600160a01b031681565b34801561058857600080fd5b506102d76112eb565b34801561059d57600080fd5b506103806112fa565b3480156105b257600080fd5b506102ad6105c136600461255a565b60126020526000908152604090205460ff1681565b3480156105e257600080fd5b506103806105f13660046126bc565b611337565b34801561060257600080fd5b50610380611342565b34801561061757600080fd5b5061035260185481565b34801561062d57600080fd5b506102ad61063c36600461271b565b61137b565b34801561064d57600080fd5b5061038061065c366004612577565b61148d565b34801561066d57600080fd5b50610352600e5481565b34801561068357600080fd5b5061038061069236600461263c565b6114f6565b3480156106a357600080fd5b5061035260105481565b3480156106b957600080fd5b50600d54610304906001600160a01b031681565b3480156106d957600080fd5b506102ad61152e565b3480156106ee57600080fd5b506102d7611575565b34801561070357600080fd5b506102d7610712366004612857565b611582565b34801561072357600080fd5b506013546102ad90610100900460ff1681565b34801561074257600080fd5b506102d7611724565b34801561075757600080fd5b506102ad6107663660046125c2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a057600080fd5b506102ad611733565b3480156107b557600080fd5b506103806107c4366004612857565b611787565b3480156107d557600080fd5b506103806107e436600461255a565b6117b6565b3480156107f557600080fd5b50610352611851565b34801561080a57600080fd5b5061038061081936600461255a565b61186d565b60006001600160e01b0319821663780e9d6360e01b14806108435750610843826118c6565b92915050565b60606000805461085890612b4e565b80601f016020809104026020016040519081016040528092919081815260200182805461088490612b4e565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b60006108e682611916565b61094c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097382611125565b9050806001600160a01b0316836001600160a01b031614156109e15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610943565b336001600160a01b03821614806109fd57506109fd8133610766565b610a6f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610943565b610a798383611933565b505050565b60135460009060ff610100909104161515600114610ad75760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610943565b60185482610ae460115490565b610aee9190612ac0565b1115610b3c5760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e6720416d6f756e74206578636565647320737570706c790000006044820152606401610943565b60008211610b7d5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610943565b600082601954610b8d9190612aec565b905080341015610bcc5760405162461bcd60e51b815260206004820152600a60248201526909c9ea8408a9c9eaa8e960b31b6044820152606401610943565b60135460ff1615610c2d573360009081526012602052604090205460ff161515600114610c2d5760405162461bcd60e51b815260206004820152600f60248201526e1393d50815d2125511531254d51151608a1b6044820152606401610943565b6000610c3a606434612ad8565b600b54600e549192506000916001600160a01b0390911690610c5c9084612aec565b604051600081818185875af1925050503d8060008114610c98576040519150601f19603f3d011682016040523d82523d6000602084013e610c9d565b606091505b5050600c54600f549192506000916001600160a01b0390911690610cc19085612aec565b604051600081818185875af1925050503d8060008114610cfd576040519150601f19603f3d011682016040523d82523d6000602084013e610d02565b606091505b5050600d546010549192506000916001600160a01b0390911690610d269086612aec565b604051600081818185875af1925050503d8060008114610d62576040519150601f19603f3d011682016040523d82523d6000602084013e610d67565b606091505b5050905082610da85760405162461bcd60e51b815260206004820152600d60248201526c2232bb102332b29032b93937b960991b6044820152606401610943565b81610deb5760405162461bcd60e51b815260206004820152601360248201527226b0b935b2ba34b733903332b29032b93937b960691b6044820152606401610943565b80610e285760405162461bcd60e51b815260206004820152600d60248201526c26a226103332b29032b93937b960991b6044820152606401610943565b60005b87811015610e84576000610e3e60115490565b90506000610e4b826119a1565b9050610e573383611a9f565b610e618282611bde565b610e6f601180546001019055565b50508080610e7c90612b89565b915050610e2b565b506001979650505050505050565b610e9c3382611c69565b610eb85760405162461bcd60e51b815260040161094390612a3e565b610a79838383611d4f565b60148054610ed090612b4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610efc90612b4e565b8015610f495780601f10610f1e57610100808354040283529160200191610f49565b820191906000526020600020905b815481529060010190602001808311610f2c57829003601f168201915b505050505081565b6000610f5c8361119c565b8210610fbe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610943565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146110115760405162461bcd60e51b815260040161094390612a09565b60135462010000900460ff16156110605760405162461bcd60e51b81526020600482015260136024820152724d65746164617461206973206c6f636b65642160681b6044820152606401610943565b8051611073906017906020840190612469565b5050565b610a79838383604051806020016040528060008152506114f6565b600061109d60085490565b82106111005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610943565b6008828154811061111357611113612bfa565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610943565b60006001600160a01b0382166112075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610943565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461124d5760405162461bcd60e51b815260040161094390612a09565b6112576000611ef6565b565b600a546001600160a01b031633146112835760405162461bcd60e51b815260040161094390612a09565b60005b8151811015611073576001601260008484815181106112a7576112a7612bfa565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112e381612b89565b915050611286565b60606001805461085890612b4e565b600a546001600160a01b031633146113245760405162461bcd60e51b815260040161094390612a09565b6013805462ff0000191662010000179055565b611073338383611f48565b600a546001600160a01b0316331461136c5760405162461bcd60e51b815260040161094390612a09565b601a805460ff19166001179055565b600a546000906001600160a01b031633146113a85760405162461bcd60e51b815260040161094390612a09565b60185482516011546113ba9190612ac0565b11156114085760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e6720616d6f756e74206578636565647320737570706c790000006044820152606401610943565b60005b825181101561148457600083828151811061142857611428612bfa565b60200260200101519050600061143d60115490565b9050600061144a826119a1565b90506114568383611a9f565b6114608282611bde565b61146e601180546001019055565b505050808061147c90612b89565b91505061140b565b50600192915050565b600a546001600160a01b031633146114b75760405162461bcd60e51b815260040161094390612a09565b600b80546001600160a01b039485166001600160a01b031991821617909155600c805493851693821693909317909255600d8054919093169116179055565b6115003383611c69565b61151c5760405162461bcd60e51b815260040161094390612a3e565b61152884848484612017565b50505050565b600a546000906001600160a01b0316331461155b5760405162461bcd60e51b815260040161094390612a09565b506013805460ff19811660ff918216159081179092551690565b60158054610ed090612b4e565b606061158d82611916565b6115f35760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610943565b6000828152601660205260408120805461160c90612b4e565b80601f016020809104026020016040519081016040528092919081815260200182805461163890612b4e565b80156116855780601f1061165a57610100808354040283529160200191611685565b820191906000526020600020905b81548152906001019060200180831161166857829003601f168201915b5050601a549394505060ff90921691506116c490505760146040516020016116ad91906128cb565b604051602081830303815290604052915050919050565b60006116ce61204a565b90508051600014156116e1575092915050565b8151156117135780826040516020016116fb92919061289c565b60405160208183030381529060405292505050919050565b61171c84612059565b949350505050565b60606015805461085890612b4e565b600a546000906001600160a01b031633146117605760405162461bcd60e51b815260040161094390612a09565b506013805460ff610100808304821615810261ff0019909316929092179283905591041690565b600a546001600160a01b031633146117b15760405162461bcd60e51b815260040161094390612a09565b601955565b600a546001600160a01b031633146117e05760405162461bcd60e51b815260040161094390612a09565b6001600160a01b0381166118455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610943565b61184e81611ef6565b50565b6000600161185e60115490565b6118689190612b0b565b905090565b600a546001600160a01b031633146118975760405162461bcd60e51b815260040161094390612a09565b6001600160a01b0381166000908152601260205260409020805460ff1916600117905550565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b14806118f757506001600160e01b03198216635b5e139f60e01b145b8061084357506301ffc9a760e01b6001600160e01b0319831614610843565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196882611125565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060816119c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ef57806119d981612b89565b91506119e89050600a83612ad8565b91506119c9565b60008167ffffffffffffffff811115611a0a57611a0a612c10565b6040519080825280601f01601f191660200182016040528015611a34576020820181803683370190505b5090505b841561171c57611a49600183612b0b565b9150611a56600a86612ba4565b611a61906030612ac0565b60f81b818381518110611a7657611a76612bfa565b60200101906001600160f81b031916908160001a905350611a98600a86612ad8565b9450611a38565b6001600160a01b038216611af55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610943565b611afe81611916565b15611b4b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610943565b611b5760008383612114565b6001600160a01b0382166000908152600360205260408120805460019290611b80908490612ac0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611be782611916565b611c4a5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610943565b60008281526016602090815260409091208251610a7992840190612469565b6000611c7482611916565b611cd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610943565b6000611ce083611125565b9050806001600160a01b0316846001600160a01b03161480611d1b5750836001600160a01b0316611d10846108db565b6001600160a01b0316145b8061171c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661171c565b826001600160a01b0316611d6282611125565b6001600160a01b031614611dc65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610943565b6001600160a01b038216611e285760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610943565b611e33838383612114565b611e3e600082611933565b6001600160a01b0383166000908152600360205260408120805460019290611e67908490612b0b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e95908490612ac0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611faa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610943565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612022848484611d4f565b61202e848484846121cc565b6115285760405162461bcd60e51b8152600401610943906129b7565b60606017805461085890612b4e565b606061206482611916565b6120c85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610943565b60006120d261204a565b905060008151116120f2576040518060200160405280600081525061210d565b806120fc846119a1565b6040516020016116ad92919061289c565b9392505050565b6001600160a01b03831661216f5761216a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612192565b816001600160a01b0316836001600160a01b0316146121925761219283826122d9565b6001600160a01b0382166121a957610a7981612376565b826001600160a01b0316826001600160a01b031614610a7957610a798282612425565b60006001600160a01b0384163b156122ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612210903390899088908890600401612967565b602060405180830381600087803b15801561222a57600080fd5b505af192505050801561225a575060408051601f3d908101601f19168201909252612257918101906127f1565b60015b6122b4573d808015612288576040519150601f19603f3d011682016040523d82523d6000602084013e61228d565b606091505b5080516122ac5760405162461bcd60e51b8152600401610943906129b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061171c565b506001949350505050565b600060016122e68461119c565b6122f09190612b0b565b600083815260076020526040902054909150808214612343576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061238890600190612b0b565b600083815260096020526040812054600880549394509092849081106123b0576123b0612bfa565b9060005260206000200154905080600883815481106123d1576123d1612bfa565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061240957612409612be4565b6001900381819060005260206000200160009055905550505050565b60006124308361119c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461247590612b4e565b90600052602060002090601f01602090048101928261249757600085556124dd565b82601f106124b057805160ff19168380011785556124dd565b828001600101855582156124dd579182015b828111156124dd5782518255916020019190600101906124c2565b506124e99291506124ed565b5090565b5b808211156124e957600081556001016124ee565b600067ffffffffffffffff83111561251c5761251c612c10565b61252f601f8401601f1916602001612a8f565b905082815283838301111561254357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561256c57600080fd5b813561210d81612c26565b60008060006060848603121561258c57600080fd5b833561259781612c26565b925060208401356125a781612c26565b915060408401356125b781612c26565b809150509250925092565b600080604083850312156125d557600080fd5b82356125e081612c26565b915060208301356125f081612c26565b809150509250929050565b60008060006060848603121561261057600080fd5b833561261b81612c26565b9250602084013561262b81612c26565b929592945050506040919091013590565b6000806000806080858703121561265257600080fd5b843561265d81612c26565b9350602085013561266d81612c26565b925060408501359150606085013567ffffffffffffffff81111561269057600080fd5b8501601f810187136126a157600080fd5b6126b087823560208401612502565b91505092959194509250565b600080604083850312156126cf57600080fd5b82356126da81612c26565b9150602083013580151581146125f057600080fd5b6000806040838503121561270257600080fd5b823561270d81612c26565b946020939093013593505050565b6000602080838503121561272e57600080fd5b823567ffffffffffffffff8082111561274657600080fd5b818501915085601f83011261275a57600080fd5b81358181111561276c5761276c612c10565b8060051b915061277d848301612a8f565b8181528481019084860184860187018a101561279857600080fd5b600095505b838610156127c757803594506127b285612c26565b8483526001959095019491860191860161279d565b5098975050505050505050565b6000602082840312156127e657600080fd5b813561210d81612c3b565b60006020828403121561280357600080fd5b815161210d81612c3b565b60006020828403121561282057600080fd5b813567ffffffffffffffff81111561283757600080fd5b8201601f8101841361284857600080fd5b61171c84823560208401612502565b60006020828403121561286957600080fd5b5035919050565b60008151808452612888816020860160208601612b22565b601f01601f19169290920160200192915050565b600083516128ae818460208801612b22565b8351908301906128c2818360208801612b22565b01949350505050565b600080835481600182811c9150808316806128e757607f831692505b602080841082141561290757634e487b7160e01b86526022600452602486fd5b81801561291b576001811461292c57612959565b60ff19861689528489019650612959565b60008a81526020902060005b868110156129515781548b820152908501908301612938565b505084890196505b509498975050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061299a90830184612870565b9695505050505050565b60208152600061210d6020830184612870565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ab857612ab8612c10565b604052919050565b60008219821115612ad357612ad3612bb8565b500190565b600082612ae757612ae7612bce565b500490565b6000816000190483118215151615612b0657612b06612bb8565b500290565b600082821015612b1d57612b1d612bb8565b500390565b60005b83811015612b3d578181015183820152602001612b25565b838111156115285750506000910152565b600181811c90821680612b6257607f821691505b60208210811415612b8357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9d57612b9d612bb8565b5060010190565b600082612bb357612bb3612bce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461184e57600080fd5b6001600160e01b03198116811461184e57600080fdfea2646970667358221220943f20d9155fa5a73ffee3f17146c5a36b7b11b6cecb492dd9595d9993b0f62364736f6c63430008070033

Deployed Bytecode Sourcemap

47732:5893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41492:224;;;;;;;;;;-1:-1:-1;41492:224:0;;;;;:::i;:::-;;:::i;:::-;;;8727:14:1;;8720:22;8702:41;;8690:2;8675:18;41492:224:0;;;;;;;;28312:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29871:221::-;;;;;;;;;;-1:-1:-1;29871:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8025:32:1;;;8007:51;;7995:2;7980:18;29871:221:0;7861:203:1;48418:28:0;;;;;;;;;;-1:-1:-1;48418:28:0;;;;;;;;;;;48087:34;;;;;;;;;;;;;;;;;;;20633:25:1;;;20621:2;20606:18;48087:34:0;20487:177:1;29394:411:0;;;;;;;;;;-1:-1:-1;29394:411:0;;;;;:::i;:::-;;:::i;:::-;;49001:1448;;;;;;:::i;:::-;;:::i;42132:113::-;;;;;;;;;;-1:-1:-1;42220:10:0;:17;42132:113;;30621:339;;;;;;;;;;-1:-1:-1;30621:339:0;;;;;:::i;:::-;;:::i;48482:95::-;;;;;;;;;;;;;:::i;41800:256::-;;;;;;;;;;-1:-1:-1;41800:256:0;;;;;:::i;:::-;;:::i;53172:156::-;;;;;;;;;;-1:-1:-1;53172:156:0;;;;;:::i;:::-;;:::i;31031:185::-;;;;;;;;;;-1:-1:-1;31031:185:0;;;;;:::i;:::-;;:::i;42322:233::-;;;;;;;;;;-1:-1:-1;42322:233:0;;;;;:::i;:::-;;:::i;48963:28::-;;;;;;;;;;-1:-1:-1;48963:28:0;;;;;;;;48333:36;;;;;;;;;;-1:-1:-1;48333:36:0;;;;;;;;28006:239;;;;;;;;;;-1:-1:-1;28006:239:0;;;;;:::i;:::-;;:::i;48917:38::-;;;;;;;;;;;;;;;;27736:208;;;;;;;;;;-1:-1:-1;27736:208:0;;;;;:::i;:::-;;:::i;6908:103::-;;;;;;;;;;;;;:::i;50678:191::-;;;;;;;;;;-1:-1:-1;50678:191:0;;;;;:::i;:::-;;:::i;47873:84::-;;;;;;;;;;-1:-1:-1;47873:84:0;;;;-1:-1:-1;;;;;47873:84:0;;;6257:87;;;;;;;;;;-1:-1:-1;6330:6:0;;-1:-1:-1;;;;;6330:6:0;6257:87;;47787:78;;;;;;;;;;-1:-1:-1;47787:78:0;;;;-1:-1:-1;;;;;47787:78:0;;;28481:104;;;;;;;;;;;;;:::i;53440:75::-;;;;;;;;;;;;;:::i;48284:41::-;;;;;;;;;;-1:-1:-1;48284:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30164:155;;;;;;;;;;-1:-1:-1;30164:155:0;;;;;:::i;:::-;;:::i;50457:84::-;;;;;;;;;;;;;:::i;48882:27::-;;;;;;;;;;;;;;;;50877:530;;;;;;;;;;-1:-1:-1;50877:530:0;;;;;:::i;:::-;;:::i;51823:206::-;;;;;;;;;;-1:-1:-1;51823:206:0;;;;;:::i;:::-;;:::i;48051:28::-;;;;;;;;;;;;;;;;31287:328;;;;;;;;;;-1:-1:-1;31287:328:0;;;;;:::i;:::-;;:::i;48129:28::-;;;;;;;;;;;;;;;;47964:78;;;;;;;;;;-1:-1:-1;47964:78:0;;;;-1:-1:-1;;;;;47964:78:0;;;51667:148;;;;;;;;;;;;;:::i;48584:98::-;;;;;;;;;;;;;:::i;52162:784::-;;;;;;;;;;-1:-1:-1;52162:784:0;;;;;:::i;:::-;;:::i;48379:31::-;;;;;;;;;;-1:-1:-1;48379:31:0;;;;;;;;;;;53523:97;;;;;;;;;;;;;:::i;30390:164::-;;;;;;;;;;-1:-1:-1;30390:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30511:25:0;;;30487:4;30511:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30390:164;51531:128;;;;;;;;;;;;;:::i;52037:90::-;;;;;;;;;;-1:-1:-1;52037:90:0;;;;;:::i;:::-;;:::i;7166:201::-;;;;;;;;;;-1:-1:-1;7166:201:0;;;;;:::i;:::-;;:::i;51415:107::-;;;;;;;;;;;;;:::i;50549:121::-;;;;;;;;;;-1:-1:-1;50549:121:0;;;;;:::i;:::-;;:::i;41492:224::-;41594:4;-1:-1:-1;;;;;;41618:50:0;;-1:-1:-1;;;41618:50:0;;:90;;;41672:36;41696:11;41672:23;:36::i;:::-;41611:97;41492:224;-1:-1:-1;;41492:224:0:o;28312:100::-;28366:13;28399:5;28392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28312:100;:::o;29871:221::-;29947:7;29975:16;29983:7;29975;:16::i;:::-;29967:73;;;;-1:-1:-1;;;29967:73:0;;17231:2:1;29967:73:0;;;17213:21:1;17270:2;17250:18;;;17243:30;17309:34;17289:18;;;17282:62;-1:-1:-1;;;17360:18:1;;;17353:42;17412:19;;29967:73:0;;;;;;;;;-1:-1:-1;30060:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30060:24:0;;29871:221::o;29394:411::-;29475:13;29491:23;29506:7;29491:14;:23::i;:::-;29475:39;;29539:5;-1:-1:-1;;;;;29533:11:0;:2;-1:-1:-1;;;;;29533:11:0;;;29525:57;;;;-1:-1:-1;;;29525:57:0;;19108:2:1;29525:57:0;;;19090:21:1;19147:2;19127:18;;;19120:30;19186:34;19166:18;;;19159:62;-1:-1:-1;;;19237:18:1;;;19230:31;19278:19;;29525:57:0;18906:397:1;29525:57:0;5061:10;-1:-1:-1;;;;;29617:21:0;;;;:62;;-1:-1:-1;29642:37:0;29659:5;5061:10;30390:164;:::i;29642:37::-;29595:168;;;;-1:-1:-1;;;29595:168:0;;14433:2:1;29595:168:0;;;14415:21:1;14472:2;14452:18;;;14445:30;14511:34;14491:18;;;14484:62;14582:26;14562:18;;;14555:54;14626:19;;29595:168:0;14231:420:1;29595:168:0;29776:21;29785:2;29789:7;29776:8;:21::i;:::-;29464:341;29394:411;;:::o;49001:1448::-;49108:11;;49080:4;;49108:11;;;;;;:19;;:11;:19;49100:54;;;;-1:-1:-1;;;49100:54:0;;9180:2:1;49100:54:0;;;9162:21:1;9219:2;9199:18;;;9192:30;-1:-1:-1;;;9238:18:1;;;9231:52;9300:18;;49100:54:0;8978:346:1;49100:54:0;49232:5;;49221:6;49201:19;:9;1677:14;;1585:114;49201:19;:26;;;;:::i;:::-;49200:37;;49191:81;;;;-1:-1:-1;;;49191:81:0;;13318:2:1;49191:81:0;;;13300:21:1;13357:2;13337:18;;;13330:30;13396:31;13376:18;;;13369:59;13445:18;;49191:81:0;13116:353:1;49191:81:0;49318:1;49309:6;:10;49301:37;;;;-1:-1:-1;;;49301:37:0;;11874:2:1;49301:37:0;;;11856:21:1;11913:2;11893:18;;;11886:30;-1:-1:-1;;;11932:18:1;;;11925:44;11986:18;;49301:37:0;11672:338:1;49301:37:0;49399:18;49432:6;49420:9;;:18;;;;:::i;:::-;49399:39;;49470:10;49457:9;:23;;49448:47;;;;-1:-1:-1;;;49448:47:0;;18421:2:1;49448:47:0;;;18403:21:1;18460:2;18440:18;;;18433:30;-1:-1:-1;;;18479:18:1;;;18472:40;18529:18;;49448:47:0;18219:334:1;49448:47:0;49567:16;;;;49564:99;;;49614:10;49604:21;;;;:9;:21;;;;;;;;:29;;:21;:29;49595:58;;;;-1:-1:-1;;;49595:58:0;;14089:2:1;49595:58:0;;;14071:21:1;14128:2;14108:18;;;14101:30;-1:-1:-1;;;14147:18:1;;;14140:45;14202:18;;49595:58:0;13887:339:1;49595:58:0;49705:16;49724:13;49734:3;49724:9;:13;:::i;:::-;49768:9;;49799:8;;49705:32;;-1:-1:-1;49748:15:0;;-1:-1:-1;;;;;49768:9:0;;;;49790:17;;49705:32;49790:17;:::i;:::-;49768:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49848:15:0;;49885:14;;49747:65;;-1:-1:-1;49822:21:0;;-1:-1:-1;;;;;49848:15:0;;;;49876:23;;:8;:23;:::i;:::-;49848:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49934:9:0;;49965:8;;49821:83;;-1:-1:-1;49914:15:0;;-1:-1:-1;;;;;49934:9:0;;;;49956:17;;:8;:17;:::i;:::-;49934:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49913:65;;;49998:10;49989:37;;;;-1:-1:-1;;;49989:37:0;;10769:2:1;49989:37:0;;;10751:21:1;10808:2;10788:18;;;10781:30;-1:-1:-1;;;10827:18:1;;;10820:43;10880:18;;49989:37:0;10567:337:1;49989:37:0;50045:16;50036:49;;;;-1:-1:-1;;;50036:49:0;;18760:2:1;50036:49:0;;;18742:21:1;18799:2;18779:18;;;18772:30;-1:-1:-1;;;18818:18:1;;;18811:49;18877:18;;50036:49:0;18558:343:1;50036:49:0;50103:10;50094:37;;;;-1:-1:-1;;;50094:37:0;;12217:2:1;50094:37:0;;;12199:21:1;12256:2;12236:18;;;12229:30;-1:-1:-1;;;12275:18:1;;;12268:43;12328:18;;50094:37:0;12015:337:1;50094:37:0;50156:13;50151:271;50183:6;50175:5;:14;50151:271;;;50211:10;50224:19;:9;1677:14;;1585:114;50224:19;50211:32;;50254:23;50280:13;:2;:11;:13::i;:::-;50254:39;;50321:21;50327:10;50339:2;50321:5;:21::i;:::-;50353:27;50366:2;50370:9;50353:12;:27::i;:::-;50391:21;:9;1796:19;;1814:1;1796:19;;;1707:127;50391:21;50200:222;;50191:7;;;;;:::i;:::-;;;;50151:271;;;-1:-1:-1;50437:4:0;;49001:1448;-1:-1:-1;;;;;;;49001:1448:0:o;30621:339::-;30816:41;5061:10;30849:7;30816:18;:41::i;:::-;30808:103;;;;-1:-1:-1;;;30808:103:0;;;;;;;:::i;:::-;30924:28;30934:4;30940:2;30944:7;30924:9;:28::i;48482:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41800:256::-;41897:7;41933:23;41950:5;41933:16;:23::i;:::-;41925:5;:31;41917:87;;;;-1:-1:-1;;;41917:87:0;;9531:2:1;41917:87:0;;;9513:21:1;9570:2;9550:18;;;9543:30;9609:34;9589:18;;;9582:62;-1:-1:-1;;;9660:18:1;;;9653:41;9711:19;;41917:87:0;9329:407:1;41917:87:0;-1:-1:-1;;;;;;42022:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41800:256::o;53172:156::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;53250:8:::1;::::0;;;::::1;;;:17;53242:49;;;::::0;-1:-1:-1;;;53242:49:0;;20341:2:1;53242:49:0::1;::::0;::::1;20323:21:1::0;20380:2;20360:18;;;20353:30;-1:-1:-1;;;20399:18:1;;;20392:49;20458:18;;53242:49:0::1;20139:343:1::0;53242:49:0::1;53303:16:::0;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53172:156:::0;:::o;31031:185::-;31169:39;31186:4;31192:2;31196:7;31169:39;;;;;;;;;;;;:16;:39::i;42322:233::-;42397:7;42433:30;42220:10;:17;;42132:113;42433:30;42425:5;:38;42417:95;;;;-1:-1:-1;;;42417:95:0;;19928:2:1;42417:95:0;;;19910:21:1;19967:2;19947:18;;;19940:30;20006:34;19986:18;;;19979:62;-1:-1:-1;;;20057:18:1;;;20050:42;20109:19;;42417:95:0;19726:408:1;42417:95:0;42530:10;42541:5;42530:17;;;;;;;;:::i;:::-;;;;;;;;;42523:24;;42322:233;;;:::o;28006:239::-;28078:7;28114:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28114:16:0;28149:19;28141:73;;;;-1:-1:-1;;;28141:73:0;;15269:2:1;28141:73:0;;;15251:21:1;15308:2;15288:18;;;15281:30;15347:34;15327:18;;;15320:62;-1:-1:-1;;;15398:18:1;;;15391:39;15447:19;;28141:73:0;15067:405:1;27736:208:0;27808:7;-1:-1:-1;;;;;27836:19:0;;27828:74;;;;-1:-1:-1;;;27828:74:0;;14858:2:1;27828:74:0;;;14840:21:1;14897:2;14877:18;;;14870:30;14936:34;14916:18;;;14909:62;-1:-1:-1;;;14987:18:1;;;14980:40;15037:19;;27828:74:0;14656:406:1;27828:74:0;-1:-1:-1;;;;;;27920:16:0;;;;;:9;:16;;;;;;;27736:208::o;6908:103::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;6973:30:::1;7000:1;6973:18;:30::i;:::-;6908:103::o:0;50678:191::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;50766:6:::1;50762:100;50780:10;:17;50778:1;:19;50762:100;;;50845:4;50818:9;:24;50828:10;50839:1;50828:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50818:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50818:24:0;:31;;-1:-1:-1;;50818:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50799:3;::::1;::::0;::::1;:::i;:::-;;;;50762:100;;28481:104:::0;28537:13;28570:7;28563:14;;;;;:::i;53440:75::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;53491:8:::1;:15:::0;;-1:-1:-1;;53491:15:0::1;::::0;::::1;::::0;;53440:75::o;30164:155::-;30259:52;5061:10;30292:8;30302;30259:18;:52::i;50457:84::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;50518:8:::1;:15:::0;;-1:-1:-1;;50518:15:0::1;50529:4;50518:15;::::0;;50457:84::o;50877:530::-;6330:6;;50956:4;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;51025:5:::1;::::0;51003:17;;50983:9:::1;1677:14:::0;50983:37:::1;;;;:::i;:::-;50982:48;;50974:90;;;::::0;-1:-1:-1;;;50974:90:0;;16094:2:1;50974:90:0::1;::::0;::::1;16076:21:1::0;16133:2;16113:18;;;16106:30;16172:31;16152:18;;;16145:59;16221:18;;50974:90:0::1;15892:353:1::0;50974:90:0::1;51098:6;51094:283;51110:10;:17;51108:1;:19;51094:283;;;51144:11;51158:10;51169:1;51158:13;;;;;;;;:::i;:::-;;;;;;;51144:27;;51183:10;51196:19;:9;1677:14:::0;;1585:114;51196:19:::1;51183:32;;51227:23;51253:13;:2;:11;:13::i;:::-;51227:39;;51278:14;51284:3;51289:2;51278:5;:14::i;:::-;51303:27;51316:2;51320:9;51303:12;:27::i;:::-;51342:21;:9;1796:19:::0;;1814:1;1796:19;;;1707:127;51342:21:::1;51133:244;;;51129:3;;;;;:::i;:::-;;;;51094:283;;;-1:-1:-1::0;51394:4:0::1;::::0;50877:530;-1:-1:-1;;50877:530:0:o;51823:206::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;51942:9:::1;:15:::0;;-1:-1:-1;;;;;51942:15:0;;::::1;-1:-1:-1::0;;;;;;51942:15:0;;::::1;;::::0;;;51969::::1;:24:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;52005:9:::1;:15:::0;;;;;::::1;::::0;::::1;;::::0;;51823:206::o;31287:328::-;31462:41;5061:10;31495:7;31462:18;:41::i;:::-;31454:103;;;;-1:-1:-1;;;31454:103:0;;;;;;;:::i;:::-;31568:39;31582:4;31588:2;31592:7;31601:5;31568:13;:39::i;:::-;31287:328;;;;:::o;51667:148::-;6330:6;;51719:4;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;-1:-1:-1;51755:16:0::1;::::0;;-1:-1:-1;;51735:36:0;::::1;51755:16;::::0;;::::1;51754:17;51735:36:::0;;::::1;::::0;;;51790:16;51667:148;:::o;48584:98::-;;;;;;;:::i;52162:784::-;52235:13;52269:16;52277:7;52269;:16::i;:::-;52261:78;;;;-1:-1:-1;;;52261:78:0;;16813:2:1;52261:78:0;;;16795:21:1;16852:2;16832:18;;;16825:30;16891:34;16871:18;;;16864:62;-1:-1:-1;;;16942:18:1;;;16935:47;16999:19;;52261:78:0;16611:413:1;52261:78:0;52364:23;52390:19;;;:10;:19;;;;;52364:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52424:8:0;;52364:45;;-1:-1:-1;;52424:8:0;;;;;-1:-1:-1;52420:83:0;;-1:-1:-1;52420:83:0;52479:9;52462:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;52448:42;;;52162:784;;;:::o;52420:83::-;52513:18;52534:10;:8;:10::i;:::-;52513:31;;52626:4;52620:18;52642:1;52620:23;52616:72;;;-1:-1:-1;52667:9:0;52162:784;-1:-1:-1;;52162:784:0:o;52616:72::-;52792:23;;:27;52788:108;;52867:4;52873:9;52850:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52836:48;;;;52162:784;;;:::o;52788:108::-;52915:23;52930:7;52915:14;:23::i;:::-;52908:30;52162:784;-1:-1:-1;;;;52162:784:0:o;53523:97::-;53567:13;53600:12;53593:19;;;;;:::i;51531:128::-;6330:6;;51578:4;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;-1:-1:-1;51609:11:0::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;51608:12;51594:26:::0;::::1;-1:-1:-1::0;;51594:26:0;;::::1;::::0;;;::::1;::::0;;;;51639:11;::::1;;51531:128:::0;:::o;52037:90::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;52100:9:::1;:18:::0;52037:90::o;7166:201::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7255:22:0;::::1;7247:73;;;::::0;-1:-1:-1;;;7247:73:0;;10362:2:1;7247:73:0::1;::::0;::::1;10344:21:1::0;10401:2;10381:18;;;10374:30;10440:34;10420:18;;;10413:62;-1:-1:-1;;;10491:18:1;;;10484:36;10537:19;;7247:73:0::1;10160:402:1::0;7247:73:0::1;7331:28;7350:8;7331:18;:28::i;:::-;7166:201:::0;:::o;51415:107::-;51464:7;51511:1;51491:19;:9;1677:14;;1585:114;51491:19;:21;;;;:::i;:::-;51483:30;;51415:107;:::o;50549:121::-;6330:6;;-1:-1:-1;;;;;6330:6:0;5061:10;6477:23;6469:68;;;;-1:-1:-1;;;6469:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50617:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;50617:26:0::1;50639:4;50617:26;::::0;;50549:121;:::o;1707:127::-;1796:19;;1814:1;1796:19;;;1707:127::o;27367:305::-;27469:4;-1:-1:-1;;;;;;27506:40:0;;-1:-1:-1;;;27506:40:0;;:105;;-1:-1:-1;;;;;;;27563:48:0;;-1:-1:-1;;;27563:48:0;27506:105;:158;;;-1:-1:-1;;;;;;;;;;19150:40:0;;;27628:36;19041:157;33125:127;33190:4;33214:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33214:16:0;:30;;;33125:127::o;37271:174::-;37346:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37346:29:0;-1:-1:-1;;;;;37346:29:0;;;;;;;;:24;;37400:23;37346:24;37400:14;:23::i;:::-;-1:-1:-1;;;;;37391:46:0;;;;;;;;;;;37271:174;;:::o;2543:723::-;2599:13;2820:10;2816:53;;-1:-1:-1;;2847:10:0;;;;;;;;;;;;-1:-1:-1;;;2847:10:0;;;;;2543:723::o;2816:53::-;2894:5;2879:12;2935:78;2942:9;;2935:78;;2968:8;;;;:::i;:::-;;-1:-1:-1;2991:10:0;;-1:-1:-1;2999:2:0;2991:10;;:::i;:::-;;;2935:78;;;3023:19;3055:6;3045:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3045:17:0;;3023:39;;3073:154;3080:10;;3073:154;;3107:11;3117:1;3107:11;;:::i;:::-;;-1:-1:-1;3176:10:0;3184:2;3176:5;:10;:::i;:::-;3163:24;;:2;:24;:::i;:::-;3150:39;;3133:6;3140;3133:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3133:56:0;;;;;;;;-1:-1:-1;3204:11:0;3213:2;3204:11;;:::i;:::-;;;3073:154;;35103:439;-1:-1:-1;;;;;35183:16:0;;35175:61;;;;-1:-1:-1;;;35175:61:0;;16452:2:1;35175:61:0;;;16434:21:1;;;16471:18;;;16464:30;16530:34;16510:18;;;16503:62;16582:18;;35175:61:0;16250:356:1;35175:61:0;35256:16;35264:7;35256;:16::i;:::-;35255:17;35247:58;;;;-1:-1:-1;;;35247:58:0;;11517:2:1;35247:58:0;;;11499:21:1;11556:2;11536:18;;;11529:30;11595;11575:18;;;11568:58;11643:18;;35247:58:0;11315:352:1;35247:58:0;35318:45;35347:1;35351:2;35355:7;35318:20;:45::i;:::-;-1:-1:-1;;;;;35376:13:0;;;;;;:9;:13;;;;;:18;;35393:1;;35376:13;:18;;35393:1;;35376:18;:::i;:::-;;;;-1:-1:-1;;35405:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35405:21:0;-1:-1:-1;;;;;35405:21:0;;;;;;;;35444:33;;35405:16;;;35444:33;;35405:16;;35444:33;53303:16:::1;53172:156:::0;:::o;52954:210::-;53047:16;53055:7;53047;:16::i;:::-;53039:75;;;;-1:-1:-1;;;53039:75:0;;15679:2:1;53039:75:0;;;15661:21:1;15718:2;15698:18;;;15691:30;15757:34;15737:18;;;15730:62;-1:-1:-1;;;15808:18:1;;;15801:44;15862:19;;53039:75:0;15477:410:1;53039:75:0;53125:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;33419:348::-;33512:4;33537:16;33545:7;33537;:16::i;:::-;33529:73;;;;-1:-1:-1;;;33529:73:0;;13676:2:1;33529:73:0;;;13658:21:1;13715:2;13695:18;;;13688:30;13754:34;13734:18;;;13727:62;-1:-1:-1;;;13805:18:1;;;13798:42;13857:19;;33529:73:0;13474:408:1;33529:73:0;33613:13;33629:23;33644:7;33629:14;:23::i;:::-;33613:39;;33682:5;-1:-1:-1;;;;;33671:16:0;:7;-1:-1:-1;;;;;33671:16:0;;:51;;;;33715:7;-1:-1:-1;;;;;33691:31:0;:20;33703:7;33691:11;:20::i;:::-;-1:-1:-1;;;;;33691:31:0;;33671:51;:87;;;-1:-1:-1;;;;;;30511:25:0;;;30487:4;30511:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33726:32;30390:164;36528:625;36687:4;-1:-1:-1;;;;;36660:31:0;:23;36675:7;36660:14;:23::i;:::-;-1:-1:-1;;;;;36660:31:0;;36652:81;;;;-1:-1:-1;;;36652:81:0;;11111:2:1;36652:81:0;;;11093:21:1;11150:2;11130:18;;;11123:30;11189:34;11169:18;;;11162:62;-1:-1:-1;;;11240:18:1;;;11233:35;11285:19;;36652:81:0;10909:401:1;36652:81:0;-1:-1:-1;;;;;36752:16:0;;36744:65;;;;-1:-1:-1;;;36744:65:0;;12559:2:1;36744:65:0;;;12541:21:1;12598:2;12578:18;;;12571:30;12637:34;12617:18;;;12610:62;-1:-1:-1;;;12688:18:1;;;12681:34;12732:19;;36744:65:0;12357:400:1;36744:65:0;36822:39;36843:4;36849:2;36853:7;36822:20;:39::i;:::-;36926:29;36943:1;36947:7;36926:8;:29::i;:::-;-1:-1:-1;;;;;36968:15:0;;;;;;:9;:15;;;;;:20;;36987:1;;36968:15;:20;;36987:1;;36968:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36999:13:0;;;;;;:9;:13;;;;;:18;;37016:1;;36999:13;:18;;37016:1;;36999:18;:::i;:::-;;;;-1:-1:-1;;37028:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37028:21:0;-1:-1:-1;;;;;37028:21:0;;;;;;;;;37067:27;;37028:16;;37067:27;;;;;;;29464:341;29394:411;;:::o;7527:191::-;7620:6;;;-1:-1:-1;;;;;7637:17:0;;;-1:-1:-1;;;;;;7637:17:0;;;;;;;7670:40;;7620:6;;;7637:17;7620:6;;7670:40;;7601:16;;7670:40;7590:128;7527:191;:::o;37587:315::-;37742:8;-1:-1:-1;;;;;37733:17:0;:5;-1:-1:-1;;;;;37733:17:0;;;37725:55;;;;-1:-1:-1;;;37725:55:0;;12964:2:1;37725:55:0;;;12946:21:1;13003:2;12983:18;;;12976:30;13042:27;13022:18;;;13015:55;13087:18;;37725:55:0;12762:349:1;37725:55:0;-1:-1:-1;;;;;37791:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37791:46:0;;;;;;;;;;37853:41;;8702::1;;;37853::0;;8675:18:1;37853:41:0;;;;;;;37587:315;;;:::o;32497:::-;32654:28;32664:4;32670:2;32674:7;32654:9;:28::i;:::-;32701:48;32724:4;32730:2;32734:7;32743:5;32701:22;:48::i;:::-;32693:111;;;;-1:-1:-1;;;32693:111:0;;;;;;;:::i;53334:100::-;53386:13;53419:7;53412:14;;;;;:::i;28656:334::-;28729:13;28763:16;28771:7;28763;:16::i;:::-;28755:76;;;;-1:-1:-1;;;28755:76:0;;18005:2:1;28755:76:0;;;17987:21:1;18044:2;18024:18;;;18017:30;18083:34;18063:18;;;18056:62;-1:-1:-1;;;18134:18:1;;;18127:45;18189:19;;28755:76:0;17803:411:1;28755:76:0;28844:21;28868:10;:8;:10::i;:::-;28844:34;;28920:1;28902:7;28896:21;:25;:86;;;;;;;;;;;;;;;;;28948:7;28957:18;:7;:16;:18::i;:::-;28931:45;;;;;;;;;:::i;28896:86::-;28889:93;28656:334;-1:-1:-1;;;28656:334:0:o;43168:589::-;-1:-1:-1;;;;;43374:18:0;;43370:187;;43409:40;43441:7;44584:10;:17;;44557:24;;;;:15;:24;;;;;:44;;;44612:24;;;;;;;;;;;;44480:164;43409:40;43370:187;;;43479:2;-1:-1:-1;;;;;43471:10:0;:4;-1:-1:-1;;;;;43471:10:0;;43467:90;;43498:47;43531:4;43537:7;43498:32;:47::i;:::-;-1:-1:-1;;;;;43571:16:0;;43567:183;;43604:45;43641:7;43604:36;:45::i;43567:183::-;43677:4;-1:-1:-1;;;;;43671:10:0;:2;-1:-1:-1;;;;;43671:10:0;;43667:83;;43698:40;43726:2;43730:7;43698:27;:40::i;38467:799::-;38622:4;-1:-1:-1;;;;;38643:13:0;;9253:19;:23;38639:620;;38679:72;;-1:-1:-1;;;38679:72:0;;-1:-1:-1;;;;;38679:36:0;;;;;:72;;5061:10;;38730:4;;38736:7;;38745:5;;38679:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38679:72:0;;;;;;;;-1:-1:-1;;38679:72:0;;;;;;;;;;;;:::i;:::-;;;38675:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38921:13:0;;38917:272;;38964:60;;-1:-1:-1;;;38964:60:0;;;;;;;:::i;38917:272::-;39139:6;39133:13;39124:6;39120:2;39116:15;39109:38;38675:529;-1:-1:-1;;;;;;38802:51:0;-1:-1:-1;;;38802:51:0;;-1:-1:-1;38795:58:0;;38639:620;-1:-1:-1;39243:4:0;38467:799;;;;;;:::o;45271:988::-;45537:22;45587:1;45562:22;45579:4;45562:16;:22::i;:::-;:26;;;;:::i;:::-;45599:18;45620:26;;;:17;:26;;;;;;45537:51;;-1:-1:-1;45753:28:0;;;45749:328;;-1:-1:-1;;;;;45820:18:0;;45798:19;45820:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45871:30;;;;;;:44;;;45988:30;;:17;:30;;;;;:43;;;45749:328;-1:-1:-1;46173:26:0;;;;:17;:26;;;;;;;;46166:33;;;-1:-1:-1;;;;;46217:18:0;;;;;:12;:18;;;;;:34;;;;;;;46210:41;45271:988::o;46554:1079::-;46832:10;:17;46807:22;;46832:21;;46852:1;;46832:21;:::i;:::-;46864:18;46885:24;;;:15;:24;;;;;;47258:10;:26;;46807:46;;-1:-1:-1;46885:24:0;;46807:46;;47258:26;;;;;;:::i;:::-;;;;;;;;;47236:48;;47322:11;47297:10;47308;47297:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47402:28;;;:15;:28;;;;;;;:41;;;47574:24;;;;;47567:31;47609:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46625:1008;;;46554:1079;:::o;44058:221::-;44143:14;44160:20;44177:2;44160:16;:20::i;:::-;-1:-1:-1;;;;;44191:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44236:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44058:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;677:553::-;778:6;786;794;847:2;835:9;826:7;822:23;818:32;815:52;;;863:1;860;853:12;815:52;902:9;889:23;921:31;946:5;921:31;:::i;:::-;971:5;-1:-1:-1;1028:2:1;1013:18;;1000:32;1041:33;1000:32;1041:33;:::i;:::-;1093:7;-1:-1:-1;1152:2:1;1137:18;;1124:32;1165:33;1124:32;1165:33;:::i;:::-;1217:7;1207:17;;;677:553;;;;;:::o;1235:388::-;1303:6;1311;1364:2;1352:9;1343:7;1339:23;1335:32;1332:52;;;1380:1;1377;1370:12;1332:52;1419:9;1406:23;1438:31;1463:5;1438:31;:::i;:::-;1488:5;-1:-1:-1;1545:2:1;1530:18;;1517:32;1558:33;1517:32;1558:33;:::i;:::-;1610:7;1600:17;;;1235:388;;;;;:::o;1628:456::-;1705:6;1713;1721;1774:2;1762:9;1753:7;1749:23;1745:32;1742:52;;;1790:1;1787;1780:12;1742:52;1829:9;1816:23;1848:31;1873:5;1848:31;:::i;:::-;1898:5;-1:-1:-1;1955:2:1;1940:18;;1927:32;1968:33;1927:32;1968:33;:::i;:::-;1628:456;;2020:7;;-1:-1:-1;;;2074:2:1;2059:18;;;;2046:32;;1628:456::o;2089:794::-;2184:6;2192;2200;2208;2261:3;2249:9;2240:7;2236:23;2232:33;2229:53;;;2278:1;2275;2268:12;2229:53;2317:9;2304:23;2336:31;2361:5;2336:31;:::i;:::-;2386:5;-1:-1:-1;2443:2:1;2428:18;;2415:32;2456:33;2415:32;2456:33;:::i;:::-;2508:7;-1:-1:-1;2562:2:1;2547:18;;2534:32;;-1:-1:-1;2617:2:1;2602:18;;2589:32;2644:18;2633:30;;2630:50;;;2676:1;2673;2666:12;2630:50;2699:22;;2752:4;2744:13;;2740:27;-1:-1:-1;2730:55:1;;2781:1;2778;2771:12;2730:55;2804:73;2869:7;2864:2;2851:16;2846:2;2842;2838:11;2804:73;:::i;:::-;2794:83;;;2089:794;;;;;;;:::o;2888:416::-;2953:6;2961;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3069:9;3056:23;3088:31;3113:5;3088:31;:::i;:::-;3138:5;-1:-1:-1;3195:2:1;3180:18;;3167:32;3237:15;;3230:23;3218:36;;3208:64;;3268:1;3265;3258:12;3309:315;3377:6;3385;3438:2;3426:9;3417:7;3413:23;3409:32;3406:52;;;3454:1;3451;3444:12;3406:52;3493:9;3480:23;3512:31;3537:5;3512:31;:::i;:::-;3562:5;3614:2;3599:18;;;;3586:32;;-1:-1:-1;;;3309:315:1:o;3629:1032::-;3713:6;3744:2;3787;3775:9;3766:7;3762:23;3758:32;3755:52;;;3803:1;3800;3793:12;3755:52;3843:9;3830:23;3872:18;3913:2;3905:6;3902:14;3899:34;;;3929:1;3926;3919:12;3899:34;3967:6;3956:9;3952:22;3942:32;;4012:7;4005:4;4001:2;3997:13;3993:27;3983:55;;4034:1;4031;4024:12;3983:55;4070:2;4057:16;4092:2;4088;4085:10;4082:36;;;4098:18;;:::i;:::-;4144:2;4141:1;4137:10;4127:20;;4167:28;4191:2;4187;4183:11;4167:28;:::i;:::-;4229:15;;;4260:12;;;;4292:11;;;4322;;;4318:20;;4315:33;-1:-1:-1;4312:53:1;;;4361:1;4358;4351:12;4312:53;4383:1;4374:10;;4393:238;4407:2;4404:1;4401:9;4393:238;;;4478:3;4465:17;4452:30;;4495:31;4520:5;4495:31;:::i;:::-;4539:18;;;4425:1;4418:9;;;;;4577:12;;;;4609;;4393:238;;;-1:-1:-1;4650:5:1;3629:1032;-1:-1:-1;;;;;;;;3629:1032:1:o;4666:245::-;4724:6;4777:2;4765:9;4756:7;4752:23;4748:32;4745:52;;;4793:1;4790;4783:12;4745:52;4832:9;4819:23;4851:30;4875:5;4851:30;:::i;4916:249::-;4985:6;5038:2;5026:9;5017:7;5013:23;5009:32;5006:52;;;5054:1;5051;5044:12;5006:52;5086:9;5080:16;5105:30;5129:5;5105:30;:::i;5170:450::-;5239:6;5292:2;5280:9;5271:7;5267:23;5263:32;5260:52;;;5308:1;5305;5298:12;5260:52;5348:9;5335:23;5381:18;5373:6;5370:30;5367:50;;;5413:1;5410;5403:12;5367:50;5436:22;;5489:4;5481:13;;5477:27;-1:-1:-1;5467:55:1;;5518:1;5515;5508:12;5467:55;5541:73;5606:7;5601:2;5588:16;5583:2;5579;5575:11;5541:73;:::i;5625:180::-;5684:6;5737:2;5725:9;5716:7;5712:23;5708:32;5705:52;;;5753:1;5750;5743:12;5705:52;-1:-1:-1;5776:23:1;;5625:180;-1:-1:-1;5625:180:1:o;5810:257::-;5851:3;5889:5;5883:12;5916:6;5911:3;5904:19;5932:63;5988:6;5981:4;5976:3;5972:14;5965:4;5958:5;5954:16;5932:63;:::i;:::-;6049:2;6028:15;-1:-1:-1;;6024:29:1;6015:39;;;;6056:4;6011:50;;5810:257;-1:-1:-1;;5810:257:1:o;6072:470::-;6251:3;6289:6;6283:13;6305:53;6351:6;6346:3;6339:4;6331:6;6327:17;6305:53;:::i;:::-;6421:13;;6380:16;;;;6443:57;6421:13;6380:16;6477:4;6465:17;;6443:57;:::i;:::-;6516:20;;6072:470;-1:-1:-1;;;;6072:470:1:o;6547:1099::-;6675:3;6704:1;6737:6;6731:13;6767:3;6789:1;6817:9;6813:2;6809:18;6799:28;;6877:2;6866:9;6862:18;6899;6889:61;;6943:4;6935:6;6931:17;6921:27;;6889:61;6969:2;7017;7009:6;7006:14;6986:18;6983:38;6980:165;;;-1:-1:-1;;;7044:33:1;;7100:4;7097:1;7090:15;7130:4;7051:3;7118:17;6980:165;7161:18;7188:104;;;;7306:1;7301:320;;;;7154:467;;7188:104;-1:-1:-1;;7221:24:1;;7209:37;;7266:16;;;;-1:-1:-1;7188:104:1;;7301:320;21022:1;21015:14;;;21059:4;21046:18;;7396:1;7410:165;7424:6;7421:1;7418:13;7410:165;;;7502:14;;7489:11;;;7482:35;7545:16;;;;7439:10;;7410:165;;;7414:3;;7604:6;7599:3;7595:16;7588:23;;7154:467;-1:-1:-1;7637:3:1;;6547:1099;-1:-1:-1;;;;;;;;6547:1099:1:o;8069:488::-;-1:-1:-1;;;;;8338:15:1;;;8320:34;;8390:15;;8385:2;8370:18;;8363:43;8437:2;8422:18;;8415:34;;;8485:3;8480:2;8465:18;;8458:31;;;8263:4;;8506:45;;8531:19;;8523:6;8506:45;:::i;:::-;8498:53;8069:488;-1:-1:-1;;;;;;8069:488:1:o;8754:219::-;8903:2;8892:9;8885:21;8866:4;8923:44;8963:2;8952:9;8948:18;8940:6;8923:44;:::i;9741:414::-;9943:2;9925:21;;;9982:2;9962:18;;;9955:30;10021:34;10016:2;10001:18;;9994:62;-1:-1:-1;;;10087:2:1;10072:18;;10065:48;10145:3;10130:19;;9741:414::o;17442:356::-;17644:2;17626:21;;;17663:18;;;17656:30;17722:34;17717:2;17702:18;;17695:62;17789:2;17774:18;;17442:356::o;19308:413::-;19510:2;19492:21;;;19549:2;19529:18;;;19522:30;19588:34;19583:2;19568:18;;19561:62;-1:-1:-1;;;19654:2:1;19639:18;;19632:47;19711:3;19696:19;;19308:413::o;20669:275::-;20740:2;20734:9;20805:2;20786:13;;-1:-1:-1;;20782:27:1;20770:40;;20840:18;20825:34;;20861:22;;;20822:62;20819:88;;;20887:18;;:::i;:::-;20923:2;20916:22;20669:275;;-1:-1:-1;20669:275:1:o;21075:128::-;21115:3;21146:1;21142:6;21139:1;21136:13;21133:39;;;21152:18;;:::i;:::-;-1:-1:-1;21188:9:1;;21075:128::o;21208:120::-;21248:1;21274;21264:35;;21279:18;;:::i;:::-;-1:-1:-1;21313:9:1;;21208:120::o;21333:168::-;21373:7;21439:1;21435;21431:6;21427:14;21424:1;21421:21;21416:1;21409:9;21402:17;21398:45;21395:71;;;21446:18;;:::i;:::-;-1:-1:-1;21486:9:1;;21333:168::o;21506:125::-;21546:4;21574:1;21571;21568:8;21565:34;;;21579:18;;:::i;:::-;-1:-1:-1;21616:9:1;;21506:125::o;21636:258::-;21708:1;21718:113;21732:6;21729:1;21726:13;21718:113;;;21808:11;;;21802:18;21789:11;;;21782:39;21754:2;21747:10;21718:113;;;21849:6;21846:1;21843:13;21840:48;;;-1:-1:-1;;21884:1:1;21866:16;;21859:27;21636:258::o;21899:380::-;21978:1;21974:12;;;;22021;;;22042:61;;22096:4;22088:6;22084:17;22074:27;;22042:61;22149:2;22141:6;22138:14;22118:18;22115:38;22112:161;;;22195:10;22190:3;22186:20;22183:1;22176:31;22230:4;22227:1;22220:15;22258:4;22255:1;22248:15;22112:161;;21899:380;;;:::o;22284:135::-;22323:3;-1:-1:-1;;22344:17:1;;22341:43;;;22364:18;;:::i;:::-;-1:-1:-1;22411:1:1;22400:13;;22284:135::o;22424:112::-;22456:1;22482;22472:35;;22487:18;;:::i;:::-;-1:-1:-1;22521:9:1;;22424:112::o;22541:127::-;22602:10;22597:3;22593:20;22590:1;22583:31;22633:4;22630:1;22623:15;22657:4;22654:1;22647:15;22673:127;22734:10;22729:3;22725:20;22722:1;22715:31;22765:4;22762:1;22755:15;22789:4;22786:1;22779:15;22805:127;22866:10;22861:3;22857:20;22854:1;22847:31;22897:4;22894:1;22887:15;22921:4;22918:1;22911:15;22937:127;22998:10;22993:3;22989:20;22986:1;22979:31;23029:4;23026:1;23019:15;23053:4;23050:1;23043:15;23069:127;23130:10;23125:3;23121:20;23118:1;23111:31;23161:4;23158:1;23151:15;23185:4;23182:1;23175:15;23201:131;-1:-1:-1;;;;;23276:31:1;;23266:42;;23256:70;;23322:1;23319;23312:12;23337:131;-1:-1:-1;;;;;;23411:32:1;;23401:43;;23391:71;;23458:1;23455;23448:12

Swarm Source

ipfs://943f20d9155fa5a73ffee3f17146c5a36b7b11b6cecb492dd9595d9993b0f623
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.