ETH Price: $3,462.83 (+0.21%)
Gas: 10 Gwei

Token

KateDAO (KATE)
 

Overview

Max Total Supply

420 KATE

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
91087.eth
Balance
5 KATE
0xeb89007481990d739c1ed98d210bddfb60e8f3bf
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:
KateDAO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/nft.sol

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

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


// OpenZeppelin Contracts v4.4.1 (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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 tokenId);

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

// 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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: contracts/NFT.sol

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;









contract KateDAO is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmezzPHUdJVTTToR6V3pNe3UtmG3T1KsJ8GEH2JabJSVRN";
    address private openSeaProxyRegistryAddress = 0xce12fd34d5E6Cac27eC72967dE54104db68314D4;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 5;
    uint256 public maxSupply = 1100;

    uint256 public constant PUBLIC_SALE_PRICE = 0.03 ether;
    uint256 public NUM_FREE_MINTS = 400;
    bool public isPublicSaleActive = true;




    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }

    modifier freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(totalSupply()>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        }
        _;
    }


    constructor(
    ) ERC721A("KateDAO", "KATE", 100, maxSupply) {
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }



    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too
    function freeMint(uint256 numberOfTokens)
        external
        nonReentrant
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
        freeMintsAvailable()
    {
        _safeMint(msg.sender, numberOfTokens);
    }




    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }

    function setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", (tokenId).toString()));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055600755610120604052603560c08181529062002dd860e03980516200003291600b91602090910190620001cd565b50600c805460ff60a01b196001600160a01b031990911673ce12fd34d5e6cac27ec72967de54104db68314d41716600160a01b17905561044c600d55610190600e55600f805460ff191660011790553480156200008e57600080fd5b50604051806040016040528060078152602001664b61746544414f60c81b815250604051806040016040528060048152602001634b41544560e01b8152506064600d5460008111620000fd5760405162461bcd60e51b8152600401620000f490620002ba565b60405180910390fd5b60008211620001205760405162461bcd60e51b8152600401620000f49062000273565b835162000135906001906020870190620001cd565b5082516200014b906002906020860190620001cd565b5060a091909152608052506200016c90506200016662000177565b6200017b565b600160095562000345565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001db9062000308565b90600052602060002090601f016020900481019282620001ff57600085556200024a565b82601f106200021a57805160ff19168380011785556200024a565b828001600101855582156200024a579182015b828111156200024a5782518255916020019190600101906200022d565b50620002589291506200025c565b5090565b5b808211156200025857600081556001016200025d565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200031d57607f821691505b602082108114156200033f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a6262000376600039600081816115f9015281816116230152611a15015260005050612a626000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610590578063d7224ba0146105a5578063e43082f7146105ba578063e985e9c5146105da578063f2fde38b146105fa57610204565b8063a22cb4651461051b578063b88d4fde1461053b578063c6a91b421461055b578063c87b56dd1461057057610204565b80637c928fe9116100e75780637c928fe9146104a95780638da5cb5b146104c957806395d89b41146104de578063982d669e146104f3578063a0712d681461050857610204565b80636352211e1461043f57806370a082311461045f578063714c53981461047f578063715018a61461049457610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b146103aa57806342842e0e146103bf57806349df728c146103df5780634f6ccce7146103ff57806355f804b31461041f57610204565b806323b872dd1461031c57806328cad13d1461033c5780632a55205a1461035c5780632f745c591461038a57610204565b8063095ea7b3116101d7578063095ea7b3146102b05780630a00ae83146102d257806318160ddd146102f25780631e84c4131461030757610204565b806301ffc9a71461020957806306fdde031461023f57806307e89ec014610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611efa565b61061a565b6040516102369190612152565b60405180910390f35b34801561024b57600080fd5b50610254610647565b604051610236919061215d565b34801561026d57600080fd5b506102766106d9565b604051610236919061283a565b34801561028f57600080fd5b506102a361029e366004611f94565b6106e4565b60405161023691906120e8565b3480156102bc57600080fd5b506102d06102cb366004611e97565b610730565b005b3480156102de57600080fd5b506102d06102ed366004611f94565b6107c9565b3480156102fe57600080fd5b5061027661080d565b34801561031357600080fd5b50610229610813565b34801561032857600080fd5b506102d0610337366004611dad565b61081c565b34801561034857600080fd5b506102d0610357366004611ec2565b610827565b34801561036857600080fd5b5061037c610377366004611fc4565b610879565b604051610236929190612139565b34801561039657600080fd5b506102766103a5366004611e97565b6108c2565b3480156103b657600080fd5b506102d06109be565b3480156103cb57600080fd5b506102d06103da366004611dad565b610a30565b3480156103eb57600080fd5b506102d06103fa366004611d59565b610a4b565b34801561040b57600080fd5b5061027661041a366004611f94565b610b8c565b34801561042b57600080fd5b506102d061043a366004611f4e565b610bb8565b34801561044b57600080fd5b506102a361045a366004611f94565b610c0a565b34801561046b57600080fd5b5061027661047a366004611d59565b610c1c565b34801561048b57600080fd5b50610254610c69565b3480156104a057600080fd5b506102d0610c78565b3480156104b557600080fd5b506102d06104c4366004611f94565b610cc3565b3480156104d557600080fd5b506102a3610da1565b3480156104ea57600080fd5b50610254610db0565b3480156104ff57600080fd5b50610276610dbf565b6102d0610516366004611f94565b610dc5565b34801561052757600080fd5b506102d0610536366004611e6a565b610ec0565b34801561054757600080fd5b506102d0610556366004611ded565b610f8e565b34801561056757600080fd5b50610276610fc7565b34801561057c57600080fd5b5061025461058b366004611f94565b610fcc565b34801561059c57600080fd5b50610276611025565b3480156105b157600080fd5b5061027661102b565b3480156105c657600080fd5b506102d06105d5366004611ec2565b611031565b3480156105e657600080fd5b506102296105f5366004611d75565b61108e565b34801561060657600080fd5b506102d0610615366004611d59565b611162565b60006001600160e01b0319821663152a902d60e11b148061063f575061063f826111d3565b90505b919050565b60606001805461065690612947565b80601f016020809104026020016040519081016040528092919081815260200182805461068290612947565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b666a94d74f43000081565b60006106ef8261122e565b6107145760405162461bcd60e51b815260040161070b906127ab565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073b82610c0a565b9050806001600160a01b0316836001600160a01b0316141561076f5760405162461bcd60e51b815260040161070b90612525565b806001600160a01b0316610781611235565b6001600160a01b0316148061079d575061079d816105f5611235565b6107b95760405162461bcd60e51b815260040161070b90612379565b6107c4838383611239565b505050565b6107d1611235565b6001600160a01b03166107e2610da1565b6001600160a01b0316146108085760405162461bcd60e51b815260040161070b90612467565b600e55565b60005490565b600f5460ff1681565b6107c4838383611295565b61082f611235565b6001600160a01b0316610840610da1565b6001600160a01b0316146108665760405162461bcd60e51b815260040161070b90612467565b600f805460ff1916911515919091179055565b6000806108858461122e565b6108a15760405162461bcd60e51b815260040161070b9061234e565b306108b76108b08560056115a9565b60646115bc565b915091509250929050565b60006108cd83610c1c565b82106108eb5760405162461bcd60e51b815260040161070b90612170565b60006108f561080d565b905060008060005b8381101561099f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561095057805192505b876001600160a01b0316836001600160a01b0316141561098c578684141561097e575093506109b892505050565b8361098881612982565b9450505b508061099781612982565b9150506108fd565b5060405162461bcd60e51b815260040161070b906126a0565b92915050565b6109c6611235565b6001600160a01b03166109d7610da1565b6001600160a01b0316146109fd5760405162461bcd60e51b815260040161070b90612467565b6040514790339082156108fc029083906000818181858888f19350505050158015610a2c573d6000803e3d6000fd5b5050565b6107c483838360405180602001604052806000815250610f8e565b610a53611235565b6001600160a01b0316610a64610da1565b6001600160a01b031614610a8a5760405162461bcd60e51b815260040161070b90612467565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610ab99030906004016120e8565b60206040518083038186803b158015610ad157600080fd5b505afa158015610ae5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b099190611fac565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610b3a9033908590600401612139565b602060405180830381600087803b158015610b5457600080fd5b505af1158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c49190611ede565b6000610b9661080d565b8210610bb45760405162461bcd60e51b815260040161070b90612242565b5090565b610bc0611235565b6001600160a01b0316610bd1610da1565b6001600160a01b031614610bf75760405162461bcd60e51b815260040161070b90612467565b8051610a2c90600b906020840190611c3d565b6000610c15826115c8565b5192915050565b60006001600160a01b038216610c445760405162461bcd60e51b815260040161070b906123d6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461065690612947565b610c80611235565b6001600160a01b0316610c91610da1565b6001600160a01b031614610cb75760405162461bcd60e51b815260040161070b90612467565b610cc160006116db565b565b60026009541415610ce65760405162461bcd60e51b815260040161070b906126ee565b6002600955600f5460ff16610d0d5760405162461bcd60e51b815260040161070b90612774565b80600d5481610d1a61080d565b610d24919061287a565b1115610d425760405162461bcd60e51b815260040161070b90612285565b816005811115610d645760405162461bcd60e51b815260040161070b9061230c565b600e54610d6f61080d565b1115610d8d5760405162461bcd60e51b815260040161070b90612632565b610d97338461172d565b5050600160095550565b6008546001600160a01b031690565b60606002805461065690612947565b600e5481565b60026009541415610de85760405162461bcd60e51b815260040161070b906126ee565b6002600955600e54666a94d74f430000908290610e0361080d565b1115610e315734610e1482846128a6565b14610e315760405162461bcd60e51b815260040161070b90612669565b600f5460ff16610e535760405162461bcd60e51b815260040161070b90612774565b82600d5481610e6061080d565b610e6a919061287a565b1115610e885760405162461bcd60e51b815260040161070b90612285565b836005811115610eaa5760405162461bcd60e51b815260040161070b9061230c565b610eb4338661172d565b50506001600955505050565b610ec8611235565b6001600160a01b0316826001600160a01b03161415610ef95760405162461bcd60e51b815260040161070b9061249c565b8060066000610f06611235565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f4a611235565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f829190612152565b60405180910390a35050565b610f99848484611295565b610fa584848484611747565b610fc15760405162461bcd60e51b815260040161070b90612567565b50505050565b600581565b6060610fd78261122e565b610ff35760405162461bcd60e51b815260040161070b9061234e565b600b610ffe83611862565b60405160200161100f92919061203a565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611039611235565b6001600160a01b031661104a610da1565b6001600160a01b0316146110705760405162461bcd60e51b815260040161070b90612467565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff1680156111415750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b81526004016110e691906120e8565b60206040518083038186803b1580156110fe57600080fd5b505afa158015611112573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111369190611f32565b6001600160a01b0316145b156111505760019150506109b8565b61115a848461197d565b949350505050565b61116a611235565b6001600160a01b031661117b610da1565b6001600160a01b0316146111a15760405162461bcd60e51b815260040161070b90612467565b6001600160a01b0381166111c75760405162461bcd60e51b815260040161070b906121b2565b6111d0816116db565b50565b60006001600160e01b031982166380ac58cd60e01b148061120457506001600160e01b03198216635b5e139f60e01b145b8061121f57506001600160e01b0319821663780e9d6360e01b145b8061063f575061063f826119ab565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112a0826115c8565b9050600081600001516001600160a01b03166112ba611235565b6001600160a01b031614806112ef57506112d2611235565b6001600160a01b03166112e4846106e4565b6001600160a01b0316145b8061130357508151611303906105f5611235565b9050806113225760405162461bcd60e51b815260040161070b906124d3565b846001600160a01b031682600001516001600160a01b0316146113575760405162461bcd60e51b815260040161070b90612421565b6001600160a01b03841661137d5760405162461bcd60e51b815260040161070b906122c7565b61138a8585856001610fc1565b61139a6000848460000151611239565b6001600160a01b03851660009081526004602052604081208054600192906113cc9084906001600160801b03166128c5565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114189185911661284f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556114ae84600161287a565b6000818152600360205260409020549091506001600160a01b0316611553576114d68161122e565b156115535760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115a18686866001610fc1565b505050505050565b60006115b582846128a6565b9392505050565b60006115b58284612892565b6115d0611cbd565b6115d98261122e565b6115f55760405162461bcd60e51b815260040161070b906121f8565b60007f00000000000000000000000000000000000000000000000000000000000000008310611656576116487f0000000000000000000000000000000000000000000000000000000000000000846128ed565b61165390600161287a565b90505b825b8181106116c2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116af579250610642915050565b50806116ba81612930565b915050611658565b5060405162461bcd60e51b815260040161070b90612725565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a2c8282604051806020016040528060008152506119c4565b600061175b846001600160a01b0316611c37565b1561185757836001600160a01b031663150b7a02611777611235565b8786866040518563ffffffff1660e01b815260040161179994939291906120fc565b602060405180830381600087803b1580156117b357600080fd5b505af19250505080156117e3575060408051601f3d908101601f191682019092526117e091810190611f16565b60015b61183d573d808015611811576040519150601f19603f3d011682016040523d82523d6000602084013e611816565b606091505b5080516118355760405162461bcd60e51b815260040161070b90612567565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061115a565b506001949350505050565b60608161188757506040805180820190915260018152600360fc1b6020820152610642565b8160005b81156118b1578061189b81612982565b91506118aa9050600a83612892565b915061188b565b60008167ffffffffffffffff8111156118da57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611904576020820181803683370190505b5090505b841561115a576119196001836128ed565b9150611926600a8661299d565b61193190603061287a565b60f81b81838151811061195457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611976600a86612892565b9450611908565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166119ed5760405162461bcd60e51b815260040161070b906125f1565b6119f68161122e565b15611a135760405162461bcd60e51b815260040161070b906125ba565b7f0000000000000000000000000000000000000000000000000000000000000000831115611a535760405162461bcd60e51b815260040161070b906127f8565b611a606000858386610fc1565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611abc90879061284f565b6001600160801b03168152602001858360200151611ada919061284f565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611c255760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611be96000888488611747565b611c055760405162461bcd60e51b815260040161070b90612567565b81611c0f81612982565b9250508080611c1d90612982565b915050611b9c565b5060008181556115a190878588610fc1565b3b151590565b828054611c4990612947565b90600052602060002090601f016020900481019282611c6b5760008555611cb1565b82601f10611c8457805160ff1916838001178555611cb1565b82800160010185558215611cb1579182015b82811115611cb1578251825591602001919060010190611c96565b50610bb4929150611cd4565b604080518082019091526000808252602082015290565b5b80821115610bb45760008155600101611cd5565b600067ffffffffffffffff80841115611d0457611d046129dd565b604051601f8501601f191681016020018281118282101715611d2857611d286129dd565b604052848152915081838501861015611d4057600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611d6a578081fd5b81356115b5816129f3565b60008060408385031215611d87578081fd5b8235611d92816129f3565b91506020830135611da2816129f3565b809150509250929050565b600080600060608486031215611dc1578081fd5b8335611dcc816129f3565b92506020840135611ddc816129f3565b929592945050506040919091013590565b60008060008060808587031215611e02578081fd5b8435611e0d816129f3565b93506020850135611e1d816129f3565b925060408501359150606085013567ffffffffffffffff811115611e3f578182fd5b8501601f81018713611e4f578182fd5b611e5e87823560208401611ce9565b91505092959194509250565b60008060408385031215611e7c578182fd5b8235611e87816129f3565b91506020830135611da281612a08565b60008060408385031215611ea9578182fd5b8235611eb4816129f3565b946020939093013593505050565b600060208284031215611ed3578081fd5b81356115b581612a08565b600060208284031215611eef578081fd5b81516115b581612a08565b600060208284031215611f0b578081fd5b81356115b581612a16565b600060208284031215611f27578081fd5b81516115b581612a16565b600060208284031215611f43578081fd5b81516115b5816129f3565b600060208284031215611f5f578081fd5b813567ffffffffffffffff811115611f75578182fd5b8201601f81018413611f85578182fd5b61115a84823560208401611ce9565b600060208284031215611fa5578081fd5b5035919050565b600060208284031215611fbd578081fd5b5051919050565b60008060408385031215611fd6578182fd5b50508035926020909101359150565b60008151808452611ffd816020860160208601612904565b601f01601f19169290920160200192915050565b60008151612023818560208601612904565b9290920192915050565b602f60f81b815260010190565b825460009081906002810460018083168061205657607f831692505b602080841082141561207657634e487b7160e01b87526022600452602487fd5b81801561208a576001811461209b576120c7565b60ff198616895284890196506120c7565b6120a48b612843565b885b868110156120bf5781548b8201529085019083016120a6565b505084890196505b5050505050506120df6120d98261202d565b85612011565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212f90830184611fe5565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526115b56020830184611fe5565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601c908201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000604082015260600190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b03808316818516808303821115612871576128716129b1565b01949350505050565b6000821982111561288d5761288d6129b1565b500190565b6000826128a1576128a16129c7565b500490565b60008160001904831182151516156128c0576128c06129b1565b500290565b60006001600160801b03838116908316818110156128e5576128e56129b1565b039392505050565b6000828210156128ff576128ff6129b1565b500390565b60005b8381101561291f578181015183820152602001612907565b83811115610fc15750506000910152565b60008161293f5761293f6129b1565b506000190190565b60028104600182168061295b57607f821691505b6020821081141561297c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612996576129966129b1565b5060010190565b6000826129ac576129ac6129c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111d057600080fd5b80151581146111d057600080fd5b6001600160e01b0319811681146111d057600080fdfea264697066735822122071faa651420eff288345d35a6e8ae3f5df69b62364ae65e71f6fc336e7d6f25864736f6c63430008000033697066733a2f2f516d657a7a504855644a565454546f52365633704e653355746d473354314b734a38474548324a61624a5356524e

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610590578063d7224ba0146105a5578063e43082f7146105ba578063e985e9c5146105da578063f2fde38b146105fa57610204565b8063a22cb4651461051b578063b88d4fde1461053b578063c6a91b421461055b578063c87b56dd1461057057610204565b80637c928fe9116100e75780637c928fe9146104a95780638da5cb5b146104c957806395d89b41146104de578063982d669e146104f3578063a0712d681461050857610204565b80636352211e1461043f57806370a082311461045f578063714c53981461047f578063715018a61461049457610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b146103aa57806342842e0e146103bf57806349df728c146103df5780634f6ccce7146103ff57806355f804b31461041f57610204565b806323b872dd1461031c57806328cad13d1461033c5780632a55205a1461035c5780632f745c591461038a57610204565b8063095ea7b3116101d7578063095ea7b3146102b05780630a00ae83146102d257806318160ddd146102f25780631e84c4131461030757610204565b806301ffc9a71461020957806306fdde031461023f57806307e89ec014610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611efa565b61061a565b6040516102369190612152565b60405180910390f35b34801561024b57600080fd5b50610254610647565b604051610236919061215d565b34801561026d57600080fd5b506102766106d9565b604051610236919061283a565b34801561028f57600080fd5b506102a361029e366004611f94565b6106e4565b60405161023691906120e8565b3480156102bc57600080fd5b506102d06102cb366004611e97565b610730565b005b3480156102de57600080fd5b506102d06102ed366004611f94565b6107c9565b3480156102fe57600080fd5b5061027661080d565b34801561031357600080fd5b50610229610813565b34801561032857600080fd5b506102d0610337366004611dad565b61081c565b34801561034857600080fd5b506102d0610357366004611ec2565b610827565b34801561036857600080fd5b5061037c610377366004611fc4565b610879565b604051610236929190612139565b34801561039657600080fd5b506102766103a5366004611e97565b6108c2565b3480156103b657600080fd5b506102d06109be565b3480156103cb57600080fd5b506102d06103da366004611dad565b610a30565b3480156103eb57600080fd5b506102d06103fa366004611d59565b610a4b565b34801561040b57600080fd5b5061027661041a366004611f94565b610b8c565b34801561042b57600080fd5b506102d061043a366004611f4e565b610bb8565b34801561044b57600080fd5b506102a361045a366004611f94565b610c0a565b34801561046b57600080fd5b5061027661047a366004611d59565b610c1c565b34801561048b57600080fd5b50610254610c69565b3480156104a057600080fd5b506102d0610c78565b3480156104b557600080fd5b506102d06104c4366004611f94565b610cc3565b3480156104d557600080fd5b506102a3610da1565b3480156104ea57600080fd5b50610254610db0565b3480156104ff57600080fd5b50610276610dbf565b6102d0610516366004611f94565b610dc5565b34801561052757600080fd5b506102d0610536366004611e6a565b610ec0565b34801561054757600080fd5b506102d0610556366004611ded565b610f8e565b34801561056757600080fd5b50610276610fc7565b34801561057c57600080fd5b5061025461058b366004611f94565b610fcc565b34801561059c57600080fd5b50610276611025565b3480156105b157600080fd5b5061027661102b565b3480156105c657600080fd5b506102d06105d5366004611ec2565b611031565b3480156105e657600080fd5b506102296105f5366004611d75565b61108e565b34801561060657600080fd5b506102d0610615366004611d59565b611162565b60006001600160e01b0319821663152a902d60e11b148061063f575061063f826111d3565b90505b919050565b60606001805461065690612947565b80601f016020809104026020016040519081016040528092919081815260200182805461068290612947565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b666a94d74f43000081565b60006106ef8261122e565b6107145760405162461bcd60e51b815260040161070b906127ab565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073b82610c0a565b9050806001600160a01b0316836001600160a01b0316141561076f5760405162461bcd60e51b815260040161070b90612525565b806001600160a01b0316610781611235565b6001600160a01b0316148061079d575061079d816105f5611235565b6107b95760405162461bcd60e51b815260040161070b90612379565b6107c4838383611239565b505050565b6107d1611235565b6001600160a01b03166107e2610da1565b6001600160a01b0316146108085760405162461bcd60e51b815260040161070b90612467565b600e55565b60005490565b600f5460ff1681565b6107c4838383611295565b61082f611235565b6001600160a01b0316610840610da1565b6001600160a01b0316146108665760405162461bcd60e51b815260040161070b90612467565b600f805460ff1916911515919091179055565b6000806108858461122e565b6108a15760405162461bcd60e51b815260040161070b9061234e565b306108b76108b08560056115a9565b60646115bc565b915091509250929050565b60006108cd83610c1c565b82106108eb5760405162461bcd60e51b815260040161070b90612170565b60006108f561080d565b905060008060005b8381101561099f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561095057805192505b876001600160a01b0316836001600160a01b0316141561098c578684141561097e575093506109b892505050565b8361098881612982565b9450505b508061099781612982565b9150506108fd565b5060405162461bcd60e51b815260040161070b906126a0565b92915050565b6109c6611235565b6001600160a01b03166109d7610da1565b6001600160a01b0316146109fd5760405162461bcd60e51b815260040161070b90612467565b6040514790339082156108fc029083906000818181858888f19350505050158015610a2c573d6000803e3d6000fd5b5050565b6107c483838360405180602001604052806000815250610f8e565b610a53611235565b6001600160a01b0316610a64610da1565b6001600160a01b031614610a8a5760405162461bcd60e51b815260040161070b90612467565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610ab99030906004016120e8565b60206040518083038186803b158015610ad157600080fd5b505afa158015610ae5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b099190611fac565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610b3a9033908590600401612139565b602060405180830381600087803b158015610b5457600080fd5b505af1158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c49190611ede565b6000610b9661080d565b8210610bb45760405162461bcd60e51b815260040161070b90612242565b5090565b610bc0611235565b6001600160a01b0316610bd1610da1565b6001600160a01b031614610bf75760405162461bcd60e51b815260040161070b90612467565b8051610a2c90600b906020840190611c3d565b6000610c15826115c8565b5192915050565b60006001600160a01b038216610c445760405162461bcd60e51b815260040161070b906123d6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461065690612947565b610c80611235565b6001600160a01b0316610c91610da1565b6001600160a01b031614610cb75760405162461bcd60e51b815260040161070b90612467565b610cc160006116db565b565b60026009541415610ce65760405162461bcd60e51b815260040161070b906126ee565b6002600955600f5460ff16610d0d5760405162461bcd60e51b815260040161070b90612774565b80600d5481610d1a61080d565b610d24919061287a565b1115610d425760405162461bcd60e51b815260040161070b90612285565b816005811115610d645760405162461bcd60e51b815260040161070b9061230c565b600e54610d6f61080d565b1115610d8d5760405162461bcd60e51b815260040161070b90612632565b610d97338461172d565b5050600160095550565b6008546001600160a01b031690565b60606002805461065690612947565b600e5481565b60026009541415610de85760405162461bcd60e51b815260040161070b906126ee565b6002600955600e54666a94d74f430000908290610e0361080d565b1115610e315734610e1482846128a6565b14610e315760405162461bcd60e51b815260040161070b90612669565b600f5460ff16610e535760405162461bcd60e51b815260040161070b90612774565b82600d5481610e6061080d565b610e6a919061287a565b1115610e885760405162461bcd60e51b815260040161070b90612285565b836005811115610eaa5760405162461bcd60e51b815260040161070b9061230c565b610eb4338661172d565b50506001600955505050565b610ec8611235565b6001600160a01b0316826001600160a01b03161415610ef95760405162461bcd60e51b815260040161070b9061249c565b8060066000610f06611235565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f4a611235565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f829190612152565b60405180910390a35050565b610f99848484611295565b610fa584848484611747565b610fc15760405162461bcd60e51b815260040161070b90612567565b50505050565b600581565b6060610fd78261122e565b610ff35760405162461bcd60e51b815260040161070b9061234e565b600b610ffe83611862565b60405160200161100f92919061203a565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611039611235565b6001600160a01b031661104a610da1565b6001600160a01b0316146110705760405162461bcd60e51b815260040161070b90612467565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff1680156111415750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b81526004016110e691906120e8565b60206040518083038186803b1580156110fe57600080fd5b505afa158015611112573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111369190611f32565b6001600160a01b0316145b156111505760019150506109b8565b61115a848461197d565b949350505050565b61116a611235565b6001600160a01b031661117b610da1565b6001600160a01b0316146111a15760405162461bcd60e51b815260040161070b90612467565b6001600160a01b0381166111c75760405162461bcd60e51b815260040161070b906121b2565b6111d0816116db565b50565b60006001600160e01b031982166380ac58cd60e01b148061120457506001600160e01b03198216635b5e139f60e01b145b8061121f57506001600160e01b0319821663780e9d6360e01b145b8061063f575061063f826119ab565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112a0826115c8565b9050600081600001516001600160a01b03166112ba611235565b6001600160a01b031614806112ef57506112d2611235565b6001600160a01b03166112e4846106e4565b6001600160a01b0316145b8061130357508151611303906105f5611235565b9050806113225760405162461bcd60e51b815260040161070b906124d3565b846001600160a01b031682600001516001600160a01b0316146113575760405162461bcd60e51b815260040161070b90612421565b6001600160a01b03841661137d5760405162461bcd60e51b815260040161070b906122c7565b61138a8585856001610fc1565b61139a6000848460000151611239565b6001600160a01b03851660009081526004602052604081208054600192906113cc9084906001600160801b03166128c5565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114189185911661284f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556114ae84600161287a565b6000818152600360205260409020549091506001600160a01b0316611553576114d68161122e565b156115535760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115a18686866001610fc1565b505050505050565b60006115b582846128a6565b9392505050565b60006115b58284612892565b6115d0611cbd565b6115d98261122e565b6115f55760405162461bcd60e51b815260040161070b906121f8565b60007f00000000000000000000000000000000000000000000000000000000000000648310611656576116487f0000000000000000000000000000000000000000000000000000000000000064846128ed565b61165390600161287a565b90505b825b8181106116c2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116af579250610642915050565b50806116ba81612930565b915050611658565b5060405162461bcd60e51b815260040161070b90612725565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a2c8282604051806020016040528060008152506119c4565b600061175b846001600160a01b0316611c37565b1561185757836001600160a01b031663150b7a02611777611235565b8786866040518563ffffffff1660e01b815260040161179994939291906120fc565b602060405180830381600087803b1580156117b357600080fd5b505af19250505080156117e3575060408051601f3d908101601f191682019092526117e091810190611f16565b60015b61183d573d808015611811576040519150601f19603f3d011682016040523d82523d6000602084013e611816565b606091505b5080516118355760405162461bcd60e51b815260040161070b90612567565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061115a565b506001949350505050565b60608161188757506040805180820190915260018152600360fc1b6020820152610642565b8160005b81156118b1578061189b81612982565b91506118aa9050600a83612892565b915061188b565b60008167ffffffffffffffff8111156118da57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611904576020820181803683370190505b5090505b841561115a576119196001836128ed565b9150611926600a8661299d565b61193190603061287a565b60f81b81838151811061195457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611976600a86612892565b9450611908565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166119ed5760405162461bcd60e51b815260040161070b906125f1565b6119f68161122e565b15611a135760405162461bcd60e51b815260040161070b906125ba565b7f0000000000000000000000000000000000000000000000000000000000000064831115611a535760405162461bcd60e51b815260040161070b906127f8565b611a606000858386610fc1565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611abc90879061284f565b6001600160801b03168152602001858360200151611ada919061284f565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611c255760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611be96000888488611747565b611c055760405162461bcd60e51b815260040161070b90612567565b81611c0f81612982565b9250508080611c1d90612982565b915050611b9c565b5060008181556115a190878588610fc1565b3b151590565b828054611c4990612947565b90600052602060002090601f016020900481019282611c6b5760008555611cb1565b82601f10611c8457805160ff1916838001178555611cb1565b82800160010185558215611cb1579182015b82811115611cb1578251825591602001919060010190611c96565b50610bb4929150611cd4565b604080518082019091526000808252602082015290565b5b80821115610bb45760008155600101611cd5565b600067ffffffffffffffff80841115611d0457611d046129dd565b604051601f8501601f191681016020018281118282101715611d2857611d286129dd565b604052848152915081838501861015611d4057600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611d6a578081fd5b81356115b5816129f3565b60008060408385031215611d87578081fd5b8235611d92816129f3565b91506020830135611da2816129f3565b809150509250929050565b600080600060608486031215611dc1578081fd5b8335611dcc816129f3565b92506020840135611ddc816129f3565b929592945050506040919091013590565b60008060008060808587031215611e02578081fd5b8435611e0d816129f3565b93506020850135611e1d816129f3565b925060408501359150606085013567ffffffffffffffff811115611e3f578182fd5b8501601f81018713611e4f578182fd5b611e5e87823560208401611ce9565b91505092959194509250565b60008060408385031215611e7c578182fd5b8235611e87816129f3565b91506020830135611da281612a08565b60008060408385031215611ea9578182fd5b8235611eb4816129f3565b946020939093013593505050565b600060208284031215611ed3578081fd5b81356115b581612a08565b600060208284031215611eef578081fd5b81516115b581612a08565b600060208284031215611f0b578081fd5b81356115b581612a16565b600060208284031215611f27578081fd5b81516115b581612a16565b600060208284031215611f43578081fd5b81516115b5816129f3565b600060208284031215611f5f578081fd5b813567ffffffffffffffff811115611f75578182fd5b8201601f81018413611f85578182fd5b61115a84823560208401611ce9565b600060208284031215611fa5578081fd5b5035919050565b600060208284031215611fbd578081fd5b5051919050565b60008060408385031215611fd6578182fd5b50508035926020909101359150565b60008151808452611ffd816020860160208601612904565b601f01601f19169290920160200192915050565b60008151612023818560208601612904565b9290920192915050565b602f60f81b815260010190565b825460009081906002810460018083168061205657607f831692505b602080841082141561207657634e487b7160e01b87526022600452602487fd5b81801561208a576001811461209b576120c7565b60ff198616895284890196506120c7565b6120a48b612843565b885b868110156120bf5781548b8201529085019083016120a6565b505084890196505b5050505050506120df6120d98261202d565b85612011565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212f90830184611fe5565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526115b56020830184611fe5565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601c908201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000604082015260600190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b03808316818516808303821115612871576128716129b1565b01949350505050565b6000821982111561288d5761288d6129b1565b500190565b6000826128a1576128a16129c7565b500490565b60008160001904831182151516156128c0576128c06129b1565b500290565b60006001600160801b03838116908316818110156128e5576128e56129b1565b039392505050565b6000828210156128ff576128ff6129b1565b500390565b60005b8381101561291f578181015183820152602001612907565b83811115610fc15750506000910152565b60008161293f5761293f6129b1565b506000190190565b60028104600182168061295b57607f821691505b6020821081141561297c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612996576129966129b1565b5060010190565b6000826129ac576129ac6129c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111d057600080fd5b80151581146111d057600080fd5b6001600160e01b0319811681146111d057600080fdfea264697066735822122071faa651420eff288345d35a6e8ae3f5df69b62364ae65e71f6fc336e7d6f25864736f6c63430008000033

