ETH Price: $3,262.29 (+2.75%)
Gas: 4 Gwei

Token

ToucanGang (TOUC)
 

Overview

Max Total Supply

79 TOUC

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mford108.eth
Balance
1 TOUC
0xb98d10E78255D62Cd0B3149469954Fc80f0EDe90
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:
ToucanGang

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-12
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 no longer needed starting with Solidity 0.8. 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/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



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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

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

// File: @openzeppelin/contracts/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



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



pragma solidity ^0.8.0;

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

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



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



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



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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/1_Storage.sol

pragma solidity ^0.8.0;







contract ToucanGang is  ERC721Enumerable,  Ownable{

 using SafeMath for uint256;

  uint256 public constant  MAX_TOUCAN_SUPPLY = 10000 ;
  uint256 public TIMESTAMP = 1635094800;
  uint256 public constant maxToucanPurchase = 20;
  uint256 public constant price = 5 * 10**16;
  uint256 public startingIndexBlock;
  uint256 public startingIndex;
  bool public saleIsActive =false;
  address constant creatorAddress = 0x95E77df8927F6980f45fD435103949B19FA19814; 
  
  string public provenance = "0210e0d6cc72076afb3ba85a988244204b989010af4bbadf84948e3cda57ed9d";
  string public baseTokenURI;



  constructor(string memory _firstUri)  ERC721("ToucanGang", "TOUC"){
    baseTokenURI = _firstUri ;
  }

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


    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(creatorAddress).transfer(balance);

    }


    function mint(address _to, uint256 _count) public payable {
        require(saleIsActive, "Sale must be active to mint Toucan");
        require(_count <= maxToucanPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(_count) <= MAX_TOUCAN_SUPPLY, "Purchasse will exceed the total supply");
        //TODO figure it out in test
        require(price.mul(_count) <= msg.value,"Ether value sent is not correct ");
        

            for (uint256 i = 0; i < _count; i++) {
                _mint(_to, totalSupply());
            }
            if (startingIndexBlock == 0 && (totalSupply() == MAX_TOUCAN_SUPPLY || block.timestamp >= TIMESTAMP)) {
                startingIndexBlock = block.number;
            } 

    }


    function setStartingIndex() external  {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_TOUCAN_SUPPLY;
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % MAX_TOUCAN_SUPPLY;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function manualSetStartingIndexBlock() external onlyOwner {
      //In case of error
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }

    function reverseSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function toucanForGiveAway(address _to, uint256 _numberOfTokens) external onlyOwner {
        //uint256 supply = totalSupply();
        uint256 supply = totalSupply();
        uint256 i;
        
        for (i = 0; i < _numberOfTokens; i++) {
            _mint(_to, supply + i);
        }
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_firstUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOUCAN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxToucanPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reverseSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_to","type":"address"},{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"toucanForGiveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526361759110600b556000600e60006101000a81548160ff0219169083151502179055506040518060600160405280604081526020016200475560409139600f9080519060200190620000589291906200023a565b503480156200006657600080fd5b50604051620047953803806200479583398181016040528101906200008c91906200035c565b6040518060400160405280600a81526020017f546f7563616e47616e67000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f544f5543000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001109291906200023a565b508060019080519060200190620001299291906200023a565b5050506200014c620001406200016c60201b60201c565b6200017460201b60201c565b8060109080519060200190620001649291906200023a565b5050620004d2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000248906200043e565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b600062000301620002fb84620003d5565b620003a1565b9050828152602081018484840111156200031a57600080fd5b6200032784828562000408565b509392505050565b600082601f8301126200034157600080fd5b815162000353848260208601620002ea565b91505092915050565b6000602082840312156200036f57600080fd5b600082015167ffffffffffffffff8111156200038a57600080fd5b62000398848285016200032f565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620003cb57620003ca620004a3565b5b8060405250919050565b600067ffffffffffffffff821115620003f357620003f2620004a3565b5b601f19601f8301169050602081019050919050565b60005b83811015620004285780820151818401526020810190506200040b565b8381111562000438576000848401525b50505050565b600060028204905060018216806200045757607f821691505b602082108114156200046e576200046d62000474565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61427380620004e26000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063e36d64981161006f578063e36d649814610724578063e985e9c51461074f578063e98665501461078c578063eb8d2444146107a3578063f2fde38b146107ce57610204565b8063b88d4fde14610668578063c87b56dd14610691578063cb774d47146106ce578063d547cfb7146106f957610204565b8063853828b6116100e7578063853828b6146105a75780638da5cb5b146105be57806395d89b41146105e9578063a035b1fe14610614578063a22cb4651461063f57610204565b806370a08231146104fd578063715018a61461053a578063749e480d146105515780637af9ebaa1461057c57610204565b806323b872dd1161019b578063421517711161016a578063421517711461041a57806342842e0e146104315780634f6ccce71461045a57806355f804b3146104975780636352211e146104c057610204565b806323b872dd1461036d5780632f745c591461039657806338c2aa79146103d357806340c10f19146103fe57610204565b80630f7309e8116101d75780630f7309e8146102d757806318160ddd14610302578063208ace851461032d57806322231ccb1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fd4565b6107f7565b60405161023d9190613a71565b60405180910390f35b34801561025257600080fd5b5061025b610871565b6040516102689190613a8c565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613067565b610903565b6040516102a59190613a0a565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f98565b610988565b005b3480156102e357600080fd5b506102ec610aa0565b6040516102f99190613a8c565b60405180910390f35b34801561030e57600080fd5b50610317610b2e565b6040516103249190613dae565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612f98565b610b3b565b005b34801561036257600080fd5b5061036b610bfc565b005b34801561037957600080fd5b50610394600480360381019061038f9190612e92565b610ca4565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190612f98565b610d04565b6040516103ca9190613dae565b60405180910390f35b3480156103df57600080fd5b506103e8610da9565b6040516103f59190613dae565b60405180910390f35b61041860048036038101906104139190612f98565b610dae565b005b34801561042657600080fd5b5061042f610f63565b005b34801561043d57600080fd5b5061045860048036038101906104539190612e92565b61102d565b005b34801561046657600080fd5b50610481600480360381019061047c9190613067565b61104d565b60405161048e9190613dae565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613026565b6110e4565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613067565b61117a565b6040516104f49190613a0a565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612e2d565b61122c565b6040516105319190613dae565b60405180910390f35b34801561054657600080fd5b5061054f6112e4565b005b34801561055d57600080fd5b5061056661136c565b6040516105739190613dae565b60405180910390f35b34801561058857600080fd5b50610591611372565b60405161059e9190613dae565b60405180910390f35b3480156105b357600080fd5b506105bc611378565b005b3480156105ca57600080fd5b506105d3611457565b6040516105e09190613a0a565b60405180910390f35b3480156105f557600080fd5b506105fe611481565b60405161060b9190613a8c565b60405180910390f35b34801561062057600080fd5b50610629611513565b6040516106369190613dae565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612f5c565b61151e565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612ee1565b61169f565b005b34801561069d57600080fd5b506106b860048036038101906106b39190613067565b611701565b6040516106c59190613a8c565b60405180910390f35b3480156106da57600080fd5b506106e36117a8565b6040516106f09190613dae565b60405180910390f35b34801561070557600080fd5b5061070e6117ae565b60405161071b9190613a8c565b60405180910390f35b34801561073057600080fd5b5061073961183c565b6040516107469190613dae565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612e56565b611842565b6040516107839190613a71565b60405180910390f35b34801561079857600080fd5b506107a16118d6565b005b3480156107af57600080fd5b506107b86119e7565b6040516107c59190613a71565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612e2d565b6119fa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a575061086982611af2565b5b9050919050565b60606000805461088090614068565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90614068565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e82611bd4565b61094d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094490613c8e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109938261117a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a23611c40565b73ffffffffffffffffffffffffffffffffffffffff161480610a525750610a5181610a4c611c40565b611842565b5b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613c0e565b60405180910390fd5b610a9b8383611c48565b505050565b600f8054610aad90614068565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad990614068565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b505050505081565b6000600880549050905090565b610b43611c40565b73ffffffffffffffffffffffffffffffffffffffff16610b61611457565b73ffffffffffffffffffffffffffffffffffffffff1614610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613cce565b60405180910390fd5b6000610bc1610b2e565b905060005b82811015610bf657610be3848284610bde9190613e9d565b611d01565b8080610bee9061409a565b915050610bc6565b50505050565b610c04611c40565b73ffffffffffffffffffffffffffffffffffffffff16610c22611457565b73ffffffffffffffffffffffffffffffffffffffff1614610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613cce565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610cb5610caf611c40565b82611ecf565b610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90613d6e565b60405180910390fd5b610cff838383611fad565b505050565b6000610d0f8361122c565b8210610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613ace565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601481565b600e60009054906101000a900460ff16610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613cae565b60405180910390fd5b6014811115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613bce565b60405180910390fd5b612710610e5e82610e50610b2e565b61220990919063ffffffff16565b1115610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613aae565b60405180910390fd5b34610eba8266b1a2bc2ec5000061221f90919063ffffffff16565b1115610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613b4e565b60405180910390fd5b60005b81811015610f2a57610f1783610f12610b2e565b611d01565b8080610f229061409a565b915050610efe565b506000600c54148015610f525750612710610f43610b2e565b1480610f515750600b544210155b5b15610f5f5743600c819055505b5050565b610f6b611c40565b73ffffffffffffffffffffffffffffffffffffffff16610f89611457565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690613cce565b60405180910390fd5b6000600d5414611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613bee565b60405180910390fd5b43600c81905550565b6110488383836040518060200160405280600081525061169f565b505050565b6000611057610b2e565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613d8e565b60405180910390fd5b600882815481106110d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110ec611c40565b73ffffffffffffffffffffffffffffffffffffffff1661110a611457565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613cce565b60405180910390fd5b8060109080519060200190611176929190612c51565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613c4e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613c2e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ec611c40565b73ffffffffffffffffffffffffffffffffffffffff1661130a611457565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613cce565b60405180910390fd5b61136a6000612235565b565b600b5481565b61271081565b611380611c40565b73ffffffffffffffffffffffffffffffffffffffff1661139e611457565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90613cce565b60405180910390fd5b60004790507395e77df8927f6980f45fd435103949b19fa1981473ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611453573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461149090614068565b80601f01602080910402602001604051908101604052809291908181526020018280546114bc90614068565b80156115095780601f106114de57610100808354040283529160200191611509565b820191906000526020600020905b8154815290600101906020018083116114ec57829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b611526611c40565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613b8e565b60405180910390fd5b80600560006115a1611c40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164e611c40565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116939190613a71565b60405180910390a35050565b6116b06116aa611c40565b83611ecf565b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613d6e565b60405180910390fd5b6116fb848484846122fb565b50505050565b606061170c82611bd4565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d0e565b60405180910390fd5b6000611755612357565b9050600081511161177557604051806020016040528060008152506117a0565b8061177f846123e9565b6040516020016117909291906139e6565b6040516020818303038152906040525b915050919050565b600d5481565b601080546117bb90614068565b80601f01602080910402602001604051908101604052809291908181526020018280546117e790614068565b80156118345780601f1061180957610100808354040283529160200191611834565b820191906000526020600020905b81548152906001019060200180831161181757829003601f168201915b505050505081565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d541461191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613bee565b60405180910390fd5b6000600c541415611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613d4e565b60405180910390fd5b612710600c544060001c61197591906140e3565b600d8190555060ff611992600c544361259690919063ffffffff16565b11156119bd576127106001436119a89190613f7e565b4060001c6119b691906140e3565b600d819055505b6000600d5414156119e5576119de6001600d5461220990919063ffffffff16565b600d819055505b565b600e60009054906101000a900460ff1681565b611a02611c40565b73ffffffffffffffffffffffffffffffffffffffff16611a20611457565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613cce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613b0e565b60405180910390fd5b611aef81612235565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bcd5750611bcc826125ac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cbb8361117a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613c6e565b60405180910390fd5b611d7a81611bd4565b15611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613b2e565b60405180910390fd5b611dc660008383612616565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e169190613e9d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611eda82611bd4565b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613bae565b60405180910390fd5b6000611f248361117a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9357508373ffffffffffffffffffffffffffffffffffffffff16611f7b84610903565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa45750611fa38185611842565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcd8261117a565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613cee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613b6e565b60405180910390fd5b61209e838383612616565b6120a9600082611c48565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613f7e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121509190613e9d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122179190613e9d565b905092915050565b6000818361222d9190613f24565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612306848484611fad565b6123128484848461272a565b612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890613aee565b60405180910390fd5b50505050565b60606010805461236690614068565b80601f016020809104026020016040519081016040528092919081815260200182805461239290614068565b80156123df5780601f106123b4576101008083540402835291602001916123df565b820191906000526020600020905b8154815290600101906020018083116123c257829003601f168201915b5050505050905090565b60606000821415612431576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612591565b600082905060005b6000821461246357808061244c9061409a565b915050600a8261245c9190613ef3565b9150612439565b60008167ffffffffffffffff8111156124a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124d75781602001600182028036833780820191505090505b5090505b6000851461258a576001826124f09190613f7e565b9150600a856124ff91906140e3565b603061250b9190613e9d565b60f81b818381518110612547577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125839190613ef3565b94506124db565b8093505050505b919050565b600081836125a49190613f7e565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126218383836128c1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126645761265f816128c6565b6126a3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126a2576126a1838261290f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e6576126e181612a7c565b612725565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612724576127238282612bbf565b5b5b505050565b600061274b8473ffffffffffffffffffffffffffffffffffffffff16612c3e565b156128b4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612774611c40565b8786866040518563ffffffff1660e01b81526004016127969493929190613a25565b602060405180830381600087803b1580156127b057600080fd5b505af19250505080156127e157506040513d601f19601f820116820180604052508101906127de9190612ffd565b60015b612864573d8060008114612811576040519150601f19603f3d011682016040523d82523d6000602084013e612816565b606091505b5060008151141561285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285390613aee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161291c8461122c565b6129269190613f7e565b9050600060076000848152602001908152602001600020549050818114612a0b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a909190613f7e565b9050600060096000848152602001908152602001600020549050600060088381548110612ae6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ba3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612bca8361122c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612c5d90614068565b90600052602060002090601f016020900481019282612c7f5760008555612cc6565b82601f10612c9857805160ff1916838001178555612cc6565b82800160010185558215612cc6579182015b82811115612cc5578251825591602001919060010190612caa565b5b509050612cd39190612cd7565b5090565b5b80821115612cf0576000816000905550600101612cd8565b5090565b6000612d07612d0284613dfa565b613dc9565b905082815260208101848484011115612d1f57600080fd5b612d2a848285614026565b509392505050565b6000612d45612d4084613e2a565b613dc9565b905082815260208101848484011115612d5d57600080fd5b612d68848285614026565b509392505050565b600081359050612d7f816141e1565b92915050565b600081359050612d94816141f8565b92915050565b600081359050612da98161420f565b92915050565b600081519050612dbe8161420f565b92915050565b600082601f830112612dd557600080fd5b8135612de5848260208601612cf4565b91505092915050565b600082601f830112612dff57600080fd5b8135612e0f848260208601612d32565b91505092915050565b600081359050612e2781614226565b92915050565b600060208284031215612e3f57600080fd5b6000612e4d84828501612d70565b91505092915050565b60008060408385031215612e6957600080fd5b6000612e7785828601612d70565b9250506020612e8885828601612d70565b9150509250929050565b600080600060608486031215612ea757600080fd5b6000612eb586828701612d70565b9350506020612ec686828701612d70565b9250506040612ed786828701612e18565b9150509250925092565b60008060008060808587031215612ef757600080fd5b6000612f0587828801612d70565b9450506020612f1687828801612d70565b9350506040612f2787828801612e18565b925050606085013567ffffffffffffffff811115612f4457600080fd5b612f5087828801612dc4565b91505092959194509250565b60008060408385031215612f6f57600080fd5b6000612f7d85828601612d70565b9250506020612f8e85828601612d85565b9150509250929050565b60008060408385031215612fab57600080fd5b6000612fb985828601612d70565b9250506020612fca85828601612e18565b9150509250929050565b600060208284031215612fe657600080fd5b6000612ff484828501612d9a565b91505092915050565b60006020828403121561300f57600080fd5b600061301d84828501612daf565b91505092915050565b60006020828403121561303857600080fd5b600082013567ffffffffffffffff81111561305257600080fd5b61305e84828501612dee565b91505092915050565b60006020828403121561307957600080fd5b600061308784828501612e18565b91505092915050565b61309981613fb2565b82525050565b6130a881613fc4565b82525050565b60006130b982613e5a565b6130c38185613e70565b93506130d3818560208601614035565b6130dc816141d0565b840191505092915050565b60006130f282613e65565b6130fc8185613e81565b935061310c818560208601614035565b613115816141d0565b840191505092915050565b600061312b82613e65565b6131358185613e92565b9350613145818560208601614035565b80840191505092915050565b600061315e602683613e81565b91507f5075726368617373652077696c6c206578636565642074686520746f74616c2060008301527f737570706c7900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131c4602b83613e81565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061322a603283613e81565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613290602683613e81565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132f6601c83613e81565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613336602083613e81565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374206000830152602082019050919050565b6000613376602483613e81565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133dc601983613e81565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061341c602c83613e81565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613482602183613e81565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134e8601d83613e81565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b6000613528603883613e81565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061358e602a83613e81565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f4602983613e81565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061365a602083613e81565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061369a602c83613e81565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613700602283613e81565b91507f53616c65206d7573742062652061637469766520746f206d696e7420546f756360008301527f616e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613766602083613e81565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006137a6602983613e81565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061380c602f83613e81565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613872602183613e81565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138d8602083613e81565b91507f5374617274696e6720696e64657820626c6f636b206d757374206265207365746000830152602082019050919050565b6000613918603183613e81565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061397e602c83613e81565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6139e08161401c565b82525050565b60006139f28285613120565b91506139fe8284613120565b91508190509392505050565b6000602082019050613a1f6000830184613090565b92915050565b6000608082019050613a3a6000830187613090565b613a476020830186613090565b613a5460408301856139d7565b8181036060830152613a6681846130ae565b905095945050505050565b6000602082019050613a86600083018461309f565b92915050565b60006020820190508181036000830152613aa681846130e7565b905092915050565b60006020820190508181036000830152613ac781613151565b9050919050565b60006020820190508181036000830152613ae7816131b7565b9050919050565b60006020820190508181036000830152613b078161321d565b9050919050565b60006020820190508181036000830152613b2781613283565b9050919050565b60006020820190508181036000830152613b47816132e9565b9050919050565b60006020820190508181036000830152613b6781613329565b9050919050565b60006020820190508181036000830152613b8781613369565b9050919050565b60006020820190508181036000830152613ba7816133cf565b9050919050565b60006020820190508181036000830152613bc78161340f565b9050919050565b60006020820190508181036000830152613be781613475565b9050919050565b60006020820190508181036000830152613c07816134db565b9050919050565b60006020820190508181036000830152613c278161351b565b9050919050565b60006020820190508181036000830152613c4781613581565b9050919050565b60006020820190508181036000830152613c67816135e7565b9050919050565b60006020820190508181036000830152613c878161364d565b9050919050565b60006020820190508181036000830152613ca78161368d565b9050919050565b60006020820190508181036000830152613cc7816136f3565b9050919050565b60006020820190508181036000830152613ce781613759565b9050919050565b60006020820190508181036000830152613d0781613799565b9050919050565b60006020820190508181036000830152613d27816137ff565b9050919050565b60006020820190508181036000830152613d4781613865565b9050919050565b60006020820190508181036000830152613d67816138cb565b9050919050565b60006020820190508181036000830152613d878161390b565b9050919050565b60006020820190508181036000830152613da781613971565b9050919050565b6000602082019050613dc360008301846139d7565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613df057613def6141a1565b5b8060405250919050565b600067ffffffffffffffff821115613e1557613e146141a1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e4557613e446141a1565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ea88261401c565b9150613eb38361401c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee857613ee7614114565b5b828201905092915050565b6000613efe8261401c565b9150613f098361401c565b925082613f1957613f18614143565b5b828204905092915050565b6000613f2f8261401c565b9150613f3a8361401c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f7357613f72614114565b5b828202905092915050565b6000613f898261401c565b9150613f948361401c565b925082821015613fa757613fa6614114565b5b828203905092915050565b6000613fbd82613ffc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614053578082015181840152602081019050614038565b83811115614062576000848401525b50505050565b6000600282049050600182168061408057607f821691505b6020821081141561409457614093614172565b5b50919050565b60006140a58261401c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140d8576140d7614114565b5b600182019050919050565b60006140ee8261401c565b91506140f98361401c565b92508261410957614108614143565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141ea81613fb2565b81146141f557600080fd5b50565b61420181613fc4565b811461420c57600080fd5b50565b61421881613fd0565b811461422357600080fd5b50565b61422f8161401c565b811461423a57600080fd5b5056fea26469706673582212201cbf649fc4fb88c37c58ae4fe2fe4e94f80698144549bc254c318ae6d271924e64736f6c63430008000033303231306530643663633732303736616662336261383561393838323434323034623938393031306166346262616466383439343865336364613537656439640000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6e666c6966652e6d7970696e6174612e636c6f75642f697066732f516d5144704845687a7673374c567551595931326f4b46376a4c7243746d7a41707a4b6f7858477041466d726b702f0000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063e36d64981161006f578063e36d649814610724578063e985e9c51461074f578063e98665501461078c578063eb8d2444146107a3578063f2fde38b146107ce57610204565b8063b88d4fde14610668578063c87b56dd14610691578063cb774d47146106ce578063d547cfb7146106f957610204565b8063853828b6116100e7578063853828b6146105a75780638da5cb5b146105be57806395d89b41146105e9578063a035b1fe14610614578063a22cb4651461063f57610204565b806370a08231146104fd578063715018a61461053a578063749e480d146105515780637af9ebaa1461057c57610204565b806323b872dd1161019b578063421517711161016a578063421517711461041a57806342842e0e146104315780634f6ccce71461045a57806355f804b3146104975780636352211e146104c057610204565b806323b872dd1461036d5780632f745c591461039657806338c2aa79146103d357806340c10f19146103fe57610204565b80630f7309e8116101d75780630f7309e8146102d757806318160ddd14610302578063208ace851461032d57806322231ccb1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fd4565b6107f7565b60405161023d9190613a71565b60405180910390f35b34801561025257600080fd5b5061025b610871565b6040516102689190613a8c565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613067565b610903565b6040516102a59190613a0a565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f98565b610988565b005b3480156102e357600080fd5b506102ec610aa0565b6040516102f99190613a8c565b60405180910390f35b34801561030e57600080fd5b50610317610b2e565b6040516103249190613dae565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612f98565b610b3b565b005b34801561036257600080fd5b5061036b610bfc565b005b34801561037957600080fd5b50610394600480360381019061038f9190612e92565b610ca4565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190612f98565b610d04565b6040516103ca9190613dae565b60405180910390f35b3480156103df57600080fd5b506103e8610da9565b6040516103f59190613dae565b60405180910390f35b61041860048036038101906104139190612f98565b610dae565b005b34801561042657600080fd5b5061042f610f63565b005b34801561043d57600080fd5b5061045860048036038101906104539190612e92565b61102d565b005b34801561046657600080fd5b50610481600480360381019061047c9190613067565b61104d565b60405161048e9190613dae565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613026565b6110e4565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613067565b61117a565b6040516104f49190613a0a565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612e2d565b61122c565b6040516105319190613dae565b60405180910390f35b34801561054657600080fd5b5061054f6112e4565b005b34801561055d57600080fd5b5061056661136c565b6040516105739190613dae565b60405180910390f35b34801561058857600080fd5b50610591611372565b60405161059e9190613dae565b60405180910390f35b3480156105b357600080fd5b506105bc611378565b005b3480156105ca57600080fd5b506105d3611457565b6040516105e09190613a0a565b60405180910390f35b3480156105f557600080fd5b506105fe611481565b60405161060b9190613a8c565b60405180910390f35b34801561062057600080fd5b50610629611513565b6040516106369190613dae565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612f5c565b61151e565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612ee1565b61169f565b005b34801561069d57600080fd5b506106b860048036038101906106b39190613067565b611701565b6040516106c59190613a8c565b60405180910390f35b3480156106da57600080fd5b506106e36117a8565b6040516106f09190613dae565b60405180910390f35b34801561070557600080fd5b5061070e6117ae565b60405161071b9190613a8c565b60405180910390f35b34801561073057600080fd5b5061073961183c565b6040516107469190613dae565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612e56565b611842565b6040516107839190613a71565b60405180910390f35b34801561079857600080fd5b506107a16118d6565b005b3480156107af57600080fd5b506107b86119e7565b6040516107c59190613a71565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612e2d565b6119fa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a575061086982611af2565b5b9050919050565b60606000805461088090614068565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90614068565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e82611bd4565b61094d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094490613c8e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109938261117a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a23611c40565b73ffffffffffffffffffffffffffffffffffffffff161480610a525750610a5181610a4c611c40565b611842565b5b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613c0e565b60405180910390fd5b610a9b8383611c48565b505050565b600f8054610aad90614068565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad990614068565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b505050505081565b6000600880549050905090565b610b43611c40565b73ffffffffffffffffffffffffffffffffffffffff16610b61611457565b73ffffffffffffffffffffffffffffffffffffffff1614610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613cce565b60405180910390fd5b6000610bc1610b2e565b905060005b82811015610bf657610be3848284610bde9190613e9d565b611d01565b8080610bee9061409a565b915050610bc6565b50505050565b610c04611c40565b73ffffffffffffffffffffffffffffffffffffffff16610c22611457565b73ffffffffffffffffffffffffffffffffffffffff1614610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613cce565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610cb5610caf611c40565b82611ecf565b610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90613d6e565b60405180910390fd5b610cff838383611fad565b505050565b6000610d0f8361122c565b8210610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613ace565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601481565b600e60009054906101000a900460ff16610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613cae565b60405180910390fd5b6014811115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613bce565b60405180910390fd5b612710610e5e82610e50610b2e565b61220990919063ffffffff16565b1115610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613aae565b60405180910390fd5b34610eba8266b1a2bc2ec5000061221f90919063ffffffff16565b1115610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613b4e565b60405180910390fd5b60005b81811015610f2a57610f1783610f12610b2e565b611d01565b8080610f229061409a565b915050610efe565b506000600c54148015610f525750612710610f43610b2e565b1480610f515750600b544210155b5b15610f5f5743600c819055505b5050565b610f6b611c40565b73ffffffffffffffffffffffffffffffffffffffff16610f89611457565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690613cce565b60405180910390fd5b6000600d5414611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613bee565b60405180910390fd5b43600c81905550565b6110488383836040518060200160405280600081525061169f565b505050565b6000611057610b2e565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613d8e565b60405180910390fd5b600882815481106110d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110ec611c40565b73ffffffffffffffffffffffffffffffffffffffff1661110a611457565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613cce565b60405180910390fd5b8060109080519060200190611176929190612c51565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613c4e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613c2e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ec611c40565b73ffffffffffffffffffffffffffffffffffffffff1661130a611457565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613cce565b60405180910390fd5b61136a6000612235565b565b600b5481565b61271081565b611380611c40565b73ffffffffffffffffffffffffffffffffffffffff1661139e611457565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90613cce565b60405180910390fd5b60004790507395e77df8927f6980f45fd435103949b19fa1981473ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611453573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461149090614068565b80601f01602080910402602001604051908101604052809291908181526020018280546114bc90614068565b80156115095780601f106114de57610100808354040283529160200191611509565b820191906000526020600020905b8154815290600101906020018083116114ec57829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b611526611c40565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613b8e565b60405180910390fd5b80600560006115a1611c40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164e611c40565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116939190613a71565b60405180910390a35050565b6116b06116aa611c40565b83611ecf565b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613d6e565b60405180910390fd5b6116fb848484846122fb565b50505050565b606061170c82611bd4565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d0e565b60405180910390fd5b6000611755612357565b9050600081511161177557604051806020016040528060008152506117a0565b8061177f846123e9565b6040516020016117909291906139e6565b6040516020818303038152906040525b915050919050565b600d5481565b601080546117bb90614068565b80601f01602080910402602001604051908101604052809291908181526020018280546117e790614068565b80156118345780601f1061180957610100808354040283529160200191611834565b820191906000526020600020905b81548152906001019060200180831161181757829003601f168201915b505050505081565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d541461191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613bee565b60405180910390fd5b6000600c541415611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613d4e565b60405180910390fd5b612710600c544060001c61197591906140e3565b600d8190555060ff611992600c544361259690919063ffffffff16565b11156119bd576127106001436119a89190613f7e565b4060001c6119b691906140e3565b600d819055505b6000600d5414156119e5576119de6001600d5461220990919063ffffffff16565b600d819055505b565b600e60009054906101000a900460ff1681565b611a02611c40565b73ffffffffffffffffffffffffffffffffffffffff16611a20611457565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613cce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613b0e565b60405180910390fd5b611aef81612235565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bcd5750611bcc826125ac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cbb8361117a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613c6e565b60405180910390fd5b611d7a81611bd4565b15611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613b2e565b60405180910390fd5b611dc660008383612616565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e169190613e9d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611eda82611bd4565b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613bae565b60405180910390fd5b6000611f248361117a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9357508373ffffffffffffffffffffffffffffffffffffffff16611f7b84610903565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa45750611fa38185611842565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcd8261117a565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613cee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613b6e565b60405180910390fd5b61209e838383612616565b6120a9600082611c48565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613f7e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121509190613e9d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122179190613e9d565b905092915050565b6000818361222d9190613f24565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612306848484611fad565b6123128484848461272a565b612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890613aee565b60405180910390fd5b50505050565b60606010805461236690614068565b80601f016020809104026020016040519081016040528092919081815260200182805461239290614068565b80156123df5780601f106123b4576101008083540402835291602001916123df565b820191906000526020600020905b8154815290600101906020018083116123c257829003601f168201915b5050505050905090565b60606000821415612431576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612591565b600082905060005b6000821461246357808061244c9061409a565b915050600a8261245c9190613ef3565b9150612439565b60008167ffffffffffffffff8111156124a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124d75781602001600182028036833780820191505090505b5090505b6000851461258a576001826124f09190613f7e565b9150600a856124ff91906140e3565b603061250b9190613e9d565b60f81b818381518110612547577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125839190613ef3565b94506124db565b8093505050505b919050565b600081836125a49190613f7e565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126218383836128c1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126645761265f816128c6565b6126a3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126a2576126a1838261290f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e6576126e181612a7c565b612725565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612724576127238282612bbf565b5b5b505050565b600061274b8473ffffffffffffffffffffffffffffffffffffffff16612c3e565b156128b4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612774611c40565b8786866040518563ffffffff1660e01b81526004016127969493929190613a25565b602060405180830381600087803b1580156127b057600080fd5b505af19250505080156127e157506040513d601f19601f820116820180604052508101906127de9190612ffd565b60015b612864573d8060008114612811576040519150601f19603f3d011682016040523d82523d6000602084013e612816565b606091505b5060008151141561285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285390613aee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161291c8461122c565b6129269190613f7e565b9050600060076000848152602001908152602001600020549050818114612a0b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a909190613f7e565b9050600060096000848152602001908152602001600020549050600060088381548110612ae6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ba3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612bca8361122c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612c5d90614068565b90600052602060002090601f016020900481019282612c7f5760008555612cc6565b82601f10612c9857805160ff1916838001178555612cc6565b82800160010185558215612cc6579182015b82811115612cc5578251825591602001919060010190612caa565b5b509050612cd39190612cd7565b5090565b5b80821115612cf0576000816000905550600101612cd8565b5090565b6000612d07612d0284613dfa565b613dc9565b905082815260208101848484011115612d1f57600080fd5b612d2a848285614026565b509392505050565b6000612d45612d4084613e2a565b613dc9565b905082815260208101848484011115612d5d57600080fd5b612d68848285614026565b509392505050565b600081359050612d7f816141e1565b92915050565b600081359050612d94816141f8565b92915050565b600081359050612da98161420f565b92915050565b600081519050612dbe8161420f565b92915050565b600082601f830112612dd557600080fd5b8135612de5848260208601612cf4565b91505092915050565b600082601f830112612dff57600080fd5b8135612e0f848260208601612d32565b91505092915050565b600081359050612e2781614226565b92915050565b600060208284031215612e3f57600080fd5b6000612e4d84828501612d70565b91505092915050565b60008060408385031215612e6957600080fd5b6000612e7785828601612d70565b9250506020612e8885828601612d70565b9150509250929050565b600080600060608486031215612ea757600080fd5b6000612eb586828701612d70565b9350506020612ec686828701612d70565b9250506040612ed786828701612e18565b9150509250925092565b60008060008060808587031215612ef757600080fd5b6000612f0587828801612d70565b9450506020612f1687828801612d70565b9350506040612f2787828801612e18565b925050606085013567ffffffffffffffff811115612f4457600080fd5b612f5087828801612dc4565b91505092959194509250565b60008060408385031215612f6f57600080fd5b6000612f7d85828601612d70565b9250506020612f8e85828601612d85565b9150509250929050565b60008060408385031215612fab57600080fd5b6000612fb985828601612d70565b9250506020612fca85828601612e18565b9150509250929050565b600060208284031215612fe657600080fd5b6000612ff484828501612d9a565b91505092915050565b60006020828403121561300f57600080fd5b600061301d84828501612daf565b91505092915050565b60006020828403121561303857600080fd5b600082013567ffffffffffffffff81111561305257600080fd5b61305e84828501612dee565b91505092915050565b60006020828403121561307957600080fd5b600061308784828501612e18565b91505092915050565b61309981613fb2565b82525050565b6130a881613fc4565b82525050565b60006130b982613e5a565b6130c38185613e70565b93506130d3818560208601614035565b6130dc816141d0565b840191505092915050565b60006130f282613e65565b6130fc8185613e81565b935061310c818560208601614035565b613115816141d0565b840191505092915050565b600061312b82613e65565b6131358185613e92565b9350613145818560208601614035565b80840191505092915050565b600061315e602683613e81565b91507f5075726368617373652077696c6c206578636565642074686520746f74616c2060008301527f737570706c7900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131c4602b83613e81565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061322a603283613e81565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613290602683613e81565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132f6601c83613e81565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613336602083613e81565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374206000830152602082019050919050565b6000613376602483613e81565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133dc601983613e81565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061341c602c83613e81565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613482602183613e81565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134e8601d83613e81565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b6000613528603883613e81565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061358e602a83613e81565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f4602983613e81565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061365a602083613e81565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061369a602c83613e81565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613700602283613e81565b91507f53616c65206d7573742062652061637469766520746f206d696e7420546f756360008301527f616e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613766602083613e81565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006137a6602983613e81565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061380c602f83613e81565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613872602183613e81565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138d8602083613e81565b91507f5374617274696e6720696e64657820626c6f636b206d757374206265207365746000830152602082019050919050565b6000613918603183613e81565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061397e602c83613e81565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6139e08161401c565b82525050565b60006139f28285613120565b91506139fe8284613120565b91508190509392505050565b6000602082019050613a1f6000830184613090565b92915050565b6000608082019050613a3a6000830187613090565b613a476020830186613090565b613a5460408301856139d7565b8181036060830152613a6681846130ae565b905095945050505050565b6000602082019050613a86600083018461309f565b92915050565b60006020820190508181036000830152613aa681846130e7565b905092915050565b60006020820190508181036000830152613ac781613151565b9050919050565b60006020820190508181036000830152613ae7816131b7565b9050919050565b60006020820190508181036000830152613b078161321d565b9050919050565b60006020820190508181036000830152613b2781613283565b9050919050565b60006020820190508181036000830152613b47816132e9565b9050919050565b60006020820190508181036000830152613b6781613329565b9050919050565b60006020820190508181036000830152613b8781613369565b9050919050565b60006020820190508181036000830152613ba7816133cf565b9050919050565b60006020820190508181036000830152613bc78161340f565b9050919050565b60006020820190508181036000830152613be781613475565b9050919050565b60006020820190508181036000830152613c07816134db565b9050919050565b60006020820190508181036000830152613c278161351b565b9050919050565b60006020820190508181036000830152613c4781613581565b9050919050565b60006020820190508181036000830152613c67816135e7565b9050919050565b60006020820190508181036000830152613c878161364d565b9050919050565b60006020820190508181036000830152613ca78161368d565b9050919050565b60006020820190508181036000830152613cc7816136f3565b9050919050565b60006020820190508181036000830152613ce781613759565b9050919050565b60006020820190508181036000830152613d0781613799565b9050919050565b60006020820190508181036000830152613d27816137ff565b9050919050565b60006020820190508181036000830152613d4781613865565b9050919050565b60006020820190508181036000830152613d67816138cb565b9050919050565b60006020820190508181036000830152613d878161390b565b9050919050565b60006020820190508181036000830152613da781613971565b9050919050565b6000602082019050613dc360008301846139d7565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613df057613def6141a1565b5b8060405250919050565b600067ffffffffffffffff821115613e1557613e146141a1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e4557613e446141a1565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ea88261401c565b9150613eb38361401c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee857613ee7614114565b5b828201905092915050565b6000613efe8261401c565b9150613f098361401c565b925082613f1957613f18614143565b5b828204905092915050565b6000613f2f8261401c565b9150613f3a8361401c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f7357613f72614114565b5b828202905092915050565b6000613f898261401c565b9150613f948361401c565b925082821015613fa757613fa6614114565b5b828203905092915050565b6000613fbd82613ffc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614053578082015181840152602081019050614038565b83811115614062576000848401525b50505050565b6000600282049050600182168061408057607f821691505b6020821081141561409457614093614172565b5b50919050565b60006140a58261401c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140d8576140d7614114565b5b600182019050919050565b60006140ee8261401c565b91506140f98361401c565b92508261410957614108614143565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141ea81613fb2565b81146141f557600080fd5b50565b61420181613fc4565b811461420c57600080fd5b50565b61421881613fd0565b811461422357600080fd5b50565b61422f8161401c565b811461423a57600080fd5b5056fea26469706673582212201cbf649fc4fb88c37c58ae4fe2fe4e94f80698144549bc254c318ae6d271924e64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6e666c6966652e6d7970696e6174612e636c6f75642f697066732f516d5144704845687a7673374c567551595931326f4b46376a4c7243746d7a41707a4b6f7858477041466d726b702f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _firstUri (string): https://nflife.mypinata.cloud/ipfs/QmQDpHEhzvs7LVuQYY12oKF7jLrCtmzApzKoxXGpAFmrkp/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [2] : 68747470733a2f2f6e666c6966652e6d7970696e6174612e636c6f75642f6970
Arg [3] : 66732f516d5144704845687a7673374c567551595931326f4b46376a4c724374
Arg [4] : 6d7a41707a4b6f7858477041466d726b702f0000000000000000000000000000


Deployed Bytecode Sourcemap

51557:3115:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45334:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34785:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34308:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52035:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45974:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54255:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54153:94;;;;;;;;;;;;;:::i;:::-;;35675:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45642:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51744:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52568:760;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53928:217;;;;;;;;;;;;;:::i;:::-;;36085:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46164:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54566:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32920:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32650:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12925:94;;;;;;;;;;;;;:::i;:::-;;51702:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51646:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52404:154;;;;;;;;;;;;;:::i;:::-;;12274:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33395:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51795:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35078:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36341:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33570:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51880:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52133:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51842:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35444:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53338:582;;;;;;;;;;;;;:::i;:::-;;51913:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13174:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45334:224;45436:4;45475:35;45460:50;;;:11;:50;;;;:90;;;;45514:36;45538:11;45514:23;:36::i;:::-;45460:90;45453:97;;45334:224;;;:::o;33226:100::-;33280:13;33313:5;33306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33226:100;:::o;34785:221::-;34861:7;34889:16;34897:7;34889;:16::i;:::-;34881:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34974:15;:24;34990:7;34974:24;;;;;;;;;;;;;;;;;;;;;34967:31;;34785:221;;;:::o;34308:411::-;34389:13;34405:23;34420:7;34405:14;:23::i;:::-;34389:39;;34453:5;34447:11;;:2;:11;;;;34439:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34547:5;34531:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;34556:37;34573:5;34580:12;:10;:12::i;:::-;34556:16;:37::i;:::-;34531:62;34509:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34690:21;34699:2;34703:7;34690:8;:21::i;:::-;34308:411;;;:::o;52035:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45974:113::-;46035:7;46062:10;:17;;;;46055:24;;45974:113;:::o;54255:303::-;12505:12;:10;:12::i;:::-;12494:23;;:7;:5;:7::i;:::-;:23;;;12486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54393:14:::1;54410:13;:11;:13::i;:::-;54393:30;;54434:9;54464:87;54480:15;54476:1;:19;54464:87;;;54517:22;54523:3;54537:1;54528:6;:10;;;;:::i;:::-;54517:5;:22::i;:::-;54497:3;;;;;:::i;:::-;;;;54464:87;;;12565:1;;54255:303:::0;;:::o;54153:94::-;12505:12;:10;:12::i;:::-;12494:23;;:7;:5;:7::i;:::-;:23;;;12486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54227:12:::1;;;;;;;;;;;54226:13;54211:12;;:28;;;;;;;;;;;;;;;;;;54153:94::o:0;35675:339::-;35870:41;35889:12;:10;:12::i;:::-;35903:7;35870:18;:41::i;:::-;35862:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35978:28;35988:4;35994:2;35998:7;35978:9;:28::i;:::-;35675:339;;;:::o;45642:256::-;45739:7;45775:23;45792:5;45775:16;:23::i;:::-;45767:5;:31;45759:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45864:12;:19;45877:5;45864:19;;;;;;;;;;;;;;;:26;45884:5;45864:26;;;;;;;;;;;;45857:33;;45642:256;;;;:::o;51744:46::-;51788:2;51744:46;:::o;52568:760::-;52645:12;;;;;;;;;;;52637:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51788:2;52715:6;:27;;52707:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51691:5;52799:25;52817:6;52799:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:46;;52791:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;52966:9;52945:17;52955:6;51827:10;52945:9;;:17;;;;:::i;:::-;:30;;52937:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53043:9;53038:97;53062:6;53058:1;:10;53038:97;;;53094:25;53100:3;53105:13;:11;:13::i;:::-;53094:5;:25::i;:::-;53070:3;;;;;:::i;:::-;;;;53038:97;;;;53175:1;53153:18;;:23;:95;;;;;51691:5;53181:13;:11;:13::i;:::-;:34;:66;;;;53238:9;;53219:15;:28;;53181:66;53153:95;53149:169;;;53290:12;53269:18;:33;;;;53149:169;52568:760;;:::o;53928:217::-;12505:12;:10;:12::i;:::-;12494:23;;:7;:5;:7::i;:::-;:23;;;12486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54048:1:::1;54031:13;;:18;54023:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;54125:12;54104:18;:33;;;;53928:217::o:0;36085:185::-;36223:39;36240:4;36246:2;36250:7;36223:39;;;;;;;;;;;;:16;:39::i;:::-;36085:185;;;:::o;46164:233::-;46239:7;46275:30;:28;:30::i;:::-;46267:5;:38;46259:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;46372:10;46383:5;46372:17;;;;;;;;;;;;;;;;;;;;;;;;46365:24;;46164:233;;;:::o;54566:101::-;12505:12;:10;:12::i;:::-;12494:23;;:7;:5;:7::i;:::-;:23;;;12486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54652:7:::1;54637:12;:22;;;;;;;;;;;;:::i;:::-;;54566:101:::0;:::o;32920:239::-;32992:7;33012:13;33028:7;:16;33036:7;33028:16;;;;;;;;;;;;;;;;;;;;;33012:32;;33080:1;33063:19;;:5;:19;;;;33055:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33146:5;33139:12;;;32920:239;;;:::o;32650:208::-;32722:7;32767:1;32750:19;;:5;:19;;;;32742:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32834:9;:16;32844:5;32834:16;;;;;;;;;;;;;;;;32827:23;;32650:208;;;:::o;12925:94::-;12505:12;:10;:12::i;:::-;12494:23;;:7;:5;:7::i;:::-;:23;;;12486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12990:21:::1;13008:1;12990:9;:21::i;:::-;12925:94::o:0;51702:37::-;;;;:::o;51646:50::-;51691:5;51646:50;:::o;52404:154::-;12505:12;:10;:12::i;:::-;12494:23;;:7;:5;:7::i;:::-;:23;;;12486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52457:15:::1;52475:21;52457:39;;51983:42;52507:32;;:41;52540:7;52507:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;12565:1;52404:154::o:0;12274:87::-;12320:7;12347:6;;;;;;;;;;;12340:13;;12274:87;:::o;33395:104::-;33451:13;33484:7;33477:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33395:104;:::o;51795:42::-;51827:10;51795:42;:::o;35078:295::-;35193:12;:10;:12::i;:::-;35181:24;;:8;:24;;;;35173:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35293:8;35248:18;:32;35267:12;:10;:12::i;:::-;35248:32;;;;;;;;;;;;;;;:42;35281:8;35248:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35346:8;35317:48;;35332:12;:10;:12::i;:::-;35317:48;;;35356:8;35317:48;;;;;;:::i;:::-;;;;;;;;35078:295;;:::o;36341:328::-;36516:41;36535:12;:10;:12::i;:::-;36549:7;36516:18;:41::i;:::-;36508:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;36622:39;36636:4;36642:2;36646:7;36655:5;36622:13;:39::i;:::-;36341:328;;;;:::o;33570:334::-;33643:13;33677:16;33685:7;33677;:16::i;:::-;33669:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33758:21;33782:10;:8;:10::i;:::-;33758:34;;33834:1;33816:7;33810:21;:25;:86;;;;;;;;;;;;;;;;;33862:7;33871:18;:7;:16;:18::i;:::-;33845:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33810:86;33803:93;;;33570:334;;;:::o;51880:28::-;;;;:::o;52133:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51842:33::-;;;;:::o;35444:164::-;35541:4;35565:18;:25;35584:5;35565:25;;;;;;;;;;;;;;;:35;35591:8;35565:35;;;;;;;;;;;;;;;;;;;;;;;;;35558:42;;35444:164;;;;:::o;53338:582::-;53412:1;53395:13;;:18;53387:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53488:1;53466:18;;:23;;53458:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51691:5;53581:18;;53571:29;53563:38;;:58;;;;:::i;:::-;53547:13;:74;;;;53675:3;53636:36;53653:18;;53636:12;:16;;:36;;;;:::i;:::-;:42;53632:147;;;51691:5;53744:1;53729:12;:16;;;;:::i;:::-;53719:27;53711:36;;:56;;;;:::i;:::-;53695:13;:72;;;;53632:147;53847:1;53830:13;;:18;53826:87;;;53881:20;53899:1;53881:13;;:17;;:20;;;;:::i;:::-;53865:13;:36;;;;53826:87;53338:582::o;51913:31::-;;;;;;;;;;;;;:::o;13174:192::-;12505:12;:10;:12::i;:::-;12494:23;;:7;:5;:7::i;:::-;:23;;;12486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13283:1:::1;13263:22;;:8;:22;;;;13255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13339:19;13349:8;13339:9;:19::i;:::-;13174:192:::0;:::o;32281:305::-;32383:4;32435:25;32420:40;;;:11;:40;;;;:105;;;;32492:33;32477:48;;;:11;:48;;;;32420:105;:158;;;;32542:36;32566:11;32542:23;:36::i;:::-;32420:158;32400:178;;32281:305;;;:::o;38179:127::-;38244:4;38296:1;38268:30;;:7;:16;38276:7;38268:16;;;;;;;;;;;;;;;;;;;;;:30;;;;38261:37;;38179:127;;;:::o;11062:98::-;11115:7;11142:10;11135:17;;11062:98;:::o;42161:174::-;42263:2;42236:15;:24;42252:7;42236:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42319:7;42315:2;42281:46;;42290:23;42305:7;42290:14;:23::i;:::-;42281:46;;;;;;;;;;;;42161:174;;:::o;40157:382::-;40251:1;40237:16;;:2;:16;;;;40229:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40310:16;40318:7;40310;:16::i;:::-;40309:17;40301:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40372:45;40401:1;40405:2;40409:7;40372:20;:45::i;:::-;40447:1;40430:9;:13;40440:2;40430:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40478:2;40459:7;:16;40467:7;40459:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40523:7;40519:2;40498:33;;40515:1;40498:33;;;;;;;;;;;;40157:382;;:::o;38473:348::-;38566:4;38591:16;38599:7;38591;:16::i;:::-;38583:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38667:13;38683:23;38698:7;38683:14;:23::i;:::-;38667:39;;38736:5;38725:16;;:7;:16;;;:51;;;;38769:7;38745:31;;:20;38757:7;38745:11;:20::i;:::-;:31;;;38725:51;:87;;;;38780:32;38797:5;38804:7;38780:16;:32::i;:::-;38725:87;38717:96;;;38473:348;;;;:::o;41465:578::-;41624:4;41597:31;;:23;41612:7;41597:14;:23::i;:::-;:31;;;41589:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41707:1;41693:16;;:2;:16;;;;41685:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41763:39;41784:4;41790:2;41794:7;41763:20;:39::i;:::-;41867:29;41884:1;41888:7;41867:8;:29::i;:::-;41928:1;41909:9;:15;41919:4;41909:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41957:1;41940:9;:13;41950:2;41940:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41988:2;41969:7;:16;41977:7;41969:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42027:7;42023:2;42008:27;;42017:4;42008:27;;;;;;;;;;;;41465:578;;;:::o;4202:98::-;4260:7;4291:1;4287;:5;;;;:::i;:::-;4280:12;;4202:98;;;;:::o;4940:::-;4998:7;5029:1;5025;:5;;;;:::i;:::-;5018:12;;4940:98;;;;:::o;13374:173::-;13430:16;13449:6;;;;;;;;;;;13430:25;;13475:8;13466:6;;:17;;;;;;;;;;;;;;;;;;13530:8;13499:40;;13520:8;13499:40;;;;;;;;;;;;13374:173;;:::o;37551:315::-;37708:28;37718:4;37724:2;37728:7;37708:9;:28::i;:::-;37755:48;37778:4;37784:2;37788:7;37797:5;37755:22;:48::i;:::-;37747:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;37551:315;;;;:::o;52281:113::-;52341:13;52374:12;52367:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52281:113;:::o;8678:723::-;8734:13;8964:1;8955:5;:10;8951:53;;;8982:10;;;;;;;;;;;;;;;;;;;;;8951:53;9014:12;9029:5;9014:20;;9045:14;9070:78;9085:1;9077:4;:9;9070:78;;9103:8;;;;;:::i;:::-;;;;9134:2;9126:10;;;;;:::i;:::-;;;9070:78;;;9158:19;9190:6;9180:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9158:39;;9208:154;9224:1;9215:5;:10;9208:154;;9252:1;9242:11;;;;;:::i;:::-;;;9319:2;9311:5;:10;;;;:::i;:::-;9298:2;:24;;;;:::i;:::-;9285:39;;9268:6;9275;9268:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;9348:2;9339:11;;;;;:::i;:::-;;;9208:154;;;9386:6;9372:21;;;;;8678:723;;;;:::o;4583:98::-;4641:7;4672:1;4668;:5;;;;:::i;:::-;4661:12;;4583:98;;;;:::o;24260:157::-;24345:4;24384:25;24369:40;;;:11;:40;;;;24362:47;;24260:157;;;:::o;47010:589::-;47154:45;47181:4;47187:2;47191:7;47154:26;:45::i;:::-;47232:1;47216:18;;:4;:18;;;47212:187;;;47251:40;47283:7;47251:31;:40::i;:::-;47212:187;;;47321:2;47313:10;;:4;:10;;;47309:90;;47340:47;47373:4;47379:7;47340:32;:47::i;:::-;47309:90;47212:187;47427:1;47413:16;;:2;:16;;;47409:183;;;47446:45;47483:7;47446:36;:45::i;:::-;47409:183;;;47519:4;47513:10;;:2;:10;;;47509:83;;47540:40;47568:2;47572:7;47540:27;:40::i;:::-;47509:83;47409:183;47010:589;;;:::o;42900:799::-;43055:4;43076:15;:2;:13;;;:15::i;:::-;43072:620;;;43128:2;43112:36;;;43149:12;:10;:12::i;:::-;43163:4;43169:7;43178:5;43112:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43108:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43371:1;43354:6;:13;:18;43350:272;;;43397:60;;;;;;;;;;:::i;:::-;;;;;;;;43350:272;43572:6;43566:13;43557:6;43553:2;43549:15;43542:38;43108:529;43245:41;;;43235:51;;;:6;:51;;;;43228:58;;;;;43072:620;43676:4;43669:11;;42900:799;;;;;;;:::o;44271:126::-;;;;:::o;48322:164::-;48426:10;:17;;;;48399:15;:24;48415:7;48399:24;;;;;;;;;;;:44;;;;48454:10;48470:7;48454:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48322:164;:::o;49113:988::-;49379:22;49429:1;49404:22;49421:4;49404:16;:22::i;:::-;:26;;;;:::i;:::-;49379:51;;49441:18;49462:17;:26;49480:7;49462:26;;;;;;;;;;;;49441:47;;49609:14;49595:10;:28;49591:328;;49640:19;49662:12;:18;49675:4;49662:18;;;;;;;;;;;;;;;:34;49681:14;49662:34;;;;;;;;;;;;49640:56;;49746:11;49713:12;:18;49726:4;49713:18;;;;;;;;;;;;;;;:30;49732:10;49713:30;;;;;;;;;;;:44;;;;49863:10;49830:17;:30;49848:11;49830:30;;;;;;;;;;;:43;;;;49591:328;;50015:17;:26;50033:7;50015:26;;;;;;;;;;;50008:33;;;50059:12;:18;50072:4;50059:18;;;;;;;;;;;;;;;:34;50078:14;50059:34;;;;;;;;;;;50052:41;;;49113:988;;;;:::o;50396:1079::-;50649:22;50694:1;50674:10;:17;;;;:21;;;;:::i;:::-;50649:46;;50706:18;50727:15;:24;50743:7;50727:24;;;;;;;;;;;;50706:45;;51078:19;51100:10;51111:14;51100:26;;;;;;;;;;;;;;;;;;;;;;;;51078:48;;51164:11;51139:10;51150;51139:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;51275:10;51244:15;:28;51260:11;51244:28;;;;;;;;;;;:41;;;;51416:15;:24;51432:7;51416:24;;;;;;;;;;;51409:31;;;51451:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50396:1079;;;;:::o;47900:221::-;47985:14;48002:20;48019:2;48002:16;:20::i;:::-;47985:37;;48060:7;48033:12;:16;48046:2;48033:16;;;;;;;;;;;;;;;:24;48050:6;48033:24;;;;;;;;;;;:34;;;;48107:6;48078:17;:26;48096:7;48078:26;;;;;;;;;;;:35;;;;47900:221;;;:::o;14320:387::-;14380:4;14588:12;14655:7;14643:20;14635:28;;14698:1;14691:4;:8;14684:15;;;14320:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:370::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:8;7763:2;7758:3;7754:12;7747:30;7803:2;7798:3;7794:12;7787:19;;7588:224;;;:::o;7818:375::-;;7981:67;8045:2;8040:3;7981:67;:::i;:::-;7974:74;;8078:34;8074:1;8069:3;8065:11;8058:55;8144:13;8139:2;8134:3;8130:12;8123:35;8184:2;8179:3;8175:12;8168:19;;7964:229;;;:::o;8199:382::-;;8362:67;8426:2;8421:3;8362:67;:::i;:::-;8355:74;;8459:34;8455:1;8450:3;8446:11;8439:55;8525:20;8520:2;8515:3;8511:12;8504:42;8572:2;8567:3;8563:12;8556:19;;8345:236;;;:::o;8587:370::-;;8750:67;8814:2;8809:3;8750:67;:::i;:::-;8743:74;;8847:34;8843:1;8838:3;8834:11;8827:55;8913:8;8908:2;8903:3;8899:12;8892:30;8948:2;8943:3;8939:12;8932:19;;8733:224;;;:::o;8963:326::-;;9126:67;9190:2;9185:3;9126:67;:::i;:::-;9119:74;;9223:30;9219:1;9214:3;9210:11;9203:51;9280:2;9275:3;9271:12;9264:19;;9109:180;;;:::o;9295:330::-;;9458:67;9522:2;9517:3;9458:67;:::i;:::-;9451:74;;9555:34;9551:1;9546:3;9542:11;9535:55;9616:2;9611:3;9607:12;9600:19;;9441:184;;;:::o;9631:368::-;;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9891:34;9887:1;9882:3;9878:11;9871:55;9957:6;9952:2;9947:3;9943:12;9936:28;9990:2;9985:3;9981:12;9974:19;;9777:222;;;:::o;10005:323::-;;10168:67;10232:2;10227:3;10168:67;:::i;:::-;10161:74;;10265:27;10261:1;10256:3;10252:11;10245:48;10319:2;10314:3;10310:12;10303:19;;10151:177;;;:::o;10334:376::-;;10497:67;10561:2;10556:3;10497:67;:::i;:::-;10490:74;;10594:34;10590:1;10585:3;10581:11;10574:55;10660:14;10655:2;10650:3;10646:12;10639:36;10701:2;10696:3;10692:12;10685:19;;10480:230;;;:::o;10716:365::-;;10879:67;10943:2;10938:3;10879:67;:::i;:::-;10872:74;;10976:34;10972:1;10967:3;10963:11;10956:55;11042:3;11037:2;11032:3;11028:12;11021:25;11072:2;11067:3;11063:12;11056:19;;10862:219;;;:::o;11087:327::-;;11250:67;11314:2;11309:3;11250:67;:::i;:::-;11243:74;;11347:31;11343:1;11338:3;11334:11;11327:52;11405:2;11400:3;11396:12;11389:19;;11233:181;;;:::o;11420:388::-;;11583:67;11647:2;11642:3;11583:67;:::i;:::-;11576:74;;11680:34;11676:1;11671:3;11667:11;11660:55;11746:26;11741:2;11736:3;11732:12;11725:48;11799:2;11794:3;11790:12;11783:19;;11566:242;;;:::o;11814:374::-;;11977:67;12041:2;12036:3;11977:67;:::i;:::-;11970:74;;12074:34;12070:1;12065:3;12061:11;12054:55;12140:12;12135:2;12130:3;12126:12;12119:34;12179:2;12174:3;12170:12;12163:19;;11960:228;;;:::o;12194:373::-;;12357:67;12421:2;12416:3;12357:67;:::i;:::-;12350:74;;12454:34;12450:1;12445:3;12441:11;12434:55;12520:11;12515:2;12510:3;12506:12;12499:33;12558:2;12553:3;12549:12;12542:19;;12340:227;;;:::o;12573:330::-;;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12833:34;12829:1;12824:3;12820:11;12813:55;12894:2;12889:3;12885:12;12878:19;;12719:184;;;:::o;12909:376::-;;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13169:34;13165:1;13160:3;13156:11;13149:55;13235:14;13230:2;13225:3;13221:12;13214:36;13276:2;13271:3;13267:12;13260:19;;13055:230;;;:::o;13291:366::-;;13454:67;13518:2;13513:3;13454:67;:::i;:::-;13447:74;;13551:34;13547:1;13542:3;13538:11;13531:55;13617:4;13612:2;13607:3;13603:12;13596:26;13648:2;13643:3;13639:12;13632:19;;13437:220;;;:::o;13663:330::-;;13826:67;13890:2;13885:3;13826:67;:::i;:::-;13819:74;;13923:34;13919:1;13914:3;13910:11;13903:55;13984:2;13979:3;13975:12;13968:19;;13809:184;;;:::o;13999:373::-;;14162:67;14226:2;14221:3;14162:67;:::i;:::-;14155:74;;14259:34;14255:1;14250:3;14246:11;14239:55;14325:11;14320:2;14315:3;14311:12;14304:33;14363:2;14358:3;14354:12;14347:19;;14145:227;;;:::o;14378:379::-;;14541:67;14605:2;14600:3;14541:67;:::i;:::-;14534:74;;14638:34;14634:1;14629:3;14625:11;14618:55;14704:17;14699:2;14694:3;14690:12;14683:39;14748:2;14743:3;14739:12;14732:19;;14524:233;;;:::o;14763:365::-;;14926:67;14990:2;14985:3;14926:67;:::i;:::-;14919:74;;15023:34;15019:1;15014:3;15010:11;15003:55;15089:3;15084:2;15079:3;15075:12;15068:25;15119:2;15114:3;15110:12;15103:19;;14909:219;;;:::o;15134:330::-;;15297:67;15361:2;15356:3;15297:67;:::i;:::-;15290:74;;15394:34;15390:1;15385:3;15381:11;15374:55;15455:2;15450:3;15446:12;15439:19;;15280:184;;;:::o;15470:381::-;;15633:67;15697:2;15692:3;15633:67;:::i;:::-;15626:74;;15730:34;15726:1;15721:3;15717:11;15710:55;15796:19;15791:2;15786:3;15782:12;15775:41;15842:2;15837:3;15833:12;15826:19;;15616:235;;;:::o;15857:376::-;;16020:67;16084:2;16079:3;16020:67;:::i;:::-;16013:74;;16117:34;16113:1;16108:3;16104:11;16097:55;16183:14;16178:2;16173:3;16169:12;16162:36;16224:2;16219:3;16215:12;16208:19;;16003:230;;;:::o;16239:118::-;16326:24;16344:5;16326:24;:::i;:::-;16321:3;16314:37;16304:53;;:::o;16363:435::-;;16565:95;16656:3;16647:6;16565:95;:::i;:::-;16558:102;;16677:95;16768:3;16759:6;16677:95;:::i;:::-;16670:102;;16789:3;16782:10;;16547:251;;;;;:::o;16804:222::-;;16935:2;16924:9;16920:18;16912:26;;16948:71;17016:1;17005:9;17001:17;16992:6;16948:71;:::i;:::-;16902:124;;;;:::o;17032:640::-;;17265:3;17254:9;17250:19;17242:27;;17279:71;17347:1;17336:9;17332:17;17323:6;17279:71;:::i;:::-;17360:72;17428:2;17417:9;17413:18;17404:6;17360:72;:::i;:::-;17442;17510:2;17499:9;17495:18;17486:6;17442:72;:::i;:::-;17561:9;17555:4;17551:20;17546:2;17535:9;17531:18;17524:48;17589:76;17660:4;17651:6;17589:76;:::i;:::-;17581:84;;17232:440;;;;;;;:::o;17678:210::-;;17803:2;17792:9;17788:18;17780:26;;17816:65;17878:1;17867:9;17863:17;17854:6;17816:65;:::i;:::-;17770:118;;;;:::o;17894:313::-;;18045:2;18034:9;18030:18;18022:26;;18094:9;18088:4;18084:20;18080:1;18069:9;18065:17;18058:47;18122:78;18195:4;18186:6;18122:78;:::i;:::-;18114:86;;18012:195;;;;:::o;18213:419::-;;18417:2;18406:9;18402:18;18394:26;;18466:9;18460:4;18456:20;18452:1;18441:9;18437:17;18430:47;18494:131;18620:4;18494:131;:::i;:::-;18486:139;;18384:248;;;:::o;18638:419::-;;18842:2;18831:9;18827:18;18819:26;;18891:9;18885:4;18881:20;18877:1;18866:9;18862:17;18855:47;18919:131;19045:4;18919:131;:::i;:::-;18911:139;;18809:248;;;:::o;19063:419::-;;19267:2;19256:9;19252:18;19244:26;;19316:9;19310:4;19306:20;19302:1;19291:9;19287:17;19280:47;19344:131;19470:4;19344:131;:::i;:::-;19336:139;;19234:248;;;:::o;19488:419::-;;19692:2;19681:9;19677:18;19669:26;;19741:9;19735:4;19731:20;19727:1;19716:9;19712:17;19705:47;19769:131;19895:4;19769:131;:::i;:::-;19761:139;;19659:248;;;:::o;19913:419::-;;20117:2;20106:9;20102:18;20094:26;;20166:9;20160:4;20156:20;20152:1;20141:9;20137:17;20130:47;20194:131;20320:4;20194:131;:::i;:::-;20186:139;;20084:248;;;:::o;20338:419::-;;20542:2;20531:9;20527:18;20519:26;;20591:9;20585:4;20581:20;20577:1;20566:9;20562:17;20555:47;20619:131;20745:4;20619:131;:::i;:::-;20611:139;;20509:248;;;:::o;20763:419::-;;20967:2;20956:9;20952:18;20944:26;;21016:9;21010:4;21006:20;21002:1;20991:9;20987:17;20980:47;21044:131;21170:4;21044:131;:::i;:::-;21036:139;;20934:248;;;:::o;21188:419::-;;21392:2;21381:9;21377:18;21369:26;;21441:9;21435:4;21431:20;21427:1;21416:9;21412:17;21405:47;21469:131;21595:4;21469:131;:::i;:::-;21461:139;;21359:248;;;:::o;21613:419::-;;21817:2;21806:9;21802:18;21794:26;;21866:9;21860:4;21856:20;21852:1;21841:9;21837:17;21830:47;21894:131;22020:4;21894:131;:::i;:::-;21886:139;;21784:248;;;:::o;22038:419::-;;22242:2;22231:9;22227:18;22219:26;;22291:9;22285:4;22281:20;22277:1;22266:9;22262:17;22255:47;22319:131;22445:4;22319:131;:::i;:::-;22311:139;;22209:248;;;:::o;22463:419::-;;22667:2;22656:9;22652:18;22644:26;;22716:9;22710:4;22706:20;22702:1;22691:9;22687:17;22680:47;22744:131;22870:4;22744:131;:::i;:::-;22736:139;;22634:248;;;:::o;22888:419::-;;23092:2;23081:9;23077:18;23069:26;;23141:9;23135:4;23131:20;23127:1;23116:9;23112:17;23105:47;23169:131;23295:4;23169:131;:::i;:::-;23161:139;;23059:248;;;:::o;23313:419::-;;23517:2;23506:9;23502:18;23494:26;;23566:9;23560:4;23556:20;23552:1;23541:9;23537:17;23530:47;23594:131;23720:4;23594:131;:::i;:::-;23586:139;;23484:248;;;:::o;23738:419::-;;23942:2;23931:9;23927:18;23919:26;;23991:9;23985:4;23981:20;23977:1;23966:9;23962:17;23955:47;24019:131;24145:4;24019:131;:::i;:::-;24011:139;;23909:248;;;:::o;24163:419::-;;24367:2;24356:9;24352:18;24344:26;;24416:9;24410:4;24406:20;24402:1;24391:9;24387:17;24380:47;24444:131;24570:4;24444:131;:::i;:::-;24436:139;;24334:248;;;:::o;24588:419::-;;24792:2;24781:9;24777:18;24769:26;;24841:9;24835:4;24831:20;24827:1;24816:9;24812:17;24805:47;24869:131;24995:4;24869:131;:::i;:::-;24861:139;;24759:248;;;:::o;25013:419::-;;25217:2;25206:9;25202:18;25194:26;;25266:9;25260:4;25256:20;25252:1;25241:9;25237:17;25230:47;25294:131;25420:4;25294:131;:::i;:::-;25286:139;;25184:248;;;:::o;25438:419::-;;25642:2;25631:9;25627:18;25619:26;;25691:9;25685:4;25681:20;25677:1;25666:9;25662:17;25655:47;25719:131;25845:4;25719:131;:::i;:::-;25711:139;;25609:248;;;:::o;25863:419::-;;26067:2;26056:9;26052:18;26044:26;;26116:9;26110:4;26106:20;26102:1;26091:9;26087:17;26080:47;26144:131;26270:4;26144:131;:::i;:::-;26136:139;;26034:248;;;:::o;26288:419::-;;26492:2;26481:9;26477:18;26469:26;;26541:9;26535:4;26531:20;26527:1;26516:9;26512:17;26505:47;26569:131;26695:4;26569:131;:::i;:::-;26561:139;;26459:248;;;:::o;26713:419::-;;26917:2;26906:9;26902:18;26894:26;;26966:9;26960:4;26956:20;26952:1;26941:9;26937:17;26930:47;26994:131;27120:4;26994:131;:::i;:::-;26986:139;;26884:248;;;:::o;27138:419::-;;27342:2;27331:9;27327:18;27319:26;;27391:9;27385:4;27381:20;27377:1;27366:9;27362:17;27355:47;27419:131;27545:4;27419:131;:::i;:::-;27411:139;;27309:248;;;:::o;27563:419::-;;27767:2;27756:9;27752:18;27744:26;;27816:9;27810:4;27806:20;27802:1;27791:9;27787:17;27780:47;27844:131;27970:4;27844:131;:::i;:::-;27836:139;;27734:248;;;:::o;27988:419::-;;28192:2;28181:9;28177:18;28169:26;;28241:9;28235:4;28231:20;28227:1;28216:9;28212:17;28205:47;28269:131;28395:4;28269:131;:::i;:::-;28261:139;;28159:248;;;:::o;28413:222::-;;28544:2;28533:9;28529:18;28521:26;;28557:71;28625:1;28614:9;28610:17;28601:6;28557:71;:::i;:::-;28511:124;;;;:::o;28641:283::-;;28707:2;28701:9;28691:19;;28749:4;28741:6;28737:17;28856:6;28844:10;28841:22;28820:18;28808:10;28805:34;28802:62;28799:2;;;28867:18;;:::i;:::-;28799:2;28907:10;28903:2;28896:22;28681:243;;;;:::o;28930:331::-;;29081:18;29073:6;29070:30;29067:2;;;29103:18;;:::i;:::-;29067:2;29188:4;29184:9;29177:4;29169:6;29165:17;29161:33;29153:41;;29249:4;29243;29239:15;29231:23;;28996:265;;;:::o;29267:332::-;;29419:18;29411:6;29408:30;29405:2;;;29441:18;;:::i;:::-;29405:2;29526:4;29522:9;29515:4;29507:6;29503:17;29499:33;29491:41;;29587:4;29581;29577:15;29569:23;;29334:265;;;:::o;29605:98::-;;29690:5;29684:12;29674:22;;29663:40;;;:::o;29709:99::-;;29795:5;29789:12;29779:22;;29768:40;;;:::o;29814:168::-;;29931:6;29926:3;29919:19;29971:4;29966:3;29962:14;29947:29;;29909:73;;;;:::o;29988:169::-;;30106:6;30101:3;30094:19;30146:4;30141:3;30137:14;30122:29;;30084:73;;;;:::o;30163:148::-;;30302:3;30287:18;;30277:34;;;;:::o;30317:305::-;;30376:20;30394:1;30376:20;:::i;:::-;30371:25;;30410:20;30428:1;30410:20;:::i;:::-;30405:25;;30564:1;30496:66;30492:74;30489:1;30486:81;30483:2;;;30570:18;;:::i;:::-;30483:2;30614:1;30611;30607:9;30600:16;;30361:261;;;;:::o;30628:185::-;;30685:20;30703:1;30685:20;:::i;:::-;30680:25;;30719:20;30737:1;30719:20;:::i;:::-;30714:25;;30758:1;30748:2;;30763:18;;:::i;:::-;30748:2;30805:1;30802;30798:9;30793:14;;30670:143;;;;:::o;30819:348::-;;30882:20;30900:1;30882:20;:::i;:::-;30877:25;;30916:20;30934:1;30916:20;:::i;:::-;30911:25;;31104:1;31036:66;31032:74;31029:1;31026:81;31021:1;31014:9;31007:17;31003:105;31000:2;;;31111:18;;:::i;:::-;31000:2;31159:1;31156;31152:9;31141:20;;30867:300;;;;:::o;31173:191::-;;31233:20;31251:1;31233:20;:::i;:::-;31228:25;;31267:20;31285:1;31267:20;:::i;:::-;31262:25;;31306:1;31303;31300:8;31297:2;;;31311:18;;:::i;:::-;31297:2;31356:1;31353;31349:9;31341:17;;31218:146;;;;:::o;31370:96::-;;31436:24;31454:5;31436:24;:::i;:::-;31425:35;;31415:51;;;:::o;31472:90::-;;31549:5;31542:13;31535:21;31524:32;;31514:48;;;:::o;31568:149::-;;31644:66;31637:5;31633:78;31622:89;;31612:105;;;:::o;31723:126::-;;31800:42;31793:5;31789:54;31778:65;;31768:81;;;:::o;31855:77::-;;31921:5;31910:16;;31900:32;;;:::o;31938:154::-;32022:6;32017:3;32012;31999:30;32084:1;32075:6;32070:3;32066:16;32059:27;31989:103;;;:::o;32098:307::-;32166:1;32176:113;32190:6;32187:1;32184:13;32176:113;;;32275:1;32270:3;32266:11;32260:18;32256:1;32251:3;32247:11;32240:39;32212:2;32209:1;32205:10;32200:15;;32176:113;;;32307:6;32304:1;32301:13;32298:2;;;32387:1;32378:6;32373:3;32369:16;32362:27;32298:2;32147:258;;;;:::o;32411:320::-;;32492:1;32486:4;32482:12;32472:22;;32539:1;32533:4;32529:12;32560:18;32550:2;;32616:4;32608:6;32604:17;32594:27;;32550:2;32678;32670:6;32667:14;32647:18;32644:38;32641:2;;;32697:18;;:::i;:::-;32641:2;32462:269;;;;:::o;32737:233::-;;32799:24;32817:5;32799:24;:::i;:::-;32790:33;;32845:66;32838:5;32835:77;32832:2;;;32915:18;;:::i;:::-;32832:2;32962:1;32955:5;32951:13;32944:20;;32780:190;;;:::o;32976:176::-;;33025:20;33043:1;33025:20;:::i;:::-;33020:25;;33059:20;33077:1;33059:20;:::i;:::-;33054:25;;33098:1;33088:2;;33103:18;;:::i;:::-;33088:2;33144:1;33141;33137:9;33132:14;;33010:142;;;;:::o;33158:180::-;33206:77;33203:1;33196:88;33303:4;33300:1;33293:15;33327:4;33324:1;33317:15;33344:180;33392:77;33389:1;33382:88;33489:4;33486:1;33479:15;33513:4;33510:1;33503:15;33530:180;33578:77;33575:1;33568:88;33675:4;33672:1;33665:15;33699:4;33696:1;33689:15;33716:180;33764:77;33761:1;33754:88;33861:4;33858:1;33851:15;33885:4;33882:1;33875:15;33902:102;;33994:2;33990:7;33985:2;33978:5;33974:14;33970:28;33960:38;;33950:54;;;:::o;34010:122::-;34083:24;34101:5;34083:24;:::i;:::-;34076:5;34073:35;34063:2;;34122:1;34119;34112:12;34063:2;34053:79;:::o;34138:116::-;34208:21;34223:5;34208:21;:::i;:::-;34201:5;34198:32;34188:2;;34244:1;34241;34234:12;34188:2;34178:76;:::o;34260:120::-;34332:23;34349:5;34332:23;:::i;:::-;34325:5;34322:34;34312:2;;34370:1;34367;34360:12;34312:2;34302:78;:::o;34386:122::-;34459:24;34477:5;34459:24;:::i;:::-;34452:5;34449:35;34439:2;;34498:1;34495;34488:12;34439:2;34429:79;:::o

Swarm Source

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