ERC-721
Overview
Max Total Supply
0 summer 2022 dino
Holders
138
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 summer 2022 dinoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
tinydinossummer2022
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-16 */ // File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig( uint16 _version, uint16 _chainId, uint256 _configType, bytes calldata _config ) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; } // File: contracts/interfaces/ILayerZeroEndpoint.sol pragma solidity >=0.5.0; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send( uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload( uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint256 _gasLimit, bytes calldata _payload ) external; // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees( uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam ) external view returns (uint256 nativeFee, uint256 zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload( uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload ) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig( uint16 _version, uint16 _chainId, address _userApplication, uint256 _configType ) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File: contracts/interfaces/ILayerZeroReceiver.sol pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) external; } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/NonblockingReceiver.sol pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint256 payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) public failedMessages; mapping(uint16 => bytes) public trustedRemoteLookup; event MessageFailed( uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload ); function lzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) external override { require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security require( _srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), "NonblockingReceiver: invalid source sending contract" ); // try-catch all errors/exceptions // having failed messages does not block messages passing try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) { // do nothing } catch { // error / exception failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages( _payload.length, keccak256(_payload) ); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload); } } function onLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) public { // only internal transaction require( msg.sender == address(this), "NonblockingReceiver: caller must be Bridge." ); // handle incoming message _LzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function function _LzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual; function _lzSend( uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam ) internal { endpoint.send{value: msg.value}( _dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam ); } function retryMessage( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload ) external payable { // assert there is message to retry FailedMessages storage failedMsg = failedMessages[_srcChainId][ _srcAddress ][_nonce]; require( failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message" ); require( _payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload" ); // clear the stored message failedMsg.payloadLength = 0; failedMsg.payloadHash = bytes32(0); // execute the message. revert if it fails again this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote) external onlyOwner { trustedRemoteLookup[_chainId] = _trustedRemote; } } pragma solidity ^0.8.7; contract tinydinossummer2022 is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 gasForDestinationLzReceive = 350000; constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("tiny dinos: summer 2022", "summer 2022 dino") { _owner = msg.sender; endpoint = ILayerZeroEndpoint(_layerZeroEndpoint); baseURI = baseURI_; } // This function transfers the nft from your address on the // source chain to the same address on the destination chain function traverseChains(uint16 _chainId, uint256 tokenId) public payable { require( msg.sender == ownerOf(tokenId), "You must own the token to traverse" ); require( trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel" ); // burn NFT, eliminating it from circulation on src chain _burn(tokenId); // abi.encode() the payload with the values to send bytes memory payload = abi.encode(msg.sender, tokenId); // encode adapterParams to specify more gas for the destination uint16 version = 1; bytes memory adapterParams = abi.encodePacked( version, gasForDestinationLzReceive ); // get the fees we need to pay to LayerZero + Relayer to cover message delivery // you will be refunded for extra gas paid (uint256 messageFee, ) = endpoint.estimateFees( _chainId, address(this), payload, false, adapterParams ); require( msg.value >= messageFee, "tiny dinos summer 2022: msg.value not enough to cover messageFee. Send gas for message fees" ); endpoint.send{value: msg.value}( _chainId, // destination chainId trustedRemoteLookup[_chainId], // destination address of nft contract payload, // abi.encoded()'ed bytes payable(msg.sender), // refund address address(0x0), // 'zroPaymentAddress' unused for this adapterParams // txParameters ); } function setBaseURI(string memory URI) external onlyOwner { baseURI = URI; } function donate() external payable { // thank you } // This allows the devs to receive kind donations function withdraw(uint256 amt) external onlyOwner { (bool sent, ) = payable(_owner).call{value: amt}(""); require(sent, "tiny dinos summer 2022: Failed to withdraw Ether"); } // just in case this fixed variable limits us from future integrations function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner { gasForDestinationLzReceive = newVal; } // ------------------ // Internal Functions // ------------------ function _LzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal override { // decode (address toAddr, uint256 tokenId) = abi.decode( _payload, (address, uint256) ); // mint the tokens back into existence on destination chain _safeMint(toAddr, tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"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":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405262055730600c553480156200001857600080fd5b506040516200390e3803806200390e8339810160408190526200003b9162000256565b6040518060400160405280601781526020017f74696e792064696e6f733a2073756d6d657220323032320000000000000000008152506040518060400160405280601081526020016f73756d6d657220323032322064696e6f60801b815250620000b4620000ae6200012960201b60201c565b6200012d565b8151620000c99060019060208501906200017d565b508051620000df9060029060208401906200017d565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200012090600b9060208501906200017d565b50505062000384565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200018b9062000347565b90600052602060002090601f016020900481019282620001af5760008555620001fa565b82601f10620001ca57805160ff1916838001178555620001fa565b82800160010185558215620001fa579182015b82811115620001fa578251825591602001919060010190620001dd565b50620002089291506200020c565b5090565b5b808211156200020857600081556001016200020d565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200025157600080fd5b919050565b600080604083850312156200026a57600080fd5b82516001600160401b03808211156200028257600080fd5b818501915085601f8301126200029757600080fd5b815181811115620002ac57620002ac62000223565b604051601f8201601f19908116603f01168101908382118183101715620002d757620002d762000223565b81604052828152602093508884848701011115620002f457600080fd5b600091505b82821015620003185784820184015181830185015290830190620002f9565b828211156200032a5760008484830101525b95506200033c91505085820162000239565b925050509250929050565b600181811c908216806200035c57607f821691505b602082108114156200037e57634e487b7160e01b600052602260045260246000fd5b50919050565b61357a80620003946000396000f3fe6080604052600436106101b65760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c51461053a578063eb8d72b714610590578063ed88c68e146101db578063f2fde38b146105b057600080fd5b8063c87b56dd146104f4578063cf89fa0314610514578063d1deba1f1461052757600080fd5b806395d89b41116100c657806395d89b4114610472578063a22cb46514610487578063b2bdfa7b146104a7578063b88d4fde146104d457600080fd5b80638da5cb5b146103bc5780638ee74912146103e7578063943fb8721461045257600080fd5b80632e1a7d4d116101595780636352211e116101335780636352211e1461033957806370a0823114610359578063715018a6146103875780637533d7881461039c57600080fd5b80632e1a7d4d146102d957806342842e0e146102f957806355f804b31461031957600080fd5b8063081812fc11610195578063081812fc14610234578063095ea7b3146102795780631c37a8221461029957806323b872dd146102b957600080fd5b80621d3567146101bb57806301ffc9a7146101dd57806306fdde0314610212575b600080fd5b3480156101c757600080fd5b506101db6101d6366004612b06565b6105d0565b005b3480156101e957600080fd5b506101fd6101f8366004612bb9565b610814565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276108f9565b6040516102099190612c4c565b34801561024057600080fd5b5061025461024f366004612c5f565b61098b565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b34801561028557600080fd5b506101db610294366004612c9a565b610a65565b3480156102a557600080fd5b506101db6102b4366004612b06565b610bf2565b3480156102c557600080fd5b506101db6102d4366004612cc6565b610c8d565b3480156102e557600080fd5b506101db6102f4366004612c5f565b610d2e565b34801561030557600080fd5b506101db610314366004612cc6565b610ea3565b34801561032557600080fd5b506101db610334366004612d07565b610ebe565b34801561034557600080fd5b50610254610354366004612c5f565b610f52565b34801561036557600080fd5b50610379610374366004612d50565b611004565b604051908152602001610209565b34801561039357600080fd5b506101db6110d2565b3480156103a857600080fd5b506102276103b7366004612d6d565b61115f565b3480156103c857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610254565b3480156103f357600080fd5b5061043d610402366004612d88565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610209565b34801561045e57600080fd5b506101db61046d366004612c5f565b6111f9565b34801561047e57600080fd5b5061022761127f565b34801561049357600080fd5b506101db6104a2366004612ddf565b61128e565b3480156104b357600080fd5b50600a546102549073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104e057600080fd5b506101db6104ef366004612e1d565b611299565b34801561050057600080fd5b5061022761050f366004612c5f565b61133b565b6101db610522366004612e7d565b61144b565b6101db610535366004612ee2565b61182d565b34801561054657600080fd5b506101fd610555366004612f6e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b506101db6105ab366004612f9c565b611a1f565b3480156105bc57600080fd5b506101db6105cb366004612d50565b611abe565b60075473ffffffffffffffffffffffffffffffffffffffff1633146105f457600080fd5b61ffff84166000908152600960205260409020805461061290612fef565b90508351148015610651575061ffff841660009081526009602052604090819020905161063f9190613043565b60405180910390208380519060200120145b6106e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906107249087908790879087906004016130d3565b600060405180830381600087803b15801561073e57600080fd5b505af192505050801561074f575060015b61080e576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610799919061311d565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108059086908690869086906130d3565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108a757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108f357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461090890612fef565b80601f016020809104026020016040519081016040528092919081815260200182805461093490612fef565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106d9565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a7082610f52565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106d9565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b575750610b578133610555565b610be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d9565b610bed8383611bee565b505050565b333014610c81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106d9565b61080e84848484611c8e565b610c973382611cbb565b610d23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106d9565b610bed838383611e2b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610daf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e09576040519150601f19603f3d011682016040523d82523d6000602084013e610e0e565b606091505b5050905080610e9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f74696e792064696e6f732073756d6d657220323032323a204661696c6564207460448201527f6f2077697468647261772045746865720000000000000000000000000000000060648201526084016106d9565b5050565b610bed83838360405180602001604052806000815250611299565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b8051610e9f90600b9060208401906128c9565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106d9565b600073ffffffffffffffffffffffffffffffffffffffff82166110a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106d9565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b61115d6000612092565b565b6009602052600090815260409020805461117890612fef565b80601f01602080910402602001604051908101604052809291908181526020018280546111a490612fef565b80156111f15780601f106111c6576101008083540402835291602001916111f1565b820191906000526020600020905b8154815290600101906020018083116111d457829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b600c55565b60606002805461090890612fef565b610e9f338383612107565b6112a33383611cbb565b61132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106d9565b61080e84848484612235565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166113ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106d9565b60006113f96122d8565b905060008151116114195760405180602001604052806000815250611444565b80611423846122e7565b604051602001611434929190613139565b6040516020818303038152906040525b9392505050565b61145481610f52565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106d9565b61ffff82166000908152600960205260408120805461152c90612fef565b9050116115bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106d9565b6115c481612419565b60408051336020820152808201839052815180820383018152606082018352600c547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb1090611688908990309089908790899060a601613168565b6040805180830381865afa1580156116a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c891906131c7565b50905080341015611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605b60248201527f74696e792064696e6f732073756d6d657220323032323a206d73672e76616c7560448201527f65206e6f7420656e6f75676820746f20636f766572206d65737361676546656560648201527f2e2053656e642067617320666f72206d65737361676520666565730000000000608482015260a4016106d9565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c58031009234926117f3928c928b913391908b906004016131eb565b6000604051808303818588803b15801561180c57600080fd5b505af1158015611820573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161184e90879061311d565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611907576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106d9565b805482148015611931575080600101548383604051611927929190613303565b6040518091039020145b611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106d9565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906119e59089908990899089908990600401613313565b600060405180830381600087803b1580156119ff57600080fd5b505af1158015611a13573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611aa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b61ffff8316600090815260096020526040902061080e90838361294d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b73ffffffffffffffffffffffffffffffffffffffff8116611be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106d9565b611beb81612092565b50565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611c4882610f52565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611ca59190613393565b91509150611cb382826124e6565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106d9565b6000611d7783610f52565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de657508373ffffffffffffffffffffffffffffffffffffffff16611dce8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e23575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611e4b82610f52565b73ffffffffffffffffffffffffffffffffffffffff1614611eee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106d9565b73ffffffffffffffffffffffffffffffffffffffff8216611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106d9565b611f9b600082611bee565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611fd19084906133f0565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061200c908490613407565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d9565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612240848484611e2b565b61224c84848484612500565b61080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106d9565b6060600b805461090890612fef565b60608161232757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612351578061233b8161341f565b915061234a9050600a83613487565b915061232b565b60008167ffffffffffffffff81111561236c5761236c612a0b565b6040519080825280601f01601f191660200182016040528015612396576020820181803683370190505b5090505b8415611e23576123ab6001836133f0565b91506123b8600a8661349b565b6123c3906030613407565b60f81b8183815181106123d8576123d86134af565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612412600a86613487565b945061239a565b600061242482610f52565b9050612431600083611bee565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906124679084906133f0565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610e9f8282604051806020016040528060008152506126f0565b600073ffffffffffffffffffffffffffffffffffffffff84163b156126e5576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125779033908990889088906004016134de565b6020604051808303816000875af19250505080156125d0575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526125cd91810190613527565b60015b61269a573d8080156125fe576040519150601f19603f3d011682016040523d82523d6000602084013e612603565b606091505b508051612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106d9565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611e23565b506001949350505050565b6126fa8383612793565b6127076000848484612500565b610bed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106d9565b73ffffffffffffffffffffffffffffffffffffffff8216612810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d9565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612846908490613407565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128d590612fef565b90600052602060002090601f0160209004810192826128f7576000855561293d565b82601f1061291057805160ff191683800117855561293d565b8280016001018555821561293d579182015b8281111561293d578251825591602001919060010190612922565b506129499291506129df565b5090565b82805461295990612fef565b90600052602060002090601f01602090048101928261297b576000855561293d565b82601f106129b2578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082351617855561293d565b8280016001018555821561293d579182015b8281111561293d5782358255916020019190600101906129c4565b5b8082111561294957600081556001016129e0565b803561ffff81168114612a0657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612a5557612a55612a0b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612a9b57612a9b612a0b565b81604052809350858152868686011115612ab457600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612adf57600080fd5b61144483833560208501612a3a565b803567ffffffffffffffff81168114612a0657600080fd5b60008060008060808587031215612b1c57600080fd5b612b25856129f4565b9350602085013567ffffffffffffffff80821115612b4257600080fd5b612b4e88838901612ace565b9450612b5c60408801612aee565b93506060870135915080821115612b7257600080fd5b50612b7f87828801612ace565b91505092959194509250565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611beb57600080fd5b600060208284031215612bcb57600080fd5b813561144481612b8b565b60005b83811015612bf1578181015183820152602001612bd9565b8381111561080e5750506000910152565b60008151808452612c1a816020860160208601612bd6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006114446020830184612c02565b600060208284031215612c7157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114611beb57600080fd5b60008060408385031215612cad57600080fd5b8235612cb881612c78565b946020939093013593505050565b600080600060608486031215612cdb57600080fd5b8335612ce681612c78565b92506020840135612cf681612c78565b929592945050506040919091013590565b600060208284031215612d1957600080fd5b813567ffffffffffffffff811115612d3057600080fd5b8201601f81018413612d4157600080fd5b611e2384823560208401612a3a565b600060208284031215612d6257600080fd5b813561144481612c78565b600060208284031215612d7f57600080fd5b611444826129f4565b600080600060608486031215612d9d57600080fd5b612da6846129f4565b9250602084013567ffffffffffffffff811115612dc257600080fd5b612dce86828701612ace565b925050604084013590509250925092565b60008060408385031215612df257600080fd5b8235612dfd81612c78565b915060208301358015158114612e1257600080fd5b809150509250929050565b60008060008060808587031215612e3357600080fd5b8435612e3e81612c78565b93506020850135612e4e81612c78565b925060408501359150606085013567ffffffffffffffff811115612e7157600080fd5b612b7f87828801612ace565b60008060408385031215612e9057600080fd5b612cb8836129f4565b60008083601f840112612eab57600080fd5b50813567ffffffffffffffff811115612ec357600080fd5b602083019150836020828501011115612edb57600080fd5b9250929050565b600080600080600060808688031215612efa57600080fd5b612f03866129f4565b9450602086013567ffffffffffffffff80821115612f2057600080fd5b612f2c89838a01612ace565b9550612f3a60408901612aee565b94506060880135915080821115612f5057600080fd5b50612f5d88828901612e99565b969995985093965092949392505050565b60008060408385031215612f8157600080fd5b8235612f8c81612c78565b91506020830135612e1281612c78565b600080600060408486031215612fb157600080fd5b612fba846129f4565b9250602084013567ffffffffffffffff811115612fd657600080fd5b612fe286828701612e99565b9497909650939450505050565b600181811c9082168061300357607f821691505b6020821081141561303d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600080835461305181612fef565b600182811680156130695760018114613098576130c7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008416875282870194506130c7565b8760005260208060002060005b858110156130be5781548a8201529084019082016130a5565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006130f06080830186612c02565b67ffffffffffffffff8516604084015282810360608401526131128185612c02565b979650505050505050565b6000825161312f818460208701612bd6565b9190910192915050565b6000835161314b818460208801612bd6565b83519083019061315f818360208801612bd6565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006131a160a0830186612c02565b841515606084015282810360808401526131bb8185612c02565b98975050505050505050565b600080604083850312156131da57600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461320981612fef565b8060c087015260e060018084166000811461322b576001811461325e5761328c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01526101008901955061328c565b8d6000528660002060005b858110156132845781548b8201860152908301908801613269565b8a0184019650505b505050505083810360408501526132a38189612c02565b9150506132c8606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526132f68185612c02565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006133306080830187612c02565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156133a657600080fd5b82516133b181612c78565b6020939093015192949293505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015613402576134026133c1565b500390565b6000821982111561341a5761341a6133c1565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613451576134516133c1565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261349657613496613458565b500490565b6000826134aa576134aa613458565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261351d6080830184612c02565b9695505050505050565b60006020828403121561353957600080fd5b815161144481612b8b56fea26469706673582212203b43355e86807ca700caaa9004cdc03ff5454a0f5499b7bba3a5041e3b06e9cb64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b65760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c51461053a578063eb8d72b714610590578063ed88c68e146101db578063f2fde38b146105b057600080fd5b8063c87b56dd146104f4578063cf89fa0314610514578063d1deba1f1461052757600080fd5b806395d89b41116100c657806395d89b4114610472578063a22cb46514610487578063b2bdfa7b146104a7578063b88d4fde146104d457600080fd5b80638da5cb5b146103bc5780638ee74912146103e7578063943fb8721461045257600080fd5b80632e1a7d4d116101595780636352211e116101335780636352211e1461033957806370a0823114610359578063715018a6146103875780637533d7881461039c57600080fd5b80632e1a7d4d146102d957806342842e0e146102f957806355f804b31461031957600080fd5b8063081812fc11610195578063081812fc14610234578063095ea7b3146102795780631c37a8221461029957806323b872dd146102b957600080fd5b80621d3567146101bb57806301ffc9a7146101dd57806306fdde0314610212575b600080fd5b3480156101c757600080fd5b506101db6101d6366004612b06565b6105d0565b005b3480156101e957600080fd5b506101fd6101f8366004612bb9565b610814565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276108f9565b6040516102099190612c4c565b34801561024057600080fd5b5061025461024f366004612c5f565b61098b565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b34801561028557600080fd5b506101db610294366004612c9a565b610a65565b3480156102a557600080fd5b506101db6102b4366004612b06565b610bf2565b3480156102c557600080fd5b506101db6102d4366004612cc6565b610c8d565b3480156102e557600080fd5b506101db6102f4366004612c5f565b610d2e565b34801561030557600080fd5b506101db610314366004612cc6565b610ea3565b34801561032557600080fd5b506101db610334366004612d07565b610ebe565b34801561034557600080fd5b50610254610354366004612c5f565b610f52565b34801561036557600080fd5b50610379610374366004612d50565b611004565b604051908152602001610209565b34801561039357600080fd5b506101db6110d2565b3480156103a857600080fd5b506102276103b7366004612d6d565b61115f565b3480156103c857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610254565b3480156103f357600080fd5b5061043d610402366004612d88565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610209565b34801561045e57600080fd5b506101db61046d366004612c5f565b6111f9565b34801561047e57600080fd5b5061022761127f565b34801561049357600080fd5b506101db6104a2366004612ddf565b61128e565b3480156104b357600080fd5b50600a546102549073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104e057600080fd5b506101db6104ef366004612e1d565b611299565b34801561050057600080fd5b5061022761050f366004612c5f565b61133b565b6101db610522366004612e7d565b61144b565b6101db610535366004612ee2565b61182d565b34801561054657600080fd5b506101fd610555366004612f6e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b506101db6105ab366004612f9c565b611a1f565b3480156105bc57600080fd5b506101db6105cb366004612d50565b611abe565b60075473ffffffffffffffffffffffffffffffffffffffff1633146105f457600080fd5b61ffff84166000908152600960205260409020805461061290612fef565b90508351148015610651575061ffff841660009081526009602052604090819020905161063f9190613043565b60405180910390208380519060200120145b6106e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906107249087908790879087906004016130d3565b600060405180830381600087803b15801561073e57600080fd5b505af192505050801561074f575060015b61080e576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610799919061311d565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108059086908690869086906130d3565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108a757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108f357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461090890612fef565b80601f016020809104026020016040519081016040528092919081815260200182805461093490612fef565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106d9565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a7082610f52565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106d9565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b575750610b578133610555565b610be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d9565b610bed8383611bee565b505050565b333014610c81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106d9565b61080e84848484611c8e565b610c973382611cbb565b610d23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106d9565b610bed838383611e2b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610daf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e09576040519150601f19603f3d011682016040523d82523d6000602084013e610e0e565b606091505b5050905080610e9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f74696e792064696e6f732073756d6d657220323032323a204661696c6564207460448201527f6f2077697468647261772045746865720000000000000000000000000000000060648201526084016106d9565b5050565b610bed83838360405180602001604052806000815250611299565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b8051610e9f90600b9060208401906128c9565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106d9565b600073ffffffffffffffffffffffffffffffffffffffff82166110a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106d9565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b61115d6000612092565b565b6009602052600090815260409020805461117890612fef565b80601f01602080910402602001604051908101604052809291908181526020018280546111a490612fef565b80156111f15780601f106111c6576101008083540402835291602001916111f1565b820191906000526020600020905b8154815290600101906020018083116111d457829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b600c55565b60606002805461090890612fef565b610e9f338383612107565b6112a33383611cbb565b61132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106d9565b61080e84848484612235565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166113ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106d9565b60006113f96122d8565b905060008151116114195760405180602001604052806000815250611444565b80611423846122e7565b604051602001611434929190613139565b6040516020818303038152906040525b9392505050565b61145481610f52565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106d9565b61ffff82166000908152600960205260408120805461152c90612fef565b9050116115bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106d9565b6115c481612419565b60408051336020820152808201839052815180820383018152606082018352600c547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb1090611688908990309089908790899060a601613168565b6040805180830381865afa1580156116a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c891906131c7565b50905080341015611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605b60248201527f74696e792064696e6f732073756d6d657220323032323a206d73672e76616c7560448201527f65206e6f7420656e6f75676820746f20636f766572206d65737361676546656560648201527f2e2053656e642067617320666f72206d65737361676520666565730000000000608482015260a4016106d9565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c58031009234926117f3928c928b913391908b906004016131eb565b6000604051808303818588803b15801561180c57600080fd5b505af1158015611820573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161184e90879061311d565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611907576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106d9565b805482148015611931575080600101548383604051611927929190613303565b6040518091039020145b611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106d9565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906119e59089908990899089908990600401613313565b600060405180830381600087803b1580156119ff57600080fd5b505af1158015611a13573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611aa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b61ffff8316600090815260096020526040902061080e90838361294d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d9565b73ffffffffffffffffffffffffffffffffffffffff8116611be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106d9565b611beb81612092565b50565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611c4882610f52565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611ca59190613393565b91509150611cb382826124e6565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106d9565b6000611d7783610f52565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de657508373ffffffffffffffffffffffffffffffffffffffff16611dce8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e23575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611e4b82610f52565b73ffffffffffffffffffffffffffffffffffffffff1614611eee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106d9565b73ffffffffffffffffffffffffffffffffffffffff8216611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106d9565b611f9b600082611bee565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611fd19084906133f0565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061200c908490613407565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d9565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612240848484611e2b565b61224c84848484612500565b61080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106d9565b6060600b805461090890612fef565b60608161232757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612351578061233b8161341f565b915061234a9050600a83613487565b915061232b565b60008167ffffffffffffffff81111561236c5761236c612a0b565b6040519080825280601f01601f191660200182016040528015612396576020820181803683370190505b5090505b8415611e23576123ab6001836133f0565b91506123b8600a8661349b565b6123c3906030613407565b60f81b8183815181106123d8576123d86134af565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612412600a86613487565b945061239a565b600061242482610f52565b9050612431600083611bee565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906124679084906133f0565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610e9f8282604051806020016040528060008152506126f0565b600073ffffffffffffffffffffffffffffffffffffffff84163b156126e5576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125779033908990889088906004016134de565b6020604051808303816000875af19250505080156125d0575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526125cd91810190613527565b60015b61269a573d8080156125fe576040519150601f19603f3d011682016040523d82523d6000602084013e612603565b606091505b508051612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106d9565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611e23565b506001949350505050565b6126fa8383612793565b6127076000848484612500565b610bed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106d9565b73ffffffffffffffffffffffffffffffffffffffff8216612810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d9565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612846908490613407565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128d590612fef565b90600052602060002090601f0160209004810192826128f7576000855561293d565b82601f1061291057805160ff191683800117855561293d565b8280016001018555821561293d579182015b8281111561293d578251825591602001919060010190612922565b506129499291506129df565b5090565b82805461295990612fef565b90600052602060002090601f01602090048101928261297b576000855561293d565b82601f106129b2578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082351617855561293d565b8280016001018555821561293d579182015b8281111561293d5782358255916020019190600101906129c4565b5b8082111561294957600081556001016129e0565b803561ffff81168114612a0657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612a5557612a55612a0b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612a9b57612a9b612a0b565b81604052809350858152868686011115612ab457600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612adf57600080fd5b61144483833560208501612a3a565b803567ffffffffffffffff81168114612a0657600080fd5b60008060008060808587031215612b1c57600080fd5b612b25856129f4565b9350602085013567ffffffffffffffff80821115612b4257600080fd5b612b4e88838901612ace565b9450612b5c60408801612aee565b93506060870135915080821115612b7257600080fd5b50612b7f87828801612ace565b91505092959194509250565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611beb57600080fd5b600060208284031215612bcb57600080fd5b813561144481612b8b565b60005b83811015612bf1578181015183820152602001612bd9565b8381111561080e5750506000910152565b60008151808452612c1a816020860160208601612bd6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006114446020830184612c02565b600060208284031215612c7157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114611beb57600080fd5b60008060408385031215612cad57600080fd5b8235612cb881612c78565b946020939093013593505050565b600080600060608486031215612cdb57600080fd5b8335612ce681612c78565b92506020840135612cf681612c78565b929592945050506040919091013590565b600060208284031215612d1957600080fd5b813567ffffffffffffffff811115612d3057600080fd5b8201601f81018413612d4157600080fd5b611e2384823560208401612a3a565b600060208284031215612d6257600080fd5b813561144481612c78565b600060208284031215612d7f57600080fd5b611444826129f4565b600080600060608486031215612d9d57600080fd5b612da6846129f4565b9250602084013567ffffffffffffffff811115612dc257600080fd5b612dce86828701612ace565b925050604084013590509250925092565b60008060408385031215612df257600080fd5b8235612dfd81612c78565b915060208301358015158114612e1257600080fd5b809150509250929050565b60008060008060808587031215612e3357600080fd5b8435612e3e81612c78565b93506020850135612e4e81612c78565b925060408501359150606085013567ffffffffffffffff811115612e7157600080fd5b612b7f87828801612ace565b60008060408385031215612e9057600080fd5b612cb8836129f4565b60008083601f840112612eab57600080fd5b50813567ffffffffffffffff811115612ec357600080fd5b602083019150836020828501011115612edb57600080fd5b9250929050565b600080600080600060808688031215612efa57600080fd5b612f03866129f4565b9450602086013567ffffffffffffffff80821115612f2057600080fd5b612f2c89838a01612ace565b9550612f3a60408901612aee565b94506060880135915080821115612f5057600080fd5b50612f5d88828901612e99565b969995985093965092949392505050565b60008060408385031215612f8157600080fd5b8235612f8c81612c78565b91506020830135612e1281612c78565b600080600060408486031215612fb157600080fd5b612fba846129f4565b9250602084013567ffffffffffffffff811115612fd657600080fd5b612fe286828701612e99565b9497909650939450505050565b600181811c9082168061300357607f821691505b6020821081141561303d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600080835461305181612fef565b600182811680156130695760018114613098576130c7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008416875282870194506130c7565b8760005260208060002060005b858110156130be5781548a8201529084019082016130a5565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006130f06080830186612c02565b67ffffffffffffffff8516604084015282810360608401526131128185612c02565b979650505050505050565b6000825161312f818460208701612bd6565b9190910192915050565b6000835161314b818460208801612bd6565b83519083019061315f818360208801612bd6565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006131a160a0830186612c02565b841515606084015282810360808401526131bb8185612c02565b98975050505050505050565b600080604083850312156131da57600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461320981612fef565b8060c087015260e060018084166000811461322b576001811461325e5761328c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01526101008901955061328c565b8d6000528660002060005b858110156132845781548b8201860152908301908801613269565b8a0184019650505b505050505083810360408501526132a38189612c02565b9150506132c8606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526132f68185612c02565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006133306080830187612c02565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156133a657600080fd5b82516133b181612c78565b6020939093015192949293505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015613402576134026133c1565b500390565b6000821982111561341a5761341a6133c1565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613451576134516133c1565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261349657613496613458565b500490565b6000826134aa576134aa613458565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261351d6080830184612c02565b9695505050505050565b60006020828403121561353957600080fd5b815161144481612b8b56fea26469706673582212203b43355e86807ca700caaa9004cdc03ff5454a0f5499b7bba3a5041e3b06e9cb64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string):
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
50091:3566:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46751:1098;;;;;;;;;;-1:-1:-1;46751:1098:0;;;;;:::i;:::-;;:::i;:::-;;32816:355;;;;;;;;;;-1:-1:-1;32816:355:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;32816:355:0;;;;;;;;33985:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35678:308::-;;;;;;;;;;-1:-1:-1;35678:308:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;35678:308:0;3903:226:1;35201:411:0;;;;;;;;;;-1:-1:-1;35201:411:0;;;;;:::i;:::-;;:::i;47857:435::-;;;;;;;;;;-1:-1:-1;47857:435:0;;;;;:::i;:::-;;:::i;36597:376::-;;;;;;;;;;-1:-1:-1;36597:376:0;;;;;:::i;:::-;;:::i;52622:197::-;;;;;;;;;;-1:-1:-1;52622:197:0;;;;;:::i;:::-;;:::i;37044:185::-;;;;;;;;;;-1:-1:-1;37044:185:0;;;;;:::i;:::-;;:::i;52396:90::-;;;;;;;;;;-1:-1:-1;52396:90:0;;;;;:::i;:::-;;:::i;33592:326::-;;;;;;;;;;-1:-1:-1;33592:326:0;;;;;:::i;:::-;;:::i;33235:295::-;;;;;;;;;;-1:-1:-1;33235:295:0;;;;;:::i;:::-;;:::i;:::-;;;5927:25:1;;;5915:2;5900:18;33235:295:0;5781:177:1;13128:103:0;;;;;;;;;;;;;:::i;46550:51::-;;;;;;;;;;-1:-1:-1;46550:51:0;;;;;:::i;:::-;;:::i;12477:87::-;;;;;;;;;;-1:-1:-1;12523:7:0;12550:6;;;12477:87;;46441:102;;;;;;;;;;-1:-1:-1;46441:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7014:25:1;;;7070:2;7055:18;;7048:34;;;;6987:18;46441:102:0;6840:248:1;52903:128:0;;;;;;;;;;-1:-1:-1;52903:128:0;;;;;:::i;:::-;;:::i;34154:104::-;;;;;;;;;;;;;:::i;36058:187::-;;;;;;;;;;-1:-1:-1;36058:187:0;;;;;:::i;:::-;;:::i;50167:21::-;;;;;;;;;;-1:-1:-1;50167:21:0;;;;;;;;37300:365;;;;;;;;;;-1:-1:-1;37300:365:0;;;;;:::i;:::-;;:::i;34329:468::-;;;;;;;;;;-1:-1:-1;34329:468:0;;;;;:::i;:::-;;:::i;50676:1712::-;;;;;;:::i;:::-;;:::i;48952:916::-;;;;;;:::i;:::-;;:::i;36316:214::-;;;;;;;;;;-1:-1:-1;36316:214:0;;;;;:::i;:::-;36487:25;;;;36458:4;36487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36316:214;49876:181;;;;;;;;;;-1:-1:-1;49876:181:0;;;;;:::i;:::-;;:::i;13386:238::-;;;;;;;;;;-1:-1:-1;13386:238:0;;;;;:::i;:::-;;:::i;46751:1098::-;46956:8;;;;46934:10;:31;46926:40;;;;;;47091:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47069:11;:18;:61;:168;;;;-1:-1:-1;47204:32:0;;;;;;;:19;:32;;;;;;;47194:43;;;;47204:32;47194:43;:::i;:::-;;;;;;;;47161:11;47151:22;;;;;;:86;47069:168;47047:270;;;;;;;11968:2:1;47047:270:0;;;11950:21:1;12007:2;11987:18;;;11980:30;12046:34;12026:18;;;12019:62;12117:22;12097:18;;;12090:50;12157:19;;47047:270:0;;;;;;;;;47445:60;;;;;:4;;:16;;:60;;47462:11;;47475;;47488:6;;47496:8;;47445:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47441:401;;47652:101;;;;;;;;47685:8;:15;47652:101;;;;47729:8;47719:19;;;;;;47652:101;;;47601:14;:27;47616:11;47601:27;;;;;;;;;;;;;;;47629:11;47601:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47773:57;;;;47787:11;;47800;;47642:6;;47821:8;;47773:57;:::i;:::-;;;;;;;;47441:401;46751:1098;;;;:::o;32816:355::-;32963:4;33005:40;;;33020:25;33005:40;;:105;;-1:-1:-1;33062:48:0;;;33077:33;33062:48;33005:105;:158;;;-1:-1:-1;25577:25:0;25562:40;;;;33127:36;32985:178;32816:355;-1:-1:-1;;32816:355:0:o;33985:100::-;34039:13;34072:5;34065:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33985:100;:::o;35678:308::-;35799:7;39301:16;;;:7;:16;;;;;;:30;:16;35824:110;;;;;;;13230:2:1;35824:110:0;;;13212:21:1;13269:2;13249:18;;;13242:30;13308:34;13288:18;;;13281:62;13379:14;13359:18;;;13352:42;13411:19;;35824:110:0;13028:408:1;35824:110:0;-1:-1:-1;35954:24:0;;;;:15;:24;;;;;;;;;35678:308::o;35201:411::-;35282:13;35298:23;35313:7;35298:14;:23::i;:::-;35282:39;;35346:5;35340:11;;:2;:11;;;;35332:57;;;;;;;13643:2:1;35332:57:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:34;13701:18;;;13694:62;13792:3;13772:18;;;13765:31;13813:19;;35332:57:0;13441:397:1;35332:57:0;11260:10;35424:21;;;;;:62;;-1:-1:-1;35449:37:0;35466:5;11260:10;36316:214;:::i;35449:37::-;35402:168;;;;;;;14045:2:1;35402:168:0;;;14027:21:1;14084:2;14064:18;;;14057:30;14123:34;14103:18;;;14096:62;14194:26;14174:18;;;14167:54;14238:19;;35402:168:0;13843:420:1;35402:168:0;35583:21;35592:2;35596:7;35583:8;:21::i;:::-;35271:341;35201:411;;:::o;47857:435::-;48083:10;48105:4;48083:27;48061:120;;;;;;;14470:2:1;48061:120:0;;;14452:21:1;14509:2;14489:18;;;14482:30;14548:34;14528:18;;;14521:62;14619:13;14599:18;;;14592:41;14650:19;;48061:120:0;14268:407:1;48061:120:0;48230:54;48241:11;48254;48267:6;48275:8;48230:10;:54::i;36597:376::-;36806:41;11260:10;36839:7;36806:18;:41::i;:::-;36784:140;;;;;;;14882:2:1;36784:140:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:34;14940:18;;;14933:62;15031:19;15011:18;;;15004:47;15068:19;;36784:140:0;14680:413:1;36784:140:0;36937:28;36947:4;36953:2;36957:7;36937:9;:28::i;52622:197::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15300:2:1;12689:68:0;;;15282:21:1;;;15319:18;;;15312:30;15378:34;15358:18;;;15351:62;15430:18;;12689:68:0;15098:356:1;12689:68:0;52707:6:::1;::::0;52699:36:::1;::::0;52684:9:::1;::::0;52707:6:::1;;::::0;52727:3;;52684:9;52699:36;52684:9;52699:36;52727:3;52707:6;52699:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52683:52;;;52754:4;52746:65;;;::::0;::::1;::::0;;15871:2:1;52746:65:0::1;::::0;::::1;15853:21:1::0;15910:2;15890:18;;;15883:30;15949:34;15929:18;;;15922:62;16020:18;16000;;;15993:46;16056:19;;52746:65:0::1;15669:412:1::0;52746:65:0::1;52672:147;52622:197:::0;:::o;37044:185::-;37182:39;37199:4;37205:2;37209:7;37182:39;;;;;;;;;;;;:16;:39::i;52396:90::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15300:2:1;12689:68:0;;;15282:21:1;;;15319:18;;;15312:30;15378:34;15358:18;;;15351:62;15430:18;;12689:68:0;15098:356:1;12689:68:0;52465:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33592:326::-:0;33709:7;33750:16;;;:7;:16;;;;;;;;33799:19;33777:110;;;;;;;16288:2:1;33777:110:0;;;16270:21:1;16327:2;16307:18;;;16300:30;16366:34;16346:18;;;16339:62;16437:11;16417:18;;;16410:39;16466:19;;33777:110:0;16086:405:1;33235:295:0;33352:7;33399:19;;;33377:111;;;;;;;16698:2:1;33377:111:0;;;16680:21:1;16737:2;16717:18;;;16710:30;16776:34;16756:18;;;16749:62;16847:12;16827:18;;;16820:40;16877:19;;33377:111:0;16496:406:1;33377:111:0;-1:-1:-1;33506:16:0;;;;;;:9;:16;;;;;;;33235:295::o;13128:103::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15300:2:1;12689:68:0;;;15282:21:1;;;15319:18;;;15312:30;15378:34;15358:18;;;15351:62;15430:18;;12689:68:0;15098:356:1;12689:68:0;13193:30:::1;13220:1;13193:18;:30::i;:::-;13128:103::o:0;46550:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52903:128::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15300:2:1;12689:68:0;;;15282:21:1;;;15319:18;;;15312:30;15378:34;15358:18;;;15351:62;15430:18;;12689:68:0;15098:356:1;12689:68:0;52988:26:::1;:35:::0;52903:128::o;34154:104::-;34210:13;34243:7;34236:14;;;;;:::i;36058:187::-;36185:52;11260:10;36218:8;36228;36185:18;:52::i;37300:365::-;37489:41;11260:10;37522:7;37489:18;:41::i;:::-;37467:140;;;;;;;14882:2:1;37467:140:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:34;14940:18;;;14933:62;15031:19;15011:18;;;15004:47;15068:19;;37467:140:0;14680:413:1;37467:140:0;37618:39;37632:4;37638:2;37642:7;37651:5;37618:13;:39::i;34329:468::-;39277:4;39301:16;;;:7;:16;;;;;;34447:13;;39301:30;:16;34478:113;;;;;;;17109:2:1;34478:113:0;;;17091:21:1;17148:2;17128:18;;;17121:30;17187:34;17167:18;;;17160:62;17258:17;17238:18;;;17231:45;17293:19;;34478:113:0;16907:411:1;34478:113:0;34604:21;34628:10;:8;:10::i;:::-;34604:34;;34693:1;34675:7;34669:21;:25;:120;;;;;;;;;;;;;;;;;34738:7;34747:18;:7;:16;:18::i;:::-;34721:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34669:120;34649:140;34329:468;-1:-1:-1;;;34329:468:0:o;50676:1712::-;50796:16;50804:7;50796;:16::i;:::-;50782:30;;:10;:30;;;50760:114;;;;;;;18000:2:1;50760:114:0;;;17982:21:1;18039:2;18019:18;;;18012:30;18078:34;18058:18;;;18051:62;18149:4;18129:18;;;18122:32;18171:19;;50760:114:0;17798:398:1;50760:114:0;50907:29;;;50946:1;50907:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;50885:136;;;;;;;18403:2:1;50885:136:0;;;18385:21:1;18442:2;18422:18;;;18415:30;18481:34;18461:18;;;18454:62;18552:16;18532:18;;;18525:44;18586:19;;50885:136:0;18201:410:1;50885:136:0;51101:14;51107:7;51101:5;:14::i;:::-;51212:31;;;51223:10;51212:31;;;18790:74:1;18880:18;;;18873:34;;;51212:31:0;;;;;;;;;18763:18:1;;;51212:31:0;;51440:26;;19089:16:1;51387:90:0;;;19073:102:1;19191:11;;;;19184:27;;;;51387:90:0;;;;;;;;;;19227:12:1;;;51387:90:0;;;;51656:8;;:153;;;;51212:31;;51346:1;;-1:-1:-1;;51656:8:0;;;:21;;:153;;51692:8;;51723:4;;51212:31;;-1:-1:-1;;51387:90:0;;51656:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51631:178;;;51857:10;51844:9;:23;;51822:164;;;;;;;20372:2:1;51822:164:0;;;20354:21:1;20411:2;20391:18;;;20384:30;20450:34;20430:18;;;20423:62;20521:34;20501:18;;;20494:62;20593:29;20572:19;;;20565:58;20640:19;;51822:164:0;20170:495:1;51822:164:0;51999:8;;52091:29;;;51999:8;52091:29;;;:19;:29;;;;;;51999:381;;;;;:8;;;;;:13;;52020:9;;51999:381;;52045:8;;52174:7;;52230:10;;51999:8;52340:13;;51999:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50749:1639;;;;50676:1712;;:::o;48952:916::-;49211:27;;;49176:32;49211:27;;;:14;:27;;;;;;:64;;;;49253:11;;49211:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49316:21;;;;49211:72;;-1:-1:-1;49294:123:0;;;;;;;22419:2:1;49294:123:0;;;22401:21:1;22458:2;22438:18;;;22431:30;22497:34;22477:18;;;22470:62;22568:8;22548:18;;;22541:36;22594:19;;49294:123:0;22217:402:1;49294:123:0;49469:23;;49450:42;;:107;;;;;49536:9;:21;;;49523:8;;49513:19;;;;;;;:::i;:::-;;;;;;;;:44;49450:107;49428:183;;;;;;;23102:2:1;49428:183:0;;;23084:21:1;23141:2;23121:18;;;23114:30;23180:28;23160:18;;;23153:56;23226:18;;49428:183:0;22900:350:1;49428:183:0;49685:1;49659:27;;;49697:21;;;:34;49800:60;;;;;:4;;:16;;:60;;49817:11;;49830;;49843:6;;49851:8;;;;49800:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49120:748;48952:916;;;;;:::o;49876:181::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15300:2:1;12689:68:0;;;15282:21:1;;;15319:18;;;15312:30;15378:34;15358:18;;;15351:62;15430:18;;12689:68:0;15098:356:1;12689:68:0;50003:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50035:14;;50003:46:::1;:::i;13386:238::-:0;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15300:2:1;12689:68:0;;;15282:21:1;;;15319:18;;;15312:30;15378:34;15358:18;;;15351:62;15430:18;;12689:68:0;15098:356:1;12689:68:0;13489:22:::1;::::0;::::1;13467:110;;;::::0;::::1;::::0;;24239:2:1;13467:110:0::1;::::0;::::1;24221:21:1::0;24278:2;24258:18;;;24251:30;24317:34;24297:18;;;24290:62;24388:8;24368:18;;;24361:36;24414:19;;13467:110:0::1;24037:402:1::0;13467:110:0::1;13588:28;13607:8;13588:18;:28::i;:::-;13386:238:::0;:::o;43266:174::-;43341:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;43395:23;43341:24;43395:14;:23::i;:::-;43386:46;;;;;;;;;;;;43266:174;;:::o;53122:424::-;53318:14;53334:15;53378:8;53353:77;;;;;;;;;;;;:::i;:::-;53317:113;;;;53512:26;53522:6;53530:7;53512:9;:26::i;:::-;53287:259;;53122:424;;;;:::o;39506:452::-;39635:4;39301:16;;;:7;:16;;;;;;:30;:16;39657:110;;;;;;;24971:2:1;39657:110:0;;;24953:21:1;25010:2;24990:18;;;24983:30;25049:34;25029:18;;;25022:62;25120:14;25100:18;;;25093:42;25152:19;;39657:110:0;24769:408:1;39657:110:0;39778:13;39794:23;39809:7;39794:14;:23::i;:::-;39778:39;;39847:5;39836:16;;:7;:16;;;:64;;;;39893:7;39869:31;;:20;39881:7;39869:11;:20::i;:::-;:31;;;39836:64;:113;;;-1:-1:-1;36487:25:0;;;;36458:4;36487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39917:32;39828:122;39506:452;-1:-1:-1;;;;39506:452:0:o;42533:615::-;42706:4;42679:31;;:23;42694:7;42679:14;:23::i;:::-;:31;;;42657:122;;;;;;;25384:2:1;42657:122:0;;;25366:21:1;25423:2;25403:18;;;25396:30;25462:34;25442:18;;;25435:62;25533:11;25513:18;;;25506:39;25562:19;;42657:122:0;25182:405:1;42657:122:0;42798:16;;;42790:65;;;;;;;25794:2:1;42790:65:0;;;25776:21:1;25833:2;25813:18;;;25806:30;25872:34;25852:18;;;25845:62;25943:6;25923:18;;;25916:34;25967:19;;42790:65:0;25592:400:1;42790:65:0;42972:29;42989:1;42993:7;42972:8;:29::i;:::-;43014:15;;;;;;;:9;:15;;;;;:20;;43033:1;;43014:15;:20;;43033:1;;43014:20;:::i;:::-;;;;-1:-1:-1;;43045:13:0;;;;;;;:9;:13;;;;;:18;;43062:1;;43045:13;:18;;43062:1;;43045:18;:::i;:::-;;;;-1:-1:-1;;43074:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;43113:27;;43074:16;;43113:27;;;;;;;42533:615;;;:::o;13784:191::-;13858:16;13877:6;;;13894:17;;;;;;;;;;13927:40;;13877:6;;;;;;;13927:40;;13858:16;13927:40;13847:128;13784:191;:::o;43582:315::-;43737:8;43728:17;;:5;:17;;;;43720:55;;;;;;;26651:2:1;43720:55:0;;;26633:21:1;26690:2;26670:18;;;26663:30;26729:27;26709:18;;;26702:55;26774:18;;43720:55:0;26449:349:1;43720:55:0;43786:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;43848:41;;2724::1;;;43848::0;;2697:18:1;43848:41:0;;;;;;;43582:315;;;:::o;38547:352::-;38704:28;38714:4;38720:2;38724:7;38704:9;:28::i;:::-;38765:48;38788:4;38794:2;38798:7;38807:5;38765:22;:48::i;:::-;38743:148;;;;;;;27005:2:1;38743:148:0;;;26987:21:1;27044:2;27024:18;;;27017:30;27083:34;27063:18;;;27056:62;27154:20;27134:18;;;27127:48;27192:19;;38743:148:0;26803:414:1;53554:100:0;53606:13;53639:7;53632:14;;;;;:::i;8712:723::-;8768:13;8989:10;8985:53;;-1:-1:-1;;9016:10:0;;;;;;;;;;;;;;;;;;8712:723::o;8985:53::-;9063:5;9048:12;9104:78;9111:9;;9104:78;;9137:8;;;;:::i;:::-;;-1:-1:-1;9160:10:0;;-1:-1:-1;9168:2:0;9160:10;;:::i;:::-;;;9104:78;;;9192:19;9224:6;9214:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9214:17:0;;9192:39;;9242:154;9249:10;;9242:154;;9276:11;9286:1;9276:11;;:::i;:::-;;-1:-1:-1;9345:10:0;9353:2;9345:5;:10;:::i;:::-;9332:24;;:2;:24;:::i;:::-;9319:39;;9302:6;9309;9302:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9373:11:0;9382:2;9373:11;;:::i;:::-;;;9242:154;;41836:360;41896:13;41912:23;41927:7;41912:14;:23::i;:::-;41896:39;;42037:29;42054:1;42058:7;42037:8;:29::i;:::-;42079:16;;;;;;;:9;:16;;;;;:21;;42099:1;;42079:16;:21;;42099:1;;42079:21;:::i;:::-;;;;-1:-1:-1;;42118:16:0;;;;:7;:16;;;;;;42111:23;;;;;;42152:36;42126:7;;42118:16;42111:23;42152:36;;;;;42118:16;;42152:36;41885:311;41836:360;:::o;40300:110::-;40376:26;40386:2;40390:7;40376:26;;;;;;;;;;;;:9;:26::i;44462:980::-;44617:4;44638:13;;;15123:20;15171:8;44634:801;;44691:175;;;;;:36;;;;;;:175;;11260:10;;44785:4;;44812:7;;44842:5;;44691:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44691:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44670:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45049:13:0;;45045:320;;45092:108;;;;;27005:2:1;45092:108:0;;;26987:21:1;27044:2;27024:18;;;27017:30;27083:34;27063:18;;;27056:62;27154:20;27134:18;;;27127:48;27192:19;;45092:108:0;26803:414:1;45045:320:0;45315:6;45309:13;45300:6;45296:2;45292:15;45285:38;44670:710;44930:51;;44940:41;44930:51;;-1:-1:-1;44923:58:0;;44634:801;-1:-1:-1;45419:4:0;44462:980;;;;;;:::o;40637:321::-;40767:18;40773:2;40777:7;40767:5;:18::i;:::-;40818:54;40849:1;40853:2;40857:7;40866:5;40818:22;:54::i;:::-;40796:154;;;;;;;27005:2:1;40796:154:0;;;26987:21:1;27044:2;27024:18;;;27017:30;27083:34;27063:18;;;27056:62;27154:20;27134:18;;;27127:48;27192:19;;40796:154:0;26803:414:1;41294:313:0;41374:16;;;41366:61;;;;;;;29015:2:1;41366:61:0;;;28997:21:1;;;29034:18;;;29027:30;29093:34;29073:18;;;29066:62;29145:18;;41366:61:0;28813:356:1;41366:61:0;41498:13;;;;;;;:9;:13;;;;;:18;;41515:1;;41498:13;:18;;41515:1;;41498:18;:::i;:::-;;;;-1:-1:-1;;41527:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;41566:33;;41527:16;;;41566:33;;41527:16;;41566:33;41294:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:184::-;230:77;227:1;220:88;327:4;324:1;317:15;351:4;348:1;341:15;367:690;431:5;461:18;502:2;494:6;491:14;488:40;;;508:18;;:::i;:::-;642:2;636:9;708:2;696:15;;547:66;692:24;;;718:2;688:33;684:42;672:55;;;742:18;;;762:22;;;739:46;736:72;;;788:18;;:::i;:::-;828:10;824:2;817:22;857:6;848:15;;887:6;879;872:22;927:3;918:6;913:3;909:16;906:25;903:45;;;944:1;941;934:12;903:45;994:6;989:3;982:4;974:6;970:17;957:44;1049:1;1042:4;1033:6;1025;1021:19;1017:30;1010:41;;;;367:690;;;;;:::o;1062:220::-;1104:5;1157:3;1150:4;1142:6;1138:17;1134:27;1124:55;;1175:1;1172;1165:12;1124:55;1197:79;1272:3;1263:6;1250:20;1243:4;1235:6;1231:17;1197:79;:::i;1287:171::-;1354:20;;1414:18;1403:30;;1393:41;;1383:69;;1448:1;1445;1438:12;1463:684;1565:6;1573;1581;1589;1642:3;1630:9;1621:7;1617:23;1613:33;1610:53;;;1659:1;1656;1649:12;1610:53;1682:28;1700:9;1682:28;:::i;:::-;1672:38;;1761:2;1750:9;1746:18;1733:32;1784:18;1825:2;1817:6;1814:14;1811:34;;;1841:1;1838;1831:12;1811:34;1864:49;1905:7;1896:6;1885:9;1881:22;1864:49;:::i;:::-;1854:59;;1932:37;1965:2;1954:9;1950:18;1932:37;:::i;:::-;1922:47;;2022:2;2011:9;2007:18;1994:32;1978:48;;2051:2;2041:8;2038:16;2035:36;;;2067:1;2064;2057:12;2035:36;;2090:51;2133:7;2122:8;2111:9;2107:24;2090:51;:::i;:::-;2080:61;;;1463:684;;;;;;;:::o;2152:177::-;2237:66;2230:5;2226:78;2219:5;2216:89;2206:117;;2319:1;2316;2309:12;2334:245;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2500:9;2487:23;2519:30;2543:5;2519:30;:::i;2776:258::-;2848:1;2858:113;2872:6;2869:1;2866:13;2858:113;;;2948:11;;;2942:18;2929:11;;;2922:39;2894:2;2887:10;2858:113;;;2989:6;2986:1;2983:13;2980:48;;;-1:-1:-1;;3024:1:1;3006:16;;2999:27;2776:258::o;3039:317::-;3081:3;3119:5;3113:12;3146:6;3141:3;3134:19;3162:63;3218:6;3211:4;3206:3;3202:14;3195:4;3188:5;3184:16;3162:63;:::i;:::-;3270:2;3258:15;3275:66;3254:88;3245:98;;;;3345:4;3241:109;;3039:317;-1:-1:-1;;3039:317:1:o;3361:220::-;3510:2;3499:9;3492:21;3473:4;3530:45;3571:2;3560:9;3556:18;3548:6;3530:45;:::i;3586:180::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;-1:-1:-1;3737:23:1;;3586:180;-1:-1:-1;3586:180:1:o;4134:154::-;4220:42;4213:5;4209:54;4202:5;4199:65;4189:93;;4278:1;4275;4268:12;4293:315;4361:6;4369;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4477:9;4464:23;4496:31;4521:5;4496:31;:::i;:::-;4546:5;4598:2;4583:18;;;;4570:32;;-1:-1:-1;;;4293:315:1:o;4613:456::-;4690:6;4698;4706;4759:2;4747:9;4738:7;4734:23;4730:32;4727:52;;;4775:1;4772;4765:12;4727:52;4814:9;4801:23;4833:31;4858:5;4833:31;:::i;:::-;4883:5;-1:-1:-1;4940:2:1;4925:18;;4912:32;4953:33;4912:32;4953:33;:::i;:::-;4613:456;;5005:7;;-1:-1:-1;;;5059:2:1;5044:18;;;;5031:32;;4613:456::o;5074:450::-;5143:6;5196:2;5184:9;5175:7;5171:23;5167:32;5164:52;;;5212:1;5209;5202:12;5164:52;5252:9;5239:23;5285:18;5277:6;5274:30;5271:50;;;5317:1;5314;5307:12;5271:50;5340:22;;5393:4;5385:13;;5381:27;-1:-1:-1;5371:55:1;;5422:1;5419;5412:12;5371:55;5445:73;5510:7;5505:2;5492:16;5487:2;5483;5479:11;5445:73;:::i;5529:247::-;5588:6;5641:2;5629:9;5620:7;5616:23;5612:32;5609:52;;;5657:1;5654;5647:12;5609:52;5696:9;5683:23;5715:31;5740:5;5715:31;:::i;5963:184::-;6021:6;6074:2;6062:9;6053:7;6049:23;6045:32;6042:52;;;6090:1;6087;6080:12;6042:52;6113:28;6131:9;6113:28;:::i;6375:460::-;6460:6;6468;6476;6529:2;6517:9;6508:7;6504:23;6500:32;6497:52;;;6545:1;6542;6535:12;6497:52;6568:28;6586:9;6568:28;:::i;:::-;6558:38;;6647:2;6636:9;6632:18;6619:32;6674:18;6666:6;6663:30;6660:50;;;6706:1;6703;6696:12;6660:50;6729:49;6770:7;6761:6;6750:9;6746:22;6729:49;:::i;:::-;6719:59;;;6825:2;6814:9;6810:18;6797:32;6787:42;;6375:460;;;;;:::o;7093:416::-;7158:6;7166;7219:2;7207:9;7198:7;7194:23;7190:32;7187:52;;;7235:1;7232;7225:12;7187:52;7274:9;7261:23;7293:31;7318:5;7293:31;:::i;:::-;7343:5;-1:-1:-1;7400:2:1;7385:18;;7372:32;7442:15;;7435:23;7423:36;;7413:64;;7473:1;7470;7463:12;7413:64;7496:7;7486:17;;;7093:416;;;;;:::o;7514:665::-;7609:6;7617;7625;7633;7686:3;7674:9;7665:7;7661:23;7657:33;7654:53;;;7703:1;7700;7693:12;7654:53;7742:9;7729:23;7761:31;7786:5;7761:31;:::i;:::-;7811:5;-1:-1:-1;7868:2:1;7853:18;;7840:32;7881:33;7840:32;7881:33;:::i;:::-;7933:7;-1:-1:-1;7987:2:1;7972:18;;7959:32;;-1:-1:-1;8042:2:1;8027:18;;8014:32;8069:18;8058:30;;8055:50;;;8101:1;8098;8091:12;8055:50;8124:49;8165:7;8156:6;8145:9;8141:22;8124:49;:::i;8184:252::-;8251:6;8259;8312:2;8300:9;8291:7;8287:23;8283:32;8280:52;;;8328:1;8325;8318:12;8280:52;8351:28;8369:9;8351:28;:::i;8441:347::-;8492:8;8502:6;8556:3;8549:4;8541:6;8537:17;8533:27;8523:55;;8574:1;8571;8564:12;8523:55;-1:-1:-1;8597:20:1;;8640:18;8629:30;;8626:50;;;8672:1;8669;8662:12;8626:50;8709:4;8701:6;8697:17;8685:29;;8761:3;8754:4;8745:6;8737;8733:19;8729:30;8726:39;8723:59;;;8778:1;8775;8768:12;8723:59;8441:347;;;;;:::o;8793:773::-;8897:6;8905;8913;8921;8929;8982:3;8970:9;8961:7;8957:23;8953:33;8950:53;;;8999:1;8996;8989:12;8950:53;9022:28;9040:9;9022:28;:::i;:::-;9012:38;;9101:2;9090:9;9086:18;9073:32;9124:18;9165:2;9157:6;9154:14;9151:34;;;9181:1;9178;9171:12;9151:34;9204:49;9245:7;9236:6;9225:9;9221:22;9204:49;:::i;:::-;9194:59;;9272:37;9305:2;9294:9;9290:18;9272:37;:::i;:::-;9262:47;;9362:2;9351:9;9347:18;9334:32;9318:48;;9391:2;9381:8;9378:16;9375:36;;;9407:1;9404;9397:12;9375:36;;9446:60;9498:7;9487:8;9476:9;9472:24;9446:60;:::i;:::-;8793:773;;;;-1:-1:-1;8793:773:1;;-1:-1:-1;9525:8:1;;9420:86;8793:773;-1:-1:-1;;;8793:773:1:o;9571:388::-;9639:6;9647;9700:2;9688:9;9679:7;9675:23;9671:32;9668:52;;;9716:1;9713;9706:12;9668:52;9755:9;9742:23;9774:31;9799:5;9774:31;:::i;:::-;9824:5;-1:-1:-1;9881:2:1;9866:18;;9853:32;9894:33;9853:32;9894:33;:::i;9964:481::-;10042:6;10050;10058;10111:2;10099:9;10090:7;10086:23;10082:32;10079:52;;;10127:1;10124;10117:12;10079:52;10150:28;10168:9;10150:28;:::i;:::-;10140:38;;10229:2;10218:9;10214:18;10201:32;10256:18;10248:6;10245:30;10242:50;;;10288:1;10285;10278:12;10242:50;10327:58;10377:7;10368:6;10357:9;10353:22;10327:58;:::i;:::-;9964:481;;10404:8;;-1:-1:-1;10301:84:1;;-1:-1:-1;;;;9964:481:1:o;10450:437::-;10529:1;10525:12;;;;10572;;;10593:61;;10647:4;10639:6;10635:17;10625:27;;10593:61;10700:2;10692:6;10689:14;10669:18;10666:38;10663:218;;;10737:77;10734:1;10727:88;10838:4;10835:1;10828:15;10866:4;10863:1;10856:15;10663:218;;10450:437;;;:::o;10892:869::-;11018:3;11047:1;11080:6;11074:13;11110:36;11136:9;11110:36;:::i;:::-;11165:1;11182:18;;;11209:162;;;;11385:1;11380:356;;;;11175:561;;11209:162;11257:66;11246:9;11242:82;11237:3;11230:95;11354:6;11349:3;11345:16;11338:23;;11209:162;;11380:356;11411:6;11408:1;11401:17;11441:4;11486:2;11483:1;11473:16;11511:1;11525:165;11539:6;11536:1;11533:13;11525:165;;;11617:14;;11604:11;;;11597:35;11660:16;;;;11554:10;;11525:165;;;11529:3;;;11719:6;11714:3;11710:16;11703:23;;11175:561;-1:-1:-1;11752:3:1;;10892:869;-1:-1:-1;;;;;;10892:869:1:o;12187:557::-;12444:6;12436;12432:19;12421:9;12414:38;12488:3;12483:2;12472:9;12468:18;12461:31;12395:4;12515:46;12556:3;12545:9;12541:19;12533:6;12515:46;:::i;:::-;12609:18;12601:6;12597:31;12592:2;12581:9;12577:18;12570:59;12677:9;12669:6;12665:22;12660:2;12649:9;12645:18;12638:50;12705:33;12731:6;12723;12705:33;:::i;:::-;12697:41;12187:557;-1:-1:-1;;;;;;;12187:557:1:o;12749:274::-;12878:3;12916:6;12910:13;12932:53;12978:6;12973:3;12966:4;12958:6;12954:17;12932:53;:::i;:::-;13001:16;;;;;12749:274;-1:-1:-1;;12749:274:1:o;17323:470::-;17502:3;17540:6;17534:13;17556:53;17602:6;17597:3;17590:4;17582:6;17578:17;17556:53;:::i;:::-;17672:13;;17631:16;;;;17694:57;17672:13;17631:16;17728:4;17716:17;;17694:57;:::i;:::-;17767:20;;17323:470;-1:-1:-1;;;;17323:470:1:o;19250:665::-;19531:6;19523;19519:19;19508:9;19501:38;19587:42;19579:6;19575:55;19570:2;19559:9;19555:18;19548:83;19667:3;19662:2;19651:9;19647:18;19640:31;19482:4;19694:46;19735:3;19724:9;19720:19;19712:6;19694:46;:::i;:::-;19790:6;19783:14;19776:22;19771:2;19760:9;19756:18;19749:50;19848:9;19840:6;19836:22;19830:3;19819:9;19815:19;19808:51;19876:33;19902:6;19894;19876:33;:::i;:::-;19868:41;19250:665;-1:-1:-1;;;;;;;;19250:665:1:o;19920:245::-;19999:6;20007;20060:2;20048:9;20039:7;20035:23;20031:32;20028:52;;;20076:1;20073;20066:12;20028:52;-1:-1:-1;;20099:16:1;;20155:2;20140:18;;;20134:25;20099:16;;20134:25;;-1:-1:-1;19920:245:1:o;20670:1542::-;21016:6;21008;21004:19;20993:9;20986:38;20967:4;21043:2;21081:3;21076:2;21065:9;21061:18;21054:31;21105:1;21138:6;21132:13;21168:36;21194:9;21168:36;:::i;:::-;21241:6;21235:3;21224:9;21220:19;21213:35;21267:3;21289:1;21321:2;21310:9;21306:18;21338:1;21333:180;;;;21527:1;21522:354;;;;21299:577;;21333:180;21396:66;21385:9;21381:82;21376:2;21365:9;21361:18;21354:110;21499:3;21488:9;21484:19;21477:26;;21333:180;;21522:354;21553:6;21550:1;21543:17;21601:2;21598:1;21588:16;21626:1;21640:180;21654:6;21651:1;21648:13;21640:180;;;21747:14;;21723:17;;;21719:26;;21712:50;21790:16;;;;21669:10;;21640:180;;;21844:17;;21840:26;;;-1:-1:-1;;21299:577:1;;;;;;21921:9;21916:3;21912:19;21907:2;21896:9;21892:18;21885:47;21955:30;21981:3;21973:6;21955:30;:::i;:::-;21941:44;;;21994:46;22036:2;22025:9;22021:18;22013:6;3848:42;3837:54;3825:67;;3771:127;21994:46;3848:42;3837:54;;22091:3;22076:19;;3825:67;22145:9;22137:6;22133:22;22127:3;22116:9;22112:19;22105:51;22173:33;22199:6;22191;22173:33;:::i;:::-;22165:41;20670:1542;-1:-1:-1;;;;;;;;;20670:1542:1:o;22624:271::-;22807:6;22799;22794:3;22781:33;22763:3;22833:16;;22858:13;;;22833:16;22624:271;-1:-1:-1;22624:271:1:o;23255:777::-;23522:6;23514;23510:19;23499:9;23492:38;23566:3;23561:2;23550:9;23546:18;23539:31;23473:4;23593:46;23634:3;23623:9;23619:19;23611:6;23593:46;:::i;:::-;23687:18;23679:6;23675:31;23670:2;23659:9;23655:18;23648:59;23755:9;23747:6;23743:22;23738:2;23727:9;23723:18;23716:50;23790:6;23782;23775:22;23844:6;23836;23831:2;23823:6;23819:15;23806:45;23897:1;23892:2;23883:6;23875;23871:19;23867:28;23860:39;24023:2;23953:66;23948:2;23940:6;23936:15;23932:88;23924:6;23920:101;23916:110;23908:118;;;23255:777;;;;;;;;:::o;24444:320::-;24531:6;24539;24592:2;24580:9;24571:7;24567:23;24563:32;24560:52;;;24608:1;24605;24598:12;24560:52;24640:9;24634:16;24659:31;24684:5;24659:31;:::i;:::-;24754:2;24739:18;;;;24733:25;24709:5;;24733:25;;-1:-1:-1;;;24444:320:1:o;25997:184::-;26049:77;26046:1;26039:88;26146:4;26143:1;26136:15;26170:4;26167:1;26160:15;26186:125;26226:4;26254:1;26251;26248:8;26245:34;;;26259:18;;:::i;:::-;-1:-1:-1;26296:9:1;;26186:125::o;26316:128::-;26356:3;26387:1;26383:6;26380:1;26377:13;26374:39;;;26393:18;;:::i;:::-;-1:-1:-1;26429:9:1;;26316:128::o;27222:195::-;27261:3;27292:66;27285:5;27282:77;27279:103;;;27362:18;;:::i;:::-;-1:-1:-1;27409:1:1;27398:13;;27222:195::o;27422:184::-;27474:77;27471:1;27464:88;27571:4;27568:1;27561:15;27595:4;27592:1;27585:15;27611:120;27651:1;27677;27667:35;;27682:18;;:::i;:::-;-1:-1:-1;27716:9:1;;27611:120::o;27736:112::-;27768:1;27794;27784:35;;27799:18;;:::i;:::-;-1:-1:-1;27833:9:1;;27736:112::o;27853:184::-;27905:77;27902:1;27895:88;28002:4;27999:1;27992:15;28026:4;28023:1;28016:15;28042:512;28236:4;28265:42;28346:2;28338:6;28334:15;28323:9;28316:34;28398:2;28390:6;28386:15;28381:2;28370:9;28366:18;28359:43;;28438:6;28433:2;28422:9;28418:18;28411:34;28481:3;28476:2;28465:9;28461:18;28454:31;28502:46;28543:3;28532:9;28528:19;28520:6;28502:46;:::i;:::-;28494:54;28042:512;-1:-1:-1;;;;;;28042:512:1:o;28559:249::-;28628:6;28681:2;28669:9;28660:7;28656:23;28652:32;28649:52;;;28697:1;28694;28687:12;28649:52;28729:9;28723:16;28748:30;28772:5;28748:30;:::i
Swarm Source
ipfs://3b43355e86807ca700caaa9004cdc03ff5454a0f5499b7bba3a5041e3b06e9cb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.