ERC-721
Overview
Max Total Supply
185 BeautifulWorld
Holders
40
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 BeautifulWorldLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BeautifulWorld
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-16 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); 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; } /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.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 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` 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 auxillary 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 auxillary 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; assembly { // Cast aux without masking. 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; } /** * 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 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); 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-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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 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) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/dev/BeautifulWorld.sol pragma solidity >= 0.8.9 < 0.9.0; contract BeautifulWorld is Ownable, ERC721A { uint public price = 0.006 ether; uint public maxPerTx = 5; uint public totalFree = 2000; uint public maxSupply = 10000; uint256 public maxFreePerWallet = 5; bool public isAllowListActive = false; mapping(address => uint256) private _mintedFreeAmount; // metadata URI string private _baseTokenURI; constructor() ERC721A("BeautifulWorld", "BeautifulWorld") { } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function devMint(uint256 quantity) external onlyOwner { _safeMint(msg.sender, quantity); } function mint(uint256 amount) external payable{ uint cost = price; bool isFree = ((totalSupply() + amount < totalFree + 1) && (_mintedFreeAmount[msg.sender] + amount <= maxFreePerWallet)); if(isFree) { cost = 0; } require(isAllowListActive, "Public sale has not begun yet"); require(totalSupply() + amount < maxSupply + 1,"No more"); require(msg.value == amount * cost,"Please send the exact amount"); require(amount < maxPerTx + 1, "Max per TX reached"); require( _mintedFreeAmount[msg.sender] + amount <= maxFreePerWallet,"Exceeded Tx limit"); _mintedFreeAmount[msg.sender] += amount; _safeMint(msg.sender, amount); delete cost; } function ownerBatchMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < maxSupply + 1,"too many!"); _safeMint(msg.sender, amount); } function setIsAllowListActive(bool _isAllowListActive) external onlyOwner { isAllowListActive = _isAllowListActive; } function isPublicSaleOn() public view returns(bool) { return isAllowListActive; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setTotalFree(uint256 totalFree_) external onlyOwner { totalFree = totalFree_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function numberMinted(address minter) public view returns(uint256) { return _numberMinted(minter); } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns(string memory) { return _baseTokenURI; } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{ value: address(this).balance } (""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"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":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052661550f7dca700006009556005600a556107d0600b55612710600c556005600d556000600e60006101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600e81526020017f42656175746966756c576f726c640000000000000000000000000000000000008152506040518060400160405280600e81526020017f42656175746966756c576f726c64000000000000000000000000000000000000815250620000da620000ce6200011c60201b60201c565b6200012460201b60201c565b8160039081620000eb919062000467565b508060049081620000fd919062000467565b506200010e620001e860201b60201c565b60018190555050506200054e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026f57607f821691505b60208210810362000285576200028462000227565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b0565b620002fb8683620002b0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000348620003426200033c8462000313565b6200031d565b62000313565b9050919050565b6000819050919050565b620003648362000327565b6200037c62000373826200034f565b848454620002bd565b825550505050565b600090565b6200039362000384565b620003a081848462000359565b505050565b5b81811015620003c857620003bc60008262000389565b600181019050620003a6565b5050565b601f8211156200041757620003e1816200028b565b620003ec84620002a0565b81016020851015620003fc578190505b620004146200040b85620002a0565b830182620003a5565b50505b505050565b600082821c905092915050565b60006200043c600019846008026200041c565b1980831691505092915050565b600062000457838362000429565b9150826002028217905092915050565b6200047282620001ed565b67ffffffffffffffff8111156200048e576200048d620001f8565b5b6200049a825462000256565b620004a7828285620003cc565b600060209050601f831160018114620004df5760008415620004ca578287015190505b620004d6858262000449565b86555062000546565b601f198416620004ef866200028b565b60005b828110156200051957848901518255600182019150602085019450602081019050620004f2565b8683101562000539578489015162000535601f89168262000429565b8355505b6001600288020188555050505b505050505050565b61355f806200055e6000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063ac446002116100a0578063d5abeb011161006f578063d5abeb01146106e8578063dc33e68114610713578063e985e9c514610750578063f2fde38b1461078d578063f968adbe146107b6576101f9565b8063ac44600214610642578063b88d4fde14610659578063c6f6f21614610682578063c87b56dd146106ab576101f9565b8063a035b1fe116100dc578063a035b1fe146105a7578063a0712d68146105d2578063a22cb465146105ee578063a702735714610617576101f9565b80638da5cb5b146104ff5780638db89f071461052a57806391b7f5ed1461055357806395d89b411461057c576101f9565b8063375a069a11610190578063563aaf111161015f578063563aaf111461041c5780636352211e1461044557806370a0823114610482578063715018a6146104bf578063718bc4af146104d6576101f9565b8063375a069a146103765780633f5e47411461039f57806342842e0e146103ca57806355f804b3146103f3576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806329fc6bae14610320578063333e44e61461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906125b7565b6107e1565b60405161023291906125ff565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d91906126b3565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061270b565b610905565b60405161029a9190612779565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906127c0565b610981565b005b3480156102d857600080fd5b506102e1610b27565b6040516102ee919061280f565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061282a565b610b3e565b005b34801561032c57600080fd5b50610335610b4e565b60405161034291906125ff565b60405180910390f35b34801561035757600080fd5b50610360610b61565b60405161036d919061280f565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061270b565b610b67565b005b3480156103ab57600080fd5b506103b4610bf0565b6040516103c191906125ff565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec919061282a565b610c07565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906128e2565b610c27565b005b34801561042857600080fd5b50610443600480360381019061043e919061270b565b610cb9565b005b34801561045157600080fd5b5061046c6004803603810190610467919061270b565b610d3f565b6040516104799190612779565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a4919061292f565b610d51565b6040516104b6919061280f565b60405180910390f35b3480156104cb57600080fd5b506104d4610e09565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190612988565b610e91565b005b34801561050b57600080fd5b50610514610f2a565b6040516105219190612779565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061270b565b610f53565b005b34801561055f57600080fd5b5061057a6004803603810190610575919061270b565b61103e565b005b34801561058857600080fd5b506105916110c4565b60405161059e91906126b3565b60405180910390f35b3480156105b357600080fd5b506105bc611156565b6040516105c9919061280f565b60405180910390f35b6105ec60048036038101906105e7919061270b565b61115c565b005b3480156105fa57600080fd5b50610615600480360381019061061091906129b5565b611433565b005b34801561062357600080fd5b5061062c6115aa565b604051610639919061280f565b60405180910390f35b34801561064e57600080fd5b506106576115b0565b005b34801561066557600080fd5b50610680600480360381019061067b9190612b25565b6116db565b005b34801561068e57600080fd5b506106a960048036038101906106a4919061270b565b61174e565b005b3480156106b757600080fd5b506106d260048036038101906106cd919061270b565b6117d4565b6040516106df91906126b3565b60405180910390f35b3480156106f457600080fd5b506106fd611872565b60405161070a919061280f565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061292f565b611878565b604051610747919061280f565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612ba8565b61188a565b60405161078491906125ff565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af919061292f565b61191e565b005b3480156107c257600080fd5b506107cb611a15565b6040516107d8919061280f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088290612c17565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612c17565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b600061091082611a1b565b610946576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82611a7a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a12611b46565b73ffffffffffffffffffffffffffffffffffffffff1614610a7557610a3e81610a39611b46565b61188a565b610a74576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b31611b4e565b6002546001540303905090565b610b49838383611b53565b505050565b600e60009054906101000a900460ff1681565b600b5481565b610b6f611efa565b73ffffffffffffffffffffffffffffffffffffffff16610b8d610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90612c94565b60405180910390fd5b610bed3382611f02565b50565b6000600e60009054906101000a900460ff16905090565b610c22838383604051806020016040528060008152506116db565b505050565b610c2f611efa565b73ffffffffffffffffffffffffffffffffffffffff16610c4d610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90612c94565b60405180910390fd5b818160109182610cb4929190612e6b565b505050565b610cc1611efa565b73ffffffffffffffffffffffffffffffffffffffff16610cdf610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90612c94565b60405180910390fd5b80600b8190555050565b6000610d4a82611a7a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e11611efa565b73ffffffffffffffffffffffffffffffffffffffff16610e2f610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90612c94565b60405180910390fd5b610e8f6000611f20565b565b610e99611efa565b73ffffffffffffffffffffffffffffffffffffffff16610eb7610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490612c94565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f5b611efa565b73ffffffffffffffffffffffffffffffffffffffff16610f79610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690612c94565b60405180910390fd5b6001600c54610fde9190612f6a565b81610fe7610b27565b610ff19190612f6a565b10611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061300c565b60405180910390fd5b61103b3382611f02565b50565b611046611efa565b73ffffffffffffffffffffffffffffffffffffffff16611064610f2a565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190612c94565b60405180910390fd5b8060098190555050565b6060600480546110d390612c17565b80601f01602080910402602001604051908101604052809291908181526020018280546110ff90612c17565b801561114c5780601f106111215761010080835404028352916020019161114c565b820191906000526020600020905b81548152906001019060200180831161112f57829003601f168201915b5050505050905090565b60095481565b6000600954905060006001600b546111749190612f6a565b8361117d610b27565b6111879190612f6a565b1080156111e05750600d5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111dd9190612f6a565b11155b905080156111ed57600091505b600e60009054906101000a900460ff1661123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613078565b60405180910390fd5b6001600c5461124b9190612f6a565b83611254610b27565b61125e9190612f6a565b1061129e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611295906130e4565b60405180910390fd5b81836112aa9190613104565b34146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e2906131aa565b60405180910390fd5b6001600a546112fa9190612f6a565b831061133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613216565b60405180910390fd5b600d5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113899190612f6a565b11156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613282565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114199190612f6a565b9250508190555061142a3384611f02565b60009150505050565b61143b611b46565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006114ac611b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611559611b46565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161159e91906125ff565b60405180910390a35050565b600d5481565b6115b8611efa565b73ffffffffffffffffffffffffffffffffffffffff166115d6610f2a565b73ffffffffffffffffffffffffffffffffffffffff161461162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390612c94565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611652906132d3565b60006040518083038185875af1925050503d806000811461168f576040519150601f19603f3d011682016040523d82523d6000602084013e611694565b606091505b50509050806116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613334565b60405180910390fd5b50565b6116e6848484611b53565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117485761171184848484611fe4565b611747576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611756611efa565b73ffffffffffffffffffffffffffffffffffffffff16611774610f2a565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190612c94565b60405180910390fd5b80600a8190555050565b60606117df82611a1b565b611815576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061181f612134565b9050600081510361183f576040518060200160405280600081525061186a565b80611849846121c6565b60405160200161185a929190613390565b6040516020818303038152906040525b915050919050565b600c5481565b600061188382612220565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611926611efa565b73ffffffffffffffffffffffffffffffffffffffff16611944610f2a565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190612c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613426565b60405180910390fd5b611a1281611f20565b50565b600a5481565b600081611a26611b4e565b11158015611a35575060015482105b8015611a73575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611a89611b4e565b11611b0f57600154811015611b0e5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b0c575b60008103611b02576005600083600190039350838152602001908152602001600020549050611ad8565b8092505050611b41565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b5e82611a7a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bc5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611be6611b46565b73ffffffffffffffffffffffffffffffffffffffff161480611c155750611c1485611c0f611b46565b61188a565b5b80611c5a5750611c23611b46565b73ffffffffffffffffffffffffffffffffffffffff16611c4284610905565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cf9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d068585856001612277565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e038661227d565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611e8b5760006001840190506000600560008381526020019081526020016000205403611e89576001548114611e88578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef38585856001612287565b5050505050565b600033905090565b611f1c82826040518060200160405280600081525061228d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261200a611b46565b8786866040518563ffffffff1660e01b815260040161202c949392919061349b565b6020604051808303816000875af192505050801561206857506040513d601f19601f8201168201806040525081019061206591906134fc565b60015b6120e1573d8060008114612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b5060008151036120d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461214390612c17565b80601f016020809104026020016040519081016040528092919081815260200182805461216f90612c17565b80156121bc5780601f10612191576101008083540402835291602001916121bc565b820191906000526020600020905b81548152906001019060200180831161219f57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561220c57600183039250600a81066030018353600a810490506121ec565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122fa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612334576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123416000858386612277565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123a660018514612541565b901b60a042901b6123b68661227d565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124ba575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246a6000878480600101955087611fe4565b6124a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123fb5782600154146124b557600080fd5b612525565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124bb575b81600181905550505061253b6000858386612287565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125948161255f565b811461259f57600080fd5b50565b6000813590506125b18161258b565b92915050565b6000602082840312156125cd576125cc612555565b5b60006125db848285016125a2565b91505092915050565b60008115159050919050565b6125f9816125e4565b82525050565b600060208201905061261460008301846125f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612654578082015181840152602081019050612639565b83811115612663576000848401525b50505050565b6000601f19601f8301169050919050565b60006126858261261a565b61268f8185612625565b935061269f818560208601612636565b6126a881612669565b840191505092915050565b600060208201905081810360008301526126cd818461267a565b905092915050565b6000819050919050565b6126e8816126d5565b81146126f357600080fd5b50565b600081359050612705816126df565b92915050565b60006020828403121561272157612720612555565b5b600061272f848285016126f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061276382612738565b9050919050565b61277381612758565b82525050565b600060208201905061278e600083018461276a565b92915050565b61279d81612758565b81146127a857600080fd5b50565b6000813590506127ba81612794565b92915050565b600080604083850312156127d7576127d6612555565b5b60006127e5858286016127ab565b92505060206127f6858286016126f6565b9150509250929050565b612809816126d5565b82525050565b60006020820190506128246000830184612800565b92915050565b60008060006060848603121561284357612842612555565b5b6000612851868287016127ab565b9350506020612862868287016127ab565b9250506040612873868287016126f6565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126128a2576128a161287d565b5b8235905067ffffffffffffffff8111156128bf576128be612882565b5b6020830191508360018202830111156128db576128da612887565b5b9250929050565b600080602083850312156128f9576128f8612555565b5b600083013567ffffffffffffffff8111156129175761291661255a565b5b6129238582860161288c565b92509250509250929050565b60006020828403121561294557612944612555565b5b6000612953848285016127ab565b91505092915050565b612965816125e4565b811461297057600080fd5b50565b6000813590506129828161295c565b92915050565b60006020828403121561299e5761299d612555565b5b60006129ac84828501612973565b91505092915050565b600080604083850312156129cc576129cb612555565b5b60006129da858286016127ab565b92505060206129eb85828601612973565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a3282612669565b810181811067ffffffffffffffff82111715612a5157612a506129fa565b5b80604052505050565b6000612a6461254b565b9050612a708282612a29565b919050565b600067ffffffffffffffff821115612a9057612a8f6129fa565b5b612a9982612669565b9050602081019050919050565b82818337600083830152505050565b6000612ac8612ac384612a75565b612a5a565b905082815260208101848484011115612ae457612ae36129f5565b5b612aef848285612aa6565b509392505050565b600082601f830112612b0c57612b0b61287d565b5b8135612b1c848260208601612ab5565b91505092915050565b60008060008060808587031215612b3f57612b3e612555565b5b6000612b4d878288016127ab565b9450506020612b5e878288016127ab565b9350506040612b6f878288016126f6565b925050606085013567ffffffffffffffff811115612b9057612b8f61255a565b5b612b9c87828801612af7565b91505092959194509250565b60008060408385031215612bbf57612bbe612555565b5b6000612bcd858286016127ab565b9250506020612bde858286016127ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2f57607f821691505b602082108103612c4257612c41612be8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c7e602083612625565b9150612c8982612c48565b602082019050919050565b60006020820190508181036000830152612cad81612c71565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ce4565b612d2b8683612ce4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d68612d63612d5e846126d5565b612d43565b6126d5565b9050919050565b6000819050919050565b612d8283612d4d565b612d96612d8e82612d6f565b848454612cf1565b825550505050565b600090565b612dab612d9e565b612db6818484612d79565b505050565b5b81811015612dda57612dcf600082612da3565b600181019050612dbc565b5050565b601f821115612e1f57612df081612cbf565b612df984612cd4565b81016020851015612e08578190505b612e1c612e1485612cd4565b830182612dbb565b50505b505050565b600082821c905092915050565b6000612e4260001984600802612e24565b1980831691505092915050565b6000612e5b8383612e31565b9150826002028217905092915050565b612e758383612cb4565b67ffffffffffffffff811115612e8e57612e8d6129fa565b5b612e988254612c17565b612ea3828285612dde565b6000601f831160018114612ed25760008415612ec0578287013590505b612eca8582612e4f565b865550612f32565b601f198416612ee086612cbf565b60005b82811015612f0857848901358255600182019150602085019450602081019050612ee3565b86831015612f255784890135612f21601f891682612e31565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f75826126d5565b9150612f80836126d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fb557612fb4612f3b565b5b828201905092915050565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b6000612ff6600983612625565b915061300182612fc0565b602082019050919050565b6000602082019050818103600083015261302581612fe9565b9050919050565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b6000613062601d83612625565b915061306d8261302c565b602082019050919050565b6000602082019050818103600083015261309181613055565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006130ce600783612625565b91506130d982613098565b602082019050919050565b600060208201905081810360008301526130fd816130c1565b9050919050565b600061310f826126d5565b915061311a836126d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315357613152612f3b565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b6000613194601c83612625565b915061319f8261315e565b602082019050919050565b600060208201905081810360008301526131c381613187565b9050919050565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b6000613200601283612625565b915061320b826131ca565b602082019050919050565b6000602082019050818103600083015261322f816131f3565b9050919050565b7f4578636565646564205478206c696d6974000000000000000000000000000000600082015250565b600061326c601183612625565b915061327782613236565b602082019050919050565b6000602082019050818103600083015261329b8161325f565b9050919050565b600081905092915050565b50565b60006132bd6000836132a2565b91506132c8826132ad565b600082019050919050565b60006132de826132b0565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061331e601083612625565b9150613329826132e8565b602082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b600081905092915050565b600061336a8261261a565b6133748185613354565b9350613384818560208601612636565b80840191505092915050565b600061339c828561335f565b91506133a8828461335f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613410602683612625565b915061341b826133b4565b604082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061346d82613446565b6134778185613451565b9350613487818560208601612636565b61349081612669565b840191505092915050565b60006080820190506134b0600083018761276a565b6134bd602083018661276a565b6134ca6040830185612800565b81810360608301526134dc8184613462565b905095945050505050565b6000815190506134f68161258b565b92915050565b60006020828403121561351257613511612555565b5b6000613520848285016134e7565b9150509291505056fea2646970667358221220b553156bf56f94ffb5a01d897a44d54287f6edf4c5c1626c8a41e171c9a1f80f64736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063ac446002116100a0578063d5abeb011161006f578063d5abeb01146106e8578063dc33e68114610713578063e985e9c514610750578063f2fde38b1461078d578063f968adbe146107b6576101f9565b8063ac44600214610642578063b88d4fde14610659578063c6f6f21614610682578063c87b56dd146106ab576101f9565b8063a035b1fe116100dc578063a035b1fe146105a7578063a0712d68146105d2578063a22cb465146105ee578063a702735714610617576101f9565b80638da5cb5b146104ff5780638db89f071461052a57806391b7f5ed1461055357806395d89b411461057c576101f9565b8063375a069a11610190578063563aaf111161015f578063563aaf111461041c5780636352211e1461044557806370a0823114610482578063715018a6146104bf578063718bc4af146104d6576101f9565b8063375a069a146103765780633f5e47411461039f57806342842e0e146103ca57806355f804b3146103f3576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806329fc6bae14610320578063333e44e61461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906125b7565b6107e1565b60405161023291906125ff565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d91906126b3565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061270b565b610905565b60405161029a9190612779565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906127c0565b610981565b005b3480156102d857600080fd5b506102e1610b27565b6040516102ee919061280f565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061282a565b610b3e565b005b34801561032c57600080fd5b50610335610b4e565b60405161034291906125ff565b60405180910390f35b34801561035757600080fd5b50610360610b61565b60405161036d919061280f565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061270b565b610b67565b005b3480156103ab57600080fd5b506103b4610bf0565b6040516103c191906125ff565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec919061282a565b610c07565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906128e2565b610c27565b005b34801561042857600080fd5b50610443600480360381019061043e919061270b565b610cb9565b005b34801561045157600080fd5b5061046c6004803603810190610467919061270b565b610d3f565b6040516104799190612779565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a4919061292f565b610d51565b6040516104b6919061280f565b60405180910390f35b3480156104cb57600080fd5b506104d4610e09565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190612988565b610e91565b005b34801561050b57600080fd5b50610514610f2a565b6040516105219190612779565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061270b565b610f53565b005b34801561055f57600080fd5b5061057a6004803603810190610575919061270b565b61103e565b005b34801561058857600080fd5b506105916110c4565b60405161059e91906126b3565b60405180910390f35b3480156105b357600080fd5b506105bc611156565b6040516105c9919061280f565b60405180910390f35b6105ec60048036038101906105e7919061270b565b61115c565b005b3480156105fa57600080fd5b50610615600480360381019061061091906129b5565b611433565b005b34801561062357600080fd5b5061062c6115aa565b604051610639919061280f565b60405180910390f35b34801561064e57600080fd5b506106576115b0565b005b34801561066557600080fd5b50610680600480360381019061067b9190612b25565b6116db565b005b34801561068e57600080fd5b506106a960048036038101906106a4919061270b565b61174e565b005b3480156106b757600080fd5b506106d260048036038101906106cd919061270b565b6117d4565b6040516106df91906126b3565b60405180910390f35b3480156106f457600080fd5b506106fd611872565b60405161070a919061280f565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061292f565b611878565b604051610747919061280f565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612ba8565b61188a565b60405161078491906125ff565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af919061292f565b61191e565b005b3480156107c257600080fd5b506107cb611a15565b6040516107d8919061280f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088290612c17565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612c17565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b600061091082611a1b565b610946576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82611a7a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a12611b46565b73ffffffffffffffffffffffffffffffffffffffff1614610a7557610a3e81610a39611b46565b61188a565b610a74576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b31611b4e565b6002546001540303905090565b610b49838383611b53565b505050565b600e60009054906101000a900460ff1681565b600b5481565b610b6f611efa565b73ffffffffffffffffffffffffffffffffffffffff16610b8d610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90612c94565b60405180910390fd5b610bed3382611f02565b50565b6000600e60009054906101000a900460ff16905090565b610c22838383604051806020016040528060008152506116db565b505050565b610c2f611efa565b73ffffffffffffffffffffffffffffffffffffffff16610c4d610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90612c94565b60405180910390fd5b818160109182610cb4929190612e6b565b505050565b610cc1611efa565b73ffffffffffffffffffffffffffffffffffffffff16610cdf610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90612c94565b60405180910390fd5b80600b8190555050565b6000610d4a82611a7a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e11611efa565b73ffffffffffffffffffffffffffffffffffffffff16610e2f610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90612c94565b60405180910390fd5b610e8f6000611f20565b565b610e99611efa565b73ffffffffffffffffffffffffffffffffffffffff16610eb7610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490612c94565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f5b611efa565b73ffffffffffffffffffffffffffffffffffffffff16610f79610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690612c94565b60405180910390fd5b6001600c54610fde9190612f6a565b81610fe7610b27565b610ff19190612f6a565b10611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061300c565b60405180910390fd5b61103b3382611f02565b50565b611046611efa565b73ffffffffffffffffffffffffffffffffffffffff16611064610f2a565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190612c94565b60405180910390fd5b8060098190555050565b6060600480546110d390612c17565b80601f01602080910402602001604051908101604052809291908181526020018280546110ff90612c17565b801561114c5780601f106111215761010080835404028352916020019161114c565b820191906000526020600020905b81548152906001019060200180831161112f57829003601f168201915b5050505050905090565b60095481565b6000600954905060006001600b546111749190612f6a565b8361117d610b27565b6111879190612f6a565b1080156111e05750600d5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111dd9190612f6a565b11155b905080156111ed57600091505b600e60009054906101000a900460ff1661123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613078565b60405180910390fd5b6001600c5461124b9190612f6a565b83611254610b27565b61125e9190612f6a565b1061129e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611295906130e4565b60405180910390fd5b81836112aa9190613104565b34146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e2906131aa565b60405180910390fd5b6001600a546112fa9190612f6a565b831061133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613216565b60405180910390fd5b600d5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113899190612f6a565b11156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613282565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114199190612f6a565b9250508190555061142a3384611f02565b60009150505050565b61143b611b46565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006114ac611b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611559611b46565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161159e91906125ff565b60405180910390a35050565b600d5481565b6115b8611efa565b73ffffffffffffffffffffffffffffffffffffffff166115d6610f2a565b73ffffffffffffffffffffffffffffffffffffffff161461162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390612c94565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611652906132d3565b60006040518083038185875af1925050503d806000811461168f576040519150601f19603f3d011682016040523d82523d6000602084013e611694565b606091505b50509050806116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613334565b60405180910390fd5b50565b6116e6848484611b53565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117485761171184848484611fe4565b611747576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611756611efa565b73ffffffffffffffffffffffffffffffffffffffff16611774610f2a565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190612c94565b60405180910390fd5b80600a8190555050565b60606117df82611a1b565b611815576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061181f612134565b9050600081510361183f576040518060200160405280600081525061186a565b80611849846121c6565b60405160200161185a929190613390565b6040516020818303038152906040525b915050919050565b600c5481565b600061188382612220565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611926611efa565b73ffffffffffffffffffffffffffffffffffffffff16611944610f2a565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190612c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613426565b60405180910390fd5b611a1281611f20565b50565b600a5481565b600081611a26611b4e565b11158015611a35575060015482105b8015611a73575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611a89611b4e565b11611b0f57600154811015611b0e5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b0c575b60008103611b02576005600083600190039350838152602001908152602001600020549050611ad8565b8092505050611b41565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b5e82611a7a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bc5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611be6611b46565b73ffffffffffffffffffffffffffffffffffffffff161480611c155750611c1485611c0f611b46565b61188a565b5b80611c5a5750611c23611b46565b73ffffffffffffffffffffffffffffffffffffffff16611c4284610905565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cf9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d068585856001612277565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e038661227d565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611e8b5760006001840190506000600560008381526020019081526020016000205403611e89576001548114611e88578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef38585856001612287565b5050505050565b600033905090565b611f1c82826040518060200160405280600081525061228d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261200a611b46565b8786866040518563ffffffff1660e01b815260040161202c949392919061349b565b6020604051808303816000875af192505050801561206857506040513d601f19601f8201168201806040525081019061206591906134fc565b60015b6120e1573d8060008114612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b5060008151036120d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461214390612c17565b80601f016020809104026020016040519081016040528092919081815260200182805461216f90612c17565b80156121bc5780601f10612191576101008083540402835291602001916121bc565b820191906000526020600020905b81548152906001019060200180831161219f57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561220c57600183039250600a81066030018353600a810490506121ec565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122fa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612334576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123416000858386612277565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123a660018514612541565b901b60a042901b6123b68661227d565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124ba575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246a6000878480600101955087611fe4565b6124a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123fb5782600154146124b557600080fd5b612525565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124bb575b81600181905550505061253b6000858386612287565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125948161255f565b811461259f57600080fd5b50565b6000813590506125b18161258b565b92915050565b6000602082840312156125cd576125cc612555565b5b60006125db848285016125a2565b91505092915050565b60008115159050919050565b6125f9816125e4565b82525050565b600060208201905061261460008301846125f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612654578082015181840152602081019050612639565b83811115612663576000848401525b50505050565b6000601f19601f8301169050919050565b60006126858261261a565b61268f8185612625565b935061269f818560208601612636565b6126a881612669565b840191505092915050565b600060208201905081810360008301526126cd818461267a565b905092915050565b6000819050919050565b6126e8816126d5565b81146126f357600080fd5b50565b600081359050612705816126df565b92915050565b60006020828403121561272157612720612555565b5b600061272f848285016126f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061276382612738565b9050919050565b61277381612758565b82525050565b600060208201905061278e600083018461276a565b92915050565b61279d81612758565b81146127a857600080fd5b50565b6000813590506127ba81612794565b92915050565b600080604083850312156127d7576127d6612555565b5b60006127e5858286016127ab565b92505060206127f6858286016126f6565b9150509250929050565b612809816126d5565b82525050565b60006020820190506128246000830184612800565b92915050565b60008060006060848603121561284357612842612555565b5b6000612851868287016127ab565b9350506020612862868287016127ab565b9250506040612873868287016126f6565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126128a2576128a161287d565b5b8235905067ffffffffffffffff8111156128bf576128be612882565b5b6020830191508360018202830111156128db576128da612887565b5b9250929050565b600080602083850312156128f9576128f8612555565b5b600083013567ffffffffffffffff8111156129175761291661255a565b5b6129238582860161288c565b92509250509250929050565b60006020828403121561294557612944612555565b5b6000612953848285016127ab565b91505092915050565b612965816125e4565b811461297057600080fd5b50565b6000813590506129828161295c565b92915050565b60006020828403121561299e5761299d612555565b5b60006129ac84828501612973565b91505092915050565b600080604083850312156129cc576129cb612555565b5b60006129da858286016127ab565b92505060206129eb85828601612973565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a3282612669565b810181811067ffffffffffffffff82111715612a5157612a506129fa565b5b80604052505050565b6000612a6461254b565b9050612a708282612a29565b919050565b600067ffffffffffffffff821115612a9057612a8f6129fa565b5b612a9982612669565b9050602081019050919050565b82818337600083830152505050565b6000612ac8612ac384612a75565b612a5a565b905082815260208101848484011115612ae457612ae36129f5565b5b612aef848285612aa6565b509392505050565b600082601f830112612b0c57612b0b61287d565b5b8135612b1c848260208601612ab5565b91505092915050565b60008060008060808587031215612b3f57612b3e612555565b5b6000612b4d878288016127ab565b9450506020612b5e878288016127ab565b9350506040612b6f878288016126f6565b925050606085013567ffffffffffffffff811115612b9057612b8f61255a565b5b612b9c87828801612af7565b91505092959194509250565b60008060408385031215612bbf57612bbe612555565b5b6000612bcd858286016127ab565b9250506020612bde858286016127ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2f57607f821691505b602082108103612c4257612c41612be8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c7e602083612625565b9150612c8982612c48565b602082019050919050565b60006020820190508181036000830152612cad81612c71565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ce4565b612d2b8683612ce4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d68612d63612d5e846126d5565b612d43565b6126d5565b9050919050565b6000819050919050565b612d8283612d4d565b612d96612d8e82612d6f565b848454612cf1565b825550505050565b600090565b612dab612d9e565b612db6818484612d79565b505050565b5b81811015612dda57612dcf600082612da3565b600181019050612dbc565b5050565b601f821115612e1f57612df081612cbf565b612df984612cd4565b81016020851015612e08578190505b612e1c612e1485612cd4565b830182612dbb565b50505b505050565b600082821c905092915050565b6000612e4260001984600802612e24565b1980831691505092915050565b6000612e5b8383612e31565b9150826002028217905092915050565b612e758383612cb4565b67ffffffffffffffff811115612e8e57612e8d6129fa565b5b612e988254612c17565b612ea3828285612dde565b6000601f831160018114612ed25760008415612ec0578287013590505b612eca8582612e4f565b865550612f32565b601f198416612ee086612cbf565b60005b82811015612f0857848901358255600182019150602085019450602081019050612ee3565b86831015612f255784890135612f21601f891682612e31565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f75826126d5565b9150612f80836126d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fb557612fb4612f3b565b5b828201905092915050565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b6000612ff6600983612625565b915061300182612fc0565b602082019050919050565b6000602082019050818103600083015261302581612fe9565b9050919050565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b6000613062601d83612625565b915061306d8261302c565b602082019050919050565b6000602082019050818103600083015261309181613055565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006130ce600783612625565b91506130d982613098565b602082019050919050565b600060208201905081810360008301526130fd816130c1565b9050919050565b600061310f826126d5565b915061311a836126d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315357613152612f3b565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b6000613194601c83612625565b915061319f8261315e565b602082019050919050565b600060208201905081810360008301526131c381613187565b9050919050565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b6000613200601283612625565b915061320b826131ca565b602082019050919050565b6000602082019050818103600083015261322f816131f3565b9050919050565b7f4578636565646564205478206c696d6974000000000000000000000000000000600082015250565b600061326c601183612625565b915061327782613236565b602082019050919050565b6000602082019050818103600083015261329b8161325f565b9050919050565b600081905092915050565b50565b60006132bd6000836132a2565b91506132c8826132ad565b600082019050919050565b60006132de826132b0565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061331e601083612625565b9150613329826132e8565b602082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b600081905092915050565b600061336a8261261a565b6133748185613354565b9350613384818560208601612636565b80840191505092915050565b600061339c828561335f565b91506133a8828461335f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613410602683612625565b915061341b826133b4565b604082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061346d82613446565b6134778185613451565b9350613487818560208601612636565b61349081612669565b840191505092915050565b60006080820190506134b0600083018761276a565b6134bd602083018661276a565b6134ca6040830185612800565b81810360608301526134dc8184613462565b905095945050505050565b6000815190506134f68161258b565b92915050565b60006020828403121561351257613511612555565b5b6000613520848285016134e7565b9150509291505056fea2646970667358221220b553156bf56f94ffb5a01d897a44d54287f6edf4c5c1626c8a41e171c9a1f80f64736f6c634300080f0033
Deployed Bytecode Sourcemap
44023:2882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15230:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20243:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22311:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21771:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14284:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23197:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44334:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44181:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44722:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45945:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23438:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46475:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46136:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20032:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15909:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43110:103;;;;;;;;;;;;;:::i;:::-;;45807:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42459:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45624:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46048:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20412:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44075:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44846:768;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22587:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44284:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46715:181;;;;;;;;;;;;;:::i;:::-;;23694:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46240:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20587:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44232:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46347:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22966:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43368:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44133:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15230:615;15315:4;15630:10;15615:25;;:11;:25;;;;:102;;;;15707:10;15692:25;;:11;:25;;;;15615:102;:179;;;;15784:10;15769:25;;:11;:25;;;;15615:179;15595:199;;15230:615;;;:::o;20243:100::-;20297:13;20330:5;20323:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20243:100;:::o;22311:204::-;22379:7;22404:16;22412:7;22404;:16::i;:::-;22399:64;;22429:34;;;;;;;;;;;;;;22399:64;22483:15;:24;22499:7;22483:24;;;;;;;;;;;;;;;;;;;;;22476:31;;22311:204;;;:::o;21771:474::-;21844:13;21876:27;21895:7;21876:18;:27::i;:::-;21844:61;;21926:5;21920:11;;:2;:11;;;21916:48;;21940:24;;;;;;;;;;;;;;21916:48;22004:5;21981:28;;:19;:17;:19::i;:::-;:28;;;21977:175;;22029:44;22046:5;22053:19;:17;:19::i;:::-;22029:16;:44::i;:::-;22024:128;;22101:35;;;;;;;;;;;;;;22024:128;21977:175;22191:2;22164:15;:24;22180:7;22164:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22229:7;22225:2;22209:28;;22218:5;22209:28;;;;;;;;;;;;21833:412;21771:474;;:::o;14284:315::-;14337:7;14565:15;:13;:15::i;:::-;14550:12;;14534:13;;:28;:46;14527:53;;14284:315;:::o;23197:170::-;23331:28;23341:4;23347:2;23351:7;23331:9;:28::i;:::-;23197:170;;;:::o;44334:37::-;;;;;;;;;;;;;:::o;44181:45::-;;;;:::o;44722:114::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44797:31:::1;44807:10;44819:8;44797:9;:31::i;:::-;44722:114:::0;:::o;45945:95::-;45991:4;46015:17;;;;;;;;;;;46008:24;;45945:95;:::o;23438:185::-;23576:39;23593:4;23599:2;23603:7;23576:39;;;;;;;;;;;;:16;:39::i;:::-;23438:185;;;:::o;46475:106::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46566:7:::1;;46550:13;:23;;;;;;;:::i;:::-;;46475:106:::0;;:::o;46136:98::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46218:10:::1;46206:9;:22;;;;46136:98:::0;:::o;20032:144::-;20096:7;20139:27;20158:7;20139:18;:27::i;:::-;20116:52;;20032:144;;;:::o;15909:224::-;15973:7;16014:1;15997:19;;:5;:19;;;15993:60;;16025:28;;;;;;;;;;;;;;15993:60;11248:13;16071:18;:25;16090:5;16071:25;;;;;;;;;;;;;;;;:54;16064:61;;15909:224;;;:::o;43110:103::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43175:30:::1;43202:1;43175:18;:30::i;:::-;43110:103::o:0;45807:131::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45912:18:::1;45892:17;;:38;;;;;;;;;;;;;;;;;;45807:131:::0;:::o;42459:87::-;42505:7;42532:6;;;;;;;;;;;42525:13;;42459:87;:::o;45624:172::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45736:1:::1;45724:9;;:13;;;;:::i;:::-;45715:6;45699:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;45691:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45759:29;45769:10;45781:6;45759:9;:29::i;:::-;45624:172:::0;:::o;46048:82::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46118:6:::1;46110:5;:14;;;;46048:82:::0;:::o;20412:104::-;20468:13;20501:7;20494:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20412:104;:::o;44075:52::-;;;;:::o;44846:768::-;44905:9;44917:5;;44905:17;;44935:11;44988:1;44976:9;;:13;;;;:::i;:::-;44967:6;44951:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;44950:104;;;;;45037:16;;45027:6;44995:17;:29;45013:10;44995:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;44950:104;44935:120;;45071:6;45068:46;;;45101:1;45094:8;;45068:46;45132:17;;;;;;;;;;;45124:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45239:1;45227:9;;:13;;;;:::i;:::-;45218:6;45202:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;45194:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45292:4;45283:6;:13;;;;:::i;:::-;45270:9;:26;45262:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45367:1;45356:8;;:12;;;;:::i;:::-;45347:6;:21;45339:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;45453:16;;45443:6;45411:17;:29;45429:10;45411:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;45402:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;45536:6;45503:17;:29;45521:10;45503:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;45553:29;45563:10;45575:6;45553:9;:29::i;:::-;45595:11;;;44892:722;;44846:768;:::o;22587:308::-;22698:19;:17;:19::i;:::-;22686:31;;:8;:31;;;22682:61;;22726:17;;;;;;;;;;;;;;22682:61;22808:8;22756:18;:39;22775:19;:17;:19::i;:::-;22756:39;;;;;;;;;;;;;;;:49;22796:8;22756:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22868:8;22832:55;;22847:19;:17;:19::i;:::-;22832:55;;;22878:8;22832:55;;;;;;:::i;:::-;;;;;;;;22587:308;;:::o;44284:42::-;;;;:::o;46715:181::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46771:12:::1;46789:10;:15;;46813:21;46789:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46770:71;;;46860:7;46852:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;46759:137;46715:181::o:0;23694:396::-;23861:28;23871:4;23877:2;23881:7;23861:9;:28::i;:::-;23922:1;23904:2;:14;;;:19;23900:183;;23943:56;23974:4;23980:2;23984:7;23993:5;23943:30;:56::i;:::-;23938:145;;24027:40;;;;;;;;;;;;;;23938:145;23900:183;23694:396;;;;:::o;46240:94::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46319:9:::1;46308:8;:20;;;;46240:94:::0;:::o;20587:318::-;20660:13;20691:16;20699:7;20691;:16::i;:::-;20686:59;;20716:29;;;;;;;;;;;;;;20686:59;20758:21;20782:10;:8;:10::i;:::-;20758:34;;20835:1;20816:7;20810:21;:26;:87;;;;;;;;;;;;;;;;;20863:7;20872:18;20882:7;20872:9;:18::i;:::-;20846:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20810:87;20803:94;;;20587:318;;;:::o;44232:46::-;;;;:::o;46347:114::-;46405:7;46432:21;46446:6;46432:13;:21::i;:::-;46425:28;;46347:114;;;:::o;22966:164::-;23063:4;23087:18;:25;23106:5;23087:25;;;;;;;;;;;;;;;:35;23113:8;23087:35;;;;;;;;;;;;;;;;;;;;;;;;;23080:42;;22966:164;;;;:::o;43368:201::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43477:1:::1;43457:22;;:8;:22;;::::0;43449:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43533:28;43552:8;43533:18;:28::i;:::-;43368:201:::0;:::o;44133:42::-;;;;:::o;24345:273::-;24402:4;24458:7;24439:15;:13;:15::i;:::-;:26;;:66;;;;;24492:13;;24482:7;:23;24439:66;:152;;;;;24590:1;12018:8;24543:17;:26;24561:7;24543:26;;;;;;;;;;;;:43;:48;24439:152;24419:172;;24345:273;;;:::o;17547:1129::-;17614:7;17634:12;17649:7;17634:22;;17717:4;17698:15;:13;:15::i;:::-;:23;17694:915;;17751:13;;17744:4;:20;17740:869;;;17789:14;17806:17;:23;17824:4;17806:23;;;;;;;;;;;;17789:40;;17922:1;12018:8;17895:6;:23;:28;17891:699;;18414:113;18431:1;18421:6;:11;18414:113;;18474:17;:25;18492:6;;;;;;;18474:25;;;;;;;;;;;;18465:34;;18414:113;;;18560:6;18553:13;;;;;;17891:699;17766:843;17740:869;17694:915;18637:31;;;;;;;;;;;;;;17547:1129;;;;:::o;38327:105::-;38387:7;38414:10;38407:17;;38327:105;:::o;13807:92::-;13863:7;13807:92;:::o;29584:2515::-;29699:27;29729;29748:7;29729:18;:27::i;:::-;29699:57;;29814:4;29773:45;;29789:19;29773:45;;;29769:86;;29827:28;;;;;;;;;;;;;;29769:86;29868:22;29917:4;29894:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;29938:43;29955:4;29961:19;:17;:19::i;:::-;29938:16;:43::i;:::-;29894:87;:147;;;;30022:19;:17;:19::i;:::-;29998:43;;:20;30010:7;29998:11;:20::i;:::-;:43;;;29894:147;29868:174;;30060:17;30055:66;;30086:35;;;;;;;;;;;;;;30055:66;30150:1;30136:16;;:2;:16;;;30132:52;;30161:23;;;;;;;;;;;;;;30132:52;30197:43;30219:4;30225:2;30229:7;30238:1;30197:21;:43::i;:::-;30313:15;:24;30329:7;30313:24;;;;;;;;;;;;30306:31;;;;;;;;;;;30705:18;:24;30724:4;30705:24;;;;;;;;;;;;;;;;30703:26;;;;;;;;;;;;30774:18;:22;30793:2;30774:22;;;;;;;;;;;;;;;;30772:24;;;;;;;;;;;12300:8;11902:3;31155:15;:41;;31113:21;31131:2;31113:17;:21::i;:::-;:84;:128;31067:17;:26;31085:7;31067:26;;;;;;;;;;;:174;;;;31411:1;12300:8;31361:19;:46;:51;31357:626;;31433:19;31465:1;31455:7;:11;31433:33;;31622:1;31588:17;:30;31606:11;31588:30;;;;;;;;;;;;:35;31584:384;;31726:13;;31711:11;:28;31707:242;;31906:19;31873:17;:30;31891:11;31873:30;;;;;;;;;;;:52;;;;31707:242;31584:384;31414:569;31357:626;32030:7;32026:2;32011:27;;32020:4;32011:27;;;;;;;;;;;;32049:42;32070:4;32076:2;32080:7;32089:1;32049:20;:42::i;:::-;29688:2411;;29584:2515;;;:::o;41183:98::-;41236:7;41263:10;41256:17;;41183:98;:::o;24702:104::-;24771:27;24781:2;24785:8;24771:27;;;;;;;;;;;;:9;:27::i;:::-;24702:104;;:::o;43729:191::-;43803:16;43822:6;;;;;;;;;;;43803:25;;43848:8;43839:6;;:17;;;;;;;;;;;;;;;;;;43903:8;43872:40;;43893:8;43872:40;;;;;;;;;;;;43792:128;43729:191;:::o;35796:716::-;35959:4;36005:2;35980:45;;;36026:19;:17;:19::i;:::-;36047:4;36053:7;36062:5;35980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36280:1;36263:6;:13;:18;36259:235;;36309:40;;;;;;;;;;;;;;36259:235;36452:6;36446:13;36437:6;36433:2;36429:15;36422:38;35976:529;36149:54;;;36139:64;;;:6;:64;;;;36132:71;;;35796:716;;;;;;:::o;46590:111::-;46649:13;46682;46675:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46590:111;:::o;38538:1959::-;38595:17;39016:3;39009:4;39003:11;38999:21;38992:28;;39107:3;39101:4;39094:17;39213:3;39670:5;39800:1;39795:3;39791:11;39784:18;;39937:2;39931:4;39927:13;39923:2;39919:22;39914:3;39906:36;39978:2;39972:4;39968:13;39960:21;;39561:682;39997:4;39561:682;;;40172:1;40167:3;40163:11;40156:18;;40223:2;40217:4;40213:13;40209:2;40205:22;40200:3;40192:36;40093:2;40087:4;40083:13;40075:21;;39561:682;;;39565:431;40294:3;40289;40285:13;40409:2;40404:3;40400:12;40393:19;;40472:6;40467:3;40460:19;38634:1856;;38538:1959;;;:::o;16215:176::-;16276:7;11248:13;11385:2;16304:18;:25;16323:5;16304:25;;;;;;;;;;;;;;;;:49;;16303:80;16296:87;;16215:176;;;:::o;37160:159::-;;;;;:::o;21332:148::-;21396:14;21457:5;21447:15;;21332:148;;;:::o;37978:158::-;;;;;:::o;25179:2236::-;25302:20;25325:13;;25302:36;;25367:1;25353:16;;:2;:16;;;25349:48;;25378:19;;;;;;;;;;;;;;25349:48;25424:1;25412:8;:13;25408:44;;25434:18;;;;;;;;;;;;;;25408:44;25465:61;25495:1;25499:2;25503:12;25517:8;25465:21;:61::i;:::-;26069:1;11385:2;26040:1;:25;;26039:31;26027:8;:44;26001:18;:22;26020:2;26001:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;12165:3;26470:29;26497:1;26485:8;:13;26470:14;:29::i;:::-;:56;;11902:3;26407:15;:41;;26365:21;26383:2;26365:17;:21::i;:::-;:84;:162;26314:17;:31;26332:12;26314:31;;;;;;;;;;;:213;;;;26544:20;26567:12;26544:35;;26594:11;26623:8;26608:12;:23;26594:37;;26670:1;26652:2;:14;;;:19;26648:635;;26692:313;26748:12;26744:2;26723:38;;26740:1;26723:38;;;;;;;;;;;;26789:69;26828:1;26832:2;26836:14;;;;;;26852:5;26789:30;:69::i;:::-;26784:174;;26894:40;;;;;;;;;;;;;;26784:174;27000:3;26985:12;:18;26692:313;;27086:12;27069:13;;:29;27065:43;;27100:8;;;27065:43;26648:635;;;27149:119;27205:14;;;;;;27201:2;27180:40;;27197:1;27180:40;;;;;;;;;;;;27263:3;27248:12;:18;27149:119;;26648:635;27313:12;27297:13;:28;;;;25778:1559;;27347:60;27376:1;27380:2;27384:12;27398:8;27347:20;:60::i;:::-;25291:2124;25179:2236;;;:::o;21567:142::-;21625:14;21686:5;21676:15;;21567:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:323::-;8044:6;8093:2;8081:9;8072:7;8068:23;8064:32;8061:119;;;8099:79;;:::i;:::-;8061:119;8219:1;8244:50;8286:7;8277:6;8266:9;8262:22;8244:50;:::i;:::-;8234:60;;8190:114;7988:323;;;;:::o;8317:468::-;8382:6;8390;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8692:2;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8663:115;8317:468;;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11717:474::-;11785:6;11793;11842:2;11830:9;11821:7;11817:23;11813:32;11810:119;;;11848:79;;:::i;:::-;11810:119;11968:1;11993:53;12038:7;12029:6;12018:9;12014:22;11993:53;:::i;:::-;11983:63;;11939:117;12095:2;12121:53;12166:7;12157:6;12146:9;12142:22;12121:53;:::i;:::-;12111:63;;12066:118;11717:474;;;;;:::o;12197:180::-;12245:77;12242:1;12235:88;12342:4;12339:1;12332:15;12366:4;12363:1;12356:15;12383:320;12427:6;12464:1;12458:4;12454:12;12444:22;;12511:1;12505:4;12501:12;12532:18;12522:81;;12588:4;12580:6;12576:17;12566:27;;12522:81;12650:2;12642:6;12639:14;12619:18;12616:38;12613:84;;12669:18;;:::i;:::-;12613:84;12434:269;12383:320;;;:::o;12709:182::-;12849:34;12845:1;12837:6;12833:14;12826:58;12709:182;:::o;12897:366::-;13039:3;13060:67;13124:2;13119:3;13060:67;:::i;:::-;13053:74;;13136:93;13225:3;13136:93;:::i;:::-;13254:2;13249:3;13245:12;13238:19;;12897:366;;;:::o;13269:419::-;13435:4;13473:2;13462:9;13458:18;13450:26;;13522:9;13516:4;13512:20;13508:1;13497:9;13493:17;13486:47;13550:131;13676:4;13550:131;:::i;:::-;13542:139;;13269:419;;;:::o;13694:97::-;13753:6;13781:3;13771:13;;13694:97;;;;:::o;13797:141::-;13846:4;13869:3;13861:11;;13892:3;13889:1;13882:14;13926:4;13923:1;13913:18;13905:26;;13797:141;;;:::o;13944:93::-;13981:6;14028:2;14023;14016:5;14012:14;14008:23;13998:33;;13944:93;;;:::o;14043:107::-;14087:8;14137:5;14131:4;14127:16;14106:37;;14043:107;;;;:::o;14156:393::-;14225:6;14275:1;14263:10;14259:18;14298:97;14328:66;14317:9;14298:97;:::i;:::-;14416:39;14446:8;14435:9;14416:39;:::i;:::-;14404:51;;14488:4;14484:9;14477:5;14473:21;14464:30;;14537:4;14527:8;14523:19;14516:5;14513:30;14503:40;;14232:317;;14156:393;;;;;:::o;14555:60::-;14583:3;14604:5;14597:12;;14555:60;;;:::o;14621:142::-;14671:9;14704:53;14722:34;14731:24;14749:5;14731:24;:::i;:::-;14722:34;:::i;:::-;14704:53;:::i;:::-;14691:66;;14621:142;;;:::o;14769:75::-;14812:3;14833:5;14826:12;;14769:75;;;:::o;14850:269::-;14960:39;14991:7;14960:39;:::i;:::-;15021:91;15070:41;15094:16;15070:41;:::i;:::-;15062:6;15055:4;15049:11;15021:91;:::i;:::-;15015:4;15008:105;14926:193;14850:269;;;:::o;15125:73::-;15170:3;15125:73;:::o;15204:189::-;15281:32;;:::i;:::-;15322:65;15380:6;15372;15366:4;15322:65;:::i;:::-;15257:136;15204:189;;:::o;15399:186::-;15459:120;15476:3;15469:5;15466:14;15459:120;;;15530:39;15567:1;15560:5;15530:39;:::i;:::-;15503:1;15496:5;15492:13;15483:22;;15459:120;;;15399:186;;:::o;15591:543::-;15692:2;15687:3;15684:11;15681:446;;;15726:38;15758:5;15726:38;:::i;:::-;15810:29;15828:10;15810:29;:::i;:::-;15800:8;15796:44;15993:2;15981:10;15978:18;15975:49;;;16014:8;15999:23;;15975:49;16037:80;16093:22;16111:3;16093:22;:::i;:::-;16083:8;16079:37;16066:11;16037:80;:::i;:::-;15696:431;;15681:446;15591:543;;;:::o;16140:117::-;16194:8;16244:5;16238:4;16234:16;16213:37;;16140:117;;;;:::o;16263:169::-;16307:6;16340:51;16388:1;16384:6;16376:5;16373:1;16369:13;16340:51;:::i;:::-;16336:56;16421:4;16415;16411:15;16401:25;;16314:118;16263:169;;;;:::o;16437:295::-;16513:4;16659:29;16684:3;16678:4;16659:29;:::i;:::-;16651:37;;16721:3;16718:1;16714:11;16708:4;16705:21;16697:29;;16437:295;;;;:::o;16737:1403::-;16861:44;16901:3;16896;16861:44;:::i;:::-;16970:18;16962:6;16959:30;16956:56;;;16992:18;;:::i;:::-;16956:56;17036:38;17068:4;17062:11;17036:38;:::i;:::-;17121:67;17181:6;17173;17167:4;17121:67;:::i;:::-;17215:1;17244:2;17236:6;17233:14;17261:1;17256:632;;;;17932:1;17949:6;17946:84;;;18005:9;18000:3;17996:19;17983:33;17974:42;;17946:84;18056:67;18116:6;18109:5;18056:67;:::i;:::-;18050:4;18043:81;17905:229;17226:908;;17256:632;17308:4;17304:9;17296:6;17292:22;17342:37;17374:4;17342:37;:::i;:::-;17401:1;17415:215;17429:7;17426:1;17423:14;17415:215;;;17515:9;17510:3;17506:19;17493:33;17485:6;17478:49;17566:1;17558:6;17554:14;17544:24;;17613:2;17602:9;17598:18;17585:31;;17452:4;17449:1;17445:12;17440:17;;17415:215;;;17658:6;17649:7;17646:19;17643:186;;;17723:9;17718:3;17714:19;17701:33;17766:48;17808:4;17800:6;17796:17;17785:9;17766:48;:::i;:::-;17758:6;17751:64;17666:163;17643:186;17875:1;17871;17863:6;17859:14;17855:22;17849:4;17842:36;17263:625;;;17226:908;;16836:1304;;;16737:1403;;;:::o;18146:180::-;18194:77;18191:1;18184:88;18291:4;18288:1;18281:15;18315:4;18312:1;18305:15;18332:305;18372:3;18391:20;18409:1;18391:20;:::i;:::-;18386:25;;18425:20;18443:1;18425:20;:::i;:::-;18420:25;;18579:1;18511:66;18507:74;18504:1;18501:81;18498:107;;;18585:18;;:::i;:::-;18498:107;18629:1;18626;18622:9;18615:16;;18332:305;;;;:::o;18643:159::-;18783:11;18779:1;18771:6;18767:14;18760:35;18643:159;:::o;18808:365::-;18950:3;18971:66;19035:1;19030:3;18971:66;:::i;:::-;18964:73;;19046:93;19135:3;19046:93;:::i;:::-;19164:2;19159:3;19155:12;19148:19;;18808:365;;;:::o;19179:419::-;19345:4;19383:2;19372:9;19368:18;19360:26;;19432:9;19426:4;19422:20;19418:1;19407:9;19403:17;19396:47;19460:131;19586:4;19460:131;:::i;:::-;19452:139;;19179:419;;;:::o;19604:179::-;19744:31;19740:1;19732:6;19728:14;19721:55;19604:179;:::o;19789:366::-;19931:3;19952:67;20016:2;20011:3;19952:67;:::i;:::-;19945:74;;20028:93;20117:3;20028:93;:::i;:::-;20146:2;20141:3;20137:12;20130:19;;19789:366;;;:::o;20161:419::-;20327:4;20365:2;20354:9;20350:18;20342:26;;20414:9;20408:4;20404:20;20400:1;20389:9;20385:17;20378:47;20442:131;20568:4;20442:131;:::i;:::-;20434:139;;20161:419;;;:::o;20586:157::-;20726:9;20722:1;20714:6;20710:14;20703:33;20586:157;:::o;20749:365::-;20891:3;20912:66;20976:1;20971:3;20912:66;:::i;:::-;20905:73;;20987:93;21076:3;20987:93;:::i;:::-;21105:2;21100:3;21096:12;21089:19;;20749:365;;;:::o;21120:419::-;21286:4;21324:2;21313:9;21309:18;21301:26;;21373:9;21367:4;21363:20;21359:1;21348:9;21344:17;21337:47;21401:131;21527:4;21401:131;:::i;:::-;21393:139;;21120:419;;;:::o;21545:348::-;21585:7;21608:20;21626:1;21608:20;:::i;:::-;21603:25;;21642:20;21660:1;21642:20;:::i;:::-;21637:25;;21830:1;21762:66;21758:74;21755:1;21752:81;21747:1;21740:9;21733:17;21729:105;21726:131;;;21837:18;;:::i;:::-;21726:131;21885:1;21882;21878:9;21867:20;;21545:348;;;;:::o;21899:178::-;22039:30;22035:1;22027:6;22023:14;22016:54;21899:178;:::o;22083:366::-;22225:3;22246:67;22310:2;22305:3;22246:67;:::i;:::-;22239:74;;22322:93;22411:3;22322:93;:::i;:::-;22440:2;22435:3;22431:12;22424:19;;22083:366;;;:::o;22455:419::-;22621:4;22659:2;22648:9;22644:18;22636:26;;22708:9;22702:4;22698:20;22694:1;22683:9;22679:17;22672:47;22736:131;22862:4;22736:131;:::i;:::-;22728:139;;22455:419;;;:::o;22880:168::-;23020:20;23016:1;23008:6;23004:14;22997:44;22880:168;:::o;23054:366::-;23196:3;23217:67;23281:2;23276:3;23217:67;:::i;:::-;23210:74;;23293:93;23382:3;23293:93;:::i;:::-;23411:2;23406:3;23402:12;23395:19;;23054:366;;;:::o;23426:419::-;23592:4;23630:2;23619:9;23615:18;23607:26;;23679:9;23673:4;23669:20;23665:1;23654:9;23650:17;23643:47;23707:131;23833:4;23707:131;:::i;:::-;23699:139;;23426:419;;;:::o;23851:167::-;23991:19;23987:1;23979:6;23975:14;23968:43;23851:167;:::o;24024:366::-;24166:3;24187:67;24251:2;24246:3;24187:67;:::i;:::-;24180:74;;24263:93;24352:3;24263:93;:::i;:::-;24381:2;24376:3;24372:12;24365:19;;24024:366;;;:::o;24396:419::-;24562:4;24600:2;24589:9;24585:18;24577:26;;24649:9;24643:4;24639:20;24635:1;24624:9;24620:17;24613:47;24677:131;24803:4;24677:131;:::i;:::-;24669:139;;24396:419;;;:::o;24821:147::-;24922:11;24959:3;24944:18;;24821:147;;;;:::o;24974:114::-;;:::o;25094:398::-;25253:3;25274:83;25355:1;25350:3;25274:83;:::i;:::-;25267:90;;25366:93;25455:3;25366:93;:::i;:::-;25484:1;25479:3;25475:11;25468:18;;25094:398;;;:::o;25498:379::-;25682:3;25704:147;25847:3;25704:147;:::i;:::-;25697:154;;25868:3;25861:10;;25498:379;;;:::o;25883:166::-;26023:18;26019:1;26011:6;26007:14;26000:42;25883:166;:::o;26055:366::-;26197:3;26218:67;26282:2;26277:3;26218:67;:::i;:::-;26211:74;;26294:93;26383:3;26294:93;:::i;:::-;26412:2;26407:3;26403:12;26396:19;;26055:366;;;:::o;26427:419::-;26593:4;26631:2;26620:9;26616:18;26608:26;;26680:9;26674:4;26670:20;26666:1;26655:9;26651:17;26644:47;26708:131;26834:4;26708:131;:::i;:::-;26700:139;;26427:419;;;:::o;26852:148::-;26954:11;26991:3;26976:18;;26852:148;;;;:::o;27006:377::-;27112:3;27140:39;27173:5;27140:39;:::i;:::-;27195:89;27277:6;27272:3;27195:89;:::i;:::-;27188:96;;27293:52;27338:6;27333:3;27326:4;27319:5;27315:16;27293:52;:::i;:::-;27370:6;27365:3;27361:16;27354:23;;27116:267;27006:377;;;;:::o;27389:435::-;27569:3;27591:95;27682:3;27673:6;27591:95;:::i;:::-;27584:102;;27703:95;27794:3;27785:6;27703:95;:::i;:::-;27696:102;;27815:3;27808:10;;27389:435;;;;;:::o;27830:225::-;27970:34;27966:1;27958:6;27954:14;27947:58;28039:8;28034:2;28026:6;28022:15;28015:33;27830:225;:::o;28061:366::-;28203:3;28224:67;28288:2;28283:3;28224:67;:::i;:::-;28217:74;;28300:93;28389:3;28300:93;:::i;:::-;28418:2;28413:3;28409:12;28402:19;;28061:366;;;:::o;28433:419::-;28599:4;28637:2;28626:9;28622:18;28614:26;;28686:9;28680:4;28676:20;28672:1;28661:9;28657:17;28650:47;28714:131;28840:4;28714:131;:::i;:::-;28706:139;;28433:419;;;:::o;28858:98::-;28909:6;28943:5;28937:12;28927:22;;28858:98;;;:::o;28962:168::-;29045:11;29079:6;29074:3;29067:19;29119:4;29114:3;29110:14;29095:29;;28962:168;;;;:::o;29136:360::-;29222:3;29250:38;29282:5;29250:38;:::i;:::-;29304:70;29367:6;29362:3;29304:70;:::i;:::-;29297:77;;29383:52;29428:6;29423:3;29416:4;29409:5;29405:16;29383:52;:::i;:::-;29460:29;29482:6;29460:29;:::i;:::-;29455:3;29451:39;29444:46;;29226:270;29136:360;;;;:::o;29502:640::-;29697:4;29735:3;29724:9;29720:19;29712:27;;29749:71;29817:1;29806:9;29802:17;29793:6;29749:71;:::i;:::-;29830:72;29898:2;29887:9;29883:18;29874:6;29830:72;:::i;:::-;29912;29980:2;29969:9;29965:18;29956:6;29912:72;:::i;:::-;30031:9;30025:4;30021:20;30016:2;30005:9;30001:18;29994:48;30059:76;30130:4;30121:6;30059:76;:::i;:::-;30051:84;;29502:640;;;;;;;:::o;30148:141::-;30204:5;30235:6;30229:13;30220:22;;30251:32;30277:5;30251:32;:::i;:::-;30148:141;;;;:::o;30295:349::-;30364:6;30413:2;30401:9;30392:7;30388:23;30384:32;30381:119;;;30419:79;;:::i;:::-;30381:119;30539:1;30564:63;30619:7;30610:6;30599:9;30595:22;30564:63;:::i;:::-;30554:73;;30510:127;30295:349;;;;:::o
Swarm Source
ipfs://b553156bf56f94ffb5a01d897a44d54287f6edf4c5c1626c8a41e171c9a1f80f
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.