Polygon Sponsored slots available. Book your slot here!
ERC-1155
Overview
Max Total Supply
0 THCWP
Holders
339,177
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
THCWorldPass
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-03-04 */ ///////////// //// //// /////////// //// //// //// /// //// //// //// /// //// //////////////// /// //// //// //// /// //// //// //// /// //// //// //// /////////// //// //// ////////////// ///////////// //// //// //// //// //// //// //// //// //// //// //// //// //// //// //////////////// //// //// /////// //////////////// //// //// //// //// //// //// //// //// //// //// //// //// //// //// //// //// ///////////// ////////////// //// //// ///// ///////////// ////////////// //////////////// //// //// /// /// //// //// //// //// /// /// //// //// /// /// /// /// //// //// /////////////// ///////////// /////////// //////////////// /// /////// /// /// //// //// /// /// /// //// //// /// /// /// ////////////// //////////////// //By: JayyWETH //Twitter: https://www.twitter.com/jayyweth //www.hypemeup.io //The High Apes Club //Webiste: https://www.thehighapesclub.com //Discord: https://www.discord.com/invite/thac //Twitter: https://www.twitter.com/thehighapesclub // 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 (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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // 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/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @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 be 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; } // File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @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: balance query for the zero address"); 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 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: transfer caller is not 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(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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); _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); _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(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * 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(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); 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); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * 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); } /** * @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, "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 `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 _beforeTokenTransfer( 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; } } // File: THCWorldPass.sol pragma solidity ^0.8.7; contract THCWorldPass is ERC1155, Ownable { string public name; string public symbol; uint256 public constant royaltyPercent = 10; uint256 public cost = 1.00 ether; uint256 public mintingid = 1; uint256 public maxmint = 50; bool public paused = false; mapping (uint256 => string) private _uris; constructor() ERC1155("https://www.thehighapesclub.com/assets/nft/worldpass/{id}.json") { setName("The High Apes Club - World Pass"); setSymbol("THCWP"); _mint(msg.sender, mintingid, 100, ""); } function setName(string memory _name) public onlyOwner { name = _name; } function setSymbol(string memory _symbol) public onlyOwner { symbol = _symbol; } function uri(uint256 tokenId) override public view returns (string memory) { return( string(abi.encodePacked( "https://www.thehighapesclub.com/assets/nft/worldpass/", Strings.toString(tokenId), ".json" )) ); } function mint(address _to, uint256 _mintAmount) public payable { require(!paused); require(_mintAmount > 0); if (msg.sender != owner()) { require(balanceOf(_to,mintingid) < maxmint); require(msg.value >= cost * _mintAmount); } _mint(_to, mintingid, _mintAmount, ''); } function burn(address _to) public { require(_to == msg.sender); _burn(_to, mintingid, balanceOf(msg.sender,mintingid)); } //Only the THC Boss function setMintingID(uint256 _newMintingID) public onlyOwner { mintingid = _newMintingID; } function setMaxMint(uint256 _newMax) public onlyOwner { maxmint = _newMax; } function pause(bool _state) public onlyOwner { paused = _state; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setTokenUri(uint256 tokenId, string memory uriset) public onlyOwner { _uris[tokenId] = uriset; } function mintBatch(address[] memory _accountlist) public onlyOwner{ for(uint i = 0; i < _accountlist.length; i++) { _mint(_accountlist[i], mintingid, 1, ''); } } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxmint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accountlist","type":"address[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintingID","type":"uint256"}],"name":"setMintingID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uriset","type":"string"}],"name":"setTokenUri","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052670de0b6b3a7640000600655600160075560326008556009805460ff191690553480156200003157600080fd5b506040518060600160405280603e815260200162002b06603e91396200005781620000f5565b5062000063336200010e565b60408051808201909152601f81527f5468652048696768204170657320436c7562202d20576f726c642050617373006020820152620000a29062000160565b604080518082019091526005815264054484357560dc1b6020820152620000c990620001c4565b620000ef336007546064604051806020016040528060008152506200022460201b60201c565b62000871565b80516200010a9060029060208401906200058b565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620001af5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b4483398151915260448201526064015b60405180910390fd5b80516200010a9060049060208401906200058b565b6003546001600160a01b031633146200020f5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b448339815191526044820152606401620001a6565b80516200010a9060059060208401906200058b565b6001600160a01b038416620002865760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401620001a6565b33620002ac816000876200029a8862000340565b620002a58862000340565b5050505050565b6000848152602081815260408083206001600160a01b038916845290915281208054859290620002de90849062000710565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4620002a58160008787878762000396565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106200037d576200037d620007af565b602090810291909101015292915050565b505050505050565b620003b5846001600160a01b03166200057c60201b62000d7a1760201c565b156200038e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190620003f19089908990889088908890600401620006b4565b602060405180830381600087803b1580156200040c57600080fd5b505af19250505080156200043f575060408051601f3d908101601f191682019092526200043c9181019062000631565b60015b62000500576200044e620007c5565b806308c379a014156200048f575062000466620007e2565b8062000473575062000491565b8060405162461bcd60e51b8152600401620001a69190620006fb565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401620001a6565b6001600160e01b0319811663f23a6e6160e01b14620005735760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401620001a6565b50505050505050565b6001600160a01b03163b151590565b828054620005999062000737565b90600052602060002090601f016020900481019282620005bd576000855562000608565b82601f10620005d857805160ff191683800117855562000608565b8280016001018555821562000608579182015b8281111562000608578251825591602001919060010190620005eb565b50620006169291506200061a565b5090565b5b808211156200061657600081556001016200061b565b6000602082840312156200064457600080fd5b81516001600160e01b0319811681146200065d57600080fd5b9392505050565b6000815180845260005b818110156200068c576020818501810151868301820152016200066e565b818111156200069f576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090620006f09083018462000664565b979650505050505050565b6020815260006200065d602083018462000664565b600082198211156200073257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200074c57607f821691505b602082108114156200076e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715620007a857634e487b7160e01b600052604160045260246000fd5b6040525050565b634e487b7160e01b600052603260045260246000fd5b600060033d1115620007df5760046000803e5060005160e01c5b90565b600060443d1015620007f15790565b6040516003193d81016004833e81513d6001600160401b0380831160248401831017156200082157505050505090565b82850191508151818111156200083a5750505050505090565b843d8701016020828501011115620008555750505050505090565b620008666020828601018762000774565b509095945050505050565b61228580620008816000396000f3fe6080604052600436106101c15760003560e01c8063715018a6116100f75780639c4bbad511610095578063c47f002711610064578063c47f0027146104b8578063e985e9c5146104d8578063f242432a14610521578063f2fde38b1461054157600080fd5b80639c4bbad51461044d5780639f67756d14610463578063a22cb46514610478578063b84c82461461049857600080fd5b80638aa80ea5116100d15780638aa80ea5146103da5780638da5cb5b146103f0578063927f59ba1461041857806395d89b411461043857600080fd5b8063715018a614610385578063717916c21461039a57806389afcb44146103ba57600080fd5b80633ccfd60b116101645780634e1273f41161013e5780634e1273f4146102fe578063547520fe1461032b57806357f7789e1461034b5780635c975abb1461036b57600080fd5b80633ccfd60b146102c357806340c10f19146102cb57806344a0d68a146102de57600080fd5b806306fdde03116101a057806306fdde031461024b5780630e89341c1461026d57806313faede61461028d5780632eb2c2d6146102a357600080fd5b8062fdd58e146101c657806301ffc9a7146101f957806302329a2914610229575b600080fd5b3480156101d257600080fd5b506101e66101e1366004611b6f565b610561565b6040519081526020015b60405180910390f35b34801561020557600080fd5b50610219610214366004611c4d565b6105f8565b60405190151581526020016101f0565b34801561023557600080fd5b50610249610244366004611c32565b61064a565b005b34801561025757600080fd5b50610260610687565b6040516101f09190611ecf565b34801561027957600080fd5b50610260610288366004611cbc565b610715565b34801561029957600080fd5b506101e660065481565b3480156102af57600080fd5b506102496102be366004611a36565b610746565b6102496107dd565b6102496102d9366004611b6f565b61085f565b3480156102ea57600080fd5b506102496102f9366004611cbc565b6108e2565b34801561030a57600080fd5b5061031e610319366004611bce565b610911565b6040516101f09190611e8e565b34801561033757600080fd5b50610249610346366004611cbc565b610a3b565b34801561035757600080fd5b50610249610366366004611cd5565b610a6a565b34801561037757600080fd5b506009546102199060ff1681565b34801561039157600080fd5b50610249610ab8565b3480156103a657600080fd5b506102496103b5366004611cbc565b610aee565b3480156103c657600080fd5b506102496103d53660046119e1565b610b1d565b3480156103e657600080fd5b506101e660085481565b3480156103fc57600080fd5b506003546040516001600160a01b0390911681526020016101f0565b34801561042457600080fd5b50610249610433366004611b99565b610b4a565b34801561044457600080fd5b50610260610bc9565b34801561045957600080fd5b506101e660075481565b34801561046f57600080fd5b506101e6600a81565b34801561048457600080fd5b50610249610493366004611b45565b610bd6565b3480156104a457600080fd5b506102496104b3366004611c87565b610be1565b3480156104c457600080fd5b506102496104d3366004611c87565b610c1e565b3480156104e457600080fd5b506102196104f3366004611a03565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561052d57600080fd5b5061024961053c366004611ae0565b610c5b565b34801561054d57600080fd5b5061024961055c3660046119e1565b610ce2565b60006001600160a01b0383166105d25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061062957506001600160e01b031982166303a24d0760e21b145b8061064457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146106745760405162461bcd60e51b81526004016105c990611fb9565b6009805460ff1916911515919091179055565b60048054610694906120a4565b80601f01602080910402602001604051908101604052809291908181526020018280546106c0906120a4565b801561070d5780601f106106e25761010080835404028352916020019161070d565b820191906000526020600020905b8154815290600101906020018083116106f057829003601f168201915b505050505081565b606061072082610d89565b6040516020016107309190611d79565b6040516020818303038152906040529050919050565b6001600160a01b038516331480610762575061076285336104f3565b6107c95760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105c9565b6107d68585858585610e8f565b5050505050565b6003546001600160a01b031633146108075760405162461bcd60e51b81526004016105c990611fb9565b604051600090339047908381818185875af1925050503d8060008114610849576040519150601f19603f3d011682016040523d82523d6000602084013e61084e565b606091505b505090508061085c57600080fd5b50565b60095460ff161561086f57600080fd5b6000811161087c57600080fd5b6003546001600160a01b031633146108c15760085461089d83600754610561565b106108a757600080fd5b806006546108b5919061203e565b3410156108c157600080fd5b6108de82600754836040518060200160405280600081525061106c565b5050565b6003546001600160a01b0316331461090c5760405162461bcd60e51b81526004016105c990611fb9565b600655565b606081518351146109765760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016105c9565b6000835167ffffffffffffffff8111156109925761099261217d565b6040519080825280602002602001820160405280156109bb578160200160208202803683370190505b50905060005b8451811015610a3357610a068582815181106109df576109df612167565b60200260200101518583815181106109f9576109f9612167565b6020026020010151610561565b828281518110610a1857610a18612167565b6020908102919091010152610a2c8161210c565b90506109c1565b509392505050565b6003546001600160a01b03163314610a655760405162461bcd60e51b81526004016105c990611fb9565b600855565b6003546001600160a01b03163314610a945760405162461bcd60e51b81526004016105c990611fb9565b6000828152600a602090815260409091208251610ab3928401906117c0565b505050565b6003546001600160a01b03163314610ae25760405162461bcd60e51b81526004016105c990611fb9565b610aec6000611176565b565b6003546001600160a01b03163314610b185760405162461bcd60e51b81526004016105c990611fb9565b600755565b6001600160a01b0381163314610b3257600080fd5b61085c81600754610b4533600754610561565b6111c8565b6003546001600160a01b03163314610b745760405162461bcd60e51b81526004016105c990611fb9565b60005b81518110156108de57610bb7828281518110610b9557610b95612167565b602002602001015160075460016040518060200160405280600081525061106c565b80610bc18161210c565b915050610b77565b60058054610694906120a4565b6108de338383611342565b6003546001600160a01b03163314610c0b5760405162461bcd60e51b81526004016105c990611fb9565b80516108de9060059060208401906117c0565b6003546001600160a01b03163314610c485760405162461bcd60e51b81526004016105c990611fb9565b80516108de9060049060208401906117c0565b6001600160a01b038516331480610c775750610c7785336104f3565b610cd55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016105c9565b6107d68585858585611423565b6003546001600160a01b03163314610d0c5760405162461bcd60e51b81526004016105c990611fb9565b6001600160a01b038116610d715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c9565b61085c81611176565b6001600160a01b03163b151590565b606081610dad5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610dd75780610dc18161210c565b9150610dd09050600a8361202a565b9150610db1565b60008167ffffffffffffffff811115610df257610df261217d565b6040519080825280601f01601f191660200182016040528015610e1c576020820181803683370190505b5090505b8415610e8757610e3160018361205d565b9150610e3e600a86612127565b610e49906030612012565b60f81b818381518110610e5e57610e5e612167565b60200101906001600160f81b031916908160001a905350610e80600a8661202a565b9450610e20565b949350505050565b8151835114610ef15760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016105c9565b6001600160a01b038416610f175760405162461bcd60e51b81526004016105c990611f2a565b3360005b8451811015610ffe576000858281518110610f3857610f38612167565b602002602001015190506000858381518110610f5657610f56612167565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610fa65760405162461bcd60e51b81526004016105c990611f6f565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610fe3908490612012565b9250508190555050505080610ff79061210c565b9050610f1b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161104e929190611ea1565b60405180910390a4611064818787878787611540565b505050505050565b6001600160a01b0384166110cc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105c9565b336110e6816000876110dd886116ab565b6107d6886116ab565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611116908490612012565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107d6816000878787876116f6565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661122a5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016105c9565b3361125a8185600061123b876116ab565b611244876116ab565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156112d75760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016105c9565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b816001600160a01b0316836001600160a01b031614156113b65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016105c9565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166114495760405162461bcd60e51b81526004016105c990611f2a565b336114598187876110dd886116ab565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561149a5760405162461bcd60e51b81526004016105c990611f6f565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906114d7908490612012565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46115378288888888886116f6565b50505050505050565b6001600160a01b0384163b156110645760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115849089908990889088908890600401611deb565b602060405180830381600087803b15801561159e57600080fd5b505af19250505080156115ce575060408051601f3d908101601f191682019092526115cb91810190611c6a565b60015b61167b576115da612193565b806308c379a0141561161457506115ef6121af565b806115fa5750611616565b8060405162461bcd60e51b81526004016105c99190611ecf565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016105c9565b6001600160e01b0319811663bc197c8160e01b146115375760405162461bcd60e51b81526004016105c990611ee2565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116e5576116e5612167565b602090810291909101015292915050565b6001600160a01b0384163b156110645760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061173a9089908990889088908890600401611e49565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611c6a565b60015b611790576115da612193565b6001600160e01b0319811663f23a6e6160e01b146115375760405162461bcd60e51b81526004016105c990611ee2565b8280546117cc906120a4565b90600052602060002090601f0160209004810192826117ee5760008555611834565b82601f1061180757805160ff1916838001178555611834565b82800160010185558215611834579182015b82811115611834578251825591602001919060010190611819565b50611840929150611844565b5090565b5b808211156118405760008155600101611845565b80356001600160a01b038116811461187057600080fd5b919050565b600082601f83011261188657600080fd5b8135602061189382611fee565b6040516118a082826120df565b8381528281019150858301600585901b870184018810156118c057600080fd5b60005b858110156118e6576118d482611859565b845292840192908401906001016118c3565b5090979650505050505050565b600082601f83011261190457600080fd5b8135602061191182611fee565b60405161191e82826120df565b8381528281019150858301600585901b8701840188101561193e57600080fd5b60005b858110156118e657813584529284019290840190600101611941565b8035801515811461187057600080fd5b600082601f83011261197e57600080fd5b813567ffffffffffffffff8111156119985761199861217d565b6040516119af601f8301601f1916602001826120df565b8181528460208386010111156119c457600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156119f357600080fd5b6119fc82611859565b9392505050565b60008060408385031215611a1657600080fd5b611a1f83611859565b9150611a2d60208401611859565b90509250929050565b600080600080600060a08688031215611a4e57600080fd5b611a5786611859565b9450611a6560208701611859565b9350604086013567ffffffffffffffff80821115611a8257600080fd5b611a8e89838a016118f3565b94506060880135915080821115611aa457600080fd5b611ab089838a016118f3565b93506080880135915080821115611ac657600080fd5b50611ad38882890161196d565b9150509295509295909350565b600080600080600060a08688031215611af857600080fd5b611b0186611859565b9450611b0f60208701611859565b93506040860135925060608601359150608086013567ffffffffffffffff811115611b3957600080fd5b611ad38882890161196d565b60008060408385031215611b5857600080fd5b611b6183611859565b9150611a2d6020840161195d565b60008060408385031215611b8257600080fd5b611b8b83611859565b946020939093013593505050565b600060208284031215611bab57600080fd5b813567ffffffffffffffff811115611bc257600080fd5b610e8784828501611875565b60008060408385031215611be157600080fd5b823567ffffffffffffffff80821115611bf957600080fd5b611c0586838701611875565b93506020850135915080821115611c1b57600080fd5b50611c28858286016118f3565b9150509250929050565b600060208284031215611c4457600080fd5b6119fc8261195d565b600060208284031215611c5f57600080fd5b81356119fc81612239565b600060208284031215611c7c57600080fd5b81516119fc81612239565b600060208284031215611c9957600080fd5b813567ffffffffffffffff811115611cb057600080fd5b610e878482850161196d565b600060208284031215611cce57600080fd5b5035919050565b60008060408385031215611ce857600080fd5b82359150602083013567ffffffffffffffff811115611d0657600080fd5b611c288582860161196d565b600081518084526020808501945080840160005b83811015611d4257815187529582019590820190600101611d26565b509495945050505050565b60008151808452611d65816020860160208601612074565b601f01601f19169290920160200192915050565b7f68747470733a2f2f7777772e7468656869676861706573636c75622e636f6d2f8152746173736574732f6e66742f776f726c64706173732f60581b602082015260008251611dcf816035850160208701612074565b64173539b7b760d91b6035939091019283015250603a01919050565b6001600160a01b0386811682528516602082015260a060408201819052600090611e1790830186611d12565b8281036060840152611e298186611d12565b90508281036080840152611e3d8185611d4d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611e8390830184611d4d565b979650505050505050565b6020815260006119fc6020830184611d12565b604081526000611eb46040830185611d12565b8281036020840152611ec68185611d12565b95945050505050565b6020815260006119fc6020830184611d4d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156120085761200861217d565b5060051b60200190565b600082198211156120255761202561213b565b500190565b60008261203957612039612151565b500490565b60008160001904831182151516156120585761205861213b565b500290565b60008282101561206f5761206f61213b565b500390565b60005b8381101561208f578181015183820152602001612077565b8381111561209e576000848401525b50505050565b600181811c908216806120b857607f821691505b602082108114156120d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156121055761210561217d565b6040525050565b60006000198214156121205761212061213b565b5060010190565b60008261213657612136612151565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156121ac5760046000803e5060005160e01c5b90565b600060443d10156121bd5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156121ed57505050505090565b82850191508151818111156122055750505050505090565b843d870101602082850101111561221f5750505050505090565b61222e602082860101876120df565b509095945050505050565b6001600160e01b03198116811461085c57600080fdfea2646970667358221220dbd03080223e1dd4a04d0a677ec6f4ff6bc7c9864acff7390e73c87ef8691cbf64736f6c6343000807003368747470733a2f2f7777772e7468656869676861706573636c75622e636f6d2f6173736574732f6e66742f776f726c64706173732f7b69647d2e6a736f6e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101c15760003560e01c8063715018a6116100f75780639c4bbad511610095578063c47f002711610064578063c47f0027146104b8578063e985e9c5146104d8578063f242432a14610521578063f2fde38b1461054157600080fd5b80639c4bbad51461044d5780639f67756d14610463578063a22cb46514610478578063b84c82461461049857600080fd5b80638aa80ea5116100d15780638aa80ea5146103da5780638da5cb5b146103f0578063927f59ba1461041857806395d89b411461043857600080fd5b8063715018a614610385578063717916c21461039a57806389afcb44146103ba57600080fd5b80633ccfd60b116101645780634e1273f41161013e5780634e1273f4146102fe578063547520fe1461032b57806357f7789e1461034b5780635c975abb1461036b57600080fd5b80633ccfd60b146102c357806340c10f19146102cb57806344a0d68a146102de57600080fd5b806306fdde03116101a057806306fdde031461024b5780630e89341c1461026d57806313faede61461028d5780632eb2c2d6146102a357600080fd5b8062fdd58e146101c657806301ffc9a7146101f957806302329a2914610229575b600080fd5b3480156101d257600080fd5b506101e66101e1366004611b6f565b610561565b6040519081526020015b60405180910390f35b34801561020557600080fd5b50610219610214366004611c4d565b6105f8565b60405190151581526020016101f0565b34801561023557600080fd5b50610249610244366004611c32565b61064a565b005b34801561025757600080fd5b50610260610687565b6040516101f09190611ecf565b34801561027957600080fd5b50610260610288366004611cbc565b610715565b34801561029957600080fd5b506101e660065481565b3480156102af57600080fd5b506102496102be366004611a36565b610746565b6102496107dd565b6102496102d9366004611b6f565b61085f565b3480156102ea57600080fd5b506102496102f9366004611cbc565b6108e2565b34801561030a57600080fd5b5061031e610319366004611bce565b610911565b6040516101f09190611e8e565b34801561033757600080fd5b50610249610346366004611cbc565b610a3b565b34801561035757600080fd5b50610249610366366004611cd5565b610a6a565b34801561037757600080fd5b506009546102199060ff1681565b34801561039157600080fd5b50610249610ab8565b3480156103a657600080fd5b506102496103b5366004611cbc565b610aee565b3480156103c657600080fd5b506102496103d53660046119e1565b610b1d565b3480156103e657600080fd5b506101e660085481565b3480156103fc57600080fd5b506003546040516001600160a01b0390911681526020016101f0565b34801561042457600080fd5b50610249610433366004611b99565b610b4a565b34801561044457600080fd5b50610260610bc9565b34801561045957600080fd5b506101e660075481565b34801561046f57600080fd5b506101e6600a81565b34801561048457600080fd5b50610249610493366004611b45565b610bd6565b3480156104a457600080fd5b506102496104b3366004611c87565b610be1565b3480156104c457600080fd5b506102496104d3366004611c87565b610c1e565b3480156104e457600080fd5b506102196104f3366004611a03565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561052d57600080fd5b5061024961053c366004611ae0565b610c5b565b34801561054d57600080fd5b5061024961055c3660046119e1565b610ce2565b60006001600160a01b0383166105d25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061062957506001600160e01b031982166303a24d0760e21b145b8061064457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146106745760405162461bcd60e51b81526004016105c990611fb9565b6009805460ff1916911515919091179055565b60048054610694906120a4565b80601f01602080910402602001604051908101604052809291908181526020018280546106c0906120a4565b801561070d5780601f106106e25761010080835404028352916020019161070d565b820191906000526020600020905b8154815290600101906020018083116106f057829003601f168201915b505050505081565b606061072082610d89565b6040516020016107309190611d79565b6040516020818303038152906040529050919050565b6001600160a01b038516331480610762575061076285336104f3565b6107c95760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105c9565b6107d68585858585610e8f565b5050505050565b6003546001600160a01b031633146108075760405162461bcd60e51b81526004016105c990611fb9565b604051600090339047908381818185875af1925050503d8060008114610849576040519150601f19603f3d011682016040523d82523d6000602084013e61084e565b606091505b505090508061085c57600080fd5b50565b60095460ff161561086f57600080fd5b6000811161087c57600080fd5b6003546001600160a01b031633146108c15760085461089d83600754610561565b106108a757600080fd5b806006546108b5919061203e565b3410156108c157600080fd5b6108de82600754836040518060200160405280600081525061106c565b5050565b6003546001600160a01b0316331461090c5760405162461bcd60e51b81526004016105c990611fb9565b600655565b606081518351146109765760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016105c9565b6000835167ffffffffffffffff8111156109925761099261217d565b6040519080825280602002602001820160405280156109bb578160200160208202803683370190505b50905060005b8451811015610a3357610a068582815181106109df576109df612167565b60200260200101518583815181106109f9576109f9612167565b6020026020010151610561565b828281518110610a1857610a18612167565b6020908102919091010152610a2c8161210c565b90506109c1565b509392505050565b6003546001600160a01b03163314610a655760405162461bcd60e51b81526004016105c990611fb9565b600855565b6003546001600160a01b03163314610a945760405162461bcd60e51b81526004016105c990611fb9565b6000828152600a602090815260409091208251610ab3928401906117c0565b505050565b6003546001600160a01b03163314610ae25760405162461bcd60e51b81526004016105c990611fb9565b610aec6000611176565b565b6003546001600160a01b03163314610b185760405162461bcd60e51b81526004016105c990611fb9565b600755565b6001600160a01b0381163314610b3257600080fd5b61085c81600754610b4533600754610561565b6111c8565b6003546001600160a01b03163314610b745760405162461bcd60e51b81526004016105c990611fb9565b60005b81518110156108de57610bb7828281518110610b9557610b95612167565b602002602001015160075460016040518060200160405280600081525061106c565b80610bc18161210c565b915050610b77565b60058054610694906120a4565b6108de338383611342565b6003546001600160a01b03163314610c0b5760405162461bcd60e51b81526004016105c990611fb9565b80516108de9060059060208401906117c0565b6003546001600160a01b03163314610c485760405162461bcd60e51b81526004016105c990611fb9565b80516108de9060049060208401906117c0565b6001600160a01b038516331480610c775750610c7785336104f3565b610cd55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016105c9565b6107d68585858585611423565b6003546001600160a01b03163314610d0c5760405162461bcd60e51b81526004016105c990611fb9565b6001600160a01b038116610d715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c9565b61085c81611176565b6001600160a01b03163b151590565b606081610dad5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610dd75780610dc18161210c565b9150610dd09050600a8361202a565b9150610db1565b60008167ffffffffffffffff811115610df257610df261217d565b6040519080825280601f01601f191660200182016040528015610e1c576020820181803683370190505b5090505b8415610e8757610e3160018361205d565b9150610e3e600a86612127565b610e49906030612012565b60f81b818381518110610e5e57610e5e612167565b60200101906001600160f81b031916908160001a905350610e80600a8661202a565b9450610e20565b949350505050565b8151835114610ef15760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016105c9565b6001600160a01b038416610f175760405162461bcd60e51b81526004016105c990611f2a565b3360005b8451811015610ffe576000858281518110610f3857610f38612167565b602002602001015190506000858381518110610f5657610f56612167565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610fa65760405162461bcd60e51b81526004016105c990611f6f565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610fe3908490612012565b9250508190555050505080610ff79061210c565b9050610f1b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161104e929190611ea1565b60405180910390a4611064818787878787611540565b505050505050565b6001600160a01b0384166110cc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105c9565b336110e6816000876110dd886116ab565b6107d6886116ab565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611116908490612012565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107d6816000878787876116f6565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661122a5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016105c9565b3361125a8185600061123b876116ab565b611244876116ab565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156112d75760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016105c9565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b816001600160a01b0316836001600160a01b031614156113b65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016105c9565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166114495760405162461bcd60e51b81526004016105c990611f2a565b336114598187876110dd886116ab565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561149a5760405162461bcd60e51b81526004016105c990611f6f565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906114d7908490612012565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46115378288888888886116f6565b50505050505050565b6001600160a01b0384163b156110645760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115849089908990889088908890600401611deb565b602060405180830381600087803b15801561159e57600080fd5b505af19250505080156115ce575060408051601f3d908101601f191682019092526115cb91810190611c6a565b60015b61167b576115da612193565b806308c379a0141561161457506115ef6121af565b806115fa5750611616565b8060405162461bcd60e51b81526004016105c99190611ecf565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016105c9565b6001600160e01b0319811663bc197c8160e01b146115375760405162461bcd60e51b81526004016105c990611ee2565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116e5576116e5612167565b602090810291909101015292915050565b6001600160a01b0384163b156110645760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061173a9089908990889088908890600401611e49565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611c6a565b60015b611790576115da612193565b6001600160e01b0319811663f23a6e6160e01b146115375760405162461bcd60e51b81526004016105c990611ee2565b8280546117cc906120a4565b90600052602060002090601f0160209004810192826117ee5760008555611834565b82601f1061180757805160ff1916838001178555611834565b82800160010185558215611834579182015b82811115611834578251825591602001919060010190611819565b50611840929150611844565b5090565b5b808211156118405760008155600101611845565b80356001600160a01b038116811461187057600080fd5b919050565b600082601f83011261188657600080fd5b8135602061189382611fee565b6040516118a082826120df565b8381528281019150858301600585901b870184018810156118c057600080fd5b60005b858110156118e6576118d482611859565b845292840192908401906001016118c3565b5090979650505050505050565b600082601f83011261190457600080fd5b8135602061191182611fee565b60405161191e82826120df565b8381528281019150858301600585901b8701840188101561193e57600080fd5b60005b858110156118e657813584529284019290840190600101611941565b8035801515811461187057600080fd5b600082601f83011261197e57600080fd5b813567ffffffffffffffff8111156119985761199861217d565b6040516119af601f8301601f1916602001826120df565b8181528460208386010111156119c457600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156119f357600080fd5b6119fc82611859565b9392505050565b60008060408385031215611a1657600080fd5b611a1f83611859565b9150611a2d60208401611859565b90509250929050565b600080600080600060a08688031215611a4e57600080fd5b611a5786611859565b9450611a6560208701611859565b9350604086013567ffffffffffffffff80821115611a8257600080fd5b611a8e89838a016118f3565b94506060880135915080821115611aa457600080fd5b611ab089838a016118f3565b93506080880135915080821115611ac657600080fd5b50611ad38882890161196d565b9150509295509295909350565b600080600080600060a08688031215611af857600080fd5b611b0186611859565b9450611b0f60208701611859565b93506040860135925060608601359150608086013567ffffffffffffffff811115611b3957600080fd5b611ad38882890161196d565b60008060408385031215611b5857600080fd5b611b6183611859565b9150611a2d6020840161195d565b60008060408385031215611b8257600080fd5b611b8b83611859565b946020939093013593505050565b600060208284031215611bab57600080fd5b813567ffffffffffffffff811115611bc257600080fd5b610e8784828501611875565b60008060408385031215611be157600080fd5b823567ffffffffffffffff80821115611bf957600080fd5b611c0586838701611875565b93506020850135915080821115611c1b57600080fd5b50611c28858286016118f3565b9150509250929050565b600060208284031215611c4457600080fd5b6119fc8261195d565b600060208284031215611c5f57600080fd5b81356119fc81612239565b600060208284031215611c7c57600080fd5b81516119fc81612239565b600060208284031215611c9957600080fd5b813567ffffffffffffffff811115611cb057600080fd5b610e878482850161196d565b600060208284031215611cce57600080fd5b5035919050565b60008060408385031215611ce857600080fd5b82359150602083013567ffffffffffffffff811115611d0657600080fd5b611c288582860161196d565b600081518084526020808501945080840160005b83811015611d4257815187529582019590820190600101611d26565b509495945050505050565b60008151808452611d65816020860160208601612074565b601f01601f19169290920160200192915050565b7f68747470733a2f2f7777772e7468656869676861706573636c75622e636f6d2f8152746173736574732f6e66742f776f726c64706173732f60581b602082015260008251611dcf816035850160208701612074565b64173539b7b760d91b6035939091019283015250603a01919050565b6001600160a01b0386811682528516602082015260a060408201819052600090611e1790830186611d12565b8281036060840152611e298186611d12565b90508281036080840152611e3d8185611d4d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611e8390830184611d4d565b979650505050505050565b6020815260006119fc6020830184611d12565b604081526000611eb46040830185611d12565b8281036020840152611ec68185611d12565b95945050505050565b6020815260006119fc6020830184611d4d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156120085761200861217d565b5060051b60200190565b600082198211156120255761202561213b565b500190565b60008261203957612039612151565b500490565b60008160001904831182151516156120585761205861213b565b500290565b60008282101561206f5761206f61213b565b500390565b60005b8381101561208f578181015183820152602001612077565b8381111561209e576000848401525b50505050565b600181811c908216806120b857607f821691505b602082108114156120d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156121055761210561217d565b6040525050565b60006000198214156121205761212061213b565b5060010190565b60008261213657612136612151565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156121ac5760046000803e5060005160e01c5b90565b600060443d10156121bd5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156121ed57505050505090565b82850191508151818111156122055750505050505090565b843d870101602082850101111561221f5750505050505090565b61222e602082860101876120df565b509095945050505050565b6001600160e01b03198116811461085c57600080fdfea2646970667358221220dbd03080223e1dd4a04d0a677ec6f4ff6bc7c9864acff7390e73c87ef8691cbf64736f6c63430008070033
Deployed Bytecode Sourcemap
40825:2524:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27254:231;;;;;;;;;;-1:-1:-1;27254:231:0;;;;;:::i;:::-;;:::i;:::-;;;18060:25:1;;;18048:2;18033:18;27254:231:0;;;;;;;;26277:310;;;;;;;;;;-1:-1:-1;26277:310:0;;;;;:::i;:::-;;:::i;:::-;;;11567:14:1;;11560:22;11542:41;;11530:2;11515:18;26277:310:0;11402:187:1;42646:79:0;;;;;;;;;;-1:-1:-1;42646:79:0;;;;;:::i;:::-;;:::i;:::-;;40880:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41631:273::-;;;;;;;;;;-1:-1:-1;41631:273:0;;;;;:::i;:::-;;:::i;40996:32::-;;;;;;;;;;;;;;;;29193:442;;;;;;;;;;-1:-1:-1;29193:442:0;;;;;:::i;:::-;;:::i;43142:198::-;;;:::i;41913:339::-;;;;;;:::i;:::-;;:::i;42733:86::-;;;;;;;;;;-1:-1:-1;42733:86:0;;;;;:::i;:::-;;:::i;27651:524::-;;;;;;;;;;-1:-1:-1;27651:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42548:90::-;;;;;;;;;;-1:-1:-1;42548:90:0;;;;;:::i;:::-;;:::i;42827:114::-;;;;;;;;;;-1:-1:-1;42827:114:0;;;;;:::i;:::-;;:::i;41117:26::-;;;;;;;;;;-1:-1:-1;41117:26:0;;;;;;;;6483:103;;;;;;;;;;;;;:::i;42434:106::-;;;;;;;;;;-1:-1:-1;42434:106:0;;;;;:::i;:::-;;:::i;42260:139::-;;;;;;;;;;-1:-1:-1;42260:139:0;;;;;:::i;:::-;;:::i;41080:27::-;;;;;;;;;;;;;;;;5832:87;;;;;;;;;;-1:-1:-1;5905:6:0;;5832:87;;-1:-1:-1;;;;;5905:6:0;;;9208:51:1;;9196:2;9181:18;5832:87:0;9062:203:1;42949:185:0;;;;;;;;;;-1:-1:-1;42949:185:0;;;;;:::i;:::-;;:::i;40907:20::-;;;;;;;;;;;;;:::i;41041:28::-;;;;;;;;;;;;;;;;40940:43;;;;;;;;;;;;40981:2;40940:43;;28248:155;;;;;;;;;;-1:-1:-1;28248:155:0;;;;;:::i;:::-;;:::i;41534:89::-;;;;;;;;;;-1:-1:-1;41534:89:0;;;;;:::i;:::-;;:::i;41441:81::-;;;;;;;;;;-1:-1:-1;41441:81:0;;;;;:::i;:::-;;:::i;28475:168::-;;;;;;;;;;-1:-1:-1;28475:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;28598:27:0;;;28574:4;28598:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;28475:168;28715:401;;;;;;;;;;-1:-1:-1;28715:401:0;;;;;:::i;:::-;;:::i;6741:201::-;;;;;;;;;;-1:-1:-1;6741:201:0;;;;;:::i;:::-;;:::i;27254:231::-;27340:7;-1:-1:-1;;;;;27368:21:0;;27360:77;;;;-1:-1:-1;;;27360:77:0;;12850:2:1;27360:77:0;;;12832:21:1;12889:2;12869:18;;;12862:30;12928:34;12908:18;;;12901:62;-1:-1:-1;;;12979:18:1;;;12972:41;13030:19;;27360:77:0;;;;;;;;;-1:-1:-1;27455:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;27455:22:0;;;;;;;;;;;;27254:231::o;26277:310::-;26379:4;-1:-1:-1;;;;;;26416:41:0;;-1:-1:-1;;;26416:41:0;;:110;;-1:-1:-1;;;;;;;26474:52:0;;-1:-1:-1;;;26474:52:0;26416:110;:163;;;-1:-1:-1;;;;;;;;;;17694:40:0;;;26543:36;26396:183;26277:310;-1:-1:-1;;26277:310:0:o;42646:79::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;42704:6:::1;:15:::0;;-1:-1:-1;;42704:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42646:79::o;40880:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41631:273::-;41691:13;41834:25;41851:7;41834:16;:25::i;:::-;41738:150;;;;;;;;:::i;:::-;;;;;;;;;;;;;41713:184;;41631:273;;;:::o;29193:442::-;-1:-1:-1;;;;;29426:20:0;;4636:10;29426:20;;:60;;-1:-1:-1;29450:36:0;29467:4;4636:10;28475:168;:::i;29450:36::-;29404:160;;;;-1:-1:-1;;;29404:160:0;;14890:2:1;29404:160:0;;;14872:21:1;14929:2;14909:18;;;14902:30;14968:34;14948:18;;;14941:62;-1:-1:-1;;;15019:18:1;;;15012:48;15077:19;;29404:160:0;14688:414:1;29404:160:0;29575:52;29598:4;29604:2;29608:3;29613:7;29622:4;29575:22;:52::i;:::-;29193:442;;;;;:::o;43142:198::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;43219:86:::1;::::0;43201:12:::1;::::0;43227:10:::1;::::0;43267:21:::1;::::0;43201:12;43219:86;43201:12;43219:86;43267:21;43227:10;43219:86:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43200:105;;;43326:7;43318:16;;;::::0;::::1;;43187:153;43142:198::o:0;41913:339::-;41997:6;;;;41996:7;41988:16;;;;;;42034:1;42020:11;:15;42012:24;;;;;;5905:6;;-1:-1:-1;;;;;5905:6:0;42055:10;:21;42051:143;;42125:7;;42098:24;42108:3;42112:9;;42098;:24::i;:::-;:34;42090:43;;;;;;42173:11;42166:4;;:18;;;;:::i;:::-;42153:9;:31;;42145:40;;;;;;42208:38;42214:3;42219:9;;42230:11;42208:38;;;;;;;;;;;;:5;:38::i;:::-;41913:339;;:::o;42733:86::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;42798:4:::1;:15:::0;42733:86::o;27651:524::-;27807:16;27868:3;:10;27849:8;:15;:29;27841:83;;;;-1:-1:-1;;;27841:83:0;;16895:2:1;27841:83:0;;;16877:21:1;16934:2;16914:18;;;16907:30;16973:34;16953:18;;;16946:62;-1:-1:-1;;;17024:18:1;;;17017:39;17073:19;;27841:83:0;16693:405:1;27841:83:0;27937:30;27984:8;:15;27970:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27970:30:0;;27937:63;;28018:9;28013:122;28037:8;:15;28033:1;:19;28013:122;;;28093:30;28103:8;28112:1;28103:11;;;;;;;;:::i;:::-;;;;;;;28116:3;28120:1;28116:6;;;;;;;;:::i;:::-;;;;;;;28093:9;:30::i;:::-;28074:13;28088:1;28074:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;28054:3;;;:::i;:::-;;;28013:122;;;-1:-1:-1;28154:13:0;27651:524;-1:-1:-1;;;27651:524:0:o;42548:90::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;42615:7:::1;:17:::0;42548:90::o;42827:114::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;42912:14:::1;::::0;;;:5:::1;:14;::::0;;;;;;;:23;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;42827:114:::0;;:::o;6483:103::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;6548:30:::1;6575:1;6548:18;:30::i;:::-;6483:103::o:0;42434:106::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;42509:9:::1;:25:::0;42434:106::o;42260:139::-;-1:-1:-1;;;;;42313:17:0;;42320:10;42313:17;42305:26;;;;;;42339:54;42345:3;42350:9;;42361:31;42371:10;42382:9;;42361;:31::i;:::-;42339:5;:54::i;42949:185::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;43028:6:::1;43024:105;43044:12;:19;43040:1;:23;43024:105;;;43079:40;43085:12;43098:1;43085:15;;;;;;;;:::i;:::-;;;;;;;43102:9;;43113:1;43079:40;;;;;;;;;;;::::0;:5:::1;:40::i;:::-;43065:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43024:105;;40907:20:::0;;;;;;;:::i;28248:155::-;28343:52;4636:10;28376:8;28386;28343:18;:52::i;41534:89::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;41601:16;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;41441:81::-:0;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;41504:12;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;28715:401::-:0;-1:-1:-1;;;;;28923:20:0;;4636:10;28923:20;;:60;;-1:-1:-1;28947:36:0;28964:4;4636:10;28475:168;:::i;28947:36::-;28901:151;;;;-1:-1:-1;;;28901:151:0;;14074:2:1;28901:151:0;;;14056:21:1;14113:2;14093:18;;;14086:30;14152:34;14132:18;;;14125:62;-1:-1:-1;;;14203:18:1;;;14196:39;14252:19;;28901:151:0;13872:405:1;28901:151:0;29063:45;29081:4;29087:2;29091;29095:6;29103:4;29063:17;:45::i;6741:201::-;5905:6;;-1:-1:-1;;;;;5905:6:0;4636:10;6052:23;6044:68;;;;-1:-1:-1;;;6044:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6830:22:0;::::1;6822:73;;;::::0;-1:-1:-1;;;6822:73:0;;13262:2:1;6822:73:0::1;::::0;::::1;13244:21:1::0;13301:2;13281:18;;;13274:30;13340:34;13320:18;;;13313:62;-1:-1:-1;;;13391:18:1;;;13384:36;13437:19;;6822:73:0::1;13060:402:1::0;6822:73:0::1;6906:28;6925:8;6906:18;:28::i;8533:326::-:0;-1:-1:-1;;;;;8828:19:0;;:23;;;8533:326::o;2118:723::-;2174:13;2395:10;2391:53;;-1:-1:-1;;2422:10:0;;;;;;;;;;;;-1:-1:-1;;;2422:10:0;;;;;2118:723::o;2391:53::-;2469:5;2454:12;2510:78;2517:9;;2510:78;;2543:8;;;;:::i;:::-;;-1:-1:-1;2566:10:0;;-1:-1:-1;2574:2:0;2566:10;;:::i;:::-;;;2510:78;;;2598:19;2630:6;2620:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2620:17:0;;2598:39;;2648:154;2655:10;;2648:154;;2682:11;2692:1;2682:11;;:::i;:::-;;-1:-1:-1;2751:10:0;2759:2;2751:5;:10;:::i;:::-;2738:24;;:2;:24;:::i;:::-;2725:39;;2708:6;2715;2708:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2708:56:0;;;;;;;;-1:-1:-1;2779:11:0;2788:2;2779:11;;:::i;:::-;;;2648:154;;;2826:6;2118:723;-1:-1:-1;;;;2118:723:0:o;31277:1074::-;31504:7;:14;31490:3;:10;:28;31482:81;;;;-1:-1:-1;;;31482:81:0;;17305:2:1;31482:81:0;;;17287:21:1;17344:2;17324:18;;;17317:30;17383:34;17363:18;;;17356:62;-1:-1:-1;;;17434:18:1;;;17427:38;17482:19;;31482:81:0;17103:404:1;31482:81:0;-1:-1:-1;;;;;31582:16:0;;31574:66;;;;-1:-1:-1;;;31574:66:0;;;;;;;:::i;:::-;4636:10;31653:16;31770:421;31794:3;:10;31790:1;:14;31770:421;;;31826:10;31839:3;31843:1;31839:6;;;;;;;;:::i;:::-;;;;;;;31826:19;;31860:14;31877:7;31885:1;31877:10;;;;;;;;:::i;:::-;;;;;;;;;;;;31904:19;31926:13;;;;;;;;;;-1:-1:-1;;;;;31926:19:0;;;;;;;;;;;;31877:10;;-1:-1:-1;31968:21:0;;;;31960:76;;;;-1:-1:-1;;;31960:76:0;;;;;;;:::i;:::-;32080:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32080:19:0;;;;;;;;;;32102:20;;;32080:42;;32152:17;;;;;;;:27;;32102:20;;32080:9;32152:27;;32102:20;;32152:27;:::i;:::-;;;;;;;;31811:380;;;31806:3;;;;:::i;:::-;;;31770:421;;;;32238:2;-1:-1:-1;;;;;32208:47:0;32232:4;-1:-1:-1;;;;;32208:47:0;32222:8;-1:-1:-1;;;;;32208:47:0;;32242:3;32247:7;32208:47;;;;;;;:::i;:::-;;;;;;;;32268:75;32304:8;32314:4;32320:2;32324:3;32329:7;32338:4;32268:35;:75::i;:::-;31471:880;31277:1074;;;;;:::o;33669:569::-;-1:-1:-1;;;;;33822:16:0;;33814:62;;;;-1:-1:-1;;;33814:62:0;;17714:2:1;33814:62:0;;;17696:21:1;17753:2;17733:18;;;17726:30;17792:34;17772:18;;;17765:62;-1:-1:-1;;;17843:18:1;;;17836:31;17884:19;;33814:62:0;17512:397:1;33814:62:0;4636:10;33933:102;4636:10;33889:16;33976:2;33980:21;33998:2;33980:17;:21::i;:::-;34003:25;34021:6;34003:17;:25::i;33933:102::-;34048:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34048:17:0;;;;;;;;;:27;;34069:6;;34048:9;:27;;34069:6;;34048:27;:::i;:::-;;;;-1:-1:-1;;34091:52:0;;;18270:25:1;;;18326:2;18311:18;;18304:34;;;-1:-1:-1;;;;;34091:52:0;;;;34124:1;;34091:52;;;;;;18243:18:1;34091:52:0;;;;;;;34156:74;34187:8;34205:1;34209:2;34213;34217:6;34225:4;34156:30;:74::i;7102:191::-;7195:6;;;-1:-1:-1;;;;;7212:17:0;;;-1:-1:-1;;;;;;7212:17:0;;;;;;;7245:40;;7195:6;;;7212:17;7195:6;;7245:40;;7176:16;;7245:40;7165:128;7102:191;:::o;35579:648::-;-1:-1:-1;;;;;35706:18:0;;35698:66;;;;-1:-1:-1;;;35698:66:0;;15309:2:1;35698:66:0;;;15291:21:1;15348:2;15328:18;;;15321:30;15387:34;15367:18;;;15360:62;-1:-1:-1;;;15438:18:1;;;15431:33;15481:19;;35698:66:0;15107:399:1;35698:66:0;4636:10;35821:102;4636:10;35852:4;35777:16;35870:21;35888:2;35870:17;:21::i;:::-;35893:25;35911:6;35893:17;:25::i;:::-;-1:-1:-1;;35821:102:0;;;;;;;;;-1:-1:-1;35821:102:0;;-1:-1:-1;;;31277:1074:0;35821:102;35936:19;35958:13;;;;;;;;;;;-1:-1:-1;;;;;35958:19:0;;;;;;;;;;35996:21;;;;35988:70;;;;-1:-1:-1;;;35988:70:0;;13669:2:1;35988:70:0;;;13651:21:1;13708:2;13688:18;;;13681:30;13747:34;13727:18;;;13720:62;-1:-1:-1;;;13798:18:1;;;13791:34;13842:19;;35988:70:0;13467:400:1;35988:70:0;36094:9;:13;;;;;;;;;;;-1:-1:-1;;;;;36094:19:0;;;;;;;;;;;;36116:20;;;36094:42;;36165:54;;18270:25:1;;;18311:18;;;18304:34;;;36094:19:0;;36165:54;;;;;;18243:18:1;36165:54:0;;;;;;;35687:540;;35579:648;;;:::o;37463:331::-;37618:8;-1:-1:-1;;;;;37609:17:0;:5;-1:-1:-1;;;;;37609:17:0;;;37601:71;;;;-1:-1:-1;;;37601:71:0;;16485:2:1;37601:71:0;;;16467:21:1;16524:2;16504:18;;;16497:30;16563:34;16543:18;;;16536:62;-1:-1:-1;;;16614:18:1;;;16607:39;16663:19;;37601:71:0;16283:405:1;37601:71:0;-1:-1:-1;;;;;37683:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37683:46:0;;;;;;;;;;37745:41;;11542::1;;;37745::0;;11515:18:1;37745:41:0;;;;;;;37463:331;;;:::o;30099:820::-;-1:-1:-1;;;;;30287:16:0;;30279:66;;;;-1:-1:-1;;;30279:66:0;;;;;;;:::i;:::-;4636:10;30402:96;4636:10;30433:4;30439:2;30443:21;30461:2;30443:17;:21::i;30402:96::-;30511:19;30533:13;;;;;;;;;;;-1:-1:-1;;;;;30533:19:0;;;;;;;;;;30571:21;;;;30563:76;;;;-1:-1:-1;;;30563:76:0;;;;;;;:::i;:::-;30675:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30675:19:0;;;;;;;;;;30697:20;;;30675:42;;30739:17;;;;;;;:27;;30697:20;;30675:9;30739:27;;30697:20;;30739:27;:::i;:::-;;;;-1:-1:-1;;30784:46:0;;;18270:25:1;;;18326:2;18311:18;;18304:34;;;-1:-1:-1;;;;;30784:46:0;;;;;;;;;;;;;;18243:18:1;30784:46:0;;;;;;;30843:68;30874:8;30884:4;30890:2;30894;30898:6;30906:4;30843:30;:68::i;:::-;30268:651;;30099:820;;;;;:::o;39731:813::-;-1:-1:-1;;;;;39971:13:0;;8828:19;:23;39967:570;;40007:79;;-1:-1:-1;;;40007:79:0;;-1:-1:-1;;;;;40007:43:0;;;;;:79;;40051:8;;40061:4;;40067:3;;40072:7;;40081:4;;40007:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40007:79:0;;;;;;;;-1:-1:-1;;40007:79:0;;;;;;;;;;;;:::i;:::-;;;40003:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;40399:6;40392:14;;-1:-1:-1;;;40392:14:0;;;;;;;;:::i;40003:523::-;;;40448:62;;-1:-1:-1;;;40448:62:0;;12020:2:1;40448:62:0;;;12002:21:1;12059:2;12039:18;;;12032:30;12098:34;12078:18;;;12071:62;-1:-1:-1;;;12149:18:1;;;12142:50;12209:19;;40448:62:0;11818:416:1;40003:523:0;-1:-1:-1;;;;;;40168:60:0;;-1:-1:-1;;;40168:60:0;40164:159;;40253:50;;-1:-1:-1;;;40253:50:0;;;;;;;:::i;40552:198::-;40672:16;;;40686:1;40672:16;;;;;;;;;40618;;40647:22;;40672:16;;;;;;;;;;;;-1:-1:-1;40672:16:0;40647:41;;40710:7;40699:5;40705:1;40699:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;40737:5;40552:198;-1:-1:-1;;40552:198:0:o;38979:744::-;-1:-1:-1;;;;;39194:13:0;;8828:19;:23;39190:526;;39230:72;;-1:-1:-1;;;39230:72:0;;-1:-1:-1;;;;;39230:38:0;;;;;:72;;39269:8;;39279:4;;39285:2;;39289:6;;39297:4;;39230:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39230:72:0;;;;;;;;-1:-1:-1;;39230:72:0;;;;;;;;;;;;:::i;:::-;;;39226:479;;;;:::i;:::-;-1:-1:-1;;;;;;39352:55:0;;-1:-1:-1;;;39352:55:0;39348:154;;39432:50;;-1:-1:-1;;;39432:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:741::-;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:1;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:1;;;702:1;699;692:12;645:61;724:1;734:169;748:2;745:1;742:9;734:169;;;805:23;824:3;805:23;:::i;:::-;793:36;;849:12;;;;881;;;;766:1;759:9;734:169;;;-1:-1:-1;921:6:1;;192:741;-1:-1:-1;;;;;;;192:741:1:o;938:735::-;992:5;1045:3;1038:4;1030:6;1026:17;1022:27;1012:55;;1063:1;1060;1053:12;1012:55;1099:6;1086:20;1125:4;1148:43;1188:2;1148:43;:::i;:::-;1220:2;1214:9;1232:31;1260:2;1252:6;1232:31;:::i;:::-;1298:18;;;1332:15;;;;-1:-1:-1;1367:15:1;;;1417:1;1413:10;;;1401:23;;1397:32;;1394:41;-1:-1:-1;1391:61:1;;;1448:1;1445;1438:12;1391:61;1470:1;1480:163;1494:2;1491:1;1488:9;1480:163;;;1551:17;;1539:30;;1589:12;;;;1621;;;;1512:1;1505:9;1480:163;;1678:160;1743:20;;1799:13;;1792:21;1782:32;;1772:60;;1828:1;1825;1818:12;1843:555;1885:5;1938:3;1931:4;1923:6;1919:17;1915:27;1905:55;;1956:1;1953;1946:12;1905:55;1992:6;1979:20;2018:18;2014:2;2011:26;2008:52;;;2040:18;;:::i;:::-;2089:2;2083:9;2101:67;2156:2;2137:13;;-1:-1:-1;;2133:27:1;2162:4;2129:38;2083:9;2101:67;:::i;:::-;2192:2;2184:6;2177:18;2238:3;2231:4;2226:2;2218:6;2214:15;2210:26;2207:35;2204:55;;;2255:1;2252;2245:12;2204:55;2319:2;2312:4;2304:6;2300:17;2293:4;2285:6;2281:17;2268:54;2366:1;2342:15;;;2359:4;2338:26;2331:37;;;;2346:6;1843:555;-1:-1:-1;;;1843:555:1:o;2403:186::-;2462:6;2515:2;2503:9;2494:7;2490:23;2486:32;2483:52;;;2531:1;2528;2521:12;2483:52;2554:29;2573:9;2554:29;:::i;:::-;2544:39;2403:186;-1:-1:-1;;;2403:186:1:o;2594:260::-;2662:6;2670;2723:2;2711:9;2702:7;2698:23;2694:32;2691:52;;;2739:1;2736;2729:12;2691:52;2762:29;2781:9;2762:29;:::i;:::-;2752:39;;2810:38;2844:2;2833:9;2829:18;2810:38;:::i;:::-;2800:48;;2594:260;;;;;:::o;2859:943::-;3013:6;3021;3029;3037;3045;3098:3;3086:9;3077:7;3073:23;3069:33;3066:53;;;3115:1;3112;3105:12;3066:53;3138:29;3157:9;3138:29;:::i;:::-;3128:39;;3186:38;3220:2;3209:9;3205:18;3186:38;:::i;:::-;3176:48;;3275:2;3264:9;3260:18;3247:32;3298:18;3339:2;3331:6;3328:14;3325:34;;;3355:1;3352;3345:12;3325:34;3378:61;3431:7;3422:6;3411:9;3407:22;3378:61;:::i;:::-;3368:71;;3492:2;3481:9;3477:18;3464:32;3448:48;;3521:2;3511:8;3508:16;3505:36;;;3537:1;3534;3527:12;3505:36;3560:63;3615:7;3604:8;3593:9;3589:24;3560:63;:::i;:::-;3550:73;;3676:3;3665:9;3661:19;3648:33;3632:49;;3706:2;3696:8;3693:16;3690:36;;;3722:1;3719;3712:12;3690:36;;3745:51;3788:7;3777:8;3766:9;3762:24;3745:51;:::i;:::-;3735:61;;;2859:943;;;;;;;;:::o;3807:606::-;3911:6;3919;3927;3935;3943;3996:3;3984:9;3975:7;3971:23;3967:33;3964:53;;;4013:1;4010;4003:12;3964:53;4036:29;4055:9;4036:29;:::i;:::-;4026:39;;4084:38;4118:2;4107:9;4103:18;4084:38;:::i;:::-;4074:48;;4169:2;4158:9;4154:18;4141:32;4131:42;;4220:2;4209:9;4205:18;4192:32;4182:42;;4275:3;4264:9;4260:19;4247:33;4303:18;4295:6;4292:30;4289:50;;;4335:1;4332;4325:12;4289:50;4358:49;4399:7;4390:6;4379:9;4375:22;4358:49;:::i;4418:254::-;4483:6;4491;4544:2;4532:9;4523:7;4519:23;4515:32;4512:52;;;4560:1;4557;4550:12;4512:52;4583:29;4602:9;4583:29;:::i;:::-;4573:39;;4631:35;4662:2;4651:9;4647:18;4631:35;:::i;4677:254::-;4745:6;4753;4806:2;4794:9;4785:7;4781:23;4777:32;4774:52;;;4822:1;4819;4812:12;4774:52;4845:29;4864:9;4845:29;:::i;:::-;4835:39;4921:2;4906:18;;;;4893:32;;-1:-1:-1;;;4677:254:1:o;4936:348::-;5020:6;5073:2;5061:9;5052:7;5048:23;5044:32;5041:52;;;5089:1;5086;5079:12;5041:52;5129:9;5116:23;5162:18;5154:6;5151:30;5148:50;;;5194:1;5191;5184:12;5148:50;5217:61;5270:7;5261:6;5250:9;5246:22;5217:61;:::i;5289:595::-;5407:6;5415;5468:2;5456:9;5447:7;5443:23;5439:32;5436:52;;;5484:1;5481;5474:12;5436:52;5524:9;5511:23;5553:18;5594:2;5586:6;5583:14;5580:34;;;5610:1;5607;5600:12;5580:34;5633:61;5686:7;5677:6;5666:9;5662:22;5633:61;:::i;:::-;5623:71;;5747:2;5736:9;5732:18;5719:32;5703:48;;5776:2;5766:8;5763:16;5760:36;;;5792:1;5789;5782:12;5760:36;;5815:63;5870:7;5859:8;5848:9;5844:24;5815:63;:::i;:::-;5805:73;;;5289:595;;;;;:::o;5889:180::-;5945:6;5998:2;5986:9;5977:7;5973:23;5969:32;5966:52;;;6014:1;6011;6004:12;5966:52;6037:26;6053:9;6037:26;:::i;6074:245::-;6132:6;6185:2;6173:9;6164:7;6160:23;6156:32;6153:52;;;6201:1;6198;6191:12;6153:52;6240:9;6227:23;6259:30;6283:5;6259:30;:::i;6324:249::-;6393:6;6446:2;6434:9;6425:7;6421:23;6417:32;6414:52;;;6462:1;6459;6452:12;6414:52;6494:9;6488:16;6513:30;6537:5;6513:30;:::i;6578:321::-;6647:6;6700:2;6688:9;6679:7;6675:23;6671:32;6668:52;;;6716:1;6713;6706:12;6668:52;6756:9;6743:23;6789:18;6781:6;6778:30;6775:50;;;6821:1;6818;6811:12;6775:50;6844:49;6885:7;6876:6;6865:9;6861:22;6844:49;:::i;6904:180::-;6963:6;7016:2;7004:9;6995:7;6991:23;6987:32;6984:52;;;7032:1;7029;7022:12;6984:52;-1:-1:-1;7055:23:1;;6904:180;-1:-1:-1;6904:180:1:o;7089:389::-;7167:6;7175;7228:2;7216:9;7207:7;7203:23;7199:32;7196:52;;;7244:1;7241;7234:12;7196:52;7280:9;7267:23;7257:33;;7341:2;7330:9;7326:18;7313:32;7368:18;7360:6;7357:30;7354:50;;;7400:1;7397;7390:12;7354:50;7423:49;7464:7;7455:6;7444:9;7440:22;7423:49;:::i;7483:435::-;7536:3;7574:5;7568:12;7601:6;7596:3;7589:19;7627:4;7656:2;7651:3;7647:12;7640:19;;7693:2;7686:5;7682:14;7714:1;7724:169;7738:6;7735:1;7732:13;7724:169;;;7799:13;;7787:26;;7833:12;;;;7868:15;;;;7760:1;7753:9;7724:169;;;-1:-1:-1;7909:3:1;;7483:435;-1:-1:-1;;;;;7483:435:1:o;7923:257::-;7964:3;8002:5;7996:12;8029:6;8024:3;8017:19;8045:63;8101:6;8094:4;8089:3;8085:14;8078:4;8071:5;8067:16;8045:63;:::i;:::-;8162:2;8141:15;-1:-1:-1;;8137:29:1;8128:39;;;;8169:4;8124:50;;7923:257;-1:-1:-1;;7923:257:1:o;8185:662::-;8548:34;8543:3;8536:47;-1:-1:-1;;;8608:2:1;8603:3;8599:12;8592:45;8518:3;8666:6;8660:13;8682:60;8735:6;8730:2;8725:3;8721:12;8716:2;8708:6;8704:15;8682:60;:::i;:::-;-1:-1:-1;;;8801:2:1;8761:16;;;;8793:11;;;8786:28;-1:-1:-1;8838:2:1;8830:11;;8185:662;-1:-1:-1;8185:662:1:o;9270:826::-;-1:-1:-1;;;;;9667:15:1;;;9649:34;;9719:15;;9714:2;9699:18;;9692:43;9629:3;9766:2;9751:18;;9744:31;;;9592:4;;9798:57;;9835:19;;9827:6;9798:57;:::i;:::-;9903:9;9895:6;9891:22;9886:2;9875:9;9871:18;9864:50;9937:44;9974:6;9966;9937:44;:::i;:::-;9923:58;;10030:9;10022:6;10018:22;10012:3;10001:9;9997:19;9990:51;10058:32;10083:6;10075;10058:32;:::i;:::-;10050:40;9270:826;-1:-1:-1;;;;;;;;9270:826:1:o;10101:560::-;-1:-1:-1;;;;;10398:15:1;;;10380:34;;10450:15;;10445:2;10430:18;;10423:43;10497:2;10482:18;;10475:34;;;10540:2;10525:18;;10518:34;;;10360:3;10583;10568:19;;10561:32;;;10323:4;;10610:45;;10635:19;;10627:6;10610:45;:::i;:::-;10602:53;10101:560;-1:-1:-1;;;;;;;10101:560:1:o;10666:261::-;10845:2;10834:9;10827:21;10808:4;10865:56;10917:2;10906:9;10902:18;10894:6;10865:56;:::i;10932:465::-;11189:2;11178:9;11171:21;11152:4;11215:56;11267:2;11256:9;11252:18;11244:6;11215:56;:::i;:::-;11319:9;11311:6;11307:22;11302:2;11291:9;11287:18;11280:50;11347:44;11384:6;11376;11347:44;:::i;:::-;11339:52;10932:465;-1:-1:-1;;;;;10932:465:1:o;11594:219::-;11743:2;11732:9;11725:21;11706:4;11763:44;11803:2;11792:9;11788:18;11780:6;11763:44;:::i;12239:404::-;12441:2;12423:21;;;12480:2;12460:18;;;12453:30;12519:34;12514:2;12499:18;;12492:62;-1:-1:-1;;;12585:2:1;12570:18;;12563:38;12633:3;12618:19;;12239:404::o;14282:401::-;14484:2;14466:21;;;14523:2;14503:18;;;14496:30;14562:34;14557:2;14542:18;;14535:62;-1:-1:-1;;;14628:2:1;14613:18;;14606:35;14673:3;14658:19;;14282:401::o;15511:406::-;15713:2;15695:21;;;15752:2;15732:18;;;15725:30;15791:34;15786:2;15771:18;;15764:62;-1:-1:-1;;;15857:2:1;15842:18;;15835:40;15907:3;15892:19;;15511:406::o;15922:356::-;16124:2;16106:21;;;16143:18;;;16136:30;16202:34;16197:2;16182:18;;16175:62;16269:2;16254:18;;15922:356::o;18349:183::-;18409:4;18442:18;18434:6;18431:30;18428:56;;;18464:18;;:::i;:::-;-1:-1:-1;18509:1:1;18505:14;18521:4;18501:25;;18349:183::o;18537:128::-;18577:3;18608:1;18604:6;18601:1;18598:13;18595:39;;;18614:18;;:::i;:::-;-1:-1:-1;18650:9:1;;18537:128::o;18670:120::-;18710:1;18736;18726:35;;18741:18;;:::i;:::-;-1:-1:-1;18775:9:1;;18670:120::o;18795:168::-;18835:7;18901:1;18897;18893:6;18889:14;18886:1;18883:21;18878:1;18871:9;18864:17;18860:45;18857:71;;;18908:18;;:::i;:::-;-1:-1:-1;18948:9:1;;18795:168::o;18968:125::-;19008:4;19036:1;19033;19030:8;19027:34;;;19041:18;;:::i;:::-;-1:-1:-1;19078:9:1;;18968:125::o;19098:258::-;19170:1;19180:113;19194:6;19191:1;19188:13;19180:113;;;19270:11;;;19264:18;19251:11;;;19244:39;19216:2;19209:10;19180:113;;;19311:6;19308:1;19305:13;19302:48;;;19346:1;19337:6;19332:3;19328:16;19321:27;19302:48;;19098:258;;;:::o;19361:380::-;19440:1;19436:12;;;;19483;;;19504:61;;19558:4;19550:6;19546:17;19536:27;;19504:61;19611:2;19603:6;19600:14;19580:18;19577:38;19574:161;;;19657:10;19652:3;19648:20;19645:1;19638:31;19692:4;19689:1;19682:15;19720:4;19717:1;19710:15;19574:161;;19361:380;;;:::o;19746:249::-;19856:2;19837:13;;-1:-1:-1;;19833:27:1;19821:40;;19891:18;19876:34;;19912:22;;;19873:62;19870:88;;;19938:18;;:::i;:::-;19974:2;19967:22;-1:-1:-1;;19746:249:1:o;20000:135::-;20039:3;-1:-1:-1;;20060:17:1;;20057:43;;;20080:18;;:::i;:::-;-1:-1:-1;20127:1:1;20116:13;;20000:135::o;20140:112::-;20172:1;20198;20188:35;;20203:18;;:::i;:::-;-1:-1:-1;20237:9:1;;20140:112::o;20257:127::-;20318:10;20313:3;20309:20;20306:1;20299:31;20349:4;20346:1;20339:15;20373:4;20370:1;20363:15;20389:127;20450:10;20445:3;20441:20;20438:1;20431:31;20481:4;20478:1;20471:15;20505:4;20502:1;20495:15;20521:127;20582:10;20577:3;20573:20;20570:1;20563:31;20613:4;20610:1;20603:15;20637:4;20634:1;20627:15;20653:127;20714:10;20709:3;20705:20;20702:1;20695:31;20745:4;20742:1;20735:15;20769:4;20766:1;20759:15;20785:179;20820:3;20862:1;20844:16;20841:23;20838:120;;;20908:1;20905;20902;20887:23;-1:-1:-1;20945:1:1;20939:8;20934:3;20930:18;20838:120;20785:179;:::o;20969:671::-;21008:3;21050:4;21032:16;21029:26;21026:39;;;20969:671;:::o;21026:39::-;21092:2;21086:9;-1:-1:-1;;21157:16:1;21153:25;;21150:1;21086:9;21129:50;21208:4;21202:11;21232:16;21267:18;21338:2;21331:4;21323:6;21319:17;21316:25;21311:2;21303:6;21300:14;21297:45;21294:58;;;21345:5;;;;;20969:671;:::o;21294:58::-;21382:6;21376:4;21372:17;21361:28;;21418:3;21412:10;21445:2;21437:6;21434:14;21431:27;;;21451:5;;;;;;20969:671;:::o;21431:27::-;21535:2;21516:16;21510:4;21506:27;21502:36;21495:4;21486:6;21481:3;21477:16;21473:27;21470:69;21467:82;;;21542:5;;;;;;20969:671;:::o;21467:82::-;21558:57;21609:4;21600:6;21592;21588:19;21584:30;21578:4;21558:57;:::i;:::-;-1:-1:-1;21631:3:1;;20969:671;-1:-1:-1;;;;;20969:671:1:o;21645:131::-;-1:-1:-1;;;;;;21719:32:1;;21709:43;;21699:71;;21766:1;21763;21756:12
Swarm Source
ipfs://dbd03080223e1dd4a04d0a677ec6f4ff6bc7c9864acff7390e73c87ef8691cbf
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.