ETH Price: $3,469.89 (+0.44%)
Gas: 5 Gwei

Token

MadApes (MAD)
 

Overview

Max Total Supply

3,632 MAD

Holders

902

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MAD
0xDa2A02C9F8B66f756f76d795D1ae0aD58788B009
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:
MadApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-19
*/

// File: contracts/IMadApesArmoryToken.sol



pragma solidity 0.8.7;

interface IMadApesArmoryToken {
    function balanceOf(address account, uint256 id) external view returns (uint256 balance);
    function burnOilForAddress(uint256 typeId, address burnTokenAddress, uint256 quantity) external;
}
// File: contracts/IAcidApesToken.sol



pragma solidity 0.8.7;

interface IAcidApesToken {
  function balanceOf(address owner) external view returns (uint256 balance);
  function ownerOf(uint256 tokenId) external view returns (address owner);
  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
  function totalSupply() external view returns (uint256);
  function walletOfOwner(address owner) external view returns (uint256[] memory tokenIds);
}



// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MadApes.sol



pragma solidity 0.8.7;






contract MadApes is ERC721Enumerable, Ownable {

    using SafeMath for uint256;
    
    string public baseTokenURI;

    bool public holderMintActive;

    uint256 public constant RESERVED_FOR_AA = 1778;
    uint256 public price = 0 ether;
    uint256 public saleState = 0;  // 0 = paused, 1 = live
    uint256 public max_apes = 5555;
    uint256 public nonreserved_minted_tokens = 0;
    uint256 public reserved_amount = 500;
    uint256 public purchase_limit = 5;

    // withdraw address
    address public a1 = 0x5fcBB68EA092afcEF6e52B1a417F1867cE70d090;// Mad Apes Deployer

    //AA contract address
    address public aa_contract = 0x92b1289Ee1c70cB2e51fA63A448cEeF2734ec6FF; //main net - 0x92b1289Ee1c70cB2e51fA63A448cEeF2734ec6FF

    //MadApesArmory contract address
    address public maa_contract = 0xb2C939Ba03C8C533727F955df53A2409Bc3268B4;

    //constructor
    constructor(string memory _baseTokenURI) ERC721("MadApes","MAD") {
        baseTokenURI = _baseTokenURI;
    }    

    //mint functions
    function mintApes(uint256 num) public payable {
        require( msg.value >= price * num,  "Ether sent is insufficient");
        _mintApes(num);
    }

    //private function
    function _mintApes(uint256 num) private {
        uint256 mintedTokens = nonreserved_minted_tokens;
        require( saleState > 0,             "Main sale is not active" );
        require( num <= purchase_limit,     "Requested mints exceed maximum" );
        require((nonreserved_minted_tokens + num) <= (max_apes - RESERVED_FOR_AA - reserved_amount), "Requested mints exceed remaining supply");
        
        nonreserved_minted_tokens = nonreserved_minted_tokens + num;
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, mintedTokens + i + RESERVED_FOR_AA);
        }
    }

    function upgradeToken(uint256 _tokenId) public {
        uint256 level;
        //check that they own token
        require( msg.sender  == ownerOf(_tokenId), "You must own the Mad Ape to upgrade it");
        
        //determine token level
        level = (_tokenId / max_apes) + 1;
        require(level <= 3, "Your token is fully upgraded");

         //ensure they own the oil to get to next level
        if (level == 1 && _tokenId >= RESERVED_FOR_AA ) {
            require( balanceOfArmoryOwner(msg.sender,0) >= 2, "You must own at least two consumables of this type");
        } else if (level == 2) {
            require( balanceOfArmoryOwner(msg.sender,0) >= 4, "You must own at least four consumables of this type");
        } else if (level == 3) {
            require( balanceOfArmoryOwner(msg.sender,0) >= 6, "You must own at least six consumables of this type");
        }

         //ensure corresponding token in appopriate range doesn't already exist
        require(!_exists(_tokenId + max_apes), "This token has already been upgraded");

        // allow free level 1 upgrade for AA holders
        if ( !(level == 1 && _tokenId < RESERVED_FOR_AA)) { 
            //burn oil to get next level
            burnOilForAddress(0,msg.sender,level*2);
        }

        //mint corresponding token in appropriate range
        _safeMint(msg.sender, _tokenId + max_apes);  
    }

    //free mint for AA holders
    function holderMint(uint256 _tokenId) public {
        require( holderMintActive, "Mad Apes grant period has ended");
        //check sender owns Acid Apes token
        require(msg.sender == ownerOfAcidApes(_tokenId), "Must own corresponding Acid Apes token for holder mint");
        //confirm corresponding mad token doesn't exist
        require(!_exists(_tokenId), "Mad Ape token already exists");
        
        _safeMint( msg.sender, _tokenId);
    }

    //mint all available claims for AA holders
    function holderMintAll() public {

    //get array for all acid apes tokens owned
    //iterate over the list
    //check if corresponding mad token doesn't exist
    //increment supply and mint mad ape 

        uint256[] memory ownedTokens = walletOfAAOwner(msg.sender);

        for(uint256 i; i < ownedTokens.length; i++)
        {
            uint256 _curToken = ownedTokens[i];
            //token exist in Mad Apes? If yes, continue. If no, then call holderMint
            if( _exists(_curToken) )
            {
                continue;
            }
            else
            {     
                holderMint(_curToken);
            }
        }
    }

    //views

    //override so openzeppelin tokenURI() can utilize the baseTokenURI we set
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function walletOfAAOwner(address _owner) public view returns (uint256[] memory) {
        IAcidApesToken acidApes = IAcidApesToken(aa_contract);
        return acidApes.walletOfOwner(_owner);
    }

    function ownerOfAcidApes(uint256 _tokenId) public view returns (address) {
        IAcidApesToken acidApes = IAcidApesToken(aa_contract);
        return acidApes.ownerOf(_tokenId);
    }

    function balanceOfArmoryOwner(address _owner, uint256 _id) public view returns (uint256) {
        IMadApesArmoryToken maa = IMadApesArmoryToken(maa_contract);
        return maa.balanceOf(_owner,_id);
    }

    function burnOilForAddress(uint256 _typeId, address _burnTokenAddress, uint256 quantity) private {
        IMadApesArmoryToken maa = IMadApesArmoryToken(maa_contract);
        maa.burnOilForAddress(_typeId, _burnTokenAddress, quantity);
    }

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }


    //setters

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setHolderMintActive(bool _holderMintActive) public onlyOwner {
        holderMintActive = _holderMintActive;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function setMaxApes(uint256 _newMax) public onlyOwner{
        max_apes = _newMax;
    }
            
    // 0 = paused, 1 = live 
    function setSaleState(uint256 _saleState) public onlyOwner {
        saleState = _saleState;
    }

    function setPurchaseLimit(uint256 _newLimit) public onlyOwner{
        purchase_limit = _newLimit;
    }

    function setWithdrawAddress(address _a) public onlyOwner {
        a1 = _a;
    }

    function setAAContractAddress(address _a) public onlyOwner {
        aa_contract = _a;
    }

    function setMAAContractAddress(address _a) public onlyOwner {
        maa_contract = _a;
    }

    function setNonReservedMintedTokens(uint256 _reservedTokens) public onlyOwner {
        nonreserved_minted_tokens = _reservedTokens;
    }

    function setReservedAmount(uint256 _reservedAmount) public onlyOwner {
        reserved_amount = _reservedAmount;
    }

    //utils
    
    function giveAway(address _to, uint256 _count) external onlyOwner() {
        uint256 mintedTokens = nonreserved_minted_tokens;
        require((nonreserved_minted_tokens + _count) <= (max_apes - RESERVED_FOR_AA), "Requested mints exceed remaining supply");
        
        nonreserved_minted_tokens = nonreserved_minted_tokens + _count;
        for(uint256 i; i < _count; i++){
            _safeMint( _to, mintedTokens + i + RESERVED_FOR_AA);
        }
    }

    function withdrawBalance() public payable onlyOwner {
        uint256 _payment = address(this).balance;
        
        (bool success, ) = payable(a1).call{value: _payment}("");
        require(success, "Transfer failed to a1.");

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","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":"RESERVED_FOR_AA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aa_contract","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOfArmoryOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"holderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"holderMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderMintAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maa_contract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_apes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintApes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonreserved_minted_tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOfAcidApes","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved_amount","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":"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":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setAAContractAddress","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_holderMintActive","type":"bool"}],"name":"setHolderMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setMAAContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxApes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedTokens","type":"uint256"}],"name":"setNonReservedMintedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedAmount","type":"uint256"}],"name":"setReservedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setWithdrawAddress","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":"_tokenId","type":"uint256"}],"name":"upgradeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfAAOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600d819055600e8190556115b3600f556010556101f46011556005601255601380546001600160a01b0319908116735fcbb68ea092afcef6e52b1a417f1867ce70d090179091556014805482167392b1289ee1c70cb2e51fa63a448ceef2734ec6ff1790556015805490911673b2c939ba03c8c533727f955df53a2409bc3268b41790553480156200009757600080fd5b506040516200343938038062003439833981016040819052620000ba9162000250565b60408051808201825260078152664d61644170657360c81b60208083019182528351808501909452600384526213505160ea1b9084015281519192916200010491600091620001aa565b5080516200011a906001906020840190620001aa565b50505062000137620001316200015460201b60201c565b62000158565b80516200014c90600b906020840190620001aa565b50506200037f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b8906200032c565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b600060208083850312156200026457600080fd5b82516001600160401b03808211156200027c57600080fd5b818501915085601f8301126200029157600080fd5b815181811115620002a657620002a662000369565b604051601f8201601f19908116603f01168101908382118183101715620002d157620002d162000369565b816040528281528886848701011115620002ea57600080fd5b600093505b828410156200030e5784840186015181850187015292850192620002ef565b82841115620003205760008684830101525b98975050505050505050565b600181811c908216806200034157607f821691505b602082108114156200036357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6130aa806200038f6000396000f3fe60806040526004361061031a5760003560e01c806361715215116101ab578063a22cb465116100f7578063d547cfb711610095578063edac37a31161006f578063edac37a314610911578063f2fde38b14610931578063f9fcf42914610951578063ff89168a1461096657600080fd5b8063d547cfb71461089d578063d694e950146108b2578063e985e9c5146108c857600080fd5b8063b88d4fde116100d1578063b88d4fde1461081d578063c84bb62f1461083d578063c87b56dd1461085d578063ca8001441461087d57600080fd5b8063a22cb465146107d1578063a59cf4c9146107f1578063b61e48441461080757600080fd5b806387b9ae931161016457806391b7f5ed1161013e57806391b7f5ed14610766578063935077f41461078657806395d89b41146107a6578063a035b1fe146107bb57600080fd5b806387b9ae93146107125780638d5e6872146107325780638da5cb5b1461074857600080fd5b8063617152151461066a5780636352211e1461067d5780636406c3e51461069d5780636edc4388146106bd57806370a08231146106dd578063715018a6146106fd57600080fd5b80632668a3c11161026a57806342842e0e116102235780634f6ccce7116101fd5780634f6ccce71461060c57806355f804b31461062c5780635fd8c7101461064c578063603f4d521461065457600080fd5b806342842e0e1461059f578063438b6300146105bf5780634f558e79146105ec57600080fd5b80632668a3c1146104e557806329e26965146104ff5780632f745c591461051f5780632fde9e521461053f57806332309a781461055f5780633ab1a4941461057f57600080fd5b8063119552a1116102d757806320090928116102b1578063200909281461046f578063218407831461048557806323b872dd146104a557806326371b52146104c557600080fd5b8063119552a114610410578063170e17361461043057806318160ddd1461045057600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063084c4088146103ae578063095ea7b3146103d05780630f1c1f38146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612bef565b610986565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b506103696109b1565b60405161034b9190612d80565b34801561038257600080fd5b50610396610391366004612c72565b610a43565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103ce6103c9366004612c72565b610ad0565b005b3480156103dc57600080fd5b506103ce6103eb366004612afb565b610aff565b3480156103fc57600080fd5b5061039661040b366004612c72565b610c15565b34801561041c57600080fd5b50601354610396906001600160a01b031681565b34801561043c57600080fd5b506103ce61044b366004612c72565b610c9b565b34801561045c57600080fd5b506008545b60405190815260200161034b565b34801561047b57600080fd5b5061046160115481565b34801561049157600080fd5b506103ce6104a0366004612992565b610cca565b3480156104b157600080fd5b506103ce6104c0366004612a05565b610d16565b3480156104d157600080fd5b50601454610396906001600160a01b031681565b3480156104f157600080fd5b50600c5461033f9060ff1681565b34801561050b57600080fd5b506103ce61051a366004612c72565b610d47565b34801561052b57600080fd5b5061046161053a366004612afb565b610d76565b34801561054b57600080fd5b5061046161055a366004612afb565b610e0c565b34801561056b57600080fd5b506103ce61057a366004612c72565b610e99565b34801561058b57600080fd5b506103ce61059a366004612992565b6111c4565b3480156105ab57600080fd5b506103ce6105ba366004612a05565b611210565b3480156105cb57600080fd5b506105df6105da366004612992565b61122b565b60405161034b9190612d3c565b3480156105f857600080fd5b5061033f610607366004612c72565b6112cd565b34801561061857600080fd5b50610461610627366004612c72565b6112d8565b34801561063857600080fd5b506103ce610647366004612c29565b61136b565b6103ce6113a8565b34801561066057600080fd5b50610461600e5481565b6103ce610678366004612c72565b611472565b34801561068957600080fd5b50610396610698366004612c72565b6114db565b3480156106a957600080fd5b506103ce6106b8366004612bd4565b611552565b3480156106c957600080fd5b506103ce6106d8366004612c72565b61158f565b3480156106e957600080fd5b506104616106f8366004612992565b6115be565b34801561070957600080fd5b506103ce611645565b34801561071e57600080fd5b50601554610396906001600160a01b031681565b34801561073e57600080fd5b50610461600f5481565b34801561075457600080fd5b50600a546001600160a01b0316610396565b34801561077257600080fd5b506103ce610781366004612c72565b61167b565b34801561079257600080fd5b506103ce6107a1366004612992565b6116aa565b3480156107b257600080fd5b506103696116f6565b3480156107c757600080fd5b50610461600d5481565b3480156107dd57600080fd5b506103ce6107ec366004612ac6565b611705565b3480156107fd57600080fd5b5061046160105481565b34801561081357600080fd5b506104616106f281565b34801561082957600080fd5b506103ce610838366004612a46565b611710565b34801561084957600080fd5b506103ce610858366004612c72565b611748565b34801561086957600080fd5b50610369610878366004612c72565b611777565b34801561088957600080fd5b506103ce610898366004612afb565b611841565b3480156108a957600080fd5b506103696118f3565b3480156108be57600080fd5b5061046160125481565b3480156108d457600080fd5b5061033f6108e33660046129cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091d57600080fd5b506105df61092c366004612992565b611981565b34801561093d57600080fd5b506103ce61094c366004612992565b611a04565b34801561095d57600080fd5b506103ce611a9c565b34801561097257600080fd5b506103ce610981366004612c72565b611b04565b60006001600160e01b0319821663780e9d6360e01b14806109ab57506109ab82611c3e565b92915050565b6060600080546109c090612f71565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90612f71565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611c8e565b610ab45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610afa5760405162461bcd60e51b8152600401610aab90612e2c565b600e55565b6000610b0a826114db565b9050806001600160a01b0316836001600160a01b03161415610b785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610aab565b336001600160a01b0382161480610b945750610b9481336108e3565b610c065760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aab565b610c108383611cab565b505050565b6014546040516331a9108f60e11b8152600481018390526000916001600160a01b0316908190636352211e9060240160206040518083038186803b158015610c5c57600080fd5b505afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9491906129af565b9392505050565b600a546001600160a01b03163314610cc55760405162461bcd60e51b8152600401610aab90612e2c565b601155565b600a546001600160a01b03163314610cf45760405162461bcd60e51b8152600401610aab90612e2c565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b610d203382611d19565b610d3c5760405162461bcd60e51b8152600401610aab90612e61565b610c10838383611e02565b600a546001600160a01b03163314610d715760405162461bcd60e51b8152600401610aab90612e2c565b601055565b6000610d81836115be565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610aab565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601554604051627eeac760e11b81526001600160a01b038481166004830152602482018490526000921690819062fdd58e9060440160206040518083038186803b158015610e5957600080fd5b505afa158015610e6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e919190612c8b565b949350505050565b6000610ea4826114db565b6001600160a01b0316336001600160a01b031614610f135760405162461bcd60e51b815260206004820152602660248201527f596f75206d757374206f776e20746865204d61642041706520746f2075706772604482015265185919481a5d60d21b6064820152608401610aab565b600f54610f209083612efb565b610f2b906001612ee3565b90506003811115610f7e5760405162461bcd60e51b815260206004820152601c60248201527f596f757220746f6b656e2069732066756c6c79207570677261646564000000006044820152606401610aab565b806001148015610f9057506106f28210155b15611010576002610fa2336000610e0c565b101561100b5760405162461bcd60e51b815260206004820152603260248201527f596f75206d757374206f776e206174206c656173742074776f20636f6e73756d60448201527161626c6573206f662074686973207479706560701b6064820152608401610aab565b61110f565b8060021415611090576004611026336000610e0c565b101561100b5760405162461bcd60e51b815260206004820152603360248201527f596f75206d757374206f776e206174206c6561737420666f757220636f6e73756044820152726d61626c6573206f662074686973207479706560681b6064820152608401610aab565b806003141561110f5760066110a6336000610e0c565b101561110f5760405162461bcd60e51b815260206004820152603260248201527f596f75206d757374206f776e206174206c656173742073697820636f6e73756d60448201527161626c6573206f662074686973207479706560701b6064820152608401610aab565b611125600f54836111209190612ee3565b611c8e565b1561117e5760405162461bcd60e51b8152602060048201526024808201527f5468697320746f6b656e2068617320616c7265616479206265656e20757067726044820152631859195960e21b6064820152608401610aab565b80600114801561118f57506106f282105b6111a9576111a96000336111a4846002612f0f565b611fa9565b6111c033600f54846111bb9190612ee3565b61201e565b5050565b600a546001600160a01b031633146111ee5760405162461bcd60e51b8152600401610aab90612e2c565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b610c1083838360405180602001604052806000815250611710565b60606000611238836115be565b905060008167ffffffffffffffff81111561125557611255613033565b60405190808252806020026020018201604052801561127e578160200160208202803683370190505b50905060005b828110156112c5576112968582610d76565b8282815181106112a8576112a861301d565b6020908102919091010152806112bd81612fac565b915050611284565b509392505050565b60006109ab82611c8e565b60006112e360085490565b82106113465760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610aab565b600882815481106113595761135961301d565b90600052602060002001549050919050565b600a546001600160a01b031633146113955760405162461bcd60e51b8152600401610aab90612e2c565b80516111c090600b90602084019061288c565b600a546001600160a01b031633146113d25760405162461bcd60e51b8152600401610aab90612e2c565b60135460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114611423576040519150601f19603f3d011682016040523d82523d6000602084013e611428565b606091505b50509050806111c05760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b6044820152606401610aab565b80600d546114809190612f0f565b3410156114cf5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e740000000000006044820152606401610aab565b6114d881612038565b50565b6000818152600260205260408120546001600160a01b0316806109ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610aab565b600a546001600160a01b0316331461157c5760405162461bcd60e51b8152600401610aab90612e2c565b600c805460ff1916911515919091179055565b600a546001600160a01b031633146115b95760405162461bcd60e51b8152600401610aab90612e2c565b601255565b60006001600160a01b0382166116295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610aab565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461166f5760405162461bcd60e51b8152600401610aab90612e2c565b6116796000612164565b565b600a546001600160a01b031633146116a55760405162461bcd60e51b8152600401610aab90612e2c565b600d55565b600a546001600160a01b031633146116d45760405162461bcd60e51b8152600401610aab90612e2c565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546109c090612f71565b6111c03383836121b6565b61171a3383611d19565b6117365760405162461bcd60e51b8152600401610aab90612e61565b61174284848484612285565b50505050565b600a546001600160a01b031633146117725760405162461bcd60e51b8152600401610aab90612e2c565b600f55565b606061178282611c8e565b6117e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aab565b60006117f06122b8565b905060008151116118105760405180602001604052806000815250610c94565b8061181a846122c7565b60405160200161182b929190612cd0565b6040516020818303038152906040529392505050565b600a546001600160a01b0316331461186b5760405162461bcd60e51b8152600401610aab90612e2c565b601054600f5461187e906106f290612f2e565b8260105461188c9190612ee3565b11156118aa5760405162461bcd60e51b8152600401610aab90612de5565b816010546118b89190612ee3565b60105560005b82811015611742576118e1846106f26118d78486612ee3565b6111bb9190612ee3565b806118eb81612fac565b9150506118be565b600b805461190090612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461192c90612f71565b80156119795780601f1061194e57610100808354040283529160200191611979565b820191906000526020600020905b81548152906001019060200180831161195c57829003601f168201915b505050505081565b60145460405162438b6360e81b81526001600160a01b0383811660048301526060921690819063438b63009060240160006040518083038186803b1580156119c857600080fd5b505afa1580156119dc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c949190810190612b27565b600a546001600160a01b03163314611a2e5760405162461bcd60e51b8152600401610aab90612e2c565b6001600160a01b038116611a935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aab565b6114d881612164565b6000611aa733611981565b905060005b81518110156111c0576000828281518110611ac957611ac961301d565b60200260200101519050611adc81611c8e565b15611ae75750611af2565b611af081611b04565b505b80611afc81612fac565b915050611aac565b600c5460ff16611b565760405162461bcd60e51b815260206004820152601f60248201527f4d61642041706573206772616e7420706572696f642068617320656e646564006044820152606401610aab565b611b5f81610c15565b6001600160a01b0316336001600160a01b031614611bde5760405162461bcd60e51b815260206004820152603660248201527f4d757374206f776e20636f72726573706f6e64696e6720416369642041706573604482015275081d1bdad95b88199bdc881a1bdb19195c881b5a5b9d60521b6064820152608401610aab565b611be781611c8e565b15611c345760405162461bcd60e51b815260206004820152601c60248201527f4d61642041706520746f6b656e20616c726561647920657869737473000000006044820152606401610aab565b6114d8338261201e565b60006001600160e01b031982166380ac58cd60e01b1480611c6f57506001600160e01b03198216635b5e139f60e01b145b806109ab57506301ffc9a760e01b6001600160e01b03198316146109ab565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ce0826114db565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d2482611c8e565b611d855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aab565b6000611d90836114db565b9050806001600160a01b0316846001600160a01b03161480611dd757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e915750836001600160a01b0316611df084610a43565b6001600160a01b031614949350505050565b826001600160a01b0316611e15826114db565b6001600160a01b031614611e795760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aab565b6001600160a01b038216611edb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610aab565b611ee68383836123c5565b611ef1600082611cab565b6001600160a01b0383166000908152600360205260408120805460019290611f1a908490612f2e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f48908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60155460405163825ea50960e01b8152600481018590526001600160a01b0384811660248301526044820184905290911690819063825ea50990606401600060405180830381600087803b15801561200057600080fd5b505af1158015612014573d6000803e3d6000fd5b5050505050505050565b6111c082826040518060200160405280600081525061247d565b601054600e5461208a5760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f74206163746976650000000000000000006044820152606401610aab565b6012548211156120dc5760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d00006044820152606401610aab565b6011546106f2600f546120ef9190612f2e565b6120f99190612f2e565b826010546121079190612ee3565b11156121255760405162461bcd60e51b8152600401610aab90612de5565b816010546121339190612ee3565b60105560005b82811015610c1057612152336106f26118d78486612ee3565b8061215c81612fac565b915050612139565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612290848484611e02565b61229c848484846124b0565b6117425760405162461bcd60e51b8152600401610aab90612d93565b6060600b80546109c090612f71565b6060816122eb5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561231557806122ff81612fac565b915061230e9050600a83612efb565b91506122ef565b60008167ffffffffffffffff81111561233057612330613033565b6040519080825280601f01601f19166020018201604052801561235a576020820181803683370190505b5090505b8415610e915761236f600183612f2e565b915061237c600a86612fc7565b612387906030612ee3565b60f81b81838151811061239c5761239c61301d565b60200101906001600160f81b031916908160001a9053506123be600a86612efb565b945061235e565b6001600160a01b0383166124205761241b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612443565b816001600160a01b0316836001600160a01b0316146124435761244383826125bd565b6001600160a01b03821661245a57610c108161265a565b826001600160a01b0316826001600160a01b031614610c1057610c108282612709565b612487838361274d565b61249460008484846124b0565b610c105760405162461bcd60e51b8152600401610aab90612d93565b60006001600160a01b0384163b156125b257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f4903390899088908890600401612cff565b602060405180830381600087803b15801561250e57600080fd5b505af192505050801561253e575060408051601f3d908101601f1916820190925261253b91810190612c0c565b60015b612598573d80801561256c576040519150601f19603f3d011682016040523d82523d6000602084013e612571565b606091505b5080516125905760405162461bcd60e51b8152600401610aab90612d93565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e91565b506001949350505050565b600060016125ca846115be565b6125d49190612f2e565b600083815260076020526040902054909150808214612627576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061266c90600190612f2e565b600083815260096020526040812054600880549394509092849081106126945761269461301d565b9060005260206000200154905080600883815481106126b5576126b561301d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126ed576126ed613007565b6001900381819060005260206000200160009055905550505050565b6000612714836115be565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127a35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aab565b6127ac81611c8e565b156127f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aab565b612805600083836123c5565b6001600160a01b038216600090815260036020526040812080546001929061282e908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461289890612f71565b90600052602060002090601f0160209004810192826128ba5760008555612900565b82601f106128d357805160ff1916838001178555612900565b82800160010185558215612900579182015b828111156129005782518255916020019190600101906128e5565b5061290c929150612910565b5090565b5b8082111561290c5760008155600101612911565b600067ffffffffffffffff83111561293f5761293f613033565b612952601f8401601f1916602001612eb2565b905082815283838301111561296657600080fd5b828260208301376000602084830101529392505050565b8035801515811461298d57600080fd5b919050565b6000602082840312156129a457600080fd5b8135610c9481613049565b6000602082840312156129c157600080fd5b8151610c9481613049565b600080604083850312156129df57600080fd5b82356129ea81613049565b915060208301356129fa81613049565b809150509250929050565b600080600060608486031215612a1a57600080fd5b8335612a2581613049565b92506020840135612a3581613049565b929592945050506040919091013590565b60008060008060808587031215612a5c57600080fd5b8435612a6781613049565b93506020850135612a7781613049565b925060408501359150606085013567ffffffffffffffff811115612a9a57600080fd5b8501601f81018713612aab57600080fd5b612aba87823560208401612925565b91505092959194509250565b60008060408385031215612ad957600080fd5b8235612ae481613049565b9150612af26020840161297d565b90509250929050565b60008060408385031215612b0e57600080fd5b8235612b1981613049565b946020939093013593505050565b60006020808385031215612b3a57600080fd5b825167ffffffffffffffff80821115612b5257600080fd5b818501915085601f830112612b6657600080fd5b815181811115612b7857612b78613033565b8060051b9150612b89848301612eb2565b8181528481019084860184860187018a1015612ba457600080fd5b600095505b83861015612bc7578051835260019590950194918601918601612ba9565b5098975050505050505050565b600060208284031215612be657600080fd5b610c948261297d565b600060208284031215612c0157600080fd5b8135610c948161305e565b600060208284031215612c1e57600080fd5b8151610c948161305e565b600060208284031215612c3b57600080fd5b813567ffffffffffffffff811115612c5257600080fd5b8201601f81018413612c6357600080fd5b610e9184823560208401612925565b600060208284031215612c8457600080fd5b5035919050565b600060208284031215612c9d57600080fd5b5051919050565b60008151808452612cbc816020860160208601612f45565b601f01601f19169290920160200192915050565b60008351612ce2818460208801612f45565b835190830190612cf6818360208801612f45565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d3290830184612ca4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d7457835183529284019291840191600101612d58565b50909695505050505050565b602081526000610c946020830184612ca4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612edb57612edb613033565b604052919050565b60008219821115612ef657612ef6612fdb565b500190565b600082612f0a57612f0a612ff1565b500490565b6000816000190483118215151615612f2957612f29612fdb565b500290565b600082821015612f4057612f40612fdb565b500390565b60005b83811015612f60578181015183820152602001612f48565b838111156117425750506000910152565b600181811c90821680612f8557607f821691505b60208210811415612fa657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fc057612fc0612fdb565b5060010190565b600082612fd657612fd6612ff1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146114d857600080fd5b6001600160e01b0319811681146114d857600080fdfea2646970667358221220809cbe841f2bbb9ec3ba113897ab30c65d1d4bb538888db5acaf0b3771a01ebb64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d584a376f454c544a6b753875703550464a51375a54314b5369697a6e48316e5950504c44614b39474b71656f2f00000000000000000000

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806361715215116101ab578063a22cb465116100f7578063d547cfb711610095578063edac37a31161006f578063edac37a314610911578063f2fde38b14610931578063f9fcf42914610951578063ff89168a1461096657600080fd5b8063d547cfb71461089d578063d694e950146108b2578063e985e9c5146108c857600080fd5b8063b88d4fde116100d1578063b88d4fde1461081d578063c84bb62f1461083d578063c87b56dd1461085d578063ca8001441461087d57600080fd5b8063a22cb465146107d1578063a59cf4c9146107f1578063b61e48441461080757600080fd5b806387b9ae931161016457806391b7f5ed1161013e57806391b7f5ed14610766578063935077f41461078657806395d89b41146107a6578063a035b1fe146107bb57600080fd5b806387b9ae93146107125780638d5e6872146107325780638da5cb5b1461074857600080fd5b8063617152151461066a5780636352211e1461067d5780636406c3e51461069d5780636edc4388146106bd57806370a08231146106dd578063715018a6146106fd57600080fd5b80632668a3c11161026a57806342842e0e116102235780634f6ccce7116101fd5780634f6ccce71461060c57806355f804b31461062c5780635fd8c7101461064c578063603f4d521461065457600080fd5b806342842e0e1461059f578063438b6300146105bf5780634f558e79146105ec57600080fd5b80632668a3c1146104e557806329e26965146104ff5780632f745c591461051f5780632fde9e521461053f57806332309a781461055f5780633ab1a4941461057f57600080fd5b8063119552a1116102d757806320090928116102b1578063200909281461046f578063218407831461048557806323b872dd146104a557806326371b52146104c557600080fd5b8063119552a114610410578063170e17361461043057806318160ddd1461045057600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063084c4088146103ae578063095ea7b3146103d05780630f1c1f38146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612bef565b610986565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b506103696109b1565b60405161034b9190612d80565b34801561038257600080fd5b50610396610391366004612c72565b610a43565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103ce6103c9366004612c72565b610ad0565b005b3480156103dc57600080fd5b506103ce6103eb366004612afb565b610aff565b3480156103fc57600080fd5b5061039661040b366004612c72565b610c15565b34801561041c57600080fd5b50601354610396906001600160a01b031681565b34801561043c57600080fd5b506103ce61044b366004612c72565b610c9b565b34801561045c57600080fd5b506008545b60405190815260200161034b565b34801561047b57600080fd5b5061046160115481565b34801561049157600080fd5b506103ce6104a0366004612992565b610cca565b3480156104b157600080fd5b506103ce6104c0366004612a05565b610d16565b3480156104d157600080fd5b50601454610396906001600160a01b031681565b3480156104f157600080fd5b50600c5461033f9060ff1681565b34801561050b57600080fd5b506103ce61051a366004612c72565b610d47565b34801561052b57600080fd5b5061046161053a366004612afb565b610d76565b34801561054b57600080fd5b5061046161055a366004612afb565b610e0c565b34801561056b57600080fd5b506103ce61057a366004612c72565b610e99565b34801561058b57600080fd5b506103ce61059a366004612992565b6111c4565b3480156105ab57600080fd5b506103ce6105ba366004612a05565b611210565b3480156105cb57600080fd5b506105df6105da366004612992565b61122b565b60405161034b9190612d3c565b3480156105f857600080fd5b5061033f610607366004612c72565b6112cd565b34801561061857600080fd5b50610461610627366004612c72565b6112d8565b34801561063857600080fd5b506103ce610647366004612c29565b61136b565b6103ce6113a8565b34801561066057600080fd5b50610461600e5481565b6103ce610678366004612c72565b611472565b34801561068957600080fd5b50610396610698366004612c72565b6114db565b3480156106a957600080fd5b506103ce6106b8366004612bd4565b611552565b3480156106c957600080fd5b506103ce6106d8366004612c72565b61158f565b3480156106e957600080fd5b506104616106f8366004612992565b6115be565b34801561070957600080fd5b506103ce611645565b34801561071e57600080fd5b50601554610396906001600160a01b031681565b34801561073e57600080fd5b50610461600f5481565b34801561075457600080fd5b50600a546001600160a01b0316610396565b34801561077257600080fd5b506103ce610781366004612c72565b61167b565b34801561079257600080fd5b506103ce6107a1366004612992565b6116aa565b3480156107b257600080fd5b506103696116f6565b3480156107c757600080fd5b50610461600d5481565b3480156107dd57600080fd5b506103ce6107ec366004612ac6565b611705565b3480156107fd57600080fd5b5061046160105481565b34801561081357600080fd5b506104616106f281565b34801561082957600080fd5b506103ce610838366004612a46565b611710565b34801561084957600080fd5b506103ce610858366004612c72565b611748565b34801561086957600080fd5b50610369610878366004612c72565b611777565b34801561088957600080fd5b506103ce610898366004612afb565b611841565b3480156108a957600080fd5b506103696118f3565b3480156108be57600080fd5b5061046160125481565b3480156108d457600080fd5b5061033f6108e33660046129cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091d57600080fd5b506105df61092c366004612992565b611981565b34801561093d57600080fd5b506103ce61094c366004612992565b611a04565b34801561095d57600080fd5b506103ce611a9c565b34801561097257600080fd5b506103ce610981366004612c72565b611b04565b60006001600160e01b0319821663780e9d6360e01b14806109ab57506109ab82611c3e565b92915050565b6060600080546109c090612f71565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90612f71565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611c8e565b610ab45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610afa5760405162461bcd60e51b8152600401610aab90612e2c565b600e55565b6000610b0a826114db565b9050806001600160a01b0316836001600160a01b03161415610b785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610aab565b336001600160a01b0382161480610b945750610b9481336108e3565b610c065760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aab565b610c108383611cab565b505050565b6014546040516331a9108f60e11b8152600481018390526000916001600160a01b0316908190636352211e9060240160206040518083038186803b158015610c5c57600080fd5b505afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9491906129af565b9392505050565b600a546001600160a01b03163314610cc55760405162461bcd60e51b8152600401610aab90612e2c565b601155565b600a546001600160a01b03163314610cf45760405162461bcd60e51b8152600401610aab90612e2c565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b610d203382611d19565b610d3c5760405162461bcd60e51b8152600401610aab90612e61565b610c10838383611e02565b600a546001600160a01b03163314610d715760405162461bcd60e51b8152600401610aab90612e2c565b601055565b6000610d81836115be565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610aab565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601554604051627eeac760e11b81526001600160a01b038481166004830152602482018490526000921690819062fdd58e9060440160206040518083038186803b158015610e5957600080fd5b505afa158015610e6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e919190612c8b565b949350505050565b6000610ea4826114db565b6001600160a01b0316336001600160a01b031614610f135760405162461bcd60e51b815260206004820152602660248201527f596f75206d757374206f776e20746865204d61642041706520746f2075706772604482015265185919481a5d60d21b6064820152608401610aab565b600f54610f209083612efb565b610f2b906001612ee3565b90506003811115610f7e5760405162461bcd60e51b815260206004820152601c60248201527f596f757220746f6b656e2069732066756c6c79207570677261646564000000006044820152606401610aab565b806001148015610f9057506106f28210155b15611010576002610fa2336000610e0c565b101561100b5760405162461bcd60e51b815260206004820152603260248201527f596f75206d757374206f776e206174206c656173742074776f20636f6e73756d60448201527161626c6573206f662074686973207479706560701b6064820152608401610aab565b61110f565b8060021415611090576004611026336000610e0c565b101561100b5760405162461bcd60e51b815260206004820152603360248201527f596f75206d757374206f776e206174206c6561737420666f757220636f6e73756044820152726d61626c6573206f662074686973207479706560681b6064820152608401610aab565b806003141561110f5760066110a6336000610e0c565b101561110f5760405162461bcd60e51b815260206004820152603260248201527f596f75206d757374206f776e206174206c656173742073697820636f6e73756d60448201527161626c6573206f662074686973207479706560701b6064820152608401610aab565b611125600f54836111209190612ee3565b611c8e565b1561117e5760405162461bcd60e51b8152602060048201526024808201527f5468697320746f6b656e2068617320616c7265616479206265656e20757067726044820152631859195960e21b6064820152608401610aab565b80600114801561118f57506106f282105b6111a9576111a96000336111a4846002612f0f565b611fa9565b6111c033600f54846111bb9190612ee3565b61201e565b5050565b600a546001600160a01b031633146111ee5760405162461bcd60e51b8152600401610aab90612e2c565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b610c1083838360405180602001604052806000815250611710565b60606000611238836115be565b905060008167ffffffffffffffff81111561125557611255613033565b60405190808252806020026020018201604052801561127e578160200160208202803683370190505b50905060005b828110156112c5576112968582610d76565b8282815181106112a8576112a861301d565b6020908102919091010152806112bd81612fac565b915050611284565b509392505050565b60006109ab82611c8e565b60006112e360085490565b82106113465760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610aab565b600882815481106113595761135961301d565b90600052602060002001549050919050565b600a546001600160a01b031633146113955760405162461bcd60e51b8152600401610aab90612e2c565b80516111c090600b90602084019061288c565b600a546001600160a01b031633146113d25760405162461bcd60e51b8152600401610aab90612e2c565b60135460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114611423576040519150601f19603f3d011682016040523d82523d6000602084013e611428565b606091505b50509050806111c05760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b6044820152606401610aab565b80600d546114809190612f0f565b3410156114cf5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e740000000000006044820152606401610aab565b6114d881612038565b50565b6000818152600260205260408120546001600160a01b0316806109ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610aab565b600a546001600160a01b0316331461157c5760405162461bcd60e51b8152600401610aab90612e2c565b600c805460ff1916911515919091179055565b600a546001600160a01b031633146115b95760405162461bcd60e51b8152600401610aab90612e2c565b601255565b60006001600160a01b0382166116295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610aab565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461166f5760405162461bcd60e51b8152600401610aab90612e2c565b6116796000612164565b565b600a546001600160a01b031633146116a55760405162461bcd60e51b8152600401610aab90612e2c565b600d55565b600a546001600160a01b031633146116d45760405162461bcd60e51b8152600401610aab90612e2c565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546109c090612f71565b6111c03383836121b6565b61171a3383611d19565b6117365760405162461bcd60e51b8152600401610aab90612e61565b61174284848484612285565b50505050565b600a546001600160a01b031633146117725760405162461bcd60e51b8152600401610aab90612e2c565b600f55565b606061178282611c8e565b6117e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aab565b60006117f06122b8565b905060008151116118105760405180602001604052806000815250610c94565b8061181a846122c7565b60405160200161182b929190612cd0565b6040516020818303038152906040529392505050565b600a546001600160a01b0316331461186b5760405162461bcd60e51b8152600401610aab90612e2c565b601054600f5461187e906106f290612f2e565b8260105461188c9190612ee3565b11156118aa5760405162461bcd60e51b8152600401610aab90612de5565b816010546118b89190612ee3565b60105560005b82811015611742576118e1846106f26118d78486612ee3565b6111bb9190612ee3565b806118eb81612fac565b9150506118be565b600b805461190090612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461192c90612f71565b80156119795780601f1061194e57610100808354040283529160200191611979565b820191906000526020600020905b81548152906001019060200180831161195c57829003601f168201915b505050505081565b60145460405162438b6360e81b81526001600160a01b0383811660048301526060921690819063438b63009060240160006040518083038186803b1580156119c857600080fd5b505afa1580156119dc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c949190810190612b27565b600a546001600160a01b03163314611a2e5760405162461bcd60e51b8152600401610aab90612e2c565b6001600160a01b038116611a935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aab565b6114d881612164565b6000611aa733611981565b905060005b81518110156111c0576000828281518110611ac957611ac961301d565b60200260200101519050611adc81611c8e565b15611ae75750611af2565b611af081611b04565b505b80611afc81612fac565b915050611aac565b600c5460ff16611b565760405162461bcd60e51b815260206004820152601f60248201527f4d61642041706573206772616e7420706572696f642068617320656e646564006044820152606401610aab565b611b5f81610c15565b6001600160a01b0316336001600160a01b031614611bde5760405162461bcd60e51b815260206004820152603660248201527f4d757374206f776e20636f72726573706f6e64696e6720416369642041706573604482015275081d1bdad95b88199bdc881a1bdb19195c881b5a5b9d60521b6064820152608401610aab565b611be781611c8e565b15611c345760405162461bcd60e51b815260206004820152601c60248201527f4d61642041706520746f6b656e20616c726561647920657869737473000000006044820152606401610aab565b6114d8338261201e565b60006001600160e01b031982166380ac58cd60e01b1480611c6f57506001600160e01b03198216635b5e139f60e01b145b806109ab57506301ffc9a760e01b6001600160e01b03198316146109ab565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ce0826114db565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d2482611c8e565b611d855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aab565b6000611d90836114db565b9050806001600160a01b0316846001600160a01b03161480611dd757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e915750836001600160a01b0316611df084610a43565b6001600160a01b031614949350505050565b826001600160a01b0316611e15826114db565b6001600160a01b031614611e795760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aab565b6001600160a01b038216611edb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610aab565b611ee68383836123c5565b611ef1600082611cab565b6001600160a01b0383166000908152600360205260408120805460019290611f1a908490612f2e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f48908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60155460405163825ea50960e01b8152600481018590526001600160a01b0384811660248301526044820184905290911690819063825ea50990606401600060405180830381600087803b15801561200057600080fd5b505af1158015612014573d6000803e3d6000fd5b5050505050505050565b6111c082826040518060200160405280600081525061247d565b601054600e5461208a5760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f74206163746976650000000000000000006044820152606401610aab565b6012548211156120dc5760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d00006044820152606401610aab565b6011546106f2600f546120ef9190612f2e565b6120f99190612f2e565b826010546121079190612ee3565b11156121255760405162461bcd60e51b8152600401610aab90612de5565b816010546121339190612ee3565b60105560005b82811015610c1057612152336106f26118d78486612ee3565b8061215c81612fac565b915050612139565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612290848484611e02565b61229c848484846124b0565b6117425760405162461bcd60e51b8152600401610aab90612d93565b6060600b80546109c090612f71565b6060816122eb5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561231557806122ff81612fac565b915061230e9050600a83612efb565b91506122ef565b60008167ffffffffffffffff81111561233057612330613033565b6040519080825280601f01601f19166020018201604052801561235a576020820181803683370190505b5090505b8415610e915761236f600183612f2e565b915061237c600a86612fc7565b612387906030612ee3565b60f81b81838151811061239c5761239c61301d565b60200101906001600160f81b031916908160001a9053506123be600a86612efb565b945061235e565b6001600160a01b0383166124205761241b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612443565b816001600160a01b0316836001600160a01b0316146124435761244383826125bd565b6001600160a01b03821661245a57610c108161265a565b826001600160a01b0316826001600160a01b031614610c1057610c108282612709565b612487838361274d565b61249460008484846124b0565b610c105760405162461bcd60e51b8152600401610aab90612d93565b60006001600160a01b0384163b156125b257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f4903390899088908890600401612cff565b602060405180830381600087803b15801561250e57600080fd5b505af192505050801561253e575060408051601f3d908101601f1916820190925261253b91810190612c0c565b60015b612598573d80801561256c576040519150601f19603f3d011682016040523d82523d6000602084013e612571565b606091505b5080516125905760405162461bcd60e51b8152600401610aab90612d93565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e91565b506001949350505050565b600060016125ca846115be565b6125d49190612f2e565b600083815260076020526040902054909150808214612627576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061266c90600190612f2e565b600083815260096020526040812054600880549394509092849081106126945761269461301d565b9060005260206000200154905080600883815481106126b5576126b561301d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126ed576126ed613007565b6001900381819060005260206000200160009055905550505050565b6000612714836115be565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127a35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aab565b6127ac81611c8e565b156127f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aab565b612805600083836123c5565b6001600160a01b038216600090815260036020526040812080546001929061282e908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461289890612f71565b90600052602060002090601f0160209004810192826128ba5760008555612900565b82601f106128d357805160ff1916838001178555612900565b82800160010185558215612900579182015b828111156129005782518255916020019190600101906128e5565b5061290c929150612910565b5090565b5b8082111561290c5760008155600101612911565b600067ffffffffffffffff83111561293f5761293f613033565b612952601f8401601f1916602001612eb2565b905082815283838301111561296657600080fd5b828260208301376000602084830101529392505050565b8035801515811461298d57600080fd5b919050565b6000602082840312156129a457600080fd5b8135610c9481613049565b6000602082840312156129c157600080fd5b8151610c9481613049565b600080604083850312156129df57600080fd5b82356129ea81613049565b915060208301356129fa81613049565b809150509250929050565b600080600060608486031215612a1a57600080fd5b8335612a2581613049565b92506020840135612a3581613049565b929592945050506040919091013590565b60008060008060808587031215612a5c57600080fd5b8435612a6781613049565b93506020850135612a7781613049565b925060408501359150606085013567ffffffffffffffff811115612a9a57600080fd5b8501601f81018713612aab57600080fd5b612aba87823560208401612925565b91505092959194509250565b60008060408385031215612ad957600080fd5b8235612ae481613049565b9150612af26020840161297d565b90509250929050565b60008060408385031215612b0e57600080fd5b8235612b1981613049565b946020939093013593505050565b60006020808385031215612b3a57600080fd5b825167ffffffffffffffff80821115612b5257600080fd5b818501915085601f830112612b6657600080fd5b815181811115612b7857612b78613033565b8060051b9150612b89848301612eb2565b8181528481019084860184860187018a1015612ba457600080fd5b600095505b83861015612bc7578051835260019590950194918601918601612ba9565b5098975050505050505050565b600060208284031215612be657600080fd5b610c948261297d565b600060208284031215612c0157600080fd5b8135610c948161305e565b600060208284031215612c1e57600080fd5b8151610c948161305e565b600060208284031215612c3b57600080fd5b813567ffffffffffffffff811115612c5257600080fd5b8201601f81018413612c6357600080fd5b610e9184823560208401612925565b600060208284031215612c8457600080fd5b5035919050565b600060208284031215612c9d57600080fd5b5051919050565b60008151808452612cbc816020860160208601612f45565b601f01601f19169290920160200192915050565b60008351612ce2818460208801612f45565b835190830190612cf6818360208801612f45565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d3290830184612ca4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d7457835183529284019291840191600101612d58565b50909695505050505050565b602081526000610c946020830184612ca4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612edb57612edb613033565b604052919050565b60008219821115612ef657612ef6612fdb565b500190565b600082612f0a57612f0a612ff1565b500490565b6000816000190483118215151615612f2957612f29612fdb565b500290565b600082821015612f4057612f40612fdb565b500390565b60005b83811015612f60578181015183820152602001612f48565b838111156117425750506000910152565b600181811c90821680612f8557607f821691505b60208210811415612fa657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fc057612fc0612fdb565b5060010190565b600082612fd657612fd6612ff1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146114d857600080fd5b6001600160e01b0319811681146114d857600080fdfea2646970667358221220809cbe841f2bbb9ec3ba113897ab30c65d1d4bb538888db5acaf0b3771a01ebb64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d584a376f454c544a6b753875703550464a51375a54314b5369697a6e48316e5950504c44614b39474b71656f2f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmXJ7oELTJku8up5PFJQ7ZT1KSiiznH1nYPPLDaK9GKqeo/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d584a376f454c544a6b753875703550464a51375a54314b
Arg [3] : 5369697a6e48316e5950504c44614b39474b71656f2f00000000000000000000


