ERC-721
Overview
Max Total Supply
10,000 CRAT
Holders
652
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
59 CRATLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cryptocrats
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-03 */ // 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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/Cryptocrats.sol pragma solidity ^0.8.10; contract Cryptocrats is ERC721A, Ownable { uint256 public constant MAX_SUPPLY = 10000; uint256 public constant MAX_PER_TXN = 10; uint256 public constant MAX_PER_WALLET = 50; bool public isSaleActive; string private _baseTokenURI; constructor() ERC721A("Cryptocrats", "CRAT") { isSaleActive = false; } function setBaseURI(string memory newBaseURI) external onlyOwner { _baseTokenURI = newBaseURI; } function toggleSaleActive() external onlyOwner { isSaleActive = !isSaleActive; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function freeMint(uint256 quantity) external payable { require(isSaleActive, "Sale is not active"); require(quantity <= MAX_PER_TXN, "Exceeded max mints per transaction"); require(quantity + balanceOf(msg.sender) <= MAX_PER_WALLET, "Exceeded max mints per wallet"); require(quantity + totalSupply() <= MAX_SUPPLY, "Exceeded max supply"); _safeMint(msg.sender, quantity); } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Withdrawal failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f43727970746f63726174730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4352415400000000000000000000000000000000000000000000000000000000815250816001908051906020019062000096929190620001c1565b508060029080519060200190620000af929190620001c1565b505050620000d2620000c6620000f360201b60201c565b620000fb60201b60201c565b6000600760146101000a81548160ff021916908315150217905550620002d6565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf90620002a0565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b957607f821691505b60208210811415620002d057620002cf62000271565b5b50919050565b6137ee80620002e66000396000f3fe60806040526004361061019c5760003560e01c806351b96d92116100ec5780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde14610595578063c87b56dd146105be578063e985e9c5146105fb578063f2fde38b146106385761019c565b80638da5cb5b1461051657806395d89b4114610541578063a22cb4651461056c5761019c565b80636352211e116100c65780636352211e1461046957806370a08231146104a6578063715018a6146104e35780637c928fe9146104fa5761019c565b806351b96d92146103ea57806355f804b314610415578063564566a81461043e5761019c565b806323b872dd1161015957806332cb6b0c1161013357806332cb6b0c146103425780633ccfd60b1461036d57806342842e0e146103845780634f6ccce7146103ad5761019c565b806323b872dd146102c55780632f745c59146102ee5780633100a5351461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780630f2cdd6c1461026f57806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612a8b565b610661565b6040516101d59190612ad3565b60405180910390f35b3480156101ea57600080fd5b506101f36107ab565b6040516102009190612b87565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612bdf565b61083d565b60405161023d9190612c4d565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612c94565b6108b9565b005b34801561027b57600080fd5b506102846109c4565b6040516102919190612ce3565b60405180910390f35b3480156102a657600080fd5b506102af6109c9565b6040516102bc9190612ce3565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612cfe565b610a1e565b005b3480156102fa57600080fd5b5061031560048036038101906103109190612c94565b610a2e565b6040516103229190612ce3565b60405180910390f35b34801561033757600080fd5b50610340610c35565b005b34801561034e57600080fd5b50610357610cdd565b6040516103649190612ce3565b60405180910390f35b34801561037957600080fd5b50610382610ce3565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612cfe565b610e0e565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612bdf565b610e2e565b6040516103e19190612ce3565b60405180910390f35b3480156103f657600080fd5b506103ff610f9f565b60405161040c9190612ce3565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612e86565b610fa4565b005b34801561044a57600080fd5b5061045361103a565b6040516104609190612ad3565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612bdf565b61104d565b60405161049d9190612c4d565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612ecf565b611063565b6040516104da9190612ce3565b60405180910390f35b3480156104ef57600080fd5b506104f8611133565b005b610514600480360381019061050f9190612bdf565b6111bb565b005b34801561052257600080fd5b5061052b611309565b6040516105389190612c4d565b60405180910390f35b34801561054d57600080fd5b50610556611333565b6040516105639190612b87565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612f28565b6113c5565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190613009565b61153d565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190612bdf565b611590565b6040516105f29190612b87565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061308c565b61162f565b60405161062f9190612ad3565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612ecf565b6116c3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457506107a3826117bb565b5b9050919050565b6060600180546107ba906130fb565b80601f01602080910402602001604051908101604052809291908181526020018280546107e6906130fb565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b600061084882611825565b61087e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c48261104d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094b61188d565b73ffffffffffffffffffffffffffffffffffffffff161415801561097d575061097b8161097661188d565b61162f565b155b156109b4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bf838383611895565b505050565b603281565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a29838383611947565b505050565b6000610a3983611063565b8210610a71576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c29576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b885750610c1c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bc857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1a5786841415610c11578195505050505050610c2f565b83806001019450505b505b8080600101915050610aab565b50600080fd5b92915050565b610c3d61188d565b73ffffffffffffffffffffffffffffffffffffffff16610c5b611309565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613179565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b61271081565b610ceb61188d565b73ffffffffffffffffffffffffffffffffffffffff16610d09611309565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613179565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d85906131ca565b60006040518083038185875af1925050503d8060008114610dc2576040519150601f19603f3d011682016040523d82523d6000602084013e610dc7565b606091505b5050905080610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061322b565b60405180910390fd5b50565b610e298383836040518060200160405280600081525061153d565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610f67576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f595785831415610f505781945050505050610f9a565b82806001019350505b508080600101915050610e66565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600a81565b610fac61188d565b73ffffffffffffffffffffffffffffffffffffffff16610fca611309565b73ffffffffffffffffffffffffffffffffffffffff1614611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613179565b60405180910390fd5b8060089080519060200190611036929190612939565b5050565b600760149054906101000a900460ff1681565b600061105882611e64565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61113b61188d565b73ffffffffffffffffffffffffffffffffffffffff16611159611309565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613179565b60405180910390fd5b6111b9600061210c565b565b600760149054906101000a900460ff1661120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613297565b60405180910390fd5b600a81111561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590613329565b60405180910390fd5b603261125933611063565b826112649190613378565b11156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c9061341a565b60405180910390fd5b6127106112b06109c9565b826112bb9190613378565b11156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613486565b60405180910390fd5b61130633826121d2565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611342906130fb565b80601f016020809104026020016040519081016040528092919081815260200182805461136e906130fb565b80156113bb5780601f10611390576101008083540402835291602001916113bb565b820191906000526020600020905b81548152906001019060200180831161139e57829003601f168201915b5050505050905090565b6113cd61188d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611432576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061143f61188d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ec61188d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115319190612ad3565b60405180910390a35050565b611548848484611947565b611554848484846121f0565b61158a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061159b82611825565b6115d1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115db61236f565b90506000815114156115fc5760405180602001604052806000815250611627565b8061160684612401565b6040516020016116179291906134e2565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116cb61188d565b73ffffffffffffffffffffffffffffffffffffffff166116e9611309565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690613179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613578565b60405180910390fd5b6117b88161210c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611886575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061195282611e64565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661197961188d565b73ffffffffffffffffffffffffffffffffffffffff1614806119ac57506119ab82600001516119a661188d565b61162f565b5b806119f157506119ba61188d565b73ffffffffffffffffffffffffffffffffffffffff166119d98461083d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a2a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611afa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b078585856001612562565b611b176000848460000151611895565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611df45760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611df35782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e5d8585856001612568565b5050505050565b611e6c6129bf565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156120d5576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120d357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb7578092505050612107565b5b6001156120d257818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120cd578092505050612107565b611fb8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121ec82826040518060200160405280600081525061256e565b5050565b60006122118473ffffffffffffffffffffffffffffffffffffffff16612580565b15612362578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223a61188d565b8786866040518563ffffffff1660e01b815260040161225c94939291906135ed565b6020604051808303816000875af192505050801561229857506040513d601f19601f82011682018060405250810190612295919061364e565b60015b612312573d80600081146122c8576040519150601f19603f3d011682016040523d82523d6000602084013e6122cd565b606091505b5060008151141561230a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612367565b600190505b949350505050565b60606008805461237e906130fb565b80601f01602080910402602001604051908101604052809291908181526020018280546123aa906130fb565b80156123f75780601f106123cc576101008083540402835291602001916123f7565b820191906000526020600020905b8154815290600101906020018083116123da57829003601f168201915b5050505050905090565b60606000821415612449576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061255d565b600082905060005b6000821461247b5780806124649061367b565b915050600a8261247491906136f3565b9150612451565b60008167ffffffffffffffff81111561249757612496612d5b565b5b6040519080825280601f01601f1916602001820160405280156124c95781602001600182028036833780820191505090505b5090505b60008514612556576001826124e29190613724565b9150600a856124f19190613758565b60306124fd9190613378565b60f81b81838151811061251357612512613789565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561254f91906136f3565b94506124cd565b8093505050505b919050565b50505050565b50505050565b61257b83838360016125a3565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612679576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126866000868387612562565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156128eb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561289f575061289d60008884886121f0565b155b156128d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612824565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506129326000868387612568565b5050505050565b828054612945906130fb565b90600052602060002090601f01602090048101928261296757600085556129ae565b82601f1061298057805160ff19168380011785556129ae565b828001600101855582156129ae579182015b828111156129ad578251825591602001919060010190612992565b5b5090506129bb9190612a02565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a1b576000816000905550600101612a03565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a6881612a33565b8114612a7357600080fd5b50565b600081359050612a8581612a5f565b92915050565b600060208284031215612aa157612aa0612a29565b5b6000612aaf84828501612a76565b91505092915050565b60008115159050919050565b612acd81612ab8565b82525050565b6000602082019050612ae86000830184612ac4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b28578082015181840152602081019050612b0d565b83811115612b37576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b5982612aee565b612b638185612af9565b9350612b73818560208601612b0a565b612b7c81612b3d565b840191505092915050565b60006020820190508181036000830152612ba18184612b4e565b905092915050565b6000819050919050565b612bbc81612ba9565b8114612bc757600080fd5b50565b600081359050612bd981612bb3565b92915050565b600060208284031215612bf557612bf4612a29565b5b6000612c0384828501612bca565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3782612c0c565b9050919050565b612c4781612c2c565b82525050565b6000602082019050612c626000830184612c3e565b92915050565b612c7181612c2c565b8114612c7c57600080fd5b50565b600081359050612c8e81612c68565b92915050565b60008060408385031215612cab57612caa612a29565b5b6000612cb985828601612c7f565b9250506020612cca85828601612bca565b9150509250929050565b612cdd81612ba9565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b600080600060608486031215612d1757612d16612a29565b5b6000612d2586828701612c7f565b9350506020612d3686828701612c7f565b9250506040612d4786828701612bca565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9382612b3d565b810181811067ffffffffffffffff82111715612db257612db1612d5b565b5b80604052505050565b6000612dc5612a1f565b9050612dd18282612d8a565b919050565b600067ffffffffffffffff821115612df157612df0612d5b565b5b612dfa82612b3d565b9050602081019050919050565b82818337600083830152505050565b6000612e29612e2484612dd6565b612dbb565b905082815260208101848484011115612e4557612e44612d56565b5b612e50848285612e07565b509392505050565b600082601f830112612e6d57612e6c612d51565b5b8135612e7d848260208601612e16565b91505092915050565b600060208284031215612e9c57612e9b612a29565b5b600082013567ffffffffffffffff811115612eba57612eb9612a2e565b5b612ec684828501612e58565b91505092915050565b600060208284031215612ee557612ee4612a29565b5b6000612ef384828501612c7f565b91505092915050565b612f0581612ab8565b8114612f1057600080fd5b50565b600081359050612f2281612efc565b92915050565b60008060408385031215612f3f57612f3e612a29565b5b6000612f4d85828601612c7f565b9250506020612f5e85828601612f13565b9150509250929050565b600067ffffffffffffffff821115612f8357612f82612d5b565b5b612f8c82612b3d565b9050602081019050919050565b6000612fac612fa784612f68565b612dbb565b905082815260208101848484011115612fc857612fc7612d56565b5b612fd3848285612e07565b509392505050565b600082601f830112612ff057612fef612d51565b5b8135613000848260208601612f99565b91505092915050565b6000806000806080858703121561302357613022612a29565b5b600061303187828801612c7f565b945050602061304287828801612c7f565b935050604061305387828801612bca565b925050606085013567ffffffffffffffff81111561307457613073612a2e565b5b61308087828801612fdb565b91505092959194509250565b600080604083850312156130a3576130a2612a29565b5b60006130b185828601612c7f565b92505060206130c285828601612c7f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311357607f821691505b60208210811415613127576131266130cc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613163602083612af9565b915061316e8261312d565b602082019050919050565b6000602082019050818103600083015261319281613156565b9050919050565b600081905092915050565b50565b60006131b4600083613199565b91506131bf826131a4565b600082019050919050565b60006131d5826131a7565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b6000613215601183612af9565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613281601283612af9565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f4578636565646564206d6178206d696e747320706572207472616e736163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613313602283612af9565b915061331e826132b7565b604082019050919050565b6000602082019050818103600083015261334281613306565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061338382612ba9565b915061338e83612ba9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c3576133c2613349565b5b828201905092915050565b7f4578636565646564206d6178206d696e7473207065722077616c6c6574000000600082015250565b6000613404601d83612af9565b915061340f826133ce565b602082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b6000613470601383612af9565b915061347b8261343a565b602082019050919050565b6000602082019050818103600083015261349f81613463565b9050919050565b600081905092915050565b60006134bc82612aee565b6134c681856134a6565b93506134d6818560208601612b0a565b80840191505092915050565b60006134ee82856134b1565b91506134fa82846134b1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613562602683612af9565b915061356d82613506565b604082019050919050565b6000602082019050818103600083015261359181613555565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135bf82613598565b6135c981856135a3565b93506135d9818560208601612b0a565b6135e281612b3d565b840191505092915050565b60006080820190506136026000830187612c3e565b61360f6020830186612c3e565b61361c6040830185612cd4565b818103606083015261362e81846135b4565b905095945050505050565b60008151905061364881612a5f565b92915050565b60006020828403121561366457613663612a29565b5b600061367284828501613639565b91505092915050565b600061368682612ba9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b9576136b8613349565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136fe82612ba9565b915061370983612ba9565b925082613719576137186136c4565b5b828204905092915050565b600061372f82612ba9565b915061373a83612ba9565b92508282101561374d5761374c613349565b5b828203905092915050565b600061376382612ba9565b915061376e83612ba9565b92508261377e5761377d6136c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cf8d8bdb33802d26fc49386811c20979900284121f93ac6ffd6ff0a33171117064736f6c634300080a0033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806351b96d92116100ec5780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde14610595578063c87b56dd146105be578063e985e9c5146105fb578063f2fde38b146106385761019c565b80638da5cb5b1461051657806395d89b4114610541578063a22cb4651461056c5761019c565b80636352211e116100c65780636352211e1461046957806370a08231146104a6578063715018a6146104e35780637c928fe9146104fa5761019c565b806351b96d92146103ea57806355f804b314610415578063564566a81461043e5761019c565b806323b872dd1161015957806332cb6b0c1161013357806332cb6b0c146103425780633ccfd60b1461036d57806342842e0e146103845780634f6ccce7146103ad5761019c565b806323b872dd146102c55780632f745c59146102ee5780633100a5351461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780630f2cdd6c1461026f57806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612a8b565b610661565b6040516101d59190612ad3565b60405180910390f35b3480156101ea57600080fd5b506101f36107ab565b6040516102009190612b87565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612bdf565b61083d565b60405161023d9190612c4d565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612c94565b6108b9565b005b34801561027b57600080fd5b506102846109c4565b6040516102919190612ce3565b60405180910390f35b3480156102a657600080fd5b506102af6109c9565b6040516102bc9190612ce3565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612cfe565b610a1e565b005b3480156102fa57600080fd5b5061031560048036038101906103109190612c94565b610a2e565b6040516103229190612ce3565b60405180910390f35b34801561033757600080fd5b50610340610c35565b005b34801561034e57600080fd5b50610357610cdd565b6040516103649190612ce3565b60405180910390f35b34801561037957600080fd5b50610382610ce3565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612cfe565b610e0e565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612bdf565b610e2e565b6040516103e19190612ce3565b60405180910390f35b3480156103f657600080fd5b506103ff610f9f565b60405161040c9190612ce3565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612e86565b610fa4565b005b34801561044a57600080fd5b5061045361103a565b6040516104609190612ad3565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612bdf565b61104d565b60405161049d9190612c4d565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612ecf565b611063565b6040516104da9190612ce3565b60405180910390f35b3480156104ef57600080fd5b506104f8611133565b005b610514600480360381019061050f9190612bdf565b6111bb565b005b34801561052257600080fd5b5061052b611309565b6040516105389190612c4d565b60405180910390f35b34801561054d57600080fd5b50610556611333565b6040516105639190612b87565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612f28565b6113c5565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190613009565b61153d565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190612bdf565b611590565b6040516105f29190612b87565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061308c565b61162f565b60405161062f9190612ad3565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612ecf565b6116c3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457506107a3826117bb565b5b9050919050565b6060600180546107ba906130fb565b80601f01602080910402602001604051908101604052809291908181526020018280546107e6906130fb565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b600061084882611825565b61087e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c48261104d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094b61188d565b73ffffffffffffffffffffffffffffffffffffffff161415801561097d575061097b8161097661188d565b61162f565b155b156109b4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bf838383611895565b505050565b603281565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a29838383611947565b505050565b6000610a3983611063565b8210610a71576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c29576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b885750610c1c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bc857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1a5786841415610c11578195505050505050610c2f565b83806001019450505b505b8080600101915050610aab565b50600080fd5b92915050565b610c3d61188d565b73ffffffffffffffffffffffffffffffffffffffff16610c5b611309565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613179565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b61271081565b610ceb61188d565b73ffffffffffffffffffffffffffffffffffffffff16610d09611309565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613179565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d85906131ca565b60006040518083038185875af1925050503d8060008114610dc2576040519150601f19603f3d011682016040523d82523d6000602084013e610dc7565b606091505b5050905080610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061322b565b60405180910390fd5b50565b610e298383836040518060200160405280600081525061153d565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610f67576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f595785831415610f505781945050505050610f9a565b82806001019350505b508080600101915050610e66565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600a81565b610fac61188d565b73ffffffffffffffffffffffffffffffffffffffff16610fca611309565b73ffffffffffffffffffffffffffffffffffffffff1614611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613179565b60405180910390fd5b8060089080519060200190611036929190612939565b5050565b600760149054906101000a900460ff1681565b600061105882611e64565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61113b61188d565b73ffffffffffffffffffffffffffffffffffffffff16611159611309565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613179565b60405180910390fd5b6111b9600061210c565b565b600760149054906101000a900460ff1661120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613297565b60405180910390fd5b600a81111561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590613329565b60405180910390fd5b603261125933611063565b826112649190613378565b11156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c9061341a565b60405180910390fd5b6127106112b06109c9565b826112bb9190613378565b11156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613486565b60405180910390fd5b61130633826121d2565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611342906130fb565b80601f016020809104026020016040519081016040528092919081815260200182805461136e906130fb565b80156113bb5780601f10611390576101008083540402835291602001916113bb565b820191906000526020600020905b81548152906001019060200180831161139e57829003601f168201915b5050505050905090565b6113cd61188d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611432576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061143f61188d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ec61188d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115319190612ad3565b60405180910390a35050565b611548848484611947565b611554848484846121f0565b61158a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061159b82611825565b6115d1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115db61236f565b90506000815114156115fc5760405180602001604052806000815250611627565b8061160684612401565b6040516020016116179291906134e2565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116cb61188d565b73ffffffffffffffffffffffffffffffffffffffff166116e9611309565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690613179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613578565b60405180910390fd5b6117b88161210c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611886575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061195282611e64565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661197961188d565b73ffffffffffffffffffffffffffffffffffffffff1614806119ac57506119ab82600001516119a661188d565b61162f565b5b806119f157506119ba61188d565b73ffffffffffffffffffffffffffffffffffffffff166119d98461083d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a2a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611afa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b078585856001612562565b611b176000848460000151611895565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611df45760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611df35782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e5d8585856001612568565b5050505050565b611e6c6129bf565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156120d5576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120d357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb7578092505050612107565b5b6001156120d257818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120cd578092505050612107565b611fb8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121ec82826040518060200160405280600081525061256e565b5050565b60006122118473ffffffffffffffffffffffffffffffffffffffff16612580565b15612362578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223a61188d565b8786866040518563ffffffff1660e01b815260040161225c94939291906135ed565b6020604051808303816000875af192505050801561229857506040513d601f19601f82011682018060405250810190612295919061364e565b60015b612312573d80600081146122c8576040519150601f19603f3d011682016040523d82523d6000602084013e6122cd565b606091505b5060008151141561230a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612367565b600190505b949350505050565b60606008805461237e906130fb565b80601f01602080910402602001604051908101604052809291908181526020018280546123aa906130fb565b80156123f75780601f106123cc576101008083540402835291602001916123f7565b820191906000526020600020905b8154815290600101906020018083116123da57829003601f168201915b5050505050905090565b60606000821415612449576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061255d565b600082905060005b6000821461247b5780806124649061367b565b915050600a8261247491906136f3565b9150612451565b60008167ffffffffffffffff81111561249757612496612d5b565b5b6040519080825280601f01601f1916602001820160405280156124c95781602001600182028036833780820191505090505b5090505b60008514612556576001826124e29190613724565b9150600a856124f19190613758565b60306124fd9190613378565b60f81b81838151811061251357612512613789565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561254f91906136f3565b94506124cd565b8093505050505b919050565b50505050565b50505050565b61257b83838360016125a3565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612679576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126866000868387612562565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156128eb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561289f575061289d60008884886121f0565b155b156128d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612824565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506129326000868387612568565b5050505050565b828054612945906130fb565b90600052602060002090601f01602090048101928261296757600085556129ae565b82601f1061298057805160ff19168380011785556129ae565b828001600101855582156129ae579182015b828111156129ad578251825591602001919060010190612992565b5b5090506129bb9190612a02565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a1b576000816000905550600101612a03565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a6881612a33565b8114612a7357600080fd5b50565b600081359050612a8581612a5f565b92915050565b600060208284031215612aa157612aa0612a29565b5b6000612aaf84828501612a76565b91505092915050565b60008115159050919050565b612acd81612ab8565b82525050565b6000602082019050612ae86000830184612ac4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b28578082015181840152602081019050612b0d565b83811115612b37576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b5982612aee565b612b638185612af9565b9350612b73818560208601612b0a565b612b7c81612b3d565b840191505092915050565b60006020820190508181036000830152612ba18184612b4e565b905092915050565b6000819050919050565b612bbc81612ba9565b8114612bc757600080fd5b50565b600081359050612bd981612bb3565b92915050565b600060208284031215612bf557612bf4612a29565b5b6000612c0384828501612bca565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3782612c0c565b9050919050565b612c4781612c2c565b82525050565b6000602082019050612c626000830184612c3e565b92915050565b612c7181612c2c565b8114612c7c57600080fd5b50565b600081359050612c8e81612c68565b92915050565b60008060408385031215612cab57612caa612a29565b5b6000612cb985828601612c7f565b9250506020612cca85828601612bca565b9150509250929050565b612cdd81612ba9565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b600080600060608486031215612d1757612d16612a29565b5b6000612d2586828701612c7f565b9350506020612d3686828701612c7f565b9250506040612d4786828701612bca565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9382612b3d565b810181811067ffffffffffffffff82111715612db257612db1612d5b565b5b80604052505050565b6000612dc5612a1f565b9050612dd18282612d8a565b919050565b600067ffffffffffffffff821115612df157612df0612d5b565b5b612dfa82612b3d565b9050602081019050919050565b82818337600083830152505050565b6000612e29612e2484612dd6565b612dbb565b905082815260208101848484011115612e4557612e44612d56565b5b612e50848285612e07565b509392505050565b600082601f830112612e6d57612e6c612d51565b5b8135612e7d848260208601612e16565b91505092915050565b600060208284031215612e9c57612e9b612a29565b5b600082013567ffffffffffffffff811115612eba57612eb9612a2e565b5b612ec684828501612e58565b91505092915050565b600060208284031215612ee557612ee4612a29565b5b6000612ef384828501612c7f565b91505092915050565b612f0581612ab8565b8114612f1057600080fd5b50565b600081359050612f2281612efc565b92915050565b60008060408385031215612f3f57612f3e612a29565b5b6000612f4d85828601612c7f565b9250506020612f5e85828601612f13565b9150509250929050565b600067ffffffffffffffff821115612f8357612f82612d5b565b5b612f8c82612b3d565b9050602081019050919050565b6000612fac612fa784612f68565b612dbb565b905082815260208101848484011115612fc857612fc7612d56565b5b612fd3848285612e07565b509392505050565b600082601f830112612ff057612fef612d51565b5b8135613000848260208601612f99565b91505092915050565b6000806000806080858703121561302357613022612a29565b5b600061303187828801612c7f565b945050602061304287828801612c7f565b935050604061305387828801612bca565b925050606085013567ffffffffffffffff81111561307457613073612a2e565b5b61308087828801612fdb565b91505092959194509250565b600080604083850312156130a3576130a2612a29565b5b60006130b185828601612c7f565b92505060206130c285828601612c7f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311357607f821691505b60208210811415613127576131266130cc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613163602083612af9565b915061316e8261312d565b602082019050919050565b6000602082019050818103600083015261319281613156565b9050919050565b600081905092915050565b50565b60006131b4600083613199565b91506131bf826131a4565b600082019050919050565b60006131d5826131a7565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b6000613215601183612af9565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613281601283612af9565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f4578636565646564206d6178206d696e747320706572207472616e736163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613313602283612af9565b915061331e826132b7565b604082019050919050565b6000602082019050818103600083015261334281613306565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061338382612ba9565b915061338e83612ba9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c3576133c2613349565b5b828201905092915050565b7f4578636565646564206d6178206d696e7473207065722077616c6c6574000000600082015250565b6000613404601d83612af9565b915061340f826133ce565b602082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b6000613470601383612af9565b915061347b8261343a565b602082019050919050565b6000602082019050818103600083015261349f81613463565b9050919050565b600081905092915050565b60006134bc82612aee565b6134c681856134a6565b93506134d6818560208601612b0a565b80840191505092915050565b60006134ee82856134b1565b91506134fa82846134b1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613562602683612af9565b915061356d82613506565b604082019050919050565b6000602082019050818103600083015261359181613555565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135bf82613598565b6135c981856135a3565b93506135d9818560208601612b0a565b6135e281612b3d565b840191505092915050565b60006080820190506136026000830187612c3e565b61360f6020830186612c3e565b61361c6040830185612cd4565b818103606083015261362e81846135b4565b905095945050505050565b60008151905061364881612a5f565b92915050565b60006020828403121561366457613663612a29565b5b600061367284828501613639565b91505092915050565b600061368682612ba9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b9576136b8613349565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136fe82612ba9565b915061370983612ba9565b925082613719576137186136c4565b5b828204905092915050565b600061372f82612ba9565b915061373a83612ba9565b92508282101561374d5761374c613349565b5b828203905092915050565b600061376382612ba9565b915061376e83612ba9565b92508261377e5761377d6136c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cf8d8bdb33802d26fc49386811c20979900284121f93ac6ffd6ff0a33171117064736f6c634300080a0033
Deployed Bytecode Sourcemap
46343:1299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29809:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32419:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33922:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33485:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46487:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27046:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34779:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28632:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46817:94;;;;;;;;;;;;;:::i;:::-;;46391:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47465:174;;;;;;;;;;;;;:::i;:::-;;35020:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27619:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46440:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46699:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46539:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32228:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30245:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;47033:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32588:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34198:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35276:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32763:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34548:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29809:372;29911:4;29963:25;29948:40;;;:11;:40;;;;:105;;;;30020:33;30005:48;;;:11;:48;;;;29948:105;:172;;;;30085:35;30070:50;;;:11;:50;;;;29948:172;:225;;;;30137:36;30161:11;30137:23;:36::i;:::-;29948:225;29928:245;;29809:372;;;:::o;32419:100::-;32473:13;32506:5;32499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32419:100;:::o;33922:204::-;33990:7;34015:16;34023:7;34015;:16::i;:::-;34010:64;;34040:34;;;;;;;;;;;;;;34010:64;34094:15;:24;34110:7;34094:24;;;;;;;;;;;;;;;;;;;;;34087:31;;33922:204;;;:::o;33485:371::-;33558:13;33574:24;33590:7;33574:15;:24::i;:::-;33558:40;;33619:5;33613:11;;:2;:11;;;33609:48;;;33633:24;;;;;;;;;;;;;;33609:48;33690:5;33674:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33700:37;33717:5;33724:12;:10;:12::i;:::-;33700:16;:37::i;:::-;33699:38;33674:63;33670:138;;;33761:35;;;;;;;;;;;;;;33670:138;33820:28;33829:2;33833:7;33842:5;33820:8;:28::i;:::-;33547:309;33485:371;;:::o;46487:43::-;46528:2;46487:43;:::o;27046:280::-;27099:7;27291:12;;;;;;;;;;;27275:13;;;;;;;;;;:28;27268:35;;;;27046:280;:::o;34779:170::-;34913:28;34923:4;34929:2;34933:7;34913:9;:28::i;:::-;34779:170;;;:::o;28632:1105::-;28721:7;28754:16;28764:5;28754:9;:16::i;:::-;28745:5;:25;28741:61;;28779:23;;;;;;;;;;;;;;28741:61;28813:22;28838:13;;;;;;;;;;;28813:38;;;;28862:19;28892:25;29093:9;29088:557;29108:14;29104:1;:18;29088:557;;;29148:31;29182:11;:14;29194:1;29182:14;;;;;;;;;;;29148:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29219:9;:16;;;29215:73;;;29260:8;;;29215:73;29336:1;29310:28;;:9;:14;;;:28;;;29306:111;;29383:9;:14;;;29363:34;;29306:111;29460:5;29439:26;;:17;:26;;;29435:195;;;29509:5;29494:11;:20;29490:85;;;29550:1;29543:8;;;;;;;;;29490:85;29597:13;;;;;;;29435:195;29129:516;29088:557;29124:3;;;;;;;29088:557;;;;29721:8;;;28632:1105;;;;;:::o;46817:94::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46891:12:::1;;;;;;;;;;;46890:13;46875:12;;:28;;;;;;;;;;;;;;;;;;46817:94::o:0;46391:42::-;46428:5;46391:42;:::o;47465:174::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47516:12:::1;47534:10;:15;;47557:21;47534:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47515:68;;;47602:7;47594:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;47504:135;47465:174::o:0;35020:185::-;35158:39;35175:4;35181:2;35185:7;35158:39;;;;;;;;;;;;:16;:39::i;:::-;35020:185;;;:::o;27619:713::-;27686:7;27706:22;27731:13;;;;;;;;;;27706:38;;;;27755:19;27950:9;27945:328;27965:14;27961:1;:18;27945:328;;;28005:31;28039:11;:14;28051:1;28039:14;;;;;;;;;;;28005:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28077:9;:16;;;28072:186;;28137:5;28122:11;:20;28118:85;;;28178:1;28171:8;;;;;;;;28118:85;28225:13;;;;;;;28072:186;27986:287;27981:3;;;;;;;27945:328;;;;28301:23;;;;;;;;;;;;;;27619:713;;;;:::o;46440:40::-;46478:2;46440:40;:::o;46699:110::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46791:10:::1;46775:13;:26;;;;;;;;;;;;:::i;:::-;;46699:110:::0;:::o;46539:24::-;;;;;;;;;;;;;:::o;32228:124::-;32292:7;32319:20;32331:7;32319:11;:20::i;:::-;:25;;;32312:32;;32228:124;;;:::o;30245:206::-;30309:7;30350:1;30333:19;;:5;:19;;;30329:60;;;30361:28;;;;;;;;;;;;;;30329:60;30415:12;:19;30428:5;30415:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30407:36;;30400:43;;30245:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;47033:424::-;47105:12;;;;;;;;;;;47097:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46478:2;47159:8;:23;;47151:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46528:2;47251:21;47261:10;47251:9;:21::i;:::-;47240:8;:32;;;;:::i;:::-;:50;;47232:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;46428:5;47354:13;:11;:13::i;:::-;47343:8;:24;;;;:::i;:::-;:38;;47335:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47418:31;47428:10;47440:8;47418:9;:31::i;:::-;47033:424;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;32588:104::-;32644:13;32677:7;32670:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32588:104;:::o;34198:279::-;34301:12;:10;:12::i;:::-;34289:24;;:8;:24;;;34285:54;;;34322:17;;;;;;;;;;;;;;34285:54;34397:8;34352:18;:32;34371:12;:10;:12::i;:::-;34352:32;;;;;;;;;;;;;;;:42;34385:8;34352:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34450:8;34421:48;;34436:12;:10;:12::i;:::-;34421:48;;;34460:8;34421:48;;;;;;:::i;:::-;;;;;;;;34198:279;;:::o;35276:342::-;35443:28;35453:4;35459:2;35463:7;35443:9;:28::i;:::-;35487:48;35510:4;35516:2;35520:7;35529:5;35487:22;:48::i;:::-;35482:129;;35559:40;;;;;;;;;;;;;;35482:129;35276:342;;;;:::o;32763:318::-;32836:13;32867:16;32875:7;32867;:16::i;:::-;32862:59;;32892:29;;;;;;;;;;;;;;32862:59;32934:21;32958:10;:8;:10::i;:::-;32934:34;;33011:1;32992:7;32986:21;:26;;:87;;;;;;;;;;;;;;;;;33039:7;33048:18;:7;:16;:18::i;:::-;33022:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32986:87;32979:94;;;32763:318;;;:::o;34548:164::-;34645:4;34669:18;:25;34688:5;34669:25;;;;;;;;;;;;;;;:35;34695:8;34669:35;;;;;;;;;;;;;;;;;;;;;;;;;34662:42;;34548:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;35873:144::-;35930:4;35964:13;;;;;;;;;;;35954:23;;:7;:23;:55;;;;;35982:11;:20;35994:7;35982:20;;;;;;;;;;;:27;;;;;;;;;;;;35981:28;35954:55;35947:62;;35873:144;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;43089:196::-;43231:2;43204:15;:24;43220:7;43204:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43269:7;43265:2;43249:28;;43258:5;43249:28;;;;;;;;;;;;43089:196;;;:::o;38590:2112::-;38705:35;38743:20;38755:7;38743:11;:20::i;:::-;38705:58;;38776:22;38818:13;:18;;;38802:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38853:50;38870:13;:18;;;38890:12;:10;:12::i;:::-;38853:16;:50::i;:::-;38802:101;:154;;;;38944:12;:10;:12::i;:::-;38920:36;;:20;38932:7;38920:11;:20::i;:::-;:36;;;38802:154;38776:181;;38975:17;38970:66;;39001:35;;;;;;;;;;;;;;38970:66;39073:4;39051:26;;:13;:18;;;:26;;;39047:67;;39086:28;;;;;;;;;;;;;;39047:67;39143:1;39129:16;;:2;:16;;;39125:52;;;39154:23;;;;;;;;;;;;;;39125:52;39190:43;39212:4;39218:2;39222:7;39231:1;39190:21;:43::i;:::-;39298:49;39315:1;39319:7;39328:13;:18;;;39298:8;:49::i;:::-;39673:1;39643:12;:18;39656:4;39643:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39717:1;39689:12;:16;39702:2;39689:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39763:2;39735:11;:20;39747:7;39735:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39825:15;39780:11;:20;39792:7;39780:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40093:19;40125:1;40115:7;:11;40093:33;;40186:1;40145:43;;:11;:24;40157:11;40145:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40141:445;;;40370:13;;;;;;;;;;40356:27;;:11;:27;40352:219;;;40440:13;:18;;;40408:11;:24;40420:11;40408:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40523:13;:28;;;40481:11;:24;40493:11;40481:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40352:219;40141:445;39618:979;40633:7;40629:2;40614:27;;40623:4;40614:27;;;;;;;;;;;;40652:42;40673:4;40679:2;40683:7;40692:1;40652:20;:42::i;:::-;38694:2008;;38590:2112;;;:::o;31083:1083::-;31144:21;;:::i;:::-;31178:12;31193:7;31178:22;;31249:13;;;;;;;;;;31242:20;;:4;:20;31238:861;;;31283:31;31317:11;:17;31329:4;31317:17;;;;;;;;;;;31283:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31358:9;:16;;;31353:731;;31429:1;31403:28;;:9;:14;;;:28;;;31399:101;;31467:9;31460:16;;;;;;31399:101;31804:261;31811:4;31804:261;;;31844:6;;;;;;;;31889:11;:17;31901:4;31889:17;;;;;;;;;;;31877:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31963:1;31937:28;;:9;:14;;;:28;;;31933:109;;32005:9;31998:16;;;;;;31933:109;31804:261;;;31353:731;31264:835;31238:861;32127:31;;;;;;;;;;;;;;31083:1083;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;36025:104::-;36094:27;36104:2;36108:8;36094:27;;;;;;;;;;;;:9;:27::i;:::-;36025:104;;:::o;43850:790::-;44005:4;44026:15;:2;:13;;;:15::i;:::-;44022:611;;;44078:2;44062:36;;;44099:12;:10;:12::i;:::-;44113:4;44119:7;44128:5;44062:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44058:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44325:1;44308:6;:13;:18;44304:259;;;44358:40;;;;;;;;;;;;;;44304:259;44513:6;44507:13;44498:6;44494:2;44490:15;44483:38;44058:520;44195:45;;;44185:55;;;:6;:55;;;;44178:62;;;;;44022:611;44617:4;44610:11;;43850:790;;;;;;;:::o;46919:106::-;46971:13;47004;46997:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46919:106;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;45288:159::-;;;;;:::o;46106:158::-;;;;;:::o;36492:163::-;36615:32;36621:2;36625:8;36635:5;36642:4;36615:5;:32::i;:::-;36492:163;;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;36914:1422::-;37053:20;37076:13;;;;;;;;;;;37053:36;;;;37118:1;37104:16;;:2;:16;;;37100:48;;;37129:19;;;;;;;;;;;;;;37100:48;37175:1;37163:8;:13;37159:44;;;37185:18;;;;;;;;;;;;;;37159:44;37216:61;37246:1;37250:2;37254:12;37268:8;37216:21;:61::i;:::-;37590:8;37555:12;:16;37568:2;37555:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37654:8;37614:12;:16;37627:2;37614:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37713:2;37680:11;:25;37692:12;37680:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37780:15;37730:11;:25;37742:12;37730:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37813:20;37836:12;37813:35;;37870:9;37865:328;37885:8;37881:1;:12;37865:328;;;37949:12;37945:2;37924:38;;37941:1;37924:38;;;;;;;;;;;;37985:4;:68;;;;;37994:59;38025:1;38029:2;38033:12;38047:5;37994:22;:59::i;:::-;37993:60;37985:68;37981:164;;;38085:40;;;;;;;;;;;;;;37981:164;38163:14;;;;;;;37895:3;;;;;;;37865:328;;;;38233:12;38209:13;;:37;;;;;;;;;;;;;;;;;;37530:728;38268:60;38297:1;38301:2;38305:12;38319:8;38268:20;:60::i;:::-;37042:1294;36914:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:147::-;13719:11;13756:3;13741:18;;13618:147;;;;:::o;13771:114::-;;:::o;13891:398::-;14050:3;14071:83;14152:1;14147:3;14071:83;:::i;:::-;14064:90;;14163:93;14252:3;14163:93;:::i;:::-;14281:1;14276:3;14272:11;14265:18;;13891:398;;;:::o;14295:379::-;14479:3;14501:147;14644:3;14501:147;:::i;:::-;14494:154;;14665:3;14658:10;;14295:379;;;:::o;14680:167::-;14820:19;14816:1;14808:6;14804:14;14797:43;14680:167;:::o;14853:366::-;14995:3;15016:67;15080:2;15075:3;15016:67;:::i;:::-;15009:74;;15092:93;15181:3;15092:93;:::i;:::-;15210:2;15205:3;15201:12;15194:19;;14853:366;;;:::o;15225:419::-;15391:4;15429:2;15418:9;15414:18;15406:26;;15478:9;15472:4;15468:20;15464:1;15453:9;15449:17;15442:47;15506:131;15632:4;15506:131;:::i;:::-;15498:139;;15225:419;;;:::o;15650:168::-;15790:20;15786:1;15778:6;15774:14;15767:44;15650:168;:::o;15824:366::-;15966:3;15987:67;16051:2;16046:3;15987:67;:::i;:::-;15980:74;;16063:93;16152:3;16063:93;:::i;:::-;16181:2;16176:3;16172:12;16165:19;;15824:366;;;:::o;16196:419::-;16362:4;16400:2;16389:9;16385:18;16377:26;;16449:9;16443:4;16439:20;16435:1;16424:9;16420:17;16413:47;16477:131;16603:4;16477:131;:::i;:::-;16469:139;;16196:419;;;:::o;16621:221::-;16761:34;16757:1;16749:6;16745:14;16738:58;16830:4;16825:2;16817:6;16813:15;16806:29;16621:221;:::o;16848:366::-;16990:3;17011:67;17075:2;17070:3;17011:67;:::i;:::-;17004:74;;17087:93;17176:3;17087:93;:::i;:::-;17205:2;17200:3;17196:12;17189:19;;16848:366;;;:::o;17220:419::-;17386:4;17424:2;17413:9;17409:18;17401:26;;17473:9;17467:4;17463:20;17459:1;17448:9;17444:17;17437:47;17501:131;17627:4;17501:131;:::i;:::-;17493:139;;17220:419;;;:::o;17645:180::-;17693:77;17690:1;17683:88;17790:4;17787:1;17780:15;17814:4;17811:1;17804:15;17831:305;17871:3;17890:20;17908:1;17890:20;:::i;:::-;17885:25;;17924:20;17942:1;17924:20;:::i;:::-;17919:25;;18078:1;18010:66;18006:74;18003:1;18000:81;17997:107;;;18084:18;;:::i;:::-;17997:107;18128:1;18125;18121:9;18114:16;;17831:305;;;;:::o;18142:179::-;18282:31;18278:1;18270:6;18266:14;18259:55;18142:179;:::o;18327:366::-;18469:3;18490:67;18554:2;18549:3;18490:67;:::i;:::-;18483:74;;18566:93;18655:3;18566:93;:::i;:::-;18684:2;18679:3;18675:12;18668:19;;18327:366;;;:::o;18699:419::-;18865:4;18903:2;18892:9;18888:18;18880:26;;18952:9;18946:4;18942:20;18938:1;18927:9;18923:17;18916:47;18980:131;19106:4;18980:131;:::i;:::-;18972:139;;18699:419;;;:::o;19124:169::-;19264:21;19260:1;19252:6;19248:14;19241:45;19124:169;:::o;19299:366::-;19441:3;19462:67;19526:2;19521:3;19462:67;:::i;:::-;19455:74;;19538:93;19627:3;19538:93;:::i;:::-;19656:2;19651:3;19647:12;19640:19;;19299:366;;;:::o;19671:419::-;19837:4;19875:2;19864:9;19860:18;19852:26;;19924:9;19918:4;19914:20;19910:1;19899:9;19895:17;19888:47;19952:131;20078:4;19952:131;:::i;:::-;19944:139;;19671:419;;;:::o;20096:148::-;20198:11;20235:3;20220:18;;20096:148;;;;:::o;20250:377::-;20356:3;20384:39;20417:5;20384:39;:::i;:::-;20439:89;20521:6;20516:3;20439:89;:::i;:::-;20432:96;;20537:52;20582:6;20577:3;20570:4;20563:5;20559:16;20537:52;:::i;:::-;20614:6;20609:3;20605:16;20598:23;;20360:267;20250:377;;;;:::o;20633:435::-;20813:3;20835:95;20926:3;20917:6;20835:95;:::i;:::-;20828:102;;20947:95;21038:3;21029:6;20947:95;:::i;:::-;20940:102;;21059:3;21052:10;;20633:435;;;;;:::o;21074:225::-;21214:34;21210:1;21202:6;21198:14;21191:58;21283:8;21278:2;21270:6;21266:15;21259:33;21074:225;:::o;21305:366::-;21447:3;21468:67;21532:2;21527:3;21468:67;:::i;:::-;21461:74;;21544:93;21633:3;21544:93;:::i;:::-;21662:2;21657:3;21653:12;21646:19;;21305:366;;;:::o;21677:419::-;21843:4;21881:2;21870:9;21866:18;21858:26;;21930:9;21924:4;21920:20;21916:1;21905:9;21901:17;21894:47;21958:131;22084:4;21958:131;:::i;:::-;21950:139;;21677:419;;;:::o;22102:98::-;22153:6;22187:5;22181:12;22171:22;;22102:98;;;:::o;22206:168::-;22289:11;22323:6;22318:3;22311:19;22363:4;22358:3;22354:14;22339:29;;22206:168;;;;:::o;22380:360::-;22466:3;22494:38;22526:5;22494:38;:::i;:::-;22548:70;22611:6;22606:3;22548:70;:::i;:::-;22541:77;;22627:52;22672:6;22667:3;22660:4;22653:5;22649:16;22627:52;:::i;:::-;22704:29;22726:6;22704:29;:::i;:::-;22699:3;22695:39;22688:46;;22470:270;22380:360;;;;:::o;22746:640::-;22941:4;22979:3;22968:9;22964:19;22956:27;;22993:71;23061:1;23050:9;23046:17;23037:6;22993:71;:::i;:::-;23074:72;23142:2;23131:9;23127:18;23118:6;23074:72;:::i;:::-;23156;23224:2;23213:9;23209:18;23200:6;23156:72;:::i;:::-;23275:9;23269:4;23265:20;23260:2;23249:9;23245:18;23238:48;23303:76;23374:4;23365:6;23303:76;:::i;:::-;23295:84;;22746:640;;;;;;;:::o;23392:141::-;23448:5;23479:6;23473:13;23464:22;;23495:32;23521:5;23495:32;:::i;:::-;23392:141;;;;:::o;23539:349::-;23608:6;23657:2;23645:9;23636:7;23632:23;23628:32;23625:119;;;23663:79;;:::i;:::-;23625:119;23783:1;23808:63;23863:7;23854:6;23843:9;23839:22;23808:63;:::i;:::-;23798:73;;23754:127;23539:349;;;;:::o;23894:233::-;23933:3;23956:24;23974:5;23956:24;:::i;:::-;23947:33;;24002:66;23995:5;23992:77;23989:103;;;24072:18;;:::i;:::-;23989:103;24119:1;24112:5;24108:13;24101:20;;23894:233;;;:::o;24133:180::-;24181:77;24178:1;24171:88;24278:4;24275:1;24268:15;24302:4;24299:1;24292:15;24319:185;24359:1;24376:20;24394:1;24376:20;:::i;:::-;24371:25;;24410:20;24428:1;24410:20;:::i;:::-;24405:25;;24449:1;24439:35;;24454:18;;:::i;:::-;24439:35;24496:1;24493;24489:9;24484:14;;24319:185;;;;:::o;24510:191::-;24550:4;24570:20;24588:1;24570:20;:::i;:::-;24565:25;;24604:20;24622:1;24604:20;:::i;:::-;24599:25;;24643:1;24640;24637:8;24634:34;;;24648:18;;:::i;:::-;24634:34;24693:1;24690;24686:9;24678:17;;24510:191;;;;:::o;24707:176::-;24739:1;24756:20;24774:1;24756:20;:::i;:::-;24751:25;;24790:20;24808:1;24790:20;:::i;:::-;24785:25;;24829:1;24819:35;;24834:18;;:::i;:::-;24819:35;24875:1;24872;24868:9;24863:14;;24707:176;;;;:::o;24889:180::-;24937:77;24934:1;24927:88;25034:4;25031:1;25024:15;25058:4;25055:1;25048:15
Swarm Source
ipfs://cf8d8bdb33802d26fc49386811c20979900284121f93ac6ffd6ff0a331711170
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.