Token
Billionarire Skull Club (BSC)
ERC-721
Overview
Max Total Supply
0 BSC
Holders
1
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 BSCLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
billionarireskullclub
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at testnet.ftmscan.com on 2022-04-10 */ // SPDX-License-Identifier: GPL-3.0 // 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, uint _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, uint _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 (uint nativeFee, uint 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, uint _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 { uint payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint => 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) virtual internal; 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; } } // File: contracts/billionarireskullclub.sol pragma solidity ^0.8.7; contract billionarireskullclub is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 nextTokenId = 0; uint256 MAX_MINT_FANTOM = 1000; uint256 gasForDestinationLzReceive = 350000; constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("Billionarire Skull Club", "BSC") { _owner = msg.sender; endpoint = ILayerZeroEndpoint(_layerZeroEndpoint); baseURI = baseURI_; } // mint function // you can choose to mint 1 or 2 // mint is free, but payments are accepted function mint(uint8 numTokens) external payable { require(numTokens < 3, "Billionarire Skull Club: Max 2 NFTs per transaction"); require( nextTokenId + numTokens <= MAX_MINT_FANTOM, "Billionarire Skull Club: Mint exceeds supply" ); _safeMint(msg.sender, ++nextTokenId); if (numTokens == 2) { _safeMint(msg.sender, ++nextTokenId); } } // 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, "Billionarire Skull Club: 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, "Billionarire Skull Club: 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; } }
[{"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":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","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
60806040526000600c556103e8600d5562055730600e553480156200002357600080fd5b5060405162002da538038062002da5833981016040819052620000469162000254565b6040518060400160405280601781526020017f42696c6c696f6e617269726520536b756c6c20436c75620000000000000000008152506040518060400160405280600381526020016242534360e81b815250620000b2620000ac6200012760201b60201c565b6200012b565b8151620000c79060019060208501906200017b565b508051620000dd9060029060208401906200017b565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200011e90600b9060208501906200017b565b50505062000382565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001899062000345565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200024f57600080fd5b919050565b600080604083850312156200026857600080fd5b82516001600160401b03808211156200028057600080fd5b818501915085601f8301126200029557600080fd5b815181811115620002aa57620002aa62000221565b604051601f8201601f19908116603f01168101908382118183101715620002d557620002d562000221565b81604052828152602093508884848701011115620002f257600080fd5b600091505b82821015620003165784820184015181830185015290830190620002f7565b82821115620003285760008484830101525b95506200033a91505085820162000237565b925050509250929050565b600181811c908216806200035a57607f821691505b602082108114156200037c57634e487b7160e01b600052602260045260246000fd5b50919050565b612a1380620003926000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610531578063eb8d72b71461057a578063ed88c68e146101e6578063f2fde38b1461059a57600080fd5b8063b88d4fde146104cb578063c87b56dd146104eb578063cf89fa031461050b578063d1deba1f1461051e57600080fd5b8063943fb872116100d1578063943fb8721461045657806395d89b4114610476578063a22cb4651461048b578063b2bdfa7b146104ab57600080fd5b80637533d788146103ad5780638da5cb5b146103cd5780638ee74912146103eb57600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103375780636ecd23061461035757806370a082311461036a578063715018a61461039857600080fd5b80632e1a7d4d146102d757806342842e0e146102f757806355f804b31461031757600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102775780631c37a8221461029757806323b872dd146102b757600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004611ffd565b6105ba565b005b3480156101f457600080fd5b50610208610203366004612097565b6107b4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610806565b604051610214919061210c565b34801561024b57600080fd5b5061025f61025a36600461211f565b610898565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506101e661029236600461214d565b61092d565b3480156102a357600080fd5b506101e66102b2366004611ffd565b610a43565b3480156102c357600080fd5b506101e66102d2366004612179565b610ab2565b3480156102e357600080fd5b506101e66102f236600461211f565b610ae3565b34801561030357600080fd5b506101e6610312366004612179565b610bce565b34801561032357600080fd5b506101e66103323660046121ba565b610be9565b34801561034357600080fd5b5061025f61035236600461211f565b610c26565b6101e6610365366004612202565b610c9d565b34801561037657600080fd5b5061038a610385366004612225565b610dc2565b604051908152602001610214565b3480156103a457600080fd5b506101e6610e49565b3480156103b957600080fd5b506102326103c8366004612242565b610e7f565b3480156103d957600080fd5b506000546001600160a01b031661025f565b3480156103f757600080fd5b5061044161040636600461225d565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561046257600080fd5b506101e661047136600461211f565b610f19565b34801561048257600080fd5b50610232610f48565b34801561049757600080fd5b506101e66104a63660046122b3565b610f57565b3480156104b757600080fd5b50600a5461025f906001600160a01b031681565b3480156104d757600080fd5b506101e66104e63660046122f1565b610f62565b3480156104f757600080fd5b5061023261050636600461211f565b610f94565b6101e6610519366004612350565b61106f565b6101e661052c3660046123b4565b611357565b34801561053d57600080fd5b5061020861054c36600461243f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506101e661059536600461246d565b6114e4565b3480156105a657600080fd5b506101e66105b5366004612225565b61152c565b6007546001600160a01b031633146105d157600080fd5b61ffff8416600090815260096020526040902080546105ef906124bf565b9050835114801561062e575061ffff841660009081526009602052604090819020905161061c91906124fa565b60405180910390208380519060200120145b61069c5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106c590879087908790879060040161256c565b600060405180830381600087803b1580156106df57600080fd5b505af19250505080156106f0575060015b6107ae576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161073a91906125b5565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906107a590869086908690869061256c565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107e557506001600160e01b03198216635b5e139f60e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610815906124bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906124bf565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b506000908152600560205260409020546001600160a01b031690565b600061093882610c26565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610693565b336001600160a01b03821614806109c257506109c2813361054c565b610a345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610693565b610a3e83836115c4565b505050565b333014610aa65760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610693565b6107ae84848484611632565b610abc338261165f565b610ad85760405162461bcd60e51b8152600401610693906125d1565b610a3e838383611756565b6000546001600160a01b03163314610b0d5760405162461bcd60e51b815260040161069390612622565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b5a576040519150601f19603f3d011682016040523d82523d6000602084013e610b5f565b606091505b5050905080610bca5760405162461bcd60e51b815260206004820152603160248201527f42696c6c696f6e617269726520536b756c6c20436c75623a204661696c6564206044820152703a37903bb4ba34323930bb9022ba3432b960791b6064820152608401610693565b5050565b610a3e83838360405180602001604052806000815250610f62565b6000546001600160a01b03163314610c135760405162461bcd60e51b815260040161069390612622565b8051610bca90600b906020840190611e17565b6000818152600360205260408120546001600160a01b0316806108005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610693565b60038160ff1610610d0c5760405162461bcd60e51b815260206004820152603360248201527f42696c6c696f6e617269726520536b756c6c20436c75623a204d61782032204e604482015272232a39903832b9103a3930b739b0b1ba34b7b760691b6064820152608401610693565b600d548160ff16600c54610d20919061266d565b1115610d835760405162461bcd60e51b815260206004820152602c60248201527f42696c6c696f6e617269726520536b756c6c20436c75623a204d696e7420657860448201526b636565647320737570706c7960a01b6064820152608401610693565b610da033600c60008154610d9690612685565b91829055506118f6565b8060ff1660021415610dbf57610dbf33600c60008154610d9690612685565b50565b60006001600160a01b038216610e2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610693565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e735760405162461bcd60e51b815260040161069390612622565b610e7d6000611910565b565b60096020526000908152604090208054610e98906124bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec4906124bf565b8015610f115780601f10610ee657610100808354040283529160200191610f11565b820191906000526020600020905b815481529060010190602001808311610ef457829003601f168201915b505050505081565b6000546001600160a01b03163314610f435760405162461bcd60e51b815260040161069390612622565b600e55565b606060028054610815906124bf565b610bca338383611960565b610f6c338361165f565b610f885760405162461bcd60e51b8152600401610693906125d1565b6107ae84848484611a2f565b6000818152600360205260409020546060906001600160a01b03166110135760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610693565b600061101d611a62565b9050600081511161103d5760405180602001604052806000815250611068565b8061104784611a71565b6040516020016110589291906126a0565b6040516020818303038152906040525b9392505050565b61107881610c26565b6001600160a01b0316336001600160a01b0316146110e35760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610693565b61ffff821660009081526009602052604081208054611101906124bf565b9050116111675760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610693565b61117081611b6e565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906111f3908990309089908790899060a6016126cf565b6040805180830381865afa15801561120f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112339190612723565b509050803410156112d25760405162461bcd60e51b815260206004820152605c60248201527f42696c6c696f6e617269726520536b756c6c20436c75623a206d73672e76616c60448201527f7565206e6f7420656e6f75676820746f20636f766572206d657373616765466560648201527f652e2053656e642067617320666f72206d657373616765206665657300000000608482015260a401610693565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c580310092349261131d928c928b913391908b90600401612747565b6000604051808303818588803b15801561133657600080fd5b505af115801561134a573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516113789087906125b5565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506113ff5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610693565b80548214801561142957508060010154838360405161141f929190612827565b6040518091039020145b6114755760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610693565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906114aa9089908990899089908990600401612837565b600060405180830381600087803b1580156114c457600080fd5b505af11580156114d8573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b0316331461150e5760405162461bcd60e51b815260040161069390612622565b61ffff831660009081526009602052604090206107ae908383611e9b565b6000546001600160a01b031633146115565760405162461bcd60e51b815260040161069390612622565b6001600160a01b0381166115bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b610dbf81611910565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115f982610c26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906116499190612898565b9150915061165782826118f6565b505050505050565b6000818152600360205260408120546001600160a01b03166116d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b60006116e383610c26565b9050806001600160a01b0316846001600160a01b0316148061171e5750836001600160a01b031661171384610898565b6001600160a01b0316145b8061174e57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176982610c26565b6001600160a01b0316146117d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610693565b6001600160a01b0382166118335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b61183e6000826115c4565b6001600160a01b03831660009081526004602052604081208054600192906118679084906128c6565b90915550506001600160a01b038216600090815260046020526040812080546001929061189590849061266d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bca828260405180602001604052806000815250611c09565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156119c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610693565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a3a848484611756565b611a4684848484611c3c565b6107ae5760405162461bcd60e51b8152600401610693906128dd565b6060600b8054610815906124bf565b606081611a955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abf5780611aa981612685565b9150611ab89050600a83612945565b9150611a99565b6000816001600160401b03811115611ad957611ad9611f3b565b6040519080825280601f01601f191660200182016040528015611b03576020820181803683370190505b5090505b841561174e57611b186001836128c6565b9150611b25600a86612959565b611b3090603061266d565b60f81b818381518110611b4557611b4561296d565b60200101906001600160f81b031916908160001a905350611b67600a86612945565b9450611b07565b6000611b7982610c26565b9050611b866000836115c4565b6001600160a01b0381166000908152600460205260408120805460019290611baf9084906128c6565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611c138383611d3a565b611c206000848484611c3c565b610a3e5760405162461bcd60e51b8152600401610693906128dd565b60006001600160a01b0384163b15611d2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c80903390899088908890600401612983565b6020604051808303816000875af1925050508015611cbb575060408051601f3d908101601f19168201909252611cb8918101906129c0565b60015b611d15573d808015611ce9576040519150601f19603f3d011682016040523d82523d6000602084013e611cee565b606091505b508051611d0d5760405162461bcd60e51b8152600401610693906128dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174e565b506001949350505050565b6001600160a01b038216611d905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610693565b6001600160a01b0382166000908152600460205260408120805460019290611db990849061266d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e23906124bf565b90600052602060002090601f016020900481019282611e455760008555611e8b565b82601f10611e5e57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578251825591602001919060010190611e70565b50611e97929150611f0f565b5090565b828054611ea7906124bf565b90600052602060002090601f016020900481019282611ec95760008555611e8b565b82601f10611ee25782800160ff19823516178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578235825591602001919060010190611ef4565b5b80821115611e975760008155600101611f10565b803561ffff81168114611f3657600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f6b57611f6b611f3b565b604051601f8501601f19908116603f01168101908282118183101715611f9357611f93611f3b565b81604052809350858152868686011115611fac57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611fd757600080fd5b61106883833560208501611f51565b80356001600160401b0381168114611f3657600080fd5b6000806000806080858703121561201357600080fd5b61201c85611f24565b935060208501356001600160401b038082111561203857600080fd5b61204488838901611fc6565b945061205260408801611fe6565b9350606087013591508082111561206857600080fd5b5061207587828801611fc6565b91505092959194509250565b6001600160e01b031981168114610dbf57600080fd5b6000602082840312156120a957600080fd5b813561106881612081565b60005b838110156120cf5781810151838201526020016120b7565b838111156107ae5750506000910152565b600081518084526120f88160208601602086016120b4565b601f01601f19169290920160200192915050565b60208152600061106860208301846120e0565b60006020828403121561213157600080fd5b5035919050565b6001600160a01b0381168114610dbf57600080fd5b6000806040838503121561216057600080fd5b823561216b81612138565b946020939093013593505050565b60008060006060848603121561218e57600080fd5b833561219981612138565b925060208401356121a981612138565b929592945050506040919091013590565b6000602082840312156121cc57600080fd5b81356001600160401b038111156121e257600080fd5b8201601f810184136121f357600080fd5b61174e84823560208401611f51565b60006020828403121561221457600080fd5b813560ff8116811461106857600080fd5b60006020828403121561223757600080fd5b813561106881612138565b60006020828403121561225457600080fd5b61106882611f24565b60008060006060848603121561227257600080fd5b61227b84611f24565b925060208401356001600160401b0381111561229657600080fd5b6122a286828701611fc6565b925050604084013590509250925092565b600080604083850312156122c657600080fd5b82356122d181612138565b9150602083013580151581146122e657600080fd5b809150509250929050565b6000806000806080858703121561230757600080fd5b843561231281612138565b9350602085013561232281612138565b92506040850135915060608501356001600160401b0381111561234457600080fd5b61207587828801611fc6565b6000806040838503121561236357600080fd5b61216b83611f24565b60008083601f84011261237e57600080fd5b5081356001600160401b0381111561239557600080fd5b6020830191508360208285010111156123ad57600080fd5b9250929050565b6000806000806000608086880312156123cc57600080fd5b6123d586611f24565b945060208601356001600160401b03808211156123f157600080fd5b6123fd89838a01611fc6565b955061240b60408901611fe6565b9450606088013591508082111561242157600080fd5b5061242e8882890161236c565b969995985093965092949392505050565b6000806040838503121561245257600080fd5b823561245d81612138565b915060208301356122e681612138565b60008060006040848603121561248257600080fd5b61248b84611f24565b925060208401356001600160401b038111156124a657600080fd5b6124b28682870161236c565b9497909650939450505050565b600181811c908216806124d357607f821691505b602082108114156124f457634e487b7160e01b600052602260045260246000fd5b50919050565b6000808354612508816124bf565b60018281168015612520576001811461253157612560565b60ff19841687528287019450612560565b8760005260208060002060005b858110156125575781548a82015290840190820161253e565b50505082870194505b50929695505050505050565b61ffff8516815260806020820152600061258960808301866120e0565b6001600160401b038516604084015282810360608401526125aa81856120e0565b979650505050505050565b600082516125c78184602087016120b4565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561268057612680612657565b500190565b600060001982141561269957612699612657565b5060010190565b600083516126b28184602088016120b4565b8351908301906126c68183602088016120b4565b01949350505050565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126fd908301866120e0565b8415156060840152828103608084015261271781856120e0565b98975050505050505050565b6000806040838503121561273657600080fd5b505080516020909101519092909150565b61ffff871681526000602060c08184015260008854612765816124bf565b8060c087015260e0600180841660008114612787576001811461279c576127ca565b60ff19851689840152610100890195506127ca565b8d6000528660002060005b858110156127c25781548b82018601529083019088016127a7565b8a0184019650505b505050505083810360408501526127e181896120e0565b9150506127f960608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a084015261281a81856120e0565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061285460808301876120e0565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b600080604083850312156128ab57600080fd5b82516128b681612138565b6020939093015192949293505050565b6000828210156128d8576128d8612657565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129545761295461292f565b500490565b6000826129685761296861292f565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129b6908301846120e0565b9695505050505050565b6000602082840312156129d257600080fd5b81516110688161208156fea2646970667358221220795a965778053bc8bcac933c4daf1a498b2005eb674559aec1034ae53b914eff64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000007dcad72640f835b0fa36efd3d6d3ec902c7e5acf000000000000000000000000000000000000000000000000000000000000000e68747470733a2f2f65672e636f6d000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610531578063eb8d72b71461057a578063ed88c68e146101e6578063f2fde38b1461059a57600080fd5b8063b88d4fde146104cb578063c87b56dd146104eb578063cf89fa031461050b578063d1deba1f1461051e57600080fd5b8063943fb872116100d1578063943fb8721461045657806395d89b4114610476578063a22cb4651461048b578063b2bdfa7b146104ab57600080fd5b80637533d788146103ad5780638da5cb5b146103cd5780638ee74912146103eb57600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103375780636ecd23061461035757806370a082311461036a578063715018a61461039857600080fd5b80632e1a7d4d146102d757806342842e0e146102f757806355f804b31461031757600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102775780631c37a8221461029757806323b872dd146102b757600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004611ffd565b6105ba565b005b3480156101f457600080fd5b50610208610203366004612097565b6107b4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610806565b604051610214919061210c565b34801561024b57600080fd5b5061025f61025a36600461211f565b610898565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506101e661029236600461214d565b61092d565b3480156102a357600080fd5b506101e66102b2366004611ffd565b610a43565b3480156102c357600080fd5b506101e66102d2366004612179565b610ab2565b3480156102e357600080fd5b506101e66102f236600461211f565b610ae3565b34801561030357600080fd5b506101e6610312366004612179565b610bce565b34801561032357600080fd5b506101e66103323660046121ba565b610be9565b34801561034357600080fd5b5061025f61035236600461211f565b610c26565b6101e6610365366004612202565b610c9d565b34801561037657600080fd5b5061038a610385366004612225565b610dc2565b604051908152602001610214565b3480156103a457600080fd5b506101e6610e49565b3480156103b957600080fd5b506102326103c8366004612242565b610e7f565b3480156103d957600080fd5b506000546001600160a01b031661025f565b3480156103f757600080fd5b5061044161040636600461225d565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561046257600080fd5b506101e661047136600461211f565b610f19565b34801561048257600080fd5b50610232610f48565b34801561049757600080fd5b506101e66104a63660046122b3565b610f57565b3480156104b757600080fd5b50600a5461025f906001600160a01b031681565b3480156104d757600080fd5b506101e66104e63660046122f1565b610f62565b3480156104f757600080fd5b5061023261050636600461211f565b610f94565b6101e6610519366004612350565b61106f565b6101e661052c3660046123b4565b611357565b34801561053d57600080fd5b5061020861054c36600461243f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506101e661059536600461246d565b6114e4565b3480156105a657600080fd5b506101e66105b5366004612225565b61152c565b6007546001600160a01b031633146105d157600080fd5b61ffff8416600090815260096020526040902080546105ef906124bf565b9050835114801561062e575061ffff841660009081526009602052604090819020905161061c91906124fa565b60405180910390208380519060200120145b61069c5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106c590879087908790879060040161256c565b600060405180830381600087803b1580156106df57600080fd5b505af19250505080156106f0575060015b6107ae576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161073a91906125b5565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906107a590869086908690869061256c565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107e557506001600160e01b03198216635b5e139f60e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610815906124bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906124bf565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b506000908152600560205260409020546001600160a01b031690565b600061093882610c26565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610693565b336001600160a01b03821614806109c257506109c2813361054c565b610a345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610693565b610a3e83836115c4565b505050565b333014610aa65760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610693565b6107ae84848484611632565b610abc338261165f565b610ad85760405162461bcd60e51b8152600401610693906125d1565b610a3e838383611756565b6000546001600160a01b03163314610b0d5760405162461bcd60e51b815260040161069390612622565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b5a576040519150601f19603f3d011682016040523d82523d6000602084013e610b5f565b606091505b5050905080610bca5760405162461bcd60e51b815260206004820152603160248201527f42696c6c696f6e617269726520536b756c6c20436c75623a204661696c6564206044820152703a37903bb4ba34323930bb9022ba3432b960791b6064820152608401610693565b5050565b610a3e83838360405180602001604052806000815250610f62565b6000546001600160a01b03163314610c135760405162461bcd60e51b815260040161069390612622565b8051610bca90600b906020840190611e17565b6000818152600360205260408120546001600160a01b0316806108005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610693565b60038160ff1610610d0c5760405162461bcd60e51b815260206004820152603360248201527f42696c6c696f6e617269726520536b756c6c20436c75623a204d61782032204e604482015272232a39903832b9103a3930b739b0b1ba34b7b760691b6064820152608401610693565b600d548160ff16600c54610d20919061266d565b1115610d835760405162461bcd60e51b815260206004820152602c60248201527f42696c6c696f6e617269726520536b756c6c20436c75623a204d696e7420657860448201526b636565647320737570706c7960a01b6064820152608401610693565b610da033600c60008154610d9690612685565b91829055506118f6565b8060ff1660021415610dbf57610dbf33600c60008154610d9690612685565b50565b60006001600160a01b038216610e2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610693565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e735760405162461bcd60e51b815260040161069390612622565b610e7d6000611910565b565b60096020526000908152604090208054610e98906124bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec4906124bf565b8015610f115780601f10610ee657610100808354040283529160200191610f11565b820191906000526020600020905b815481529060010190602001808311610ef457829003601f168201915b505050505081565b6000546001600160a01b03163314610f435760405162461bcd60e51b815260040161069390612622565b600e55565b606060028054610815906124bf565b610bca338383611960565b610f6c338361165f565b610f885760405162461bcd60e51b8152600401610693906125d1565b6107ae84848484611a2f565b6000818152600360205260409020546060906001600160a01b03166110135760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610693565b600061101d611a62565b9050600081511161103d5760405180602001604052806000815250611068565b8061104784611a71565b6040516020016110589291906126a0565b6040516020818303038152906040525b9392505050565b61107881610c26565b6001600160a01b0316336001600160a01b0316146110e35760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610693565b61ffff821660009081526009602052604081208054611101906124bf565b9050116111675760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610693565b61117081611b6e565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906111f3908990309089908790899060a6016126cf565b6040805180830381865afa15801561120f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112339190612723565b509050803410156112d25760405162461bcd60e51b815260206004820152605c60248201527f42696c6c696f6e617269726520536b756c6c20436c75623a206d73672e76616c60448201527f7565206e6f7420656e6f75676820746f20636f766572206d657373616765466560648201527f652e2053656e642067617320666f72206d657373616765206665657300000000608482015260a401610693565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c580310092349261131d928c928b913391908b90600401612747565b6000604051808303818588803b15801561133657600080fd5b505af115801561134a573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516113789087906125b5565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506113ff5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610693565b80548214801561142957508060010154838360405161141f929190612827565b6040518091039020145b6114755760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610693565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906114aa9089908990899089908990600401612837565b600060405180830381600087803b1580156114c457600080fd5b505af11580156114d8573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b0316331461150e5760405162461bcd60e51b815260040161069390612622565b61ffff831660009081526009602052604090206107ae908383611e9b565b6000546001600160a01b031633146115565760405162461bcd60e51b815260040161069390612622565b6001600160a01b0381166115bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b610dbf81611910565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115f982610c26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906116499190612898565b9150915061165782826118f6565b505050505050565b6000818152600360205260408120546001600160a01b03166116d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b60006116e383610c26565b9050806001600160a01b0316846001600160a01b0316148061171e5750836001600160a01b031661171384610898565b6001600160a01b0316145b8061174e57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176982610c26565b6001600160a01b0316146117d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610693565b6001600160a01b0382166118335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b61183e6000826115c4565b6001600160a01b03831660009081526004602052604081208054600192906118679084906128c6565b90915550506001600160a01b038216600090815260046020526040812080546001929061189590849061266d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bca828260405180602001604052806000815250611c09565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156119c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610693565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a3a848484611756565b611a4684848484611c3c565b6107ae5760405162461bcd60e51b8152600401610693906128dd565b6060600b8054610815906124bf565b606081611a955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abf5780611aa981612685565b9150611ab89050600a83612945565b9150611a99565b6000816001600160401b03811115611ad957611ad9611f3b565b6040519080825280601f01601f191660200182016040528015611b03576020820181803683370190505b5090505b841561174e57611b186001836128c6565b9150611b25600a86612959565b611b3090603061266d565b60f81b818381518110611b4557611b4561296d565b60200101906001600160f81b031916908160001a905350611b67600a86612945565b9450611b07565b6000611b7982610c26565b9050611b866000836115c4565b6001600160a01b0381166000908152600460205260408120805460019290611baf9084906128c6565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611c138383611d3a565b611c206000848484611c3c565b610a3e5760405162461bcd60e51b8152600401610693906128dd565b60006001600160a01b0384163b15611d2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c80903390899088908890600401612983565b6020604051808303816000875af1925050508015611cbb575060408051601f3d908101601f19168201909252611cb8918101906129c0565b60015b611d15573d808015611ce9576040519150601f19603f3d011682016040523d82523d6000602084013e611cee565b606091505b508051611d0d5760405162461bcd60e51b8152600401610693906128dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174e565b506001949350505050565b6001600160a01b038216611d905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610693565b6001600160a01b0382166000908152600460205260408120805460019290611db990849061266d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e23906124bf565b90600052602060002090601f016020900481019282611e455760008555611e8b565b82601f10611e5e57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578251825591602001919060010190611e70565b50611e97929150611f0f565b5090565b828054611ea7906124bf565b90600052602060002090601f016020900481019282611ec95760008555611e8b565b82601f10611ee25782800160ff19823516178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578235825591602001919060010190611ef4565b5b80821115611e975760008155600101611f10565b803561ffff81168114611f3657600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f6b57611f6b611f3b565b604051601f8501601f19908116603f01168101908282118183101715611f9357611f93611f3b565b81604052809350858152868686011115611fac57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611fd757600080fd5b61106883833560208501611f51565b80356001600160401b0381168114611f3657600080fd5b6000806000806080858703121561201357600080fd5b61201c85611f24565b935060208501356001600160401b038082111561203857600080fd5b61204488838901611fc6565b945061205260408801611fe6565b9350606087013591508082111561206857600080fd5b5061207587828801611fc6565b91505092959194509250565b6001600160e01b031981168114610dbf57600080fd5b6000602082840312156120a957600080fd5b813561106881612081565b60005b838110156120cf5781810151838201526020016120b7565b838111156107ae5750506000910152565b600081518084526120f88160208601602086016120b4565b601f01601f19169290920160200192915050565b60208152600061106860208301846120e0565b60006020828403121561213157600080fd5b5035919050565b6001600160a01b0381168114610dbf57600080fd5b6000806040838503121561216057600080fd5b823561216b81612138565b946020939093013593505050565b60008060006060848603121561218e57600080fd5b833561219981612138565b925060208401356121a981612138565b929592945050506040919091013590565b6000602082840312156121cc57600080fd5b81356001600160401b038111156121e257600080fd5b8201601f810184136121f357600080fd5b61174e84823560208401611f51565b60006020828403121561221457600080fd5b813560ff8116811461106857600080fd5b60006020828403121561223757600080fd5b813561106881612138565b60006020828403121561225457600080fd5b61106882611f24565b60008060006060848603121561227257600080fd5b61227b84611f24565b925060208401356001600160401b0381111561229657600080fd5b6122a286828701611fc6565b925050604084013590509250925092565b600080604083850312156122c657600080fd5b82356122d181612138565b9150602083013580151581146122e657600080fd5b809150509250929050565b6000806000806080858703121561230757600080fd5b843561231281612138565b9350602085013561232281612138565b92506040850135915060608501356001600160401b0381111561234457600080fd5b61207587828801611fc6565b6000806040838503121561236357600080fd5b61216b83611f24565b60008083601f84011261237e57600080fd5b5081356001600160401b0381111561239557600080fd5b6020830191508360208285010111156123ad57600080fd5b9250929050565b6000806000806000608086880312156123cc57600080fd5b6123d586611f24565b945060208601356001600160401b03808211156123f157600080fd5b6123fd89838a01611fc6565b955061240b60408901611fe6565b9450606088013591508082111561242157600080fd5b5061242e8882890161236c565b969995985093965092949392505050565b6000806040838503121561245257600080fd5b823561245d81612138565b915060208301356122e681612138565b60008060006040848603121561248257600080fd5b61248b84611f24565b925060208401356001600160401b038111156124a657600080fd5b6124b28682870161236c565b9497909650939450505050565b600181811c908216806124d357607f821691505b602082108114156124f457634e487b7160e01b600052602260045260246000fd5b50919050565b6000808354612508816124bf565b60018281168015612520576001811461253157612560565b60ff19841687528287019450612560565b8760005260208060002060005b858110156125575781548a82015290840190820161253e565b50505082870194505b50929695505050505050565b61ffff8516815260806020820152600061258960808301866120e0565b6001600160401b038516604084015282810360608401526125aa81856120e0565b979650505050505050565b600082516125c78184602087016120b4565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561268057612680612657565b500190565b600060001982141561269957612699612657565b5060010190565b600083516126b28184602088016120b4565b8351908301906126c68183602088016120b4565b01949350505050565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126fd908301866120e0565b8415156060840152828103608084015261271781856120e0565b98975050505050505050565b6000806040838503121561273657600080fd5b505080516020909101519092909150565b61ffff871681526000602060c08184015260008854612765816124bf565b8060c087015260e0600180841660008114612787576001811461279c576127ca565b60ff19851689840152610100890195506127ca565b8d6000528660002060005b858110156127c25781548b82018601529083019088016127a7565b8a0184019650505b505050505083810360408501526127e181896120e0565b9150506127f960608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a084015261281a81856120e0565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061285460808301876120e0565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b600080604083850312156128ab57600080fd5b82516128b681612138565b6020939093015192949293505050565b6000828210156128d8576128d8612657565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129545761295461292f565b500490565b6000826129685761296861292f565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129b6908301846120e0565b9695505050505050565b6000602082840312156129d257600080fd5b81516110688161208156fea2646970667358221220795a965778053bc8bcac933c4daf1a498b2005eb674559aec1034ae53b914eff64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000007dcad72640f835b0fa36efd3d6d3ec902c7e5acf000000000000000000000000000000000000000000000000000000000000000e68747470733a2f2f65672e636f6d000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://eg.com
Arg [1] : _layerZeroEndpoint (address): 0x7dcAD72640F835B0FA36EFD3D6d3ec902C7E5acf
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000007dcad72640f835b0fa36efd3d6d3ec902c7e5acf
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 68747470733a2f2f65672e636f6d000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47310:4171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44515:949;;;;;;;;;;-1:-1:-1;44515:949:0;;;;;:::i;:::-;;:::i;:::-;;31588:305;;;;;;;;;;-1:-1:-1;31588:305:0;;;;;:::i;:::-;;:::i;:::-;;;2587:14:1;;2580:22;2562:41;;2550:2;2535:18;31588:305:0;;;;;;;;32533:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34092:221::-;;;;;;;;;;-1:-1:-1;34092:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3823:32:1;;;3805:51;;3793:2;3778:18;34092:221:0;3659:203:1;33615:411:0;;;;;;;;;;-1:-1:-1;33615:411:0;;;;;:::i;:::-;;:::i;45472:356::-;;;;;;;;;;-1:-1:-1;45472:356:0;;;;;:::i;:::-;;:::i;34842:339::-;;;;;;;;;;-1:-1:-1;34842:339:0;;;;;:::i;:::-;;:::i;50445:198::-;;;;;;;;;;-1:-1:-1;50445:198:0;;;;;:::i;:::-;;:::i;35252:185::-;;;;;;;;;;-1:-1:-1;35252:185:0;;;;;:::i;:::-;;:::i;50219:90::-;;;;;;;;;;-1:-1:-1;50219:90:0;;;;;:::i;:::-;;:::i;32227:239::-;;;;;;;;;;-1:-1:-1;32227:239:0;;;;;:::i;:::-;;:::i;47928:431::-;;;;;;:::i;:::-;;:::i;31957:208::-;;;;;;;;;;-1:-1:-1;31957:208:0;;;;;:::i;:::-;;:::i;:::-;;;5911:25:1;;;5899:2;5884:18;31957:208:0;5765:177:1;12576:103:0;;;;;;;;;;;;;:::i;44357:51::-;;;;;;;;;;-1:-1:-1;44357:51:0;;;;;:::i;:::-;;:::i;11925:87::-;;;;;;;;;;-1:-1:-1;11971:7:0;11998:6;-1:-1:-1;;;;;11998:6:0;11925:87;;44260:90;;;;;;;;;;-1:-1:-1;44260:90:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6998:25:1;;;7054:2;7039:18;;7032:34;;;;6971:18;44260:90:0;6824:248:1;50727:128:0;;;;;;;;;;-1:-1:-1;50727:128:0;;;;;:::i;:::-;;:::i;32702:104::-;;;;;;;;;;;;;:::i;34385:155::-;;;;;;;;;;-1:-1:-1;34385:155:0;;;;;:::i;:::-;;:::i;47388:21::-;;;;;;;;;;-1:-1:-1;47388:21:0;;;;-1:-1:-1;;;;;47388:21:0;;;35508:328;;;;;;;;;;-1:-1:-1;35508:328:0;;;;;:::i;:::-;;:::i;32877:334::-;;;;;;;;;;-1:-1:-1;32877:334:0;;;;;:::i;:::-;;:::i;48498:1713::-;;;;;;:::i;:::-;;:::i;46304:758::-;;;;;;:::i;:::-;;:::i;34611:164::-;;;;;;;;;;-1:-1:-1;34611:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34732:25:0;;;34708:4;34732:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34611:164;47070:158;;;;;;;;;;-1:-1:-1;47070:158:0;;;;;:::i;:::-;;:::i;12834:201::-;;;;;;;;;;-1:-1:-1;12834:201:0;;;;;:::i;:::-;;:::i;44515:949::-;44677:8;;-1:-1:-1;;;;;44677:8:0;44655:10;:31;44647:40;;;;;;44798:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;44776:11;:18;:61;:134;;;;-1:-1:-1;44877:32:0;;;;;;;:19;:32;;;;;;;44867:43;;;;44877:32;44867:43;:::i;:::-;;;;;;;;44851:11;44841:22;;;;;;:69;44776:134;44768:213;;;;-1:-1:-1;;;44768:213:0;;11837:2:1;44768:213:0;;;11819:21:1;11876:2;11856:18;;;11849:30;11915:34;11895:18;;;11888:62;-1:-1:-1;;;11966:18:1;;;11959:50;12026:19;;44768:213:0;;;;;;;;;45109:60;;-1:-1:-1;;;45109:60:0;;:4;;:16;;:60;;45126:11;;45139;;45152:6;;45160:8;;45109:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45105:352;;45316:52;;;;;;;;45331:8;:15;45316:52;;;;45358:8;45348:19;;;;;;45316:52;;;45265:14;:27;45280:11;45265:27;;;;;;;;;;;;;;;45293:11;45265:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45265:48:0;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;45388:57;;;;45402:11;;45415;;45306:6;;45436:8;;45388:57;:::i;:::-;;;;;;;;45105:352;44515:949;;;;:::o;31588:305::-;31690:4;-1:-1:-1;;;;;;31727:40:0;;-1:-1:-1;;;31727:40:0;;:105;;-1:-1:-1;;;;;;;31784:48:0;;-1:-1:-1;;;31784:48:0;31727:105;:158;;;-1:-1:-1;;;;;;;;;;24466:40:0;;;31849:36;31707:178;31588:305;-1:-1:-1;;31588:305:0:o;32533:100::-;32587:13;32620:5;32613:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32533:100;:::o;34092:221::-;34168:7;37435:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37435:16:0;34188:73;;;;-1:-1:-1;;;34188:73:0;;13099:2:1;34188:73:0;;;13081:21:1;13138:2;13118:18;;;13111:30;13177:34;13157:18;;;13150:62;-1:-1:-1;;;13228:18:1;;;13221:42;13280:19;;34188:73:0;12897:408:1;34188:73:0;-1:-1:-1;34281:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34281:24:0;;34092:221::o;33615:411::-;33696:13;33712:23;33727:7;33712:14;:23::i;:::-;33696:39;;33760:5;-1:-1:-1;;;;;33754:11:0;:2;-1:-1:-1;;;;;33754:11:0;;;33746:57;;;;-1:-1:-1;;;33746:57:0;;13512:2:1;33746:57:0;;;13494:21:1;13551:2;13531:18;;;13524:30;13590:34;13570:18;;;13563:62;-1:-1:-1;;;13641:18:1;;;13634:31;13682:19;;33746:57:0;13310:397:1;33746:57:0;10729:10;-1:-1:-1;;;;;33838:21:0;;;;:62;;-1:-1:-1;33863:37:0;33880:5;10729:10;34611:164;:::i;33863:37::-;33816:168;;;;-1:-1:-1;;;33816:168:0;;13914:2:1;33816:168:0;;;13896:21:1;13953:2;13933:18;;;13926:30;13992:34;13972:18;;;13965:62;14063:26;14043:18;;;14036:54;14107:19;;33816:168:0;13712:420:1;33816:168:0;33997:21;34006:2;34010:7;33997:8;:21::i;:::-;33685:341;33615:411;;:::o;45472:356::-;45641:10;45663:4;45641:27;45633:83;;;;-1:-1:-1;;;45633:83:0;;14339:2:1;45633:83:0;;;14321:21:1;14378:2;14358:18;;;14351:30;14417:34;14397:18;;;14390:62;-1:-1:-1;;;14468:18:1;;;14461:41;14519:19;;45633:83:0;14137:407:1;45633:83:0;45765:55;45777:11;45790;45803:6;45811:8;45765:10;:55::i;34842:339::-;35037:41;10729:10;35070:7;35037:18;:41::i;:::-;35029:103;;;;-1:-1:-1;;;35029:103:0;;;;;;;:::i;:::-;35145:28;35155:4;35161:2;35165:7;35145:9;:28::i;50445:198::-;11971:7;11998:6;-1:-1:-1;;;;;11998:6:0;10729:10;12145:23;12137:68;;;;-1:-1:-1;;;12137:68:0;;;;;;;:::i;:::-;50530:6:::1;::::0;50522:36:::1;::::0;50507:9:::1;::::0;-1:-1:-1;;;;;50530:6:0::1;::::0;50550:3;;50507:9;50522:36;50507:9;50522:36;50550:3;50530:6;50522:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50506:52;;;50577:4;50569:66;;;::::0;-1:-1:-1;;;50569:66:0;;15740:2:1;50569:66:0::1;::::0;::::1;15722:21:1::0;15779:2;15759:18;;;15752:30;15818:34;15798:18;;;15791:62;-1:-1:-1;;;15869:18:1;;;15862:47;15926:19;;50569:66:0::1;15538:413:1::0;50569:66:0::1;50495:148;50445:198:::0;:::o;35252:185::-;35390:39;35407:4;35413:2;35417:7;35390:39;;;;;;;;;;;;:16;:39::i;50219:90::-;11971:7;11998:6;-1:-1:-1;;;;;11998:6:0;10729:10;12145:23;12137:68;;;;-1:-1:-1;;;12137:68:0;;;;;;;:::i;:::-;50288:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;32227:239::-:0;32299:7;32335:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32335:16:0;32370:19;32362:73;;;;-1:-1:-1;;;32362:73:0;;16158:2:1;32362:73:0;;;16140:21:1;16197:2;16177:18;;;16170:30;16236:34;16216:18;;;16209:62;-1:-1:-1;;;16287:18:1;;;16280:39;16336:19;;32362:73:0;15956:405:1;47928:431:0;48007:1;47995:9;:13;;;47987:77;;;;-1:-1:-1;;;47987:77:0;;16568:2:1;47987:77:0;;;16550:21:1;16607:2;16587:18;;;16580:30;16646:34;16626:18;;;16619:62;-1:-1:-1;;;16697:18:1;;;16690:49;16756:19;;47987:77:0;16366:415:1;47987:77:0;48124:15;;48111:9;48097:23;;:11;;:23;;;;:::i;:::-;:42;;48075:136;;;;-1:-1:-1;;;48075:136:0;;17253:2:1;48075:136:0;;;17235:21:1;17292:2;17272:18;;;17265:30;17331:34;17311:18;;;17304:62;-1:-1:-1;;;17382:18:1;;;17375:42;17434:19;;48075:136:0;17051:408:1;48075:136:0;48222:36;48232:10;48246:11;;48244:13;;;;;:::i;:::-;;;;;-1:-1:-1;48222:9:0;:36::i;:::-;48273:9;:14;;48286:1;48273:14;48269:83;;;48304:36;48314:10;48328:11;;48326:13;;;;;:::i;48304:36::-;47928:431;:::o;31957:208::-;32029:7;-1:-1:-1;;;;;32057:19:0;;32049:74;;;;-1:-1:-1;;;32049:74:0;;17806:2:1;32049:74:0;;;17788:21:1;17845:2;17825:18;;;17818:30;17884:34;17864:18;;;17857:62;-1:-1:-1;;;17935:18:1;;;17928:40;17985:19;;32049:74:0;17604:406:1;32049:74:0;-1:-1:-1;;;;;;32141:16:0;;;;;:9;:16;;;;;;;31957:208::o;12576:103::-;11971:7;11998:6;-1:-1:-1;;;;;11998:6:0;10729:10;12145:23;12137:68;;;;-1:-1:-1;;;12137:68:0;;;;;;;:::i;:::-;12641:30:::1;12668:1;12641:18;:30::i;:::-;12576:103::o:0;44357:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50727:128::-;11971:7;11998:6;-1:-1:-1;;;;;11998:6:0;10729:10;12145:23;12137:68;;;;-1:-1:-1;;;12137:68:0;;;;;;;:::i;:::-;50812:26:::1;:35:::0;50727:128::o;32702:104::-;32758:13;32791:7;32784:14;;;;;:::i;34385:155::-;34480:52;10729:10;34513:8;34523;34480:18;:52::i;35508:328::-;35683:41;10729:10;35716:7;35683:18;:41::i;:::-;35675:103;;;;-1:-1:-1;;;35675:103:0;;;;;;;:::i;:::-;35789:39;35803:4;35809:2;35813:7;35822:5;35789:13;:39::i;32877:334::-;37411:4;37435:16;;;:7;:16;;;;;;32950:13;;-1:-1:-1;;;;;37435:16:0;32976:76;;;;-1:-1:-1;;;32976:76:0;;18217:2:1;32976:76:0;;;18199:21:1;18256:2;18236:18;;;18229:30;18295:34;18275:18;;;18268:62;-1:-1:-1;;;18346:18:1;;;18339:45;18401:19;;32976:76:0;18015:411:1;32976:76:0;33065:21;33089:10;:8;:10::i;:::-;33065:34;;33141:1;33123:7;33117:21;:25;:86;;;;;;;;;;;;;;;;;33169:7;33178:18;:7;:16;:18::i;:::-;33152:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33117:86;33110:93;32877:334;-1:-1:-1;;;32877:334:0:o;48498:1713::-;48618:16;48626:7;48618;:16::i;:::-;-1:-1:-1;;;;;48604:30:0;:10;-1:-1:-1;;;;;48604:30:0;;48582:114;;;;-1:-1:-1;;;48582:114:0;;19108:2:1;48582:114:0;;;19090:21:1;19147:2;19127:18;;;19120:30;19186:34;19166:18;;;19159:62;-1:-1:-1;;;19237:18:1;;;19230:32;19279:19;;48582:114:0;18906:398:1;48582:114:0;48729:29;;;48768:1;48729:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;48707:136;;;;-1:-1:-1;;;48707:136:0;;19511:2:1;48707:136:0;;;19493:21:1;19550:2;19530:18;;;19523:30;19589:34;19569:18;;;19562:62;-1:-1:-1;;;19640:18:1;;;19633:44;19694:19;;48707:136:0;19309:410:1;48707:136:0;48923:14;48929:7;48923:5;:14::i;:::-;49034:31;;;49045:10;49034:31;;;19898:51:1;19965:18;;;19958:34;;;49034:31:0;;;;;;;;;19871:18:1;;;49034:31:0;;49262:26;;-1:-1:-1;;;49209:90:0;;;20158:51:1;20225:11;;;;20218:27;;;;49209:90:0;;;;;;;;;;20261:12:1;;;49209:90:0;;;;49478:8;;-1:-1:-1;;;49478:153:0;;;49034:31;;49168:1;;-1:-1:-1;;;;;;;49478:8:0;;:21;;:153;;49514:8;;49545:4;;49034:31;;-1:-1:-1;;49209:90:0;;49478:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49453:178;;;49679:10;49666:9;:23;;49644:165;;;;-1:-1:-1;;;49644:165:0;;21383:2:1;49644:165:0;;;21365:21:1;21422:2;21402:18;;;21395:30;21461:34;21441:18;;;21434:62;21532:34;21512:18;;;21505:62;21604:30;21583:19;;;21576:59;21652:19;;49644:165:0;21181:496:1;49644:165:0;49822:8;;49914:29;;;49822:8;49914:29;;;:19;:29;;;;;;49822:381;;-1:-1:-1;;;49822:381:0;;-1:-1:-1;;;;;49822:8:0;;;;:13;;49843:9;;49822:381;;49868:8;;49997:7;;50053:10;;49822:8;50163:13;;49822:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48571:1640;;;;48498:1713;;:::o;46304:758::-;46520:27;;;46485:32;46520:27;;;:14;:27;;;;;;:40;;;;46548:11;;46520:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46520:48:0;;;;;;;;;;46587:21;;;;46520:48;;-1:-1:-1;46579:86:0;;;;-1:-1:-1;;;46579:86:0;;23373:2:1;46579:86:0;;;23355:21:1;23412:2;23392:18;;;23385:30;23451:34;23431:18;;;23424:62;-1:-1:-1;;;23502:18:1;;;23495:36;23548:19;;46579:86:0;23171:402:1;46579:86:0;46703:23;;46684:42;;:90;;;;;46753:9;:21;;;46740:8;;46730:19;;;;;;;:::i;:::-;;;;;;;;:44;46684:90;46676:129;;;;-1:-1:-1;;;46676:129:0;;24056:2:1;46676:129:0;;;24038:21:1;24095:2;24075:18;;;24068:30;24134:28;24114:18;;;24107:56;24180:18;;46676:129:0;23854:350:1;46676:129:0;46879:1;46853:27;;;46891:21;;;:34;46994:60;;-1:-1:-1;;;46994:60:0;;:4;;:16;;:60;;47011:11;;47024;;47037:6;;47045:8;;;;46994:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46429:633;46304:758;;;;;:::o;47070:158::-;11971:7;11998:6;-1:-1:-1;;;;;11998:6:0;10729:10;12145:23;12137:68;;;;-1:-1:-1;;;12137:68:0;;;;;;;:::i;:::-;47174:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;47206:14;;47174:46:::1;:::i;12834:201::-:0;11971:7;11998:6;-1:-1:-1;;;;;11998:6:0;10729:10;12145:23;12137:68;;;;-1:-1:-1;;;12137:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12923:22:0;::::1;12915:73;;;::::0;-1:-1:-1;;;12915:73:0;;25134:2:1;12915:73:0::1;::::0;::::1;25116:21:1::0;25173:2;25153:18;;;25146:30;25212:34;25192:18;;;25185:62;-1:-1:-1;;;25263:18:1;;;25256:36;25309:19;;12915:73:0::1;24932:402:1::0;12915:73:0::1;12999:28;13018:8;12999:18;:28::i;41259:174::-:0;41334:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41334:29:0;-1:-1:-1;;;;;41334:29:0;;;;;;;;:24;;41388:23;41334:24;41388:14;:23::i;:::-;-1:-1:-1;;;;;41379:46:0;;;;;;;;;;;41259:174;;:::o;50946:424::-;51142:14;51158:15;51202:8;51177:77;;;;;;;;;;;;:::i;:::-;51141:113;;;;51336:26;51346:6;51354:7;51336:9;:26::i;:::-;51111:259;;50946:424;;;;:::o;37640:348::-;37733:4;37435:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37435:16:0;37750:73;;;;-1:-1:-1;;;37750:73:0;;25866:2:1;37750:73:0;;;25848:21:1;25905:2;25885:18;;;25878:30;25944:34;25924:18;;;25917:62;-1:-1:-1;;;25995:18:1;;;25988:42;26047:19;;37750:73:0;25664:408:1;37750:73:0;37834:13;37850:23;37865:7;37850:14;:23::i;:::-;37834:39;;37903:5;-1:-1:-1;;;;;37892:16:0;:7;-1:-1:-1;;;;;37892:16:0;;:51;;;;37936:7;-1:-1:-1;;;;;37912:31:0;:20;37924:7;37912:11;:20::i;:::-;-1:-1:-1;;;;;37912:31:0;;37892:51;:87;;;-1:-1:-1;;;;;;34732:25:0;;;34708:4;34732:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37947:32;37884:96;37640:348;-1:-1:-1;;;;37640:348:0:o;40563:578::-;40722:4;-1:-1:-1;;;;;40695:31:0;:23;40710:7;40695:14;:23::i;:::-;-1:-1:-1;;;;;40695:31:0;;40687:85;;;;-1:-1:-1;;;40687:85:0;;26279:2:1;40687:85:0;;;26261:21:1;26318:2;26298:18;;;26291:30;26357:34;26337:18;;;26330:62;-1:-1:-1;;;26408:18:1;;;26401:39;26457:19;;40687:85:0;26077:405:1;40687:85:0;-1:-1:-1;;;;;40791:16:0;;40783:65;;;;-1:-1:-1;;;40783:65:0;;26689:2:1;40783:65:0;;;26671:21:1;26728:2;26708:18;;;26701:30;26767:34;26747:18;;;26740:62;-1:-1:-1;;;26818:18:1;;;26811:34;26862:19;;40783:65:0;26487:400:1;40783:65:0;40965:29;40982:1;40986:7;40965:8;:29::i;:::-;-1:-1:-1;;;;;41007:15:0;;;;;;:9;:15;;;;;:20;;41026:1;;41007:15;:20;;41026:1;;41007:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41038:13:0;;;;;;:9;:13;;;;;:18;;41055:1;;41038:13;:18;;41055:1;;41038:18;:::i;:::-;;;;-1:-1:-1;;41067:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41067:21:0;-1:-1:-1;;;;;41067:21:0;;;;;;;;;41106:27;;41067:16;;41106:27;;;;;;;40563:578;;;:::o;38330:110::-;38406:26;38416:2;38420:7;38406:26;;;;;;;;;;;;:9;:26::i;13195:191::-;13269:16;13288:6;;-1:-1:-1;;;;;13305:17:0;;;-1:-1:-1;;;;;;13305:17:0;;;;;;13338:40;;13288:6;;;;;;;13338:40;;13269:16;13338:40;13258:128;13195:191;:::o;41575:315::-;41730:8;-1:-1:-1;;;;;41721:17:0;:5;-1:-1:-1;;;;;41721:17:0;;;41713:55;;;;-1:-1:-1;;;41713:55:0;;27224:2:1;41713:55:0;;;27206:21:1;27263:2;27243:18;;;27236:30;27302:27;27282:18;;;27275:55;27347:18;;41713:55:0;27022:349:1;41713:55:0;-1:-1:-1;;;;;41779:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41779:46:0;;;;;;;;;;41841:41;;2562::1;;;41841::0;;2535:18:1;41841:41:0;;;;;;;41575:315;;;:::o;36718:::-;36875:28;36885:4;36891:2;36895:7;36875:9;:28::i;:::-;36922:48;36945:4;36951:2;36955:7;36964:5;36922:22;:48::i;:::-;36914:111;;;;-1:-1:-1;;;36914:111:0;;;;;;;:::i;51378:100::-;51430:13;51463:7;51456:14;;;;;:::i;8211:723::-;8267:13;8488:10;8484:53;;-1:-1:-1;;8515:10:0;;;;;;;;;;;;-1:-1:-1;;;8515:10:0;;;;;8211:723::o;8484:53::-;8562:5;8547:12;8603:78;8610:9;;8603:78;;8636:8;;;;:::i;:::-;;-1:-1:-1;8659:10:0;;-1:-1:-1;8667:2:0;8659:10;;:::i;:::-;;;8603:78;;;8691:19;8723:6;-1:-1:-1;;;;;8713:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8713:17:0;;8691:39;;8741:154;8748:10;;8741:154;;8775:11;8785:1;8775:11;;:::i;:::-;;-1:-1:-1;8844:10:0;8852:2;8844:5;:10;:::i;:::-;8831:24;;:2;:24;:::i;:::-;8818:39;;8801:6;8808;8801:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8801:56:0;;;;;;;;-1:-1:-1;8872:11:0;8881:2;8872:11;;:::i;:::-;;;8741:154;;39866:360;39926:13;39942:23;39957:7;39942:14;:23::i;:::-;39926:39;;40067:29;40084:1;40088:7;40067:8;:29::i;:::-;-1:-1:-1;;;;;40109:16:0;;;;;;:9;:16;;;;;:21;;40129:1;;40109:16;:21;;40129:1;;40109:21;:::i;:::-;;;;-1:-1:-1;;40148:16:0;;;;:7;:16;;;;;;40141:23;;-1:-1:-1;;;;;;40141:23:0;;;40182:36;40156:7;;40148:16;-1:-1:-1;;;;;40182:36:0;;;;;40148:16;;40182:36;39915:311;39866:360;:::o;38667:321::-;38797:18;38803:2;38807:7;38797:5;:18::i;:::-;38848:54;38879:1;38883:2;38887:7;38896:5;38848:22;:54::i;:::-;38826:154;;;;-1:-1:-1;;;38826:154:0;;;;;;;:::i;42455:799::-;42610:4;-1:-1:-1;;;;;42631:13:0;;14536:20;14584:8;42627:620;;42667:72;;-1:-1:-1;;;42667:72:0;;-1:-1:-1;;;;;42667:36:0;;;;;:72;;10729:10;;42718:4;;42724:7;;42733:5;;42667:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42667:72:0;;;;;;;;-1:-1:-1;;42667:72:0;;;;;;;;;;;;:::i;:::-;;;42663:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42909:13:0;;42905:272;;42952:60;;-1:-1:-1;;;42952:60:0;;;;;;;:::i;42905:272::-;43127:6;43121:13;43112:6;43108:2;43104:15;43097:38;42663:529;-1:-1:-1;;;;;;42790:51:0;-1:-1:-1;;;42790:51:0;;-1:-1:-1;42783:58:0;;42627:620;-1:-1:-1;43231:4:0;42455:799;;;;;;:::o;39324:313::-;-1:-1:-1;;;;;39404:16:0;;39396:61;;;;-1:-1:-1;;;39396:61:0;;29251:2:1;39396:61:0;;;29233:21:1;;;29270:18;;;29263:30;29329:34;29309:18;;;29302:62;29381:18;;39396:61:0;29049:356:1;39396:61:0;-1:-1:-1;;;;;39528:13:0;;;;;;:9;:13;;;;;:18;;39545:1;;39528:13;:18;;39545:1;;39528:18;:::i;:::-;;;;-1:-1:-1;;39557:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39557:21:0;-1:-1:-1;;;;;39557:21:0;;;;;;;;39596:33;;39557:16;;;39596:33;;39557:16;;39596:33;39324: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:127::-;239:10;234:3;230:20;227:1;220:31;270:4;267:1;260:15;294:4;291:1;284:15;310:631;374:5;-1:-1:-1;;;;;445:2:1;437:6;434:14;431:40;;;451:18;;:::i;:::-;526:2;520:9;494:2;580:15;;-1:-1:-1;;576:24:1;;;602:2;572:33;568:42;556:55;;;626:18;;;646:22;;;623:46;620:72;;;672:18;;:::i;:::-;712:10;708:2;701:22;741:6;732:15;;771:6;763;756:22;811:3;802:6;797:3;793:16;790:25;787:45;;;828:1;825;818:12;787:45;878:6;873:3;866:4;858:6;854:17;841:44;933:1;926:4;917:6;909;905:19;901:30;894:41;;;;310:631;;;;;:::o;946:220::-;988:5;1041:3;1034:4;1026:6;1022:17;1018:27;1008:55;;1059:1;1056;1049:12;1008:55;1081:79;1156:3;1147:6;1134:20;1127:4;1119:6;1115:17;1081:79;:::i;1171:171::-;1238:20;;-1:-1:-1;;;;;1287:30:1;;1277:41;;1267:69;;1332:1;1329;1322:12;1347:684;1449:6;1457;1465;1473;1526:3;1514:9;1505:7;1501:23;1497:33;1494:53;;;1543:1;1540;1533:12;1494:53;1566:28;1584:9;1566:28;:::i;:::-;1556:38;;1645:2;1634:9;1630:18;1617:32;-1:-1:-1;;;;;1709:2:1;1701:6;1698:14;1695:34;;;1725:1;1722;1715:12;1695:34;1748:49;1789:7;1780:6;1769:9;1765:22;1748:49;:::i;:::-;1738:59;;1816:37;1849:2;1838:9;1834:18;1816:37;:::i;:::-;1806:47;;1906:2;1895:9;1891:18;1878:32;1862:48;;1935:2;1925:8;1922:16;1919:36;;;1951:1;1948;1941:12;1919:36;;1974:51;2017:7;2006:8;1995:9;1991:24;1974:51;:::i;:::-;1964:61;;;1347:684;;;;;;;:::o;2036:131::-;-1:-1:-1;;;;;;2110:32:1;;2100:43;;2090:71;;2157:1;2154;2147:12;2172:245;2230:6;2283:2;2271:9;2262:7;2258:23;2254:32;2251:52;;;2299:1;2296;2289:12;2251:52;2338:9;2325:23;2357:30;2381:5;2357:30;:::i;2614:258::-;2686:1;2696:113;2710:6;2707:1;2704:13;2696:113;;;2786:11;;;2780:18;2767:11;;;2760:39;2732:2;2725:10;2696:113;;;2827:6;2824:1;2821:13;2818:48;;;-1:-1:-1;;2862:1:1;2844:16;;2837:27;2614:258::o;2877:::-;2919:3;2957:5;2951:12;2984:6;2979:3;2972:19;3000:63;3056:6;3049:4;3044:3;3040:14;3033:4;3026:5;3022:16;3000:63;:::i;:::-;3117:2;3096:15;-1:-1:-1;;3092:29:1;3083:39;;;;3124:4;3079:50;;2877:258;-1:-1:-1;;2877:258:1:o;3140:220::-;3289:2;3278:9;3271:21;3252:4;3309:45;3350:2;3339:9;3335:18;3327:6;3309:45;:::i;3365:180::-;3424:6;3477:2;3465:9;3456:7;3452:23;3448:32;3445:52;;;3493:1;3490;3483:12;3445:52;-1:-1:-1;3516:23:1;;3365:180;-1:-1:-1;3365:180:1:o;3867:131::-;-1:-1:-1;;;;;3942:31:1;;3932:42;;3922:70;;3988:1;3985;3978:12;4003:315;4071:6;4079;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;4187:9;4174:23;4206:31;4231:5;4206:31;:::i;:::-;4256:5;4308:2;4293:18;;;;4280:32;;-1:-1:-1;;;4003:315:1:o;4323:456::-;4400:6;4408;4416;4469:2;4457:9;4448:7;4444:23;4440:32;4437:52;;;4485:1;4482;4475:12;4437:52;4524:9;4511:23;4543:31;4568:5;4543:31;:::i;:::-;4593:5;-1:-1:-1;4650:2:1;4635:18;;4622:32;4663:33;4622:32;4663:33;:::i;:::-;4323:456;;4715:7;;-1:-1:-1;;;4769:2:1;4754:18;;;;4741:32;;4323:456::o;4784:450::-;4853:6;4906:2;4894:9;4885:7;4881:23;4877:32;4874:52;;;4922:1;4919;4912:12;4874:52;4962:9;4949:23;-1:-1:-1;;;;;4987:6:1;4984:30;4981:50;;;5027:1;5024;5017:12;4981:50;5050:22;;5103:4;5095:13;;5091:27;-1:-1:-1;5081:55:1;;5132:1;5129;5122:12;5081:55;5155:73;5220:7;5215:2;5202:16;5197:2;5193;5189:11;5155:73;:::i;5239:269::-;5296:6;5349:2;5337:9;5328:7;5324:23;5320:32;5317:52;;;5365:1;5362;5355:12;5317:52;5404:9;5391:23;5454:4;5447:5;5443:16;5436:5;5433:27;5423:55;;5474:1;5471;5464:12;5513:247;5572:6;5625:2;5613:9;5604:7;5600:23;5596:32;5593:52;;;5641:1;5638;5631:12;5593:52;5680:9;5667:23;5699:31;5724:5;5699:31;:::i;5947:184::-;6005:6;6058:2;6046:9;6037:7;6033:23;6029:32;6026:52;;;6074:1;6071;6064:12;6026:52;6097:28;6115:9;6097:28;:::i;6359:460::-;6444:6;6452;6460;6513:2;6501:9;6492:7;6488:23;6484:32;6481:52;;;6529:1;6526;6519:12;6481:52;6552:28;6570:9;6552:28;:::i;:::-;6542:38;;6631:2;6620:9;6616:18;6603:32;-1:-1:-1;;;;;6650:6:1;6647:30;6644:50;;;6690:1;6687;6680:12;6644:50;6713:49;6754:7;6745:6;6734:9;6730:22;6713:49;:::i;:::-;6703:59;;;6809:2;6798:9;6794:18;6781:32;6771:42;;6359:460;;;;;:::o;7077:416::-;7142:6;7150;7203:2;7191:9;7182:7;7178:23;7174:32;7171:52;;;7219:1;7216;7209:12;7171:52;7258:9;7245:23;7277:31;7302:5;7277:31;:::i;:::-;7327:5;-1:-1:-1;7384:2:1;7369:18;;7356:32;7426:15;;7419:23;7407:36;;7397:64;;7457:1;7454;7447:12;7397:64;7480:7;7470:17;;;7077:416;;;;;:::o;7498:665::-;7593:6;7601;7609;7617;7670:3;7658:9;7649:7;7645:23;7641:33;7638:53;;;7687:1;7684;7677:12;7638:53;7726:9;7713:23;7745:31;7770:5;7745:31;:::i;:::-;7795:5;-1:-1:-1;7852:2:1;7837:18;;7824:32;7865:33;7824:32;7865:33;:::i;:::-;7917:7;-1:-1:-1;7971:2:1;7956:18;;7943:32;;-1:-1:-1;8026:2:1;8011:18;;7998:32;-1:-1:-1;;;;;8042:30:1;;8039:50;;;8085:1;8082;8075:12;8039:50;8108:49;8149:7;8140:6;8129:9;8125:22;8108:49;:::i;8168:252::-;8235:6;8243;8296:2;8284:9;8275:7;8271:23;8267:32;8264:52;;;8312:1;8309;8302:12;8264:52;8335:28;8353:9;8335:28;:::i;8425:347::-;8476:8;8486:6;8540:3;8533:4;8525:6;8521:17;8517:27;8507:55;;8558:1;8555;8548:12;8507:55;-1:-1:-1;8581:20:1;;-1:-1:-1;;;;;8613:30:1;;8610:50;;;8656:1;8653;8646:12;8610:50;8693:4;8685:6;8681:17;8669:29;;8745:3;8738:4;8729:6;8721;8717:19;8713:30;8710:39;8707:59;;;8762:1;8759;8752:12;8707:59;8425:347;;;;;:::o;8777:773::-;8881:6;8889;8897;8905;8913;8966:3;8954:9;8945:7;8941:23;8937:33;8934:53;;;8983:1;8980;8973:12;8934:53;9006:28;9024:9;9006:28;:::i;:::-;8996:38;;9085:2;9074:9;9070:18;9057:32;-1:-1:-1;;;;;9149:2:1;9141:6;9138:14;9135:34;;;9165:1;9162;9155:12;9135:34;9188:49;9229:7;9220:6;9209:9;9205:22;9188:49;:::i;:::-;9178:59;;9256:37;9289:2;9278:9;9274:18;9256:37;:::i;:::-;9246:47;;9346:2;9335:9;9331:18;9318:32;9302:48;;9375:2;9365:8;9362:16;9359:36;;;9391:1;9388;9381:12;9359:36;;9430:60;9482:7;9471:8;9460:9;9456:24;9430:60;:::i;:::-;8777:773;;;;-1:-1:-1;8777:773:1;;-1:-1:-1;9509:8:1;;9404:86;8777:773;-1:-1:-1;;;8777:773:1:o;9555:388::-;9623:6;9631;9684:2;9672:9;9663:7;9659:23;9655:32;9652:52;;;9700:1;9697;9690:12;9652:52;9739:9;9726:23;9758:31;9783:5;9758:31;:::i;:::-;9808:5;-1:-1:-1;9865:2:1;9850:18;;9837:32;9878:33;9837:32;9878:33;:::i;9948:481::-;10026:6;10034;10042;10095:2;10083:9;10074:7;10070:23;10066:32;10063:52;;;10111:1;10108;10101:12;10063:52;10134:28;10152:9;10134:28;:::i;:::-;10124:38;;10213:2;10202:9;10198:18;10185:32;-1:-1:-1;;;;;10232:6:1;10229:30;10226:50;;;10272:1;10269;10262:12;10226:50;10311:58;10361:7;10352:6;10341:9;10337:22;10311:58;:::i;:::-;9948:481;;10388:8;;-1:-1:-1;10285:84:1;;-1:-1:-1;;;;9948:481:1:o;10434:380::-;10513:1;10509:12;;;;10556;;;10577:61;;10631:4;10623:6;10619:17;10609:27;;10577:61;10684:2;10676:6;10673:14;10653:18;10650:38;10647:161;;;10730:10;10725:3;10721:20;10718:1;10711:31;10765:4;10762:1;10755:15;10793:4;10790:1;10783:15;10647:161;;10434:380;;;:::o;10819:811::-;10945:3;10974:1;11007:6;11001:13;11037:36;11063:9;11037:36;:::i;:::-;11092:1;11109:18;;;11136:104;;;;11254:1;11249:356;;;;11102:503;;11136:104;-1:-1:-1;;11169:24:1;;11157:37;;11214:16;;;;-1:-1:-1;11136:104:1;;11249:356;11280:6;11277:1;11270:17;11310:4;11355:2;11352:1;11342:16;11380:1;11394:165;11408:6;11405:1;11402:13;11394:165;;;11486:14;;11473:11;;;11466:35;11529:16;;;;11423:10;;11394:165;;;11398:3;;;11588:6;11583:3;11579:16;11572:23;;11102:503;-1:-1:-1;11621:3:1;;10819:811;-1:-1:-1;;;;;;10819:811:1:o;12056:557::-;12313:6;12305;12301:19;12290:9;12283:38;12357:3;12352:2;12341:9;12337:18;12330:31;12264:4;12384:46;12425:3;12414:9;12410:19;12402:6;12384:46;:::i;:::-;-1:-1:-1;;;;;12470:6:1;12466:31;12461:2;12450:9;12446:18;12439:59;12546:9;12538:6;12534:22;12529:2;12518:9;12514:18;12507:50;12574:33;12600:6;12592;12574:33;:::i;:::-;12566:41;12056:557;-1:-1:-1;;;;;;;12056:557:1:o;12618:274::-;12747:3;12785:6;12779:13;12801:53;12847:6;12842:3;12835:4;12827:6;12823:17;12801:53;:::i;:::-;12870:16;;;;;12618:274;-1:-1:-1;;12618:274:1:o;14549:413::-;14751:2;14733:21;;;14790:2;14770:18;;;14763:30;14829:34;14824:2;14809:18;;14802:62;-1:-1:-1;;;14895:2:1;14880:18;;14873:47;14952:3;14937:19;;14549:413::o;14967:356::-;15169:2;15151:21;;;15188:18;;;15181:30;15247:34;15242:2;15227:18;;15220:62;15314:2;15299:18;;14967:356::o;16786:127::-;16847:10;16842:3;16838:20;16835:1;16828:31;16878:4;16875:1;16868:15;16902:4;16899:1;16892:15;16918:128;16958:3;16989:1;16985:6;16982:1;16979:13;16976:39;;;16995:18;;:::i;:::-;-1:-1:-1;17031:9:1;;16918:128::o;17464:135::-;17503:3;-1:-1:-1;;17524:17:1;;17521:43;;;17544:18;;:::i;:::-;-1:-1:-1;17591:1:1;17580:13;;17464:135::o;18431:470::-;18610:3;18648:6;18642:13;18664:53;18710:6;18705:3;18698:4;18690:6;18686:17;18664:53;:::i;:::-;18780:13;;18739:16;;;;18802:57;18780:13;18739:16;18836:4;18824:17;;18802:57;:::i;:::-;18875:20;;18431:470;-1:-1:-1;;;;18431:470:1:o;20284:642::-;20565:6;20553:19;;20535:38;;-1:-1:-1;;;;;20609:32:1;;20604:2;20589:18;;20582:60;20629:3;20673:2;20658:18;;20651:31;;;-1:-1:-1;;20705:46:1;;20731:19;;20723:6;20705:46;:::i;:::-;20801:6;20794:14;20787:22;20782:2;20771:9;20767:18;20760:50;20859:9;20851:6;20847:22;20841:3;20830:9;20826:19;20819:51;20887:33;20913:6;20905;20887:33;:::i;:::-;20879:41;20284:642;-1:-1:-1;;;;;;;;20284:642:1:o;20931:245::-;21010:6;21018;21071:2;21059:9;21050:7;21046:23;21042:32;21039:52;;;21087:1;21084;21077:12;21039:52;-1:-1:-1;;21110:16:1;;21166:2;21151:18;;;21145:25;21110:16;;21145:25;;-1:-1:-1;20931:245:1:o;21682:1484::-;22028:6;22020;22016:19;22005:9;21998:38;21979:4;22055:2;22093:3;22088:2;22077:9;22073:18;22066:31;22117:1;22150:6;22144:13;22180:36;22206:9;22180:36;:::i;:::-;22253:6;22247:3;22236:9;22232:19;22225:35;22279:3;22301:1;22333:2;22322:9;22318:18;22350:1;22345:122;;;;22481:1;22476:354;;;;22311:519;;22345:122;-1:-1:-1;;22393:24:1;;22373:18;;;22366:52;22453:3;22438:19;;;-1:-1:-1;22345:122:1;;22476:354;22507:6;22504:1;22497:17;22555:2;22552:1;22542:16;22580:1;22594:180;22608:6;22605:1;22602:13;22594:180;;;22701:14;;22677:17;;;22673:26;;22666:50;22744:16;;;;22623:10;;22594:180;;;22798:17;;22794:26;;;-1:-1:-1;;22311:519:1;;;;;;22875:9;22870:3;22866:19;22861:2;22850:9;22846:18;22839:47;22909:30;22935:3;22927:6;22909:30;:::i;:::-;22895:44;;;22948:46;22990:2;22979:9;22975:18;22967:6;-1:-1:-1;;;;;3616:31:1;3604:44;;3550:104;22948:46;-1:-1:-1;;;;;3616:31:1;;23045:3;23030:19;;3604:44;23099:9;23091:6;23087:22;23081:3;23070:9;23066:19;23059:51;23127:33;23153:6;23145;23127:33;:::i;:::-;23119:41;21682:1484;-1:-1:-1;;;;;;;;;21682:1484:1:o;23578:271::-;23761:6;23753;23748:3;23735:33;23717:3;23787:16;;23812:13;;;23787:16;23578:271;-1:-1:-1;23578:271:1:o;24209:718::-;24476:6;24468;24464:19;24453:9;24446:38;24520:3;24515:2;24504:9;24500:18;24493:31;24427:4;24547:46;24588:3;24577:9;24573:19;24565:6;24547:46;:::i;:::-;-1:-1:-1;;;;;24633:6:1;24629:31;24624:2;24613:9;24609:18;24602:59;24709:9;24701:6;24697:22;24692:2;24681:9;24677:18;24670:50;24744:6;24736;24729:22;24798:6;24790;24785:2;24777:6;24773:15;24760:45;24851:1;24846:2;24837:6;24829;24825:19;24821:28;24814:39;24918:2;24911;24907:7;24902:2;24894:6;24890:15;24886:29;24878:6;24874:42;24870:51;24862:59;;;24209:718;;;;;;;;:::o;25339:320::-;25426:6;25434;25487:2;25475:9;25466:7;25462:23;25458:32;25455:52;;;25503:1;25500;25493:12;25455:52;25535:9;25529:16;25554:31;25579:5;25554:31;:::i;:::-;25649:2;25634:18;;;;25628:25;25604:5;;25628:25;;-1:-1:-1;;;25339:320:1:o;26892:125::-;26932:4;26960:1;26957;26954:8;26951:34;;;26965:18;;:::i;:::-;-1:-1:-1;27002:9:1;;26892:125::o;27376:414::-;27578:2;27560:21;;;27617:2;27597:18;;;27590:30;27656:34;27651:2;27636:18;;27629:62;-1:-1:-1;;;27722:2:1;27707:18;;27700:48;27780:3;27765:19;;27376:414::o;27795:127::-;27856:10;27851:3;27847:20;27844:1;27837:31;27887:4;27884:1;27877:15;27911:4;27908:1;27901:15;27927:120;27967:1;27993;27983:35;;27998:18;;:::i;:::-;-1:-1:-1;28032:9:1;;27927:120::o;28052:112::-;28084:1;28110;28100:35;;28115:18;;:::i;:::-;-1:-1:-1;28149:9:1;;28052:112::o;28169:127::-;28230:10;28225:3;28221:20;28218:1;28211:31;28261:4;28258:1;28251:15;28285:4;28282:1;28275:15;28301:489;-1:-1:-1;;;;;28570:15:1;;;28552:34;;28622:15;;28617:2;28602:18;;28595:43;28669:2;28654:18;;28647:34;;;28717:3;28712:2;28697:18;;28690:31;;;28495:4;;28738:46;;28764:19;;28756:6;28738:46;:::i;:::-;28730:54;28301:489;-1:-1:-1;;;;;;28301:489:1:o;28795:249::-;28864:6;28917:2;28905:9;28896:7;28892:23;28888:32;28885:52;;;28933:1;28930;28923:12;28885:52;28965:9;28959:16;28984:30;29008:5;28984:30;:::i
Swarm Source
ipfs://795a965778053bc8bcac933c4daf1a498b2005eb674559aec1034ae53b914eff
[ 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.