Deployed Bytecode Sourcemap

53440:8141:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47218:224;;;;;;;;;;-1:-1:-1;47218:224:0;;;;;:::i;:::-;;:::i;:::-;;;8590:14:1;;8583:22;8565:41;;8553:2;8538:18;47218:224:0;;;;;;;;34037:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35597:221::-;;;;;;;;;;-1:-1:-1;35597:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6972:32:1;;;6954:51;;6942:2;6927:18;35597:221:0;6808:203:1;60044:100:0;;;;;;;;;;-1:-1:-1;60044:100:0;;;;;:::i;:::-;;:::i;:::-;;35120:411;;;;;;;;;;-1:-1:-1;35120:411:0;;;;;:::i;:::-;;:::i;58751:189::-;;;;;;;;;;-1:-1:-1;58751:189:0;;;;;:::i;:::-;;:::i;53954:62::-;;;;;;;;;;-1:-1:-1;53954:62:0;;;;-1:-1:-1;;;;;53954:62:0;;;60711:121;;;;;;;;;;-1:-1:-1;60711:121:0;;;;;:::i;:::-;;:::i;47858:113::-;;;;;;;;;;-1:-1:-1;47946:10:0;:17;47858:113;;;21582:25:1;;;21570:2;21555:18;47858:113:0;21436:177:1;53844:36:0;;;;;;;;;;;;;;;;60459:96;;;;;;;;;;-1:-1:-1;60459:96:0;;;;;:::i;:::-;;:::i;36347:339::-;;;;;;;;;;-1:-1:-1;36347:339:0;;;;;:::i;:::-;;:::i;54072:71::-;;;;;;;;;;-1:-1:-1;54072:71:0;;;;-1:-1:-1;;;;;54072:71:0;;;53569:28;;;;;;;;;;-1:-1:-1;53569:28:0;;;;;;;;60563:140;;;;;;;;;;-1:-1:-1;60563:140:0;;;;;:::i;:::-;;:::i;47526:256::-;;;;;;;;;;-1:-1:-1;47526:256:0;;;;;:::i;:::-;;:::i;58948:210::-;;;;;;;;;;-1:-1:-1;58948:210:0;;;;;:::i;:::-;;:::i;55298:1423::-;;;;;;;;;;-1:-1:-1;55298:1423:0;;;;;:::i;:::-;;:::i;60266:83::-;;;;;;;;;;-1:-1:-1;60266:83:0;;;;;:::i;:::-;;:::i;36757:185::-;;;;;;;;;;-1:-1:-1;36757:185:0;;;;;:::i;:::-;;:::i;58193:342::-;;;;;;;;;;-1:-1:-1;58193:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59419:104::-;;;;;;;;;;-1:-1:-1;59419:104:0;;;;;:::i;:::-;;:::i;48048:233::-;;;;;;;;;;-1:-1:-1;48048:233:0;;;;;:::i;:::-;;:::i;59550:113::-;;;;;;;;;;-1:-1:-1;59550:113:0;;;;;:::i;:::-;;:::i;61335:243::-;;;:::i;53696:28::-;;;;;;;;;;;;;;;;54492:155;;;;;;:::i;:::-;;:::i;33731:239::-;;;;;;;;;;-1:-1:-1;33731:239:0;;;;;:::i;:::-;;:::i;59671:125::-;;;;;;;;;;-1:-1:-1;59671:125:0;;;;;:::i;:::-;;:::i;60152:106::-;;;;;;;;;;-1:-1:-1;60152:106:0;;;;;:::i;:::-;;:::i;33461:208::-;;;;;;;;;;-1:-1:-1;33461:208:0;;;;;:::i;:::-;;:::i;12595:103::-;;;;;;;;;;;;;:::i;54246:72::-;;;;;;;;;;-1:-1:-1;54246:72:0;;;;-1:-1:-1;;;;;54246:72:0;;;53756:30;;;;;;;;;;;;;;;;11944:87;;;;;;;;;;-1:-1:-1;12017:6:0;;-1:-1:-1;;;;;12017:6:0;11944:87;;59804:92;;;;;;;;;;-1:-1:-1;59804:92:0;;;;;:::i;:::-;;:::i;60357:94::-;;;;;;;;;;-1:-1:-1;60357:94:0;;;;;:::i;:::-;;:::i;34206:104::-;;;;;;;;;;;;;:::i;53659:30::-;;;;;;;;;;;;;;;;35890:155;;;;;;;;;;-1:-1:-1;35890:155:0;;;;;:::i;:::-;;:::i;53793:44::-;;;;;;;;;;;;;;;;53606:46;;;;;;;;;;;;53648:4;53606:46;;37013:328;;;;;;;;;;-1:-1:-1;37013:328:0;;;;;:::i;:::-;;:::i;59904:90::-;;;;;;;;;;-1:-1:-1;59904:90:0;;;;;:::i;:::-;;:::i;34381:334::-;;;;;;;;;;-1:-1:-1;34381:334:0;;;;;:::i;:::-;;:::i;60859:468::-;;;;;;;;;;-1:-1:-1;60859:468:0;;;;;:::i;:::-;;:::i;53534:26::-;;;;;;;;;;;;;:::i;53887:33::-;;;;;;;;;;;;;;;;36116:164;;;;;;;;;;-1:-1:-1;36116:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36237:25:0;;;36213:4;36237:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36116:164;58543:200;;;;;;;;;;-1:-1:-1;58543:200:0;;;;;:::i;:::-;;:::i;12853:201::-;;;;;;;;;;-1:-1:-1;12853:201:0;;;;;:::i;:::-;;:::i;57284:686::-;;;;;;;;;;;;;:::i;56761:467::-;;;;;;;;;;-1:-1:-1;56761:467:0;;;;;:::i;:::-;;:::i;47218:224::-;47320:4;-1:-1:-1;;;;;;47344:50:0;;-1:-1:-1;;;47344:50:0;;:90;;;47398:36;47422:11;47398:23;:36::i;:::-;47337:97;47218:224;-1:-1:-1;;47218:224:0:o;34037:100::-;34091:13;34124:5;34117:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34037:100;:::o;35597:221::-;35673:7;35701:16;35709:7;35701;:16::i;:::-;35693:73;;;;-1:-1:-1;;;35693:73:0;;16881:2:1;35693:73:0;;;16863:21:1;16920:2;16900:18;;;16893:30;16959:34;16939:18;;;16932:62;-1:-1:-1;;;17010:18:1;;;17003:42;17062:19;;35693:73:0;;;;;;;;;-1:-1:-1;35786:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35786:24:0;;35597:221::o;60044:100::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60114:9:::1;:22:::0;60044:100::o;35120:411::-;35201:13;35217:23;35232:7;35217:14;:23::i;:::-;35201:39;;35265:5;-1:-1:-1;;;;;35259:11:0;:2;-1:-1:-1;;;;;35259:11:0;;;35251:57;;;;-1:-1:-1;;;35251:57:0;;18910:2:1;35251:57:0;;;18892:21:1;18949:2;18929:18;;;18922:30;18988:34;18968:18;;;18961:62;-1:-1:-1;;;19039:18:1;;;19032:31;19080:19;;35251:57:0;18708:397:1;35251:57:0;10748:10;-1:-1:-1;;;;;35343:21:0;;;;:62;;-1:-1:-1;35368:37:0;35385:5;10748:10;36116:164;:::i;35368:37::-;35321:168;;;;-1:-1:-1;;;35321:168:0;;13752:2:1;35321:168:0;;;13734:21:1;13791:2;13771:18;;;13764:30;13830:34;13810:18;;;13803:62;13901:26;13881:18;;;13874:54;13945:19;;35321:168:0;13550:420:1;35321:168:0;35502:21;35511:2;35515:7;35502:8;:21::i;:::-;35190:341;35120:411;;:::o;58751:189::-;58876:11;;58906:26;;-1:-1:-1;;;58906:26:0;;;;;21582:25:1;;;58815:7:0;;-1:-1:-1;;;;;58876:11:0;;;;58906:16;;21555:18:1;;58906:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58899:33;58751:189;-1:-1:-1;;;58751:189:0:o;60711:121::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60791:15:::1;:33:::0;60711:121::o;60459:96::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60530:12:::1;:17:::0;;-1:-1:-1;;;;;;60530:17:0::1;-1:-1:-1::0;;;;;60530:17:0;;;::::1;::::0;;;::::1;::::0;;60459:96::o;36347:339::-;36542:41;10748:10;36575:7;36542:18;:41::i;:::-;36534:103;;;;-1:-1:-1;;;36534:103:0;;;;;;;:::i;:::-;36650:28;36660:4;36666:2;36670:7;36650:9;:28::i;60563:140::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60652:25:::1;:43:::0;60563:140::o;47526:256::-;47623:7;47659:23;47676:5;47659:16;:23::i;:::-;47651:5;:31;47643:87;;;;-1:-1:-1;;;47643:87:0;;9466:2:1;47643:87:0;;;9448:21:1;9505:2;9485:18;;;9478:30;9544:34;9524:18;;;9517:62;-1:-1:-1;;;9595:18:1;;;9588:41;9646:19;;47643:87:0;9264:407:1;47643:87:0;-1:-1:-1;;;;;;47748:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;47526:256::o;58948:210::-;59094:12;;59125:25;;-1:-1:-1;;;59125:25:0;;-1:-1:-1;;;;;7701:32:1;;;59125:25:0;;;7683:51:1;7750:18;;;7743:34;;;59028:7:0;;59094:12;;;;59125:13;;7656:18:1;;59125:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59118:32;58948:210;-1:-1:-1;;;;58948:210:0:o;55298:1423::-;55356:13;55441:17;55449:8;55441:7;:17::i;:::-;-1:-1:-1;;;;;55426:32:0;:10;-1:-1:-1;;;;;55426:32:0;;55417:84;;;;-1:-1:-1;;;55417:84:0;;11467:2:1;55417:84:0;;;11449:21:1;11506:2;11486:18;;;11479:30;11545:34;11525:18;;;11518:62;-1:-1:-1;;;11596:18:1;;;11589:36;11642:19;;55417:84:0;11265:402:1;55417:84:0;55575:8;;55564:19;;:8;:19;:::i;:::-;55563:25;;55587:1;55563:25;:::i;:::-;55555:33;;55616:1;55607:5;:10;;55599:51;;;;-1:-1:-1;;;55599:51:0;;15350:2:1;55599:51:0;;;15332:21:1;15389:2;15369:18;;;15362:30;15428;15408:18;;;15401:58;15476:18;;55599:51:0;15148:352:1;55599:51:0;55724:5;55733:1;55724:10;:41;;;;;53648:4;55738:8;:27;;55724:41;55720:483;;;55830:1;55792:34;55813:10;55824:1;55792:20;:34::i;:::-;:39;;55783:103;;;;-1:-1:-1;;;55783:103:0;;17655:2:1;55783:103:0;;;17637:21:1;17694:2;17674:18;;;17667:30;17733:34;17713:18;;;17706:62;-1:-1:-1;;;17784:18:1;;;17777:48;17842:19;;55783:103:0;17453:414:1;55783:103:0;55720:483;;;55908:5;55917:1;55908:10;55904:299;;;55982:1;55944:34;55965:10;55976:1;55944:20;:34::i;:::-;:39;;55935:104;;;;-1:-1:-1;;;55935:104:0;;18490:2:1;55935:104:0;;;18472:21:1;18529:2;18509:18;;;18502:30;18568:34;18548:18;;;18541:62;-1:-1:-1;;;18619:18:1;;;18612:49;18678:19;;55935:104:0;18288:415:1;55904:299:0;56061:5;56070:1;56061:10;56057:146;;;56135:1;56097:34;56118:10;56129:1;56097:20;:34::i;:::-;:39;;56088:103;;;;-1:-1:-1;;;56088:103:0;;20503:2:1;56088:103:0;;;20485:21:1;20542:2;20522:18;;;20515:30;20581:34;20561:18;;;20554:62;-1:-1:-1;;;20632:18:1;;;20625:48;20690:19;;56088:103:0;20301:414:1;56088:103:0;56305:28;56324:8;;56313;:19;;;;:::i;:::-;56305:7;:28::i;:::-;56304:29;56296:78;;;;-1:-1:-1;;;56296:78:0;;15707:2:1;56296:78:0;;;15689:21:1;15746:2;15726:18;;;15719:30;15785:34;15765:18;;;15758:62;-1:-1:-1;;;15836:18:1;;;15829:34;15880:19;;56296:78:0;15505:400:1;56296:78:0;56448:5;56457:1;56448:10;:40;;;;;53648:4;56462:8;:26;56448:40;56441:159;;56549:39;56567:1;56569:10;56580:7;:5;56586:1;56580:7;:::i;:::-;56549:17;:39::i;:::-;56669:42;56679:10;56702:8;;56691;:19;;;;:::i;:::-;56669:9;:42::i;:::-;55345:1376;55298:1423;:::o;60266:83::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60334:2:::1;:7:::0;;-1:-1:-1;;;;;;60334:7:0::1;-1:-1:-1::0;;;;;60334:7:0;;;::::1;::::0;;;::::1;::::0;;60266:83::o;36757:185::-;36895:39;36912:4;36918:2;36922:7;36895:39;;;;;;;;;;;;:16;:39::i;58193:342::-;58252:16;58281:18;58302:17;58312:6;58302:9;:17::i;:::-;58281:38;;58332:25;58374:10;58360:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58360:25:0;;58332:53;;58400:9;58396:106;58415:10;58411:1;:14;58396:106;;;58460:30;58480:6;58488:1;58460:19;:30::i;:::-;58446:8;58455:1;58446:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;58427:3;;;;:::i;:::-;;;;58396:106;;;-1:-1:-1;58519:8:0;58193:342;-1:-1:-1;;;58193:342:0:o;59419:104::-;59474:4;59498:17;59506:8;59498:7;:17::i;48048:233::-;48123:7;48159:30;47946:10;:17;;47858:113;48159:30;48151:5;:38;48143:95;;;;-1:-1:-1;;;48143:95:0;;19730:2:1;48143:95:0;;;19712:21:1;19769:2;19749:18;;;19742:30;19808:34;19788:18;;;19781:62;-1:-1:-1;;;19859:18:1;;;19852:42;19911:19;;48143:95:0;19528:408:1;48143:95:0;48256:10;48267:5;48256:17;;;;;;;;:::i;:::-;;;;;;;;;48249:24;;48048:233;;;:::o;59550:113::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;59627:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;61335:243::-:0;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;61486:2:::1;::::0;61478:37:::1;::::0;61417:21:::1;::::0;61398:16:::1;::::0;-1:-1:-1;;;;;61486:2:0;;::::1;::::0;61417:21;;61398:16;61478:37;61398:16;61478:37;61417:21;61486:2;61478:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61459:56;;;61534:7;61526:42;;;::::0;-1:-1:-1;;;61526:42:0;;11874:2:1;61526:42:0::1;::::0;::::1;11856:21:1::0;11913:2;11893:18;;;11886:30;-1:-1:-1;;;11932:18:1;;;11925:52;11994:18;;61526:42:0::1;11672:346:1::0;54492:155:0;54579:3;54571:5;;:11;;;;:::i;:::-;54558:9;:24;;54549:65;;;;-1:-1:-1;;;54549:65:0;;13397:2:1;54549:65:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:28;13455:18;;;13448:56;13521:18;;54549:65:0;13195:350:1;54549:65:0;54625:14;54635:3;54625:9;:14::i;:::-;54492:155;:::o;33731:239::-;33803:7;33839:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33839:16:0;33874:19;33866:73;;;;-1:-1:-1;;;33866:73:0;;14940:2:1;33866:73:0;;;14922:21:1;14979:2;14959:18;;;14952:30;15018:34;14998:18;;;14991:62;-1:-1:-1;;;15069:18:1;;;15062:39;15118:19;;33866:73:0;14738:405:1;59671:125:0;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;59752:16:::1;:36:::0;;-1:-1:-1;;59752:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59671:125::o;60152:106::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60224:14:::1;:26:::0;60152:106::o;33461:208::-;33533:7;-1:-1:-1;;;;;33561:19:0;;33553:74;;;;-1:-1:-1;;;33553:74:0;;14529:2:1;33553:74:0;;;14511:21:1;14568:2;14548:18;;;14541:30;14607:34;14587:18;;;14580:62;-1:-1:-1;;;14658:18:1;;;14651:40;14708:19;;33553:74:0;14327:406:1;33553:74:0;-1:-1:-1;;;;;;33645:16:0;;;;;:9;:16;;;;;;;33461:208::o;12595:103::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;12660:30:::1;12687:1;12660:18;:30::i;:::-;12595:103::o:0;59804:92::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;59871:5:::1;:17:::0;59804:92::o;60357:94::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60427:11:::1;:16:::0;;-1:-1:-1;;;;;;60427:16:0::1;-1:-1:-1::0;;;;;60427:16:0;;;::::1;::::0;;;::::1;::::0;;60357:94::o;34206:104::-;34262:13;34295:7;34288:14;;;;;:::i;35890:155::-;35985:52;10748:10;36018:8;36028;35985:18;:52::i;37013:328::-;37188:41;10748:10;37221:7;37188:18;:41::i;:::-;37180:103;;;;-1:-1:-1;;;37180:103:0;;;;;;;:::i;:::-;37294:39;37308:4;37314:2;37318:7;37327:5;37294:13;:39::i;:::-;37013:328;;;;:::o;59904:90::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;59968:8:::1;:18:::0;59904:90::o;34381:334::-;34454:13;34488:16;34496:7;34488;:16::i;:::-;34480:76;;;;-1:-1:-1;;;34480:76:0;;18074:2:1;34480:76:0;;;18056:21:1;18113:2;18093:18;;;18086:30;18152:34;18132:18;;;18125:62;-1:-1:-1;;;18203:18:1;;;18196:45;18258:19;;34480:76:0;17872:411:1;34480:76:0;34569:21;34593:10;:8;:10::i;:::-;34569:34;;34645:1;34627:7;34621:21;:25;:86;;;;;;;;;;;;;;;;;34673:7;34682:18;:7;:16;:18::i;:::-;34656:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34614:93;34381:334;-1:-1:-1;;;34381:334:0:o;60859:468::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;60961:25:::1;::::0;61046:8:::1;::::0;:26:::1;::::0;53648:4:::1;::::0;61046:26:::1;:::i;:::-;61034:6;61006:25;;:34;;;;:::i;:::-;61005:68;;60997:120;;;;-1:-1:-1::0;;;60997:120:0::1;;;;;;;:::i;:::-;61194:6;61166:25;;:34;;;;:::i;:::-;61138:25;:62:::0;61215:9:::1;61211:109;61230:6;61226:1;:10;61211:109;;;61257:51;61268:3:::0;53648:4:::1;61273:16;61288:1:::0;61273:12;:16:::1;:::i;:::-;:34;;;;:::i;61257:51::-;61238:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61211:109;;53534:26:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58543:200::-;58675:11;;58705:30;;-1:-1:-1;;;58705:30:0;;-1:-1:-1;;;;;6972:32:1;;;58705:30:0;;;6954:51:1;58605:16:0;;58675:11;;;;58705:22;;6927:18:1;;58705:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58705:30:0;;;;;;;;;;;;:::i;12853:201::-;12017:6;;-1:-1:-1;;;;;12017:6:0;10748:10;12164:23;12156:68;;;;-1:-1:-1;;;12156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12942:22:0;::::1;12934:73;;;::::0;-1:-1:-1;;;12934:73:0;;10297:2:1;12934:73:0::1;::::0;::::1;10279:21:1::0;10336:2;10316:18;;;10309:30;10375:34;10355:18;;;10348:62;-1:-1:-1;;;10426:18:1;;;10419:36;10472:19;;12934:73:0::1;10095:402:1::0;12934:73:0::1;13018:28;13037:8;13018:18;:28::i;57284:686::-:0;57504:28;57535:27;57551:10;57535:15;:27::i;:::-;57504:58;;57579:9;57575:388;57594:11;:18;57590:1;:22;57575:388;;;57643:17;57663:11;57675:1;57663:14;;;;;;;;:::i;:::-;;;;;;;57643:34;;57782:18;57790:9;57782:7;:18::i;:::-;57778:174;;;57835:8;;;57778:174;57915:21;57926:9;57915:10;:21::i;:::-;57628:335;57575:388;57614:3;;;;:::i;:::-;;;;57575:388;;56761:467;56826:16;;;;56817:61;;;;-1:-1:-1;;;56817:61:0;;20143:2:1;56817:61:0;;;20125:21:1;20182:2;20162:18;;;20155:30;20221:33;20201:18;;;20194:61;20272:18;;56817:61:0;19941:355:1;56817:61:0;56956:25;56972:8;56956:15;:25::i;:::-;-1:-1:-1;;;;;56942:39:0;:10;-1:-1:-1;;;;;56942:39:0;;56934:106;;;;-1:-1:-1;;;56934:106:0;;9043:2:1;56934:106:0;;;9025:21:1;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:52;9234:19;;56934:106:0;8841:418:1;56934:106:0;57117:17;57125:8;57117:7;:17::i;:::-;57116:18;57108:59;;;;-1:-1:-1;;;57108:59:0;;21281:2:1;57108:59:0;;;21263:21:1;21320:2;21300:18;;;21293:30;21359;21339:18;;;21332:58;21407:18;;57108:59:0;21079:352:1;57108:59:0;57188:32;57199:10;57211:8;57188:9;:32::i;33092:305::-;33194:4;-1:-1:-1;;;;;;33231:40:0;;-1:-1:-1;;;33231:40:0;;:105;;-1:-1:-1;;;;;;;33288:48:0;;-1:-1:-1;;;33288:48:0;33231:105;:158;;;-1:-1:-1;;;;;;;;;;24860:40:0;;;33353:36;24751:157;38851:127;38916:4;38940:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38940:16:0;:30;;;38851:127::o;42997:174::-;43072:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43072:29:0;-1:-1:-1;;;;;43072:29:0;;;;;;;;:24;;43126:23;43072:24;43126:14;:23::i;:::-;-1:-1:-1;;;;;43117:46:0;;;;;;;;;;;42997:174;;:::o;39145:348::-;39238:4;39263:16;39271:7;39263;:16::i;:::-;39255:73;;;;-1:-1:-1;;;39255:73:0;;12984:2:1;39255:73:0;;;12966:21:1;13023:2;13003:18;;;12996:30;13062:34;13042:18;;;13035:62;-1:-1:-1;;;13113:18:1;;;13106:42;13165:19;;39255:73:0;12782:408:1;39255:73:0;39339:13;39355:23;39370:7;39355:14;:23::i;:::-;39339:39;;39408:5;-1:-1:-1;;;;;39397:16:0;:7;-1:-1:-1;;;;;39397:16:0;;:52;;;-1:-1:-1;;;;;;36237:25:0;;;36213:4;36237:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39417:32;39397:87;;;;39477:7;-1:-1:-1;;;;;39453:31:0;:20;39465:7;39453:11;:20::i;:::-;-1:-1:-1;;;;;39453:31:0;;;39145:348;-1:-1:-1;;;;39145:348:0:o;42254:625::-;42413:4;-1:-1:-1;;;;;42386:31:0;:23;42401:7;42386:14;:23::i;:::-;-1:-1:-1;;;;;42386:31:0;;42378:81;;;;-1:-1:-1;;;42378:81:0;;10704:2:1;42378:81:0;;;10686:21:1;10743:2;10723:18;;;10716:30;10782:34;10762:18;;;10755:62;-1:-1:-1;;;10833:18:1;;;10826:35;10878:19;;42378:81:0;10502:401:1;42378:81:0;-1:-1:-1;;;;;42478:16:0;;42470:65;;;;-1:-1:-1;;;42470:65:0;;12225:2:1;42470:65:0;;;12207:21:1;12264:2;12244:18;;;12237:30;12303:34;12283:18;;;12276:62;-1:-1:-1;;;12354:18:1;;;12347:34;12398:19;;42470:65:0;12023:400:1;42470:65:0;42548:39;42569:4;42575:2;42579:7;42548:20;:39::i;:::-;42652:29;42669:1;42673:7;42652:8;:29::i;:::-;-1:-1:-1;;;;;42694:15:0;;;;;;:9;:15;;;;;:20;;42713:1;;42694:15;:20;;42713:1;;42694:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42725:13:0;;;;;;:9;:13;;;;;:18;;42742:1;;42725:13;:18;;42742:1;;42725:18;:::i;:::-;;;;-1:-1:-1;;42754:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42754:21:0;-1:-1:-1;;;;;42754:21:0;;;;;;;;;42793:27;;42754:16;;42793:27;;;;;;;35190:341;35120:411;;:::o;59166:245::-;59320:12;;59344:59;;-1:-1:-1;;;59344:59:0;;;;;21820:25:1;;;-1:-1:-1;;;;;21881:32:1;;;21861:18;;;21854:60;21930:18;;;21923:34;;;59320:12:0;;;;;;59344:21;;21793:18:1;;59344:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59263:148;59166:245;;;:::o;39835:110::-;39911:26;39921:2;39925:7;39911:26;;;;;;;;;;;;:9;:26::i;54679:611::-;54753:25;;54798:9;;54789:63;;;;-1:-1:-1;;;54789:63:0;;14177:2:1;54789:63:0;;;14159:21:1;14216:2;14196:18;;;14189:30;14255:25;14235:18;;;14228:53;14298:18;;54789:63:0;13975:347:1;54789:63:0;54879:14;;54872:3;:21;;54863:70;;;;-1:-1:-1;;;54863:70:0;;20922:2:1;54863:70:0;;;20904:21:1;20961:2;20941:18;;;20934:30;21000:32;20980:18;;;20973:60;21050:18;;54863:70:0;20720:354:1;54863:70:0;55019:15;;53648:4;54990:8;;:26;;;;:::i;:::-;:44;;;;:::i;:::-;54981:3;54953:25;;:31;;;;:::i;:::-;54952:83;;54944:135;;;;-1:-1:-1;;;54944:135:0;;;;;;;:::i;:::-;55156:3;55128:25;;:31;;;;:::i;:::-;55100:25;:59;55174:9;55170:113;55189:3;55185:1;:7;55170:113;;;55213:58;55224:10;53648:4;55236:16;55251:1;55236:12;:16;:::i;55213:58::-;55194:3;;;;:::i;:::-;;;;55170:113;;13214:191;13307:6;;;-1:-1:-1;;;;;13324:17:0;;;-1:-1:-1;;;;;;13324:17:0;;;;;;;13357:40;;13307:6;;;13324:17;13307:6;;13357:40;;13288:16;;13357:40;13277:128;13214:191;:::o;43313:315::-;43468:8;-1:-1:-1;;;;;43459:17:0;:5;-1:-1:-1;;;;;43459:17:0;;;43451:55;;;;-1:-1:-1;;;43451:55:0;;12630:2:1;43451:55:0;;;12612:21:1;12669:2;12649:18;;;12642:30;12708:27;12688:18;;;12681:55;12753:18;;43451:55:0;12428:349:1;43451:55:0;-1:-1:-1;;;;;43517:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43517:46:0;;;;;;;;;;43579:41;;8565::1;;;43579::0;;8538:18:1;43579:41:0;;;;;;;43313:315;;;:::o;38223:::-;38380:28;38390:4;38396:2;38400:7;38380:9;:28::i;:::-;38427:48;38450:4;38456:2;38460:7;38469:5;38427:22;:48::i;:::-;38419:111;;;;-1:-1:-1;;;38419:111:0;;;;;;;:::i;58072:113::-;58132:13;58165:12;58158:19;;;;;:::i;8230:723::-;8286:13;8507:10;8503:53;;-1:-1:-1;;8534:10:0;;;;;;;;;;;;-1:-1:-1;;;8534:10:0;;;;;8230:723::o;8503:53::-;8581:5;8566:12;8622:78;8629:9;;8622:78;;8655:8;;;;:::i;:::-;;-1:-1:-1;8678:10:0;;-1:-1:-1;8686:2:0;8678:10;;:::i;:::-;;;8622:78;;;8710:19;8742:6;8732:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8732:17:0;;8710:39;;8760:154;8767:10;;8760:154;;8794:11;8804:1;8794:11;;:::i;:::-;;-1:-1:-1;8863:10:0;8871:2;8863:5;:10;:::i;:::-;8850:24;;:2;:24;:::i;:::-;8837:39;;8820:6;8827;8820:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8820:56:0;;;;;;;;-1:-1:-1;8891:11:0;8900:2;8891:11;;:::i;:::-;;;8760:154;;48894:589;-1:-1:-1;;;;;49100:18:0;;49096:187;;49135:40;49167:7;50310:10;:17;;50283:24;;;;:15;:24;;;;;:44;;;50338:24;;;;;;;;;;;;50206:164;49135:40;49096:187;;;49205:2;-1:-1:-1;;;;;49197:10:0;:4;-1:-1:-1;;;;;49197:10:0;;49193:90;;49224:47;49257:4;49263:7;49224:32;:47::i;:::-;-1:-1:-1;;;;;49297:16:0;;49293:183;;49330:45;49367:7;49330:36;:45::i;49293:183::-;49403:4;-1:-1:-1;;;;;49397:10:0;:2;-1:-1:-1;;;;;49397:10:0;;49393:83;;49424:40;49452:2;49456:7;49424:27;:40::i;40172:321::-;40302:18;40308:2;40312:7;40302:5;:18::i;:::-;40353:54;40384:1;40388:2;40392:7;40401:5;40353:22;:54::i;:::-;40331:154;;;;-1:-1:-1;;;40331:154:0;;;;;;;:::i;44193:799::-;44348:4;-1:-1:-1;;;;;44369:13:0;;14940:19;:23;44365:620;;44405:72;;-1:-1:-1;;;44405:72:0;;-1:-1:-1;;;;;44405:36:0;;;;;:72;;10748:10;;44456:4;;44462:7;;44471:5;;44405:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44405:72:0;;;;;;;;-1:-1:-1;;44405:72:0;;;;;;;;;;;;:::i;:::-;;;44401:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44647:13:0;;44643:272;;44690:60;;-1:-1:-1;;;44690:60:0;;;;;;;:::i;44643:272::-;44865:6;44859:13;44850:6;44846:2;44842:15;44835:38;44401:529;-1:-1:-1;;;;;;44528:51:0;-1:-1:-1;;;44528:51:0;;-1:-1:-1;44521:58:0;;44365:620;-1:-1:-1;44969:4:0;44193:799;;;;;;:::o;50997:988::-;51263:22;51313:1;51288:22;51305:4;51288:16;:22::i;:::-;:26;;;;:::i;:::-;51325:18;51346:26;;;:17;:26;;;;;;51263:51;;-1:-1:-1;51479:28:0;;;51475:328;;-1:-1:-1;;;;;51546:18:0;;51524:19;51546:18;;;:12;:18;;;;;;;;:34;;;;;;;;;51597:30;;;;;;:44;;;51714:30;;:17;:30;;;;;:43;;;51475:328;-1:-1:-1;51899:26:0;;;;:17;:26;;;;;;;;51892:33;;;-1:-1:-1;;;;;51943:18:0;;;;;:12;:18;;;;;:34;;;;;;;51936:41;50997:988::o;52280:1079::-;52558:10;:17;52533:22;;52558:21;;52578:1;;52558:21;:::i;:::-;52590:18;52611:24;;;:15;:24;;;;;;52984:10;:26;;52533:46;;-1:-1:-1;52611:24:0;;52533:46;;52984:26;;;;;;:::i;:::-;;;;;;;;;52962:48;;53048:11;53023:10;53034;53023:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53128:28;;;:15;:28;;;;;;;:41;;;53300:24;;;;;53293:31;53335:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52351:1008;;;52280:1079;:::o;49784:221::-;49869:14;49886:20;49903:2;49886:16;:20::i;:::-;-1:-1:-1;;;;;49917:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49962:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;49784:221:0:o;40829:439::-;-1:-1:-1;;;;;40909:16:0;;40901:61;;;;-1:-1:-1;;;40901:61:0;;16112:2:1;40901:61:0;;;16094:21:1;;;16131:18;;;16124:30;16190:34;16170:18;;;16163:62;16242:18;;40901:61:0;15910:356:1;40901:61:0;40982:16;40990:7;40982;:16::i;:::-;40981:17;40973:58;;;;-1:-1:-1;;;40973:58:0;;11110:2:1;40973:58:0;;;11092:21:1;11149:2;11129:18;;;11122:30;11188;11168:18;;;11161:58;11236:18;;40973:58:0;10908:352:1;40973:58:0;41044:45;41073:1;41077:2;41081:7;41044:20;:45::i;:::-;-1:-1:-1;;;;;41102:13:0;;;;;;:9;:13;;;;;:18;;41119:1;;41102:13;:18;;41119:1;;41102:18;:::i;:::-;;;;-1:-1:-1;;41131:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41131:21:0;-1:-1:-1;;;;;41131:21:0;;;;;;;;41170:33;;41131:16;;;41170:33;;41131:16;;41170:33;55345:1376;55298:1423;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:247::-;649:6;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;842:251::-;912:6;965:2;953:9;944:7;940:23;936:32;933:52;;;981:1;978;971:12;933:52;1013:9;1007:16;1032:31;1057:5;1032:31;:::i;1098:388::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1282:9;1269:23;1301:31;1326:5;1301:31;:::i;:::-;1351:5;-1:-1:-1;1408:2:1;1393:18;;1380:32;1421:33;1380:32;1421:33;:::i;:::-;1473:7;1463:17;;;1098:388;;;;;:::o;1491:456::-;1568:6;1576;1584;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1692:9;1679:23;1711:31;1736:5;1711:31;:::i;:::-;1761:5;-1:-1:-1;1818:2:1;1803:18;;1790:32;1831:33;1790:32;1831:33;:::i;:::-;1491:456;;1883:7;;-1:-1:-1;;;1937:2:1;1922:18;;;;1909:32;;1491:456::o;1952:794::-;2047:6;2055;2063;2071;2124:3;2112:9;2103:7;2099:23;2095:33;2092:53;;;2141:1;2138;2131:12;2092:53;2180:9;2167:23;2199:31;2224:5;2199:31;:::i;:::-;2249:5;-1:-1:-1;2306:2:1;2291:18;;2278:32;2319:33;2278:32;2319:33;:::i;:::-;2371:7;-1:-1:-1;2425:2:1;2410:18;;2397:32;;-1:-1:-1;2480:2:1;2465:18;;2452:32;2507:18;2496:30;;2493:50;;;2539:1;2536;2529:12;2493:50;2562:22;;2615:4;2607:13;;2603:27;-1:-1:-1;2593:55:1;;2644:1;2641;2634:12;2593:55;2667:73;2732:7;2727:2;2714:16;2709:2;2705;2701:11;2667:73;:::i;:::-;2657:83;;;1952:794;;;;;;;:::o;2751:315::-;2816:6;2824;2877:2;2865:9;2856:7;2852:23;2848:32;2845:52;;;2893:1;2890;2883:12;2845:52;2932:9;2919:23;2951:31;2976:5;2951:31;:::i;:::-;3001:5;-1:-1:-1;3025:35:1;3056:2;3041:18;;3025:35;:::i;:::-;3015:45;;2751:315;;;;;:::o;3071:::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3255:9;3242:23;3274:31;3299:5;3274:31;:::i;:::-;3324:5;3376:2;3361:18;;;;3348:32;;-1:-1:-1;;;3071:315:1:o;3391:947::-;3486:6;3517:2;3560;3548:9;3539:7;3535:23;3531:32;3528:52;;;3576:1;3573;3566:12;3528:52;3609:9;3603:16;3638:18;3679:2;3671:6;3668:14;3665:34;;;3695:1;3692;3685:12;3665:34;3733:6;3722:9;3718:22;3708:32;;3778:7;3771:4;3767:2;3763:13;3759:27;3749:55;;3800:1;3797;3790:12;3749:55;3829:2;3823:9;3851:2;3847;3844:10;3841:36;;;3857:18;;:::i;:::-;3903:2;3900:1;3896:10;3886:20;;3926:28;3950:2;3946;3942:11;3926:28;:::i;:::-;3988:15;;;4019:12;;;;4051:11;;;4081;;;4077:20;;4074:33;-1:-1:-1;4071:53:1;;;4120:1;4117;4110:12;4071:53;4142:1;4133:10;;4152:156;4166:2;4163:1;4160:9;4152:156;;;4223:10;;4211:23;;4184:1;4177:9;;;;;4254:12;;;;4286;;4152:156;;;-1:-1:-1;4327:5:1;3391:947;-1:-1:-1;;;;;;;;3391:947:1:o;4343:180::-;4399:6;4452:2;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4491:26;4507:9;4491:26;:::i;4528:245::-;4586:6;4639:2;4627:9;4618:7;4614:23;4610:32;4607:52;;;4655:1;4652;4645:12;4607:52;4694:9;4681:23;4713:30;4737:5;4713:30;:::i;4778:249::-;4847:6;4900:2;4888:9;4879:7;4875:23;4871:32;4868:52;;;4916:1;4913;4906:12;4868:52;4948:9;4942:16;4967:30;4991:5;4967:30;:::i;5032:450::-;5101:6;5154:2;5142:9;5133:7;5129:23;5125:32;5122:52;;;5170:1;5167;5160:12;5122:52;5210:9;5197:23;5243:18;5235:6;5232:30;5229:50;;;5275:1;5272;5265:12;5229:50;5298:22;;5351:4;5343:13;;5339:27;-1:-1:-1;5329:55:1;;5380:1;5377;5370:12;5329:55;5403:73;5468:7;5463:2;5450:16;5445:2;5441;5437:11;5403:73;:::i;5487:180::-;5546:6;5599:2;5587:9;5578:7;5574:23;5570:32;5567:52;;;5615:1;5612;5605:12;5567:52;-1:-1:-1;5638:23:1;;5487:180;-1:-1:-1;5487:180:1:o;5672:184::-;5742:6;5795:2;5783:9;5774:7;5770:23;5766:32;5763:52;;;5811:1;5808;5801:12;5763:52;-1:-1:-1;5834:16:1;;5672:184;-1:-1:-1;5672:184:1:o;5861:257::-;5902:3;5940:5;5934:12;5967:6;5962:3;5955:19;5983:63;6039:6;6032:4;6027:3;6023:14;6016:4;6009:5;6005:16;5983:63;:::i;:::-;6100:2;6079:15;-1:-1:-1;;6075:29:1;6066:39;;;;6107:4;6062:50;;5861:257;-1:-1:-1;;5861:257:1:o;6123:470::-;6302:3;6340:6;6334:13;6356:53;6402:6;6397:3;6390:4;6382:6;6378:17;6356:53;:::i;:::-;6472:13;;6431:16;;;;6494:57;6472:13;6431:16;6528:4;6516:17;;6494:57;:::i;:::-;6567:20;;6123:470;-1:-1:-1;;;;6123:470:1:o;7016:488::-;-1:-1:-1;;;;;7285:15:1;;;7267:34;;7337:15;;7332:2;7317:18;;7310:43;7384:2;7369:18;;7362:34;;;7432:3;7427:2;7412:18;;7405:31;;;7210:4;;7453:45;;7478:19;;7470:6;7453:45;:::i;:::-;7445:53;7016:488;-1:-1:-1;;;;;;7016:488:1:o;7788:632::-;7959:2;8011:21;;;8081:13;;7984:18;;;8103:22;;;7930:4;;7959:2;8182:15;;;;8156:2;8141:18;;;7930:4;8225:169;8239:6;8236:1;8233:13;8225:169;;;8300:13;;8288:26;;8369:15;;;;8334:12;;;;8261:1;8254:9;8225:169;;;-1:-1:-1;8411:3:1;;7788:632;-1:-1:-1;;;;;;7788:632:1:o;8617:219::-;8766:2;8755:9;8748:21;8729:4;8786:44;8826:2;8815:9;8811:18;8803:6;8786:44;:::i;9676:414::-;9878:2;9860:21;;;9917:2;9897:18;;;9890:30;9956:34;9951:2;9936:18;;9929:62;-1:-1:-1;;;10022:2:1;10007:18;;10000:48;10080:3;10065:19;;9676:414::o;16271:403::-;16473:2;16455:21;;;16512:2;16492:18;;;16485:30;16551:34;16546:2;16531:18;;16524:62;-1:-1:-1;;;16617:2:1;16602:18;;16595:37;16664:3;16649:19;;16271:403::o;17092:356::-;17294:2;17276:21;;;17313:18;;;17306:30;17372:34;17367:2;17352:18;;17345:62;17439:2;17424:18;;17092:356::o;19110:413::-;19312:2;19294:21;;;19351:2;19331:18;;;19324:30;19390:34;19385:2;19370:18;;19363:62;-1:-1:-1;;;19456:2:1;19441:18;;19434:47;19513:3;19498:19;;19110:413::o;21968:275::-;22039:2;22033:9;22104:2;22085:13;;-1:-1:-1;;22081:27:1;22069:40;;22139:18;22124:34;;22160:22;;;22121:62;22118:88;;;22186:18;;:::i;:::-;22222:2;22215:22;21968:275;;-1:-1:-1;21968:275:1:o;22248:128::-;22288:3;22319:1;22315:6;22312:1;22309:13;22306:39;;;22325:18;;:::i;:::-;-1:-1:-1;22361:9:1;;22248:128::o;22381:120::-;22421:1;22447;22437:35;;22452:18;;:::i;:::-;-1:-1:-1;22486:9:1;;22381:120::o;22506:168::-;22546:7;22612:1;22608;22604:6;22600:14;22597:1;22594:21;22589:1;22582:9;22575:17;22571:45;22568:71;;;22619:18;;:::i;:::-;-1:-1:-1;22659:9:1;;22506:168::o;22679:125::-;22719:4;22747:1;22744;22741:8;22738:34;;;22752:18;;:::i;:::-;-1:-1:-1;22789:9:1;;22679:125::o;22809:258::-;22881:1;22891:113;22905:6;22902:1;22899:13;22891:113;;;22981:11;;;22975:18;22962:11;;;22955:39;22927:2;22920:10;22891:113;;;23022:6;23019:1;23016:13;23013:48;;;-1:-1:-1;;23057:1:1;23039:16;;23032:27;22809:258::o;23072:380::-;23151:1;23147:12;;;;23194;;;23215:61;;23269:4;23261:6;23257:17;23247:27;;23215:61;23322:2;23314:6;23311:14;23291:18;23288:38;23285:161;;;23368:10;23363:3;23359:20;23356:1;23349:31;23403:4;23400:1;23393:15;23431:4;23428:1;23421:15;23285:161;;23072:380;;;:::o;23457:135::-;23496:3;-1:-1:-1;;23517:17:1;;23514:43;;;23537:18;;:::i;:::-;-1:-1:-1;23584:1:1;23573:13;;23457:135::o;23597:112::-;23629:1;23655;23645:35;;23660:18;;:::i;:::-;-1:-1:-1;23694:9:1;;23597:112::o;23714:127::-;23775:10;23770:3;23766:20;23763:1;23756:31;23806:4;23803:1;23796:15;23830:4;23827:1;23820:15;23846:127;23907:10;23902:3;23898:20;23895:1;23888:31;23938:4;23935:1;23928:15;23962:4;23959:1;23952:15;23978:127;24039:10;24034:3;24030:20;24027:1;24020:31;24070:4;24067:1;24060:15;24094:4;24091:1;24084:15;24110:127;24171:10;24166:3;24162:20;24159:1;24152:31;24202:4;24199:1;24192:15;24226:4;24223:1;24216:15;24242:127;24303:10;24298:3;24294:20;24291:1;24284:31;24334:4;24331:1;24324:15;24358:4;24355:1;24348:15;24374:131;-1:-1:-1;;;;;24449:31:1;;24439:42;;24429:70;;24495:1;24492;24485:12;24510:131;-1:-1:-1;;;;;;24584:32:1;;24574:43;;24564:71;;24631:1;24628;24621:12

Swarm Source

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