Source Code
Overview
ETH Balance
0.0025 ETH
Eth Value
$6.77 (@ $2,709.12/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 40 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 16330478 | 1121 days ago | IN | 0 ETH | 0.00073404 | ||||
| Public Mint | 16330472 | 1121 days ago | IN | 0.0025 ETH | 0.00136733 | ||||
| Withdraw | 16330365 | 1121 days ago | IN | 0 ETH | 0.00043276 | ||||
| Public Mint | 16330351 | 1121 days ago | IN | 0.0025 ETH | 0.00152572 | ||||
| Collect | 16330339 | 1121 days ago | IN | 0 ETH | 0.00161254 | ||||
| Public Mint | 16327704 | 1122 days ago | IN | 0.0025 ETH | 0.00156559 | ||||
| Public Mint | 16327698 | 1122 days ago | IN | 0.0025 ETH | 0.00148139 | ||||
| Public Mint | 16327685 | 1122 days ago | IN | 0.0025 ETH | 0.00159759 | ||||
| Public Mint | 16327684 | 1122 days ago | IN | 0.0025 ETH | 0.00152654 | ||||
| Public Mint | 16327682 | 1122 days ago | IN | 0.0025 ETH | 0.00156109 | ||||
| Public Mint | 16327676 | 1122 days ago | IN | 0.0025 ETH | 0.0017303 | ||||
| Public Mint | 16327676 | 1122 days ago | IN | 0.0025 ETH | 0.001806 | ||||
| Collect | 16327652 | 1122 days ago | IN | 0 ETH | 0.00273607 | ||||
| Public Mint | 16327641 | 1122 days ago | IN | 0.025 ETH | 0.00324586 | ||||
| Public Mint | 16327638 | 1122 days ago | IN | 0.0025 ETH | 0.00248332 | ||||
| Public Mint | 16327635 | 1122 days ago | IN | 0.025 ETH | 0.00322094 | ||||
| Public Mint | 16327634 | 1122 days ago | IN | 0.0025 ETH | 0.00187018 | ||||
| Pause | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066326 | ||||
| Public Mint | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066233 | ||||
| Public Mint | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066233 | ||||
| Public Mint | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066233 | ||||
| Public Mint | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066233 | ||||
| Public Mint | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066233 | ||||
| Public Mint | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066233 | ||||
| Public Mint | 16327630 | 1122 days ago | IN | 0 ETH | 0.00066233 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16330365 | 1121 days ago | 0.075 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TheColorDance
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-03 */ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOnwer() { 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 onlyOnwer { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOnwer { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; interface IMain { function balanceOf( address ) external view returns (uint); } pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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 erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). */ abstract contract Owneable is Ownable { address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1; modifier onlyOwner() { require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner"); _; } } /* * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, DefaultOperatorFilterer { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override onlyAllowedOperator(from) { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract TheColorDance is ERC721A, Owneable { string public baseURI = "ipfs://QmX3S68aeWKh5rnjWxKvHB6YpYYAXCjqTwVkJ4RD6CZbN1/"; string public contractURI = "ipfs://"; string public baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public MAX_PER_TX_FREE = 1; uint256 public free_max_supply = 1; uint256 public constant MAX_PER_TX = 10; uint256 public max_supply = 500; uint256 public price = 0.0025 ether; bool public paused = true; constructor() ERC721A("The Color Dance", "COLOR") {} function PublicMint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(max_supply >= totalSupply() + _amount, "All Gone"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No Contract minting."); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); if(free_max_supply >= totalSupply()){ require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx"); }else{ require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function Withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function Collect(uint256 quantity) external onlyOwner { _safeMint(_msgSender(), quantity); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function configPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function newbaseExtension(string memory newex) public onlyOwner { baseExtension = newex; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806036815260200162004df160369139600a90805190602001906200008a92919062000528565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9080519060200190620000d892919062000528565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200012692919062000528565b506001600d556001600e556101f4600f556608e1bc9bf040006010556001601160006101000a81548160ff0219169083151502179055503480156200016a57600080fd5b506040518060400160405280600f81526020017f54686520436f6c6f722044616e636500000000000000000000000000000000008152506040518060400160405280600581526020017f434f4c4f52000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003e3578015620002a9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200026f9291906200061d565b600060405180830381600087803b1580156200028a57600080fd5b505af11580156200029f573d6000803e3d6000fd5b50505050620003e2565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000363576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620003299291906200061d565b600060405180830381600087803b1580156200034457600080fd5b505af115801562000359573d6000803e3d6000fd5b50505050620003e1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003ac91906200064a565b600060405180830381600087803b158015620003c757600080fd5b505af1158015620003dc573d6000803e3d6000fd5b505050505b5b5b50508160029080519060200190620003fd92919062000528565b5080600390805190602001906200041692919062000528565b50620004276200045560201b60201c565b60008190555050506200044f620004436200045a60201b60201c565b6200046260201b60201c565b620006cb565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005369062000696565b90600052602060002090601f0160209004810192826200055a5760008555620005a6565b82601f106200057557805160ff1916838001178555620005a6565b82800160010185558215620005a6579182015b82811115620005a557825182559160200191906001019062000588565b5b509050620005b59190620005b9565b5090565b5b80821115620005d4576000816000905550600101620005ba565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060582620005d8565b9050919050565b6200061781620005f8565b82525050565b60006040820190506200063460008301856200060c565b6200064360208301846200060c565b9392505050565b60006020820190506200066160008301846200060c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006af57607f821691505b602082108103620006c557620006c462000667565b5b50919050565b61471680620006db6000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063db4a0f611161006f578063db4a0f6114610722578063e8a3d4851461074b578063e985e9c514610776578063f2fde38b146107b3578063f43a22dc146107dc57610204565b8063b88d4fde14610666578063c66828621461068f578063c87b56dd146106ba578063cd7c0326146106f757610204565b8063938e3d7b116100e7578063938e3d7b146105a257806395d89b41146105cb5780639fb17e34146105f6578063a035b1fe14610612578063a22cb4651461063d57610204565b806370a08231146104f8578063715018a6146105355780638a333b501461054c5780638da5cb5b1461057757610204565b80632aa808071161019b57806355f804b31161016a57806355f804b31461042557806357ea89b61461044e5780635c975abb146104655780636352211e146104905780636c0360eb146104cd57610204565b80632aa808071461037f5780633fe43822146103a857806342842e0e146103d1578063463fff79146103fa57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806326e987d71461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061362d565b610807565b60405161023d9190613675565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906136bc565b6108e9565b005b34801561027b57600080fd5b506102846109e1565b6040516102919190613782565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906137da565b610a73565b6040516102ce9190613848565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061388f565b610aef565b005b34801561030c57600080fd5b50610315610bf9565b60405161032291906138de565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906138f9565b610c10565b005b34801561036057600080fd5b50610369610df2565b60405161037691906138de565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190613a81565b610df8565b005b3480156103b457600080fd5b506103cf60048036038101906103ca91906137da565b610eed565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906138f9565b610fdc565b005b34801561040657600080fd5b5061040f6111de565b60405161041c91906138de565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613a81565b6111e4565b005b34801561045a57600080fd5b506104636112d9565b005b34801561047157600080fd5b5061047a611470565b6040516104879190613675565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906137da565b611483565b6040516104c49190613848565b60405180910390f35b3480156104d957600080fd5b506104e2611499565b6040516104ef9190613782565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190613aca565b611527565b60405161052c91906138de565b60405180910390f35b34801561054157600080fd5b5061054a6115f6565b005b34801561055857600080fd5b5061056161167e565b60405161056e91906138de565b60405180910390f35b34801561058357600080fd5b5061058c611684565b6040516105999190613848565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613a81565b6116ae565b005b3480156105d757600080fd5b506105e06117a3565b6040516105ed9190613782565b60405180910390f35b610610600480360381019061060b91906137da565b611835565b005b34801561061e57600080fd5b50610627611ad9565b60405161063491906138de565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613af7565b611adf565b005b34801561067257600080fd5b5061068d60048036038101906106889190613bd8565b611c56565b005b34801561069b57600080fd5b506106a4611f0f565b6040516106b19190613782565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906137da565b611f9d565b6040516106ee9190613782565b60405180910390f35b34801561070357600080fd5b5061070c612048565b6040516107199190613848565b60405180910390f35b34801561072e57600080fd5b50610749600480360381019061074491906137da565b612060565b005b34801561075757600080fd5b50610760612145565b60405161076d9190613782565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613c5b565b6121d3565b6040516107aa9190613675565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613aca565b6122b7565b005b3480156107e857600080fd5b506107f16123ae565b6040516107fe91906138de565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e257506108e1826123b3565b5b9050919050565b6108f161241d565b73ffffffffffffffffffffffffffffffffffffffff1661090f611684565b73ffffffffffffffffffffffffffffffffffffffff161480610985575061093461241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613ce7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6060600280546109f090613d36565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1c90613d36565b8015610a695780601f10610a3e57610100808354040283529160200191610a69565b820191906000526020600020905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b6000610a7e82612425565b610ab4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afa82611483565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8061241d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb25750610bb081610bab61241d565b6121d3565b155b15610be9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf4838383612473565b505050565b6000610c03612525565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610de0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c8257610c7d84848461252a565b610dec565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ccb929190613d67565b602060405180830381865afa158015610ce8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0c9190613da5565b8015610d9e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d5c929190613d67565b602060405180830381865afa158015610d79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9d9190613da5565b5b610ddf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dd69190613848565b60405180910390fd5b5b610deb84848461252a565b5b50505050565b600e5481565b610e0061241d565b73ffffffffffffffffffffffffffffffffffffffff16610e1e611684565b73ffffffffffffffffffffffffffffffffffffffff161480610e945750610e4361241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90613ce7565b60405180910390fd5b80600c9080519060200190610ee99291906134db565b5050565b610ef561241d565b73ffffffffffffffffffffffffffffffffffffffff16610f13611684565b73ffffffffffffffffffffffffffffffffffffffff161480610f895750610f3861241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613ce7565b60405180910390fd5b610fd9610fd361241d565b82612a19565b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111bc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361105e5761105984848460405180602001604052806000815250611c56565b6111d8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110a7929190613d67565b602060405180830381865afa1580156110c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e89190613da5565b801561117a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611138929190613d67565b602060405180830381865afa158015611155573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111799190613da5565b5b6111bb57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111b29190613848565b60405180910390fd5b5b6111d784848460405180602001604052806000815250611c56565b5b50505050565b600d5481565b6111ec61241d565b73ffffffffffffffffffffffffffffffffffffffff1661120a611684565b73ffffffffffffffffffffffffffffffffffffffff161480611280575061122f61241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690613ce7565b60405180910390fd5b80600a90805190602001906112d59291906134db565b5050565b6112e161241d565b73ffffffffffffffffffffffffffffffffffffffff166112ff611684565b73ffffffffffffffffffffffffffffffffffffffff161480611375575061132461241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613ce7565b60405180910390fd5b600047905060006113c361241d565b73ffffffffffffffffffffffffffffffffffffffff16826040516113e690613e03565b60006040518083038185875af1925050503d8060008114611423576040519150601f19603f3d011682016040523d82523d6000602084013e611428565b606091505b505090508061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390613e64565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061148e82612a37565b600001519050919050565b600a80546114a690613d36565b80601f01602080910402602001604051908101604052809291908181526020018280546114d290613d36565b801561151f5780601f106114f45761010080835404028352916020019161151f565b820191906000526020600020905b81548152906001019060200180831161150257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fe61241d565b73ffffffffffffffffffffffffffffffffffffffff1661161c611684565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613ce7565b60405180910390fd5b61167c6000612cc6565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116b661241d565b73ffffffffffffffffffffffffffffffffffffffff166116d4611684565b73ffffffffffffffffffffffffffffffffffffffff16148061174a57506116f961241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613ce7565b60405180910390fd5b80600b908051906020019061179f9291906134db565b5050565b6060600380546117b290613d36565b80601f01602080910402602001604051908101604052809291908181526020018280546117de90613d36565b801561182b5780601f106118005761010080835404028352916020019161182b565b820191906000526020600020905b81548152906001019060200180831161180e57829003601f168201915b5050505050905090565b600061183f61241d565b9050601160009054906101000a900460ff1615611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613ed0565b60405180910390fd5b8161189a610bf9565b6118a49190613f1f565b600f5410156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613fc1565b60405180910390fd5b6000821161192b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119229061402d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614099565b60405180910390fd5b81600a10156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614105565b60405180910390fd5b6119e5610bf9565b600e5410611a375781600d541015611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990614171565b60405180910390fd5b611acb565b81600a1015611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614105565b60405180910390fd5b3460105483611a8a9190614191565b14611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614237565b60405180910390fd5b5b611ad58183612a19565b5050565b60105481565b611ae761241d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b5861241d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c0561241d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c4a9190613675565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e91573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d3357611cc385858561252a565b611ce28473ffffffffffffffffffffffffffffffffffffffff16612d8c565b8015611cf75750611cf585858585612daf565b155b15611d2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f08565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611d7c929190613d67565b602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd9190613da5565b8015611e4f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e0d929190613d67565b602060405180830381865afa158015611e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e4e9190613da5565b5b611e9057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e879190613848565b60405180910390fd5b5b611e9c85858561252a565b611ebb8473ffffffffffffffffffffffffffffffffffffffff16612d8c565b8015611ed05750611ece85858585612daf565b155b15611f07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c8054611f1c90613d36565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4890613d36565b8015611f955780601f10611f6a57610100808354040283529160200191611f95565b820191906000526020600020905b815481529060010190602001808311611f7857829003601f168201915b505050505081565b6060611fa882612425565b611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde906142a3565b60405180910390fd5b6000600a8054611ff690613d36565b9050116120125760405180602001604052806000815250612041565b600a61201d83612eff565b600c60405160200161203193929190614393565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b61206861241d565b73ffffffffffffffffffffffffffffffffffffffff16612086611684565b73ffffffffffffffffffffffffffffffffffffffff1614806120fc57506120ab61241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290613ce7565b60405180910390fd5b8060108190555050565b600b805461215290613d36565b80601f016020809104026020016040519081016040528092919081815260200182805461217e90613d36565b80156121cb5780601f106121a0576101008083540402835291602001916121cb565b820191906000526020600020905b8154815290600101906020018083116121ae57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161223d9190613848565b602060405180830381865afa15801561225a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227e9190614402565b73ffffffffffffffffffffffffffffffffffffffff16036122a35760019150506122b1565b6122ad848461305f565b9150505b92915050565b6122bf61241d565b73ffffffffffffffffffffffffffffffffffffffff166122dd611684565b73ffffffffffffffffffffffffffffffffffffffff1614612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90613ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906144a1565b60405180910390fd5b6123ab81612cc6565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612430612525565b1115801561243f575060005482105b801561246c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061253582612a37565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661255c61241d565b73ffffffffffffffffffffffffffffffffffffffff16148061258f575061258e826000015161258961241d565b6121d3565b5b806125d4575061259d61241d565b73ffffffffffffffffffffffffffffffffffffffff166125bc84610a73565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061260d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612676576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126dc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126e985858560016130f3565b6126f96000848460000151612473565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036129a9576000548110156129a85782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1285858560016130f9565b5050505050565b612a338282604051806020016040528060008152506130ff565b5050565b612a3f613561565b600082905080612a4d612525565b11158015612a5c575060005481105b15612c8f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c8d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b71578092505050612cc1565b5b600115612c8c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c87578092505050612cc1565b612b72565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dd561241d565b8786866040518563ffffffff1660e01b8152600401612df79493929190614516565b6020604051808303816000875af1925050508015612e3357506040513d601f19601f82011682018060405250810190612e309190614577565b60015b612eac573d8060008114612e63576040519150601f19603f3d011682016040523d82523d6000602084013e612e68565b606091505b506000815103612ea4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612f46576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061305a565b600082905060005b60008214612f78578080612f61906145a4565b915050600a82612f71919061461b565b9150612f4e565b60008167ffffffffffffffff811115612f9457612f93613956565b5b6040519080825280601f01601f191660200182016040528015612fc65781602001600182028036833780820191505090505b5090505b6000851461305357600182612fdf919061464c565b9150600a85612fee9190614680565b6030612ffa9190613f1f565b60f81b8183815181106130105761300f6146b1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561304c919061461b565b9450612fca565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61310c8383836001613111565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361317d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036131b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131c460008683876130f3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561338e575061338d8773ffffffffffffffffffffffffffffffffffffffff16612d8c565b5b15613453575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134036000888480600101955088612daf565b613439576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361339457826000541461344e57600080fd5b6134be565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613454575b8160008190555050506134d460008683876130f9565b5050505050565b8280546134e790613d36565b90600052602060002090601f0160209004810192826135095760008555613550565b82601f1061352257805160ff1916838001178555613550565b82800160010185558215613550579182015b8281111561354f578251825591602001919060010190613534565b5b50905061355d91906135a4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135bd5760008160009055506001016135a5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61360a816135d5565b811461361557600080fd5b50565b60008135905061362781613601565b92915050565b600060208284031215613643576136426135cb565b5b600061365184828501613618565b91505092915050565b60008115159050919050565b61366f8161365a565b82525050565b600060208201905061368a6000830184613666565b92915050565b6136998161365a565b81146136a457600080fd5b50565b6000813590506136b681613690565b92915050565b6000602082840312156136d2576136d16135cb565b5b60006136e0848285016136a7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613723578082015181840152602081019050613708565b83811115613732576000848401525b50505050565b6000601f19601f8301169050919050565b6000613754826136e9565b61375e81856136f4565b935061376e818560208601613705565b61377781613738565b840191505092915050565b6000602082019050818103600083015261379c8184613749565b905092915050565b6000819050919050565b6137b7816137a4565b81146137c257600080fd5b50565b6000813590506137d4816137ae565b92915050565b6000602082840312156137f0576137ef6135cb565b5b60006137fe848285016137c5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061383282613807565b9050919050565b61384281613827565b82525050565b600060208201905061385d6000830184613839565b92915050565b61386c81613827565b811461387757600080fd5b50565b60008135905061388981613863565b92915050565b600080604083850312156138a6576138a56135cb565b5b60006138b48582860161387a565b92505060206138c5858286016137c5565b9150509250929050565b6138d8816137a4565b82525050565b60006020820190506138f360008301846138cf565b92915050565b600080600060608486031215613912576139116135cb565b5b60006139208682870161387a565b93505060206139318682870161387a565b9250506040613942868287016137c5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61398e82613738565b810181811067ffffffffffffffff821117156139ad576139ac613956565b5b80604052505050565b60006139c06135c1565b90506139cc8282613985565b919050565b600067ffffffffffffffff8211156139ec576139eb613956565b5b6139f582613738565b9050602081019050919050565b82818337600083830152505050565b6000613a24613a1f846139d1565b6139b6565b905082815260208101848484011115613a4057613a3f613951565b5b613a4b848285613a02565b509392505050565b600082601f830112613a6857613a6761394c565b5b8135613a78848260208601613a11565b91505092915050565b600060208284031215613a9757613a966135cb565b5b600082013567ffffffffffffffff811115613ab557613ab46135d0565b5b613ac184828501613a53565b91505092915050565b600060208284031215613ae057613adf6135cb565b5b6000613aee8482850161387a565b91505092915050565b60008060408385031215613b0e57613b0d6135cb565b5b6000613b1c8582860161387a565b9250506020613b2d858286016136a7565b9150509250929050565b600067ffffffffffffffff821115613b5257613b51613956565b5b613b5b82613738565b9050602081019050919050565b6000613b7b613b7684613b37565b6139b6565b905082815260208101848484011115613b9757613b96613951565b5b613ba2848285613a02565b509392505050565b600082601f830112613bbf57613bbe61394c565b5b8135613bcf848260208601613b68565b91505092915050565b60008060008060808587031215613bf257613bf16135cb565b5b6000613c008782880161387a565b9450506020613c118782880161387a565b9350506040613c22878288016137c5565b925050606085013567ffffffffffffffff811115613c4357613c426135d0565b5b613c4f87828801613baa565b91505092959194509250565b60008060408385031215613c7257613c716135cb565b5b6000613c808582860161387a565b9250506020613c918582860161387a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cd16020836136f4565b9150613cdc82613c9b565b602082019050919050565b60006020820190508181036000830152613d0081613cc4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4e57607f821691505b602082108103613d6157613d60613d07565b5b50919050565b6000604082019050613d7c6000830185613839565b613d896020830184613839565b9392505050565b600081519050613d9f81613690565b92915050565b600060208284031215613dbb57613dba6135cb565b5b6000613dc984828501613d90565b91505092915050565b600081905092915050565b50565b6000613ded600083613dd2565b9150613df882613ddd565b600082019050919050565b6000613e0e82613de0565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613e4e600e836136f4565b9150613e5982613e18565b602082019050919050565b60006020820190508181036000830152613e7d81613e41565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613eba6006836136f4565b9150613ec582613e84565b602082019050919050565b60006020820190508181036000830152613ee981613ead565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2a826137a4565b9150613f35836137a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6a57613f69613ef0565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b6000613fab6008836136f4565b9150613fb682613f75565b602082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614017600a836136f4565b915061402282613fe1565b602082019050919050565b600060208201905081810360008301526140468161400a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b60006140836014836136f4565b915061408e8261404d565b602082019050919050565b600060208201905081810360008301526140b281614076565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b60006140ef6016836136f4565b91506140fa826140b9565b602082019050919050565b6000602082019050818103600083015261411e816140e2565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b600061415b6016836136f4565b915061416682614125565b602082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b600061419c826137a4565b91506141a7836137a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141e0576141df613ef0565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b60006142216016836136f4565b915061422c826141eb565b602082019050919050565b6000602082019050818103600083015261425081614214565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061428d6015836136f4565b915061429882614257565b602082019050919050565b600060208201905081810360008301526142bc81614280565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546142f081613d36565b6142fa81866142c3565b94506001821660008114614315576001811461432657614359565b60ff19831686528186019350614359565b61432f856142ce565b60005b8381101561435157815481890152600182019150602081019050614332565b838801955050505b50505092915050565b600061436d826136e9565b61437781856142c3565b9350614387818560208601613705565b80840191505092915050565b600061439f82866142e3565b91506143ab8285614362565b91506143b782846142e3565b9150819050949350505050565b60006143cf82613827565b9050919050565b6143df816143c4565b81146143ea57600080fd5b50565b6000815190506143fc816143d6565b92915050565b600060208284031215614418576144176135cb565b5b6000614426848285016143ed565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061448b6026836136f4565b91506144968261442f565b604082019050919050565b600060208201905081810360008301526144ba8161447e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144e8826144c1565b6144f281856144cc565b9350614502818560208601613705565b61450b81613738565b840191505092915050565b600060808201905061452b6000830187613839565b6145386020830186613839565b61454560408301856138cf565b818103606083015261455781846144dd565b905095945050505050565b60008151905061457181613601565b92915050565b60006020828403121561458d5761458c6135cb565b5b600061459b84828501614562565b91505092915050565b60006145af826137a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145e1576145e0613ef0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614626826137a4565b9150614631836137a4565b925082614641576146406145ec565b5b828204905092915050565b6000614657826137a4565b9150614662836137a4565b92508282101561467557614674613ef0565b5b828203905092915050565b600061468b826137a4565b9150614696836137a4565b9250826146a6576146a56145ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207ffe378fc2b34ed2fc83701a6798252237a5bcb7261f7d75caaf7628ff52f1d364736f6c634300080d0033697066733a2f2f516d58335336386165574b6835726e6a57784b76484236597059594158436a715477566b4a34524436435a624e312f
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063db4a0f611161006f578063db4a0f6114610722578063e8a3d4851461074b578063e985e9c514610776578063f2fde38b146107b3578063f43a22dc146107dc57610204565b8063b88d4fde14610666578063c66828621461068f578063c87b56dd146106ba578063cd7c0326146106f757610204565b8063938e3d7b116100e7578063938e3d7b146105a257806395d89b41146105cb5780639fb17e34146105f6578063a035b1fe14610612578063a22cb4651461063d57610204565b806370a08231146104f8578063715018a6146105355780638a333b501461054c5780638da5cb5b1461057757610204565b80632aa808071161019b57806355f804b31161016a57806355f804b31461042557806357ea89b61461044e5780635c975abb146104655780636352211e146104905780636c0360eb146104cd57610204565b80632aa808071461037f5780633fe43822146103a857806342842e0e146103d1578063463fff79146103fa57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806326e987d71461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061362d565b610807565b60405161023d9190613675565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906136bc565b6108e9565b005b34801561027b57600080fd5b506102846109e1565b6040516102919190613782565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906137da565b610a73565b6040516102ce9190613848565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061388f565b610aef565b005b34801561030c57600080fd5b50610315610bf9565b60405161032291906138de565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906138f9565b610c10565b005b34801561036057600080fd5b50610369610df2565b60405161037691906138de565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190613a81565b610df8565b005b3480156103b457600080fd5b506103cf60048036038101906103ca91906137da565b610eed565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906138f9565b610fdc565b005b34801561040657600080fd5b5061040f6111de565b60405161041c91906138de565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613a81565b6111e4565b005b34801561045a57600080fd5b506104636112d9565b005b34801561047157600080fd5b5061047a611470565b6040516104879190613675565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906137da565b611483565b6040516104c49190613848565b60405180910390f35b3480156104d957600080fd5b506104e2611499565b6040516104ef9190613782565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190613aca565b611527565b60405161052c91906138de565b60405180910390f35b34801561054157600080fd5b5061054a6115f6565b005b34801561055857600080fd5b5061056161167e565b60405161056e91906138de565b60405180910390f35b34801561058357600080fd5b5061058c611684565b6040516105999190613848565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613a81565b6116ae565b005b3480156105d757600080fd5b506105e06117a3565b6040516105ed9190613782565b60405180910390f35b610610600480360381019061060b91906137da565b611835565b005b34801561061e57600080fd5b50610627611ad9565b60405161063491906138de565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613af7565b611adf565b005b34801561067257600080fd5b5061068d60048036038101906106889190613bd8565b611c56565b005b34801561069b57600080fd5b506106a4611f0f565b6040516106b19190613782565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906137da565b611f9d565b6040516106ee9190613782565b60405180910390f35b34801561070357600080fd5b5061070c612048565b6040516107199190613848565b60405180910390f35b34801561072e57600080fd5b50610749600480360381019061074491906137da565b612060565b005b34801561075757600080fd5b50610760612145565b60405161076d9190613782565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613c5b565b6121d3565b6040516107aa9190613675565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613aca565b6122b7565b005b3480156107e857600080fd5b506107f16123ae565b6040516107fe91906138de565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e257506108e1826123b3565b5b9050919050565b6108f161241d565b73ffffffffffffffffffffffffffffffffffffffff1661090f611684565b73ffffffffffffffffffffffffffffffffffffffff161480610985575061093461241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613ce7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6060600280546109f090613d36565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1c90613d36565b8015610a695780601f10610a3e57610100808354040283529160200191610a69565b820191906000526020600020905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b6000610a7e82612425565b610ab4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afa82611483565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8061241d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb25750610bb081610bab61241d565b6121d3565b155b15610be9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf4838383612473565b505050565b6000610c03612525565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610de0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c8257610c7d84848461252a565b610dec565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ccb929190613d67565b602060405180830381865afa158015610ce8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0c9190613da5565b8015610d9e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d5c929190613d67565b602060405180830381865afa158015610d79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9d9190613da5565b5b610ddf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dd69190613848565b60405180910390fd5b5b610deb84848461252a565b5b50505050565b600e5481565b610e0061241d565b73ffffffffffffffffffffffffffffffffffffffff16610e1e611684565b73ffffffffffffffffffffffffffffffffffffffff161480610e945750610e4361241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90613ce7565b60405180910390fd5b80600c9080519060200190610ee99291906134db565b5050565b610ef561241d565b73ffffffffffffffffffffffffffffffffffffffff16610f13611684565b73ffffffffffffffffffffffffffffffffffffffff161480610f895750610f3861241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613ce7565b60405180910390fd5b610fd9610fd361241d565b82612a19565b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111bc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361105e5761105984848460405180602001604052806000815250611c56565b6111d8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110a7929190613d67565b602060405180830381865afa1580156110c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e89190613da5565b801561117a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611138929190613d67565b602060405180830381865afa158015611155573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111799190613da5565b5b6111bb57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111b29190613848565b60405180910390fd5b5b6111d784848460405180602001604052806000815250611c56565b5b50505050565b600d5481565b6111ec61241d565b73ffffffffffffffffffffffffffffffffffffffff1661120a611684565b73ffffffffffffffffffffffffffffffffffffffff161480611280575061122f61241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690613ce7565b60405180910390fd5b80600a90805190602001906112d59291906134db565b5050565b6112e161241d565b73ffffffffffffffffffffffffffffffffffffffff166112ff611684565b73ffffffffffffffffffffffffffffffffffffffff161480611375575061132461241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613ce7565b60405180910390fd5b600047905060006113c361241d565b73ffffffffffffffffffffffffffffffffffffffff16826040516113e690613e03565b60006040518083038185875af1925050503d8060008114611423576040519150601f19603f3d011682016040523d82523d6000602084013e611428565b606091505b505090508061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390613e64565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061148e82612a37565b600001519050919050565b600a80546114a690613d36565b80601f01602080910402602001604051908101604052809291908181526020018280546114d290613d36565b801561151f5780601f106114f45761010080835404028352916020019161151f565b820191906000526020600020905b81548152906001019060200180831161150257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fe61241d565b73ffffffffffffffffffffffffffffffffffffffff1661161c611684565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613ce7565b60405180910390fd5b61167c6000612cc6565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116b661241d565b73ffffffffffffffffffffffffffffffffffffffff166116d4611684565b73ffffffffffffffffffffffffffffffffffffffff16148061174a57506116f961241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613ce7565b60405180910390fd5b80600b908051906020019061179f9291906134db565b5050565b6060600380546117b290613d36565b80601f01602080910402602001604051908101604052809291908181526020018280546117de90613d36565b801561182b5780601f106118005761010080835404028352916020019161182b565b820191906000526020600020905b81548152906001019060200180831161180e57829003601f168201915b5050505050905090565b600061183f61241d565b9050601160009054906101000a900460ff1615611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613ed0565b60405180910390fd5b8161189a610bf9565b6118a49190613f1f565b600f5410156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613fc1565b60405180910390fd5b6000821161192b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119229061402d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614099565b60405180910390fd5b81600a10156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614105565b60405180910390fd5b6119e5610bf9565b600e5410611a375781600d541015611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990614171565b60405180910390fd5b611acb565b81600a1015611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614105565b60405180910390fd5b3460105483611a8a9190614191565b14611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614237565b60405180910390fd5b5b611ad58183612a19565b5050565b60105481565b611ae761241d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b5861241d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c0561241d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c4a9190613675565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e91573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d3357611cc385858561252a565b611ce28473ffffffffffffffffffffffffffffffffffffffff16612d8c565b8015611cf75750611cf585858585612daf565b155b15611d2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f08565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611d7c929190613d67565b602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd9190613da5565b8015611e4f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e0d929190613d67565b602060405180830381865afa158015611e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e4e9190613da5565b5b611e9057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e879190613848565b60405180910390fd5b5b611e9c85858561252a565b611ebb8473ffffffffffffffffffffffffffffffffffffffff16612d8c565b8015611ed05750611ece85858585612daf565b155b15611f07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c8054611f1c90613d36565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4890613d36565b8015611f955780601f10611f6a57610100808354040283529160200191611f95565b820191906000526020600020905b815481529060010190602001808311611f7857829003601f168201915b505050505081565b6060611fa882612425565b611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde906142a3565b60405180910390fd5b6000600a8054611ff690613d36565b9050116120125760405180602001604052806000815250612041565b600a61201d83612eff565b600c60405160200161203193929190614393565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b61206861241d565b73ffffffffffffffffffffffffffffffffffffffff16612086611684565b73ffffffffffffffffffffffffffffffffffffffff1614806120fc57506120ab61241d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290613ce7565b60405180910390fd5b8060108190555050565b600b805461215290613d36565b80601f016020809104026020016040519081016040528092919081815260200182805461217e90613d36565b80156121cb5780601f106121a0576101008083540402835291602001916121cb565b820191906000526020600020905b8154815290600101906020018083116121ae57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161223d9190613848565b602060405180830381865afa15801561225a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227e9190614402565b73ffffffffffffffffffffffffffffffffffffffff16036122a35760019150506122b1565b6122ad848461305f565b9150505b92915050565b6122bf61241d565b73ffffffffffffffffffffffffffffffffffffffff166122dd611684565b73ffffffffffffffffffffffffffffffffffffffff1614612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90613ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906144a1565b60405180910390fd5b6123ab81612cc6565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612430612525565b1115801561243f575060005482105b801561246c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061253582612a37565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661255c61241d565b73ffffffffffffffffffffffffffffffffffffffff16148061258f575061258e826000015161258961241d565b6121d3565b5b806125d4575061259d61241d565b73ffffffffffffffffffffffffffffffffffffffff166125bc84610a73565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061260d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612676576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126dc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126e985858560016130f3565b6126f96000848460000151612473565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036129a9576000548110156129a85782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1285858560016130f9565b5050505050565b612a338282604051806020016040528060008152506130ff565b5050565b612a3f613561565b600082905080612a4d612525565b11158015612a5c575060005481105b15612c8f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c8d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b71578092505050612cc1565b5b600115612c8c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c87578092505050612cc1565b612b72565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dd561241d565b8786866040518563ffffffff1660e01b8152600401612df79493929190614516565b6020604051808303816000875af1925050508015612e3357506040513d601f19601f82011682018060405250810190612e309190614577565b60015b612eac573d8060008114612e63576040519150601f19603f3d011682016040523d82523d6000602084013e612e68565b606091505b506000815103612ea4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612f46576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061305a565b600082905060005b60008214612f78578080612f61906145a4565b915050600a82612f71919061461b565b9150612f4e565b60008167ffffffffffffffff811115612f9457612f93613956565b5b6040519080825280601f01601f191660200182016040528015612fc65781602001600182028036833780820191505090505b5090505b6000851461305357600182612fdf919061464c565b9150600a85612fee9190614680565b6030612ffa9190613f1f565b60f81b8183815181106130105761300f6146b1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561304c919061461b565b9450612fca565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61310c8383836001613111565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361317d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036131b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131c460008683876130f3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561338e575061338d8773ffffffffffffffffffffffffffffffffffffffff16612d8c565b5b15613453575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134036000888480600101955088612daf565b613439576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361339457826000541461344e57600080fd5b6134be565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613454575b8160008190555050506134d460008683876130f9565b5050505050565b8280546134e790613d36565b90600052602060002090601f0160209004810192826135095760008555613550565b82601f1061352257805160ff1916838001178555613550565b82800160010185558215613550579182015b8281111561354f578251825591602001919060010190613534565b5b50905061355d91906135a4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135bd5760008160009055506001016135a5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61360a816135d5565b811461361557600080fd5b50565b60008135905061362781613601565b92915050565b600060208284031215613643576136426135cb565b5b600061365184828501613618565b91505092915050565b60008115159050919050565b61366f8161365a565b82525050565b600060208201905061368a6000830184613666565b92915050565b6136998161365a565b81146136a457600080fd5b50565b6000813590506136b681613690565b92915050565b6000602082840312156136d2576136d16135cb565b5b60006136e0848285016136a7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613723578082015181840152602081019050613708565b83811115613732576000848401525b50505050565b6000601f19601f8301169050919050565b6000613754826136e9565b61375e81856136f4565b935061376e818560208601613705565b61377781613738565b840191505092915050565b6000602082019050818103600083015261379c8184613749565b905092915050565b6000819050919050565b6137b7816137a4565b81146137c257600080fd5b50565b6000813590506137d4816137ae565b92915050565b6000602082840312156137f0576137ef6135cb565b5b60006137fe848285016137c5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061383282613807565b9050919050565b61384281613827565b82525050565b600060208201905061385d6000830184613839565b92915050565b61386c81613827565b811461387757600080fd5b50565b60008135905061388981613863565b92915050565b600080604083850312156138a6576138a56135cb565b5b60006138b48582860161387a565b92505060206138c5858286016137c5565b9150509250929050565b6138d8816137a4565b82525050565b60006020820190506138f360008301846138cf565b92915050565b600080600060608486031215613912576139116135cb565b5b60006139208682870161387a565b93505060206139318682870161387a565b9250506040613942868287016137c5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61398e82613738565b810181811067ffffffffffffffff821117156139ad576139ac613956565b5b80604052505050565b60006139c06135c1565b90506139cc8282613985565b919050565b600067ffffffffffffffff8211156139ec576139eb613956565b5b6139f582613738565b9050602081019050919050565b82818337600083830152505050565b6000613a24613a1f846139d1565b6139b6565b905082815260208101848484011115613a4057613a3f613951565b5b613a4b848285613a02565b509392505050565b600082601f830112613a6857613a6761394c565b5b8135613a78848260208601613a11565b91505092915050565b600060208284031215613a9757613a966135cb565b5b600082013567ffffffffffffffff811115613ab557613ab46135d0565b5b613ac184828501613a53565b91505092915050565b600060208284031215613ae057613adf6135cb565b5b6000613aee8482850161387a565b91505092915050565b60008060408385031215613b0e57613b0d6135cb565b5b6000613b1c8582860161387a565b9250506020613b2d858286016136a7565b9150509250929050565b600067ffffffffffffffff821115613b5257613b51613956565b5b613b5b82613738565b9050602081019050919050565b6000613b7b613b7684613b37565b6139b6565b905082815260208101848484011115613b9757613b96613951565b5b613ba2848285613a02565b509392505050565b600082601f830112613bbf57613bbe61394c565b5b8135613bcf848260208601613b68565b91505092915050565b60008060008060808587031215613bf257613bf16135cb565b5b6000613c008782880161387a565b9450506020613c118782880161387a565b9350506040613c22878288016137c5565b925050606085013567ffffffffffffffff811115613c4357613c426135d0565b5b613c4f87828801613baa565b91505092959194509250565b60008060408385031215613c7257613c716135cb565b5b6000613c808582860161387a565b9250506020613c918582860161387a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cd16020836136f4565b9150613cdc82613c9b565b602082019050919050565b60006020820190508181036000830152613d0081613cc4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4e57607f821691505b602082108103613d6157613d60613d07565b5b50919050565b6000604082019050613d7c6000830185613839565b613d896020830184613839565b9392505050565b600081519050613d9f81613690565b92915050565b600060208284031215613dbb57613dba6135cb565b5b6000613dc984828501613d90565b91505092915050565b600081905092915050565b50565b6000613ded600083613dd2565b9150613df882613ddd565b600082019050919050565b6000613e0e82613de0565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613e4e600e836136f4565b9150613e5982613e18565b602082019050919050565b60006020820190508181036000830152613e7d81613e41565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613eba6006836136f4565b9150613ec582613e84565b602082019050919050565b60006020820190508181036000830152613ee981613ead565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2a826137a4565b9150613f35836137a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6a57613f69613ef0565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b6000613fab6008836136f4565b9150613fb682613f75565b602082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614017600a836136f4565b915061402282613fe1565b602082019050919050565b600060208201905081810360008301526140468161400a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b60006140836014836136f4565b915061408e8261404d565b602082019050919050565b600060208201905081810360008301526140b281614076565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b60006140ef6016836136f4565b91506140fa826140b9565b602082019050919050565b6000602082019050818103600083015261411e816140e2565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b600061415b6016836136f4565b915061416682614125565b602082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b600061419c826137a4565b91506141a7836137a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141e0576141df613ef0565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b60006142216016836136f4565b915061422c826141eb565b602082019050919050565b6000602082019050818103600083015261425081614214565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061428d6015836136f4565b915061429882614257565b602082019050919050565b600060208201905081810360008301526142bc81614280565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546142f081613d36565b6142fa81866142c3565b94506001821660008114614315576001811461432657614359565b60ff19831686528186019350614359565b61432f856142ce565b60005b8381101561435157815481890152600182019150602081019050614332565b838801955050505b50505092915050565b600061436d826136e9565b61437781856142c3565b9350614387818560208601613705565b80840191505092915050565b600061439f82866142e3565b91506143ab8285614362565b91506143b782846142e3565b9150819050949350505050565b60006143cf82613827565b9050919050565b6143df816143c4565b81146143ea57600080fd5b50565b6000815190506143fc816143d6565b92915050565b600060208284031215614418576144176135cb565b5b6000614426848285016143ed565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061448b6026836136f4565b91506144968261442f565b604082019050919050565b600060208201905081810360008301526144ba8161447e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144e8826144c1565b6144f281856144cc565b9350614502818560208601613705565b61450b81613738565b840191505092915050565b600060808201905061452b6000830187613839565b6145386020830186613839565b61454560408301856138cf565b818103606083015261455781846144dd565b905095945050505050565b60008151905061457181613601565b92915050565b60006020828403121561458d5761458c6135cb565b5b600061459b84828501614562565b91505092915050565b60006145af826137a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145e1576145e0613ef0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614626826137a4565b9150614631836137a4565b925082614641576146406145ec565b5b828204905092915050565b6000614657826137a4565b9150614662836137a4565b92508282101561467557614674613ef0565b5b828203905092915050565b600061468b826137a4565b9150614696836137a4565b9250826146a6576146a56145ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207ffe378fc2b34ed2fc83701a6798252237a5bcb7261f7d75caaf7628ff52f1d364736f6c634300080d0033
Deployed Bytecode Sourcemap
50545:3078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33024:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52726:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36409:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37912:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37475:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32273:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38769:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50912:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53146:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52610:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39028:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50871:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52815:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52393:209;;;;;;;;;;;;;:::i;:::-;;51085:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36218:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50598:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33393:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2630:103;;;;;;;;;;;;;:::i;:::-;;50999:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1979:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52923:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36578:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51179:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51037:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38188:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39302:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50729:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53258:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50773:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53047:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50685:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51930:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2888:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50953:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33024:305;33126:4;33178:25;33163:40;;;:11;:40;;;;:105;;;;33235:33;33220:48;;;:11;:48;;;;33163:105;:158;;;;33285:36;33309:11;33285:23;:36::i;:::-;33163:158;33143:178;;33024:305;;;:::o;52726:81::-;29478:12;:10;:12::i;:::-;29467:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;29504:12;:10;:12::i;:::-;29494:22;;:6;;;;;;;;;;;:22;;;29467:49;29459:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;52793:6:::1;52784;;:15;;;;;;;;;;;;;;;;;;52726:81:::0;:::o;36409:100::-;36463:13;36496:5;36489:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36409:100;:::o;37912:204::-;37980:7;38005:16;38013:7;38005;:16::i;:::-;38000:64;;38030:34;;;;;;;;;;;;;;38000:64;38084:15;:24;38100:7;38084:24;;;;;;;;;;;;;;;;;;;;;38077:31;;37912:204;;;:::o;37475:371::-;37548:13;37564:24;37580:7;37564:15;:24::i;:::-;37548:40;;37609:5;37603:11;;:2;:11;;;37599:48;;37623:24;;;;;;;;;;;;;;37599:48;37680:5;37664:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;37690:37;37707:5;37714:12;:10;:12::i;:::-;37690:16;:37::i;:::-;37689:38;37664:63;37660:138;;;37751:35;;;;;;;;;;;;;;37660:138;37810:28;37819:2;37823:7;37832:5;37810:8;:28::i;:::-;37537:309;37475:371;;:::o;32273:303::-;32317:7;32542:15;:13;:15::i;:::-;32527:12;;32511:13;;:28;:46;32504:53;;32273:303;:::o;38769:188::-;38904:4;15697:1;14511:42;15651:43;;;:47;15647:699;;;15938:10;15930:18;;:4;:18;;;15926:85;;38921:28:::1;38931:4;38937:2;38941:7;38921:9;:28::i;:::-;15989:7:::0;;15926:85;14511:42;16071:40;;;16120:4;16127:10;16071:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;14511:42;16167:40;;;16216:4;16223;16167:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16071:157;16025:310;;16308:10;16289:30;;;;;;;;;;;:::i;:::-;;;;;;;;16025:310;15647:699;38921:28:::1;38931:4;38937:2;38941:7;38921:9;:28::i;:::-;38769:188:::0;;;;;:::o;50912:34::-;;;;:::o;53146:104::-;29478:12;:10;:12::i;:::-;29467:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;29504:12;:10;:12::i;:::-;29494:22;;:6;;;;;;;;;;;:22;;;29467:49;29459:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;53237:5:::1;53221:13;:21;;;;;;;;;;;;:::i;:::-;;53146:104:::0;:::o;52610:106::-;29478:12;:10;:12::i;:::-;29467:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;29504:12;:10;:12::i;:::-;29494:22;;:6;;;;;;;;;;;:22;;;29467:49;29459:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;52675:33:::1;52685:12;:10;:12::i;:::-;52699:8;52675:9;:33::i;:::-;52610:106:::0;:::o;39028:203::-;39167:4;15697:1;14511:42;15651:43;;;:47;15647:699;;;15938:10;15930:18;;:4;:18;;;15926:85;;39184:39:::1;39201:4;39207:2;39211:7;39184:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;15989:7:::0;;15926:85;14511:42;16071:40;;;16120:4;16127:10;16071:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;14511:42;16167:40;;;16216:4;16223;16167:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16071:157;16025:310;;16308:10;16289:30;;;;;;;;;;;:::i;:::-;;;;;;;;16025:310;15647:699;39184:39:::1;39201:4;39207:2;39211:7;39184:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;39028:203:::0;;;;;:::o;50871:34::-;;;;:::o;52815:100::-;29478:12;:10;:12::i;:::-;29467:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;29504:12;:10;:12::i;:::-;29494:22;;:6;;;;;;;;;;;:22;;;29467:49;29459:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;52899:8:::1;52889:7;:18;;;;;;;;;;;;:::i;:::-;;52815:100:::0;:::o;52393:209::-;29478:12;:10;:12::i;:::-;29467:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;29504:12;:10;:12::i;:::-;29494:22;;:6;;;;;;;;;;;:22;;;29467:49;29459:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;52443:15:::1;52461:21;52443:39;;52494:12;52512;:10;:12::i;:::-;:17;;52537:7;52512:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52493:56;;;52568:7;52560:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;52432:170;;52393:209::o:0;51085:25::-;;;;;;;;;;;;;:::o;36218:124::-;36282:7;36309:20;36321:7;36309:11;:20::i;:::-;:25;;;36302:32;;36218:124;;;:::o;50598:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33393:206::-;33457:7;33498:1;33481:19;;:5;:19;;;33477:60;;33509:28;;;;;;;;;;;;;;33477:60;33563:12;:19;33576:5;33563:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;33555:36;;33548:43;;33393:206;;;:::o;2630:103::-;2210:12;:10;:12::i;:::-;2199:23;;:7;:5;:7::i;:::-;:23;;;2191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2695:30:::1;2722:1;2695:18;:30::i;:::-;2630:103::o:0;50999:31::-;;;;:::o;1979:87::-;2025:7;2052:6;;;;;;;;;;;2045:13;;1979:87;:::o;52923:116::-;29478:12;:10;:12::i;:::-;29467:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;29504:12;:10;:12::i;:::-;29494:22;;:6;;;;;;;;;;;:22;;;29467:49;29459:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;53019:12:::1;53005:11;:26;;;;;;;;;;;;:::i;:::-;;52923:116:::0;:::o;36578:104::-;36634:13;36667:7;36660:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36578:104;:::o;51179:739::-;51246:15;51264:12;:10;:12::i;:::-;51246:30;;51296:6;;;;;;;;;;;51295:7;51287:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;51362:7;51346:13;:11;:13::i;:::-;:23;;;;:::i;:::-;51332:10;;:37;;51324:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51411:1;51401:7;:11;51393:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;51459:7;51446:20;;:9;:20;;;51438:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;51524:7;50990:2;51510:21;;51502:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51600:13;:11;:13::i;:::-;51581:15;;:32;51578:291;;51656:7;51637:15;;:26;;51629:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51578:291;;;51744:7;50990:2;51730:21;;51722:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51821:9;51812:5;;51802:7;:15;;;;:::i;:::-;:28;51794:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51578:291;51883:27;51893:7;51902;51883:9;:27::i;:::-;51233:685;51179:739;:::o;51037:35::-;;;;:::o;38188:279::-;38291:12;:10;:12::i;:::-;38279:24;;:8;:24;;;38275:54;;38312:17;;;;;;;;;;;;;;38275:54;38387:8;38342:18;:32;38361:12;:10;:12::i;:::-;38342:32;;;;;;;;;;;;;;;:42;38375:8;38342:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38440:8;38411:48;;38426:12;:10;:12::i;:::-;38411:48;;;38450:8;38411:48;;;;;;:::i;:::-;;;;;;;;38188:279;;:::o;39302:387::-;39470:4;15697:1;14511:42;15651:43;;;:47;15647:699;;;15938:10;15930:18;;:4;:18;;;15926:85;;39487:28:::1;39497:4;39503:2;39507:7;39487:9;:28::i;:::-;39530:15;:2;:13;;;:15::i;:::-;:76;;;;;39550:56;39581:4;39587:2;39591:7;39600:5;39550:30;:56::i;:::-;39549:57;39530:76;39526:156;;;39630:40;;;;;;;;;;;;;;39526:156;15989:7:::0;;15926:85;14511:42;16071:40;;;16120:4;16127:10;16071:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;14511:42;16167:40;;;16216:4;16223;16167:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16071:157;16025:310;;16308:10;16289:30;;;;;;;;;;;:::i;:::-;;;;;;;;16025:310;15647:699;39487:28:::1;39497:4;39503:2;39507:7;39487:9;:28::i;:::-;39530:15;:2;:13;;;:15::i;:::-;:76;;;;;39550:56;39581:4;39587:2;39591:7;39600:5;39550:30;:56::i;:::-;39549:57;39530:76;39526:156;;;39630:40;;;;;;;;;;;;;;39526:156;39302:387:::0;;;;;;:::o;50729:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53258:362::-;53324:13;53358:17;53366:8;53358:7;:17::i;:::-;53350:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;53443:1;53425:7;53419:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;53501:7;53525:26;53542:8;53525:16;:26::i;:::-;53568:13;53468:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53419:193;53412:200;;53258:362;;;:::o;50773:89::-;50820:42;50773:89;:::o;53047:91::-;29478:12;:10;:12::i;:::-;29467:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;29504:12;:10;:12::i;:::-;29494:22;;:6;;;;;;;;;;;:22;;;29467:49;29459:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;53122:8:::1;53114:5;:16;;;;53047:91:::0;:::o;50685:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51930:455::-;52055:4;52150:27;50820:42;52150:65;;52271:8;52230:49;;52238:13;:21;;;52260:5;52238:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52230:49;;;52226:93;;52303:4;52296:11;;;;;52226:93;52338:39;52361:5;52368:8;52338:22;:39::i;:::-;52331:46;;;51930:455;;;;;:::o;2888:201::-;2210:12;:10;:12::i;:::-;2199:23;;:7;:5;:7::i;:::-;:23;;;2191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2997:1:::1;2977:22;;:8;:22;;::::0;2969:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3053:28;3072:8;3053:18;:28::i;:::-;2888:201:::0;:::o;50953:39::-;50990:2;50953:39;:::o;28099:157::-;28184:4;28223:25;28208:40;;;:11;:40;;;;28201:47;;28099:157;;;:::o;720:98::-;773:7;800:10;793:17;;720:98;:::o;39944:187::-;40001:4;40044:7;40025:15;:13;:15::i;:::-;:26;;:53;;;;;40065:13;;40055:7;:23;40025:53;:98;;;;;40096:11;:20;40108:7;40096:20;;;;;;;;;;;:27;;;;;;;;;;;;40095:28;40025:98;40018:105;;39944:187;;;:::o;47555:196::-;47697:2;47670:15;:24;47686:7;47670:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47735:7;47731:2;47715:28;;47724:5;47715:28;;;;;;;;;;;;47555:196;;;:::o;31997:92::-;32053:7;31997:92;:::o;43057:2112::-;43172:35;43210:20;43222:7;43210:11;:20::i;:::-;43172:58;;43243:22;43285:13;:18;;;43269:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;43320:50;43337:13;:18;;;43357:12;:10;:12::i;:::-;43320:16;:50::i;:::-;43269:101;:154;;;;43411:12;:10;:12::i;:::-;43387:36;;:20;43399:7;43387:11;:20::i;:::-;:36;;;43269:154;43243:181;;43442:17;43437:66;;43468:35;;;;;;;;;;;;;;43437:66;43540:4;43518:26;;:13;:18;;;:26;;;43514:67;;43553:28;;;;;;;;;;;;;;43514:67;43610:1;43596:16;;:2;:16;;;43592:52;;43621:23;;;;;;;;;;;;;;43592:52;43657:43;43679:4;43685:2;43689:7;43698:1;43657:21;:43::i;:::-;43765:49;43782:1;43786:7;43795:13;:18;;;43765:8;:49::i;:::-;44140:1;44110:12;:18;44123:4;44110:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44184:1;44156:12;:16;44169:2;44156:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44230:2;44202:11;:20;44214:7;44202:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;44292:15;44247:11;:20;44259:7;44247:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;44560:19;44592:1;44582:7;:11;44560:33;;44653:1;44612:43;;:11;:24;44624:11;44612:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;44608:445;;44837:13;;44823:11;:27;44819:219;;;44907:13;:18;;;44875:11;:24;44887:11;44875:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;44990:13;:28;;;44948:11;:24;44960:11;44948:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;44819:219;44608:445;44085:979;45100:7;45096:2;45081:27;;45090:4;45081:27;;;;;;;;;;;;45119:42;45140:4;45146:2;45150:7;45159:1;45119:20;:42::i;:::-;43161:2008;;43057:2112;;;:::o;40139:104::-;40208:27;40218:2;40222:8;40208:27;;;;;;;;;;;;:9;:27::i;:::-;40139:104;;:::o;35048:1108::-;35109:21;;:::i;:::-;35143:12;35158:7;35143:22;;35226:4;35207:15;:13;:15::i;:::-;:23;;:47;;;;;35241:13;;35234:4;:20;35207:47;35203:886;;;35275:31;35309:11;:17;35321:4;35309:17;;;;;;;;;;;35275:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35350:9;:16;;;35345:729;;35421:1;35395:28;;:9;:14;;;:28;;;35391:101;;35459:9;35452:16;;;;;;35391:101;35794:261;35801:4;35794:261;;;35834:6;;;;;;;;35879:11;:17;35891:4;35879:17;;;;;;;;;;;35867:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35953:1;35927:28;;:9;:14;;;:28;;;35923:109;;35995:9;35988:16;;;;;;35923:109;35794:261;;;35345:729;35256:833;35203:886;36117:31;;;;;;;;;;;;;;35048:1108;;;;:::o;3249:191::-;3323:16;3342:6;;;;;;;;;;;3323:25;;3368:8;3359:6;;:17;;;;;;;;;;;;;;;;;;3423:8;3392:40;;3413:8;3392:40;;;;;;;;;;;;3312:128;3249:191;:::o;17876:326::-;17936:4;18193:1;18171:7;:19;;;:23;18164:30;;17876:326;;;:::o;48243:667::-;48406:4;48443:2;48427:36;;;48464:12;:10;:12::i;:::-;48478:4;48484:7;48493:5;48427:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48423:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48678:1;48661:6;:13;:18;48657:235;;48707:40;;;;;;;;;;;;;;48657:235;48850:6;48844:13;48835:6;48831:2;48827:15;48820:38;48423:480;48556:45;;;48546:55;;;:6;:55;;;;48539:62;;;48243:667;;;;;;:::o;25496:723::-;25552:13;25782:1;25773:5;:10;25769:53;;25800:10;;;;;;;;;;;;;;;;;;;;;25769:53;25832:12;25847:5;25832:20;;25863:14;25888:78;25903:1;25895:4;:9;25888:78;;25921:8;;;;;:::i;:::-;;;;25952:2;25944:10;;;;;:::i;:::-;;;25888:78;;;25976:19;26008:6;25998:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25976:39;;26026:154;26042:1;26033:5;:10;26026:154;;26070:1;26060:11;;;;;:::i;:::-;;;26137:2;26129:5;:10;;;;:::i;:::-;26116:2;:24;;;;:::i;:::-;26103:39;;26086:6;26093;26086:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;26166:2;26157:11;;;;;:::i;:::-;;;26026:154;;;26204:6;26190:21;;;;;25496:723;;;;:::o;38538:164::-;38635:4;38659:18;:25;38678:5;38659:25;;;;;;;;;;;;;;;:35;38685:8;38659:35;;;;;;;;;;;;;;;;;;;;;;;;;38652:42;;38538:164;;;;:::o;49558:159::-;;;;;:::o;50376:158::-;;;;;:::o;40606:163::-;40729:32;40735:2;40739:8;40749:5;40756:4;40729:5;:32::i;:::-;40606:163;;;:::o;41028:1775::-;41167:20;41190:13;;41167:36;;41232:1;41218:16;;:2;:16;;;41214:48;;41243:19;;;;;;;;;;;;;;41214:48;41289:1;41277:8;:13;41273:44;;41299:18;;;;;;;;;;;;;;41273:44;41330:61;41360:1;41364:2;41368:12;41382:8;41330:21;:61::i;:::-;41703:8;41668:12;:16;41681:2;41668:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41767:8;41727:12;:16;41740:2;41727:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41826:2;41793:11;:25;41805:12;41793:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41893:15;41843:11;:25;41855:12;41843:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41926:20;41949:12;41926:35;;41976:11;42005:8;41990:12;:23;41976:37;;42034:4;:23;;;;;42042:15;:2;:13;;;:15::i;:::-;42034:23;42030:641;;;42078:314;42134:12;42130:2;42109:38;;42126:1;42109:38;;;;;;;;;;;;42175:69;42214:1;42218:2;42222:14;;;;;;42238:5;42175:30;:69::i;:::-;42170:174;;42280:40;;;;;;;;;;;;;;42170:174;42387:3;42371:12;:19;42078:314;;42473:12;42456:13;;:29;42452:43;;42487:8;;;42452:43;42030:641;;;42536:120;42592:14;;;;;;42588:2;42567:40;;42584:1;42567:40;;;;;;;;;;;;42651:3;42635:12;:19;42536:120;;42030:641;42701:12;42685:13;:28;;;;41643:1082;;42735:60;42764:1;42768:2;42772:12;42786:8;42735:20;:60::i;:::-;41156:1647;41028:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:332::-;14068:4;14106:2;14095:9;14091:18;14083:26;;14119:71;14187:1;14176:9;14172:17;14163:6;14119:71;:::i;:::-;14200:72;14268:2;14257:9;14253:18;14244:6;14200:72;:::i;:::-;13947:332;;;;;:::o;14285:137::-;14339:5;14370:6;14364:13;14355:22;;14386:30;14410:5;14386:30;:::i;:::-;14285:137;;;;:::o;14428:345::-;14495:6;14544:2;14532:9;14523:7;14519:23;14515:32;14512:119;;;14550:79;;:::i;:::-;14512:119;14670:1;14695:61;14748:7;14739:6;14728:9;14724:22;14695:61;:::i;:::-;14685:71;;14641:125;14428:345;;;;:::o;14779:147::-;14880:11;14917:3;14902:18;;14779:147;;;;:::o;14932:114::-;;:::o;15052:398::-;15211:3;15232:83;15313:1;15308:3;15232:83;:::i;:::-;15225:90;;15324:93;15413:3;15324:93;:::i;:::-;15442:1;15437:3;15433:11;15426:18;;15052:398;;;:::o;15456:379::-;15640:3;15662:147;15805:3;15662:147;:::i;:::-;15655:154;;15826:3;15819:10;;15456:379;;;:::o;15841:164::-;15981:16;15977:1;15969:6;15965:14;15958:40;15841:164;:::o;16011:366::-;16153:3;16174:67;16238:2;16233:3;16174:67;:::i;:::-;16167:74;;16250:93;16339:3;16250:93;:::i;:::-;16368:2;16363:3;16359:12;16352:19;;16011:366;;;:::o;16383:419::-;16549:4;16587:2;16576:9;16572:18;16564:26;;16636:9;16630:4;16626:20;16622:1;16611:9;16607:17;16600:47;16664:131;16790:4;16664:131;:::i;:::-;16656:139;;16383:419;;;:::o;16808:156::-;16948:8;16944:1;16936:6;16932:14;16925:32;16808:156;:::o;16970:365::-;17112:3;17133:66;17197:1;17192:3;17133:66;:::i;:::-;17126:73;;17208:93;17297:3;17208:93;:::i;:::-;17326:2;17321:3;17317:12;17310:19;;16970:365;;;:::o;17341:419::-;17507:4;17545:2;17534:9;17530:18;17522:26;;17594:9;17588:4;17584:20;17580:1;17569:9;17565:17;17558:47;17622:131;17748:4;17622:131;:::i;:::-;17614:139;;17341:419;;;:::o;17766:180::-;17814:77;17811:1;17804:88;17911:4;17908:1;17901:15;17935:4;17932:1;17925:15;17952:305;17992:3;18011:20;18029:1;18011:20;:::i;:::-;18006:25;;18045:20;18063:1;18045:20;:::i;:::-;18040:25;;18199:1;18131:66;18127:74;18124:1;18121:81;18118:107;;;18205:18;;:::i;:::-;18118:107;18249:1;18246;18242:9;18235:16;;17952:305;;;;:::o;18263:158::-;18403:10;18399:1;18391:6;18387:14;18380:34;18263:158;:::o;18427:365::-;18569:3;18590:66;18654:1;18649:3;18590:66;:::i;:::-;18583:73;;18665:93;18754:3;18665:93;:::i;:::-;18783:2;18778:3;18774:12;18767:19;;18427:365;;;:::o;18798:419::-;18964:4;19002:2;18991:9;18987:18;18979:26;;19051:9;19045:4;19041:20;19037:1;19026:9;19022:17;19015:47;19079:131;19205:4;19079:131;:::i;:::-;19071:139;;18798:419;;;:::o;19223:160::-;19363:12;19359:1;19351:6;19347:14;19340:36;19223:160;:::o;19389:366::-;19531:3;19552:67;19616:2;19611:3;19552:67;:::i;:::-;19545:74;;19628:93;19717:3;19628:93;:::i;:::-;19746:2;19741:3;19737:12;19730:19;;19389:366;;;:::o;19761:419::-;19927:4;19965:2;19954:9;19950:18;19942:26;;20014:9;20008:4;20004:20;20000:1;19989:9;19985:17;19978:47;20042:131;20168:4;20042:131;:::i;:::-;20034:139;;19761:419;;;:::o;20186:170::-;20326:22;20322:1;20314:6;20310:14;20303:46;20186:170;:::o;20362:366::-;20504:3;20525:67;20589:2;20584:3;20525:67;:::i;:::-;20518:74;;20601:93;20690:3;20601:93;:::i;:::-;20719:2;20714:3;20710:12;20703:19;;20362:366;;;:::o;20734:419::-;20900:4;20938:2;20927:9;20923:18;20915:26;;20987:9;20981:4;20977:20;20973:1;20962:9;20958:17;20951:47;21015:131;21141:4;21015:131;:::i;:::-;21007:139;;20734:419;;;:::o;21159:172::-;21299:24;21295:1;21287:6;21283:14;21276:48;21159:172;:::o;21337:366::-;21479:3;21500:67;21564:2;21559:3;21500:67;:::i;:::-;21493:74;;21576:93;21665:3;21576:93;:::i;:::-;21694:2;21689:3;21685:12;21678:19;;21337:366;;;:::o;21709:419::-;21875:4;21913:2;21902:9;21898:18;21890:26;;21962:9;21956:4;21952:20;21948:1;21937:9;21933:17;21926:47;21990:131;22116:4;21990:131;:::i;:::-;21982:139;;21709:419;;;:::o;22134:172::-;22274:24;22270:1;22262:6;22258:14;22251:48;22134:172;:::o;22312:366::-;22454:3;22475:67;22539:2;22534:3;22475:67;:::i;:::-;22468:74;;22551:93;22640:3;22551:93;:::i;:::-;22669:2;22664:3;22660:12;22653:19;;22312:366;;;:::o;22684:419::-;22850:4;22888:2;22877:9;22873:18;22865:26;;22937:9;22931:4;22927:20;22923:1;22912:9;22908:17;22901:47;22965:131;23091:4;22965:131;:::i;:::-;22957:139;;22684:419;;;:::o;23109:348::-;23149:7;23172:20;23190:1;23172:20;:::i;:::-;23167:25;;23206:20;23224:1;23206:20;:::i;:::-;23201:25;;23394:1;23326:66;23322:74;23319:1;23316:81;23311:1;23304:9;23297:17;23293:105;23290:131;;;23401:18;;:::i;:::-;23290:131;23449:1;23446;23442:9;23431:20;;23109:348;;;;:::o;23463:172::-;23603:24;23599:1;23591:6;23587:14;23580:48;23463:172;:::o;23641:366::-;23783:3;23804:67;23868:2;23863:3;23804:67;:::i;:::-;23797:74;;23880:93;23969:3;23880:93;:::i;:::-;23998:2;23993:3;23989:12;23982:19;;23641:366;;;:::o;24013:419::-;24179:4;24217:2;24206:9;24202:18;24194:26;;24266:9;24260:4;24256:20;24252:1;24241:9;24237:17;24230:47;24294:131;24420:4;24294:131;:::i;:::-;24286:139;;24013:419;;;:::o;24438:171::-;24578:23;24574:1;24566:6;24562:14;24555:47;24438:171;:::o;24615:366::-;24757:3;24778:67;24842:2;24837:3;24778:67;:::i;:::-;24771:74;;24854:93;24943:3;24854:93;:::i;:::-;24972:2;24967:3;24963:12;24956:19;;24615:366;;;:::o;24987:419::-;25153:4;25191:2;25180:9;25176:18;25168:26;;25240:9;25234:4;25230:20;25226:1;25215:9;25211:17;25204:47;25268:131;25394:4;25268:131;:::i;:::-;25260:139;;24987:419;;;:::o;25412:148::-;25514:11;25551:3;25536:18;;25412:148;;;;:::o;25566:141::-;25615:4;25638:3;25630:11;;25661:3;25658:1;25651:14;25695:4;25692:1;25682:18;25674:26;;25566:141;;;:::o;25737:845::-;25840:3;25877:5;25871:12;25906:36;25932:9;25906:36;:::i;:::-;25958:89;26040:6;26035:3;25958:89;:::i;:::-;25951:96;;26078:1;26067:9;26063:17;26094:1;26089:137;;;;26240:1;26235:341;;;;26056:520;;26089:137;26173:4;26169:9;26158;26154:25;26149:3;26142:38;26209:6;26204:3;26200:16;26193:23;;26089:137;;26235:341;26302:38;26334:5;26302:38;:::i;:::-;26362:1;26376:154;26390:6;26387:1;26384:13;26376:154;;;26464:7;26458:14;26454:1;26449:3;26445:11;26438:35;26514:1;26505:7;26501:15;26490:26;;26412:4;26409:1;26405:12;26400:17;;26376:154;;;26559:6;26554:3;26550:16;26543:23;;26242:334;;26056:520;;25844:738;;25737:845;;;;:::o;26588:377::-;26694:3;26722:39;26755:5;26722:39;:::i;:::-;26777:89;26859:6;26854:3;26777:89;:::i;:::-;26770:96;;26875:52;26920:6;26915:3;26908:4;26901:5;26897:16;26875:52;:::i;:::-;26952:6;26947:3;26943:16;26936:23;;26698:267;26588:377;;;;:::o;26971:583::-;27193:3;27215:92;27303:3;27294:6;27215:92;:::i;:::-;27208:99;;27324:95;27415:3;27406:6;27324:95;:::i;:::-;27317:102;;27436:92;27524:3;27515:6;27436:92;:::i;:::-;27429:99;;27545:3;27538:10;;26971:583;;;;;;:::o;27560:125::-;27626:7;27655:24;27673:5;27655:24;:::i;:::-;27644:35;;27560:125;;;:::o;27691:180::-;27793:53;27840:5;27793:53;:::i;:::-;27786:5;27783:64;27773:92;;27861:1;27858;27851:12;27773:92;27691:180;:::o;27877:201::-;27963:5;27994:6;27988:13;27979:22;;28010:62;28066:5;28010:62;:::i;:::-;27877:201;;;;:::o;28084:409::-;28183:6;28232:2;28220:9;28211:7;28207:23;28203:32;28200:119;;;28238:79;;:::i;:::-;28200:119;28358:1;28383:93;28468:7;28459:6;28448:9;28444:22;28383:93;:::i;:::-;28373:103;;28329:157;28084:409;;;;:::o;28499:225::-;28639:34;28635:1;28627:6;28623:14;28616:58;28708:8;28703:2;28695:6;28691:15;28684:33;28499:225;:::o;28730:366::-;28872:3;28893:67;28957:2;28952:3;28893:67;:::i;:::-;28886:74;;28969:93;29058:3;28969:93;:::i;:::-;29087:2;29082:3;29078:12;29071:19;;28730:366;;;:::o;29102:419::-;29268:4;29306:2;29295:9;29291:18;29283:26;;29355:9;29349:4;29345:20;29341:1;29330:9;29326:17;29319:47;29383:131;29509:4;29383:131;:::i;:::-;29375:139;;29102:419;;;:::o;29527:98::-;29578:6;29612:5;29606:12;29596:22;;29527:98;;;:::o;29631:168::-;29714:11;29748:6;29743:3;29736:19;29788:4;29783:3;29779:14;29764:29;;29631:168;;;;:::o;29805:360::-;29891:3;29919:38;29951:5;29919:38;:::i;:::-;29973:70;30036:6;30031:3;29973:70;:::i;:::-;29966:77;;30052:52;30097:6;30092:3;30085:4;30078:5;30074:16;30052:52;:::i;:::-;30129:29;30151:6;30129:29;:::i;:::-;30124:3;30120:39;30113:46;;29895:270;29805:360;;;;:::o;30171:640::-;30366:4;30404:3;30393:9;30389:19;30381:27;;30418:71;30486:1;30475:9;30471:17;30462:6;30418:71;:::i;:::-;30499:72;30567:2;30556:9;30552:18;30543:6;30499:72;:::i;:::-;30581;30649:2;30638:9;30634:18;30625:6;30581:72;:::i;:::-;30700:9;30694:4;30690:20;30685:2;30674:9;30670:18;30663:48;30728:76;30799:4;30790:6;30728:76;:::i;:::-;30720:84;;30171:640;;;;;;;:::o;30817:141::-;30873:5;30904:6;30898:13;30889:22;;30920:32;30946:5;30920:32;:::i;:::-;30817:141;;;;:::o;30964:349::-;31033:6;31082:2;31070:9;31061:7;31057:23;31053:32;31050:119;;;31088:79;;:::i;:::-;31050:119;31208:1;31233:63;31288:7;31279:6;31268:9;31264:22;31233:63;:::i;:::-;31223:73;;31179:127;30964:349;;;;:::o;31319:233::-;31358:3;31381:24;31399:5;31381:24;:::i;:::-;31372:33;;31427:66;31420:5;31417:77;31414:103;;31497:18;;:::i;:::-;31414:103;31544:1;31537:5;31533:13;31526:20;;31319:233;;;:::o;31558:180::-;31606:77;31603:1;31596:88;31703:4;31700:1;31693:15;31727:4;31724:1;31717:15;31744:185;31784:1;31801:20;31819:1;31801:20;:::i;:::-;31796:25;;31835:20;31853:1;31835:20;:::i;:::-;31830:25;;31874:1;31864:35;;31879:18;;:::i;:::-;31864:35;31921:1;31918;31914:9;31909:14;;31744:185;;;;:::o;31935:191::-;31975:4;31995:20;32013:1;31995:20;:::i;:::-;31990:25;;32029:20;32047:1;32029:20;:::i;:::-;32024:25;;32068:1;32065;32062:8;32059:34;;;32073:18;;:::i;:::-;32059:34;32118:1;32115;32111:9;32103:17;;31935:191;;;;:::o;32132:176::-;32164:1;32181:20;32199:1;32181:20;:::i;:::-;32176:25;;32215:20;32233:1;32215:20;:::i;:::-;32210:25;;32254:1;32244:35;;32259:18;;:::i;:::-;32244:35;32300:1;32297;32293:9;32288:14;;32132:176;;;;:::o;32314:180::-;32362:77;32359:1;32352:88;32459:4;32456:1;32449:15;32483:4;32480:1;32473:15
Swarm Source
ipfs://7ffe378fc2b34ed2fc83701a6798252237a5bcb7261f7d75caaf7628ff52f1d3
Loading...
Loading
Loading...
Loading
Net Worth in USD
$6.80
Net Worth in ETH
0.00251
Token Allocations
ETH
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,720.35 | 0.0025 | $6.8 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.