ERC-721
Overview
Max Total Supply
1,696 AIAnime
Holders
169
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 AIAnimeLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AIAnime
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-28 */ /** *Submitted for verification at Etherscan.io on 2022-05-23 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: Pepefers.sol pragma solidity ^0.8.4; /** * @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 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function totalSupply() public view returns (uint256) { return currentIndex; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ // function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { // require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); // string memory baseURI = _baseURI(); // return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; // } bool metadataReveled = false; function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); if (metadataReveled){ return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } else{ return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI)) : ''; } } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } 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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract AIAnime is ERC721A, Ownable, ReentrancyGuard{ using Strings for uint256; uint256 public PRICE; uint256 public MAX_SUPPLY; string private BASE_URI; uint256 public FREE_MINT_LIMIT_PER_WALLET; uint256 public MAX_MINT_AMOUNT_PER_TX; bool public IS_SALE_ACTIVE; uint256 public FREE_MINT_IS_ALLOWED_UNTIL; // Free mint is allowed until x mint bool public METADATA_FROZEN; mapping(address => uint256) private freeMintCountMap; constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("AIAnime", "AIAnime") { PRICE = price; MAX_SUPPLY = maxSupply; BASE_URI = baseUri; FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; IS_SALE_ACTIVE = isSaleActive; FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } /** FREE MINT **/ function updateFreeMintCount(address minter, uint256 count) private { freeMintCountMap[minter] += count; } /** GETTERS **/ function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } /** SETTERS **/ function setMetadataReleved() external onlyOwner { metadataReveled = true; } function setPrice(uint256 customPrice) external onlyOwner { PRICE = customPrice; } function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner { require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply"); require(newMaxSupply >= currentIndex, "Invalid new max supply"); MAX_SUPPLY = newMaxSupply; } function setBaseURI(string memory customBaseURI_) external onlyOwner { require(!METADATA_FROZEN, "Metadata frozen!"); BASE_URI = customBaseURI_; } function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner { FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; } function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner { MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; } function setSaleActive(bool saleIsActive) external onlyOwner { IS_SALE_ACTIVE = saleIsActive; } function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner { FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } function freezeMetadata() external onlyOwner { METADATA_FROZEN = true; } /** MINT **/ modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!"); require(currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(IS_SALE_ACTIVE, "Sale is not active!"); uint256 price = PRICE * _mintAmount; if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) { uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender]; if (remainingFreeMint > 0) { if (_mintAmount >= remainingFreeMint) { price -= remainingFreeMint * PRICE; updateFreeMintCount(msg.sender, remainingFreeMint); } else { price -= _mintAmount * PRICE; updateFreeMintCount(msg.sender, _mintAmount); } } } require(msg.value >= price, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } /** PAYOUT **/ address private constant payoutAddress1 = 0xE3808cbF54c2833aB13Bf2521E00A2ae8c7655eb; function withdraw() public onlyOwner nonReentrant { uint256 balance = address(this).balance; Address.sendValue(payable(payoutAddress1), balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMetadataReleved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004cf638038062004cf6833981810160405281019062000052919062000510565b6040518060400160405280600781526020017f4149416e696d65000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4149416e696d65000000000000000000000000000000000000000000000000008152508160019080519060200190620000d69291906200024b565b508060029080519060200190620000ef9291906200024b565b50505062000112620001066200017d60201b60201c565b6200018560201b60201c565b60016008819055508660098190555085600a8190555084600b9080519060200190620001409291906200024b565b5083600c8190555082600d8190555081600e60006101000a81548160ff02191690831515021790555080600f819055505050505050505062000646565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002599062000611565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b62000324816200030f565b81146200033057600080fd5b50565b600081519050620003448162000319565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200039f8262000354565b810181811067ffffffffffffffff82111715620003c157620003c062000365565b5b80604052505050565b6000620003d6620002fb565b9050620003e4828262000394565b919050565b600067ffffffffffffffff82111562000407576200040662000365565b5b620004128262000354565b9050602081019050919050565b60005b838110156200043f57808201518184015260208101905062000422565b838111156200044f576000848401525b50505050565b60006200046c6200046684620003e9565b620003ca565b9050828152602081018484840111156200048b576200048a6200034f565b5b620004988482856200041f565b509392505050565b600082601f830112620004b857620004b76200034a565b5b8151620004ca84826020860162000455565b91505092915050565b60008115159050919050565b620004ea81620004d3565b8114620004f657600080fd5b50565b6000815190506200050a81620004df565b92915050565b600080600080600080600060e0888a03121562000532576200053162000305565b5b6000620005428a828b0162000333565b9750506020620005558a828b0162000333565b965050604088015167ffffffffffffffff8111156200057957620005786200030a565b5b620005878a828b01620004a0565b95505060606200059a8a828b0162000333565b9450506080620005ad8a828b0162000333565b93505060a0620005c08a828b01620004f9565b92505060c0620005d38a828b0162000333565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062a57607f821691505b60208210810362000640576200063f620005e2565b5b50919050565b6146a080620006566000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461072c578063d111515d14610769578063e985e9c514610780578063f2fde38b146107bd578063fdb4953a146107e65761020f565b8063a22cb46514610688578063b0551ac4146106b1578063b88d4fde146106da578063c4e9374d146107035761020f565b80638d859f3e116100e75780638d859f3e146105c25780638da5cb5b146105ed57806391b7f5ed1461061857806395d89b4114610641578063a0712d681461066c5761020f565b8063715018a61461052e57806376d02b7114610545578063841718a6146105705780638b85e43d146105995761020f565b806335a008ec1161019b57806342842e0e1161016a57806342842e0e1461043957806355f804b314610462578063616cdb1e1461048b5780636352211e146104b457806370a08231146104f15761020f565b806335a008ec146103b75780633ccfd60b146103ce5780634065b85f146103e5578063408cbf94146104105761020f565b806309ef6527116101e257806309ef6527146102e257806310b0c0521461030d57806318160ddd1461033857806323b872dd1461036357806332cb6b0c1461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612f1b565b610811565b6040516102489190612f63565b60405180910390f35b34801561025d57600080fd5b506102666108f3565b6040516102739190613017565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061306f565b610985565b6040516102b091906130dd565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613124565b610a0a565b005b3480156102ee57600080fd5b506102f7610b22565b6040516103049190613173565b60405180910390f35b34801561031957600080fd5b50610322610b28565b60405161032f9190613173565b60405180910390f35b34801561034457600080fd5b5061034d610b2e565b60405161035a9190613173565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061318e565b610b37565b005b34801561039857600080fd5b506103a1610b47565b6040516103ae9190613173565b60405180910390f35b3480156103c357600080fd5b506103cc610b4d565b005b3480156103da57600080fd5b506103e3610be6565b005b3480156103f157600080fd5b506103fa610cdd565b6040516104079190613173565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613124565b610ce3565b005b34801561044557600080fd5b50610460600480360381019061045b919061318e565b610e12565b005b34801561046e57600080fd5b5061048960048036038101906104849190613316565b610e32565b005b34801561049757600080fd5b506104b260048036038101906104ad919061306f565b610f18565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061306f565b610f9e565b6040516104e891906130dd565b60405180910390f35b3480156104fd57600080fd5b506105186004803603810190610513919061335f565b610fb4565b6040516105259190613173565b60405180910390f35b34801561053a57600080fd5b5061054361109c565b005b34801561055157600080fd5b5061055a611124565b6040516105679190612f63565b60405180910390f35b34801561057c57600080fd5b50610597600480360381019061059291906133b8565b611137565b005b3480156105a557600080fd5b506105c060048036038101906105bb919061306f565b6111d0565b005b3480156105ce57600080fd5b506105d7611256565b6040516105e49190613173565b60405180910390f35b3480156105f957600080fd5b5061060261125c565b60405161060f91906130dd565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a919061306f565b611286565b005b34801561064d57600080fd5b5061065661130c565b6040516106639190613017565b60405180910390f35b6106866004803603810190610681919061306f565b61139e565b005b34801561069457600080fd5b506106af60048036038101906106aa91906133e5565b6115b5565b005b3480156106bd57600080fd5b506106d860048036038101906106d3919061306f565b611735565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906134c6565b6117bb565b005b34801561070f57600080fd5b5061072a6004803603810190610725919061306f565b611817565b005b34801561073857600080fd5b50610753600480360381019061074e919061306f565b611926565b6040516107609190613017565b60405180910390f35b34801561077557600080fd5b5061077e611a2a565b005b34801561078c57600080fd5b506107a760048036038101906107a29190613549565b611ac3565b6040516107b49190612f63565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df919061335f565b611b57565b005b3480156107f257600080fd5b506107fb611c4e565b6040516108089190612f63565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ec57506108eb82611c61565b5b9050919050565b606060018054610902906135b8565b80601f016020809104026020016040519081016040528092919081815260200182805461092e906135b8565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b5050505050905090565b600061099082611ccb565b6109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061365b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1582610f9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c906136ed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa4611cd8565b73ffffffffffffffffffffffffffffffffffffffff161480610ad35750610ad281610acd611cd8565b611ac3565b5b610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b099061377f565b60405180910390fd5b610b1d838383611ce0565b505050565b600d5481565b600c5481565b60008054905090565b610b42838383611d92565b505050565b600a5481565b610b55611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610b7361125c565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906137eb565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b610bee611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610c0c61125c565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906137eb565b60405180910390fd5b600260085403610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90613857565b60405180910390fd5b60026008819055506000479050610cd273e3808cbf54c2833ab13bf2521e00a2ae8c7655eb826122d0565b506001600881905550565b600f5481565b80600081118015610cf65750600d548111155b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c906138c3565b60405180910390fd5b600a5481600054610d469190613912565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906139b4565b60405180910390fd5b610d8f611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610dad61125c565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906137eb565b60405180910390fd5b610e0d83836123c4565b505050565b610e2d838383604051806020016040528060008152506117bb565b505050565b610e3a611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610e5861125c565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906137eb565b60405180910390fd5b601060009054906101000a900460ff1615610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590613a20565b60405180910390fd5b80600b9080519060200190610f14929190612dd2565b5050565b610f20611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610f3e61125c565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906137eb565b60405180910390fd5b80600d8190555050565b6000610fa9826123e2565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613ab2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110a4611cd8565b73ffffffffffffffffffffffffffffffffffffffff166110c261125c565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906137eb565b60405180910390fd5b611122600061257c565b565b600e60009054906101000a900460ff1681565b61113f611cd8565b73ffffffffffffffffffffffffffffffffffffffff1661115d61125c565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906137eb565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6111d8611cd8565b73ffffffffffffffffffffffffffffffffffffffff166111f661125c565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906137eb565b60405180910390fd5b80600f8190555050565b60095481565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61128e611cd8565b73ffffffffffffffffffffffffffffffffffffffff166112ac61125c565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906137eb565b60405180910390fd5b8060098190555050565b60606002805461131b906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611347906135b8565b80156113945780601f1061136957610100808354040283529160200191611394565b820191906000526020600020905b81548152906001019060200180831161137757829003601f168201915b5050505050905090565b806000811180156113b15750600d548111155b6113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e7906138c3565b60405180910390fd5b600a54816000546114019190613912565b1115611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906139b4565b60405180910390fd5b600e60009054906101000a900460ff16611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890613b1e565b60405180910390fd5b6000826009546114a19190613b3e565b9050600f546000541015611563576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546114fe9190613b98565b905060008111156115615780841061153a576009548161151e9190613b3e565b826115299190613b98565b91506115353382612642565b611560565b600954846115489190613b3e565b826115539190613b98565b915061155f3385612642565b5b5b505b803410156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90613c18565b60405180910390fd5b6115b033846123c4565b505050565b6115bd611cd8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162190613c84565b60405180910390fd5b8060066000611637611cd8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e4611cd8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117299190612f63565b60405180910390a35050565b61173d611cd8565b73ffffffffffffffffffffffffffffffffffffffff1661175b61125c565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a8906137eb565b60405180910390fd5b80600c8190555050565b6117c6848484611d92565b6117d28484848461269c565b611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613d16565b60405180910390fd5b50505050565b61181f611cd8565b73ffffffffffffffffffffffffffffffffffffffff1661183d61125c565b73ffffffffffffffffffffffffffffffffffffffff1614611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a906137eb565b60405180910390fd5b600a5481106118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613d82565b60405180910390fd5b60005481101561191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390613d82565b60405180910390fd5b80600a8190555050565b606061193182611ccb565b611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790613e14565b60405180910390fd5b600061197a612823565b9050600760009054906101000a900460ff16156119e25760008151036119af57604051806020016040528060008152506119da565b806119b9846128b5565b6040516020016119ca929190613e70565b6040516020818303038152906040525b915050611a25565b6000815103611a005760405180602001604052806000815250611a21565b80604051602001611a119190613e94565b6040516020818303038152906040525b9150505b919050565b611a32611cd8565b73ffffffffffffffffffffffffffffffffffffffff16611a5061125c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906137eb565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b5f611cd8565b73ffffffffffffffffffffffffffffffffffffffff16611b7d61125c565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906137eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990613f1d565b60405180910390fd5b611c4b8161257c565b50565b601060009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d9d826123e2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc4611cd8565b73ffffffffffffffffffffffffffffffffffffffff161480611e205750611de9611cd8565b73ffffffffffffffffffffffffffffffffffffffff16611e0884610985565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3c5750611e3b8260000151611e36611cd8565b611ac3565b5b905080611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590613faf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614041565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906140d3565b60405180910390fd5b611f6c8585856001612a15565b611f7c6000848460000151611ce0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612260576121bf81611ccb565b1561225f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c98585856001612a1b565b5050505050565b80471015612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a9061413f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161233990614190565b60006040518083038185875af1925050503d8060008114612376576040519150601f19603f3d011682016040523d82523d6000602084013e61237b565b606091505b50509050806123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614217565b60405180910390fd5b505050565b6123de828260405180602001604052806000815250612a21565b5050565b6123ea612e58565b6123f382611ccb565b612432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612429906142a9565b60405180910390fd5b60008290505b6000811061253b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252c578092505050612577565b50808060019003915050612438565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e9061433b565b60405180910390fd5b919050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126919190613912565b925050819055505050565b60006126bd8473ffffffffffffffffffffffffffffffffffffffff16612a33565b15612816578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e6611cd8565b8786866040518563ffffffff1660e01b815260040161270894939291906143b0565b6020604051808303816000875af192505050801561274457506040513d601f19601f820116820180604052508101906127419190614411565b60015b6127c6573d8060008114612774576040519150601f19603f3d011682016040523d82523d6000602084013e612779565b606091505b5060008151036127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590613d16565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061281b565b600190505b949350505050565b6060600b8054612832906135b8565b80601f016020809104026020016040519081016040528092919081815260200182805461285e906135b8565b80156128ab5780601f10612880576101008083540402835291602001916128ab565b820191906000526020600020905b81548152906001019060200180831161288e57829003601f168201915b5050505050905090565b6060600082036128fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a10565b600082905060005b6000821461292e5780806129179061443e565b915050600a8261292791906144b5565b9150612904565b60008167ffffffffffffffff81111561294a576129496131eb565b5b6040519080825280601f01601f19166020018201604052801561297c5781602001600182028036833780820191505090505b5090505b60008514612a09576001826129959190613b98565b9150600a856129a491906144e6565b60306129b09190613912565b60f81b8183815181106129c6576129c5614517565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a0291906144b5565b9450612980565b8093505050505b919050565b50505050565b50505050565b612a2e8383836001612a56565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac2906145b8565b60405180910390fd5b60008403612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b059061464a565b60405180910390fd5b612b1b6000868387612a15565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612db557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612da057612d60600088848861269c565b612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690613d16565b60405180910390fd5b5b81806001019250508080600101915050612ce9565b508060008190555050612dcb6000868387612a1b565b5050505050565b828054612dde906135b8565b90600052602060002090601f016020900481019282612e005760008555612e47565b82601f10612e1957805160ff1916838001178555612e47565b82800160010185558215612e47579182015b82811115612e46578251825591602001919060010190612e2b565b5b509050612e549190612e92565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eab576000816000905550600101612e93565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ef881612ec3565b8114612f0357600080fd5b50565b600081359050612f1581612eef565b92915050565b600060208284031215612f3157612f30612eb9565b5b6000612f3f84828501612f06565b91505092915050565b60008115159050919050565b612f5d81612f48565b82525050565b6000602082019050612f786000830184612f54565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fb8578082015181840152602081019050612f9d565b83811115612fc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fe982612f7e565b612ff38185612f89565b9350613003818560208601612f9a565b61300c81612fcd565b840191505092915050565b600060208201905081810360008301526130318184612fde565b905092915050565b6000819050919050565b61304c81613039565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b60006020828403121561308557613084612eb9565b5b60006130938482850161305a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130c78261309c565b9050919050565b6130d7816130bc565b82525050565b60006020820190506130f260008301846130ce565b92915050565b613101816130bc565b811461310c57600080fd5b50565b60008135905061311e816130f8565b92915050565b6000806040838503121561313b5761313a612eb9565b5b60006131498582860161310f565b925050602061315a8582860161305a565b9150509250929050565b61316d81613039565b82525050565b60006020820190506131886000830184613164565b92915050565b6000806000606084860312156131a7576131a6612eb9565b5b60006131b58682870161310f565b93505060206131c68682870161310f565b92505060406131d78682870161305a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61322382612fcd565b810181811067ffffffffffffffff82111715613242576132416131eb565b5b80604052505050565b6000613255612eaf565b9050613261828261321a565b919050565b600067ffffffffffffffff821115613281576132806131eb565b5b61328a82612fcd565b9050602081019050919050565b82818337600083830152505050565b60006132b96132b484613266565b61324b565b9050828152602081018484840111156132d5576132d46131e6565b5b6132e0848285613297565b509392505050565b600082601f8301126132fd576132fc6131e1565b5b813561330d8482602086016132a6565b91505092915050565b60006020828403121561332c5761332b612eb9565b5b600082013567ffffffffffffffff81111561334a57613349612ebe565b5b613356848285016132e8565b91505092915050565b60006020828403121561337557613374612eb9565b5b60006133838482850161310f565b91505092915050565b61339581612f48565b81146133a057600080fd5b50565b6000813590506133b28161338c565b92915050565b6000602082840312156133ce576133cd612eb9565b5b60006133dc848285016133a3565b91505092915050565b600080604083850312156133fc576133fb612eb9565b5b600061340a8582860161310f565b925050602061341b858286016133a3565b9150509250929050565b600067ffffffffffffffff8211156134405761343f6131eb565b5b61344982612fcd565b9050602081019050919050565b600061346961346484613425565b61324b565b905082815260208101848484011115613485576134846131e6565b5b613490848285613297565b509392505050565b600082601f8301126134ad576134ac6131e1565b5b81356134bd848260208601613456565b91505092915050565b600080600080608085870312156134e0576134df612eb9565b5b60006134ee8782880161310f565b94505060206134ff8782880161310f565b93505060406135108782880161305a565b925050606085013567ffffffffffffffff81111561353157613530612ebe565b5b61353d87828801613498565b91505092959194509250565b600080604083850312156135605761355f612eb9565b5b600061356e8582860161310f565b925050602061357f8582860161310f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135d057607f821691505b6020821081036135e3576135e2613589565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613645602d83612f89565b9150613650826135e9565b604082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d7602283612f89565b91506136e28261367b565b604082019050919050565b60006020820190508181036000830152613706816136ca565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613769603983612f89565b91506137748261370d565b604082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137d5602083612f89565b91506137e08261379f565b602082019050919050565b60006020820190508181036000830152613804816137c8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613841601f83612f89565b915061384c8261380b565b602082019050919050565b6000602082019050818103600083015261387081613834565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138ad601483612f89565b91506138b882613877565b602082019050919050565b600060208201905081810360008301526138dc816138a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061391d82613039565b915061392883613039565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395d5761395c6138e3565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061399e601483612f89565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613a0a601083612f89565b9150613a15826139d4565b602082019050919050565b60006020820190508181036000830152613a39816139fd565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613a9c602b83612f89565b9150613aa782613a40565b604082019050919050565b60006020820190508181036000830152613acb81613a8f565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613b08601383612f89565b9150613b1382613ad2565b602082019050919050565b60006020820190508181036000830152613b3781613afb565b9050919050565b6000613b4982613039565b9150613b5483613039565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b8d57613b8c6138e3565b5b828202905092915050565b6000613ba382613039565b9150613bae83613039565b925082821015613bc157613bc06138e3565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613c02601383612f89565b9150613c0d82613bcc565b602082019050919050565b60006020820190508181036000830152613c3181613bf5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613c6e601a83612f89565b9150613c7982613c38565b602082019050919050565b60006020820190508181036000830152613c9d81613c61565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d00603383612f89565b9150613d0b82613ca4565b604082019050919050565b60006020820190508181036000830152613d2f81613cf3565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613d6c601683612f89565b9150613d7782613d36565b602082019050919050565b60006020820190508181036000830152613d9b81613d5f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dfe602f83612f89565b9150613e0982613da2565b604082019050919050565b60006020820190508181036000830152613e2d81613df1565b9050919050565b600081905092915050565b6000613e4a82612f7e565b613e548185613e34565b9350613e64818560208601612f9a565b80840191505092915050565b6000613e7c8285613e3f565b9150613e888284613e3f565b91508190509392505050565b6000613ea08284613e3f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f07602683612f89565b9150613f1282613eab565b604082019050919050565b60006020820190508181036000830152613f3681613efa565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f99603283612f89565b9150613fa482613f3d565b604082019050919050565b60006020820190508181036000830152613fc881613f8c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061402b602683612f89565b915061403682613fcf565b604082019050919050565b6000602082019050818103600083015261405a8161401e565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006140bd602583612f89565b91506140c882614061565b604082019050919050565b600060208201905081810360008301526140ec816140b0565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614129601d83612f89565b9150614134826140f3565b602082019050919050565b600060208201905081810360008301526141588161411c565b9050919050565b600081905092915050565b50565b600061417a60008361415f565b91506141858261416a565b600082019050919050565b600061419b8261416d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614201603a83612f89565b915061420c826141a5565b604082019050919050565b60006020820190508181036000830152614230816141f4565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614293602a83612f89565b915061429e82614237565b604082019050919050565b600060208201905081810360008301526142c281614286565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614325602f83612f89565b9150614330826142c9565b604082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143828261435b565b61438c8185614366565b935061439c818560208601612f9a565b6143a581612fcd565b840191505092915050565b60006080820190506143c560008301876130ce565b6143d260208301866130ce565b6143df6040830185613164565b81810360608301526143f18184614377565b905095945050505050565b60008151905061440b81612eef565b92915050565b60006020828403121561442757614426612eb9565b5b6000614435848285016143fc565b91505092915050565b600061444982613039565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361447b5761447a6138e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144c082613039565b91506144cb83613039565b9250826144db576144da614486565b5b828204905092915050565b60006144f182613039565b91506144fc83613039565b92508261450c5761450b614486565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006145a2602183612f89565b91506145ad82614546565b604082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614634602883612f89565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b905091905056fea264697066735822122049d477cb71e455db529ffa96ccaf4034d995da6a26e495133b80401baf097bb864736f6c634300080d0033000000000000000000000000000000000000000000000000000aa87bee53800000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000002b80000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569687974786176616c763378787a697969676d726a7761676b6d6d7a376c65367561356679326f62786c33737272376365696636612f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461072c578063d111515d14610769578063e985e9c514610780578063f2fde38b146107bd578063fdb4953a146107e65761020f565b8063a22cb46514610688578063b0551ac4146106b1578063b88d4fde146106da578063c4e9374d146107035761020f565b80638d859f3e116100e75780638d859f3e146105c25780638da5cb5b146105ed57806391b7f5ed1461061857806395d89b4114610641578063a0712d681461066c5761020f565b8063715018a61461052e57806376d02b7114610545578063841718a6146105705780638b85e43d146105995761020f565b806335a008ec1161019b57806342842e0e1161016a57806342842e0e1461043957806355f804b314610462578063616cdb1e1461048b5780636352211e146104b457806370a08231146104f15761020f565b806335a008ec146103b75780633ccfd60b146103ce5780634065b85f146103e5578063408cbf94146104105761020f565b806309ef6527116101e257806309ef6527146102e257806310b0c0521461030d57806318160ddd1461033857806323b872dd1461036357806332cb6b0c1461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612f1b565b610811565b6040516102489190612f63565b60405180910390f35b34801561025d57600080fd5b506102666108f3565b6040516102739190613017565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061306f565b610985565b6040516102b091906130dd565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613124565b610a0a565b005b3480156102ee57600080fd5b506102f7610b22565b6040516103049190613173565b60405180910390f35b34801561031957600080fd5b50610322610b28565b60405161032f9190613173565b60405180910390f35b34801561034457600080fd5b5061034d610b2e565b60405161035a9190613173565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061318e565b610b37565b005b34801561039857600080fd5b506103a1610b47565b6040516103ae9190613173565b60405180910390f35b3480156103c357600080fd5b506103cc610b4d565b005b3480156103da57600080fd5b506103e3610be6565b005b3480156103f157600080fd5b506103fa610cdd565b6040516104079190613173565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613124565b610ce3565b005b34801561044557600080fd5b50610460600480360381019061045b919061318e565b610e12565b005b34801561046e57600080fd5b5061048960048036038101906104849190613316565b610e32565b005b34801561049757600080fd5b506104b260048036038101906104ad919061306f565b610f18565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061306f565b610f9e565b6040516104e891906130dd565b60405180910390f35b3480156104fd57600080fd5b506105186004803603810190610513919061335f565b610fb4565b6040516105259190613173565b60405180910390f35b34801561053a57600080fd5b5061054361109c565b005b34801561055157600080fd5b5061055a611124565b6040516105679190612f63565b60405180910390f35b34801561057c57600080fd5b50610597600480360381019061059291906133b8565b611137565b005b3480156105a557600080fd5b506105c060048036038101906105bb919061306f565b6111d0565b005b3480156105ce57600080fd5b506105d7611256565b6040516105e49190613173565b60405180910390f35b3480156105f957600080fd5b5061060261125c565b60405161060f91906130dd565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a919061306f565b611286565b005b34801561064d57600080fd5b5061065661130c565b6040516106639190613017565b60405180910390f35b6106866004803603810190610681919061306f565b61139e565b005b34801561069457600080fd5b506106af60048036038101906106aa91906133e5565b6115b5565b005b3480156106bd57600080fd5b506106d860048036038101906106d3919061306f565b611735565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906134c6565b6117bb565b005b34801561070f57600080fd5b5061072a6004803603810190610725919061306f565b611817565b005b34801561073857600080fd5b50610753600480360381019061074e919061306f565b611926565b6040516107609190613017565b60405180910390f35b34801561077557600080fd5b5061077e611a2a565b005b34801561078c57600080fd5b506107a760048036038101906107a29190613549565b611ac3565b6040516107b49190612f63565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df919061335f565b611b57565b005b3480156107f257600080fd5b506107fb611c4e565b6040516108089190612f63565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ec57506108eb82611c61565b5b9050919050565b606060018054610902906135b8565b80601f016020809104026020016040519081016040528092919081815260200182805461092e906135b8565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b5050505050905090565b600061099082611ccb565b6109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061365b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1582610f9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c906136ed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa4611cd8565b73ffffffffffffffffffffffffffffffffffffffff161480610ad35750610ad281610acd611cd8565b611ac3565b5b610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b099061377f565b60405180910390fd5b610b1d838383611ce0565b505050565b600d5481565b600c5481565b60008054905090565b610b42838383611d92565b505050565b600a5481565b610b55611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610b7361125c565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906137eb565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b610bee611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610c0c61125c565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906137eb565b60405180910390fd5b600260085403610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90613857565b60405180910390fd5b60026008819055506000479050610cd273e3808cbf54c2833ab13bf2521e00a2ae8c7655eb826122d0565b506001600881905550565b600f5481565b80600081118015610cf65750600d548111155b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c906138c3565b60405180910390fd5b600a5481600054610d469190613912565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906139b4565b60405180910390fd5b610d8f611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610dad61125c565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906137eb565b60405180910390fd5b610e0d83836123c4565b505050565b610e2d838383604051806020016040528060008152506117bb565b505050565b610e3a611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610e5861125c565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906137eb565b60405180910390fd5b601060009054906101000a900460ff1615610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590613a20565b60405180910390fd5b80600b9080519060200190610f14929190612dd2565b5050565b610f20611cd8565b73ffffffffffffffffffffffffffffffffffffffff16610f3e61125c565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906137eb565b60405180910390fd5b80600d8190555050565b6000610fa9826123e2565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613ab2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110a4611cd8565b73ffffffffffffffffffffffffffffffffffffffff166110c261125c565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906137eb565b60405180910390fd5b611122600061257c565b565b600e60009054906101000a900460ff1681565b61113f611cd8565b73ffffffffffffffffffffffffffffffffffffffff1661115d61125c565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906137eb565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6111d8611cd8565b73ffffffffffffffffffffffffffffffffffffffff166111f661125c565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906137eb565b60405180910390fd5b80600f8190555050565b60095481565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61128e611cd8565b73ffffffffffffffffffffffffffffffffffffffff166112ac61125c565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906137eb565b60405180910390fd5b8060098190555050565b60606002805461131b906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611347906135b8565b80156113945780601f1061136957610100808354040283529160200191611394565b820191906000526020600020905b81548152906001019060200180831161137757829003601f168201915b5050505050905090565b806000811180156113b15750600d548111155b6113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e7906138c3565b60405180910390fd5b600a54816000546114019190613912565b1115611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906139b4565b60405180910390fd5b600e60009054906101000a900460ff16611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890613b1e565b60405180910390fd5b6000826009546114a19190613b3e565b9050600f546000541015611563576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546114fe9190613b98565b905060008111156115615780841061153a576009548161151e9190613b3e565b826115299190613b98565b91506115353382612642565b611560565b600954846115489190613b3e565b826115539190613b98565b915061155f3385612642565b5b5b505b803410156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90613c18565b60405180910390fd5b6115b033846123c4565b505050565b6115bd611cd8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162190613c84565b60405180910390fd5b8060066000611637611cd8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e4611cd8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117299190612f63565b60405180910390a35050565b61173d611cd8565b73ffffffffffffffffffffffffffffffffffffffff1661175b61125c565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a8906137eb565b60405180910390fd5b80600c8190555050565b6117c6848484611d92565b6117d28484848461269c565b611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613d16565b60405180910390fd5b50505050565b61181f611cd8565b73ffffffffffffffffffffffffffffffffffffffff1661183d61125c565b73ffffffffffffffffffffffffffffffffffffffff1614611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a906137eb565b60405180910390fd5b600a5481106118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613d82565b60405180910390fd5b60005481101561191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390613d82565b60405180910390fd5b80600a8190555050565b606061193182611ccb565b611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790613e14565b60405180910390fd5b600061197a612823565b9050600760009054906101000a900460ff16156119e25760008151036119af57604051806020016040528060008152506119da565b806119b9846128b5565b6040516020016119ca929190613e70565b6040516020818303038152906040525b915050611a25565b6000815103611a005760405180602001604052806000815250611a21565b80604051602001611a119190613e94565b6040516020818303038152906040525b9150505b919050565b611a32611cd8565b73ffffffffffffffffffffffffffffffffffffffff16611a5061125c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906137eb565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b5f611cd8565b73ffffffffffffffffffffffffffffffffffffffff16611b7d61125c565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906137eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990613f1d565b60405180910390fd5b611c4b8161257c565b50565b601060009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d9d826123e2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc4611cd8565b73ffffffffffffffffffffffffffffffffffffffff161480611e205750611de9611cd8565b73ffffffffffffffffffffffffffffffffffffffff16611e0884610985565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3c5750611e3b8260000151611e36611cd8565b611ac3565b5b905080611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590613faf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614041565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906140d3565b60405180910390fd5b611f6c8585856001612a15565b611f7c6000848460000151611ce0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612260576121bf81611ccb565b1561225f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c98585856001612a1b565b5050505050565b80471015612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a9061413f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161233990614190565b60006040518083038185875af1925050503d8060008114612376576040519150601f19603f3d011682016040523d82523d6000602084013e61237b565b606091505b50509050806123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614217565b60405180910390fd5b505050565b6123de828260405180602001604052806000815250612a21565b5050565b6123ea612e58565b6123f382611ccb565b612432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612429906142a9565b60405180910390fd5b60008290505b6000811061253b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252c578092505050612577565b50808060019003915050612438565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e9061433b565b60405180910390fd5b919050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126919190613912565b925050819055505050565b60006126bd8473ffffffffffffffffffffffffffffffffffffffff16612a33565b15612816578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e6611cd8565b8786866040518563ffffffff1660e01b815260040161270894939291906143b0565b6020604051808303816000875af192505050801561274457506040513d601f19601f820116820180604052508101906127419190614411565b60015b6127c6573d8060008114612774576040519150601f19603f3d011682016040523d82523d6000602084013e612779565b606091505b5060008151036127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590613d16565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061281b565b600190505b949350505050565b6060600b8054612832906135b8565b80601f016020809104026020016040519081016040528092919081815260200182805461285e906135b8565b80156128ab5780601f10612880576101008083540402835291602001916128ab565b820191906000526020600020905b81548152906001019060200180831161288e57829003601f168201915b5050505050905090565b6060600082036128fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a10565b600082905060005b6000821461292e5780806129179061443e565b915050600a8261292791906144b5565b9150612904565b60008167ffffffffffffffff81111561294a576129496131eb565b5b6040519080825280601f01601f19166020018201604052801561297c5781602001600182028036833780820191505090505b5090505b60008514612a09576001826129959190613b98565b9150600a856129a491906144e6565b60306129b09190613912565b60f81b8183815181106129c6576129c5614517565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a0291906144b5565b9450612980565b8093505050505b919050565b50505050565b50505050565b612a2e8383836001612a56565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac2906145b8565b60405180910390fd5b60008403612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b059061464a565b60405180910390fd5b612b1b6000868387612a15565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612db557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612da057612d60600088848861269c565b612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690613d16565b60405180910390fd5b5b81806001019250508080600101915050612ce9565b508060008190555050612dcb6000868387612a1b565b5050505050565b828054612dde906135b8565b90600052602060002090601f016020900481019282612e005760008555612e47565b82601f10612e1957805160ff1916838001178555612e47565b82800160010185558215612e47579182015b82811115612e46578251825591602001919060010190612e2b565b5b509050612e549190612e92565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eab576000816000905550600101612e93565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ef881612ec3565b8114612f0357600080fd5b50565b600081359050612f1581612eef565b92915050565b600060208284031215612f3157612f30612eb9565b5b6000612f3f84828501612f06565b91505092915050565b60008115159050919050565b612f5d81612f48565b82525050565b6000602082019050612f786000830184612f54565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fb8578082015181840152602081019050612f9d565b83811115612fc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fe982612f7e565b612ff38185612f89565b9350613003818560208601612f9a565b61300c81612fcd565b840191505092915050565b600060208201905081810360008301526130318184612fde565b905092915050565b6000819050919050565b61304c81613039565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b60006020828403121561308557613084612eb9565b5b60006130938482850161305a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130c78261309c565b9050919050565b6130d7816130bc565b82525050565b60006020820190506130f260008301846130ce565b92915050565b613101816130bc565b811461310c57600080fd5b50565b60008135905061311e816130f8565b92915050565b6000806040838503121561313b5761313a612eb9565b5b60006131498582860161310f565b925050602061315a8582860161305a565b9150509250929050565b61316d81613039565b82525050565b60006020820190506131886000830184613164565b92915050565b6000806000606084860312156131a7576131a6612eb9565b5b60006131b58682870161310f565b93505060206131c68682870161310f565b92505060406131d78682870161305a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61322382612fcd565b810181811067ffffffffffffffff82111715613242576132416131eb565b5b80604052505050565b6000613255612eaf565b9050613261828261321a565b919050565b600067ffffffffffffffff821115613281576132806131eb565b5b61328a82612fcd565b9050602081019050919050565b82818337600083830152505050565b60006132b96132b484613266565b61324b565b9050828152602081018484840111156132d5576132d46131e6565b5b6132e0848285613297565b509392505050565b600082601f8301126132fd576132fc6131e1565b5b813561330d8482602086016132a6565b91505092915050565b60006020828403121561332c5761332b612eb9565b5b600082013567ffffffffffffffff81111561334a57613349612ebe565b5b613356848285016132e8565b91505092915050565b60006020828403121561337557613374612eb9565b5b60006133838482850161310f565b91505092915050565b61339581612f48565b81146133a057600080fd5b50565b6000813590506133b28161338c565b92915050565b6000602082840312156133ce576133cd612eb9565b5b60006133dc848285016133a3565b91505092915050565b600080604083850312156133fc576133fb612eb9565b5b600061340a8582860161310f565b925050602061341b858286016133a3565b9150509250929050565b600067ffffffffffffffff8211156134405761343f6131eb565b5b61344982612fcd565b9050602081019050919050565b600061346961346484613425565b61324b565b905082815260208101848484011115613485576134846131e6565b5b613490848285613297565b509392505050565b600082601f8301126134ad576134ac6131e1565b5b81356134bd848260208601613456565b91505092915050565b600080600080608085870312156134e0576134df612eb9565b5b60006134ee8782880161310f565b94505060206134ff8782880161310f565b93505060406135108782880161305a565b925050606085013567ffffffffffffffff81111561353157613530612ebe565b5b61353d87828801613498565b91505092959194509250565b600080604083850312156135605761355f612eb9565b5b600061356e8582860161310f565b925050602061357f8582860161310f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135d057607f821691505b6020821081036135e3576135e2613589565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613645602d83612f89565b9150613650826135e9565b604082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d7602283612f89565b91506136e28261367b565b604082019050919050565b60006020820190508181036000830152613706816136ca565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613769603983612f89565b91506137748261370d565b604082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137d5602083612f89565b91506137e08261379f565b602082019050919050565b60006020820190508181036000830152613804816137c8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613841601f83612f89565b915061384c8261380b565b602082019050919050565b6000602082019050818103600083015261387081613834565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138ad601483612f89565b91506138b882613877565b602082019050919050565b600060208201905081810360008301526138dc816138a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061391d82613039565b915061392883613039565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395d5761395c6138e3565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061399e601483612f89565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613a0a601083612f89565b9150613a15826139d4565b602082019050919050565b60006020820190508181036000830152613a39816139fd565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613a9c602b83612f89565b9150613aa782613a40565b604082019050919050565b60006020820190508181036000830152613acb81613a8f565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613b08601383612f89565b9150613b1382613ad2565b602082019050919050565b60006020820190508181036000830152613b3781613afb565b9050919050565b6000613b4982613039565b9150613b5483613039565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b8d57613b8c6138e3565b5b828202905092915050565b6000613ba382613039565b9150613bae83613039565b925082821015613bc157613bc06138e3565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613c02601383612f89565b9150613c0d82613bcc565b602082019050919050565b60006020820190508181036000830152613c3181613bf5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613c6e601a83612f89565b9150613c7982613c38565b602082019050919050565b60006020820190508181036000830152613c9d81613c61565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d00603383612f89565b9150613d0b82613ca4565b604082019050919050565b60006020820190508181036000830152613d2f81613cf3565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613d6c601683612f89565b9150613d7782613d36565b602082019050919050565b60006020820190508181036000830152613d9b81613d5f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dfe602f83612f89565b9150613e0982613da2565b604082019050919050565b60006020820190508181036000830152613e2d81613df1565b9050919050565b600081905092915050565b6000613e4a82612f7e565b613e548185613e34565b9350613e64818560208601612f9a565b80840191505092915050565b6000613e7c8285613e3f565b9150613e888284613e3f565b91508190509392505050565b6000613ea08284613e3f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f07602683612f89565b9150613f1282613eab565b604082019050919050565b60006020820190508181036000830152613f3681613efa565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f99603283612f89565b9150613fa482613f3d565b604082019050919050565b60006020820190508181036000830152613fc881613f8c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061402b602683612f89565b915061403682613fcf565b604082019050919050565b6000602082019050818103600083015261405a8161401e565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006140bd602583612f89565b91506140c882614061565b604082019050919050565b600060208201905081810360008301526140ec816140b0565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614129601d83612f89565b9150614134826140f3565b602082019050919050565b600060208201905081810360008301526141588161411c565b9050919050565b600081905092915050565b50565b600061417a60008361415f565b91506141858261416a565b600082019050919050565b600061419b8261416d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614201603a83612f89565b915061420c826141a5565b604082019050919050565b60006020820190508181036000830152614230816141f4565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614293602a83612f89565b915061429e82614237565b604082019050919050565b600060208201905081810360008301526142c281614286565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614325602f83612f89565b9150614330826142c9565b604082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143828261435b565b61438c8185614366565b935061439c818560208601612f9a565b6143a581612fcd565b840191505092915050565b60006080820190506143c560008301876130ce565b6143d260208301866130ce565b6143df6040830185613164565b81810360608301526143f18184614377565b905095945050505050565b60008151905061440b81612eef565b92915050565b60006020828403121561442757614426612eb9565b5b6000614435848285016143fc565b91505092915050565b600061444982613039565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361447b5761447a6138e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144c082613039565b91506144cb83613039565b9250826144db576144da614486565b5b828204905092915050565b60006144f182613039565b91506144fc83613039565b92508261450c5761450b614486565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006145a2602183612f89565b91506145ad82614546565b604082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614634602883612f89565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b905091905056fea264697066735822122049d477cb71e455db529ffa96ccaf4034d995da6a26e495133b80401baf097bb864736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000aa87bee53800000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000002b80000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569687974786176616c763378787a697969676d726a7761676b6d6d7a376c65367561356679326f62786c33737272376365696636612f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : price (uint256): 3000000000000000
Arg [1] : maxSupply (uint256): 1696
Arg [2] : baseUri (string): ipfs://bafybeihytxavalv3xxziyigmrjwagkmmz7le6ua5fy2obxl3srr7ceif6a/
Arg [3] : freeMintAllowance (uint256): 10
Arg [4] : maxMintPerTx (uint256): 10
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 696
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000006a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000002b8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f62616679626569687974786176616c763378787a697969676d
Arg [9] : 726a7761676b6d6d7a376c65367561356679326f62786c337372723763656966
Arg [10] : 36612f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
41336:4207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27909:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29684:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31800:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31321:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41567:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41519:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27746:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32676:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41457:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42648:90;;;;;;;;;;;;;:::i;:::-;;45372:168;;;;;;;;;;;;;:::i;:::-;;41644:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45105:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32909:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43112:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43438:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29493:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28266:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25253:103;;;;;;;;;;;;;:::i;:::-;;41611:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43568:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43685:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41430:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24602:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42746:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29853:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44218:879;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32086:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43289:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33157:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42850:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30421:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43847:86;;;;;;;;;;;;;:::i;:::-;;32445:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25511:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41729:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27909:293;28011:4;28059:25;28044:40;;;:11;:40;;;;:101;;;;28112:33;28097:48;;;:11;:48;;;;28044:101;:150;;;;28158:36;28182:11;28158:23;:36::i;:::-;28044:150;28028:166;;27909:293;;;:::o;29684:100::-;29738:13;29771:5;29764:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29684:100;:::o;31800:214::-;31868:7;31896:16;31904:7;31896;:16::i;:::-;31888:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31982:15;:24;31998:7;31982:24;;;;;;;;;;;;;;;;;;;;;31975:31;;31800:214;;;:::o;31321:413::-;31394:13;31410:24;31426:7;31410:15;:24::i;:::-;31394:40;;31459:5;31453:11;;:2;:11;;;31445:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31554:5;31538:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31563:37;31580:5;31587:12;:10;:12::i;:::-;31563:16;:37::i;:::-;31538:62;31516:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;31698:28;31707:2;31711:7;31720:5;31698:8;:28::i;:::-;31383:351;31321:413;;:::o;41567:37::-;;;;:::o;41519:41::-;;;;:::o;27746:91::-;27790:7;27817:12;;27810:19;;27746:91;:::o;32676:162::-;32802:28;32812:4;32818:2;32822:7;32802:9;:28::i;:::-;32676:162;;;:::o;41457:25::-;;;;:::o;42648:90::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42726:4:::1;42708:15;;:22;;;;;;;;;;;;;;;;;;42648:90::o:0;45372:168::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1936:1:::1;2534:7;;:19:::0;2526:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1936:1;2667:7;:18;;;;45433:15:::2;45451:21;45433:39;;45485:51;45321:42;45528:7;45485:17;:51::i;:::-;45422:118;1892:1:::1;2846:7;:22;;;;45372:168::o:0;41644:41::-;;;;:::o;45105:144::-;45180:11;44039:1;44025:11;:15;:56;;;;;44059:22;;44044:11;:37;;44025:56;44017:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;44155:10;;44140:11;44125:12;;:26;;;;:::i;:::-;:40;;44117:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24833:12:::1;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45214:27:::2;45224:3;45229:11;45214:9;:27::i;:::-;45105:144:::0;;;:::o;32909:177::-;33039:39;33056:4;33062:2;33066:7;33039:39;;;;;;;;;;;;:16;:39::i;:::-;32909:177;;;:::o;43112:169::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43201:15:::1;;;;;;;;;;;43200:16;43192:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;43259:14;43248:8;:25;;;;;;;;;;;;:::i;:::-;;43112:169:::0;:::o;43438:122::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43540:12:::1;43515:22;:37;;;;43438:122:::0;:::o;29493:124::-;29557:7;29584:20;29596:7;29584:11;:20::i;:::-;:25;;;29577:32;;29493:124;;;:::o;28266:221::-;28330:7;28375:1;28358:19;;:5;:19;;;28350:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28451:12;:19;28464:5;28451:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28443:36;;28436:43;;28266:221;;;:::o;25253:103::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25318:30:::1;25345:1;25318:18;:30::i;:::-;25253:103::o:0;41611:26::-;;;;;;;;;;;;;:::o;43568:109::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43657:12:::1;43640:14;;:29;;;;;;;;;;;;;;;;;;43568:109:::0;:::o;43685:154::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43809:22:::1;43780:26;:51;;;;43685:154:::0;:::o;41430:20::-;;;;:::o;24602:87::-;24648:7;24675:6;;;;;;;;;;;24668:13;;24602:87;:::o;42746:96::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42823:11:::1;42815:5;:19;;;;42746:96:::0;:::o;29853:104::-;29909:13;29942:7;29935:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29853:104;:::o;44218:879::-;44283:11;44039:1;44025:11;:15;:56;;;;;44059:22;;44044:11;:37;;44025:56;44017:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;44155:10;;44140:11;44125:12;;:26;;;;:::i;:::-;:40;;44117:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44315:14:::1;;;;;;;;;;;44307:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;44366:13;44390:11;44382:5;;:19;;;;:::i;:::-;44366:35;;44433:26;;44418:12;;:41;44414:566;;;44476:25;44533:16;:28;44550:10;44533:28;;;;;;;;;;;;;;;;44504:26;;:57;;;;:::i;:::-;44476:85;;44600:1;44580:17;:21;44576:393;;;44641:17;44626:11;:32;44622:332;;44712:5;;44692:17;:25;;;;:::i;:::-;44683:34;;;;;:::i;:::-;;;44740:50;44760:10;44772:17;44740:19;:50::i;:::-;44622:332;;;44862:5;;44848:11;:19;;;;:::i;:::-;44839:28;;;;;:::i;:::-;;;44890:44;44910:10;44922:11;44890:19;:44::i;:::-;44622:332;44576:393;44461:519;44414:566;45013:5;45000:9;:18;;44992:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;45055:34;45065:10;45077:11;45055:9;:34::i;:::-;44296:801;44218:879:::0;;:::o;32086:288::-;32193:12;:10;:12::i;:::-;32181:24;;:8;:24;;;32173:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;32294:8;32249:18;:32;32268:12;:10;:12::i;:::-;32249:32;;;;;;;;;;;;;;;:42;32282:8;32249:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32347:8;32318:48;;32333:12;:10;:12::i;:::-;32318:48;;;32357:8;32318:48;;;;;;:::i;:::-;;;;;;;;32086:288;;:::o;43289:141::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43405:17:::1;43376:26;:46;;;;43289:141:::0;:::o;33157:355::-;33316:28;33326:4;33332:2;33336:7;33316:9;:28::i;:::-;33377:48;33400:4;33406:2;33410:7;33419:5;33377:22;:48::i;:::-;33355:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;33157:355;;;;:::o;42850:254::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42949:10:::1;;42934:12;:25;42926:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43021:12;;43005;:28;;42997:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43084:12;43071:10;:25;;;;42850:254:::0;:::o;30421:496::-;30494:13;30528:16;30536:7;30528;:16::i;:::-;30520:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30609:21;30633:10;:8;:10::i;:::-;30609:34;;30658:15;;;;;;;;;;;30654:256;;;30721:1;30702:7;30696:21;:26;:87;;;;;;;;;;;;;;;;;30749:7;30758:18;:7;:16;:18::i;:::-;30732:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30696:87;30689:94;;;;;30654:256;30856:1;30837:7;30831:21;:26;:67;;;;;;;;;;;;;;;;;30884:7;30867:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;30831:67;30824:74;;;30421:496;;;;:::o;43847:86::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43921:4:::1;43903:15;;:22;;;;;;;;;;;;;;;;;;43847:86::o:0;32445:164::-;32542:4;32566:18;:25;32585:5;32566:25;;;;;;;;;;;;;;;:35;32592:8;32566:35;;;;;;;;;;;;;;;;;;;;;;;;;32559:42;;32445:164;;;;:::o;25511:201::-;24833:12;:10;:12::i;:::-;24822:23;;:7;:5;:7::i;:::-;:23;;;24814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25620:1:::1;25600:22;;:8;:22;;::::0;25592:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25676:28;25695:8;25676:18;:28::i;:::-;25511:201:::0;:::o;41729:27::-;;;;;;;;;;;;;:::o;16596:157::-;16681:4;16720:25;16705:40;;;:11;:40;;;;16698:47;;16596:157;;;:::o;33767:111::-;33824:4;33858:12;;33848:7;:22;33841:29;;33767:111;;;:::o;23273:98::-;23326:7;23353:10;23346:17;;23273:98;:::o;38547:196::-;38689:2;38662:15;:24;38678:7;38662:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38727:7;38723:2;38707:28;;38716:5;38707:28;;;;;;;;;;;;38547:196;;;:::o;36495:1934::-;36610:35;36648:20;36660:7;36648:11;:20::i;:::-;36610:58;;36681:22;36723:13;:18;;;36707:34;;:12;:10;:12::i;:::-;:34;;;:83;;;;36778:12;:10;:12::i;:::-;36754:36;;:20;36766:7;36754:11;:20::i;:::-;:36;;;36707:83;:146;;;;36803:50;36820:13;:18;;;36840:12;:10;:12::i;:::-;36803:16;:50::i;:::-;36707:146;36681:173;;36875:17;36867:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;36990:4;36968:26;;:13;:18;;;:26;;;36960:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;37070:1;37056:16;;:2;:16;;;37048:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37127:43;37149:4;37155:2;37159:7;37168:1;37127:21;:43::i;:::-;37235:49;37252:1;37256:7;37265:13;:18;;;37235:8;:49::i;:::-;37602:1;37572:12;:18;37585:4;37572:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37642:1;37614:12;:16;37627:2;37614:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37684:2;37656:11;:20;37668:7;37656:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;37742:15;37697:11;:20;37709:7;37697:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37998:19;38030:1;38020:7;:11;37998:33;;38087:1;38046:43;;:11;:24;38058:11;38046:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;38042:275;;38110:20;38118:11;38110:7;:20::i;:::-;38106:200;;;38183:13;:18;;;38151:11;:24;38163:11;38151:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;38262:13;:28;;;38220:11;:24;38232:11;38220:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;38106:200;38042:275;37551:773;38360:7;38356:2;38341:27;;38350:4;38341:27;;;;;;;;;;;;38379:42;38400:4;38406:2;38410:7;38419:1;38379:20;:42::i;:::-;36599:1830;;36495:1934;;;:::o;7607:317::-;7722:6;7697:21;:31;;7689:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7776:12;7794:9;:14;;7816:6;7794:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7775:52;;;7846:7;7838:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;7678:246;7607:317;;:::o;33886:104::-;33955:27;33965:2;33969:8;33955:27;;;;;;;;;;;;:9;:27::i;:::-;33886:104;;:::o;28926:505::-;28987:21;;:::i;:::-;29029:16;29037:7;29029;:16::i;:::-;29021:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29127:12;29142:7;29127:22;;29122:225;29159:1;29151:4;:9;29122:225;;29185:31;29219:11;:17;29231:4;29219:17;;;;;;;;;;;29185:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29281:1;29255:28;;:9;:14;;;:28;;;29251:85;;29311:9;29304:16;;;;;;29251:85;29170:177;29162:6;;;;;;;;29122:225;;;;29366:57;;;;;;;;;;:::i;:::-;;;;;;;;28926:505;;;;:::o;25872:191::-;25946:16;25965:6;;;;;;;;;;;25946:25;;25991:8;25982:6;;:17;;;;;;;;;;;;;;;;;;26046:8;26015:40;;26036:8;26015:40;;;;;;;;;;;;25935:128;25872:191;:::o;42359:120::-;42466:5;42438:16;:24;42455:6;42438:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;42359:120;;:::o;39308:804::-;39463:4;39484:15;:2;:13;;;:15::i;:::-;39480:625;;;39536:2;39520:36;;;39557:12;:10;:12::i;:::-;39571:4;39577:7;39586:5;39520:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39516:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39783:1;39766:6;:13;:18;39762:273;;39809:61;;;;;;;;;;:::i;:::-;;;;;;;;39762:273;39985:6;39979:13;39970:6;39966:2;39962:15;39955:38;39516:534;39653:45;;;39643:55;;;:6;:55;;;;39636:62;;;;;39480:625;40089:4;40082:11;;39308:804;;;;;;;:::o;42510:109::-;42570:13;42603:8;42596:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42510:109;:::o;3301:723::-;3357:13;3587:1;3578:5;:10;3574:53;;3605:10;;;;;;;;;;;;;;;;;;;;;3574:53;3637:12;3652:5;3637:20;;3668:14;3693:78;3708:1;3700:4;:9;3693:78;;3726:8;;;;;:::i;:::-;;;;3757:2;3749:10;;;;;:::i;:::-;;;3693:78;;;3781:19;3813:6;3803:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3781:39;;3831:154;3847:1;3838:5;:10;3831:154;;3875:1;3865:11;;;;;:::i;:::-;;;3942:2;3934:5;:10;;;;:::i;:::-;3921:2;:24;;;;:::i;:::-;3908:39;;3891:6;3898;3891:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3971:2;3962:11;;;;;:::i;:::-;;;3831:154;;;4009:6;3995:21;;;;;3301:723;;;;:::o;40600:159::-;;;;;:::o;41171:158::-;;;;;:::o;34353:163::-;34476:32;34482:2;34486:8;34496:5;34503:4;34476:5;:32::i;:::-;34353:163;;;:::o;6346:326::-;6406:4;6663:1;6641:7;:19;;;:23;6634:30;;6346:326;;;:::o;34775:1466::-;34914:20;34937:12;;34914:35;;34982:1;34968:16;;:2;:16;;;34960:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35053:1;35041:8;:13;35033:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35112:61;35142:1;35146:2;35150:12;35164:8;35112:21;:61::i;:::-;35479:8;35443:12;:16;35456:2;35443:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35540:8;35499:12;:16;35512:2;35499:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35595:2;35562:11;:25;35574:12;35562:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35658:15;35608:11;:25;35620:12;35608:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35687:20;35710:12;35687:35;;35740:9;35735:379;35755:8;35751:1;:12;35735:379;;;35815:12;35811:2;35790:38;;35807:1;35790:38;;;;;;;;;;;;35847:4;35843:229;;;35902:59;35933:1;35937:2;35941:12;35955:5;35902:22;:59::i;:::-;35872:184;;;;;;;;;;;;:::i;:::-;;;;;;;;;35843:229;36088:14;;;;;;;35765:3;;;;;;;35735:379;;;;36141:12;36126;:27;;;;35422:739;36173:60;36202:1;36206:2;36210:12;36224:8;36173:20;:60::i;:::-;34903:1338;34775:1466;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:323::-;9188:6;9237:2;9225:9;9216:7;9212:23;9208:32;9205:119;;;9243:79;;:::i;:::-;9205:119;9363:1;9388:50;9430:7;9421:6;9410:9;9406:22;9388:50;:::i;:::-;9378:60;;9334:114;9132:323;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:232::-;13102:34;13098:1;13090:6;13086:14;13079:58;13171:15;13166:2;13158:6;13154:15;13147:40;12962:232;:::o;13200:366::-;13342:3;13363:67;13427:2;13422:3;13363:67;:::i;:::-;13356:74;;13439:93;13528:3;13439:93;:::i;:::-;13557:2;13552:3;13548:12;13541:19;;13200:366;;;:::o;13572:419::-;13738:4;13776:2;13765:9;13761:18;13753:26;;13825:9;13819:4;13815:20;13811:1;13800:9;13796:17;13789:47;13853:131;13979:4;13853:131;:::i;:::-;13845:139;;13572:419;;;:::o;13997:221::-;14137:34;14133:1;14125:6;14121:14;14114:58;14206:4;14201:2;14193:6;14189:15;14182:29;13997:221;:::o;14224:366::-;14366:3;14387:67;14451:2;14446:3;14387:67;:::i;:::-;14380:74;;14463:93;14552:3;14463:93;:::i;:::-;14581:2;14576:3;14572:12;14565:19;;14224:366;;;:::o;14596:419::-;14762:4;14800:2;14789:9;14785:18;14777:26;;14849:9;14843:4;14839:20;14835:1;14824:9;14820:17;14813:47;14877:131;15003:4;14877:131;:::i;:::-;14869:139;;14596:419;;;:::o;15021:244::-;15161:34;15157:1;15149:6;15145:14;15138:58;15230:27;15225:2;15217:6;15213:15;15206:52;15021:244;:::o;15271:366::-;15413:3;15434:67;15498:2;15493:3;15434:67;:::i;:::-;15427:74;;15510:93;15599:3;15510:93;:::i;:::-;15628:2;15623:3;15619:12;15612:19;;15271:366;;;:::o;15643:419::-;15809:4;15847:2;15836:9;15832:18;15824:26;;15896:9;15890:4;15886:20;15882:1;15871:9;15867:17;15860:47;15924:131;16050:4;15924:131;:::i;:::-;15916:139;;15643:419;;;:::o;16068:182::-;16208:34;16204:1;16196:6;16192:14;16185:58;16068:182;:::o;16256:366::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:419::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16881:9;16875:4;16871:20;16867:1;16856:9;16852:17;16845:47;16909:131;17035:4;16909:131;:::i;:::-;16901:139;;16628:419;;;:::o;17053:181::-;17193:33;17189:1;17181:6;17177:14;17170:57;17053:181;:::o;17240:366::-;17382:3;17403:67;17467:2;17462:3;17403:67;:::i;:::-;17396:74;;17479:93;17568:3;17479:93;:::i;:::-;17597:2;17592:3;17588:12;17581:19;;17240:366;;;:::o;17612:419::-;17778:4;17816:2;17805:9;17801:18;17793:26;;17865:9;17859:4;17855:20;17851:1;17840:9;17836:17;17829:47;17893:131;18019:4;17893:131;:::i;:::-;17885:139;;17612:419;;;:::o;18037:170::-;18177:22;18173:1;18165:6;18161:14;18154:46;18037:170;:::o;18213:366::-;18355:3;18376:67;18440:2;18435:3;18376:67;:::i;:::-;18369:74;;18452:93;18541:3;18452:93;:::i;:::-;18570:2;18565:3;18561:12;18554:19;;18213:366;;;:::o;18585:419::-;18751:4;18789:2;18778:9;18774:18;18766:26;;18838:9;18832:4;18828:20;18824:1;18813:9;18809:17;18802:47;18866:131;18992:4;18866:131;:::i;:::-;18858:139;;18585:419;;;:::o;19010:180::-;19058:77;19055:1;19048:88;19155:4;19152:1;19145:15;19179:4;19176:1;19169:15;19196:305;19236:3;19255:20;19273:1;19255:20;:::i;:::-;19250:25;;19289:20;19307:1;19289:20;:::i;:::-;19284:25;;19443:1;19375:66;19371:74;19368:1;19365:81;19362:107;;;19449:18;;:::i;:::-;19362:107;19493:1;19490;19486:9;19479:16;;19196:305;;;;:::o;19507:170::-;19647:22;19643:1;19635:6;19631:14;19624:46;19507:170;:::o;19683:366::-;19825:3;19846:67;19910:2;19905:3;19846:67;:::i;:::-;19839:74;;19922:93;20011:3;19922:93;:::i;:::-;20040:2;20035:3;20031:12;20024:19;;19683:366;;;:::o;20055:419::-;20221:4;20259:2;20248:9;20244:18;20236:26;;20308:9;20302:4;20298:20;20294:1;20283:9;20279:17;20272:47;20336:131;20462:4;20336:131;:::i;:::-;20328:139;;20055:419;;;:::o;20480:166::-;20620:18;20616:1;20608:6;20604:14;20597:42;20480:166;:::o;20652:366::-;20794:3;20815:67;20879:2;20874:3;20815:67;:::i;:::-;20808:74;;20891:93;20980:3;20891:93;:::i;:::-;21009:2;21004:3;21000:12;20993:19;;20652:366;;;:::o;21024:419::-;21190:4;21228:2;21217:9;21213:18;21205:26;;21277:9;21271:4;21267:20;21263:1;21252:9;21248:17;21241:47;21305:131;21431:4;21305:131;:::i;:::-;21297:139;;21024:419;;;:::o;21449:230::-;21589:34;21585:1;21577:6;21573:14;21566:58;21658:13;21653:2;21645:6;21641:15;21634:38;21449:230;:::o;21685:366::-;21827:3;21848:67;21912:2;21907:3;21848:67;:::i;:::-;21841:74;;21924:93;22013:3;21924:93;:::i;:::-;22042:2;22037:3;22033:12;22026:19;;21685:366;;;:::o;22057:419::-;22223:4;22261:2;22250:9;22246:18;22238:26;;22310:9;22304:4;22300:20;22296:1;22285:9;22281:17;22274:47;22338:131;22464:4;22338:131;:::i;:::-;22330:139;;22057:419;;;:::o;22482:169::-;22622:21;22618:1;22610:6;22606:14;22599:45;22482:169;:::o;22657:366::-;22799:3;22820:67;22884:2;22879:3;22820:67;:::i;:::-;22813:74;;22896:93;22985:3;22896:93;:::i;:::-;23014:2;23009:3;23005:12;22998:19;;22657:366;;;:::o;23029:419::-;23195:4;23233:2;23222:9;23218:18;23210:26;;23282:9;23276:4;23272:20;23268:1;23257:9;23253:17;23246:47;23310:131;23436:4;23310:131;:::i;:::-;23302:139;;23029:419;;;:::o;23454:348::-;23494:7;23517:20;23535:1;23517:20;:::i;:::-;23512:25;;23551:20;23569:1;23551:20;:::i;:::-;23546:25;;23739:1;23671:66;23667:74;23664:1;23661:81;23656:1;23649:9;23642:17;23638:105;23635:131;;;23746:18;;:::i;:::-;23635:131;23794:1;23791;23787:9;23776:20;;23454:348;;;;:::o;23808:191::-;23848:4;23868:20;23886:1;23868:20;:::i;:::-;23863:25;;23902:20;23920:1;23902:20;:::i;:::-;23897:25;;23941:1;23938;23935:8;23932:34;;;23946:18;;:::i;:::-;23932:34;23991:1;23988;23984:9;23976:17;;23808:191;;;;:::o;24005:169::-;24145:21;24141:1;24133:6;24129:14;24122:45;24005:169;:::o;24180:366::-;24322:3;24343:67;24407:2;24402:3;24343:67;:::i;:::-;24336:74;;24419:93;24508:3;24419:93;:::i;:::-;24537:2;24532:3;24528:12;24521:19;;24180:366;;;:::o;24552:419::-;24718:4;24756:2;24745:9;24741:18;24733:26;;24805:9;24799:4;24795:20;24791:1;24780:9;24776:17;24769:47;24833:131;24959:4;24833:131;:::i;:::-;24825:139;;24552:419;;;:::o;24977:176::-;25117:28;25113:1;25105:6;25101:14;25094:52;24977:176;:::o;25159:366::-;25301:3;25322:67;25386:2;25381:3;25322:67;:::i;:::-;25315:74;;25398:93;25487:3;25398:93;:::i;:::-;25516:2;25511:3;25507:12;25500:19;;25159:366;;;:::o;25531:419::-;25697:4;25735:2;25724:9;25720:18;25712:26;;25784:9;25778:4;25774:20;25770:1;25759:9;25755:17;25748:47;25812:131;25938:4;25812:131;:::i;:::-;25804:139;;25531:419;;;:::o;25956:238::-;26096:34;26092:1;26084:6;26080:14;26073:58;26165:21;26160:2;26152:6;26148:15;26141:46;25956:238;:::o;26200:366::-;26342:3;26363:67;26427:2;26422:3;26363:67;:::i;:::-;26356:74;;26439:93;26528:3;26439:93;:::i;:::-;26557:2;26552:3;26548:12;26541:19;;26200:366;;;:::o;26572:419::-;26738:4;26776:2;26765:9;26761:18;26753:26;;26825:9;26819:4;26815:20;26811:1;26800:9;26796:17;26789:47;26853:131;26979:4;26853:131;:::i;:::-;26845:139;;26572:419;;;:::o;26997:172::-;27137:24;27133:1;27125:6;27121:14;27114:48;26997:172;:::o;27175:366::-;27317:3;27338:67;27402:2;27397:3;27338:67;:::i;:::-;27331:74;;27414:93;27503:3;27414:93;:::i;:::-;27532:2;27527:3;27523:12;27516:19;;27175:366;;;:::o;27547:419::-;27713:4;27751:2;27740:9;27736:18;27728:26;;27800:9;27794:4;27790:20;27786:1;27775:9;27771:17;27764:47;27828:131;27954:4;27828:131;:::i;:::-;27820:139;;27547:419;;;:::o;27972:234::-;28112:34;28108:1;28100:6;28096:14;28089:58;28181:17;28176:2;28168:6;28164:15;28157:42;27972:234;:::o;28212:366::-;28354:3;28375:67;28439:2;28434:3;28375:67;:::i;:::-;28368:74;;28451:93;28540:3;28451:93;:::i;:::-;28569:2;28564:3;28560:12;28553:19;;28212:366;;;:::o;28584:419::-;28750:4;28788:2;28777:9;28773:18;28765:26;;28837:9;28831:4;28827:20;28823:1;28812:9;28808:17;28801:47;28865:131;28991:4;28865:131;:::i;:::-;28857:139;;28584:419;;;:::o;29009:148::-;29111:11;29148:3;29133:18;;29009:148;;;;:::o;29163:377::-;29269:3;29297:39;29330:5;29297:39;:::i;:::-;29352:89;29434:6;29429:3;29352:89;:::i;:::-;29345:96;;29450:52;29495:6;29490:3;29483:4;29476:5;29472:16;29450:52;:::i;:::-;29527:6;29522:3;29518:16;29511:23;;29273:267;29163:377;;;;:::o;29546:435::-;29726:3;29748:95;29839:3;29830:6;29748:95;:::i;:::-;29741:102;;29860:95;29951:3;29942:6;29860:95;:::i;:::-;29853:102;;29972:3;29965:10;;29546:435;;;;;:::o;29987:275::-;30119:3;30141:95;30232:3;30223:6;30141:95;:::i;:::-;30134:102;;30253:3;30246:10;;29987:275;;;;:::o;30268:225::-;30408:34;30404:1;30396:6;30392:14;30385:58;30477:8;30472:2;30464:6;30460:15;30453:33;30268:225;:::o;30499:366::-;30641:3;30662:67;30726:2;30721:3;30662:67;:::i;:::-;30655:74;;30738:93;30827:3;30738:93;:::i;:::-;30856:2;30851:3;30847:12;30840:19;;30499:366;;;:::o;30871:419::-;31037:4;31075:2;31064:9;31060:18;31052:26;;31124:9;31118:4;31114:20;31110:1;31099:9;31095:17;31088:47;31152:131;31278:4;31152:131;:::i;:::-;31144:139;;30871:419;;;:::o;31296:237::-;31436:34;31432:1;31424:6;31420:14;31413:58;31505:20;31500:2;31492:6;31488:15;31481:45;31296:237;:::o;31539:366::-;31681:3;31702:67;31766:2;31761:3;31702:67;:::i;:::-;31695:74;;31778:93;31867:3;31778:93;:::i;:::-;31896:2;31891:3;31887:12;31880:19;;31539:366;;;:::o;31911:419::-;32077:4;32115:2;32104:9;32100:18;32092:26;;32164:9;32158:4;32154:20;32150:1;32139:9;32135:17;32128:47;32192:131;32318:4;32192:131;:::i;:::-;32184:139;;31911:419;;;:::o;32336:225::-;32476:34;32472:1;32464:6;32460:14;32453:58;32545:8;32540:2;32532:6;32528:15;32521:33;32336:225;:::o;32567:366::-;32709:3;32730:67;32794:2;32789:3;32730:67;:::i;:::-;32723:74;;32806:93;32895:3;32806:93;:::i;:::-;32924:2;32919:3;32915:12;32908:19;;32567:366;;;:::o;32939:419::-;33105:4;33143:2;33132:9;33128:18;33120:26;;33192:9;33186:4;33182:20;33178:1;33167:9;33163:17;33156:47;33220:131;33346:4;33220:131;:::i;:::-;33212:139;;32939:419;;;:::o;33364:224::-;33504:34;33500:1;33492:6;33488:14;33481:58;33573:7;33568:2;33560:6;33556:15;33549:32;33364:224;:::o;33594:366::-;33736:3;33757:67;33821:2;33816:3;33757:67;:::i;:::-;33750:74;;33833:93;33922:3;33833:93;:::i;:::-;33951:2;33946:3;33942:12;33935:19;;33594:366;;;:::o;33966:419::-;34132:4;34170:2;34159:9;34155:18;34147:26;;34219:9;34213:4;34209:20;34205:1;34194:9;34190:17;34183:47;34247:131;34373:4;34247:131;:::i;:::-;34239:139;;33966:419;;;:::o;34391:179::-;34531:31;34527:1;34519:6;34515:14;34508:55;34391:179;:::o;34576:366::-;34718:3;34739:67;34803:2;34798:3;34739:67;:::i;:::-;34732:74;;34815:93;34904:3;34815:93;:::i;:::-;34933:2;34928:3;34924:12;34917:19;;34576:366;;;:::o;34948:419::-;35114:4;35152:2;35141:9;35137:18;35129:26;;35201:9;35195:4;35191:20;35187:1;35176:9;35172:17;35165:47;35229:131;35355:4;35229:131;:::i;:::-;35221:139;;34948:419;;;:::o;35373:147::-;35474:11;35511:3;35496:18;;35373:147;;;;:::o;35526:114::-;;:::o;35646:398::-;35805:3;35826:83;35907:1;35902:3;35826:83;:::i;:::-;35819:90;;35918:93;36007:3;35918:93;:::i;:::-;36036:1;36031:3;36027:11;36020:18;;35646:398;;;:::o;36050:379::-;36234:3;36256:147;36399:3;36256:147;:::i;:::-;36249:154;;36420:3;36413:10;;36050:379;;;:::o;36435:245::-;36575:34;36571:1;36563:6;36559:14;36552:58;36644:28;36639:2;36631:6;36627:15;36620:53;36435:245;:::o;36686:366::-;36828:3;36849:67;36913:2;36908:3;36849:67;:::i;:::-;36842:74;;36925:93;37014:3;36925:93;:::i;:::-;37043:2;37038:3;37034:12;37027:19;;36686:366;;;:::o;37058:419::-;37224:4;37262:2;37251:9;37247:18;37239:26;;37311:9;37305:4;37301:20;37297:1;37286:9;37282:17;37275:47;37339:131;37465:4;37339:131;:::i;:::-;37331:139;;37058:419;;;:::o;37483:229::-;37623:34;37619:1;37611:6;37607:14;37600:58;37692:12;37687:2;37679:6;37675:15;37668:37;37483:229;:::o;37718:366::-;37860:3;37881:67;37945:2;37940:3;37881:67;:::i;:::-;37874:74;;37957:93;38046:3;37957:93;:::i;:::-;38075:2;38070:3;38066:12;38059:19;;37718:366;;;:::o;38090:419::-;38256:4;38294:2;38283:9;38279:18;38271:26;;38343:9;38337:4;38333:20;38329:1;38318:9;38314:17;38307:47;38371:131;38497:4;38371:131;:::i;:::-;38363:139;;38090:419;;;:::o;38515:234::-;38655:34;38651:1;38643:6;38639:14;38632:58;38724:17;38719:2;38711:6;38707:15;38700:42;38515:234;:::o;38755:366::-;38897:3;38918:67;38982:2;38977:3;38918:67;:::i;:::-;38911:74;;38994:93;39083:3;38994:93;:::i;:::-;39112:2;39107:3;39103:12;39096:19;;38755:366;;;:::o;39127:419::-;39293:4;39331:2;39320:9;39316:18;39308:26;;39380:9;39374:4;39370:20;39366:1;39355:9;39351:17;39344:47;39408:131;39534:4;39408:131;:::i;:::-;39400:139;;39127:419;;;:::o;39552:98::-;39603:6;39637:5;39631:12;39621:22;;39552:98;;;:::o;39656:168::-;39739:11;39773:6;39768:3;39761:19;39813:4;39808:3;39804:14;39789:29;;39656:168;;;;:::o;39830:360::-;39916:3;39944:38;39976:5;39944:38;:::i;:::-;39998:70;40061:6;40056:3;39998:70;:::i;:::-;39991:77;;40077:52;40122:6;40117:3;40110:4;40103:5;40099:16;40077:52;:::i;:::-;40154:29;40176:6;40154:29;:::i;:::-;40149:3;40145:39;40138:46;;39920:270;39830:360;;;;:::o;40196:640::-;40391:4;40429:3;40418:9;40414:19;40406:27;;40443:71;40511:1;40500:9;40496:17;40487:6;40443:71;:::i;:::-;40524:72;40592:2;40581:9;40577:18;40568:6;40524:72;:::i;:::-;40606;40674:2;40663:9;40659:18;40650:6;40606:72;:::i;:::-;40725:9;40719:4;40715:20;40710:2;40699:9;40695:18;40688:48;40753:76;40824:4;40815:6;40753:76;:::i;:::-;40745:84;;40196:640;;;;;;;:::o;40842:141::-;40898:5;40929:6;40923:13;40914:22;;40945:32;40971:5;40945:32;:::i;:::-;40842:141;;;;:::o;40989:349::-;41058:6;41107:2;41095:9;41086:7;41082:23;41078:32;41075:119;;;41113:79;;:::i;:::-;41075:119;41233:1;41258:63;41313:7;41304:6;41293:9;41289:22;41258:63;:::i;:::-;41248:73;;41204:127;40989:349;;;;:::o;41344:233::-;41383:3;41406:24;41424:5;41406:24;:::i;:::-;41397:33;;41452:66;41445:5;41442:77;41439:103;;41522:18;;:::i;:::-;41439:103;41569:1;41562:5;41558:13;41551:20;;41344:233;;;:::o;41583:180::-;41631:77;41628:1;41621:88;41728:4;41725:1;41718:15;41752:4;41749:1;41742:15;41769:185;41809:1;41826:20;41844:1;41826:20;:::i;:::-;41821:25;;41860:20;41878:1;41860:20;:::i;:::-;41855:25;;41899:1;41889:35;;41904:18;;:::i;:::-;41889:35;41946:1;41943;41939:9;41934:14;;41769:185;;;;:::o;41960:176::-;41992:1;42009:20;42027:1;42009:20;:::i;:::-;42004:25;;42043:20;42061:1;42043:20;:::i;:::-;42038:25;;42082:1;42072:35;;42087:18;;:::i;:::-;42072:35;42128:1;42125;42121:9;42116:14;;41960:176;;;;:::o;42142:180::-;42190:77;42187:1;42180:88;42287:4;42284:1;42277:15;42311:4;42308:1;42301:15;42328:220;42468:34;42464:1;42456:6;42452:14;42445:58;42537:3;42532:2;42524:6;42520:15;42513:28;42328:220;:::o;42554:366::-;42696:3;42717:67;42781:2;42776:3;42717:67;:::i;:::-;42710:74;;42793:93;42882:3;42793:93;:::i;:::-;42911:2;42906:3;42902:12;42895:19;;42554:366;;;:::o;42926:419::-;43092:4;43130:2;43119:9;43115:18;43107:26;;43179:9;43173:4;43169:20;43165:1;43154:9;43150:17;43143:47;43207:131;43333:4;43207:131;:::i;:::-;43199:139;;42926:419;;;:::o;43351:227::-;43491:34;43487:1;43479:6;43475:14;43468:58;43560:10;43555:2;43547:6;43543:15;43536:35;43351:227;:::o;43584:366::-;43726:3;43747:67;43811:2;43806:3;43747:67;:::i;:::-;43740:74;;43823:93;43912:3;43823:93;:::i;:::-;43941:2;43936:3;43932:12;43925:19;;43584:366;;;:::o;43956:419::-;44122:4;44160:2;44149:9;44145:18;44137:26;;44209:9;44203:4;44199:20;44195:1;44184:9;44180:17;44173:47;44237:131;44363:4;44237:131;:::i;:::-;44229:139;;43956:419;;;:::o
Swarm Source
ipfs://49d477cb71e455db529ffa96ccaf4034d995da6a26e495133b80401baf097bb8
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.