Deployed Bytecode Sourcemap

55078:5972:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59250:292;;;;;;;;;;-1:-1:-1;59250:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44269:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55593:54::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45794:204::-;;;;;;;;;;-1:-1:-1;45794:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45357:379::-;;;;;;;;;;-1:-1:-1;45357:379:0;;;;;:::i;:::-;;:::i;:::-;;58518:139;;;;;;;;;;-1:-1:-1;58518:139:0;;;;;:::i;:::-;;:::i;41104:94::-;;;;;;;;;;;;;:::i;55696:37::-;;;;;;;;;;;;;:::i;46644:142::-;;;;;;;;;;-1:-1:-1;46644:142:0;;;;;:::i;:::-;;:::i;58352:158::-;;;;;;;;;;-1:-1:-1;58352:158:0;;;;;:::i;:::-;;:::i;60729:318::-;;;;;;;;;;-1:-1:-1;60729:318:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;41735:744::-;;;;;;;;;;-1:-1:-1;41735:744:0;;;;;:::i;:::-;;:::i;58667:143::-;;;;;;;;;;;;;:::i;46849:157::-;;;;;;;;;;-1:-1:-1;46849:157:0;;;;;:::i;:::-;;:::i;58818:168::-;;;;;;;;;;-1:-1:-1;58818:168:0;;;;;:::i;:::-;;:::i;41267:177::-;;;;;;;;;;-1:-1:-1;41267:177:0;;;;;:::i;:::-;;:::i;57954:100::-;;;;;;;;;;-1:-1:-1;57954:100:0;;;;;:::i;:::-;;:::i;44092:118::-;;;;;;;;;;-1:-1:-1;44092:118:0;;;;;:::i;:::-;;:::i;42969:211::-;;;;;;;;;;-1:-1:-1;42969:211:0;;;;;:::i;:::-;;:::i;57790:93::-;;;;;;;;;;;;;:::i;19127:103::-;;;;;;;;;;;;;:::i;57438:275::-;;;;;;;;;;-1:-1:-1;57438:275:0;;;;;:::i;:::-;;:::i;18476:87::-;;;;;;;;;;;;;:::i;44424:98::-;;;;;;;;;;;;;:::i;55654:35::-;;;;;;;;;;;;;:::i;56987:321::-;;;;;;:::i;:::-;;:::i;46062:274::-;;;;;;;;;;-1:-1:-1;46062:274:0;;;;;:::i;:::-;;:::i;47069:311::-;;;;;;;;;;-1:-1:-1;47069:311:0;;;;;:::i;:::-;;:::i;55502:44::-;;;;;;;;;;;;;:::i;60367:296::-;;;;;;;;;;-1:-1:-1;60367:296:0;;;;;:::i;:::-;;:::i;55553:31::-;;;;;;;;;;;;;:::i;51484:43::-;;;;;;;;;;;;;:::i;58178:166::-;;;;;;;;;;-1:-1:-1;58178:166:0;;;;;:::i;:::-;;:::i;59679:617::-;;;;;;;;;;-1:-1:-1;59679:617:0;;;;;:::i;:::-;;:::i;19385:201::-;;;;;;;;;;-1:-1:-1;19385:201:0;;;;;:::i;:::-;;:::i;59250:292::-;59398:4;-1:-1:-1;;;;;;59440:41:0;;-1:-1:-1;;;59440:41:0;;:94;;;59498:36;59522:11;59498:23;:36::i;:::-;59420:114;;59250:292;;;;:::o;44269:94::-;44323:13;44352:5;44345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44269:94;:::o;55593:54::-;55637:10;55593:54;:::o;45794:204::-;45862:7;45886:16;45894:7;45886;:16::i;:::-;45878:74;;;;-1:-1:-1;;;45878:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;45968:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45968:24:0;;45794:204::o;45357:379::-;45426:13;45442:24;45458:7;45442:15;:24::i;:::-;45426:40;;45487:5;-1:-1:-1;;;;;45481:11:0;:2;-1:-1:-1;;;;;45481:11:0;;;45473:58;;;;-1:-1:-1;;;45473:58:0;;;;;;;:::i;:::-;45572:5;-1:-1:-1;;;;;45556:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;45556:21:0;;:62;;;;45581:37;45598:5;45605:12;:10;:12::i;45581:37::-;45540:153;;;;-1:-1:-1;;;45540:153:0;;;;;;;:::i;:::-;45702:28;45711:2;45715:7;45724:5;45702:8;:28::i;:::-;45357:379;;;:::o;58518:139::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;58619:14:::1;:30:::0;58518:139::o;41104:94::-;41157:7;41180:12;41104:94;:::o;55696:37::-;;;;;;:::o;46644:142::-;46752:28;46762:4;46768:2;46772:7;46752:9;:28::i;58352:158::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;58462:18:::1;:40:::0;;-1:-1:-1;;58462:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58352:158::o;60729:318::-;60854:16;60872:21;60919:16;60927:7;60919;:16::i;:::-;60911:46;;;;-1:-1:-1;;;60911:46:0;;;;;;;:::i;:::-;60986:4;60993:45;61006:26;61019:9;61030:1;61006:12;:26::i;:::-;61034:3;60993:12;:45::i;:::-;60970:69;;;;60729:318;;;;;:::o;41735:744::-;41844:7;41879:16;41889:5;41879:9;:16::i;:::-;41871:5;:24;41863:71;;;;-1:-1:-1;;;41863:71:0;;;;;;;:::i;:::-;41941:22;41966:13;:11;:13::i;:::-;41941:38;;41986:19;42016:25;42066:9;42061:350;42085:14;42081:1;:18;42061:350;;;42115:31;42149:14;;;:11;:14;;;;;;;;;42115:48;;;;;;;;;-1:-1:-1;;;;;42115:48:0;;;;;-1:-1:-1;;;42115:48:0;;;;;;;;;;;;42176:28;42172:89;;42237:14;;;-1:-1:-1;42172:89:0;42294:5;-1:-1:-1;;;;;42273:26:0;:17;-1:-1:-1;;;;;42273:26:0;;42269:135;;;42331:5;42316:11;:20;42312:59;;;-1:-1:-1;42358:1:0;-1:-1:-1;42351:8:0;;-1:-1:-1;;;42351:8:0;42312:59;42381:13;;;;:::i;:::-;;;;42269:135;-1:-1:-1;42101:3:0;;;;:::i;:::-;;;;42061:350;;;;42417:56;;-1:-1:-1;;;42417:56:0;;;;;;;:::i;41735:744::-;;;;;:::o;58667:143::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;58765:37:::1;::::0;58733:21:::1;::::0;58773:10:::1;::::0;58765:37;::::1;;;::::0;58733:21;;58715:15:::1;58765:37:::0;58715:15;58765:37;58733:21;58773:10;58765:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;18767:1;58667:143::o:0;46849:157::-;46961:39;46978:4;46984:2;46988:7;46961:39;;;;;;;;;;;;:16;:39::i;58818:168::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;58902:30:::1;::::0;-1:-1:-1;;;58902:30:0;;58884:15:::1;::::0;-1:-1:-1;;;;;58902:15:0;::::1;::::0;::::1;::::0;:30:::1;::::0;58926:4:::1;::::0;58902:30:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58943:35;::::0;-1:-1:-1;;;58943:35:0;;58884:48;;-1:-1:-1;;;;;;58943:14:0;::::1;::::0;::::1;::::0;:35:::1;::::0;58958:10:::1;::::0;58884:48;;58943:35:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41267:177::-:0;41334:7;41366:13;:11;:13::i;:::-;41358:5;:21;41350:69;;;;-1:-1:-1;;;41350:69:0;;;;;;;:::i;:::-;-1:-1:-1;41433:5:0;41267:177::o;57954:100::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;58028:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;44092:118::-:0;44156:7;44179:20;44191:7;44179:11;:20::i;:::-;:25;;44092:118;-1:-1:-1;;44092:118:0:o;42969:211::-;43033:7;-1:-1:-1;;;;;43057:19:0;;43049:75;;;;-1:-1:-1;;;43049:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;43146:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43146:27:0;;42969:211::o;57790:93::-;57835:13;57868:7;57861:14;;;;;:::i;19127:103::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;19192:30:::1;19219:1;19192:18;:30::i;:::-;19127:103::o:0;57438:275::-;10405:1;11003:7;;:19;;10995:63;;;;-1:-1:-1;;;10995:63:0;;;;;;;:::i;:::-;10405:1;11136:7;:18;55863::::1;::::0;::::1;;55855:54;;;;-1:-1:-1::0;;;55855:54:0::1;;;;;;;:::i;:::-;57567:14:::2;56274:9;;56239:14;56223:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56201:144;;;;-1:-1:-1::0;;;56201:144:0::2;;;;;;;:::i;:::-;57606:14:::3;55545:1;56021:14;:34;;55999:118;;;;-1:-1:-1::0;;;55999:118:0::3;;;;;;;:::i;:::-;56470:14:::4;;56436:13;:11;:13::i;:::-;:48;;56414:126;;;;-1:-1:-1::0;;;56414:126:0::4;;;;;;;:::i;:::-;57668:37:::5;57678:10;57690:14;57668:9;:37::i;:::-;-1:-1:-1::0;;10361:1:0;11315:7;:22;-1:-1:-1;57438:275:0:o;18476:87::-;18549:6;;-1:-1:-1;;;;;18549:6:0;18476:87;:::o;44424:98::-;44480:13;44509:7;44502:14;;;;;:::i;55654:35::-;;;;:::o;56987:321::-;10405:1;11003:7;;:19;;10995:63;;;;-1:-1:-1;;;10995:63:0;;;;;;;:::i;:::-;10405:1;11136:7;:18;56665:14:::1;::::0;55637:10:::1;::::0;57127:14;;56651:13:::1;:11;:13::i;:::-;:28;56648:166;;;56741:9;56714:22;56722:14:::0;56714:5;:22:::1;:::i;:::-;56713:37;56691:111;;;;-1:-1:-1::0;;;56691:111:0::1;;;;;;;:::i;:::-;55863:18:::2;::::0;::::2;;55855:54;;;;-1:-1:-1::0;;;55855:54:0::2;;;;;;;:::i;:::-;57190:14:::3;56274:9;;56239:14;56223:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56201:144;;;;-1:-1:-1::0;;;56201:144:0::3;;;;;;;:::i;:::-;57229:14:::4;55545:1;56021:14;:34;;55999:118;;;;-1:-1:-1::0;;;55999:118:0::4;;;;;;;:::i;:::-;57263:37:::5;57273:10;57285:14;57263:9;:37::i;:::-;-1:-1:-1::0;;10361:1:0;11315:7;:22;-1:-1:-1;;;56987:321:0:o;46062:274::-;46165:12;:10;:12::i;:::-;-1:-1:-1;;;;;46153:24:0;:8;-1:-1:-1;;;;;46153:24:0;;;46145:63;;;;-1:-1:-1;;;46145:63:0;;;;;;;:::i;:::-;46262:8;46217:18;:32;46236:12;:10;:12::i;:::-;-1:-1:-1;;;;;46217:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;46217:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;46217:53:0;;;;;;;;;;;46297:12;:10;:12::i;:::-;-1:-1:-1;;;;;46282:48:0;;46321:8;46282:48;;;;;;:::i;:::-;;;;;;;;46062:274;;:::o;47069:311::-;47206:28;47216:4;47222:2;47226:7;47206:9;:28::i;:::-;47257:48;47280:4;47286:2;47290:7;47299:5;47257:22;:48::i;:::-;47241:133;;;;-1:-1:-1;;;47241:133:0;;;;;;;:::i;:::-;47069:311;;;;:::o;55502:44::-;55545:1;55502:44;:::o;60367:296::-;60485:13;60524:16;60532:7;60524;:16::i;:::-;60516:46;;;;-1:-1:-1;;;60516:46:0;;;;;;;:::i;:::-;60619:7;60633:20;60634:7;60633:18;:20::i;:::-;60602:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60575:80;;60367:296;;;:::o;55553:31::-;;;;:::o;51484:43::-;;;;:::o;58178:166::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;58292:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;58292:44:0::1;-1:-1:-1::0;;;;58292:44:0;;::::1;::::0;;;::::1;::::0;;58178:166::o;59679:617::-;60027:27;;59804:4;;-1:-1:-1;;;;;60027:27:0;;;-1:-1:-1;;;60094:20:0;;;;:86;;;;;60172:8;-1:-1:-1;;;;;60131:49:0;60139:13;-1:-1:-1;;;;;60139:21:0;;60161:5;60139:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60131:49:0;;60094:86;60076:154;;;60214:4;60207:11;;;;;60076:154;60249:39;60272:5;60279:8;60249:22;:39::i;:::-;60242:46;59679:617;-1:-1:-1;;;;59679:617:0:o;19385:201::-;18707:12;:10;:12::i;:::-;-1:-1:-1;;;;;18696:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18696:23:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19474:22:0;::::1;19466:73;;;;-1:-1:-1::0;;;19466:73:0::1;;;;;;;:::i;:::-;19550:28;19569:8;19550:18;:28::i;:::-;19385:201:::0;:::o;42543:370::-;42670:4;-1:-1:-1;;;;;;42700:40:0;;-1:-1:-1;;;42700:40:0;;:99;;-1:-1:-1;;;;;;;42751:48:0;;-1:-1:-1;;;42751:48:0;42700:99;:160;;;-1:-1:-1;;;;;;;42810:50:0;;-1:-1:-1;;;42810:50:0;42700:160;:207;;;;42871:36;42895:11;42871:23;:36::i;47619:105::-;47676:4;47706:12;-1:-1:-1;47696:22:0;47619:105::o;17200:98::-;17280:10;17200:98;:::o;51306:172::-;51403:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51403:29:0;-1:-1:-1;;;;;51403:29:0;;;;;;;;;51444:28;;51403:24;;51444:28;;;;;;;51306:172;;;:::o;49671:1529::-;49768:35;49806:20;49818:7;49806:11;:20::i;:::-;49768:58;;49835:22;49877:13;:18;;;-1:-1:-1;;;;;49861:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;49861:34:0;;:81;;;;49930:12;:10;:12::i;:::-;-1:-1:-1;;;;;49906:36:0;:20;49918:7;49906:11;:20::i;:::-;-1:-1:-1;;;;;49906:36:0;;49861:81;:142;;;-1:-1:-1;49970:18:0;;49953:50;;49990:12;:10;:12::i;49953:50::-;49835:169;;50029:17;50013:101;;;;-1:-1:-1;;;50013:101:0;;;;;;;:::i;:::-;50161:4;-1:-1:-1;;;;;50139:26:0;:13;:18;;;-1:-1:-1;;;;;50139:26:0;;50123:98;;;;-1:-1:-1;;;50123:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50236:16:0;;50228:66;;;;-1:-1:-1;;;50228:66:0;;;;;;;:::i;:::-;50303:43;50325:4;50331:2;50335:7;50344:1;50303:21;:43::i;:::-;50403:49;50420:1;50424:7;50433:13;:18;;;50403:8;:49::i;:::-;-1:-1:-1;;;;;50461:18:0;;;;;;:12;:18;;;;;:31;;50491:1;;50461:18;:31;;50491:1;;-1:-1:-1;;;;;50461:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;50461:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50499:16:0;;-1:-1:-1;50499:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;50499:16:0;;:29;;-1:-1:-1;;50499:29:0;;:::i;:::-;;;-1:-1:-1;;;;;50499:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50558:43:0;;;;;;;;-1:-1:-1;;;;;50558:43:0;;;;;;50584:15;50558:43;;;;;;;;;-1:-1:-1;50535:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;50535:66:0;-1:-1:-1;;;;50535:66:0;;;;-1:-1:-1;;;;;;50535:66:0;;;;;;;;50851:11;50547:7;-1:-1:-1;50851:11:0;:::i;:::-;50914:1;50873:24;;;:11;:24;;;;;:29;50829:33;;-1:-1:-1;;;;;;50873:29:0;50869:236;;50931:20;50939:11;50931:7;:20::i;:::-;50927:171;;;50991:97;;;;;;;;51018:18;;-1:-1:-1;;;;;50991:97:0;;;;;;51049:28;;;;50991:97;;;;;;;;;;-1:-1:-1;50964:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;50964:124:0;;;;;;;;;-1:-1:-1;;;;50964:124:0;-1:-1:-1;;;50964:124:0;;;;;;;;;;;;;;50927:171;51137:7;51133:2;-1:-1:-1;;;;;51118:27:0;51127:4;-1:-1:-1;;;;;51118:27:0;;;;;;;;;;;51152:42;51173:4;51179:2;51183:7;51192:1;51152:20;:42::i;:::-;49671:1529;;;;;;:::o;3701:98::-;3759:7;3786:5;3790:1;3786;:5;:::i;:::-;3779:12;3701:98;-1:-1:-1;;;3701:98:0:o;4100:::-;4158:7;4185:5;4189:1;4185;:5;:::i;43432:606::-;43508:21;;:::i;:::-;43549:16;43557:7;43549;:16::i;:::-;43541:71;;;;-1:-1:-1;;;43541:71:0;;;;;;;:::i;:::-;43621:26;43669:12;43658:7;:23;43654:93;;43713:22;43723:12;43713:7;:22;:::i;:::-;:26;;43738:1;43713:26;:::i;:::-;43692:47;;43654:93;43775:7;43755:212;43792:18;43784:4;:26;43755:212;;43829:31;43863:17;;;:11;:17;;;;;;;;;43829:51;;;;;;;;;-1:-1:-1;;;;;43829:51:0;;;;;-1:-1:-1;;;43829:51:0;;;;;;;;;;;;43893:28;43889:71;;43941:9;-1:-1:-1;43934:16:0;;-1:-1:-1;;43934:16:0;43889:71;-1:-1:-1;43812:6:0;;;;:::i;:::-;;;;43755:212;;;;43975:57;;-1:-1:-1;;;43975:57:0;;;;;;;:::i;19746:191::-;19839:6;;;-1:-1:-1;;;;;19856:17:0;;;-1:-1:-1;;;;;;19856:17:0;;;;;;;19889:40;;19839:6;;;19856:17;19839:6;;19889:40;;19820:16;;19889:40;19746:191;;:::o;47730:98::-;47795:27;47805:2;47809:8;47795:27;;;;;;;;;;;;:9;:27::i;53021:690::-;53158:4;53175:15;:2;-1:-1:-1;;;;;53175:13:0;;:15::i;:::-;53171:535;;;53230:2;-1:-1:-1;;;;;53214:36:0;;53251:12;:10;:12::i;:::-;53265:4;53271:7;53280:5;53214:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53214:72:0;;;;;;;;-1:-1:-1;;53214:72:0;;;;;;;;;;;;:::i;:::-;;;53201:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53445:13:0;;53441:215;;53478:61;;-1:-1:-1;;;53478:61:0;;;;;;;:::i;53441:215::-;53624:6;53618:13;53609:6;53605:2;53601:15;53594:38;53201:464;-1:-1:-1;;;;;;53336:55:0;-1:-1:-1;;;53336:55:0;;-1:-1:-1;53329:62:0;;53171:535;-1:-1:-1;53694:4:0;53021:690;;;;;;:::o;14762:723::-;14818:13;15039:10;15035:53;;-1:-1:-1;15066:10:0;;;;;;;;;;;;-1:-1:-1;;;15066:10:0;;;;;;15035:53;15113:5;15098:12;15154:78;15161:9;;15154:78;;15187:8;;;;:::i;:::-;;-1:-1:-1;15210:10:0;;-1:-1:-1;15218:2:0;15210:10;;:::i;:::-;;;15154:78;;;15242:19;15274:6;15264:17;;;;;;-1:-1:-1;;;15264:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15264:17:0;;15242:39;;15292:154;15299:10;;15292:154;;15326:11;15336:1;15326:11;;:::i;:::-;;-1:-1:-1;15395:10:0;15403:2;15395:5;:10;:::i;:::-;15382:24;;:2;:24;:::i;:::-;15369:39;;15352:6;15359;15352:14;;;;;;-1:-1:-1;;;15352:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;15352:56:0;;;;;;;;-1:-1:-1;15423:11:0;15432:2;15423:11;;:::i;:::-;;;15292:154;;46399:186;-1:-1:-1;;;;;46544:25:0;;;46521:4;46544:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46399:186::o;31876:157::-;-1:-1:-1;;;;;;31985:40:0;;-1:-1:-1;;;31985:40:0;31876:157;;;:::o;48167:1272::-;48272:20;48295:12;-1:-1:-1;;;;;48322:16:0;;48314:62;;;;-1:-1:-1;;;48314:62:0;;;;;;;:::i;:::-;48513:21;48521:12;48513:7;:21::i;:::-;48512:22;48504:64;;;;-1:-1:-1;;;48504:64:0;;;;;;;:::i;:::-;48595:12;48583:8;:24;;48575:71;;;;-1:-1:-1;;;48575:71:0;;;;;;;:::i;:::-;48655:61;48685:1;48689:2;48693:12;48707:8;48655:21;:61::i;:::-;-1:-1:-1;;;;;48758:16:0;;48725:30;48758:16;;;:12;:16;;;;;;;;;48725:49;;;;;;;;;-1:-1:-1;;;;;48725:49:0;;;;;-1:-1:-1;;;48725:49:0;;;;;;;;;;;48800:119;;;;;;;;48820:19;;48725:49;;48800:119;;;48820:39;;48850:8;;48820:39;:::i;:::-;-1:-1:-1;;;;;48800:119:0;;;;;48903:8;48868:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;48800:119:0;;;;;;-1:-1:-1;;;;;48781:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;48781:138:0;;;;-1:-1:-1;;48781:138:0;;;;;;;;;;;;;;;;;48954:43;;;;;;;;;;;48980:15;48954:43;;;;;;;;48926:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;48926:71:0;-1:-1:-1;;;;48926:71:0;;;;-1:-1:-1;;;;;;48926:71:0;;;;;;;;;;;;;;;48938:12;;49050:281;49074:8;49070:1;:12;49050:281;;;49103:38;;49128:12;;-1:-1:-1;;;;;49103:38:0;;;49120:1;;49103:38;;49120:1;;49103:38;49168:59;49199:1;49203:2;49207:12;49221:5;49168:22;:59::i;:::-;49150:150;;;;-1:-1:-1;;;49150:150:0;;;;;;;:::i;:::-;49309:14;;;;:::i;:::-;;;;49084:3;;;;;:::i;:::-;;;;49050:281;;;-1:-1:-1;49339:12:0;:27;;;49373:60;;49406:2;49410:12;49424:8;49373:20;:60::i;20764:387::-;21087:20;21135:8;;;20764:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:396::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2939;2898;2939;:::i;3008:327::-;;;3137:2;3125:9;3116:7;3112:23;3108:32;3105:2;;;3158:6;3150;3143:22;3105:2;3202:9;3189:23;3221:33;3248:5;3221:33;:::i;:::-;3273:5;3325:2;3310:18;;;;3297:32;;-1:-1:-1;;;3095:240:1:o;3340:253::-;;3449:2;3437:9;3428:7;3424:23;3420:32;3417:2;;;3470:6;3462;3455:22;3417:2;3514:9;3501:23;3533:30;3557:5;3533:30;:::i;3598:257::-;;3718:2;3706:9;3697:7;3693:23;3689:32;3686:2;;;3739:6;3731;3724:22;3686:2;3776:9;3770:16;3795:30;3819:5;3795:30;:::i;3860:257::-;;3971:2;3959:9;3950:7;3946:23;3942:32;3939:2;;;3992:6;3984;3977:22;3939:2;4036:9;4023:23;4055:32;4081:5;4055:32;:::i;4122:261::-;;4244:2;4232:9;4223:7;4219:23;4215:32;4212:2;;;4265:6;4257;4250:22;4212:2;4302:9;4296:16;4321:32;4347:5;4321:32;:::i;4666:292::-;;4818:2;4806:9;4797:7;4793:23;4789:32;4786:2;;;4839:6;4831;4824:22;4786:2;4876:9;4870:16;4895:33;4922:5;4895:33;:::i;4963:482::-;;5085:2;5073:9;5064:7;5060:23;5056:32;5053:2;;;5106:6;5098;5091:22;5053:2;5151:9;5138:23;5184:18;5176:6;5173:30;5170:2;;;5221:6;5213;5206:22;5170:2;5249:22;;5302:4;5294:13;;5290:27;-1:-1:-1;5280:2:1;;5336:6;5328;5321:22;5280:2;5364:75;5431:7;5426:2;5413:16;5408:2;5404;5400:11;5364:75;:::i;5450:190::-;;5562:2;5550:9;5541:7;5537:23;5533:32;5530:2;;;5583:6;5575;5568:22;5530:2;-1:-1:-1;5611:23:1;;5520:120;-1:-1:-1;5520:120:1:o;5645:194::-;;5768:2;5756:9;5747:7;5743:23;5739:32;5736:2;;;5789:6;5781;5774:22;5736:2;-1:-1:-1;5817:16:1;;5726:113;-1:-1:-1;5726:113:1:o;5844:258::-;;;5973:2;5961:9;5952:7;5948:23;5944:32;5941:2;;;5994:6;5986;5979:22;5941:2;-1:-1:-1;;6022:23:1;;;6092:2;6077:18;;;6064:32;;-1:-1:-1;5931:171:1:o;6107:259::-;;6188:5;6182:12;6215:6;6210:3;6203:19;6231:63;6287:6;6280:4;6275:3;6271:14;6264:4;6257:5;6253:16;6231:63;:::i;:::-;6348:2;6327:15;-1:-1:-1;;6323:29:1;6314:39;;;;6355:4;6310:50;;6158:208;-1:-1:-1;;6158:208:1:o;6371:187::-;;6453:5;6447:12;6468:52;6513:6;6508:3;6501:4;6494:5;6490:16;6468:52;:::i;:::-;6536:16;;;;;6423:135;-1:-1:-1;;6423:135:1:o;6563:116::-;-1:-1:-1;;;6630:16:1;;6671:1;6662:11;;6620:59::o;6684:1315::-;7019:13;;6684:1315;;;;7092:1;7077:17;;7113:1;7149:18;;;;7176:2;;7230:4;7222:6;7218:17;7208:27;;7176:2;7256;7304;7296:6;7293:14;7273:18;7270:38;7267:2;;;-1:-1:-1;;;7331:33:1;;7387:4;7384:1;7377:15;7417:4;7338:3;7405:17;7267:2;7448:18;7475:104;;;;7593:1;7588:324;;;;7441:471;;7475:104;-1:-1:-1;;7508:24:1;;7496:37;;7553:16;;;;-1:-1:-1;7475:104:1;;7588:324;7624:39;7656:6;7624:39;:::i;:::-;7685:3;7701:165;7715:6;7712:1;7709:13;7701:165;;;7793:14;;7780:11;;;7773:35;7836:16;;;;7730:10;;7701:165;;;7705:3;;7895:6;7890:3;7886:16;7879:23;;7441:471;;;;;;;7928:65;7956:36;7988:3;7956:36;:::i;:::-;7948:6;7928:65;:::i;:::-;7921:72;6969:1030;-1:-1:-1;;;;;6969:1030:1:o;8004:203::-;-1:-1:-1;;;;;8168:32:1;;;;8150:51;;8138:2;8123:18;;8105:102::o;8212:490::-;-1:-1:-1;;;;;8481:15:1;;;8463:34;;8533:15;;8528:2;8513:18;;8506:43;8580:2;8565:18;;8558:34;;;8628:3;8623:2;8608:18;;8601:31;;;8212:490;;8649:47;;8676:19;;8668:6;8649:47;:::i;:::-;8641:55;8415:287;-1:-1:-1;;;;;;8415:287:1:o;8707:274::-;-1:-1:-1;;;;;8899:32:1;;;;8881:51;;8963:2;8948:18;;8941:34;8869:2;8854:18;;8836:145::o;8986:187::-;9151:14;;9144:22;9126:41;;9114:2;9099:18;;9081:92::o;9178:221::-;;9327:2;9316:9;9309:21;9347:46;9389:2;9378:9;9374:18;9366:6;9347:46;:::i;9404:398::-;9606:2;9588:21;;;9645:2;9625:18;;;9618:30;9684:34;9679:2;9664:18;;9657:62;-1:-1:-1;;;9750:2:1;9735:18;;9728:32;9792:3;9777:19;;9578:224::o;9807:402::-;10009:2;9991:21;;;10048:2;10028:18;;;10021:30;10087:34;10082:2;10067:18;;10060:62;-1:-1:-1;;;10153:2:1;10138:18;;10131:36;10199:3;10184:19;;9981:228::o;10214:406::-;10416:2;10398:21;;;10455:2;10435:18;;;10428:30;10494:34;10489:2;10474:18;;10467:62;-1:-1:-1;;;10560:2:1;10545:18;;10538:40;10610:3;10595:19;;10388:232::o;10625:399::-;10827:2;10809:21;;;10866:2;10846:18;;;10839:30;10905:34;10900:2;10885:18;;10878:62;-1:-1:-1;;;10971:2:1;10956:18;;10949:33;11014:3;10999:19;;10799:225::o;11029:398::-;11231:2;11213:21;;;11270:2;11250:18;;;11243:30;11309:34;11304:2;11289:18;;11282:62;-1:-1:-1;;;11375:2:1;11360:18;;11353:32;11417:3;11402:19;;11203:224::o;11432:401::-;11634:2;11616:21;;;11673:2;11653:18;;;11646:30;11712:34;11707:2;11692:18;;11685:62;-1:-1:-1;;;11778:2:1;11763:18;;11756:35;11823:3;11808:19;;11606:227::o;11838:398::-;12040:2;12022:21;;;12079:2;12059:18;;;12052:30;12118:34;12113:2;12098:18;;12091:62;-1:-1:-1;;;12184:2:1;12169:18;;12162:32;12226:3;12211:19;;12012:224::o;12241:341::-;12443:2;12425:21;;;12482:2;12462:18;;;12455:30;-1:-1:-1;;;12516:2:1;12501:18;;12494:47;12573:2;12558:18;;12415:167::o;12587:421::-;12789:2;12771:21;;;12828:2;12808:18;;;12801:30;12867:34;12862:2;12847:18;;12840:62;12938:27;12933:2;12918:18;;12911:55;12998:3;12983:19;;12761:247::o;13013:407::-;13215:2;13197:21;;;13254:2;13234:18;;;13227:30;13293:34;13288:2;13273:18;;13266:62;-1:-1:-1;;;13359:2:1;13344:18;;13337:41;13410:3;13395:19;;13187:233::o;13425:402::-;13627:2;13609:21;;;13666:2;13646:18;;;13639:30;13705:34;13700:2;13685:18;;13678:62;-1:-1:-1;;;13771:2:1;13756:18;;13749:36;13817:3;13802:19;;13599:228::o;13832:356::-;14034:2;14016:21;;;14053:18;;;14046:30;14112:34;14107:2;14092:18;;14085:62;14179:2;14164:18;;14006:182::o;14193:350::-;14395:2;14377:21;;;14434:2;14414:18;;;14407:30;14473:28;14468:2;14453:18;;14446:56;14534:2;14519:18;;14367:176::o;14548:414::-;14750:2;14732:21;;;14789:2;14769:18;;;14762:30;14828:34;14823:2;14808:18;;14801:62;-1:-1:-1;;;14894:2:1;14879:18;;14872:48;14952:3;14937:19;;14722:240::o;14967:398::-;15169:2;15151:21;;;15208:2;15188:18;;;15181:30;15247:34;15242:2;15227:18;;15220:62;-1:-1:-1;;;15313:2:1;15298:18;;15291:32;15355:3;15340:19;;15141:224::o;15370:415::-;15572:2;15554:21;;;15611:2;15591:18;;;15584:30;15650:34;15645:2;15630:18;;15623:62;-1:-1:-1;;;15716:2:1;15701:18;;15694:49;15775:3;15760:19;;15544:241::o;15790:353::-;15992:2;15974:21;;;16031:2;16011:18;;;16004:30;16070:31;16065:2;16050:18;;16043:59;16134:2;16119:18;;15964:179::o;16148:397::-;16350:2;16332:21;;;16389:2;16369:18;;;16362:30;16428:34;16423:2;16408:18;;16401:62;-1:-1:-1;;;16494:2:1;16479:18;;16472:31;16535:3;16520:19;;16322:223::o;16550:352::-;16752:2;16734:21;;;16791:2;16771:18;;;16764:30;16830;16825:2;16810:18;;16803:58;16893:2;16878:18;;16724:178::o;16907:348::-;17109:2;17091:21;;;17148:2;17128:18;;;17121:30;17187:26;17182:2;17167:18;;17160:54;17246:2;17231:18;;17081:174::o;17260:410::-;17462:2;17444:21;;;17501:2;17481:18;;;17474:30;17540:34;17535:2;17520:18;;17513:62;-1:-1:-1;;;17606:2:1;17591:18;;17584:44;17660:3;17645:19;;17434:236::o;17675:355::-;17877:2;17859:21;;;17916:2;17896:18;;;17889:30;17955:33;17950:2;17935:18;;17928:61;18021:2;18006:18;;17849:181::o;18035:411::-;18237:2;18219:21;;;18276:2;18256:18;;;18249:30;18315:34;18310:2;18295:18;;18288:62;-1:-1:-1;;;18381:2:1;18366:18;;18359:45;18436:3;18421:19;;18209:237::o;18451:347::-;18653:2;18635:21;;;18692:2;18672:18;;;18665:30;18731:25;18726:2;18711:18;;18704:53;18789:2;18774:18;;18625:173::o;18803:409::-;19005:2;18987:21;;;19044:2;19024:18;;;19017:30;19083:34;19078:2;19063:18;;19056:62;-1:-1:-1;;;19149:2:1;19134:18;;19127:43;19202:3;19187:19;;18977:235::o;19217:398::-;19419:2;19401:21;;;19458:2;19438:18;;;19431:30;19497:34;19492:2;19477:18;;19470:62;-1:-1:-1;;;19563:2:1;19548:18;;19541:32;19605:3;19590:19;;19391:224::o;19620:177::-;19766:25;;;19754:2;19739:18;;19721:76::o;19802:129::-;;19870:17;;;19920:4;19904:21;;;19860:71::o;19936:253::-;;-1:-1:-1;;;;;20065:2:1;20062:1;20058:10;20095:2;20092:1;20088:10;20126:3;20122:2;20118:12;20113:3;20110:21;20107:2;;;20134:18;;:::i;:::-;20170:13;;19984:205;-1:-1:-1;;;;19984:205:1:o;20194:128::-;;20265:1;20261:6;20258:1;20255:13;20252:2;;;20271:18;;:::i;:::-;-1:-1:-1;20307:9:1;;20242:80::o;20327:120::-;;20393:1;20383:2;;20398:18;;:::i;:::-;-1:-1:-1;20432:9:1;;20373:74::o;20452:168::-;;20558:1;20554;20550:6;20546:14;20543:1;20540:21;20535:1;20528:9;20521:17;20517:45;20514:2;;;20565:18;;:::i;:::-;-1:-1:-1;20605:9:1;;20504:116::o;20625:246::-;;-1:-1:-1;;;;;20778:10:1;;;;20748;;20800:12;;;20797:2;;;20815:18;;:::i;:::-;20852:13;;20674:197;-1:-1:-1;;;20674:197:1:o;20876:125::-;;20944:1;20941;20938:8;20935:2;;;20949:18;;:::i;:::-;-1:-1:-1;20986:9:1;;20925:76::o;21006:258::-;21078:1;21088:113;21102:6;21099:1;21096:13;21088:113;;;21178:11;;;21172:18;21159:11;;;21152:39;21124:2;21117:10;21088:113;;;21219:6;21216:1;21213:13;21210:2;;;-1:-1:-1;;21254:1:1;21236:16;;21229:27;21059:205::o;21269:136::-;;21336:5;21326:2;;21345:18;;:::i;:::-;-1:-1:-1;;;21381:18:1;;21316:89::o;21410:380::-;21495:1;21485:12;;21542:1;21532:12;;;21553:2;;21607:4;21599:6;21595:17;21585:27;;21553:2;21660;21652:6;21649:14;21629:18;21626:38;21623:2;;;21706:10;21701:3;21697:20;21694:1;21687:31;21741:4;21738:1;21731:15;21769:4;21766:1;21759:15;21623:2;;21465:325;;;:::o;21795:135::-;;-1:-1:-1;;21855:17:1;;21852:2;;;21875:18;;:::i;:::-;-1:-1:-1;21922:1:1;21911:13;;21842:88::o;21935:112::-;;21993:1;21983:2;;21998:18;;:::i;:::-;-1:-1:-1;22032:9:1;;21973:74::o;22052:127::-;22113:10;22108:3;22104:20;22101:1;22094:31;22144:4;22141:1;22134:15;22168:4;22165:1;22158:15;22184:127;22245:10;22240:3;22236:20;22233:1;22226:31;22276:4;22273:1;22266:15;22300:4;22297:1;22290:15;22316:127;22377:10;22372:3;22368:20;22365:1;22358:31;22408:4;22405:1;22398:15;22432:4;22429:1;22422:15;22448:133;-1:-1:-1;;;;;22525:31:1;;22515:42;;22505:2;;22571:1;22568;22561:12;22586:120;22674:5;22667:13;22660:21;22653:5;22650:32;22640:2;;22696:1;22693;22686:12;22711:133;-1:-1:-1;;;;;;22787:32:1;;22777:43;;22767:2;;22834:1;22831;22824:12

Swarm Source

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