Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 19 from a total of 19 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15343227 | 890 days ago | IN | 0 ETH | 0.00051796 | ||||
Free Mint | 14961195 | 951 days ago | IN | 0 ETH | 0.00142424 | ||||
Free Mint | 14948579 | 954 days ago | IN | 0 ETH | 0.00289808 | ||||
Free Mint | 14945836 | 954 days ago | IN | 0 ETH | 0.00117343 | ||||
Free Mint | 14939293 | 955 days ago | IN | 0 ETH | 0.00224846 | ||||
Set Approval For... | 14931804 | 956 days ago | IN | 0 ETH | 0.00240578 | ||||
Free Mint | 14927671 | 957 days ago | IN | 0 ETH | 0.00390205 | ||||
Free Mint | 14927258 | 957 days ago | IN | 0 ETH | 0.00290077 | ||||
Free Mint | 14925288 | 958 days ago | IN | 0 ETH | 0.00149925 | ||||
Free Mint | 14925132 | 958 days ago | IN | 0 ETH | 0.00223225 | ||||
Free Mint | 14923214 | 958 days ago | IN | 0 ETH | 0.00611732 | ||||
Free Mint | 14918541 | 959 days ago | IN | 0 ETH | 0.00205179 | ||||
Free Mint | 14918355 | 959 days ago | IN | 0 ETH | 0.00191775 | ||||
Free Mint | 14907069 | 961 days ago | IN | 0 ETH | 0.00187888 | ||||
Free Mint | 14903981 | 961 days ago | IN | 0 ETH | 0.00193047 | ||||
Free Mint | 14903662 | 961 days ago | IN | 0 ETH | 0.00225194 | ||||
Free Mint | 14903307 | 961 days ago | IN | 0 ETH | 0.00169725 | ||||
Free Mint | 14903303 | 961 days ago | IN | 0 ETH | 0.00122187 | ||||
Free Mint | 14903266 | 961 days ago | IN | 0 ETH | 0.00124917 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
KingOfCoolXClones
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT /* ___ ___ ________ ________ ___ ___ ___ ________ |\ \|\ \|\ __ \|\ ___ \|\ \ |\ \|\ \|\ __ \ \ \ \\\ \ \ \|\ \ \ \_|\ \ \ \ \ \ \\\ \ \ \|\ \ \ \ __ \ \ \\\ \ \ \ \\ \ \ \ \ \ __ \ \ \\\ \ \ \ \ \ \ \ \\\ \ \ \_\\ \ \ \____\ \ \ \ \ \ \\\ \ \ \__\ \__\ \_______\ \_______\ \_______\ \__\ \__\ \_____ \ \|__|\|__|\|_______|\|_______|\|_______|\|__|\|__|\|___| \__\ \|__| */ pragma solidity ^0.8.0; import "./ERC1155.sol"; import "./Ownable.sol"; contract KingOfCoolXClones is ERC1155, Ownable { string public name; string public symbol; mapping(uint => string) public tokenURI; uint256 internal supply = 1; constructor() ERC1155("") { name = "King of Cool x Clones"; symbol = "KOCXC"; setURI(1, "ipfs://Qmc3eEbsBDsGtW7TcYpNgNLM3SvUSu6KiSUwxGny1ZCH68/1.json"); } function freeMint(address _to) external { if(msg.sender != owner()) { require(msg.sender == _to, "KOCXC: Must mint to own wallet"); require(balanceOf(_to, 1) < 1); } _mint(_to, 1, 1, ""); } function honoraryMint(address _to, string memory _uri) public onlyOwner { _mint(_to, supply + 1, 1, ""); setURI(supply + 1, _uri); supply++; } function setURI(uint _id, string memory _uri) public onlyOwner { tokenURI[_id] = _uri; emit URI(_uri, _id); } function uri(uint _id) public override view returns (string memory) { return tokenURI[_id]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./IERC1155MetadataURI.sol"; import "./Address.sol"; import "./Context.sol"; import "./ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"name":"honoraryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260016007553480156200001657600080fd5b506040805160208101909152600081526200003181620000dd565b506200003d33620000f6565b6040805180820190915260158082527f4b696e67206f6620436f6f6c207820436c6f6e657300000000000000000000006020909201918252620000839160049162000207565b50604080518082019091526005808252644b4f43584360d81b6020909201918252620000b0918162000207565b50620000d760016040518060600160405280603c815260200162001e0e603c913962000148565b62000342565b8051620000f290600290602084019062000207565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620001a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b60008281526006602090815260409091208251620001c89284019062000207565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051620001fb9190620002ad565b60405180910390a25050565b828054620002159062000305565b90600052602060002090601f01602090048101928262000239576000855562000284565b82601f106200025457805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028457825182559160200191906001019062000267565b506200029292915062000296565b5090565b5b8082111562000292576000815560010162000297565b600060208083528351808285015260005b81811015620002dc57858101830151858201604001528201620002be565b81811115620002ef576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c908216806200031a57607f821691505b602082108114156200033c57634e487b7160e01b600052602260045260246000fd5b50919050565b611abc80620003526000396000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c8063862440e2116100a2578063c87b56dd11610071578063c87b56dd14610219578063e985e9c51461022c578063f242432a14610268578063f2fde38b1461027b578063fa07ce1d1461028e57600080fd5b8063862440e2146101d05780638da5cb5b146101e357806395d89b41146101fe578063a22cb4651461020657600080fd5b80630e89341c116100de5780630e89341c146101825780632eb2c2d6146101955780634e1273f4146101a8578063715018a6146101c857600080fd5b8062fdd58e1461010f578063017df5fa1461013557806301ffc9a71461014a57806306fdde031461016d575b600080fd5b61012261011d36600461147a565b6102a1565b6040519081526020015b60405180910390f35b61014861014336600461142c565b610337565b005b61015d61015836600461156b565b6103bc565b604051901515815260200161012c565b61017561040e565b60405161012c919061175b565b6101756101903660046115a5565b61049c565b6101486101a33660046112e1565b61053e565b6101bb6101b63660046114a4565b61058a565b60405161012c919061171a565b6101486106b4565b6101486101de3660046115be565b6106ea565b6003546040516001600160a01b03909116815260200161012c565b610175610770565b6101486102143660046113f0565b61077d565b6101756102273660046115a5565b61078c565b61015d61023a3660046112ae565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61014861027636600461138b565b6107a5565b61014861028936600461128c565b6107ea565b61014861029c36600461128c565b610885565b60006001600160a01b0383166103115760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b6003546001600160a01b031633146103615760405162461bcd60e51b815260040161030890611894565b61038b82600754600161037491906118ed565b60016040518060200160405280600081525061091e565b6103a3600754600161039d91906118ed565b826106ea565b600780549060006103b38361196d565b91905055505050565b60006001600160e01b03198216636cdb3d1360e11b14806103ed57506001600160e01b031982166303a24d0760e21b145b8061040857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004805461041b90611905565b80601f016020809104026020016040519081016040528092919081815260200182805461044790611905565b80156104945780601f1061046957610100808354040283529160200191610494565b820191906000526020600020905b81548152906001019060200180831161047757829003601f168201915b505050505081565b60008181526006602052604090208054606091906104b990611905565b80601f01602080910402602001604051908101604052809291908181526020018280546104e590611905565b80156105325780601f1061050757610100808354040283529160200191610532565b820191906000526020600020905b81548152906001019060200180831161051557829003601f168201915b50505050509050919050565b6001600160a01b03851633148061055a575061055a853361023a565b6105765760405162461bcd60e51b81526004016103089061176e565b6105838585858585610a32565b5050505050565b606081518351146105ef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610308565b6000835167ffffffffffffffff81111561060b5761060b6119b4565b604051908082528060200260200182016040528015610634578160200160208202803683370190505b50905060005b84518110156106ac5761067f8582815181106106585761065861199e565b60200260200101518583815181106106725761067261199e565b60200260200101516102a1565b8282815181106106915761069161199e565b60209081029190910101526106a58161196d565b905061063a565b509392505050565b6003546001600160a01b031633146106de5760405162461bcd60e51b815260040161030890611894565b6106e86000610c0f565b565b6003546001600160a01b031633146107145760405162461bcd60e51b815260040161030890611894565b60008281526006602090815260409091208251610733928401906110ec565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610764919061175b565b60405180910390a25050565b6005805461041b90611905565b610788338383610c61565b5050565b6006602052600090815260409020805461041b90611905565b6001600160a01b0385163314806107c157506107c1853361023a565b6107dd5760405162461bcd60e51b81526004016103089061176e565b6105838585858585610d42565b6003546001600160a01b031633146108145760405162461bcd60e51b815260040161030890611894565b6001600160a01b0381166108795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610308565b61088281610c0f565b50565b6003546001600160a01b0316331461090657336001600160a01b038216146108ef5760405162461bcd60e51b815260206004820152601e60248201527f4b4f4358433a204d757374206d696e7420746f206f776e2077616c6c657400006044820152606401610308565b60016108fc8260016102a1565b1061090657600080fd5b61088281600180604051806020016040528060008152505b6001600160a01b03841661097e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610308565b33600061098a85610e6c565b9050600061099785610e6c565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906109c99084906118ed565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610a2983600089898989610eb7565b50505050505050565b8151835114610a945760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610308565b6001600160a01b038416610aba5760405162461bcd60e51b815260040161030890611805565b3360005b8451811015610ba1576000858281518110610adb57610adb61199e565b602002602001015190506000858381518110610af957610af961199e565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610b495760405162461bcd60e51b81526004016103089061184a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610b869084906118ed565b9250508190555050505080610b9a9061196d565b9050610abe565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610bf192919061172d565b60405180910390a4610c07818787878787611022565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610cd55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610308565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610d685760405162461bcd60e51b815260040161030890611805565b336000610d7485610e6c565b90506000610d8185610e6c565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015610dc45760405162461bcd60e51b81526004016103089061184a565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610e019084906118ed565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e61848a8a8a8a8a610eb7565b505050505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610ea657610ea661199e565b602090810291909101015292915050565b6001600160a01b0384163b15610c075760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190610efb90899089908890889088906004016116d5565b602060405180830381600087803b158015610f1557600080fd5b505af1925050508015610f45575060408051601f3d908101601f19168201909252610f4291810190611588565b60015b610ff257610f516119ca565b806308c379a01415610f8b5750610f666119e6565b80610f715750610f8d565b8060405162461bcd60e51b8152600401610308919061175b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610308565b6001600160e01b0319811663f23a6e6160e01b14610a295760405162461bcd60e51b8152600401610308906117bd565b6001600160a01b0384163b15610c075760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906110669089908990889088908890600401611677565b602060405180830381600087803b15801561108057600080fd5b505af19250505080156110b0575060408051601f3d908101601f191682019092526110ad91810190611588565b60015b6110bc57610f516119ca565b6001600160e01b0319811663bc197c8160e01b14610a295760405162461bcd60e51b8152600401610308906117bd565b8280546110f890611905565b90600052602060002090601f01602090048101928261111a5760008555611160565b82601f1061113357805160ff1916838001178555611160565b82800160010185558215611160579182015b82811115611160578251825591602001919060010190611145565b5061116c929150611170565b5090565b5b8082111561116c5760008155600101611171565b80356001600160a01b038116811461119c57600080fd5b919050565b600082601f8301126111b257600080fd5b813560206111bf826118c9565b6040516111cc8282611940565b8381528281019150858301600585901b870184018810156111ec57600080fd5b60005b8581101561120b578135845292840192908401906001016111ef565b5090979650505050505050565b600082601f83011261122957600080fd5b813567ffffffffffffffff811115611243576112436119b4565b60405161125a601f8301601f191660200182611940565b81815284602083860101111561126f57600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561129e57600080fd5b6112a782611185565b9392505050565b600080604083850312156112c157600080fd5b6112ca83611185565b91506112d860208401611185565b90509250929050565b600080600080600060a086880312156112f957600080fd5b61130286611185565b945061131060208701611185565b9350604086013567ffffffffffffffff8082111561132d57600080fd5b61133989838a016111a1565b9450606088013591508082111561134f57600080fd5b61135b89838a016111a1565b9350608088013591508082111561137157600080fd5b5061137e88828901611218565b9150509295509295909350565b600080600080600060a086880312156113a357600080fd5b6113ac86611185565b94506113ba60208701611185565b93506040860135925060608601359150608086013567ffffffffffffffff8111156113e457600080fd5b61137e88828901611218565b6000806040838503121561140357600080fd5b61140c83611185565b91506020830135801515811461142157600080fd5b809150509250929050565b6000806040838503121561143f57600080fd5b61144883611185565b9150602083013567ffffffffffffffff81111561146457600080fd5b61147085828601611218565b9150509250929050565b6000806040838503121561148d57600080fd5b61149683611185565b946020939093013593505050565b600080604083850312156114b757600080fd5b823567ffffffffffffffff808211156114cf57600080fd5b818501915085601f8301126114e357600080fd5b813560206114f0826118c9565b6040516114fd8282611940565b8381528281019150858301600585901b870184018b101561151d57600080fd5b600096505b848710156115475761153381611185565b835260019690960195918301918301611522565b509650508601359250508082111561155e57600080fd5b50611470858286016111a1565b60006020828403121561157d57600080fd5b81356112a781611a70565b60006020828403121561159a57600080fd5b81516112a781611a70565b6000602082840312156115b757600080fd5b5035919050565b600080604083850312156115d157600080fd5b82359150602083013567ffffffffffffffff81111561146457600080fd5b600081518084526020808501945080840160005b8381101561161f57815187529582019590820190600101611603565b509495945050505050565b6000815180845260005b8181101561165057602081850181015186830182015201611634565b81811115611662576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906116a3908301866115ef565b82810360608401526116b581866115ef565b905082810360808401526116c9818561162a565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061170f9083018461162a565b979650505050505050565b6020815260006112a760208301846115ef565b60408152600061174060408301856115ef565b828103602084015261175281856115ef565b95945050505050565b6020815260006112a7602083018461162a565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156118e3576118e36119b4565b5060051b60200190565b6000821982111561190057611900611988565b500190565b600181811c9082168061191957607f821691505b6020821081141561193a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611966576119666119b4565b6040525050565b600060001982141561198157611981611988565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156119e35760046000803e5060005160e01c5b90565b600060443d10156119f45790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611a2457505050505090565b8285019150815181811115611a3c5750505050505090565b843d8701016020828501011115611a565750505050505090565b611a6560208286010187611940565b509095945050505050565b6001600160e01b03198116811461088257600080fdfea2646970667358221220edf4dbf1a045f0c6b8b99b66e843089925e3a69ec53cf6b956f103e845ad6b3264736f6c63430008070033697066733a2f2f516d63336545627342447347745737546359704e674e4c4d335376555375364b6953557778476e79315a434836382f312e6a736f6e
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010a5760003560e01c8063862440e2116100a2578063c87b56dd11610071578063c87b56dd14610219578063e985e9c51461022c578063f242432a14610268578063f2fde38b1461027b578063fa07ce1d1461028e57600080fd5b8063862440e2146101d05780638da5cb5b146101e357806395d89b41146101fe578063a22cb4651461020657600080fd5b80630e89341c116100de5780630e89341c146101825780632eb2c2d6146101955780634e1273f4146101a8578063715018a6146101c857600080fd5b8062fdd58e1461010f578063017df5fa1461013557806301ffc9a71461014a57806306fdde031461016d575b600080fd5b61012261011d36600461147a565b6102a1565b6040519081526020015b60405180910390f35b61014861014336600461142c565b610337565b005b61015d61015836600461156b565b6103bc565b604051901515815260200161012c565b61017561040e565b60405161012c919061175b565b6101756101903660046115a5565b61049c565b6101486101a33660046112e1565b61053e565b6101bb6101b63660046114a4565b61058a565b60405161012c919061171a565b6101486106b4565b6101486101de3660046115be565b6106ea565b6003546040516001600160a01b03909116815260200161012c565b610175610770565b6101486102143660046113f0565b61077d565b6101756102273660046115a5565b61078c565b61015d61023a3660046112ae565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61014861027636600461138b565b6107a5565b61014861028936600461128c565b6107ea565b61014861029c36600461128c565b610885565b60006001600160a01b0383166103115760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b6003546001600160a01b031633146103615760405162461bcd60e51b815260040161030890611894565b61038b82600754600161037491906118ed565b60016040518060200160405280600081525061091e565b6103a3600754600161039d91906118ed565b826106ea565b600780549060006103b38361196d565b91905055505050565b60006001600160e01b03198216636cdb3d1360e11b14806103ed57506001600160e01b031982166303a24d0760e21b145b8061040857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004805461041b90611905565b80601f016020809104026020016040519081016040528092919081815260200182805461044790611905565b80156104945780601f1061046957610100808354040283529160200191610494565b820191906000526020600020905b81548152906001019060200180831161047757829003601f168201915b505050505081565b60008181526006602052604090208054606091906104b990611905565b80601f01602080910402602001604051908101604052809291908181526020018280546104e590611905565b80156105325780601f1061050757610100808354040283529160200191610532565b820191906000526020600020905b81548152906001019060200180831161051557829003601f168201915b50505050509050919050565b6001600160a01b03851633148061055a575061055a853361023a565b6105765760405162461bcd60e51b81526004016103089061176e565b6105838585858585610a32565b5050505050565b606081518351146105ef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610308565b6000835167ffffffffffffffff81111561060b5761060b6119b4565b604051908082528060200260200182016040528015610634578160200160208202803683370190505b50905060005b84518110156106ac5761067f8582815181106106585761065861199e565b60200260200101518583815181106106725761067261199e565b60200260200101516102a1565b8282815181106106915761069161199e565b60209081029190910101526106a58161196d565b905061063a565b509392505050565b6003546001600160a01b031633146106de5760405162461bcd60e51b815260040161030890611894565b6106e86000610c0f565b565b6003546001600160a01b031633146107145760405162461bcd60e51b815260040161030890611894565b60008281526006602090815260409091208251610733928401906110ec565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610764919061175b565b60405180910390a25050565b6005805461041b90611905565b610788338383610c61565b5050565b6006602052600090815260409020805461041b90611905565b6001600160a01b0385163314806107c157506107c1853361023a565b6107dd5760405162461bcd60e51b81526004016103089061176e565b6105838585858585610d42565b6003546001600160a01b031633146108145760405162461bcd60e51b815260040161030890611894565b6001600160a01b0381166108795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610308565b61088281610c0f565b50565b6003546001600160a01b0316331461090657336001600160a01b038216146108ef5760405162461bcd60e51b815260206004820152601e60248201527f4b4f4358433a204d757374206d696e7420746f206f776e2077616c6c657400006044820152606401610308565b60016108fc8260016102a1565b1061090657600080fd5b61088281600180604051806020016040528060008152505b6001600160a01b03841661097e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610308565b33600061098a85610e6c565b9050600061099785610e6c565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906109c99084906118ed565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610a2983600089898989610eb7565b50505050505050565b8151835114610a945760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610308565b6001600160a01b038416610aba5760405162461bcd60e51b815260040161030890611805565b3360005b8451811015610ba1576000858281518110610adb57610adb61199e565b602002602001015190506000858381518110610af957610af961199e565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610b495760405162461bcd60e51b81526004016103089061184a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610b869084906118ed565b9250508190555050505080610b9a9061196d565b9050610abe565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610bf192919061172d565b60405180910390a4610c07818787878787611022565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610cd55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610308565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610d685760405162461bcd60e51b815260040161030890611805565b336000610d7485610e6c565b90506000610d8185610e6c565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015610dc45760405162461bcd60e51b81526004016103089061184a565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610e019084906118ed565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e61848a8a8a8a8a610eb7565b505050505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610ea657610ea661199e565b602090810291909101015292915050565b6001600160a01b0384163b15610c075760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190610efb90899089908890889088906004016116d5565b602060405180830381600087803b158015610f1557600080fd5b505af1925050508015610f45575060408051601f3d908101601f19168201909252610f4291810190611588565b60015b610ff257610f516119ca565b806308c379a01415610f8b5750610f666119e6565b80610f715750610f8d565b8060405162461bcd60e51b8152600401610308919061175b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610308565b6001600160e01b0319811663f23a6e6160e01b14610a295760405162461bcd60e51b8152600401610308906117bd565b6001600160a01b0384163b15610c075760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906110669089908990889088908890600401611677565b602060405180830381600087803b15801561108057600080fd5b505af19250505080156110b0575060408051601f3d908101601f191682019092526110ad91810190611588565b60015b6110bc57610f516119ca565b6001600160e01b0319811663bc197c8160e01b14610a295760405162461bcd60e51b8152600401610308906117bd565b8280546110f890611905565b90600052602060002090601f01602090048101928261111a5760008555611160565b82601f1061113357805160ff1916838001178555611160565b82800160010185558215611160579182015b82811115611160578251825591602001919060010190611145565b5061116c929150611170565b5090565b5b8082111561116c5760008155600101611171565b80356001600160a01b038116811461119c57600080fd5b919050565b600082601f8301126111b257600080fd5b813560206111bf826118c9565b6040516111cc8282611940565b8381528281019150858301600585901b870184018810156111ec57600080fd5b60005b8581101561120b578135845292840192908401906001016111ef565b5090979650505050505050565b600082601f83011261122957600080fd5b813567ffffffffffffffff811115611243576112436119b4565b60405161125a601f8301601f191660200182611940565b81815284602083860101111561126f57600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561129e57600080fd5b6112a782611185565b9392505050565b600080604083850312156112c157600080fd5b6112ca83611185565b91506112d860208401611185565b90509250929050565b600080600080600060a086880312156112f957600080fd5b61130286611185565b945061131060208701611185565b9350604086013567ffffffffffffffff8082111561132d57600080fd5b61133989838a016111a1565b9450606088013591508082111561134f57600080fd5b61135b89838a016111a1565b9350608088013591508082111561137157600080fd5b5061137e88828901611218565b9150509295509295909350565b600080600080600060a086880312156113a357600080fd5b6113ac86611185565b94506113ba60208701611185565b93506040860135925060608601359150608086013567ffffffffffffffff8111156113e457600080fd5b61137e88828901611218565b6000806040838503121561140357600080fd5b61140c83611185565b91506020830135801515811461142157600080fd5b809150509250929050565b6000806040838503121561143f57600080fd5b61144883611185565b9150602083013567ffffffffffffffff81111561146457600080fd5b61147085828601611218565b9150509250929050565b6000806040838503121561148d57600080fd5b61149683611185565b946020939093013593505050565b600080604083850312156114b757600080fd5b823567ffffffffffffffff808211156114cf57600080fd5b818501915085601f8301126114e357600080fd5b813560206114f0826118c9565b6040516114fd8282611940565b8381528281019150858301600585901b870184018b101561151d57600080fd5b600096505b848710156115475761153381611185565b835260019690960195918301918301611522565b509650508601359250508082111561155e57600080fd5b50611470858286016111a1565b60006020828403121561157d57600080fd5b81356112a781611a70565b60006020828403121561159a57600080fd5b81516112a781611a70565b6000602082840312156115b757600080fd5b5035919050565b600080604083850312156115d157600080fd5b82359150602083013567ffffffffffffffff81111561146457600080fd5b600081518084526020808501945080840160005b8381101561161f57815187529582019590820190600101611603565b509495945050505050565b6000815180845260005b8181101561165057602081850181015186830182015201611634565b81811115611662576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906116a3908301866115ef565b82810360608401526116b581866115ef565b905082810360808401526116c9818561162a565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061170f9083018461162a565b979650505050505050565b6020815260006112a760208301846115ef565b60408152600061174060408301856115ef565b828103602084015261175281856115ef565b95945050505050565b6020815260006112a7602083018461162a565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156118e3576118e36119b4565b5060051b60200190565b6000821982111561190057611900611988565b500190565b600181811c9082168061191957607f821691505b6020821081141561193a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611966576119666119b4565b6040525050565b600060001982141561198157611981611988565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156119e35760046000803e5060005160e01c5b90565b600060443d10156119f45790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611a2457505050505090565b8285019150815181811115611a3c5750505050505090565b843d8701016020828501011115611a565750505050505090565b611a6560208286010187611940565b509095945050505050565b6001600160e01b03198116811461088257600080fdfea2646970667358221220edf4dbf1a045f0c6b8b99b66e843089925e3a69ec53cf6b956f103e845ad6b3264736f6c63430008070033
Deployed Bytecode Sourcemap
660:987:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130:227:2;;;;;;:::i;:::-;;:::i;:::-;;;15875:25:10;;;15863:2;15848:18;2130:227:2;;;;;;;;1249:160:8;;;;;;:::i;:::-;;:::i;:::-;;1181:305:2;;;;;;:::i;:::-;;:::i;:::-;;;10246:14:10;;10239:22;10221:41;;10209:2;10194:18;1181:305:2;10081:187:10;718:18:8;;;:::i;:::-;;;;;;;:::i;1543:101::-;;;;;;:::i;:::-;;:::i;4010:427:2:-;;;;;;:::i;:::-;;:::i;2514:508::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1661:101:9:-;;;:::i;1415:122:8:-;;;;;;:::i;:::-;;:::i;1029:85:9:-;1101:6;;1029:85;;-1:-1:-1;;;;;1101:6:9;;;7887:51:10;;7875:2;7860:18;1029:85:9;7741:203:10;741:20:8;;;:::i;3090:153:2:-;;;;;;:::i;:::-;;:::i;766:39:8:-;;;;;;:::i;:::-;;:::i;3310:166:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3432:27:2;;;3409:4;3432:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3310:166;3543:395;;;;;;:::i;:::-;;:::i;1911:198:9:-;;;;;;:::i;:::-;;:::i;1022:221:8:-;;;;;;:::i;:::-;;:::i;2130:227:2:-;2216:7;-1:-1:-1;;;;;2243:21:2;;2235:76;;;;-1:-1:-1;;;2235:76:2;;12352:2:10;2235:76:2;;;12334:21:10;12391:2;12371:18;;;12364:30;12430:34;12410:18;;;12403:62;-1:-1:-1;;;12481:18:10;;;12474:40;12531:19;;2235:76:2;;;;;;;;;-1:-1:-1;2328:9:2;:13;;;;;;;;;;;-1:-1:-1;;;;;2328:22:2;;;;;;;;;;;;2130:227::o;1249:160:8:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1328:29:8::1;1334:3;1339:6;;1348:1;1339:10;;;;:::i;:::-;1351:1;1328:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;1364:24;1371:6;;1380:1;1371:10;;;;:::i;:::-;1383:4;1364:6;:24::i;:::-;1395:6;:8:::0;;;:6:::1;:8;::::0;::::1;:::i;:::-;;;;;;1249:160:::0;;:::o;1181:305:2:-;1283:4;-1:-1:-1;;;;;;1318:41:2;;-1:-1:-1;;;1318:41:2;;:109;;-1:-1:-1;;;;;;;1375:52:2;;-1:-1:-1;;;1375:52:2;1318:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:3;;;1443:36:2;1299:180;1181:305;-1:-1:-1;;1181:305:2:o;718:18:8:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1543:101::-;1625:13;;;;:8;:13;;;;;1618:20;;1596:13;;1625;1618:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1543:101;;;:::o;4010:427:2:-;-1:-1:-1;;;;;4235:20:2;;719:10:1;4235:20:2;;:60;;-1:-1:-1;4259:36:2;4276:4;719:10:1;3310:166:2;:::i;4259:36::-;4214:154;;;;-1:-1:-1;;;4214:154:2;;;;;;;:::i;:::-;4378:52;4401:4;4407:2;4411:3;4416:7;4425:4;4378:22;:52::i;:::-;4010:427;;;;;:::o;2514:508::-;2665:16;2724:3;:10;2705:8;:15;:29;2697:83;;;;-1:-1:-1;;;2697:83:2;;14710:2:10;2697:83:2;;;14692:21:10;14749:2;14729:18;;;14722:30;14788:34;14768:18;;;14761:62;-1:-1:-1;;;14839:18:10;;;14832:39;14888:19;;2697:83:2;14508:405:10;2697:83:2;2791:30;2838:8;:15;2824:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2824:30:2;;2791:63;;2870:9;2865:120;2889:8;:15;2885:1;:19;2865:120;;;2944:30;2954:8;2963:1;2954:11;;;;;;;;:::i;:::-;;;;;;;2967:3;2971:1;2967:6;;;;;;;;:::i;:::-;;;;;;;2944:9;:30::i;:::-;2925:13;2939:1;2925:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2906:3;;;:::i;:::-;;;2865:120;;;-1:-1:-1;3002:13:2;2514:508;-1:-1:-1;;;2514:508:2:o;1661:101:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1415:122:8:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1485:13:8::1;::::0;;;:8:::1;:13;::::0;;;;;;;:20;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;1527:3;1517:14;1521:4;1517:14;;;;;;:::i;:::-;;;;;;;;1415:122:::0;;:::o;741:20::-;;;;;;;:::i;3090:153:2:-;3184:52;719:10:1;3217:8:2;3227;3184:18;:52::i;:::-;3090:153;;:::o;766:39:8:-;;;;;;;;;;;;;;;;:::i;3543:395:2:-;-1:-1:-1;;;;;3743:20:2;;719:10:1;3743:20:2;;:60;;-1:-1:-1;3767:36:2;3784:4;719:10:1;3310:166:2;:::i;3767:36::-;3722:154;;;;-1:-1:-1;;;3722:154:2;;;;;;;:::i;:::-;3886:45;3904:4;3910:2;3914;3918:6;3926:4;3886:17;:45::i;1911:198:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:9;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:9;;11945:2:10;1991:73:9::1;::::0;::::1;11927:21:10::0;11984:2;11964:18;;;11957:30;12023:34;12003:18;;;11996:62;-1:-1:-1;;;12074:18:10;;;12067:36;12120:19;;1991:73:9::1;11743:402:10::0;1991:73:9::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;1022:221:8:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;1072:10:8;:21;1069:142;;1112:10;-1:-1:-1;;;;;1112:17:8;;;1104:60;;;;-1:-1:-1;;;1104:60:8;;13941:2:10;1104:60:8;;;13923:21:10;13980:2;13960:18;;;13953:30;14019:32;13999:18;;;13992:60;14069:18;;1104:60:8;13739:354:10;1104:60:8;1201:1;1181:17;1191:3;1196:1;1181:9;:17::i;:::-;:21;1173:30;;;;;;1217:20;1223:3;1228:1;1231;1217:20;;;;;;;;;;;;8577:709:2;-1:-1:-1;;;;;8724:16:2;;8716:62;;;;-1:-1:-1;;;8716:62:2;;15529:2:10;8716:62:2;;;15511:21:10;15568:2;15548:18;;;15541:30;15607:34;15587:18;;;15580:62;-1:-1:-1;;;15658:18:10;;;15651:31;15699:19;;8716:62:2;15327:397:10;8716:62:2;719:10:1;8789:16:2;8853:21;8871:2;8853:17;:21::i;:::-;8830:44;;8884:24;8911:25;8929:6;8911:17;:25::i;:::-;8884:52;;9024:9;:13;;;;;;;;;;;-1:-1:-1;;;;;9024:17:2;;;;;;;;;:27;;9045:6;;9024:9;:27;;9045:6;;9024:27;:::i;:::-;;;;-1:-1:-1;;9066:52:2;;;16085:25:10;;;16141:2;16126:18;;16119:34;;;-1:-1:-1;;;;;9066:52:2;;;;9099:1;;9066:52;;;;;;16058:18:10;9066:52:2;;;;;;;9205:74;9236:8;9254:1;9258:2;9262;9266:6;9274:4;9205:30;:74::i;:::-;8706:580;;;8577:709;;;;:::o;6180:1115::-;6400:7;:14;6386:3;:10;:28;6378:81;;;;-1:-1:-1;;;6378:81:2;;15120:2:10;6378:81:2;;;15102:21:10;15159:2;15139:18;;;15132:30;15198:34;15178:18;;;15171:62;-1:-1:-1;;;15249:18:10;;;15242:38;15297:19;;6378:81:2;14918:404:10;6378:81:2;-1:-1:-1;;;;;6477:16:2;;6469:66;;;;-1:-1:-1;;;6469:66:2;;;;;;;:::i;:::-;719:10:1;6546:16:2;6659:411;6683:3;:10;6679:1;:14;6659:411;;;6714:10;6727:3;6731:1;6727:6;;;;;;;;:::i;:::-;;;;;;;6714:19;;6747:14;6764:7;6772:1;6764:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6789:19;6811:13;;;;;;;;;;-1:-1:-1;;;;;6811:19:2;;;;;;;;;;;;6764:10;;-1:-1:-1;6852:21:2;;;;6844:76;;;;-1:-1:-1;;;6844:76:2;;;;;;;:::i;:::-;6962:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6962:19:2;;;;;;;;;;6984:20;;;6962:42;;7032:17;;;;;;;:27;;6984:20;;6962:9;7032:27;;6984:20;;7032:27;:::i;:::-;;;;;;;;6700:370;;;6695:3;;;;:::i;:::-;;;6659:411;;;;7115:2;-1:-1:-1;;;;;7085:47:2;7109:4;-1:-1:-1;;;;;7085:47:2;7099:8;-1:-1:-1;;;;;7085:47:2;;7119:3;7124:7;7085:47;;;;;;;:::i;:::-;;;;;;;;7213:75;7249:8;7259:4;7265:2;7269:3;7274:7;7283:4;7213:35;:75::i;:::-;6368:927;6180:1115;;;;;:::o;2263:187:9:-;2355:6;;;-1:-1:-1;;;;;2371:17:9;;;-1:-1:-1;;;;;;2371:17:9;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;12857:323:2:-;13007:8;-1:-1:-1;;;;;12998:17:2;:5;-1:-1:-1;;;;;12998:17:2;;;12990:71;;;;-1:-1:-1;;;12990:71:2;;14300:2:10;12990:71:2;;;14282:21:10;14339:2;14319:18;;;14312:30;14378:34;14358:18;;;14351:62;-1:-1:-1;;;14429:18:10;;;14422:39;14478:19;;12990:71:2;14098:405:10;12990:71:2;-1:-1:-1;;;;;13071:25:2;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13071:46:2;;;;;;;;;;13132:41;;10221::10;;;13132::2;;10194:18:10;13132:41:2;;;;;;;12857:323;;;:::o;4887:947::-;-1:-1:-1;;;;;5068:16:2;;5060:66;;;;-1:-1:-1;;;5060:66:2;;;;;;;:::i;:::-;719:10:1;5137:16:2;5201:21;5219:2;5201:17;:21::i;:::-;5178:44;;5232:24;5259:25;5277:6;5259:17;:25::i;:::-;5232:52;;5366:19;5388:13;;;;;;;;;;;-1:-1:-1;;;;;5388:19:2;;;;;;;;;;5425:21;;;;5417:76;;;;-1:-1:-1;;;5417:76:2;;;;;;;:::i;:::-;5527:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5527:19:2;;;;;;;;;;5549:20;;;5527:42;;5589:17;;;;;;;:27;;5549:20;;5527:9;5589:27;;5549:20;;5589:27;:::i;:::-;;;;-1:-1:-1;;5632:46:2;;;16085:25:10;;;16141:2;16126:18;;16119:34;;;-1:-1:-1;;;;;5632:46:2;;;;;;;;;;;;;;16058:18:10;5632:46:2;;;;;;;5759:68;5790:8;5800:4;5806:2;5810;5814:6;5822:4;5759:30;:68::i;:::-;5050:784;;;;4887:947;;;;;:::o;17011:193::-;17130:16;;;17144:1;17130:16;;;;;;;;;17077;;17105:22;;17130:16;;;;;;;;;;;;-1:-1:-1;17130:16:2;17105:41;;17167:7;17156:5;17162:1;17156:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;17192:5;17011:193;-1:-1:-1;;17011:193:2:o;15482:725::-;-1:-1:-1;;;;;15689:13:2;;1465:19:0;:23;15685:516:2;;15724:72;;-1:-1:-1;;;15724:72:2;;-1:-1:-1;;;;;15724:38:2;;;;;:72;;15763:8;;15773:4;;15779:2;;15783:6;;15791:4;;15724:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15724:72:2;;;;;;;;-1:-1:-1;;15724:72:2;;;;;;;;;;;;:::i;:::-;;;15720:471;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;16067:6;16060:14;;-1:-1:-1;;;16060:14:2;;;;;;;;:::i;15720:471::-;;;16114:62;;-1:-1:-1;;;16114:62:2;;10699:2:10;16114:62:2;;;10681:21:10;10738:2;10718:18;;;10711:30;10777:34;10757:18;;;10750:62;-1:-1:-1;;;10828:18:10;;;10821:50;10888:19;;16114:62:2;10497:416:10;15720:471:2;-1:-1:-1;;;;;;15845:55:2;;-1:-1:-1;;;15845:55:2;15841:152;;15924:50;;-1:-1:-1;;;15924:50:2;;;;;;;:::i;16213:792::-;-1:-1:-1;;;;;16445:13:2;;1465:19:0;:23;16441:558:2;;16480:79;;-1:-1:-1;;;16480:79:2;;-1:-1:-1;;;;;16480:43:2;;;;;:79;;16524:8;;16534:4;;16540:3;;16545:7;;16554:4;;16480:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16480:79:2;;;;;;;;-1:-1:-1;;16480:79:2;;;;;;;;;;;;:::i;:::-;;;16476:513;;;;:::i;:::-;-1:-1:-1;;;;;;16638:60:2;;-1:-1:-1;;;16638:60:2;16634:157;;16722:50;;-1:-1:-1;;;16722:50:2;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:10;82:20;;-1:-1:-1;;;;;131:31:10;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:735::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;402:43;442:2;402:43;:::i;:::-;474:2;468:9;486:31;514:2;506:6;486:31;:::i;:::-;552:18;;;586:15;;;;-1:-1:-1;621:15:10;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:10;;;702:1;699;692:12;645:61;724:1;734:163;748:2;745:1;742:9;734:163;;;805:17;;793:30;;843:12;;;;875;;;;766:1;759:9;734:163;;;-1:-1:-1;915:6:10;;192:735;-1:-1:-1;;;;;;;192:735:10:o;932:555::-;974:5;1027:3;1020:4;1012:6;1008:17;1004:27;994:55;;1045:1;1042;1035:12;994:55;1081:6;1068:20;1107:18;1103:2;1100:26;1097:52;;;1129:18;;:::i;:::-;1178:2;1172:9;1190:67;1245:2;1226:13;;-1:-1:-1;;1222:27:10;1251:4;1218:38;1172:9;1190:67;:::i;:::-;1281:2;1273:6;1266:18;1327:3;1320:4;1315:2;1307:6;1303:15;1299:26;1296:35;1293:55;;;1344:1;1341;1334:12;1293:55;1408:2;1401:4;1393:6;1389:17;1382:4;1374:6;1370:17;1357:54;1455:1;1431:15;;;1448:4;1427:26;1420:37;;;;1435:6;932:555;-1:-1:-1;;;932:555:10:o;1492:186::-;1551:6;1604:2;1592:9;1583:7;1579:23;1575:32;1572:52;;;1620:1;1617;1610:12;1572:52;1643:29;1662:9;1643:29;:::i;:::-;1633:39;1492:186;-1:-1:-1;;;1492:186:10:o;1683:260::-;1751:6;1759;1812:2;1800:9;1791:7;1787:23;1783:32;1780:52;;;1828:1;1825;1818:12;1780:52;1851:29;1870:9;1851:29;:::i;:::-;1841:39;;1899:38;1933:2;1922:9;1918:18;1899:38;:::i;:::-;1889:48;;1683:260;;;;;:::o;1948:943::-;2102:6;2110;2118;2126;2134;2187:3;2175:9;2166:7;2162:23;2158:33;2155:53;;;2204:1;2201;2194:12;2155:53;2227:29;2246:9;2227:29;:::i;:::-;2217:39;;2275:38;2309:2;2298:9;2294:18;2275:38;:::i;:::-;2265:48;;2364:2;2353:9;2349:18;2336:32;2387:18;2428:2;2420:6;2417:14;2414:34;;;2444:1;2441;2434:12;2414:34;2467:61;2520:7;2511:6;2500:9;2496:22;2467:61;:::i;:::-;2457:71;;2581:2;2570:9;2566:18;2553:32;2537:48;;2610:2;2600:8;2597:16;2594:36;;;2626:1;2623;2616:12;2594:36;2649:63;2704:7;2693:8;2682:9;2678:24;2649:63;:::i;:::-;2639:73;;2765:3;2754:9;2750:19;2737:33;2721:49;;2795:2;2785:8;2782:16;2779:36;;;2811:1;2808;2801:12;2779:36;;2834:51;2877:7;2866:8;2855:9;2851:24;2834:51;:::i;:::-;2824:61;;;1948:943;;;;;;;;:::o;2896:606::-;3000:6;3008;3016;3024;3032;3085:3;3073:9;3064:7;3060:23;3056:33;3053:53;;;3102:1;3099;3092:12;3053:53;3125:29;3144:9;3125:29;:::i;:::-;3115:39;;3173:38;3207:2;3196:9;3192:18;3173:38;:::i;:::-;3163:48;;3258:2;3247:9;3243:18;3230:32;3220:42;;3309:2;3298:9;3294:18;3281:32;3271:42;;3364:3;3353:9;3349:19;3336:33;3392:18;3384:6;3381:30;3378:50;;;3424:1;3421;3414:12;3378:50;3447:49;3488:7;3479:6;3468:9;3464:22;3447:49;:::i;3507:347::-;3572:6;3580;3633:2;3621:9;3612:7;3608:23;3604:32;3601:52;;;3649:1;3646;3639:12;3601:52;3672:29;3691:9;3672:29;:::i;:::-;3662:39;;3751:2;3740:9;3736:18;3723:32;3798:5;3791:13;3784:21;3777:5;3774:32;3764:60;;3820:1;3817;3810:12;3764:60;3843:5;3833:15;;;3507:347;;;;;:::o;3859:395::-;3937:6;3945;3998:2;3986:9;3977:7;3973:23;3969:32;3966:52;;;4014:1;4011;4004:12;3966:52;4037:29;4056:9;4037:29;:::i;:::-;4027:39;;4117:2;4106:9;4102:18;4089:32;4144:18;4136:6;4133:30;4130:50;;;4176:1;4173;4166:12;4130:50;4199:49;4240:7;4231:6;4220:9;4216:22;4199:49;:::i;:::-;4189:59;;;3859:395;;;;;:::o;4259:254::-;4327:6;4335;4388:2;4376:9;4367:7;4363:23;4359:32;4356:52;;;4404:1;4401;4394:12;4356:52;4427:29;4446:9;4427:29;:::i;:::-;4417:39;4503:2;4488:18;;;;4475:32;;-1:-1:-1;;;4259:254:10:o;4518:1219::-;4636:6;4644;4697:2;4685:9;4676:7;4672:23;4668:32;4665:52;;;4713:1;4710;4703:12;4665:52;4753:9;4740:23;4782:18;4823:2;4815:6;4812:14;4809:34;;;4839:1;4836;4829:12;4809:34;4877:6;4866:9;4862:22;4852:32;;4922:7;4915:4;4911:2;4907:13;4903:27;4893:55;;4944:1;4941;4934:12;4893:55;4980:2;4967:16;5002:4;5025:43;5065:2;5025:43;:::i;:::-;5097:2;5091:9;5109:31;5137:2;5129:6;5109:31;:::i;:::-;5175:18;;;5209:15;;;;-1:-1:-1;5244:11:10;;;5286:1;5282:10;;;5274:19;;5270:28;;5267:41;-1:-1:-1;5264:61:10;;;5321:1;5318;5311:12;5264:61;5343:1;5334:10;;5353:169;5367:2;5364:1;5361:9;5353:169;;;5424:23;5443:3;5424:23;:::i;:::-;5412:36;;5385:1;5378:9;;;;;5468:12;;;;5500;;5353:169;;;-1:-1:-1;5541:6:10;-1:-1:-1;;5585:18:10;;5572:32;;-1:-1:-1;;5616:16:10;;;5613:36;;;5645:1;5642;5635:12;5613:36;;5668:63;5723:7;5712:8;5701:9;5697:24;5668:63;:::i;5742:245::-;5800:6;5853:2;5841:9;5832:7;5828:23;5824:32;5821:52;;;5869:1;5866;5859:12;5821:52;5908:9;5895:23;5927:30;5951:5;5927:30;:::i;5992:249::-;6061:6;6114:2;6102:9;6093:7;6089:23;6085:32;6082:52;;;6130:1;6127;6120:12;6082:52;6162:9;6156:16;6181:30;6205:5;6181:30;:::i;6246:180::-;6305:6;6358:2;6346:9;6337:7;6333:23;6329:32;6326:52;;;6374:1;6371;6364:12;6326:52;-1:-1:-1;6397:23:10;;6246:180;-1:-1:-1;6246:180:10:o;6431:389::-;6509:6;6517;6570:2;6558:9;6549:7;6545:23;6541:32;6538:52;;;6586:1;6583;6576:12;6538:52;6622:9;6609:23;6599:33;;6683:2;6672:9;6668:18;6655:32;6710:18;6702:6;6699:30;6696:50;;;6742:1;6739;6732:12;6825:435;6878:3;6916:5;6910:12;6943:6;6938:3;6931:19;6969:4;6998:2;6993:3;6989:12;6982:19;;7035:2;7028:5;7024:14;7056:1;7066:169;7080:6;7077:1;7074:13;7066:169;;;7141:13;;7129:26;;7175:12;;;;7210:15;;;;7102:1;7095:9;7066:169;;;-1:-1:-1;7251:3:10;;6825:435;-1:-1:-1;;;;;6825:435:10:o;7265:471::-;7306:3;7344:5;7338:12;7371:6;7366:3;7359:19;7396:1;7406:162;7420:6;7417:1;7414:13;7406:162;;;7482:4;7538:13;;;7534:22;;7528:29;7510:11;;;7506:20;;7499:59;7435:12;7406:162;;;7586:6;7583:1;7580:13;7577:87;;;7652:1;7645:4;7636:6;7631:3;7627:16;7623:27;7616:38;7577:87;-1:-1:-1;7718:2:10;7697:15;-1:-1:-1;;7693:29:10;7684:39;;;;7725:4;7680:50;;7265:471;-1:-1:-1;;7265:471:10:o;7949:826::-;-1:-1:-1;;;;;8346:15:10;;;8328:34;;8398:15;;8393:2;8378:18;;8371:43;8308:3;8445:2;8430:18;;8423:31;;;8271:4;;8477:57;;8514:19;;8506:6;8477:57;:::i;:::-;8582:9;8574:6;8570:22;8565:2;8554:9;8550:18;8543:50;8616:44;8653:6;8645;8616:44;:::i;:::-;8602:58;;8709:9;8701:6;8697:22;8691:3;8680:9;8676:19;8669:51;8737:32;8762:6;8754;8737:32;:::i;:::-;8729:40;7949:826;-1:-1:-1;;;;;;;;7949:826:10:o;8780:560::-;-1:-1:-1;;;;;9077:15:10;;;9059:34;;9129:15;;9124:2;9109:18;;9102:43;9176:2;9161:18;;9154:34;;;9219:2;9204:18;;9197:34;;;9039:3;9262;9247:19;;9240:32;;;9002:4;;9289:45;;9314:19;;9306:6;9289:45;:::i;:::-;9281:53;8780:560;-1:-1:-1;;;;;;;8780:560:10:o;9345:261::-;9524:2;9513:9;9506:21;9487:4;9544:56;9596:2;9585:9;9581:18;9573:6;9544:56;:::i;9611:465::-;9868:2;9857:9;9850:21;9831:4;9894:56;9946:2;9935:9;9931:18;9923:6;9894:56;:::i;:::-;9998:9;9990:6;9986:22;9981:2;9970:9;9966:18;9959:50;10026:44;10063:6;10055;10026:44;:::i;:::-;10018:52;9611:465;-1:-1:-1;;;;;9611:465:10:o;10273:219::-;10422:2;10411:9;10404:21;10385:4;10442:44;10482:2;10471:9;10467:18;10459:6;10442:44;:::i;10918:411::-;11120:2;11102:21;;;11159:2;11139:18;;;11132:30;11198:34;11193:2;11178:18;;11171:62;-1:-1:-1;;;11264:2:10;11249:18;;11242:45;11319:3;11304:19;;10918:411::o;11334:404::-;11536:2;11518:21;;;11575:2;11555:18;;;11548:30;11614:34;11609:2;11594:18;;11587:62;-1:-1:-1;;;11680:2:10;11665:18;;11658:38;11728:3;11713:19;;11334:404::o;12561:401::-;12763:2;12745:21;;;12802:2;12782:18;;;12775:30;12841:34;12836:2;12821:18;;12814:62;-1:-1:-1;;;12907:2:10;12892:18;;12885:35;12952:3;12937:19;;12561:401::o;12967:406::-;13169:2;13151:21;;;13208:2;13188:18;;;13181:30;13247:34;13242:2;13227:18;;13220:62;-1:-1:-1;;;13313:2:10;13298:18;;13291:40;13363:3;13348:19;;12967:406::o;13378:356::-;13580:2;13562:21;;;13599:18;;;13592:30;13658:34;13653:2;13638:18;;13631:62;13725:2;13710:18;;13378:356::o;16164:183::-;16224:4;16257:18;16249:6;16246:30;16243:56;;;16279:18;;:::i;:::-;-1:-1:-1;16324:1:10;16320:14;16336:4;16316:25;;16164:183::o;16352:128::-;16392:3;16423:1;16419:6;16416:1;16413:13;16410:39;;;16429:18;;:::i;:::-;-1:-1:-1;16465:9:10;;16352:128::o;16485:380::-;16564:1;16560:12;;;;16607;;;16628:61;;16682:4;16674:6;16670:17;16660:27;;16628:61;16735:2;16727:6;16724:14;16704:18;16701:38;16698:161;;;16781:10;16776:3;16772:20;16769:1;16762:31;16816:4;16813:1;16806:15;16844:4;16841:1;16834:15;16698:161;;16485:380;;;:::o;16870:249::-;16980:2;16961:13;;-1:-1:-1;;16957:27:10;16945:40;;17015:18;17000:34;;17036:22;;;16997:62;16994:88;;;17062:18;;:::i;:::-;17098:2;17091:22;-1:-1:-1;;16870:249:10:o;17124:135::-;17163:3;-1:-1:-1;;17184:17:10;;17181:43;;;17204:18;;:::i;:::-;-1:-1:-1;17251:1:10;17240:13;;17124:135::o;17264:127::-;17325:10;17320:3;17316:20;17313:1;17306:31;17356:4;17353:1;17346:15;17380:4;17377:1;17370:15;17396:127;17457:10;17452:3;17448:20;17445:1;17438:31;17488:4;17485:1;17478:15;17512:4;17509:1;17502:15;17528:127;17589:10;17584:3;17580:20;17577:1;17570:31;17620:4;17617:1;17610:15;17644:4;17641:1;17634:15;17660:179;17695:3;17737:1;17719:16;17716:23;17713:120;;;17783:1;17780;17777;17762:23;-1:-1:-1;17820:1:10;17814:8;17809:3;17805:18;17713:120;17660:179;:::o;17844:671::-;17883:3;17925:4;17907:16;17904:26;17901:39;;;17844:671;:::o;17901:39::-;17967:2;17961:9;-1:-1:-1;;18032:16:10;18028:25;;18025:1;17961:9;18004:50;18083:4;18077:11;18107:16;18142:18;18213:2;18206:4;18198:6;18194:17;18191:25;18186:2;18178:6;18175:14;18172:45;18169:58;;;18220:5;;;;;17844:671;:::o;18169:58::-;18257:6;18251:4;18247:17;18236:28;;18293:3;18287:10;18320:2;18312:6;18309:14;18306:27;;;18326:5;;;;;;17844:671;:::o;18306:27::-;18410:2;18391:16;18385:4;18381:27;18377:36;18370:4;18361:6;18356:3;18352:16;18348:27;18345:69;18342:82;;;18417:5;;;;;;17844:671;:::o;18342:82::-;18433:57;18484:4;18475:6;18467;18463:19;18459:30;18453:4;18433:57;:::i;:::-;-1:-1:-1;18506:3:10;;17844:671;-1:-1:-1;;;;;17844:671:10:o;18520:131::-;-1:-1:-1;;;;;;18594:32:10;;18584:43;;18574:71;;18641:1;18638;18631:12
Swarm Source
ipfs://edf4dbf1a045f0c6b8b99b66e843089925e3a69ec53cf6b956f103e845ad6b32
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.