ERC-721
Overview
Max Total Supply
2,898 COSA
Holders
377
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 COSALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CosaMonstra
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-06 */ /** *Submitted for verification at Etherscan.io on 2022-09-05 */ // SPDX-License-Identifier: MIT // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 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**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren"t clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ""; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(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 _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, "")`. */ 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @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 for each mint. */ function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot"s value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren"t clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren"t clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot"s address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot"s address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of "0". mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } 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); } } pragma solidity ^0.8.0; contract CosaMonstra is ERC721A, Ownable { using Strings for uint; uint private constant MAX_PER_WALLET = 7; uint public maxSupply = 10000; bool public isPaused = true; string private _baseURL = ""; mapping(address => uint) private _walletMintedCount; constructor() // Name ERC721A("Cosa Monstra", "COSA") { } function _baseURI() internal view override returns (string memory) { return _baseURL; } function _startTokenId() internal pure override returns (uint) { return 1; } function contractURI() public pure returns (string memory) { return ""; } function mintedCount(address owner) external view returns (uint) { return _walletMintedCount[owner]; } function setBaseUri(string memory url) external onlyOwner { _baseURL = url; } function start(bool paused) external onlyOwner { isPaused = paused; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function devMint(address to, uint count) external onlyOwner { require( _totalMinted() + count <= maxSupply, "Exceeds max supply" ); _safeMint(to, count); } function setMaxSupply(uint newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function tokenURI(uint tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(_baseURI()).length > 0 ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")) : ""; } function mint(uint signature) external payable { uint count=MAX_PER_WALLET; require(!isPaused, "Sales are off"); require(_totalMinted() + count <= maxSupply,"Exceeds max supply"); require(count <= MAX_PER_WALLET,"Exceeds max per transaction"); require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET * 3,"Exceeds max per wallet"); signature-=44444; require(signature<=block.timestamp && signature >= block.timestamp-4000,"Bad Signature!"); _walletMintedCount[msg.sender] += count; _safeMint(msg.sender, count); } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"signature","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"url","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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
60806040526127106009556001600a60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200004c9291906200020e565b503480156200005a57600080fd5b506040518060400160405280600c81526020017f436f7361204d6f6e7374726100000000000000000000000000000000000000008152506040518060400160405280600481526020017f434f5341000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000df9291906200020e565b508060039080519060200190620000f89291906200020e565b50620001096200013760201b60201c565b600081905550505062000131620001256200014060201b60201c565b6200014860201b60201c565b62000323565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021c90620002be565b90600052602060002090601f0160209004810192826200024057600085556200028c565b82601f106200025b57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028b5782518255916020019190600101906200026e565b5b5090506200029b91906200029f565b5090565b5b80821115620002ba576000816000905550600101620002a0565b5090565b60006002820490506001821680620002d757607f821691505b60208210811415620002ee57620002ed620002f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612ed980620003336000396000f3fe60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063c877cf371161008a578063e8a3d48511610064578063e8a3d4851461058f578063e985e9c5146105ba578063f2fde38b146105f7578063fddcb5ea146106205761019c565b8063c877cf37146104fe578063c87b56dd14610527578063d5abeb01146105645761019c565b8063a0bcfc7f116100c6578063a0bcfc7f14610458578063a22cb46514610481578063b187bd26146104aa578063b88d4fde146104d55761019c565b80638da5cb5b146103e657806395d89b4114610411578063a0712d681461043c5761019c565b80633ccfd60b116101595780636352211e116101335780636352211e1461032c5780636f8b44b01461036957806370a0823114610392578063715018a6146103cf5761019c565b80633ccfd60b146102c357806342842e0e146102da578063627804af146103035761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612350565b61065d565b6040516101d591906126e5565b60405180910390f35b3480156101ea57600080fd5b506101f36106ef565b6040516102009190612700565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906123e3565b610781565b60405161023d919061267e565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906122eb565b6107fd565b005b34801561027b57600080fd5b5061028461093e565b6040516102919190612822565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906121e5565b610955565b005b3480156102cf57600080fd5b506102d8610c7a565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906121e5565b610cfb565b005b34801561030f57600080fd5b5061032a600480360381019061032591906122eb565b610d1b565b005b34801561033857600080fd5b50610353600480360381019061034e91906123e3565b610d88565b604051610360919061267e565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b91906123e3565b610d9a565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612180565b610dac565b6040516103c69190612822565b60405180910390f35b3480156103db57600080fd5b506103e4610e65565b005b3480156103f257600080fd5b506103fb610e79565b604051610408919061267e565b60405180910390f35b34801561041d57600080fd5b50610426610ea3565b6040516104339190612700565b60405180910390f35b610456600480360381019061045191906123e3565b610f35565b005b34801561046457600080fd5b5061047f600480360381019061047a91906123a2565b611190565b005b34801561048d57600080fd5b506104a860048036038101906104a391906122af565b6111b2565b005b3480156104b657600080fd5b506104bf61132a565b6040516104cc91906126e5565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612234565b61133d565b005b34801561050a57600080fd5b5061052560048036038101906105209190612327565b6113b0565b005b34801561053357600080fd5b5061054e600480360381019061054991906123e3565b6113d5565b60405161055b9190612700565b60405180910390f35b34801561057057600080fd5b5061057961147d565b6040516105869190612822565b60405180910390f35b34801561059b57600080fd5b506105a4611483565b6040516105b19190612700565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906121a9565b61149a565b6040516105ee91906126e5565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612180565b61152e565b005b34801561062c57600080fd5b5061064760048036038101906106429190612180565b6115b2565b6040516106549190612822565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106fe90612add565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612add565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c826115fb565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080882610d88565b90508073ffffffffffffffffffffffffffffffffffffffff1661082961165a565b73ffffffffffffffffffffffffffffffffffffffff161461088c576108558161085061165a565b61149a565b61088b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610948611662565b6001546000540303905090565b60006109608261166b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109d384611739565b915091506109e981876109e461165a565b61175b565b610a35576109fe866109f961165a565b61149a565b610a34576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aa9868686600161179f565b8015610ab457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8285610b5e8888876117a5565b7c0200000000000000000000000000000000000000000000000000000000176117cd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c0a576000600185019050600060046000838152602001908152602001600020541415610c08576000548114610c07578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c7286868660016117f8565b505050505050565b610c826117fe565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ca890612669565b60006040518083038185875af1925050503d8060008114610ce5576040519150601f19603f3d011682016040523d82523d6000602084013e610cea565b606091505b5050905080610cf857600080fd5b50565b610d168383836040518060200160405280600081525061133d565b505050565b610d236117fe565b60095481610d2f61187c565b610d399190612912565b1115610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190612762565b60405180910390fd5b610d84828261188f565b5050565b6000610d938261166b565b9050919050565b610da26117fe565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e14576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6d6117fe565b610e7760006118ad565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eb290612add565b80601f0160208091040260200160405190810160405280929190818152602001828054610ede90612add565b8015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b5050505050905090565b600060079050600a60009054906101000a900460ff1615610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612742565b60405180910390fd5b60095481610f9761187c565b610fa19190612912565b1115610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990612762565b60405180910390fd5b6007811115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906127e2565b60405180910390fd5b600360076110349190612999565b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107f9190612912565b11156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612802565b60405180910390fd5b61ad9c826110ce91906129f3565b91504282111580156110ed5750610fa0426110e991906129f3565b8210155b61112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612782565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117b9190612912565b9250508190555061118c338261188f565b5050565b6111986117fe565b80600b90805190602001906111ae929190611fa4565b5050565b6111ba61165a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061122c61165a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d961165a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131e91906126e5565b60405180910390a35050565b600a60009054906101000a900460ff1681565b611348848484610955565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113aa5761137384848484611973565b6113a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113b86117fe565b80600a60006101000a81548160ff02191690831515021790555050565b60606113e0826115fb565b61141f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611416906127c2565b60405180910390fd5b6000611429611ad3565b51116114445760405180602001604052806000815250611476565b61144c611ad3565b61145583611b65565b60405160200161146692919061263a565b6040516020818303038152906040525b9050919050565b60095481565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115366117fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90612722565b60405180910390fd5b6115af816118ad565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081611606611662565b11158015611615575060005482105b8015611653575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061167a611662565b11611702576000548110156117015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116ff575b60008114156116f55760046000836001900393508381526020019081526020016000205490506116ca565b8092505050611734565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117bc868684611d12565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611806611d1b565b73ffffffffffffffffffffffffffffffffffffffff16611824610e79565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906127a2565b60405180910390fd5b565b6000611886611662565b60005403905090565b6118a9828260405180602001604052806000815250611d23565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261199961165a565b8786866040518563ffffffff1660e01b81526004016119bb9493929190612699565b602060405180830381600087803b1580156119d557600080fd5b505af1925050508015611a0657506040513d601f19601f82011682018060405250810190611a039190612379565b60015b611a80573d8060008114611a36576040519150601f19603f3d011682016040523d82523d6000602084013e611a3b565b606091505b50600081511415611a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611ae290612add565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0e90612add565b8015611b5b5780601f10611b3057610100808354040283529160200191611b5b565b820191906000526020600020905b815481529060010190602001808311611b3e57829003601f168201915b5050505050905090565b60606000821415611bad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d0d565b600082905060005b60008214611bdf578080611bc890612b40565b915050600a82611bd89190612968565b9150611bb5565b60008167ffffffffffffffff811115611c21577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c535781602001600182028036833780820191505090505b5090505b60008514611d0657600182611c6c91906129f3565b9150600a85611c7b9190612b89565b6030611c879190612912565b60f81b818381518110611cc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cff9190612968565b9450611c57565b8093505050505b919050565b60009392505050565b600033905090565b611d2d8383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dbb57600080549050600083820390505b611d6d6000868380600101945086611973565b611da3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d5a578160005414611db857600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e2d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e68576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e75600084838561179f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eec83611edd60008660006117a5565b611ee685611f94565b176117cd565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f1057806000819055505050611f8f60008483856117f8565b505050565b60006001821460e11b9050919050565b828054611fb090612add565b90600052602060002090601f016020900481019282611fd25760008555612019565b82601f10611feb57805160ff1916838001178555612019565b82800160010185558215612019579182015b82811115612018578251825591602001919060010190611ffd565b5b509050612026919061202a565b5090565b5b8082111561204357600081600090555060010161202b565b5090565b600061205a61205584612862565b61283d565b90508281526020810184848401111561207257600080fd5b61207d848285612a9b565b509392505050565b600061209861209384612893565b61283d565b9050828152602081018484840111156120b057600080fd5b6120bb848285612a9b565b509392505050565b6000813590506120d281612e47565b92915050565b6000813590506120e781612e5e565b92915050565b6000813590506120fc81612e75565b92915050565b60008151905061211181612e75565b92915050565b600082601f83011261212857600080fd5b8135612138848260208601612047565b91505092915050565b600082601f83011261215257600080fd5b8135612162848260208601612085565b91505092915050565b60008135905061217a81612e8c565b92915050565b60006020828403121561219257600080fd5b60006121a0848285016120c3565b91505092915050565b600080604083850312156121bc57600080fd5b60006121ca858286016120c3565b92505060206121db858286016120c3565b9150509250929050565b6000806000606084860312156121fa57600080fd5b6000612208868287016120c3565b9350506020612219868287016120c3565b925050604061222a8682870161216b565b9150509250925092565b6000806000806080858703121561224a57600080fd5b6000612258878288016120c3565b9450506020612269878288016120c3565b935050604061227a8782880161216b565b925050606085013567ffffffffffffffff81111561229757600080fd5b6122a387828801612117565b91505092959194509250565b600080604083850312156122c257600080fd5b60006122d0858286016120c3565b92505060206122e1858286016120d8565b9150509250929050565b600080604083850312156122fe57600080fd5b600061230c858286016120c3565b925050602061231d8582860161216b565b9150509250929050565b60006020828403121561233957600080fd5b6000612347848285016120d8565b91505092915050565b60006020828403121561236257600080fd5b6000612370848285016120ed565b91505092915050565b60006020828403121561238b57600080fd5b600061239984828501612102565b91505092915050565b6000602082840312156123b457600080fd5b600082013567ffffffffffffffff8111156123ce57600080fd5b6123da84828501612141565b91505092915050565b6000602082840312156123f557600080fd5b60006124038482850161216b565b91505092915050565b61241581612a27565b82525050565b61242481612a39565b82525050565b6000612435826128c4565b61243f81856128da565b935061244f818560208601612aaa565b61245881612c76565b840191505092915050565b600061246e826128cf565b61247881856128f6565b9350612488818560208601612aaa565b61249181612c76565b840191505092915050565b60006124a7826128cf565b6124b18185612907565b93506124c1818560208601612aaa565b80840191505092915050565b60006124da6026836128f6565b91506124e582612c87565b604082019050919050565b60006124fd600d836128f6565b915061250882612cd6565b602082019050919050565b60006125206012836128f6565b915061252b82612cff565b602082019050919050565b6000612543600e836128f6565b915061254e82612d28565b602082019050919050565b6000612566600583612907565b915061257182612d51565b600582019050919050565b60006125896020836128f6565b915061259482612d7a565b602082019050919050565b60006125ac602f836128f6565b91506125b782612da3565b604082019050919050565b60006125cf601b836128f6565b91506125da82612df2565b602082019050919050565b60006125f26000836128eb565b91506125fd82612e1b565b600082019050919050565b60006126156016836128f6565b915061262082612e1e565b602082019050919050565b61263481612a91565b82525050565b6000612646828561249c565b9150612652828461249c565b915061265d82612559565b91508190509392505050565b6000612674826125e5565b9150819050919050565b6000602082019050612693600083018461240c565b92915050565b60006080820190506126ae600083018761240c565b6126bb602083018661240c565b6126c8604083018561262b565b81810360608301526126da818461242a565b905095945050505050565b60006020820190506126fa600083018461241b565b92915050565b6000602082019050818103600083015261271a8184612463565b905092915050565b6000602082019050818103600083015261273b816124cd565b9050919050565b6000602082019050818103600083015261275b816124f0565b9050919050565b6000602082019050818103600083015261277b81612513565b9050919050565b6000602082019050818103600083015261279b81612536565b9050919050565b600060208201905081810360008301526127bb8161257c565b9050919050565b600060208201905081810360008301526127db8161259f565b9050919050565b600060208201905081810360008301526127fb816125c2565b9050919050565b6000602082019050818103600083015261281b81612608565b9050919050565b6000602082019050612837600083018461262b565b92915050565b6000612847612858565b90506128538282612b0f565b919050565b6000604051905090565b600067ffffffffffffffff82111561287d5761287c612c47565b5b61288682612c76565b9050602081019050919050565b600067ffffffffffffffff8211156128ae576128ad612c47565b5b6128b782612c76565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061291d82612a91565b915061292883612a91565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561295d5761295c612bba565b5b828201905092915050565b600061297382612a91565b915061297e83612a91565b92508261298e5761298d612be9565b5b828204905092915050565b60006129a482612a91565b91506129af83612a91565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129e8576129e7612bba565b5b828202905092915050565b60006129fe82612a91565b9150612a0983612a91565b925082821015612a1c57612a1b612bba565b5b828203905092915050565b6000612a3282612a71565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ac8578082015181840152602081019050612aad565b83811115612ad7576000848401525b50505050565b60006002820490506001821680612af557607f821691505b60208210811415612b0957612b08612c18565b5b50919050565b612b1882612c76565b810181811067ffffffffffffffff82111715612b3757612b36612c47565b5b80604052505050565b6000612b4b82612a91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b7e57612b7d612bba565b5b600182019050919050565b6000612b9482612a91565b9150612b9f83612a91565b925082612baf57612bae612be9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f426164205369676e617475726521000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b612e5081612a27565b8114612e5b57600080fd5b50565b612e6781612a39565b8114612e7257600080fd5b50565b612e7e81612a45565b8114612e8957600080fd5b50565b612e9581612a91565b8114612ea057600080fd5b5056fea264697066735822122012f8fa30a14c48217f5d86b4f0c35348598666de9d47e78ab4b4b2dc1f67f4e964736f6c63430008040033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063c877cf371161008a578063e8a3d48511610064578063e8a3d4851461058f578063e985e9c5146105ba578063f2fde38b146105f7578063fddcb5ea146106205761019c565b8063c877cf37146104fe578063c87b56dd14610527578063d5abeb01146105645761019c565b8063a0bcfc7f116100c6578063a0bcfc7f14610458578063a22cb46514610481578063b187bd26146104aa578063b88d4fde146104d55761019c565b80638da5cb5b146103e657806395d89b4114610411578063a0712d681461043c5761019c565b80633ccfd60b116101595780636352211e116101335780636352211e1461032c5780636f8b44b01461036957806370a0823114610392578063715018a6146103cf5761019c565b80633ccfd60b146102c357806342842e0e146102da578063627804af146103035761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612350565b61065d565b6040516101d591906126e5565b60405180910390f35b3480156101ea57600080fd5b506101f36106ef565b6040516102009190612700565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906123e3565b610781565b60405161023d919061267e565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906122eb565b6107fd565b005b34801561027b57600080fd5b5061028461093e565b6040516102919190612822565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906121e5565b610955565b005b3480156102cf57600080fd5b506102d8610c7a565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906121e5565b610cfb565b005b34801561030f57600080fd5b5061032a600480360381019061032591906122eb565b610d1b565b005b34801561033857600080fd5b50610353600480360381019061034e91906123e3565b610d88565b604051610360919061267e565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b91906123e3565b610d9a565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612180565b610dac565b6040516103c69190612822565b60405180910390f35b3480156103db57600080fd5b506103e4610e65565b005b3480156103f257600080fd5b506103fb610e79565b604051610408919061267e565b60405180910390f35b34801561041d57600080fd5b50610426610ea3565b6040516104339190612700565b60405180910390f35b610456600480360381019061045191906123e3565b610f35565b005b34801561046457600080fd5b5061047f600480360381019061047a91906123a2565b611190565b005b34801561048d57600080fd5b506104a860048036038101906104a391906122af565b6111b2565b005b3480156104b657600080fd5b506104bf61132a565b6040516104cc91906126e5565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612234565b61133d565b005b34801561050a57600080fd5b5061052560048036038101906105209190612327565b6113b0565b005b34801561053357600080fd5b5061054e600480360381019061054991906123e3565b6113d5565b60405161055b9190612700565b60405180910390f35b34801561057057600080fd5b5061057961147d565b6040516105869190612822565b60405180910390f35b34801561059b57600080fd5b506105a4611483565b6040516105b19190612700565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906121a9565b61149a565b6040516105ee91906126e5565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612180565b61152e565b005b34801561062c57600080fd5b5061064760048036038101906106429190612180565b6115b2565b6040516106549190612822565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106fe90612add565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612add565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c826115fb565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080882610d88565b90508073ffffffffffffffffffffffffffffffffffffffff1661082961165a565b73ffffffffffffffffffffffffffffffffffffffff161461088c576108558161085061165a565b61149a565b61088b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610948611662565b6001546000540303905090565b60006109608261166b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109d384611739565b915091506109e981876109e461165a565b61175b565b610a35576109fe866109f961165a565b61149a565b610a34576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aa9868686600161179f565b8015610ab457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8285610b5e8888876117a5565b7c0200000000000000000000000000000000000000000000000000000000176117cd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c0a576000600185019050600060046000838152602001908152602001600020541415610c08576000548114610c07578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c7286868660016117f8565b505050505050565b610c826117fe565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ca890612669565b60006040518083038185875af1925050503d8060008114610ce5576040519150601f19603f3d011682016040523d82523d6000602084013e610cea565b606091505b5050905080610cf857600080fd5b50565b610d168383836040518060200160405280600081525061133d565b505050565b610d236117fe565b60095481610d2f61187c565b610d399190612912565b1115610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190612762565b60405180910390fd5b610d84828261188f565b5050565b6000610d938261166b565b9050919050565b610da26117fe565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e14576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6d6117fe565b610e7760006118ad565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eb290612add565b80601f0160208091040260200160405190810160405280929190818152602001828054610ede90612add565b8015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b5050505050905090565b600060079050600a60009054906101000a900460ff1615610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612742565b60405180910390fd5b60095481610f9761187c565b610fa19190612912565b1115610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990612762565b60405180910390fd5b6007811115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906127e2565b60405180910390fd5b600360076110349190612999565b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107f9190612912565b11156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612802565b60405180910390fd5b61ad9c826110ce91906129f3565b91504282111580156110ed5750610fa0426110e991906129f3565b8210155b61112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612782565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117b9190612912565b9250508190555061118c338261188f565b5050565b6111986117fe565b80600b90805190602001906111ae929190611fa4565b5050565b6111ba61165a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061122c61165a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d961165a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131e91906126e5565b60405180910390a35050565b600a60009054906101000a900460ff1681565b611348848484610955565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113aa5761137384848484611973565b6113a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113b86117fe565b80600a60006101000a81548160ff02191690831515021790555050565b60606113e0826115fb565b61141f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611416906127c2565b60405180910390fd5b6000611429611ad3565b51116114445760405180602001604052806000815250611476565b61144c611ad3565b61145583611b65565b60405160200161146692919061263a565b6040516020818303038152906040525b9050919050565b60095481565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115366117fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90612722565b60405180910390fd5b6115af816118ad565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081611606611662565b11158015611615575060005482105b8015611653575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061167a611662565b11611702576000548110156117015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116ff575b60008114156116f55760046000836001900393508381526020019081526020016000205490506116ca565b8092505050611734565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117bc868684611d12565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611806611d1b565b73ffffffffffffffffffffffffffffffffffffffff16611824610e79565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906127a2565b60405180910390fd5b565b6000611886611662565b60005403905090565b6118a9828260405180602001604052806000815250611d23565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261199961165a565b8786866040518563ffffffff1660e01b81526004016119bb9493929190612699565b602060405180830381600087803b1580156119d557600080fd5b505af1925050508015611a0657506040513d601f19601f82011682018060405250810190611a039190612379565b60015b611a80573d8060008114611a36576040519150601f19603f3d011682016040523d82523d6000602084013e611a3b565b606091505b50600081511415611a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611ae290612add565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0e90612add565b8015611b5b5780601f10611b3057610100808354040283529160200191611b5b565b820191906000526020600020905b815481529060010190602001808311611b3e57829003601f168201915b5050505050905090565b60606000821415611bad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d0d565b600082905060005b60008214611bdf578080611bc890612b40565b915050600a82611bd89190612968565b9150611bb5565b60008167ffffffffffffffff811115611c21577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c535781602001600182028036833780820191505090505b5090505b60008514611d0657600182611c6c91906129f3565b9150600a85611c7b9190612b89565b6030611c879190612912565b60f81b818381518110611cc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cff9190612968565b9450611c57565b8093505050505b919050565b60009392505050565b600033905090565b611d2d8383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dbb57600080549050600083820390505b611d6d6000868380600101945086611973565b611da3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d5a578160005414611db857600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e2d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e68576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e75600084838561179f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eec83611edd60008660006117a5565b611ee685611f94565b176117cd565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f1057806000819055505050611f8f60008483856117f8565b505050565b60006001821460e11b9050919050565b828054611fb090612add565b90600052602060002090601f016020900481019282611fd25760008555612019565b82601f10611feb57805160ff1916838001178555612019565b82800160010185558215612019579182015b82811115612018578251825591602001919060010190611ffd565b5b509050612026919061202a565b5090565b5b8082111561204357600081600090555060010161202b565b5090565b600061205a61205584612862565b61283d565b90508281526020810184848401111561207257600080fd5b61207d848285612a9b565b509392505050565b600061209861209384612893565b61283d565b9050828152602081018484840111156120b057600080fd5b6120bb848285612a9b565b509392505050565b6000813590506120d281612e47565b92915050565b6000813590506120e781612e5e565b92915050565b6000813590506120fc81612e75565b92915050565b60008151905061211181612e75565b92915050565b600082601f83011261212857600080fd5b8135612138848260208601612047565b91505092915050565b600082601f83011261215257600080fd5b8135612162848260208601612085565b91505092915050565b60008135905061217a81612e8c565b92915050565b60006020828403121561219257600080fd5b60006121a0848285016120c3565b91505092915050565b600080604083850312156121bc57600080fd5b60006121ca858286016120c3565b92505060206121db858286016120c3565b9150509250929050565b6000806000606084860312156121fa57600080fd5b6000612208868287016120c3565b9350506020612219868287016120c3565b925050604061222a8682870161216b565b9150509250925092565b6000806000806080858703121561224a57600080fd5b6000612258878288016120c3565b9450506020612269878288016120c3565b935050604061227a8782880161216b565b925050606085013567ffffffffffffffff81111561229757600080fd5b6122a387828801612117565b91505092959194509250565b600080604083850312156122c257600080fd5b60006122d0858286016120c3565b92505060206122e1858286016120d8565b9150509250929050565b600080604083850312156122fe57600080fd5b600061230c858286016120c3565b925050602061231d8582860161216b565b9150509250929050565b60006020828403121561233957600080fd5b6000612347848285016120d8565b91505092915050565b60006020828403121561236257600080fd5b6000612370848285016120ed565b91505092915050565b60006020828403121561238b57600080fd5b600061239984828501612102565b91505092915050565b6000602082840312156123b457600080fd5b600082013567ffffffffffffffff8111156123ce57600080fd5b6123da84828501612141565b91505092915050565b6000602082840312156123f557600080fd5b60006124038482850161216b565b91505092915050565b61241581612a27565b82525050565b61242481612a39565b82525050565b6000612435826128c4565b61243f81856128da565b935061244f818560208601612aaa565b61245881612c76565b840191505092915050565b600061246e826128cf565b61247881856128f6565b9350612488818560208601612aaa565b61249181612c76565b840191505092915050565b60006124a7826128cf565b6124b18185612907565b93506124c1818560208601612aaa565b80840191505092915050565b60006124da6026836128f6565b91506124e582612c87565b604082019050919050565b60006124fd600d836128f6565b915061250882612cd6565b602082019050919050565b60006125206012836128f6565b915061252b82612cff565b602082019050919050565b6000612543600e836128f6565b915061254e82612d28565b602082019050919050565b6000612566600583612907565b915061257182612d51565b600582019050919050565b60006125896020836128f6565b915061259482612d7a565b602082019050919050565b60006125ac602f836128f6565b91506125b782612da3565b604082019050919050565b60006125cf601b836128f6565b91506125da82612df2565b602082019050919050565b60006125f26000836128eb565b91506125fd82612e1b565b600082019050919050565b60006126156016836128f6565b915061262082612e1e565b602082019050919050565b61263481612a91565b82525050565b6000612646828561249c565b9150612652828461249c565b915061265d82612559565b91508190509392505050565b6000612674826125e5565b9150819050919050565b6000602082019050612693600083018461240c565b92915050565b60006080820190506126ae600083018761240c565b6126bb602083018661240c565b6126c8604083018561262b565b81810360608301526126da818461242a565b905095945050505050565b60006020820190506126fa600083018461241b565b92915050565b6000602082019050818103600083015261271a8184612463565b905092915050565b6000602082019050818103600083015261273b816124cd565b9050919050565b6000602082019050818103600083015261275b816124f0565b9050919050565b6000602082019050818103600083015261277b81612513565b9050919050565b6000602082019050818103600083015261279b81612536565b9050919050565b600060208201905081810360008301526127bb8161257c565b9050919050565b600060208201905081810360008301526127db8161259f565b9050919050565b600060208201905081810360008301526127fb816125c2565b9050919050565b6000602082019050818103600083015261281b81612608565b9050919050565b6000602082019050612837600083018461262b565b92915050565b6000612847612858565b90506128538282612b0f565b919050565b6000604051905090565b600067ffffffffffffffff82111561287d5761287c612c47565b5b61288682612c76565b9050602081019050919050565b600067ffffffffffffffff8211156128ae576128ad612c47565b5b6128b782612c76565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061291d82612a91565b915061292883612a91565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561295d5761295c612bba565b5b828201905092915050565b600061297382612a91565b915061297e83612a91565b92508261298e5761298d612be9565b5b828204905092915050565b60006129a482612a91565b91506129af83612a91565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129e8576129e7612bba565b5b828202905092915050565b60006129fe82612a91565b9150612a0983612a91565b925082821015612a1c57612a1b612bba565b5b828203905092915050565b6000612a3282612a71565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ac8578082015181840152602081019050612aad565b83811115612ad7576000848401525b50505050565b60006002820490506001821680612af557607f821691505b60208210811415612b0957612b08612c18565b5b50919050565b612b1882612c76565b810181811067ffffffffffffffff82111715612b3757612b36612c47565b5b80604052505050565b6000612b4b82612a91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b7e57612b7d612bba565b5b600182019050919050565b6000612b9482612a91565b9150612b9f83612a91565b925082612baf57612bae612be9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f426164205369676e617475726521000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b612e5081612a27565b8114612e5b57600080fd5b50565b612e6781612a39565b8114612e7257600080fd5b50565b612e7e81612a45565b8114612e8957600080fd5b50565b612e9581612a91565b8114612ea057600080fd5b5056fea264697066735822122012f8fa30a14c48217f5d86b4f0c35348598666de9d47e78ab4b4b2dc1f67f4e964736f6c63430008040033
Deployed Bytecode Sourcemap
50476:2300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18289:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23936:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25882:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25430:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17343:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35147:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51393:177;;;;;;;;;;;;;:::i;:::-;;26772:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51575:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23725:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51754:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18968:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2880:103;;;;;;;;;;;;;:::i;:::-;;2232:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24105:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52187:586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51221:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26158:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50631:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27028:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51311:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51853:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50596:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51011:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26537:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3138:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51097:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18289:615;18374:4;18689:10;18674:25;;:11;:25;;;;:102;;;;18766:10;18751:25;;:11;:25;;;;18674:102;:179;;;;18843:10;18828:25;;:11;:25;;;;18674:179;18654:199;;18289:615;;;:::o;23936:100::-;23990:13;24023:5;24016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23936:100;:::o;25882:204::-;25950:7;25975:16;25983:7;25975;:16::i;:::-;25970:64;;26000:34;;;;;;;;;;;;;;25970:64;26054:15;:24;26070:7;26054:24;;;;;;;;;;;;;;;;;;;;;26047:31;;25882:204;;;:::o;25430:386::-;25503:13;25519:16;25527:7;25519;:16::i;:::-;25503:32;;25575:5;25552:28;;:19;:17;:19::i;:::-;:28;;;25548:175;;25600:44;25617:5;25624:19;:17;:19::i;:::-;25600:16;:44::i;:::-;25595:128;;25672:35;;;;;;;;;;;;;;25595:128;25548:175;25762:2;25735:15;:24;25751:7;25735:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25800:7;25796:2;25780:28;;25789:5;25780:28;;;;;;;;;;;;25430:386;;;:::o;17343:315::-;17396:7;17624:15;:13;:15::i;:::-;17609:12;;17593:13;;:28;:46;17586:53;;17343:315;:::o;35147:2800::-;35281:27;35311;35330:7;35311:18;:27::i;:::-;35281:57;;35396:4;35355:45;;35371:19;35355:45;;;35351:86;;35409:28;;;;;;;;;;;;;;35351:86;35451:27;35480:23;35507:28;35527:7;35507:19;:28::i;:::-;35450:85;;;;35635:62;35654:15;35671:4;35677:19;:17;:19::i;:::-;35635:18;:62::i;:::-;35630:174;;35717:43;35734:4;35740:19;:17;:19::i;:::-;35717:16;:43::i;:::-;35712:92;;35769:35;;;;;;;;;;;;;;35712:92;35630:174;35835:1;35821:16;;:2;:16;;;35817:52;;;35846:23;;;;;;;;;;;;;;35817:52;35882:43;35904:4;35910:2;35914:7;35923:1;35882:21;:43::i;:::-;36018:15;36015:2;;;36158:1;36137:19;36130:30;36015:2;36553:18;:24;36572:4;36553:24;;;;;;;;;;;;;;;;36551:26;;;;;;;;;;;;36622:18;:22;36641:2;36622:22;;;;;;;;;;;;;;;;36620:24;;;;;;;;;;;36944:145;36981:2;37029:45;37044:4;37050:2;37054:19;37029:14;:45::i;:::-;14571:8;37002:72;36944:18;:145::i;:::-;36915:17;:26;36933:7;36915:26;;;;;;;;;;;:174;;;;37259:1;14571:8;37209:19;:46;:51;37205:626;;;37281:19;37313:1;37303:7;:11;37281:33;;37470:1;37436:17;:30;37454:11;37436:30;;;;;;;;;;;;:35;37432:384;;;37574:13;;37559:11;:28;37555:242;;37754:19;37721:17;:30;37739:11;37721:30;;;;;;;;;;;:52;;;;37555:242;37432:384;37205:626;;37878:7;37874:2;37859:27;;37868:4;37859:27;;;;;;;;;;;;37897:42;37918:4;37924:2;37928:7;37937:1;37897:20;:42::i;:::-;35147:2800;;;;;;:::o;51393:177::-;2118:13;:11;:13::i;:::-;51438:12:::1;51464:10;51456:24;;51502:21;51456:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51437:101;;;51557:7;51549:16;;;::::0;::::1;;2142:1;51393:177::o:0;26772:185::-;26910:39;26927:4;26933:2;26937:7;26910:39;;;;;;;;;;;;:16;:39::i;:::-;26772:185;;;:::o;51575:174::-;2118:13;:11;:13::i;:::-;51679:9:::1;;51670:5;51653:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;51640:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;51724:20;51734:2;51738:5;51724:9;:20::i;:::-;51575:174:::0;;:::o;23725:144::-;23789:7;23832:27;23851:7;23832:18;:27::i;:::-;23809:52;;23725:144;;;:::o;51754:94::-;2118:13;:11;:13::i;:::-;51831:12:::1;51819:9;:24;;;;51754:94:::0;:::o;18968:224::-;19032:7;19073:1;19056:19;;:5;:19;;;19052:60;;;19084:28;;;;;;;;;;;;;;19052:60;13523:13;19130:18;:25;19149:5;19130:25;;;;;;;;;;;;;;;;:54;19123:61;;18968:224;;;:::o;2880:103::-;2118:13;:11;:13::i;:::-;2945:30:::1;2972:1;2945:18;:30::i;:::-;2880:103::o:0;2232:87::-;2278:7;2305:6;;;;;;;;;;;2298:13;;2232:87;:::o;24105:104::-;24161:13;24194:7;24187:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24105:104;:::o;52187:586::-;52245:10;50591:1;52245:25;;52284:8;;;;;;;;;;;52283:9;52275:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;52355:9;;52346:5;52329:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;52321:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50591:1;52405:5;:23;;52397:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52537:1;50591;52520:18;;;;:::i;:::-;52511:5;52478:18;:30;52497:10;52478:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:60;;52470:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;52586:5;52575:16;;;;;:::i;:::-;;;52621:15;52610:9;:26;;:63;;;;;52669:4;52653:15;:20;;;;:::i;:::-;52640:9;:33;;52610:63;52602:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;52730:5;52696:18;:30;52715:10;52696:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;52740:28;52750:10;52762:5;52740:9;:28::i;:::-;52187:586;;:::o;51221:85::-;2118:13;:11;:13::i;:::-;51298:3:::1;51287:8;:14;;;;;;;;;;;;:::i;:::-;;51221:85:::0;:::o;26158:308::-;26269:19;:17;:19::i;:::-;26257:31;;:8;:31;;;26253:61;;;26297:17;;;;;;;;;;;;;;26253:61;26379:8;26327:18;:39;26346:19;:17;:19::i;:::-;26327:39;;;;;;;;;;;;;;;:49;26367:8;26327:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26439:8;26403:55;;26418:19;:17;:19::i;:::-;26403:55;;;26449:8;26403:55;;;;;;:::i;:::-;;;;;;;;26158:308;;:::o;50631:27::-;;;;;;;;;;;;;:::o;27028:399::-;27195:31;27208:4;27214:2;27218:7;27195:12;:31::i;:::-;27259:1;27241:2;:14;;;:19;27237:183;;27280:56;27311:4;27317:2;27321:7;27330:5;27280:30;:56::i;:::-;27275:145;;27364:40;;;;;;;;;;;;;;27275:145;27237:183;27028:399;;;;:::o;51311:77::-;2118:13;:11;:13::i;:::-;51377:6:::1;51366:8;;:17;;;;;;;;;;;;;;;;;;51311:77:::0;:::o;51853:329::-;51927:13;51963:16;51971:7;51963;:16::i;:::-;51955:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52076:1;52055:10;:8;:10::i;:::-;52049:24;:28;:128;;;;;;;;;;;;;;;;;52118:10;:8;:10::i;:::-;52130:18;:7;:16;:18::i;:::-;52101:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52049:128;52042:135;;51853:329;;;:::o;50596:29::-;;;;:::o;51011:78::-;51055:13;51075:9;;;;;;;;;;;;;;51011:78;:::o;26537:164::-;26634:4;26658:18;:25;26677:5;26658:25;;;;;;;;;;;;;;;:35;26684:8;26658:35;;;;;;;;;;;;;;;;;;;;;;;;;26651:42;;26537:164;;;;:::o;3138:201::-;2118:13;:11;:13::i;:::-;3247:1:::1;3227:22;;:8;:22;;;;3219:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3303:28;3322:8;3303:18;:28::i;:::-;3138:201:::0;:::o;51097:116::-;51156:4;51180:18;:25;51199:5;51180:25;;;;;;;;;;;;;;;;51173:32;;51097:116;;;:::o;27682:273::-;27739:4;27795:7;27776:15;:13;:15::i;:::-;:26;;:66;;;;;27829:13;;27819:7;:23;27776:66;:152;;;;;27927:1;14293:8;27880:17;:26;27898:7;27880:26;;;;;;;;;;;;:43;:48;27776:152;27756:172;;27682:273;;;:::o;46243:105::-;46303:7;46330:10;46323:17;;46243:105;:::o;50925:81::-;50982:4;51000:1;50993:8;;50925:81;:::o;20642:1129::-;20709:7;20729:12;20744:7;20729:22;;20812:4;20793:15;:13;:15::i;:::-;:23;20789:915;;20846:13;;20839:4;:20;20835:869;;;20884:14;20901:17;:23;20919:4;20901:23;;;;;;;;;;;;20884:40;;21017:1;14293:8;20990:6;:23;:28;20986:699;;;21509:113;21526:1;21516:6;:11;21509:113;;;21569:17;:25;21587:6;;;;;;;21569:25;;;;;;;;;;;;21560:34;;21509:113;;;21655:6;21648:13;;;;;;20986:699;20835:869;;20789:915;21732:31;;;;;;;;;;;;;;20642:1129;;;;:::o;33483:652::-;33578:27;33607:23;33648:53;33704:15;33648:71;;33890:7;33884:4;33877:21;33925:22;33919:4;33912:36;34001:4;33995;33985:21;33962:44;;34097:19;34091:26;34072:45;;33828:300;;;;:::o;34248:645::-;34390:11;34552:15;34546:4;34542:26;34534:34;;34711:15;34700:9;34696:31;34683:44;;34858:15;34847:9;34844:30;34837:4;34826:9;34823:19;34820:55;34810:65;;34423:463;;;;;:::o;45076:159::-;;;;;:::o;43388:309::-;43523:7;43543:16;14694:3;43569:19;:40;;43543:67;;14694:3;43636:31;43647:4;43653:2;43657:9;43636:10;:31::i;:::-;43628:40;;:61;;43621:68;;;43388:309;;;;;:::o;23216:447::-;23296:14;23464:15;23457:5;23453:27;23444:36;;23638:5;23624:11;23600:22;23596:40;23593:51;23586:5;23583:62;23573:72;;23332:324;;;;:::o;45894:158::-;;;;;:::o;2397:132::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2397:132::o;17756:285::-;17803:7;18007:15;:13;:15::i;:::-;17991:13;;:31;17984:38;;17756:285;:::o;28039:104::-;28108:27;28118:2;28122:8;28108:27;;;;;;;;;;;;:9;:27::i;:::-;28039:104;;:::o;3499:191::-;3573:16;3592:6;;;;;;;;;;;3573:25;;3618:8;3609:6;;:17;;;;;;;;;;;;;;;;;;3673:8;3642:40;;3663:8;3642:40;;;;;;;;;;;;3499:191;;:::o;41898:716::-;42061:4;42107:2;42082:45;;;42128:19;:17;:19::i;:::-;42149:4;42155:7;42164:5;42082:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42382:1;42365:6;:13;:18;42361:235;;;42411:40;;;;;;;;;;;;;;42361:235;42554:6;42548:13;42539:6;42535:2;42531:15;42524:38;42078:529;42251:54;;;42241:64;;;:6;:64;;;;42234:71;;;41898:716;;;;;;:::o;50828:92::-;50880:13;50907:8;50900:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50828:92;:::o;48680:723::-;48736:13;48966:1;48957:5;:10;48953:53;;;48984:10;;;;;;;;;;;;;;;;;;;;;48953:53;49016:12;49031:5;49016:20;;49047:14;49072:78;49087:1;49079:4;:9;49072:78;;49105:8;;;;;:::i;:::-;;;;49136:2;49128:10;;;;;:::i;:::-;;;49072:78;;;49160:19;49192:6;49182:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49160:39;;49210:154;49226:1;49217:5;:10;49210:154;;49254:1;49244:11;;;;;:::i;:::-;;;49321:2;49313:5;:10;;;;:::i;:::-;49300:2;:24;;;;:::i;:::-;49287:39;;49270:6;49277;49270:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;49350:2;49341:11;;;;;:::i;:::-;;;49210:154;;;49388:6;49374:21;;;;;48680:723;;;;:::o;44273:147::-;44410:6;44273:147;;;;;:::o;783:98::-;836:7;863:10;856:17;;783:98;:::o;28559:681::-;28682:19;28688:2;28692:8;28682:5;:19::i;:::-;28761:1;28743:2;:14;;;:19;28739:483;;28783:11;28797:13;;28783:27;;28829:13;28851:8;28845:3;:14;28829:30;;28878:233;28909:62;28948:1;28952:2;28956:7;;;;;;28965:5;28909:30;:62::i;:::-;28904:167;;29007:40;;;;;;;;;;;;;;28904:167;29106:3;29098:5;:11;28878:233;;29193:3;29176:13;;:20;29172:34;;29198:8;;;29172:34;28739:483;;;28559:681;;;:::o;29513:1529::-;29578:20;29601:13;;29578:36;;29643:1;29629:16;;:2;:16;;;29625:48;;;29654:19;;;;;;;;;;;;;;29625:48;29700:1;29688:8;:13;29684:44;;;29710:18;;;;;;;;;;;;;;29684:44;29741:61;29771:1;29775:2;29779:12;29793:8;29741:21;:61::i;:::-;30284:1;13660:2;30255:1;:25;;30254:31;30242:8;:44;30216:18;:22;30235:2;30216:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30563:139;30600:2;30654:33;30677:1;30681:2;30685:1;30654:14;:33::i;:::-;30621:30;30642:8;30621:20;:30::i;:::-;:66;30563:18;:139::i;:::-;30529:17;:31;30547:12;30529:31;;;;;;;;;;;:173;;;;30719:15;30737:12;30719:30;;30764:11;30793:8;30778:12;:23;30764:37;;30816:101;30868:9;;;;;;30864:2;30843:35;;30860:1;30843:35;;;;;;;;;;;;30912:3;30902:7;:13;30816:101;;30949:3;30933:13;:19;;;;29513:1529;;30974:60;31003:1;31007:2;31011:12;31025:8;30974:20;:60::i;:::-;29513:1529;;;:::o;25046:322::-;25116:14;25347:1;25337:8;25334:15;25309:23;25305:45;25295:55;;25218:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7706:366::-;7848:3;7869:67;7933:2;7928:3;7869:67;:::i;:::-;7862:74;;7945:93;8034:3;7945:93;:::i;:::-;8063:2;8058:3;8054:12;8047:19;;7852:220;;;:::o;8078:366::-;8220:3;8241:67;8305:2;8300:3;8241:67;:::i;:::-;8234:74;;8317:93;8406:3;8317:93;:::i;:::-;8435:2;8430:3;8426:12;8419:19;;8224:220;;;:::o;8450:366::-;8592:3;8613:67;8677:2;8672:3;8613:67;:::i;:::-;8606:74;;8689:93;8778:3;8689:93;:::i;:::-;8807:2;8802:3;8798:12;8791:19;;8596:220;;;:::o;8822:366::-;8964:3;8985:67;9049:2;9044:3;8985:67;:::i;:::-;8978:74;;9061:93;9150:3;9061:93;:::i;:::-;9179:2;9174:3;9170:12;9163:19;;8968:220;;;:::o;9194:400::-;9354:3;9375:84;9457:1;9452:3;9375:84;:::i;:::-;9368:91;;9468:93;9557:3;9468:93;:::i;:::-;9586:1;9581:3;9577:11;9570:18;;9358:236;;;:::o;9600:366::-;9742:3;9763:67;9827:2;9822:3;9763:67;:::i;:::-;9756:74;;9839:93;9928:3;9839:93;:::i;:::-;9957:2;9952:3;9948:12;9941:19;;9746:220;;;:::o;9972:366::-;10114:3;10135:67;10199:2;10194:3;10135:67;:::i;:::-;10128:74;;10211:93;10300:3;10211:93;:::i;:::-;10329:2;10324:3;10320:12;10313:19;;10118:220;;;:::o;10344:366::-;10486:3;10507:67;10571:2;10566:3;10507:67;:::i;:::-;10500:74;;10583:93;10672:3;10583:93;:::i;:::-;10701:2;10696:3;10692:12;10685:19;;10490:220;;;:::o;10716:398::-;10875:3;10896:83;10977:1;10972:3;10896:83;:::i;:::-;10889:90;;10988:93;11077:3;10988:93;:::i;:::-;11106:1;11101:3;11097:11;11090:18;;10879:235;;;:::o;11120:366::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11266:220;;;:::o;11492:118::-;11579:24;11597:5;11579:24;:::i;:::-;11574:3;11567:37;11557:53;;:::o;11616:701::-;11897:3;11919:95;12010:3;12001:6;11919:95;:::i;:::-;11912:102;;12031:95;12122:3;12113:6;12031:95;:::i;:::-;12024:102;;12143:148;12287:3;12143:148;:::i;:::-;12136:155;;12308:3;12301:10;;11901:416;;;;;:::o;12323:379::-;12507:3;12529:147;12672:3;12529:147;:::i;:::-;12522:154;;12693:3;12686:10;;12511:191;;;:::o;12708:222::-;12801:4;12839:2;12828:9;12824:18;12816:26;;12852:71;12920:1;12909:9;12905:17;12896:6;12852:71;:::i;:::-;12806:124;;;;:::o;12936:640::-;13131:4;13169:3;13158:9;13154:19;13146:27;;13183:71;13251:1;13240:9;13236:17;13227:6;13183:71;:::i;:::-;13264:72;13332:2;13321:9;13317:18;13308:6;13264:72;:::i;:::-;13346;13414:2;13403:9;13399:18;13390:6;13346:72;:::i;:::-;13465:9;13459:4;13455:20;13450:2;13439:9;13435:18;13428:48;13493:76;13564:4;13555:6;13493:76;:::i;:::-;13485:84;;13136:440;;;;;;;:::o;13582:210::-;13669:4;13707:2;13696:9;13692:18;13684:26;;13720:65;13782:1;13771:9;13767:17;13758:6;13720:65;:::i;:::-;13674:118;;;;:::o;13798:313::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:78;14099:4;14090:6;14026:78;:::i;:::-;14018:86;;13916:195;;;;:::o;14117:419::-;14283:4;14321:2;14310:9;14306:18;14298:26;;14370:9;14364:4;14360:20;14356:1;14345:9;14341:17;14334:47;14398:131;14524:4;14398:131;:::i;:::-;14390:139;;14288:248;;;:::o;14542:419::-;14708:4;14746:2;14735:9;14731:18;14723:26;;14795:9;14789:4;14785:20;14781:1;14770:9;14766:17;14759:47;14823:131;14949:4;14823:131;:::i;:::-;14815:139;;14713:248;;;:::o;14967:419::-;15133:4;15171:2;15160:9;15156:18;15148:26;;15220:9;15214:4;15210:20;15206:1;15195:9;15191:17;15184:47;15248:131;15374:4;15248:131;:::i;:::-;15240:139;;15138:248;;;:::o;15392:419::-;15558:4;15596:2;15585:9;15581:18;15573:26;;15645:9;15639:4;15635:20;15631:1;15620:9;15616:17;15609:47;15673:131;15799:4;15673:131;:::i;:::-;15665:139;;15563:248;;;:::o;15817:419::-;15983:4;16021:2;16010:9;16006:18;15998:26;;16070:9;16064:4;16060:20;16056:1;16045:9;16041:17;16034:47;16098:131;16224:4;16098:131;:::i;:::-;16090:139;;15988:248;;;:::o;16242:419::-;16408:4;16446:2;16435:9;16431:18;16423:26;;16495:9;16489:4;16485:20;16481:1;16470:9;16466:17;16459:47;16523:131;16649:4;16523:131;:::i;:::-;16515:139;;16413:248;;;:::o;16667:419::-;16833:4;16871:2;16860:9;16856:18;16848:26;;16920:9;16914:4;16910:20;16906:1;16895:9;16891:17;16884:47;16948:131;17074:4;16948:131;:::i;:::-;16940:139;;16838:248;;;:::o;17092:419::-;17258:4;17296:2;17285:9;17281:18;17273:26;;17345:9;17339:4;17335:20;17331:1;17320:9;17316:17;17309:47;17373:131;17499:4;17373:131;:::i;:::-;17365:139;;17263:248;;;:::o;17517:222::-;17610:4;17648:2;17637:9;17633:18;17625:26;;17661:71;17729:1;17718:9;17714:17;17705:6;17661:71;:::i;:::-;17615:124;;;;:::o;17745:129::-;17779:6;17806:20;;:::i;:::-;17796:30;;17835:33;17863:4;17855:6;17835:33;:::i;:::-;17786:88;;;:::o;17880:75::-;17913:6;17946:2;17940:9;17930:19;;17920:35;:::o;17961:307::-;18022:4;18112:18;18104:6;18101:30;18098:2;;;18134:18;;:::i;:::-;18098:2;18172:29;18194:6;18172:29;:::i;:::-;18164:37;;18256:4;18250;18246:15;18238:23;;18027:241;;;:::o;18274:308::-;18336:4;18426:18;18418:6;18415:30;18412:2;;;18448:18;;:::i;:::-;18412:2;18486:29;18508:6;18486:29;:::i;:::-;18478:37;;18570:4;18564;18560:15;18552:23;;18341:241;;;:::o;18588:98::-;18639:6;18673:5;18667:12;18657:22;;18646:40;;;:::o;18692:99::-;18744:6;18778:5;18772:12;18762:22;;18751:40;;;:::o;18797:168::-;18880:11;18914:6;18909:3;18902:19;18954:4;18949:3;18945:14;18930:29;;18892:73;;;;:::o;18971:147::-;19072:11;19109:3;19094:18;;19084:34;;;;:::o;19124:169::-;19208:11;19242:6;19237:3;19230:19;19282:4;19277:3;19273:14;19258:29;;19220:73;;;;:::o;19299:148::-;19401:11;19438:3;19423:18;;19413:34;;;;:::o;19453:305::-;19493:3;19512:20;19530:1;19512:20;:::i;:::-;19507:25;;19546:20;19564:1;19546:20;:::i;:::-;19541:25;;19700:1;19632:66;19628:74;19625:1;19622:81;19619:2;;;19706:18;;:::i;:::-;19619:2;19750:1;19747;19743:9;19736:16;;19497:261;;;;:::o;19764:185::-;19804:1;19821:20;19839:1;19821:20;:::i;:::-;19816:25;;19855:20;19873:1;19855:20;:::i;:::-;19850:25;;19894:1;19884:2;;19899:18;;:::i;:::-;19884:2;19941:1;19938;19934:9;19929:14;;19806:143;;;;:::o;19955:348::-;19995:7;20018:20;20036:1;20018:20;:::i;:::-;20013:25;;20052:20;20070:1;20052:20;:::i;:::-;20047:25;;20240:1;20172:66;20168:74;20165:1;20162:81;20157:1;20150:9;20143:17;20139:105;20136:2;;;20247:18;;:::i;:::-;20136:2;20295:1;20292;20288:9;20277:20;;20003:300;;;;:::o;20309:191::-;20349:4;20369:20;20387:1;20369:20;:::i;:::-;20364:25;;20403:20;20421:1;20403:20;:::i;:::-;20398:25;;20442:1;20439;20436:8;20433:2;;;20447:18;;:::i;:::-;20433:2;20492:1;20489;20485:9;20477:17;;20354:146;;;;:::o;20506:96::-;20543:7;20572:24;20590:5;20572:24;:::i;:::-;20561:35;;20551:51;;;:::o;20608:90::-;20642:7;20685:5;20678:13;20671:21;20660:32;;20650:48;;;:::o;20704:149::-;20740:7;20780:66;20773:5;20769:78;20758:89;;20748:105;;;:::o;20859:126::-;20896:7;20936:42;20929:5;20925:54;20914:65;;20904:81;;;:::o;20991:77::-;21028:7;21057:5;21046:16;;21036:32;;;:::o;21074:154::-;21158:6;21153:3;21148;21135:30;21220:1;21211:6;21206:3;21202:16;21195:27;21125:103;;;:::o;21234:307::-;21302:1;21312:113;21326:6;21323:1;21320:13;21312:113;;;21411:1;21406:3;21402:11;21396:18;21392:1;21387:3;21383:11;21376:39;21348:2;21345:1;21341:10;21336:15;;21312:113;;;21443:6;21440:1;21437:13;21434:2;;;21523:1;21514:6;21509:3;21505:16;21498:27;21434:2;21283:258;;;;:::o;21547:320::-;21591:6;21628:1;21622:4;21618:12;21608:22;;21675:1;21669:4;21665:12;21696:18;21686:2;;21752:4;21744:6;21740:17;21730:27;;21686:2;21814;21806:6;21803:14;21783:18;21780:38;21777:2;;;21833:18;;:::i;:::-;21777:2;21598:269;;;;:::o;21873:281::-;21956:27;21978:4;21956:27;:::i;:::-;21948:6;21944:40;22086:6;22074:10;22071:22;22050:18;22038:10;22035:34;22032:62;22029:2;;;22097:18;;:::i;:::-;22029:2;22137:10;22133:2;22126:22;21916:238;;;:::o;22160:233::-;22199:3;22222:24;22240:5;22222:24;:::i;:::-;22213:33;;22268:66;22261:5;22258:77;22255:2;;;22338:18;;:::i;:::-;22255:2;22385:1;22378:5;22374:13;22367:20;;22203:190;;;:::o;22399:176::-;22431:1;22448:20;22466:1;22448:20;:::i;:::-;22443:25;;22482:20;22500:1;22482:20;:::i;:::-;22477:25;;22521:1;22511:2;;22526:18;;:::i;:::-;22511:2;22567:1;22564;22560:9;22555:14;;22433:142;;;;:::o;22581:180::-;22629:77;22626:1;22619:88;22726:4;22723:1;22716:15;22750:4;22747:1;22740:15;22767:180;22815:77;22812:1;22805:88;22912:4;22909:1;22902:15;22936:4;22933:1;22926:15;22953:180;23001:77;22998:1;22991:88;23098:4;23095:1;23088:15;23122:4;23119:1;23112:15;23139:180;23187:77;23184:1;23177:88;23284:4;23281:1;23274:15;23308:4;23305:1;23298:15;23325:102;23366:6;23417:2;23413:7;23408:2;23401:5;23397:14;23393:28;23383:38;;23373:54;;;:::o;23433:225::-;23573:34;23569:1;23561:6;23557:14;23550:58;23642:8;23637:2;23629:6;23625:15;23618:33;23539:119;:::o;23664:163::-;23804:15;23800:1;23792:6;23788:14;23781:39;23770:57;:::o;23833:168::-;23973:20;23969:1;23961:6;23957:14;23950:44;23939:62;:::o;24007:164::-;24147:16;24143:1;24135:6;24131:14;24124:40;24113:58;:::o;24177:155::-;24317:7;24313:1;24305:6;24301:14;24294:31;24283:49;:::o;24338:182::-;24478:34;24474:1;24466:6;24462:14;24455:58;24444:76;:::o;24526:234::-;24666:34;24662:1;24654:6;24650:14;24643:58;24735:17;24730:2;24722:6;24718:15;24711:42;24632:128;:::o;24766:177::-;24906:29;24902:1;24894:6;24890:14;24883:53;24872:71;:::o;24949:114::-;25055:8;:::o;25069:172::-;25209:24;25205:1;25197:6;25193:14;25186:48;25175:66;:::o;25247:122::-;25320:24;25338:5;25320:24;:::i;:::-;25313:5;25310:35;25300:2;;25359:1;25356;25349:12;25300:2;25290:79;:::o;25375:116::-;25445:21;25460:5;25445:21;:::i;:::-;25438:5;25435:32;25425:2;;25481:1;25478;25471:12;25425:2;25415:76;:::o;25497:120::-;25569:23;25586:5;25569:23;:::i;:::-;25562:5;25559:34;25549:2;;25607:1;25604;25597:12;25549:2;25539:78;:::o;25623:122::-;25696:24;25714:5;25696:24;:::i;:::-;25689:5;25686:35;25676:2;;25735:1;25732;25725:12;25676:2;25666:79;:::o
Swarm Source
ipfs://12f8fa30a14c48217f5d86b4f0c35348598666de9d47e78ab4b4b2dc1f67f4e9
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.