ETH Price: $2,607.39 (-1.51%)

Token

Dragon Of Midgard (DRAGON)
 

Overview

Max Total Supply

782 DRAGON

Holders

336

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
umutak47shawty.eth
Balance
1 DRAGON
0x0b16dd061ad33b866341dc3bf17264bd6111f10d
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:
DragonsOfMidgard

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-22
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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;
    }
}

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;
}

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

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

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

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;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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.
     */
 

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

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

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;


    string public _baseURI;
    /**
     * @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 base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, 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 _baseURI;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 {}
}



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();
    }
}
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;
    }
}

pragma solidity ^0.8.0;

contract DragonsOfMidgard is ERC721Enumerable, Ownable
{
    using Counters for Counters.Counter;
    using SafeMath for uint256;
    Counters.Counter private _basetokenIds;
    string private juvenile = 'juvenile';
    string private ancient = 'ancient';
    string private greatWyrm = 'greatWyrm';
    uint public basePrice = 0.07 ether;
    uint public juvenilePrice;
    uint public ancientPrice;
    uint public greatWyrmPrice ;
    uint public maxQuantity =30;
    uint public maxNewColQuantity=30;
    uint public maxPreSaleQuantity=20;
    uint public baseSupply=9999;
    uint private ageSupply=10000;
    uint public preSaleSupply=3000;
    bool public isPaused = true;
    bool public isNewColPaused=true;
    bool public isMintAgePaused=true;
    bool public isPreSalePaused=true;

    struct EVOLVING{
        bool juvenileAge ;
        bool ancientAge;
        bool greatWyrmAge;
    }

    struct NewCollection{
        string name;
        uint quantity;
        uint price;
    }
    
    mapping(uint => EVOLVING) public evolving;
    mapping(string => NewCollection) public _newCollection;
    constructor(string memory baseURI) ERC721("Dragon Of Midgard", "DRAGON")  {
        setBaseURI(baseURI);
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }
    
        function getPrice(string memory _type) public view returns(uint256) {
        if (keccak256(bytes(_type)) == keccak256(bytes(juvenile))) {
            return juvenilePrice;
        } else if (keccak256(bytes(_type)) == keccak256(bytes(ancient))) {
            return ancientPrice;
        } else if (keccak256(bytes(_type)) == keccak256(bytes(greatWyrm))) {
            return greatWyrmPrice;
        } else {
            revert("HDHDF");
        }
    }

   
    function mint(uint chosenAmount) public payable   {
        require(isPaused == false, "Sale is not active at the moment");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxQuantity,"Chosen Amount exceeds MaxQuantity");
        require(baseSupply>=baseTotalSupply()+chosenAmount,"Quantity is greater than remainig base supply");
        require(basePrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
        _basetokenIds.increment();
        _safeMint(msg.sender, baseTotalSupply());
        evolving[baseTotalSupply()] = EVOLVING({
            
        juvenileAge:false,
        ancientAge:false,
        greatWyrmAge:false
            
         });
          
        }
        

        }
        function mintAges(uint _tokenId,string memory _age) public payable   {
        require(isMintAgePaused == false, "MintAge is not active at the moment");
        require(_tokenId>=0&&_tokenId<=9999,"Base Token Id is not correct");
        require(ownerOf(_tokenId)==msg.sender,"user are not owner of this token");
        require(getPrice(_age)==msg.value,"incorrect price");
        EVOLVING storage evolvData = evolving[_tokenId];
         if (keccak256(bytes(_age)) == keccak256(bytes(juvenile))) {
            require(evolvData.juvenileAge==false,"juvenileAge is already Minted");
            _safeMint(msg.sender, ageSupply);
            ageSupply++;
            evolvData.juvenileAge=true;
        } else if (keccak256(bytes(_age)) == keccak256(bytes(ancient))) {
            require(evolvData.ancientAge==false,"ancientAge is already Minted");
            require(evolvData.juvenileAge==true,"First Mint JuvenileAge ");
            _safeMint(msg.sender, ageSupply);
            ageSupply++;
            evolvData.ancientAge=true;
        } else if (keccak256(bytes(_age)) == keccak256(bytes(greatWyrm))) {
            require(evolvData.ancientAge==true,"First Mint ancientAge");
            require(evolvData.juvenileAge==true,"First Mint JuvenileAge ");
            require(evolvData.greatWyrmAge==false,"greatWyrmAge is already Minted");
            _safeMint(msg.sender, ageSupply);
            ageSupply++;
            evolvData.greatWyrmAge=true;
        } else {
            revert("Wrong Age Entered");
        }
        
    }
     function burn(uint256 tokenId) public onlyOwner {
      _burn(tokenId);
    }
    
    function baseTotalSupply() public view returns (uint)
    {
        return _basetokenIds.current();
    }
     function ageTotalSupply() private view returns (uint)
    {
        return ageSupply;
    }
     function ageTotalsupply() public view returns (uint)
    {
        return ageSupply-10000;
    }
    
     function reserveTokens(uint quantity) public onlyOwner {
        require(quantity <=200, "quantity is greater than 200.");
        require(baseSupply>=baseTotalSupply()+quantity,"quantity is greater than remaining base Supply");
        for (uint i = 0; i < quantity; i++) {
        _basetokenIds.increment();
        _safeMint(msg.sender, baseTotalSupply());
        evolving[baseTotalSupply()] = EVOLVING({
        juvenileAge:false,
        ancientAge:false,
        greatWyrmAge:false
            
            
         });
           
        }
    }
    function addNewCollection(string memory _artName,uint _quantity,uint _price)public onlyOwner
    {
          _newCollection[_artName]=NewCollection({
            name :_artName,
            quantity:_quantity,
            price:_price
           });
    }
    
    function newCollectionMint(string memory _artName, uint _chosenAmount) public payable 
    {
        require(isNewColPaused == false, "Sale is not active at the moment");
        require(_chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(_chosenAmount <= maxNewColQuantity,"Chosen Amount exceeds MaxQuantity");
        NewCollection storage newArt = _newCollection[_artName];
        require(newArt.quantity>0,"Sold Out");
        require(newArt.quantity>=_chosenAmount,"Quantity is greater than remaining Supply");
        require(newArt.price.mul(_chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < _chosenAmount; i++) {
            _safeMint(msg.sender, ageTotalSupply());
            ageSupply++;
            
            }
            newArt.quantity-=_chosenAmount;
        
        
    }
    
    
    
    function preSaleMint(uint quantity)  public payable   {

        require(isPreSalePaused == false, "Sale is not active at the moment");
        require(quantity>0,"quantity less than zero");
        require(quantity<=maxPreSaleQuantity,"quantity is greater than maxPreSaleQuantity");
        require(preSaleSupply>0,"Sold Out");
        require(preSaleSupply>=quantity,"Quantity is greater than remaining Supply");
        require(basePrice.mul(quantity) == msg.value, "Sent ether value is incorrect");
        
        for (uint i = 0; i < quantity; i++) {
        _basetokenIds.increment();
        _safeMint(msg.sender, baseTotalSupply());
        evolving[baseTotalSupply()] = EVOLVING({
        juvenileAge:false,
        ancientAge:false,
        greatWyrmAge:false
            
            
         });
            
        }
        preSaleSupply-=quantity;
    }


    function withdraw() public onlyOwner {
       uint amount = address(this).balance;
        (bool success, ) = payable(owner()).call {
            value: amount
        }("");
        require(success, "Failed to send Ether");
        
    }
 
    function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }
    function flipNewColPauseStatus() public onlyOwner {
        isNewColPaused = !isNewColPaused;
    }
    function flipMintAgePauseStatus() public onlyOwner {
        isMintAgePaused = !isMintAgePaused;
    }
        function flipPreSalePauseStatus() public onlyOwner {
        isPreSalePaused = !isPreSalePaused;
    }

    function updateBasePrice(uint _basePrice ) public onlyOwner {
        basePrice = _basePrice;
    }
    function updateNewColMaxQuantity(uint _maxNewColQuantity ) public onlyOwner {
        maxNewColQuantity =_maxNewColQuantity;
    }
     function updateAgePrices(uint _juvPrice,uint _ancientPrice,uint _greatwymPrice) public onlyOwner {
        juvenilePrice=_juvPrice;
        ancientPrice=_ancientPrice;
        greatWyrmPrice=_greatwymPrice;
    }
    function update (uint quantity) public onlyOwner
    {
        baseSupply=quantity;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"_newCollection","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_artName","type":"string"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"addNewCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ageTotalsupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ancientPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"evolving","outputs":[{"internalType":"bool","name":"juvenileAge","type":"bool"},{"internalType":"bool","name":"ancientAge","type":"bool"},{"internalType":"bool","name":"greatWyrmAge","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintAgePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipNewColPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSalePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_type","type":"string"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"greatWyrmPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintAgePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isNewColPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"juvenilePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNewColQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_age","type":"string"}],"name":"mintAges","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_artName","type":"string"},{"internalType":"uint256","name":"_chosenAmount","type":"uint256"}],"name":"newCollectionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"uint256","name":"quantity","type":"uint256"}],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_juvPrice","type":"uint256"},{"internalType":"uint256","name":"_ancientPrice","type":"uint256"},{"internalType":"uint256","name":"_greatwymPrice","type":"uint256"}],"name":"updateAgePrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_basePrice","type":"uint256"}],"name":"updateBasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxNewColQuantity","type":"uint256"}],"name":"updateNewColMaxQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260086080819052676a7576656e696c6560c01b60a09081526200002b91600d91906200025e565b5060408051808201909152600780825266185b98da595b9d60ca1b60209092019182526200005c91600e916200025e565b506040805180820190915260098082526867726561745779726d60b81b60209092019182526200008f91600f916200025e565b5066f8b0a10e470000601055601e601481815560159190915560165561270f601755612710601855610bb8601955601a805463ffffffff19166301010101179055348015620000dd57600080fd5b5060405162003b2f38038062003b2f833981016040819052620001009162000304565b6040805180820182526011815270111c9859dbdb8813d988135a5919d85c99607a1b602080830191825283518085019094526006845265222920a3a7a760d11b90840152815191929162000157916000916200025e565b5080516200016d9060019060208401906200025e565b505050600062000182620001e260201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001db81620001e6565b5062000433565b3390565b600b546001600160a01b03163314620002455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200025a9060069060208401906200025e565b5050565b8280546200026c90620003e0565b90600052602060002090601f016020900481019282620002905760008555620002db565b82601f10620002ab57805160ff1916838001178555620002db565b82800160010185558215620002db579182015b82811115620002db578251825591602001919060010190620002be565b50620002e9929150620002ed565b5090565b5b80821115620002e95760008155600101620002ee565b600060208083850312156200031857600080fd5b82516001600160401b03808211156200033057600080fd5b818501915085601f8301126200034557600080fd5b8151818111156200035a576200035a6200041d565b604051601f8201601f19908116603f011681019083821181831017156200038557620003856200041d565b8160405282815288868487010111156200039e57600080fd5b600093505b82841015620003c25784840186015181850187015292850192620003a3565b82841115620003d45760008684830101525b98975050505050505050565b600181811c90821680620003f557607f821691505b602082108114156200041757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6136ec80620004436000396000f3fe6080604052600436106103355760003560e01c80637835c635116101ab578063b187bd26116100f7578063e640cf7d11610095578063ede91c111161006f578063ede91c1114610941578063f2fde38b14610956578063fa62884c14610976578063fd5baa881461098b57600080fd5b8063e640cf7d146108cc578063e8b79baf146108e2578063e985e9c5146108f857600080fd5b8063c7876ea4116100d1578063c7876ea414610857578063c87b56dd1461086d578063cd6a695c1461088d578063d031370b146108ac57600080fd5b8063b187bd2614610807578063b88d4fde14610821578063bb684c051461084157600080fd5b80639131e34311610164578063a0712d681161013e578063a0712d681461075c578063a22cb4651461076f578063a413f77f1461078f578063a6c367db146107a557600080fd5b80639131e3431461071f57806395d89b411461073257806398c543781461074757600080fd5b80637835c6351461066957806382ab890a1461067c578063860f50481461069c5780638996f081146106b25780638da5cb5b146106d25780638e734fa9146106f057600080fd5b8063325346291161028557806355f804b3116102235780636913ba3e116101fd5780636913ba3e146106085780636db6f08f1461061e57806370a0823114610634578063743976a01461065457600080fd5b806355f804b3146105b35780636352211e146105d357806367f8ccb8146105f357600080fd5b806342842e0e1161025f57806342842e0e1461053357806342966c68146105535780634f6ccce714610573578063524f38891461059357600080fd5b806332534629146104eb5780633ccfd60b1461050b5780633d0d74631461052057600080fd5b80631bbeefd2116102f25780632cb81e08116102cc5780632cb81e081461047f5780632e055bcc146104945780632e280e32146104aa5780632f745c59146104cb57600080fd5b80631bbeefd21461042a57806323b872dd1461043f578063262e1c3b1461045f57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c95780630cfe55ba146103eb57806318160ddd1461040b575b600080fd5b34801561034657600080fd5b5061035a610355366004613003565b6109ab565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b506103846109d6565b60405161036691906132e1565b34801561039d57600080fd5b506103b16103ac366004613105565b610a68565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e4366004612fd9565b610b02565b005b3480156103f757600080fd5b506103e9610406366004613165565b610c18565b34801561041757600080fd5b506009545b604051908152602001610366565b34801561043657600080fd5b506103e9610c50565b34801561044b57600080fd5b506103e961045a366004612ee5565b610c97565b34801561046b57600080fd5b50601a5461035a9062010000900460ff1681565b34801561048b57600080fd5b5061041c610cc8565b3480156104a057600080fd5b5061041c60195481565b3480156104b657600080fd5b50601a5461035a906301000000900460ff1681565b3480156104d757600080fd5b5061041c6104e6366004612fd9565b610cd8565b3480156104f757600080fd5b506103e96105063660046130b7565b610d6e565b34801561051757600080fd5b506103e9610e09565b6103e961052e366004613072565b610ee3565b34801561053f57600080fd5b506103e961054e366004612ee5565b611064565b34801561055f57600080fd5b506103e961056e366004613105565b61107f565b34801561057f57600080fd5b5061041c61058e366004613105565b6110b5565b34801561059f57600080fd5b5061041c6105ae36600461303d565b611148565b3480156105bf57600080fd5b506103e96105ce36600461303d565b611206565b3480156105df57600080fd5b506103b16105ee366004613105565b611243565b3480156105ff57600080fd5b506103e96112ba565b34801561061457600080fd5b5061041c60155481565b34801561062a57600080fd5b5061041c60165481565b34801561064057600080fd5b5061041c61064f366004612e97565b611305565b34801561066057600080fd5b5061038461138c565b6103e9610677366004613105565b61141a565b34801561068857600080fd5b506103e9610697366004613105565b611653565b3480156106a857600080fd5b5061041c60175481565b3480156106be57600080fd5b506103e96106cd366004613105565b611682565b3480156106de57600080fd5b50600b546001600160a01b03166103b1565b3480156106fc57600080fd5b5061071061070b36600461303d565b6116b1565b604051610366939291906132f4565b6103e961072d36600461311e565b611766565b34801561073e57600080fd5b50610384611c0e565b34801561075357600080fd5b5061041c611c1d565b6103e961076a366004613105565b611c2f565b34801561077b57600080fd5b506103e961078a366004612f9d565b611ded565b34801561079b57600080fd5b5061041c60125481565b3480156107b157600080fd5b506107e86107c0366004613105565b601b6020526000908152604090205460ff808216916101008104821691620100009091041683565b6040805193151584529115156020840152151590820152606001610366565b34801561081357600080fd5b50601a5461035a9060ff1681565b34801561082d57600080fd5b506103e961083c366004612f21565b611eb2565b34801561084d57600080fd5b5061041c60135481565b34801561086357600080fd5b5061041c60105481565b34801561087957600080fd5b50610384610888366004613105565b611eea565b34801561089957600080fd5b50601a5461035a90610100900460ff1681565b3480156108b857600080fd5b506103e96108c7366004613105565b611fc5565b3480156108d857600080fd5b5061041c60145481565b3480156108ee57600080fd5b5061041c60115481565b34801561090457600080fd5b5061035a610913366004612eb2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094d57600080fd5b506103e961216e565b34801561096257600080fd5b506103e9610971366004612e97565b6121b7565b34801561098257600080fd5b506103e961224f565b34801561099757600080fd5b506103e96109a6366004613105565b61228d565b60006001600160e01b0319821663780e9d6360e01b14806109d057506109d0826122bc565b92915050565b6060600080546109e5906135c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a11906135c8565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ae65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b0d82611243565b9050806001600160a01b0316836001600160a01b03161415610b7b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610add565b336001600160a01b0382161480610b975750610b978133610913565b610c095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610add565b610c13838361230c565b505050565b600b546001600160a01b03163314610c425760405162461bcd60e51b8152600401610add9061347f565b601192909255601255601355565b600b546001600160a01b03163314610c7a5760405162461bcd60e51b8152600401610add9061347f565b601a805461ff001981166101009182900460ff1615909102179055565b610ca1338261237a565b610cbd5760405162461bcd60e51b8152600401610add906134b4565b610c13838383612471565b6000610cd3600c5490565b905090565b6000610ce383611305565b8210610d455760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610add565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610d985760405162461bcd60e51b8152600401610add9061347f565b604051806060016040528084815260200183815260200182815250601c84604051610dc39190613259565b90815260200160405180910390206000820151816000019080519060200190610ded929190612d51565b5060208201516001820155604090910151600290910155505050565b600b546001600160a01b03163314610e335760405162461bcd60e51b8152600401610add9061347f565b476000610e48600b546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e92576040519150601f19603f3d011682016040523d82523d6000602084013e610e97565b606091505b5050905080610edf5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610add565b5050565b601a54610100900460ff1615610f0b5760405162461bcd60e51b8152600401610add90613505565b60008111610f2b5760405162461bcd60e51b8152600401610add90613319565b601554811115610f4d5760405162461bcd60e51b8152600401610add9061343e565b6000601c83604051610f5f9190613259565b908152602001604051809103902090506000816001015411610fae5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610add565b8181600101541015610fd25760405162461bcd60e51b8152600401610add906133be565b60028101543490610fe3908461261c565b146110005760405162461bcd60e51b8152600401610add90613407565b60005b828110156110455761101d3361101860185490565b612628565b6018805490600061102d83613603565b9190505550808061103d90613603565b915050611003565b508181600101600082825461105a9190613585565b9091555050505050565b610c1383838360405180602001604052806000815250611eb2565b600b546001600160a01b031633146110a95760405162461bcd60e51b8152600401610add9061347f565b6110b281612642565b50565b60006110c060095490565b82106111235760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610add565b6009828154811061113657611136613674565b90600052602060002001549050919050565b6000600d60405161115991906131bd565b60405180910390208280519060200120141561117757505060115490565b600e60405161118691906131bd565b6040518091039020828051906020012014156111a457505060125490565b600f6040516111b391906131bd565b6040518091039020828051906020012014156111d157505060135490565b60405162461bcd60e51b8152602060048201526005602482015264242224222360d91b6044820152606401610add565b919050565b600b546001600160a01b031633146112305760405162461bcd60e51b8152600401610add9061347f565b8051610edf906006906020840190612d51565b6000818152600260205260408120546001600160a01b0316806109d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610add565b600b546001600160a01b031633146112e45760405162461bcd60e51b8152600401610add9061347f565b601a805463ff00000019811663010000009182900460ff1615909102179055565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610add565b506001600160a01b031660009081526003602052604090205490565b60068054611399906135c8565b80601f01602080910402602001604051908101604052809291908181526020018280546113c5906135c8565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b505050505081565b601a546301000000900460ff16156114445760405162461bcd60e51b8152600401610add90613505565b600081116114945760405162461bcd60e51b815260206004820152601760248201527f7175616e74697479206c657373207468616e207a65726f0000000000000000006044820152606401610add565b6016548111156114fa5760405162461bcd60e51b815260206004820152602b60248201527f7175616e746974792069732067726561746572207468616e206d61785072655360448201526a616c655175616e7469747960a81b6064820152608401610add565b6000601954116115375760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610add565b8060195410156115595760405162461bcd60e51b8152600401610add906133be565b6010543490611568908361261c565b146115855760405162461bcd60e51b8152600401610add90613407565b60005b818110156116385761159e600c80546001019055565b6115aa33611018610cc8565b6040805160608101825260008082526020820181905291810182905290601b906115d2610cc8565b81526020808201929092526040908101600020835181549385015194909201511515620100000262ff0000199415156101000261ff00199315159390931661ffff199094169390931791909117929092161790558061163081613603565b915050611588565b50806019600082825461164b9190613585565b909155505050565b600b546001600160a01b0316331461167d5760405162461bcd60e51b8152600401610add9061347f565b601755565b600b546001600160a01b031633146116ac5760405162461bcd60e51b8152600401610add9061347f565b601555565b8051602081830181018051601c825292820191909301209152805481906116d7906135c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611703906135c8565b80156117505780601f1061172557610100808354040283529160200191611750565b820191906000526020600020905b81548152906001019060200180831161173357829003601f168201915b5050505050908060010154908060020154905083565b601a5462010000900460ff16156117cb5760405162461bcd60e51b815260206004820152602360248201527f4d696e74416765206973206e6f742061637469766520617420746865206d6f6d604482015262195b9d60ea1b6064820152608401610add565b61270f82111561181d5760405162461bcd60e51b815260206004820152601c60248201527f4261736520546f6b656e204964206973206e6f7420636f7272656374000000006044820152606401610add565b3361182783611243565b6001600160a01b03161461187d5760405162461bcd60e51b815260206004820181905260248201527f7573657220617265206e6f74206f776e6572206f66207468697320746f6b656e6044820152606401610add565b3461188782611148565b146118c65760405162461bcd60e51b815260206004820152600f60248201526e696e636f727265637420707269636560881b6044820152606401610add565b6000828152601b60205260409081902090516118e490600d906131bd565b60405180910390208280519060200120141561197d57805460ff161561194c5760405162461bcd60e51b815260206004820152601d60248201527f6a7576656e696c6541676520697320616c7265616479204d696e7465640000006044820152606401610add565b61195833601854612628565b6018805490600061196883613603565b9091555050805460ff19166001178155505050565b600e60405161198c91906131bd565b604051809103902082805190602001201415611a7c578054610100900460ff16156119f95760405162461bcd60e51b815260206004820152601c60248201527f616e6369656e7441676520697320616c7265616479204d696e746564000000006044820152606401610add565b805460ff161515600114611a495760405162461bcd60e51b815260206004820152601760248201527602334b939ba1026b4b73a10253abb32b734b632a0b3b29604d1b6044820152606401610add565b611a5533601854612628565b60188054906000611a6583613603565b9091555050805461ff001916610100178155505050565b600f604051611a8b91906131bd565b604051809103902082805190602001201415611bd257805460ff610100909104161515600114611af55760405162461bcd60e51b81526020600482015260156024820152744669727374204d696e7420616e6369656e7441676560581b6044820152606401610add565b805460ff161515600114611b455760405162461bcd60e51b815260206004820152601760248201527602334b939ba1026b4b73a10253abb32b734b632a0b3b29604d1b6044820152606401610add565b805462010000900460ff1615611b9d5760405162461bcd60e51b815260206004820152601e60248201527f67726561745779726d41676520697320616c7265616479204d696e74656400006044820152606401610add565b611ba933601854612628565b60188054906000611bb983613603565b9091555050805462ff0000191662010000178155505050565b60405162461bcd60e51b815260206004820152601160248201527015dc9bdb99c81059d948115b9d195c9959607a1b6044820152606401610add565b6060600180546109e5906135c8565b6000612710601854610cd39190613585565b601a5460ff1615611c525760405162461bcd60e51b8152600401610add90613505565b60008111611c725760405162461bcd60e51b8152600401610add90613319565b601454811115611c945760405162461bcd60e51b8152600401610add9061343e565b80611c9d610cc8565b611ca7919061353a565b6017541015611d0e5760405162461bcd60e51b815260206004820152602d60248201527f5175616e746974792069732067726561746572207468616e2072656d61696e6960448201526c67206261736520737570706c7960981b6064820152608401610add565b6010543490611d1d908361261c565b14611d3a5760405162461bcd60e51b8152600401610add90613407565b60005b81811015610edf57611d53600c80546001019055565b611d5f33611018610cc8565b6040805160608101825260008082526020820181905291810182905290601b90611d87610cc8565b81526020808201929092526040908101600020835181549385015194909201511515620100000262ff0000199415156101000261ff00199315159390931661ffff1990941693909317919091179290921617905580611de581613603565b915050611d3d565b6001600160a01b038216331415611e465760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610add565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ebc338361237a565b611ed85760405162461bcd60e51b8152600401610add906134b4565b611ee4848484846126e9565b50505050565b6000818152600260205260409020546060906001600160a01b0316611f695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610add565b6000611f7361271c565b90506000815111611f935760405180602001604052806000815250611fbe565b80611f9d8461272b565b604051602001611fae929190613275565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314611fef5760405162461bcd60e51b8152600401610add9061347f565b60c88111156120405760405162461bcd60e51b815260206004820152601d60248201527f7175616e746974792069732067726561746572207468616e203230302e0000006044820152606401610add565b80612049610cc8565b612053919061353a565b60175410156120bb5760405162461bcd60e51b815260206004820152602e60248201527f7175616e746974792069732067726561746572207468616e2072656d61696e6960448201526d6e67206261736520537570706c7960901b6064820152608401610add565b60005b81811015610edf576120d4600c80546001019055565b6120e033611018610cc8565b6040805160608101825260008082526020820181905291810182905290601b90612108610cc8565b81526020808201929092526040908101600020835181549385015194909201511515620100000262ff0000199415156101000261ff00199315159390931661ffff199094169390931791909117929092161790558061216681613603565b9150506120be565b600b546001600160a01b031633146121985760405162461bcd60e51b8152600401610add9061347f565b601a805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b031633146121e15760405162461bcd60e51b8152600401610add9061347f565b6001600160a01b0381166122465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610add565b6110b281612829565b600b546001600160a01b031633146122795760405162461bcd60e51b8152600401610add9061347f565b601a805460ff19811660ff90911615179055565b600b546001600160a01b031633146122b75760405162461bcd60e51b8152600401610add9061347f565b601055565b60006001600160e01b031982166380ac58cd60e01b14806122ed57506001600160e01b03198216635b5e139f60e01b145b806109d057506301ffc9a760e01b6001600160e01b03198316146109d0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061234182611243565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123f35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610add565b60006123fe83611243565b9050806001600160a01b0316846001600160a01b031614806124395750836001600160a01b031661242e84610a68565b6001600160a01b0316145b8061246957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661248482611243565b6001600160a01b0316146124ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610add565b6001600160a01b03821661254e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610add565b61255983838361287b565b61256460008261230c565b6001600160a01b038316600090815260036020526040812080546001929061258d908490613585565b90915550506001600160a01b03821660009081526003602052604081208054600192906125bb90849061353a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611fbe8284613566565b610edf828260405180602001604052806000815250612933565b600061264d82611243565b905061265b8160008461287b565b61266660008361230c565b6001600160a01b038116600090815260036020526040812080546001929061268f908490613585565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6126f4848484612471565b61270084848484612966565b611ee45760405162461bcd60e51b8152600401610add9061336c565b6060600680546109e5906135c8565b60608161274f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612779578061276381613603565b91506127729050600a83613552565b9150612753565b60008167ffffffffffffffff8111156127945761279461368a565b6040519080825280601f01601f1916602001820160405280156127be576020820181803683370190505b5090505b8415612469576127d3600183613585565b91506127e0600a8661361e565b6127eb90603061353a565b60f81b81838151811061280057612800613674565b60200101906001600160f81b031916908160001a905350612822600a86613552565b94506127c2565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166128d6576128d181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6128f9565b816001600160a01b0316836001600160a01b0316146128f9576128f98382612a73565b6001600160a01b03821661291057610c1381612b10565b826001600160a01b0316826001600160a01b031614610c1357610c138282612bbf565b61293d8383612c03565b61294a6000848484612966565b610c135760405162461bcd60e51b8152600401610add9061336c565b60006001600160a01b0384163b15612a6857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129aa9033908990889088906004016132a4565b602060405180830381600087803b1580156129c457600080fd5b505af19250505080156129f4575060408051601f3d908101601f191682019092526129f191810190613020565b60015b612a4e573d808015612a22576040519150601f19603f3d011682016040523d82523d6000602084013e612a27565b606091505b508051612a465760405162461bcd60e51b8152600401610add9061336c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612469565b506001949350505050565b60006001612a8084611305565b612a8a9190613585565b600083815260086020526040902054909150808214612add576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612b2290600190613585565b6000838152600a602052604081205460098054939450909284908110612b4a57612b4a613674565b906000526020600020015490508060098381548110612b6b57612b6b613674565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612ba357612ba361365e565b6001900381819060005260206000200160009055905550505050565b6000612bca83611305565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216612c595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610add565b6000818152600260205260409020546001600160a01b031615612cbe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610add565b612cca6000838361287b565b6001600160a01b0382166000908152600360205260408120805460019290612cf390849061353a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d5d906135c8565b90600052602060002090601f016020900481019282612d7f5760008555612dc5565b82601f10612d9857805160ff1916838001178555612dc5565b82800160010185558215612dc5579182015b82811115612dc5578251825591602001919060010190612daa565b50612dd1929150612dd5565b5090565b5b80821115612dd15760008155600101612dd6565b600067ffffffffffffffff80841115612e0557612e0561368a565b604051601f8501601f19908116603f01168101908282118183101715612e2d57612e2d61368a565b81604052809350858152868686011115612e4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461120157600080fd5b600082601f830112612e8857600080fd5b611fbe83833560208501612dea565b600060208284031215612ea957600080fd5b611fbe82612e60565b60008060408385031215612ec557600080fd5b612ece83612e60565b9150612edc60208401612e60565b90509250929050565b600080600060608486031215612efa57600080fd5b612f0384612e60565b9250612f1160208501612e60565b9150604084013590509250925092565b60008060008060808587031215612f3757600080fd5b612f4085612e60565b9350612f4e60208601612e60565b925060408501359150606085013567ffffffffffffffff811115612f7157600080fd5b8501601f81018713612f8257600080fd5b612f9187823560208401612dea565b91505092959194509250565b60008060408385031215612fb057600080fd5b612fb983612e60565b915060208301358015158114612fce57600080fd5b809150509250929050565b60008060408385031215612fec57600080fd5b612ff583612e60565b946020939093013593505050565b60006020828403121561301557600080fd5b8135611fbe816136a0565b60006020828403121561303257600080fd5b8151611fbe816136a0565b60006020828403121561304f57600080fd5b813567ffffffffffffffff81111561306657600080fd5b61246984828501612e77565b6000806040838503121561308557600080fd5b823567ffffffffffffffff81111561309c57600080fd5b6130a885828601612e77565b95602094909401359450505050565b6000806000606084860312156130cc57600080fd5b833567ffffffffffffffff8111156130e357600080fd5b6130ef86828701612e77565b9660208601359650604090950135949350505050565b60006020828403121561311757600080fd5b5035919050565b6000806040838503121561313157600080fd5b82359150602083013567ffffffffffffffff81111561314f57600080fd5b61315b85828601612e77565b9150509250929050565b60008060006060848603121561317a57600080fd5b505081359360208301359350604090920135919050565b600081518084526131a981602086016020860161359c565b601f01601f19169290920160200192915050565b600080835481600182811c9150808316806131d957607f831692505b60208084108214156131f957634e487b7160e01b86526022600452602486fd5b81801561320d576001811461321e5761324b565b60ff1986168952848901965061324b565b60008a81526020902060005b868110156132435781548b82015290850190830161322a565b505084890196505b509498975050505050505050565b6000825161326b81846020870161359c565b9190910192915050565b6000835161328781846020880161359c565b83519083019061329b81836020880161359c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132d790830184613191565b9695505050505050565b602081526000611fbe6020830184613191565b6060815260006133076060830186613191565b60208301949094525060400152919050565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f5175616e746974792069732067726561746572207468616e2072656d61696e696040820152686e6720537570706c7960b81b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b6000821982111561354d5761354d613632565b500190565b60008261356157613561613648565b500490565b600081600019048311821515161561358057613580613632565b500290565b60008282101561359757613597613632565b500390565b60005b838110156135b757818101518382015260200161359f565b83811115611ee45750506000910152565b600181811c908216806135dc57607f821691505b602082108114156135fd57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561361757613617613632565b5060010190565b60008261362d5761362d613648565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110b257600080fdfea2646970667358221220c8a64b54f7aa40a3ee845382d849b18abe65f49f6cbe9c4d92dc6aff065c8d1e64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733b2f2f6170692e647261676f6e736f666d6964676172642e636f6d2f6170692f6d657461646174612f000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c80637835c635116101ab578063b187bd26116100f7578063e640cf7d11610095578063ede91c111161006f578063ede91c1114610941578063f2fde38b14610956578063fa62884c14610976578063fd5baa881461098b57600080fd5b8063e640cf7d146108cc578063e8b79baf146108e2578063e985e9c5146108f857600080fd5b8063c7876ea4116100d1578063c7876ea414610857578063c87b56dd1461086d578063cd6a695c1461088d578063d031370b146108ac57600080fd5b8063b187bd2614610807578063b88d4fde14610821578063bb684c051461084157600080fd5b80639131e34311610164578063a0712d681161013e578063a0712d681461075c578063a22cb4651461076f578063a413f77f1461078f578063a6c367db146107a557600080fd5b80639131e3431461071f57806395d89b411461073257806398c543781461074757600080fd5b80637835c6351461066957806382ab890a1461067c578063860f50481461069c5780638996f081146106b25780638da5cb5b146106d25780638e734fa9146106f057600080fd5b8063325346291161028557806355f804b3116102235780636913ba3e116101fd5780636913ba3e146106085780636db6f08f1461061e57806370a0823114610634578063743976a01461065457600080fd5b806355f804b3146105b35780636352211e146105d357806367f8ccb8146105f357600080fd5b806342842e0e1161025f57806342842e0e1461053357806342966c68146105535780634f6ccce714610573578063524f38891461059357600080fd5b806332534629146104eb5780633ccfd60b1461050b5780633d0d74631461052057600080fd5b80631bbeefd2116102f25780632cb81e08116102cc5780632cb81e081461047f5780632e055bcc146104945780632e280e32146104aa5780632f745c59146104cb57600080fd5b80631bbeefd21461042a57806323b872dd1461043f578063262e1c3b1461045f57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c95780630cfe55ba146103eb57806318160ddd1461040b575b600080fd5b34801561034657600080fd5b5061035a610355366004613003565b6109ab565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b506103846109d6565b60405161036691906132e1565b34801561039d57600080fd5b506103b16103ac366004613105565b610a68565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e4366004612fd9565b610b02565b005b3480156103f757600080fd5b506103e9610406366004613165565b610c18565b34801561041757600080fd5b506009545b604051908152602001610366565b34801561043657600080fd5b506103e9610c50565b34801561044b57600080fd5b506103e961045a366004612ee5565b610c97565b34801561046b57600080fd5b50601a5461035a9062010000900460ff1681565b34801561048b57600080fd5b5061041c610cc8565b3480156104a057600080fd5b5061041c60195481565b3480156104b657600080fd5b50601a5461035a906301000000900460ff1681565b3480156104d757600080fd5b5061041c6104e6366004612fd9565b610cd8565b3480156104f757600080fd5b506103e96105063660046130b7565b610d6e565b34801561051757600080fd5b506103e9610e09565b6103e961052e366004613072565b610ee3565b34801561053f57600080fd5b506103e961054e366004612ee5565b611064565b34801561055f57600080fd5b506103e961056e366004613105565b61107f565b34801561057f57600080fd5b5061041c61058e366004613105565b6110b5565b34801561059f57600080fd5b5061041c6105ae36600461303d565b611148565b3480156105bf57600080fd5b506103e96105ce36600461303d565b611206565b3480156105df57600080fd5b506103b16105ee366004613105565b611243565b3480156105ff57600080fd5b506103e96112ba565b34801561061457600080fd5b5061041c60155481565b34801561062a57600080fd5b5061041c60165481565b34801561064057600080fd5b5061041c61064f366004612e97565b611305565b34801561066057600080fd5b5061038461138c565b6103e9610677366004613105565b61141a565b34801561068857600080fd5b506103e9610697366004613105565b611653565b3480156106a857600080fd5b5061041c60175481565b3480156106be57600080fd5b506103e96106cd366004613105565b611682565b3480156106de57600080fd5b50600b546001600160a01b03166103b1565b3480156106fc57600080fd5b5061071061070b36600461303d565b6116b1565b604051610366939291906132f4565b6103e961072d36600461311e565b611766565b34801561073e57600080fd5b50610384611c0e565b34801561075357600080fd5b5061041c611c1d565b6103e961076a366004613105565b611c2f565b34801561077b57600080fd5b506103e961078a366004612f9d565b611ded565b34801561079b57600080fd5b5061041c60125481565b3480156107b157600080fd5b506107e86107c0366004613105565b601b6020526000908152604090205460ff808216916101008104821691620100009091041683565b6040805193151584529115156020840152151590820152606001610366565b34801561081357600080fd5b50601a5461035a9060ff1681565b34801561082d57600080fd5b506103e961083c366004612f21565b611eb2565b34801561084d57600080fd5b5061041c60135481565b34801561086357600080fd5b5061041c60105481565b34801561087957600080fd5b50610384610888366004613105565b611eea565b34801561089957600080fd5b50601a5461035a90610100900460ff1681565b3480156108b857600080fd5b506103e96108c7366004613105565b611fc5565b3480156108d857600080fd5b5061041c60145481565b3480156108ee57600080fd5b5061041c60115481565b34801561090457600080fd5b5061035a610913366004612eb2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094d57600080fd5b506103e961216e565b34801561096257600080fd5b506103e9610971366004612e97565b6121b7565b34801561098257600080fd5b506103e961224f565b34801561099757600080fd5b506103e96109a6366004613105565b61228d565b60006001600160e01b0319821663780e9d6360e01b14806109d057506109d0826122bc565b92915050565b6060600080546109e5906135c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a11906135c8565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ae65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b0d82611243565b9050806001600160a01b0316836001600160a01b03161415610b7b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610add565b336001600160a01b0382161480610b975750610b978133610913565b610c095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610add565b610c13838361230c565b505050565b600b546001600160a01b03163314610c425760405162461bcd60e51b8152600401610add9061347f565b601192909255601255601355565b600b546001600160a01b03163314610c7a5760405162461bcd60e51b8152600401610add9061347f565b601a805461ff001981166101009182900460ff1615909102179055565b610ca1338261237a565b610cbd5760405162461bcd60e51b8152600401610add906134b4565b610c13838383612471565b6000610cd3600c5490565b905090565b6000610ce383611305565b8210610d455760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610add565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610d985760405162461bcd60e51b8152600401610add9061347f565b604051806060016040528084815260200183815260200182815250601c84604051610dc39190613259565b90815260200160405180910390206000820151816000019080519060200190610ded929190612d51565b5060208201516001820155604090910151600290910155505050565b600b546001600160a01b03163314610e335760405162461bcd60e51b8152600401610add9061347f565b476000610e48600b546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e92576040519150601f19603f3d011682016040523d82523d6000602084013e610e97565b606091505b5050905080610edf5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610add565b5050565b601a54610100900460ff1615610f0b5760405162461bcd60e51b8152600401610add90613505565b60008111610f2b5760405162461bcd60e51b8152600401610add90613319565b601554811115610f4d5760405162461bcd60e51b8152600401610add9061343e565b6000601c83604051610f5f9190613259565b908152602001604051809103902090506000816001015411610fae5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610add565b8181600101541015610fd25760405162461bcd60e51b8152600401610add906133be565b60028101543490610fe3908461261c565b146110005760405162461bcd60e51b8152600401610add90613407565b60005b828110156110455761101d3361101860185490565b612628565b6018805490600061102d83613603565b9190505550808061103d90613603565b915050611003565b508181600101600082825461105a9190613585565b9091555050505050565b610c1383838360405180602001604052806000815250611eb2565b600b546001600160a01b031633146110a95760405162461bcd60e51b8152600401610add9061347f565b6110b281612642565b50565b60006110c060095490565b82106111235760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610add565b6009828154811061113657611136613674565b90600052602060002001549050919050565b6000600d60405161115991906131bd565b60405180910390208280519060200120141561117757505060115490565b600e60405161118691906131bd565b6040518091039020828051906020012014156111a457505060125490565b600f6040516111b391906131bd565b6040518091039020828051906020012014156111d157505060135490565b60405162461bcd60e51b8152602060048201526005602482015264242224222360d91b6044820152606401610add565b919050565b600b546001600160a01b031633146112305760405162461bcd60e51b8152600401610add9061347f565b8051610edf906006906020840190612d51565b6000818152600260205260408120546001600160a01b0316806109d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610add565b600b546001600160a01b031633146112e45760405162461bcd60e51b8152600401610add9061347f565b601a805463ff00000019811663010000009182900460ff1615909102179055565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610add565b506001600160a01b031660009081526003602052604090205490565b60068054611399906135c8565b80601f01602080910402602001604051908101604052809291908181526020018280546113c5906135c8565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b505050505081565b601a546301000000900460ff16156114445760405162461bcd60e51b8152600401610add90613505565b600081116114945760405162461bcd60e51b815260206004820152601760248201527f7175616e74697479206c657373207468616e207a65726f0000000000000000006044820152606401610add565b6016548111156114fa5760405162461bcd60e51b815260206004820152602b60248201527f7175616e746974792069732067726561746572207468616e206d61785072655360448201526a616c655175616e7469747960a81b6064820152608401610add565b6000601954116115375760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610add565b8060195410156115595760405162461bcd60e51b8152600401610add906133be565b6010543490611568908361261c565b146115855760405162461bcd60e51b8152600401610add90613407565b60005b818110156116385761159e600c80546001019055565b6115aa33611018610cc8565b6040805160608101825260008082526020820181905291810182905290601b906115d2610cc8565b81526020808201929092526040908101600020835181549385015194909201511515620100000262ff0000199415156101000261ff00199315159390931661ffff199094169390931791909117929092161790558061163081613603565b915050611588565b50806019600082825461164b9190613585565b909155505050565b600b546001600160a01b0316331461167d5760405162461bcd60e51b8152600401610add9061347f565b601755565b600b546001600160a01b031633146116ac5760405162461bcd60e51b8152600401610add9061347f565b601555565b8051602081830181018051601c825292820191909301209152805481906116d7906135c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611703906135c8565b80156117505780601f1061172557610100808354040283529160200191611750565b820191906000526020600020905b81548152906001019060200180831161173357829003601f168201915b5050505050908060010154908060020154905083565b601a5462010000900460ff16156117cb5760405162461bcd60e51b815260206004820152602360248201527f4d696e74416765206973206e6f742061637469766520617420746865206d6f6d604482015262195b9d60ea1b6064820152608401610add565b61270f82111561181d5760405162461bcd60e51b815260206004820152601c60248201527f4261736520546f6b656e204964206973206e6f7420636f7272656374000000006044820152606401610add565b3361182783611243565b6001600160a01b03161461187d5760405162461bcd60e51b815260206004820181905260248201527f7573657220617265206e6f74206f776e6572206f66207468697320746f6b656e6044820152606401610add565b3461188782611148565b146118c65760405162461bcd60e51b815260206004820152600f60248201526e696e636f727265637420707269636560881b6044820152606401610add565b6000828152601b60205260409081902090516118e490600d906131bd565b60405180910390208280519060200120141561197d57805460ff161561194c5760405162461bcd60e51b815260206004820152601d60248201527f6a7576656e696c6541676520697320616c7265616479204d696e7465640000006044820152606401610add565b61195833601854612628565b6018805490600061196883613603565b9091555050805460ff19166001178155505050565b600e60405161198c91906131bd565b604051809103902082805190602001201415611a7c578054610100900460ff16156119f95760405162461bcd60e51b815260206004820152601c60248201527f616e6369656e7441676520697320616c7265616479204d696e746564000000006044820152606401610add565b805460ff161515600114611a495760405162461bcd60e51b815260206004820152601760248201527602334b939ba1026b4b73a10253abb32b734b632a0b3b29604d1b6044820152606401610add565b611a5533601854612628565b60188054906000611a6583613603565b9091555050805461ff001916610100178155505050565b600f604051611a8b91906131bd565b604051809103902082805190602001201415611bd257805460ff610100909104161515600114611af55760405162461bcd60e51b81526020600482015260156024820152744669727374204d696e7420616e6369656e7441676560581b6044820152606401610add565b805460ff161515600114611b455760405162461bcd60e51b815260206004820152601760248201527602334b939ba1026b4b73a10253abb32b734b632a0b3b29604d1b6044820152606401610add565b805462010000900460ff1615611b9d5760405162461bcd60e51b815260206004820152601e60248201527f67726561745779726d41676520697320616c7265616479204d696e74656400006044820152606401610add565b611ba933601854612628565b60188054906000611bb983613603565b9091555050805462ff0000191662010000178155505050565b60405162461bcd60e51b815260206004820152601160248201527015dc9bdb99c81059d948115b9d195c9959607a1b6044820152606401610add565b6060600180546109e5906135c8565b6000612710601854610cd39190613585565b601a5460ff1615611c525760405162461bcd60e51b8152600401610add90613505565b60008111611c725760405162461bcd60e51b8152600401610add90613319565b601454811115611c945760405162461bcd60e51b8152600401610add9061343e565b80611c9d610cc8565b611ca7919061353a565b6017541015611d0e5760405162461bcd60e51b815260206004820152602d60248201527f5175616e746974792069732067726561746572207468616e2072656d61696e6960448201526c67206261736520737570706c7960981b6064820152608401610add565b6010543490611d1d908361261c565b14611d3a5760405162461bcd60e51b8152600401610add90613407565b60005b81811015610edf57611d53600c80546001019055565b611d5f33611018610cc8565b6040805160608101825260008082526020820181905291810182905290601b90611d87610cc8565b81526020808201929092526040908101600020835181549385015194909201511515620100000262ff0000199415156101000261ff00199315159390931661ffff1990941693909317919091179290921617905580611de581613603565b915050611d3d565b6001600160a01b038216331415611e465760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610add565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ebc338361237a565b611ed85760405162461bcd60e51b8152600401610add906134b4565b611ee4848484846126e9565b50505050565b6000818152600260205260409020546060906001600160a01b0316611f695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610add565b6000611f7361271c565b90506000815111611f935760405180602001604052806000815250611fbe565b80611f9d8461272b565b604051602001611fae929190613275565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314611fef5760405162461bcd60e51b8152600401610add9061347f565b60c88111156120405760405162461bcd60e51b815260206004820152601d60248201527f7175616e746974792069732067726561746572207468616e203230302e0000006044820152606401610add565b80612049610cc8565b612053919061353a565b60175410156120bb5760405162461bcd60e51b815260206004820152602e60248201527f7175616e746974792069732067726561746572207468616e2072656d61696e6960448201526d6e67206261736520537570706c7960901b6064820152608401610add565b60005b81811015610edf576120d4600c80546001019055565b6120e033611018610cc8565b6040805160608101825260008082526020820181905291810182905290601b90612108610cc8565b81526020808201929092526040908101600020835181549385015194909201511515620100000262ff0000199415156101000261ff00199315159390931661ffff199094169390931791909117929092161790558061216681613603565b9150506120be565b600b546001600160a01b031633146121985760405162461bcd60e51b8152600401610add9061347f565b601a805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b031633146121e15760405162461bcd60e51b8152600401610add9061347f565b6001600160a01b0381166122465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610add565b6110b281612829565b600b546001600160a01b031633146122795760405162461bcd60e51b8152600401610add9061347f565b601a805460ff19811660ff90911615179055565b600b546001600160a01b031633146122b75760405162461bcd60e51b8152600401610add9061347f565b601055565b60006001600160e01b031982166380ac58cd60e01b14806122ed57506001600160e01b03198216635b5e139f60e01b145b806109d057506301ffc9a760e01b6001600160e01b03198316146109d0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061234182611243565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123f35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610add565b60006123fe83611243565b9050806001600160a01b0316846001600160a01b031614806124395750836001600160a01b031661242e84610a68565b6001600160a01b0316145b8061246957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661248482611243565b6001600160a01b0316146124ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610add565b6001600160a01b03821661254e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610add565b61255983838361287b565b61256460008261230c565b6001600160a01b038316600090815260036020526040812080546001929061258d908490613585565b90915550506001600160a01b03821660009081526003602052604081208054600192906125bb90849061353a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611fbe8284613566565b610edf828260405180602001604052806000815250612933565b600061264d82611243565b905061265b8160008461287b565b61266660008361230c565b6001600160a01b038116600090815260036020526040812080546001929061268f908490613585565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6126f4848484612471565b61270084848484612966565b611ee45760405162461bcd60e51b8152600401610add9061336c565b6060600680546109e5906135c8565b60608161274f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612779578061276381613603565b91506127729050600a83613552565b9150612753565b60008167ffffffffffffffff8111156127945761279461368a565b6040519080825280601f01601f1916602001820160405280156127be576020820181803683370190505b5090505b8415612469576127d3600183613585565b91506127e0600a8661361e565b6127eb90603061353a565b60f81b81838151811061280057612800613674565b60200101906001600160f81b031916908160001a905350612822600a86613552565b94506127c2565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166128d6576128d181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6128f9565b816001600160a01b0316836001600160a01b0316146128f9576128f98382612a73565b6001600160a01b03821661291057610c1381612b10565b826001600160a01b0316826001600160a01b031614610c1357610c138282612bbf565b61293d8383612c03565b61294a6000848484612966565b610c135760405162461bcd60e51b8152600401610add9061336c565b60006001600160a01b0384163b15612a6857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129aa9033908990889088906004016132a4565b602060405180830381600087803b1580156129c457600080fd5b505af19250505080156129f4575060408051601f3d908101601f191682019092526129f191810190613020565b60015b612a4e573d808015612a22576040519150601f19603f3d011682016040523d82523d6000602084013e612a27565b606091505b508051612a465760405162461bcd60e51b8152600401610add9061336c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612469565b506001949350505050565b60006001612a8084611305565b612a8a9190613585565b600083815260086020526040902054909150808214612add576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612b2290600190613585565b6000838152600a602052604081205460098054939450909284908110612b4a57612b4a613674565b906000526020600020015490508060098381548110612b6b57612b6b613674565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612ba357612ba361365e565b6001900381819060005260206000200160009055905550505050565b6000612bca83611305565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216612c595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610add565b6000818152600260205260409020546001600160a01b031615612cbe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610add565b612cca6000838361287b565b6001600160a01b0382166000908152600360205260408120805460019290612cf390849061353a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d5d906135c8565b90600052602060002090601f016020900481019282612d7f5760008555612dc5565b82601f10612d9857805160ff1916838001178555612dc5565b82800160010185558215612dc5579182015b82811115612dc5578251825591602001919060010190612daa565b50612dd1929150612dd5565b5090565b5b80821115612dd15760008155600101612dd6565b600067ffffffffffffffff80841115612e0557612e0561368a565b604051601f8501601f19908116603f01168101908282118183101715612e2d57612e2d61368a565b81604052809350858152868686011115612e4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461120157600080fd5b600082601f830112612e8857600080fd5b611fbe83833560208501612dea565b600060208284031215612ea957600080fd5b611fbe82612e60565b60008060408385031215612ec557600080fd5b612ece83612e60565b9150612edc60208401612e60565b90509250929050565b600080600060608486031215612efa57600080fd5b612f0384612e60565b9250612f1160208501612e60565b9150604084013590509250925092565b60008060008060808587031215612f3757600080fd5b612f4085612e60565b9350612f4e60208601612e60565b925060408501359150606085013567ffffffffffffffff811115612f7157600080fd5b8501601f81018713612f8257600080fd5b612f9187823560208401612dea565b91505092959194509250565b60008060408385031215612fb057600080fd5b612fb983612e60565b915060208301358015158114612fce57600080fd5b809150509250929050565b60008060408385031215612fec57600080fd5b612ff583612e60565b946020939093013593505050565b60006020828403121561301557600080fd5b8135611fbe816136a0565b60006020828403121561303257600080fd5b8151611fbe816136a0565b60006020828403121561304f57600080fd5b813567ffffffffffffffff81111561306657600080fd5b61246984828501612e77565b6000806040838503121561308557600080fd5b823567ffffffffffffffff81111561309c57600080fd5b6130a885828601612e77565b95602094909401359450505050565b6000806000606084860312156130cc57600080fd5b833567ffffffffffffffff8111156130e357600080fd5b6130ef86828701612e77565b9660208601359650604090950135949350505050565b60006020828403121561311757600080fd5b5035919050565b6000806040838503121561313157600080fd5b82359150602083013567ffffffffffffffff81111561314f57600080fd5b61315b85828601612e77565b9150509250929050565b60008060006060848603121561317a57600080fd5b505081359360208301359350604090920135919050565b600081518084526131a981602086016020860161359c565b601f01601f19169290920160200192915050565b600080835481600182811c9150808316806131d957607f831692505b60208084108214156131f957634e487b7160e01b86526022600452602486fd5b81801561320d576001811461321e5761324b565b60ff1986168952848901965061324b565b60008a81526020902060005b868110156132435781548b82015290850190830161322a565b505084890196505b509498975050505050505050565b6000825161326b81846020870161359c565b9190910192915050565b6000835161328781846020880161359c565b83519083019061329b81836020880161359c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132d790830184613191565b9695505050505050565b602081526000611fbe6020830184613191565b6060815260006133076060830186613191565b60208301949094525060400152919050565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f5175616e746974792069732067726561746572207468616e2072656d61696e696040820152686e6720537570706c7960b81b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b6000821982111561354d5761354d613632565b500190565b60008261356157613561613648565b500490565b600081600019048311821515161561358057613580613632565b500290565b60008282101561359757613597613632565b500390565b60005b838110156135b757818101518382015260200161359f565b83811115611ee45750506000910152565b600181811c908216806135dc57607f821691505b602082108114156135fd57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561361757613617613632565b5060010190565b60008261362d5761362d613648565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110b257600080fdfea2646970667358221220c8a64b54f7aa40a3ee845382d849b18abe65f49f6cbe9c4d92dc6aff065c8d1e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733b2f2f6170692e647261676f6e736f666d6964676172642e636f6d2f6170692f6d657461646174612f000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https;//api.dragonsofmidgard.com/api/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [2] : 68747470733b2f2f6170692e647261676f6e736f666d6964676172642e636f6d
Arg [3] : 2f6170692f6d657461646174612f000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49679:8634:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42502:224;;;;;;;;;;-1:-1:-1;42502:224:0;;;;;:::i;:::-;;:::i;:::-;;;8918:14:1;;8911:22;8893:41;;8881:2;8866:18;42502:224:0;;;;;;;;30480:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32034:221::-;;;;;;;;;;-1:-1:-1;32034:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8216:32:1;;;8198:51;;8186:2;8171:18;32034:221:0;8052:203:1;31557:411:0;;;;;;;;;;-1:-1:-1;31557:411:0;;;;;:::i;:::-;;:::i;:::-;;57994:216;;;;;;;;;;-1:-1:-1;57994:216:0;;;;;:::i;:::-;;:::i;43142:113::-;;;;;;;;;;-1:-1:-1;43230:10:0;:17;43142:113;;;25750:25:1;;;25738:2;25723:18;43142:113:0;25604:177:1;57415:101:0;;;;;;;;;;;;;:::i;32924:339::-;;;;;;;;;;-1:-1:-1;32924:339:0;;;;;:::i;:::-;;:::i;50420:32::-;;;;;;;;;;-1:-1:-1;50420:32:0;;;;;;;;;;;54073:108;;;;;;;;;;;;;:::i;50311:30::-;;;;;;;;;;;;;;;;50459:32;;;;;;;;;;-1:-1:-1;50459:32:0;;;;;;;;;;;42810:256;;;;;;;;;;-1:-1:-1;42810:256:0;;;;;:::i;:::-;;:::i;54977:262::-;;;;;;;;;;-1:-1:-1;54977:262:0;;;;;:::i;:::-;;:::i;57071:246::-;;;;;;;;;;;;;:::i;55251:892::-;;;;;;:::i;:::-;;:::i;33334:185::-;;;;;;;;;;-1:-1:-1;33334:185:0;;;;;:::i;:::-;;:::i;53982:79::-;;;;;;;;;;-1:-1:-1;53982:79:0;;;;;:::i;:::-;;:::i;43332:233::-;;;;;;;;;;-1:-1:-1;43332:233:0;;;;;:::i;:::-;;:::i;51060:464::-;;;;;;;;;;-1:-1:-1;51060:464:0;;;;;:::i;:::-;;:::i;50947:97::-;;;;;;;;;;-1:-1:-1;50947:97:0;;;;;:::i;:::-;;:::i;30174:239::-;;;;;;;;;;-1:-1:-1;30174:239:0;;;;;:::i;:::-;;:::i;57636:104::-;;;;;;;;;;;;;:::i;50163:32::-;;;;;;;;;;;;;;;;50202:33;;;;;;;;;;;;;;;;29904:208;;;;;;;;;;-1:-1:-1;29904:208:0;;;;;:::i;:::-;;:::i;29202:22::-;;;;;;;;;;;;;:::i;56167:894::-;;;;;;:::i;:::-;;:::i;58216:92::-;;;;;;;;;;-1:-1:-1;58216:92:0;;;;;:::i;:::-;;:::i;50242:27::-;;;;;;;;;;;;;;;;57855:132;;;;;;;;;;-1:-1:-1;57855:132:0;;;;;:::i;:::-;;:::i;27067:87::-;;;;;;;;;;-1:-1:-1;27140:6:0;;-1:-1:-1;;;;;27140:6:0;27067:87;;50768:54;;;;;;;;;;-1:-1:-1;50768:54:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;52407:1568::-;;;;;;:::i;:::-;;:::i;30649:104::-;;;;;;;;;;;;;:::i;54289:99::-;;;;;;;;;;;;;:::i;51537:860::-;;;;;;:::i;:::-;;:::i;32327:295::-;;;;;;;;;;-1:-1:-1;32327:295:0;;;;;:::i;:::-;;:::i;50064:24::-;;;;;;;;;;;;;;;;50720:41;;;;;;;;;;-1:-1:-1;50720:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9154:14:1;;9147:22;9129:41;;9213:14;;9206:22;9201:2;9186:18;;9179:50;9272:14;9265:22;9245:18;;;9238:50;9117:2;9102:18;50720:41:0;8945:349:1;50348:27:0;;;;;;;;;;-1:-1:-1;50348:27:0;;;;;;;;33590:328;;;;;;;;;;-1:-1:-1;33590:328:0;;;;;:::i;:::-;;:::i;50095:26::-;;;;;;;;;;;;;;;;49991:34;;;;;;;;;;;;;;;;30824:324;;;;;;;;;;-1:-1:-1;30824:324:0;;;;;:::i;:::-;;:::i;50382:31::-;;;;;;;;;;-1:-1:-1;50382:31:0;;;;;;;;;;;54401:570;;;;;;;;;;-1:-1:-1;54401:570:0;;;;;:::i;:::-;;:::i;50129:27::-;;;;;;;;;;;;;;;;50032:25;;;;;;;;;;;;;;;;32693:164;;;;;;;;;;-1:-1:-1;32693:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32814:25:0;;;32790:4;32814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32693:164;57522:104;;;;;;;;;;;;;:::i;27870:192::-;;;;;;;;;;-1:-1:-1;27870:192:0;;;;;:::i;:::-;;:::i;57326:83::-;;;;;;;;;;;;;:::i;57748:101::-;;;;;;;;;;-1:-1:-1;57748:101:0;;;;;:::i;:::-;;:::i;42502:224::-;42604:4;-1:-1:-1;;;;;;42628:50:0;;-1:-1:-1;;;42628:50:0;;:90;;;42682:36;42706:11;42682:23;:36::i;:::-;42621:97;42502:224;-1:-1:-1;;42502:224:0:o;30480:100::-;30534:13;30567:5;30560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30480:100;:::o;32034:221::-;32110:7;35517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35517:16:0;32130:73;;;;-1:-1:-1;;;32130:73:0;;20801:2:1;32130:73:0;;;20783:21:1;20840:2;20820:18;;;20813:30;20879:34;20859:18;;;20852:62;-1:-1:-1;;;20930:18:1;;;20923:42;20982:19;;32130:73:0;;;;;;;;;-1:-1:-1;32223:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32223:24:0;;32034:221::o;31557:411::-;31638:13;31654:23;31669:7;31654:14;:23::i;:::-;31638:39;;31702:5;-1:-1:-1;;;;;31696:11:0;:2;-1:-1:-1;;;;;31696:11:0;;;31688:57;;;;-1:-1:-1;;;31688:57:0;;22759:2:1;31688:57:0;;;22741:21:1;22798:2;22778:18;;;22771:30;22837:34;22817:18;;;22810:62;-1:-1:-1;;;22888:18:1;;;22881:31;22929:19;;31688:57:0;22557:397:1;31688:57:0;25898:10;-1:-1:-1;;;;;31780:21:0;;;;:62;;-1:-1:-1;31805:37:0;31822:5;25898:10;32693:164;:::i;31805:37::-;31758:168;;;;-1:-1:-1;;;31758:168:0;;17023:2:1;31758:168:0;;;17005:21:1;17062:2;17042:18;;;17035:30;17101:34;17081:18;;;17074:62;17172:26;17152:18;;;17145:54;17216:19;;31758:168:0;16821:420:1;31758:168:0;31939:21;31948:2;31952:7;31939:8;:21::i;:::-;31627:341;31557:411;;:::o;57994:216::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;58102:13:::1;:23:::0;;;;58136:12:::1;:26:::0;58173:14:::1;:29:::0;57994:216::o;57415:101::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;57494:14:::1;::::0;;-1:-1:-1;;57476:32:0;::::1;57494:14;::::0;;;::::1;;;57493:15;57476:32:::0;;::::1;;::::0;;57415:101::o;32924:339::-;33119:41;25898:10;33152:7;33119:18;:41::i;:::-;33111:103;;;;-1:-1:-1;;;33111:103:0;;;;;;;:::i;:::-;33227:28;33237:4;33243:2;33247:7;33227:9;:28::i;54073:108::-;54121:4;54150:23;:13;49151:14;;49059:114;54150:23;54143:30;;54073:108;:::o;42810:256::-;42907:7;42943:23;42960:5;42943:16;:23::i;:::-;42935:5;:31;42927:87;;;;-1:-1:-1;;;42927:87:0;;11639:2:1;42927:87:0;;;11621:21:1;11678:2;11658:18;;;11651:30;11717:34;11697:18;;;11690:62;-1:-1:-1;;;11768:18:1;;;11761:41;11819:19;;42927:87:0;11437:407:1;42927:87:0;-1:-1:-1;;;;;;43032:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42810:256::o;54977:262::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;55113:118:::1;;;;;;;;55148:8;55113:118;;;;55180:9;55113:118;;;;55210:6;55113:118;;::::0;55088:14:::1;55103:8;55088:24;;;;;;:::i;:::-;;;;;;;;;;;;;:143;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;55088:143:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;-1:-1:-1;;;54977:262:0:o;57071:246::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;57132:21:::1;57118:11;57191:7;27140:6:::0;;-1:-1:-1;;;;;27140:6:0;;27067:87;57191:7:::1;-1:-1:-1::0;;;;;57183:21:0::1;57227:6;57183:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57164:84;;;57267:7;57259:40;;;::::0;-1:-1:-1;;;57259:40:0;;14688:2:1;57259:40:0::1;::::0;::::1;14670:21:1::0;14727:2;14707:18;;;14700:30;-1:-1:-1;;;14746:18:1;;;14739:50;14806:18;;57259:40:0::1;14486:344:1::0;57259:40:0::1;57108:209;;57071:246::o:0;55251:892::-;55362:14;;;;;;;:23;55354:68;;;;-1:-1:-1;;;55354:68:0;;;;;;;:::i;:::-;55457:1;55441:13;:17;55433:81;;;;-1:-1:-1;;;55433:81:0;;;;;;;:::i;:::-;55550:17;;55533:13;:34;;55525:79;;;;-1:-1:-1;;;55525:79:0;;;;;;;:::i;:::-;55615:28;55646:14;55661:8;55646:24;;;;;;:::i;:::-;;;;;;;;;;;;;55615:55;;55705:1;55689:6;:15;;;:17;55681:37;;;;-1:-1:-1;;;55681:37:0;;12470:2:1;55681:37:0;;;12452:21:1;12509:1;12489:18;;;12482:29;-1:-1:-1;;;12527:18:1;;;12520:38;12575:18;;55681:37:0;12268:331:1;55681:37:0;55754:13;55737:6;:15;;;:30;;55729:83;;;;-1:-1:-1;;;55729:83:0;;;;;;;:::i;:::-;55831:12;;;;55866:9;;55831:31;;55848:13;55831:16;:31::i;:::-;:44;55823:86;;;;-1:-1:-1;;;55823:86:0;;;;;;;:::i;:::-;55925:6;55920:151;55941:13;55937:1;:17;55920:151;;;55976:39;55986:10;55998:16;54265:9;;;54188:94;55998:16;55976:9;:39::i;:::-;56030:9;:11;;;:9;:11;;;:::i;:::-;;;;;;55956:3;;;;;:::i;:::-;;;;55920:151;;;;56102:13;56085:6;:15;;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;55251:892:0:o;33334:185::-;33472:39;33489:4;33495:2;33499:7;33472:39;;;;;;;;;;;;:16;:39::i;53982:79::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;54039:14:::1;54045:7;54039:5;:14::i;:::-;53982:79:::0;:::o;43332:233::-;43407:7;43443:30;43230:10;:17;;43142:113;43443:30;43435:5;:38;43427:95;;;;-1:-1:-1;;;43427:95:0;;23579:2:1;43427:95:0;;;23561:21:1;23618:2;23598:18;;;23591:30;23657:34;23637:18;;;23630:62;-1:-1:-1;;;23708:18:1;;;23701:42;23760:19;;43427:95:0;23377:408:1;43427:95:0;43540:10;43551:5;43540:17;;;;;;;;:::i;:::-;;;;;;;;;43533:24;;43332:233;;;:::o;51060:464::-;51119:7;51186:8;51170:26;;;;;;:::i;:::-;;;;;;;;51159:5;51143:23;;;;;;:53;51139:378;;;-1:-1:-1;;51220:13:0;;;51060:464::o;51139:378::-;51298:7;51282:25;;;;;;:::i;:::-;;;;;;;;51271:5;51255:23;;;;;;:52;51251:266;;;-1:-1:-1;;51331:12:0;;;51060:464::o;51251:266::-;51408:9;51392:27;;;;;;:::i;:::-;;;;;;;;51381:5;51365:23;;;;;;:54;51361:156;;;-1:-1:-1;;51443:14:0;;;51060:464::o;51361:156::-;51490:15;;-1:-1:-1;;;51490:15:0;;24353:2:1;51490:15:0;;;24335:21:1;24392:1;24372:18;;;24365:29;-1:-1:-1;;;24410:18:1;;;24403:35;24455:18;;51490:15:0;24151:328:1;51361:156:0;51060:464;;;:::o;50947:97::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;51018:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30174:239::-:0;30246:7;30282:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30282:16:0;30317:19;30309:73;;;;-1:-1:-1;;;30309:73:0;;18216:2:1;30309:73:0;;;18198:21:1;18255:2;18235:18;;;18228:30;18294:34;18274:18;;;18267:62;-1:-1:-1;;;18345:18:1;;;18338:39;18394:19;;30309:73:0;18014:405:1;57636:104:0;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;57717:15:::1;::::0;;-1:-1:-1;;57698:34:0;::::1;57717:15:::0;;;;::::1;;;57716:16;57698:34:::0;;::::1;;::::0;;57636:104::o;29904:208::-;29976:7;-1:-1:-1;;;;;30004:19:0;;29996:74;;;;-1:-1:-1;;;29996:74:0;;17805:2:1;29996:74:0;;;17787:21:1;17844:2;17824:18;;;17817:30;17883:34;17863:18;;;17856:62;-1:-1:-1;;;17934:18:1;;;17927:40;17984:19;;29996:74:0;17603:406:1;29996:74:0;-1:-1:-1;;;;;;30088:16:0;;;;;:9;:16;;;;;;;29904:208::o;29202:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56167:894::-;56242:15;;;;;;;:24;56234:69;;;;-1:-1:-1;;;56234:69:0;;;;;;;:::i;:::-;56331:1;56322:8;:10;56314:45;;;;-1:-1:-1;;;56314:45:0;;18984:2:1;56314:45:0;;;18966:21:1;19023:2;19003:18;;;18996:30;19062:25;19042:18;;;19035:53;19105:18;;56314:45:0;18782:347:1;56314:45:0;56388:18;;56378:8;:28;;56370:83;;;;-1:-1:-1;;;56370:83:0;;11227:2:1;56370:83:0;;;11209:21:1;11266:2;11246:18;;;11239:30;11305:34;11285:18;;;11278:62;-1:-1:-1;;;11356:18:1;;;11349:41;11407:19;;56370:83:0;11025:407:1;56370:83:0;56486:1;56472:13;;:15;56464:35;;;;-1:-1:-1;;;56464:35:0;;12470:2:1;56464:35:0;;;12452:21:1;12509:1;12489:18;;;12482:29;-1:-1:-1;;;12527:18:1;;;12520:38;12575:18;;56464:35:0;12268:331:1;56464:35:0;56533:8;56518:13;;:23;;56510:76;;;;-1:-1:-1;;;56510:76:0;;;;;;;:::i;:::-;56605:9;;56632;;56605:23;;56619:8;56605:13;:23::i;:::-;:36;56597:78;;;;-1:-1:-1;;;56597:78:0;;;;;;;:::i;:::-;56701:6;56696:324;56717:8;56713:1;:12;56696:324;;;56743:25;:13;49270:19;;49288:1;49270:19;;;49181:127;56743:25;56779:40;56789:10;56801:17;:15;:17::i;56779:40::-;56860:134;;;;;;;;-1:-1:-1;56860:134:0;;;;;;;;;;;;;;;;56830:8;;56839:17;:15;:17::i;:::-;56830:27;;;;;;;;;;;;;;-1:-1:-1;56830:27:0;:164;;;;;;;;;;;;;;;;;-1:-1:-1;;56830:164:0;;;;;-1:-1:-1;;56830:164:0;;;;;;;-1:-1:-1;;56830:164:0;;;;;;;;;;;;;;;;;;56727:3;;;;:::i;:::-;;;;56696:324;;;;57045:8;57030:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;;56167:894:0:o;58216:92::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;58281:10:::1;:19:::0;58216:92::o;57855:132::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;57942:17:::1;:37:::0;57855:132::o;50768:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52407:1568::-;52495:15;;;;;;;:24;52487:72;;;;-1:-1:-1;;;52487:72:0;;16619:2:1;52487:72:0;;;16601:21:1;16658:2;16638:18;;;16631:30;16697:34;16677:18;;;16670:62;-1:-1:-1;;;16748:18:1;;;16741:33;16791:19;;52487:72:0;16417:399:1;52487:72:0;52601:4;52591:8;:14;;52570:67;;;;-1:-1:-1;;;52570:67:0;;17448:2:1;52570:67:0;;;17430:21:1;17487:2;17467:18;;;17460:30;17526;17506:18;;;17499:58;17574:18;;52570:67:0;17246:352:1;52570:67:0;52675:10;52656:17;52664:8;52656:7;:17::i;:::-;-1:-1:-1;;;;;52656:29:0;;52648:73;;;;-1:-1:-1;;;52648:73:0;;23992:2:1;52648:73:0;;;23974:21:1;;;24011:18;;;24004:30;24070:34;24050:18;;;24043:62;24122:18;;52648:73:0;23790:356:1;52648:73:0;52756:9;52740:14;52749:4;52740:8;:14::i;:::-;:25;52732:52;;;;-1:-1:-1;;;52732:52:0;;24686:2:1;52732:52:0;;;24668:21:1;24725:2;24705:18;;;24698:30;-1:-1:-1;;;24744:18:1;;;24737:45;24799:18;;52732:52:0;24484:339:1;52732:52:0;52795:26;52824:18;;;:8;:18;;;;;;;52884:26;;;;52900:8;;52884:26;:::i;:::-;;;;;;;;52874:4;52858:22;;;;;;:52;52854:1104;;;52935:21;;;;:28;52927:69;;;;-1:-1:-1;;;52927:69:0;;21985:2:1;52927:69:0;;;21967:21:1;22024:2;22004:18;;;21997:30;22063:31;22043:18;;;22036:59;22112:18;;52927:69:0;21783:353:1;52927:69:0;53011:32;53021:10;53033:9;;53011;:32::i;:::-;53058:9;:11;;;:9;:11;;;:::i;:::-;;;;-1:-1:-1;;53084:26:0;;-1:-1:-1;;53084:26:0;53106:4;53084:26;;;31627:341;31557:411;;:::o;52854:1104::-;53174:7;53158:25;;;;;;:::i;:::-;;;;;;;;53148:4;53132:22;;;;;;:51;53128:830;;;53208:20;;;;;;;:27;53200:67;;;;-1:-1:-1;;;53200:67:0;;10091:2:1;53200:67:0;;;10073:21:1;10130:2;10110:18;;;10103:30;10169;10149:18;;;10142:58;10217:18;;53200:67:0;9889:352:1;53200:67:0;53290:21;;;;:27;;:21;:27;53282:62;;;;-1:-1:-1;;;53282:62:0;;19686:2:1;53282:62:0;;;19668:21:1;19725:2;19705:18;;;19698:30;-1:-1:-1;;;19744:18:1;;;19737:53;19807:18;;53282:62:0;19484:347:1;53282:62:0;53359:32;53369:10;53381:9;;53359;:32::i;:::-;53406:9;:11;;;:9;:11;;;:::i;:::-;;;;-1:-1:-1;;53432:25:0;;-1:-1:-1;;53432:25:0;;;;;31627:341;31557:411;;:::o;53128:830::-;53521:9;53505:27;;;;;;:::i;:::-;;;;;;;;53495:4;53479:22;;;;;;:53;53475:483;;;53557:20;;;;;;;;:26;;:20;:26;53549:59;;;;-1:-1:-1;;;53549:59:0;;19336:2:1;53549:59:0;;;19318:21:1;19375:2;19355:18;;;19348:30;-1:-1:-1;;;19394:18:1;;;19387:51;19455:18;;53549:59:0;19134:345:1;53549:59:0;53631:21;;;;:27;;:21;:27;53623:62;;;;-1:-1:-1;;;53623:62:0;;19686:2:1;53623:62:0;;;19668:21:1;19725:2;19705:18;;;19698:30;-1:-1:-1;;;19744:18:1;;;19737:53;19807:18;;53623:62:0;19484:347:1;53623:62:0;53708:22;;;;;;;:29;53700:71;;;;-1:-1:-1;;;53700:71:0;;10868:2:1;53700:71:0;;;10850:21:1;10907:2;10887:18;;;10880:30;10946:32;10926:18;;;10919:60;10996:18;;53700:71:0;10666:354:1;53700:71:0;53786:32;53796:10;53808:9;;53786;:32::i;:::-;53833:9;:11;;;:9;:11;;;:::i;:::-;;;;-1:-1:-1;;53859:27:0;;-1:-1:-1;;53859:27:0;;;;;31627:341;31557:411;;:::o;53475:483::-;53919:27;;-1:-1:-1;;;53919:27:0;;13570:2:1;53919:27:0;;;13552:21:1;13609:2;13589:18;;;13582:30;-1:-1:-1;;;13628:18:1;;;13621:47;13685:18;;53919:27:0;13368:341:1;30649:104:0;30705:13;30738:7;30731:14;;;;;:::i;54289:99::-;54336:4;54375:5;54365:9;;:15;;;;:::i;51537:860::-;51606:8;;;;:17;51598:62;;;;-1:-1:-1;;;51598:62:0;;;;;;;:::i;:::-;51694:1;51679:12;:16;51671:80;;;;-1:-1:-1;;;51671:80:0;;;;;;;:::i;:::-;51786:11;;51770:12;:27;;51762:72;;;;-1:-1:-1;;;51762:72:0;;;;;;;:::i;:::-;51883:12;51865:17;:15;:17::i;:::-;:30;;;;:::i;:::-;51853:10;;:42;;51845:99;;;;-1:-1:-1;;;51845:99:0;;14274:2:1;51845:99:0;;;14256:21:1;14313:2;14293:18;;;14286:30;14352:34;14332:18;;;14325:62;-1:-1:-1;;;14403:18:1;;;14396:43;14456:19;;51845:99:0;14072:409:1;51845:99:0;51963:9;;51994;;51963:27;;51977:12;51963:13;:27::i;:::-;:40;51955:82;;;;-1:-1:-1;;;51955:82:0;;;;;;;:::i;:::-;52053:6;52048:326;52069:12;52065:1;:16;52048:326;;;52099:25;:13;49270:19;;49288:1;49270:19;;;49181:127;52099:25;52135:40;52145:10;52157:17;:15;:17::i;52135:40::-;52216:134;;;;;;;;-1:-1:-1;52216:134:0;;;;;;;;;;;;;;;;52186:8;;52195:17;:15;:17::i;:::-;52186:27;;;;;;;;;;;;;;-1:-1:-1;52186:27:0;:164;;;;;;;;;;;;;;;;;-1:-1:-1;;52186:164:0;;;;;-1:-1:-1;;52186:164:0;;;;;;;-1:-1:-1;;52186:164:0;;;;;;;;;;;;;;;;;;52083:3;;;;:::i;:::-;;;;52048:326;;32327:295;-1:-1:-1;;;;;32430:24:0;;25898:10;32430:24;;32422:62;;;;-1:-1:-1;;;32422:62:0;;15442:2:1;32422:62:0;;;15424:21:1;15481:2;15461:18;;;15454:30;15520:27;15500:18;;;15493:55;15565:18;;32422:62:0;15240:349:1;32422:62:0;25898:10;32497:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32497:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32497:53:0;;;;;;;;;;32566:48;;8893:41:1;;;32497:42:0;;25898:10;32566:48;;8866:18:1;32566:48:0;;;;;;;32327:295;;:::o;33590:328::-;33765:41;25898:10;33798:7;33765:18;:41::i;:::-;33757:103;;;;-1:-1:-1;;;33757:103:0;;;;;;;:::i;:::-;33871:39;33885:4;33891:2;33895:7;33904:5;33871:13;:39::i;:::-;33590:328;;;;:::o;30824:324::-;35493:4;35517:16;;;:7;:16;;;;;;30897:13;;-1:-1:-1;;;;;35517:16:0;30923:76;;;;-1:-1:-1;;;30923:76:0;;22343:2:1;30923:76:0;;;22325:21:1;22382:2;22362:18;;;22355:30;22421:34;22401:18;;;22394:62;-1:-1:-1;;;22472:18:1;;;22465:45;22527:19;;30923:76:0;22141:411:1;30923:76:0;31012:18;31033:9;:7;:9::i;:::-;31012:30;;31081:1;31066:4;31060:18;:22;:80;;;;;;;;;;;;;;;;;31109:4;31115:18;:7;:16;:18::i;:::-;31092:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31060:80;31053:87;30824:324;-1:-1:-1;;;30824:324:0:o;54401:570::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;54486:3:::1;54475:8;:14;;54467:56;;;::::0;-1:-1:-1;;;54467:56:0;;13916:2:1;54467:56:0::1;::::0;::::1;13898:21:1::0;13955:2;13935:18;;;13928:30;13994:31;13974:18;;;13967:59;14043:18;;54467:56:0::1;13714:353:1::0;54467:56:0::1;54572:8;54554:17;:15;:17::i;:::-;:26;;;;:::i;:::-;54542:10;;:38;;54534:96;;;::::0;-1:-1:-1;;;54534:96:0;;25030:2:1;54534:96:0::1;::::0;::::1;25012:21:1::0;25069:2;25049:18;;;25042:30;25108:34;25088:18;;;25081:62;-1:-1:-1;;;25159:18:1;;;25152:44;25213:19;;54534:96:0::1;24828:410:1::0;54534:96:0::1;54646:6;54641:323;54662:8;54658:1;:12;54641:323;;;54688:25;:13;49270:19:::0;;49288:1;49270:19;;;49181:127;54688:25:::1;54724:40;54734:10;54746:17;:15;:17::i;54724:40::-;54805:134;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;54805:134:0;;;::::1;::::0;::::1;::::0;;;;;;;;;;54775:8:::1;::::0;54784:17:::1;:15;:17::i;:::-;54775:27:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;54775:27:0;:164;;;;;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;-1:-1:-1::0;;54775:164:0;::::1;;;;-1:-1:-1::0;;54775:164:0;::::1;;::::0;;;;-1:-1:-1;;54775:164:0;;;;;;;;;;::::1;::::0;;;::::1;;::::0;;54672:3;::::1;::::0;::::1;:::i;:::-;;;;54641:323;;57522:104:::0;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;57603:15:::1;::::0;;-1:-1:-1;;57584:34:0;::::1;57603:15:::0;;;;::::1;;;57602:16;57584:34:::0;;::::1;;::::0;;57522:104::o;27870:192::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27959:22:0;::::1;27951:73;;;::::0;-1:-1:-1;;;27951:73:0;;12806:2:1;27951:73:0::1;::::0;::::1;12788:21:1::0;12845:2;12825:18;;;12818:30;12884:34;12864:18;;;12857:62;-1:-1:-1;;;12935:18:1;;;12928:36;12981:19;;27951:73:0::1;12604:402:1::0;27951:73:0::1;28035:19;28045:8;28035:9;:19::i;57326:83::-:0;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;57393:8:::1;::::0;;-1:-1:-1;;57381:20:0;::::1;57393:8;::::0;;::::1;57392:9;57381:20;::::0;;57326:83::o;57748:101::-;27140:6;;-1:-1:-1;;;;;27140:6:0;25898:10;27287:23;27279:68;;;;-1:-1:-1;;;27279:68:0;;;;;;;:::i;:::-;57819:9:::1;:22:::0;57748:101::o;29535:305::-;29637:4;-1:-1:-1;;;;;;29674:40:0;;-1:-1:-1;;;29674:40:0;;:105;;-1:-1:-1;;;;;;;29731:48:0;;-1:-1:-1;;;29731:48:0;29674:105;:158;;;-1:-1:-1;;;;;;;;;;18913:40:0;;;29796:36;18804:157;39410:174;39485:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39485:29:0;-1:-1:-1;;;;;39485:29:0;;;;;;;;:24;;39539:23;39485:24;39539:14;:23::i;:::-;-1:-1:-1;;;;;39530:46:0;;;;;;;;;;;39410:174;;:::o;35722:348::-;35815:4;35517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35517:16:0;35832:73;;;;-1:-1:-1;;;35832:73:0;;15796:2:1;35832:73:0;;;15778:21:1;15835:2;15815:18;;;15808:30;15874:34;15854:18;;;15847:62;-1:-1:-1;;;15925:18:1;;;15918:42;15977:19;;35832:73:0;15594:408:1;35832:73:0;35916:13;35932:23;35947:7;35932:14;:23::i;:::-;35916:39;;35985:5;-1:-1:-1;;;;;35974:16:0;:7;-1:-1:-1;;;;;35974:16:0;;:51;;;;36018:7;-1:-1:-1;;;;;35994:31:0;:20;36006:7;35994:11;:20::i;:::-;-1:-1:-1;;;;;35994:31:0;;35974:51;:87;;;-1:-1:-1;;;;;;32814:25:0;;;32790:4;32814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36029:32;35966:96;35722:348;-1:-1:-1;;;;35722:348:0:o;38714:578::-;38873:4;-1:-1:-1;;;;;38846:31:0;:23;38861:7;38846:14;:23::i;:::-;-1:-1:-1;;;;;38846:31:0;;38838:85;;;;-1:-1:-1;;;38838:85:0;;21575:2:1;38838:85:0;;;21557:21:1;21614:2;21594:18;;;21587:30;21653:34;21633:18;;;21626:62;-1:-1:-1;;;21704:18:1;;;21697:39;21753:19;;38838:85:0;21373:405:1;38838:85:0;-1:-1:-1;;;;;38942:16:0;;38934:65;;;;-1:-1:-1;;;38934:65:0;;15037:2:1;38934:65:0;;;15019:21:1;15076:2;15056:18;;;15049:30;15115:34;15095:18;;;15088:62;-1:-1:-1;;;15166:18:1;;;15159:34;15210:19;;38934:65:0;14835:400:1;38934:65:0;39012:39;39033:4;39039:2;39043:7;39012:20;:39::i;:::-;39116:29;39133:1;39137:7;39116:8;:29::i;:::-;-1:-1:-1;;;;;39158:15:0;;;;;;:9;:15;;;;;:20;;39177:1;;39158:15;:20;;39177:1;;39158:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39189:13:0;;;;;;:9;:13;;;;;:18;;39206:1;;39189:13;:18;;39206:1;;39189:18;:::i;:::-;;;;-1:-1:-1;;39218:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39218:21:0;-1:-1:-1;;;;;39218:21:0;;;;;;;;;39257:27;;39218:16;;39257:27;;;;;;;38714:578;;;:::o;3152:98::-;3210:7;3237:5;3241:1;3237;:5;:::i;36412:110::-;36488:26;36498:2;36502:7;36488:26;;;;;;;;;;;;:9;:26::i;38017:360::-;38077:13;38093:23;38108:7;38093:14;:23::i;:::-;38077:39;;38129:48;38150:5;38165:1;38169:7;38129:20;:48::i;:::-;38218:29;38235:1;38239:7;38218:8;:29::i;:::-;-1:-1:-1;;;;;38260:16:0;;;;;;:9;:16;;;;;:21;;38280:1;;38260:16;:21;;38280:1;;38260:21;:::i;:::-;;;;-1:-1:-1;;38299:16:0;;;;:7;:16;;;;;;38292:23;;-1:-1:-1;;;;;;38292:23:0;;;38333:36;38307:7;;38299:16;-1:-1:-1;;;;;38333:36:0;;;;;38299:16;;38333:36;38066:311;38017:360;:::o;34800:315::-;34957:28;34967:4;34973:2;34977:7;34957:9;:28::i;:::-;35004:48;35027:4;35033:2;35037:7;35046:5;35004:22;:48::i;:::-;34996:111;;;;-1:-1:-1;;;34996:111:0;;;;;;;:::i;31396:99::-;31446:13;31479:8;31472:15;;;;;:::i;6832:723::-;6888:13;7109:10;7105:53;;-1:-1:-1;;7136:10:0;;;;;;;;;;;;-1:-1:-1;;;7136:10:0;;;;;6832:723::o;7105:53::-;7183:5;7168:12;7224:78;7231:9;;7224:78;;7257:8;;;;:::i;:::-;;-1:-1:-1;7280:10:0;;-1:-1:-1;7288:2:0;7280:10;;:::i;:::-;;;7224:78;;;7312:19;7344:6;7334:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7334:17:0;;7312:39;;7362:154;7369:10;;7362:154;;7396:11;7406:1;7396:11;;:::i;:::-;;-1:-1:-1;7465:10:0;7473:2;7465:5;:10;:::i;:::-;7452:24;;:2;:24;:::i;:::-;7439:39;;7422:6;7429;7422:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7422:56:0;;;;;;;;-1:-1:-1;7493:11:0;7502:2;7493:11;;:::i;:::-;;;7362:154;;28070:173;28145:6;;;-1:-1:-1;;;;;28162:17:0;;;-1:-1:-1;;;;;;28162:17:0;;;;;;;28195:40;;28145:6;;;28162:17;28145:6;;28195:40;;28126:16;;28195:40;28115:128;28070:173;:::o;44178:589::-;-1:-1:-1;;;;;44384:18:0;;44380:187;;44419:40;44451:7;45594:10;:17;;45567:24;;;;:15;:24;;;;;:44;;;45622:24;;;;;;;;;;;;45490:164;44419:40;44380:187;;;44489:2;-1:-1:-1;;;;;44481:10:0;:4;-1:-1:-1;;;;;44481:10:0;;44477:90;;44508:47;44541:4;44547:7;44508:32;:47::i;:::-;-1:-1:-1;;;;;44581:16:0;;44577:183;;44614:45;44651:7;44614:36;:45::i;44577:183::-;44687:4;-1:-1:-1;;;;;44681:10:0;:2;-1:-1:-1;;;;;44681:10:0;;44677:83;;44708:40;44736:2;44740:7;44708:27;:40::i;36749:321::-;36879:18;36885:2;36889:7;36879:5;:18::i;:::-;36930:54;36961:1;36965:2;36969:7;36978:5;36930:22;:54::i;:::-;36908:154;;;;-1:-1:-1;;;36908:154:0;;;;;;;:::i;40149:803::-;40304:4;-1:-1:-1;;;;;40325:13:0;;9622:20;9670:8;40321:624;;40361:72;;-1:-1:-1;;;40361:72:0;;-1:-1:-1;;;;;40361:36:0;;;;;:72;;25898:10;;40412:4;;40418:7;;40427:5;;40361:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40361:72:0;;;;;;;;-1:-1:-1;;40361:72:0;;;;;;;;;;;;:::i;:::-;;;40357:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40607:13:0;;40603:272;;40650:60;;-1:-1:-1;;;40650:60:0;;;;;;;:::i;40603:272::-;40825:6;40819:13;40810:6;40806:2;40802:15;40795:38;40357:533;-1:-1:-1;;;;;;40484:55:0;-1:-1:-1;;;40484:55:0;;-1:-1:-1;40477:62:0;;40321:624;-1:-1:-1;40929:4:0;40149:803;;;;;;:::o;46281:988::-;46547:22;46597:1;46572:22;46589:4;46572:16;:22::i;:::-;:26;;;;:::i;:::-;46609:18;46630:26;;;:17;:26;;;;;;46547:51;;-1:-1:-1;46763:28:0;;;46759:328;;-1:-1:-1;;;;;46830:18:0;;46808:19;46830:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46881:30;;;;;;:44;;;46998:30;;:17;:30;;;;;:43;;;46759:328;-1:-1:-1;47183:26:0;;;;:17;:26;;;;;;;;47176:33;;;-1:-1:-1;;;;;47227:18:0;;;;;:12;:18;;;;;:34;;;;;;;47220:41;46281:988::o;47564:1079::-;47842:10;:17;47817:22;;47842:21;;47862:1;;47842:21;:::i;:::-;47874:18;47895:24;;;:15;:24;;;;;;48268:10;:26;;47817:46;;-1:-1:-1;47895:24:0;;47817:46;;48268:26;;;;;;:::i;:::-;;;;;;;;;48246:48;;48332:11;48307:10;48318;48307:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48412:28;;;:15;:28;;;;;;;:41;;;48584:24;;;;;48577:31;48619:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47635:1008;;;47564:1079;:::o;45068:221::-;45153:14;45170:20;45187:2;45170:16;:20::i;:::-;-1:-1:-1;;;;;45201:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45246:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45068:221:0:o;37406:382::-;-1:-1:-1;;;;;37486:16:0;;37478:61;;;;-1:-1:-1;;;37478:61:0;;20038:2:1;37478:61:0;;;20020:21:1;;;20057:18;;;20050:30;20116:34;20096:18;;;20089:62;20168:18;;37478:61:0;19836:356:1;37478:61:0;35493:4;35517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35517:16:0;:30;37550:58;;;;-1:-1:-1;;;37550:58:0;;13213:2:1;37550:58:0;;;13195:21:1;13252:2;13232:18;;;13225:30;13291;13271:18;;;13264:58;13339:18;;37550:58:0;13011:352:1;37550:58:0;37621:45;37650:1;37654:2;37658:7;37621:20;:45::i;:::-;-1:-1:-1;;;;;37679:13:0;;;;;;:9;:13;;;;;:18;;37696:1;;37679:13;:18;;37696:1;;37679:18;:::i;:::-;;;;-1:-1:-1;;37708:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37708:21:0;-1:-1:-1;;;;;37708:21:0;;;;;;;;37747:33;;37708:16;;;37747:33;;37708:16;;37747:33;37406:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:221;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:245::-;3183:6;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3291:9;3278:23;3310:30;3334:5;3310:30;:::i;3375:249::-;3444:6;3497:2;3485:9;3476:7;3472:23;3468:32;3465:52;;;3513:1;3510;3503:12;3465:52;3545:9;3539:16;3564:30;3588:5;3564:30;:::i;3629:322::-;3698:6;3751:2;3739:9;3730:7;3726:23;3722:32;3719:52;;;3767:1;3764;3757:12;3719:52;3807:9;3794:23;3840:18;3832:6;3829:30;3826:50;;;3872:1;3869;3862:12;3826:50;3895;3937:7;3928:6;3917:9;3913:22;3895:50;:::i;3956:390::-;4034:6;4042;4095:2;4083:9;4074:7;4070:23;4066:32;4063:52;;;4111:1;4108;4101:12;4063:52;4151:9;4138:23;4184:18;4176:6;4173:30;4170:50;;;4216:1;4213;4206:12;4170:50;4239;4281:7;4272:6;4261:9;4257:22;4239:50;:::i;:::-;4229:60;4336:2;4321:18;;;;4308:32;;-1:-1:-1;;;;3956:390:1:o;4351:458::-;4438:6;4446;4454;4507:2;4495:9;4486:7;4482:23;4478:32;4475:52;;;4523:1;4520;4513:12;4475:52;4563:9;4550:23;4596:18;4588:6;4585:30;4582:50;;;4628:1;4625;4618:12;4582:50;4651;4693:7;4684:6;4673:9;4669:22;4651:50;:::i;:::-;4641:60;4748:2;4733:18;;4720:32;;-1:-1:-1;4799:2:1;4784:18;;;4771:32;;4351:458;-1:-1:-1;;;;4351:458:1:o;4814:180::-;4873:6;4926:2;4914:9;4905:7;4901:23;4897:32;4894:52;;;4942:1;4939;4932:12;4894:52;-1:-1:-1;4965:23:1;;4814:180;-1:-1:-1;4814:180:1:o;4999:390::-;5077:6;5085;5138:2;5126:9;5117:7;5113:23;5109:32;5106:52;;;5154:1;5151;5144:12;5106:52;5190:9;5177:23;5167:33;;5251:2;5240:9;5236:18;5223:32;5278:18;5270:6;5267:30;5264:50;;;5310:1;5307;5300:12;5264:50;5333;5375:7;5366:6;5355:9;5351:22;5333:50;:::i;:::-;5323:60;;;4999:390;;;;;:::o;5394:316::-;5471:6;5479;5487;5540:2;5528:9;5519:7;5515:23;5511:32;5508:52;;;5556:1;5553;5546:12;5508:52;-1:-1:-1;;5579:23:1;;;5649:2;5634:18;;5621:32;;-1:-1:-1;5700:2:1;5685:18;;;5672:32;;5394:316;-1:-1:-1;5394:316:1:o;5715:257::-;5756:3;5794:5;5788:12;5821:6;5816:3;5809:19;5837:63;5893:6;5886:4;5881:3;5877:14;5870:4;5863:5;5859:16;5837:63;:::i;:::-;5954:2;5933:15;-1:-1:-1;;5929:29:1;5920:39;;;;5961:4;5916:50;;5715:257;-1:-1:-1;;5715:257:1:o;5977:1104::-;6107:3;6136:1;6169:6;6163:13;6199:3;6221:1;6249:9;6245:2;6241:18;6231:28;;6309:2;6298:9;6294:18;6331;6321:61;;6375:4;6367:6;6363:17;6353:27;;6321:61;6401:2;6449;6441:6;6438:14;6418:18;6415:38;6412:165;;;-1:-1:-1;;;6476:33:1;;6532:4;6529:1;6522:15;6562:4;6483:3;6550:17;6412:165;6593:18;6620:104;;;;6738:1;6733:323;;;;6586:470;;6620:104;-1:-1:-1;;6653:24:1;;6641:37;;6698:16;;;;-1:-1:-1;6620:104:1;;6733:323;25862:1;25855:14;;;25899:4;25886:18;;6831:1;6845:165;6859:6;6856:1;6853:13;6845:165;;;6937:14;;6924:11;;;6917:35;6980:16;;;;6874:10;;6845:165;;;6849:3;;7039:6;7034:3;7030:16;7023:23;;6586:470;-1:-1:-1;7072:3:1;;5977:1104;-1:-1:-1;;;;;;;;5977:1104:1:o;7086:276::-;7217:3;7255:6;7249:13;7271:53;7317:6;7312:3;7305:4;7297:6;7293:17;7271:53;:::i;:::-;7340:16;;;;;7086:276;-1:-1:-1;;7086:276:1:o;7367:470::-;7546:3;7584:6;7578:13;7600:53;7646:6;7641:3;7634:4;7626:6;7622:17;7600:53;:::i;:::-;7716:13;;7675:16;;;;7738:57;7716:13;7675:16;7772:4;7760:17;;7738:57;:::i;:::-;7811:20;;7367:470;-1:-1:-1;;;;7367:470:1:o;8260:488::-;-1:-1:-1;;;;;8529:15:1;;;8511:34;;8581:15;;8576:2;8561:18;;8554:43;8628:2;8613:18;;8606:34;;;8676:3;8671:2;8656:18;;8649:31;;;8454:4;;8697:45;;8722:19;;8714:6;8697:45;:::i;:::-;8689:53;8260:488;-1:-1:-1;;;;;;8260:488:1:o;9299:219::-;9448:2;9437:9;9430:21;9411:4;9468:44;9508:2;9497:9;9493:18;9485:6;9468:44;:::i;9523:361::-;9728:2;9717:9;9710:21;9691:4;9748:44;9788:2;9777:9;9773:18;9765:6;9748:44;:::i;:::-;9823:2;9808:18;;9801:34;;;;-1:-1:-1;9866:2:1;9851:18;9844:34;9740:52;9523:361;-1:-1:-1;9523:361:1:o;10246:415::-;10448:2;10430:21;;;10487:2;10467:18;;;10460:30;10526:34;10521:2;10506:18;;10499:62;-1:-1:-1;;;10592:2:1;10577:18;;10570:49;10651:3;10636:19;;10246:415::o;11849:414::-;12051:2;12033:21;;;12090:2;12070:18;;;12063:30;12129:34;12124:2;12109:18;;12102:62;-1:-1:-1;;;12195:2:1;12180:18;;12173:48;12253:3;12238:19;;11849:414::o;16007:405::-;16209:2;16191:21;;;16248:2;16228:18;;;16221:30;16287:34;16282:2;16267:18;;16260:62;-1:-1:-1;;;16353:2:1;16338:18;;16331:39;16402:3;16387:19;;16007:405::o;18424:353::-;18626:2;18608:21;;;18665:2;18645:18;;;18638:30;18704:31;18699:2;18684:18;;18677:59;18768:2;18753:18;;18424:353::o;20197:397::-;20399:2;20381:21;;;20438:2;20418:18;;;20411:30;20477:34;20472:2;20457:18;;20450:62;-1:-1:-1;;;20543:2:1;20528:18;;20521:31;20584:3;20569:19;;20197:397::o;21012:356::-;21214:2;21196:21;;;21233:18;;;21226:30;21292:34;21287:2;21272:18;;21265:62;21359:2;21344:18;;21012:356::o;22959:413::-;23161:2;23143:21;;;23200:2;23180:18;;;23173:30;23239:34;23234:2;23219:18;;23212:62;-1:-1:-1;;;23305:2:1;23290:18;;23283:47;23362:3;23347:19;;22959:413::o;25243:356::-;25445:2;25427:21;;;25464:18;;;25457:30;25523:34;25518:2;25503:18;;25496:62;25590:2;25575:18;;25243:356::o;25915:128::-;25955:3;25986:1;25982:6;25979:1;25976:13;25973:39;;;25992:18;;:::i;:::-;-1:-1:-1;26028:9:1;;25915:128::o;26048:120::-;26088:1;26114;26104:35;;26119:18;;:::i;:::-;-1:-1:-1;26153:9:1;;26048:120::o;26173:168::-;26213:7;26279:1;26275;26271:6;26267:14;26264:1;26261:21;26256:1;26249:9;26242:17;26238:45;26235:71;;;26286:18;;:::i;:::-;-1:-1:-1;26326:9:1;;26173:168::o;26346:125::-;26386:4;26414:1;26411;26408:8;26405:34;;;26419:18;;:::i;:::-;-1:-1:-1;26456:9:1;;26346:125::o;26476:258::-;26548:1;26558:113;26572:6;26569:1;26566:13;26558:113;;;26648:11;;;26642:18;26629:11;;;26622:39;26594:2;26587:10;26558:113;;;26689:6;26686:1;26683:13;26680:48;;;-1:-1:-1;;26724:1:1;26706:16;;26699:27;26476:258::o;26739:380::-;26818:1;26814:12;;;;26861;;;26882:61;;26936:4;26928:6;26924:17;26914:27;;26882:61;26989:2;26981:6;26978:14;26958:18;26955:38;26952:161;;;27035:10;27030:3;27026:20;27023:1;27016:31;27070:4;27067:1;27060:15;27098:4;27095:1;27088:15;26952:161;;26739:380;;;:::o;27124:135::-;27163:3;-1:-1:-1;;27184:17:1;;27181:43;;;27204:18;;:::i;:::-;-1:-1:-1;27251:1:1;27240:13;;27124:135::o;27264:112::-;27296:1;27322;27312:35;;27327:18;;:::i;:::-;-1:-1:-1;27361:9:1;;27264:112::o;27381:127::-;27442:10;27437:3;27433:20;27430:1;27423:31;27473:4;27470:1;27463:15;27497:4;27494:1;27487:15;27513:127;27574:10;27569:3;27565:20;27562:1;27555:31;27605:4;27602:1;27595:15;27629:4;27626:1;27619:15;27645:127;27706:10;27701:3;27697:20;27694:1;27687:31;27737:4;27734:1;27727:15;27761:4;27758:1;27751:15;27777:127;27838:10;27833:3;27829:20;27826:1;27819:31;27869:4;27866:1;27859:15;27893:4;27890:1;27883:15;27909:127;27970:10;27965:3;27961:20;27958:1;27951:31;28001:4;27998:1;27991:15;28025:4;28022:1;28015:15;28041:131;-1:-1:-1;;;;;;28115:32:1;;28105:43;;28095:71;;28162:1;28159;28152:12

Swarm Source

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