ERC-721
Overview
Max Total Supply
0 RAV
Holders
13
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 RAVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RAVERZ
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract RAVERZ is ERC721, Ownable, PaymentSplitter { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public mintRate = 0.025 ether; constructor(address[] memory _payees, uint256[] memory _shares) ERC721("RAVERZ", "RAV") PaymentSplitter(_payees, _shares) payable {} function _baseURI() internal pure override returns (string memory) { return "ipfs://QmYMDWpyKWQbNggsWg8GuQBoSLvYdWwvjjHfH7JheEALYs/"; } function safeMint(address to) public payable { require(msg.value >= mintRate, 'the minimum price is 0.025 ether'); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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())) : ""; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"payable","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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526658d15e17628000600f5560405162004ebd38038062004ebd833981810160405281019062000034919062000770565b81816040518060400160405280600681526020017f52415645525a00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f52415600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ba9291906200054e565b508060019080519060200190620000d39291906200054e565b505050620000f6620000ea6200024660201b60201c565b6200024e60201b60201c565b80518251146200013d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001349062000917565b60405180910390fd5b600082511162000184576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017b906200095b565b60405180910390fd5b60005b82518110156200023b5762000225838281518110620001cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811062000211577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200031460201b60201c565b8080620002329062000b3e565b91505062000187565b505050505062000d9d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000387576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037e90620008f5565b60405180910390fd5b60008111620003cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c4906200097d565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000452576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004499062000939565b60405180910390fd5b600b829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060075462000509919062000a37565b6007819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac828260405162000542929190620008c8565b60405180910390a15050565b8280546200055c9062000ad2565b90600052602060002090601f016020900481019282620005805760008555620005cc565b82601f106200059b57805160ff1916838001178555620005cc565b82800160010185558215620005cc579182015b82811115620005cb578251825591602001919060010190620005ae565b5b509050620005db9190620005df565b5090565b5b80821115620005fa576000816000905550600101620005e0565b5090565b6000620006156200060f84620009c8565b6200099f565b905080838252602082019050828560208602820111156200063557600080fd5b60005b858110156200066957816200064e8882620006e8565b84526020840193506020830192505060018101905062000638565b5050509392505050565b60006200068a6200068484620009f7565b6200099f565b90508083825260208201905082856020860282011115620006aa57600080fd5b60005b85811015620006de5781620006c3888262000759565b845260208401935060208301925050600181019050620006ad565b5050509392505050565b600081519050620006f98162000d69565b92915050565b600082601f8301126200071157600080fd5b815162000723848260208601620005fe565b91505092915050565b600082601f8301126200073e57600080fd5b81516200075084826020860162000673565b91505092915050565b6000815190506200076a8162000d83565b92915050565b600080604083850312156200078457600080fd5b600083015167ffffffffffffffff8111156200079f57600080fd5b620007ad85828601620006ff565b925050602083015167ffffffffffffffff811115620007cb57600080fd5b620007d9858286016200072c565b9150509250929050565b620007ee8162000a94565b82525050565b600062000803602c8362000a26565b9150620008108262000c2a565b604082019050919050565b60006200082a60328362000a26565b9150620008378262000c79565b604082019050919050565b600062000851602b8362000a26565b91506200085e8262000cc8565b604082019050919050565b600062000878601a8362000a26565b9150620008858262000d17565b602082019050919050565b60006200089f601d8362000a26565b9150620008ac8262000d40565b602082019050919050565b620008c28162000ac8565b82525050565b6000604082019050620008df6000830185620007e3565b620008ee6020830184620008b7565b9392505050565b600060208201905081810360008301526200091081620007f4565b9050919050565b6000602082019050818103600083015262000932816200081b565b9050919050565b60006020820190508181036000830152620009548162000842565b9050919050565b60006020820190508181036000830152620009768162000869565b9050919050565b60006020820190508181036000830152620009988162000890565b9050919050565b6000620009ab620009be565b9050620009b9828262000b08565b919050565b6000604051905090565b600067ffffffffffffffff821115620009e657620009e562000bea565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000a155762000a1462000bea565b5b602082029050602081019050919050565b600082825260208201905092915050565b600062000a448262000ac8565b915062000a518362000ac8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a895762000a8862000b8c565b5b828201905092915050565b600062000aa18262000aa8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000aeb57607f821691505b6020821081141562000b025762000b0162000bbb565b5b50919050565b62000b138262000c19565b810181811067ffffffffffffffff8211171562000b355762000b3462000bea565b5b80604052505050565b600062000b4b8262000ac8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b815762000b8062000b8c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000d748162000a94565b811462000d8057600080fd5b50565b62000d8e8162000ac8565b811462000d9a57600080fd5b50565b6141108062000dad6000396000f3fe6080604052600436106101a05760003560e01c8063715018a6116100ec578063c87b56dd1161008a578063d79779b211610064578063d79779b21461063a578063e33b7de314610677578063e985e9c5146106a2578063f2fde38b146106df576101e7565b8063c87b56dd14610595578063ca0dcf16146105d2578063ce7c2ac2146105fd576101e7565b806395d89b41116100c657806395d89b41146104db5780639852595c14610506578063a22cb46514610543578063b88d4fde1461056c576101e7565b8063715018a61461045c5780638b83209b146104735780638da5cb5b146104b0576101e7565b80633a98ef391161015957806342842e0e1161013357806342842e0e1461039057806348b75044146103b95780636352211e146103e257806370a082311461041f576101e7565b80633a98ef391461030c578063406072a91461033757806340d097c314610374576101e7565b806301ffc9a7146101ec57806306fdde0314610229578063081812fc14610254578063095ea7b31461029157806319165587146102ba57806323b872dd146102e3576101e7565b366101e7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706101ce610708565b346040516101dd9291906131c5565b60405180910390a1005b600080fd5b3480156101f857600080fd5b50610213600480360381019061020e9190612b61565b610710565b60405161022091906131ee565b60405180910390f35b34801561023557600080fd5b5061023e6107f2565b60405161024b9190613209565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612c18565b610884565b6040516102889190613135565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612afc565b610909565b005b3480156102c657600080fd5b506102e160048036038101906102dc9190612991565b610a21565b005b3480156102ef57600080fd5b5061030a600480360381019061030591906129f6565b610bcc565b005b34801561031857600080fd5b50610321610c2c565b60405161032e919061352b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612bdc565b610c36565b60405161036b919061352b565b60405180910390f35b61038e60048036038101906103899190612968565b610cbd565b005b34801561039c57600080fd5b506103b760048036038101906103b291906129f6565b610d28565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612bdc565b610d48565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612c18565b611010565b6040516104169190613135565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612968565b6110c2565b604051610453919061352b565b60405180910390f35b34801561046857600080fd5b5061047161117a565b005b34801561047f57600080fd5b5061049a60048036038101906104959190612c18565b611202565b6040516104a79190613135565b60405180910390f35b3480156104bc57600080fd5b506104c5611270565b6040516104d29190613135565b60405180910390f35b3480156104e757600080fd5b506104f061129a565b6040516104fd9190613209565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612968565b61132c565b60405161053a919061352b565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612ac0565b611375565b005b34801561057857600080fd5b50610593600480360381019061058e9190612a45565b61138b565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190612c18565b6113ed565b6040516105c99190613209565b60405180910390f35b3480156105de57600080fd5b506105e7611494565b6040516105f4919061352b565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612968565b61149a565b604051610631919061352b565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612bb3565b6114e3565b60405161066e919061352b565b60405180910390f35b34801561068357600080fd5b5061068c61152c565b604051610699919061352b565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c491906129ba565b611536565b6040516106d691906131ee565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190612968565b6115ca565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107eb57506107ea826116c2565b5b9050919050565b6060600080546108019061380f565b80601f016020809104026020016040519081016040528092919081815260200182805461082d9061380f565b801561087a5780601f1061084f5761010080835404028352916020019161087a565b820191906000526020600020905b81548152906001019060200180831161085d57829003601f168201915b5050505050905090565b600061088f8261172c565b6108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c59061342b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091482611010565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c906134ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4610708565b73ffffffffffffffffffffffffffffffffffffffff1614806109d357506109d2816109cd610708565b611536565b5b610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a099061338b565b60405180910390fd5b610a1c8383611798565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a9061328b565b60405180910390fd5b6000610aad61152c565b47610ab891906135ea565b90506000610acf8383610aca8661132c565b611851565b90506000811415610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061336b565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b6491906135ea565b925050819055508060086000828254610b7d91906135ea565b92505081905550610b8e83826118bf565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610bbf929190613150565b60405180910390a1505050565b610bdd610bd7610708565b826119b3565b610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906134cb565b60405180910390fd5b610c27838383611a91565b505050565b6000600754905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f54341015610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf9906133eb565b60405180910390fd5b6000610d0e600e611ced565b9050610d1a600e611cfb565b610d248282611d11565b5050565b610d438383836040518060200160405280600081525061138b565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19061328b565b60405180910390fd5b6000610dd5836114e3565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0e9190613135565b60206040518083038186803b158015610e2657600080fd5b505afa158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e9190612c41565b610e6891906135ea565b90506000610e808383610e7b8787610c36565b611851565b90506000811415610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd9061336b565b60405180910390fd5b80600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5291906135ea565b9250508190555080600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa891906135ea565b92505081905550610fba848483611d2f565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516110029291906131c5565b60405180910390a250505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906133cb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a906133ab565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611182610708565b73ffffffffffffffffffffffffffffffffffffffff166111a0611270565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed9061344b565b60405180910390fd5b6112006000611db5565b565b6000600b828154811061123e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112a99061380f565b80601f01602080910402602001604051908101604052809291908181526020018280546112d59061380f565b80156113225780601f106112f757610100808354040283529160200191611322565b820191906000526020600020905b81548152906001019060200180831161130557829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611387611380610708565b8383611e7b565b5050565b61139c611396610708565b836119b3565b6113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906134cb565b60405180910390fd5b6113e784848484611fe8565b50505050565b60606113f88261172c565b611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e9061348b565b60405180910390fd5b6000611441612044565b90506000815111611461576040518060200160405280600081525061148c565b8061146b84612064565b60405160200161147c9291906130fc565b6040516020818303038152906040525b915050919050565b600f5481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600854905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d2610708565b73ffffffffffffffffffffffffffffffffffffffff166115f0611270565b73ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d9061344b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad9061324b565b60405180910390fd5b6116bf81611db5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661180b83611010565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856118a29190613671565b6118ac9190613640565b6118b691906136cb565b90509392505050565b80471015611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f99061330b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161192890613120565b60006040518083038185875af1925050503d8060008114611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b50509050806119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906132eb565b60405180910390fd5b505050565b60006119be8261172c565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061334b565b60405180910390fd5b6000611a0883611010565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a7757508373ffffffffffffffffffffffffffffffffffffffff16611a5f84610884565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a885750611a878185611536565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ab182611010565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe9061346b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906132ab565b60405180910390fd5b611b82838383612211565b611b8d600082611798565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bdd91906136cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3491906135ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611d2b828260405180602001604052806000815250612216565b5050565b611db08363a9059cbb60e01b8484604051602401611d4e9291906131c5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612271565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee1906132cb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fdb91906131ee565b60405180910390a3505050565b611ff3848484611a91565b611fff84848484612338565b61203e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120359061322b565b60405180910390fd5b50505050565b60606040518060600160405280603681526020016140a560369139905090565b606060008214156120ac576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061220c565b600082905060005b600082146120de5780806120c790613872565b915050600a826120d79190613640565b91506120b4565b60008167ffffffffffffffff811115612120577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121525781602001600182028036833780820191505090505b5090505b600085146122055760018261216b91906136cb565b9150600a8561217a91906138bb565b603061218691906135ea565b60f81b8183815181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121fe9190613640565b9450612156565b8093505050505b919050565b505050565b61222083836124cf565b61222d6000848484612338565b61226c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122639061322b565b60405180910390fd5b505050565b60006122d3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661269d9092919063ffffffff16565b905060008151111561233357808060200190518101906122f39190612b38565b612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061350b565b60405180910390fd5b5b505050565b60006123598473ffffffffffffffffffffffffffffffffffffffff166126b5565b156124c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612382610708565b8786866040518563ffffffff1660e01b81526004016123a49493929190613179565b602060405180830381600087803b1580156123be57600080fd5b505af19250505080156123ef57506040513d601f19601f820116820180604052508101906123ec9190612b8a565b60015b612472573d806000811461241f576040519150601f19603f3d011682016040523d82523d6000602084013e612424565b606091505b5060008151141561246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061322b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124c7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369061340b565b60405180910390fd5b6125488161172c565b15612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f9061326b565b60405180910390fd5b61259460008383612211565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e491906135ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606126ac84846000856126c8565b90509392505050565b600080823b905060008111915050919050565b60608247101561270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127049061332b565b60405180910390fd5b612716856126b5565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c906134eb565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161277e91906130e5565b60006040518083038185875af1925050503d80600081146127bb576040519150601f19603f3d011682016040523d82523d6000602084013e6127c0565b606091505b50915091506127d08282866127dc565b92505050949350505050565b606083156127ec5782905061283c565b6000835111156127ff5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128339190613209565b60405180910390fd5b9392505050565b60006128566128518461356b565b613546565b90508281526020810184848401111561286e57600080fd5b6128798482856137cd565b509392505050565b6000813590506128908161401a565b92915050565b6000813590506128a581614031565b92915050565b6000813590506128ba81614048565b92915050565b6000815190506128cf81614048565b92915050565b6000813590506128e48161405f565b92915050565b6000815190506128f98161405f565b92915050565b600082601f83011261291057600080fd5b8135612920848260208601612843565b91505092915050565b60008135905061293881614076565b92915050565b60008135905061294d8161408d565b92915050565b6000815190506129628161408d565b92915050565b60006020828403121561297a57600080fd5b600061298884828501612881565b91505092915050565b6000602082840312156129a357600080fd5b60006129b184828501612896565b91505092915050565b600080604083850312156129cd57600080fd5b60006129db85828601612881565b92505060206129ec85828601612881565b9150509250929050565b600080600060608486031215612a0b57600080fd5b6000612a1986828701612881565b9350506020612a2a86828701612881565b9250506040612a3b8682870161293e565b9150509250925092565b60008060008060808587031215612a5b57600080fd5b6000612a6987828801612881565b9450506020612a7a87828801612881565b9350506040612a8b8782880161293e565b925050606085013567ffffffffffffffff811115612aa857600080fd5b612ab4878288016128ff565b91505092959194509250565b60008060408385031215612ad357600080fd5b6000612ae185828601612881565b9250506020612af2858286016128ab565b9150509250929050565b60008060408385031215612b0f57600080fd5b6000612b1d85828601612881565b9250506020612b2e8582860161293e565b9150509250929050565b600060208284031215612b4a57600080fd5b6000612b58848285016128c0565b91505092915050565b600060208284031215612b7357600080fd5b6000612b81848285016128d5565b91505092915050565b600060208284031215612b9c57600080fd5b6000612baa848285016128ea565b91505092915050565b600060208284031215612bc557600080fd5b6000612bd384828501612929565b91505092915050565b60008060408385031215612bef57600080fd5b6000612bfd85828601612929565b9250506020612c0e85828601612881565b9150509250929050565b600060208284031215612c2a57600080fd5b6000612c388482850161293e565b91505092915050565b600060208284031215612c5357600080fd5b6000612c6184828501612953565b91505092915050565b612c7381613797565b82525050565b612c82816136ff565b82525050565b612c9181613723565b82525050565b6000612ca28261359c565b612cac81856135b2565b9350612cbc8185602086016137dc565b612cc5816139a8565b840191505092915050565b6000612cdb8261359c565b612ce581856135c3565b9350612cf58185602086016137dc565b80840191505092915050565b6000612d0c826135a7565b612d1681856135ce565b9350612d268185602086016137dc565b612d2f816139a8565b840191505092915050565b6000612d45826135a7565b612d4f81856135df565b9350612d5f8185602086016137dc565b80840191505092915050565b6000612d786032836135ce565b9150612d83826139b9565b604082019050919050565b6000612d9b6026836135ce565b9150612da682613a08565b604082019050919050565b6000612dbe601c836135ce565b9150612dc982613a57565b602082019050919050565b6000612de16026836135ce565b9150612dec82613a80565b604082019050919050565b6000612e046024836135ce565b9150612e0f82613acf565b604082019050919050565b6000612e276019836135ce565b9150612e3282613b1e565b602082019050919050565b6000612e4a603a836135ce565b9150612e5582613b47565b604082019050919050565b6000612e6d601d836135ce565b9150612e7882613b96565b602082019050919050565b6000612e906026836135ce565b9150612e9b82613bbf565b604082019050919050565b6000612eb3602c836135ce565b9150612ebe82613c0e565b604082019050919050565b6000612ed6602b836135ce565b9150612ee182613c5d565b604082019050919050565b6000612ef96038836135ce565b9150612f0482613cac565b604082019050919050565b6000612f1c602a836135ce565b9150612f2782613cfb565b604082019050919050565b6000612f3f6029836135ce565b9150612f4a82613d4a565b604082019050919050565b6000612f626020836135ce565b9150612f6d82613d99565b602082019050919050565b6000612f856020836135ce565b9150612f9082613dc2565b602082019050919050565b6000612fa8602c836135ce565b9150612fb382613deb565b604082019050919050565b6000612fcb6020836135ce565b9150612fd682613e3a565b602082019050919050565b6000612fee6029836135ce565b9150612ff982613e63565b604082019050919050565b6000613011602f836135ce565b915061301c82613eb2565b604082019050919050565b60006130346021836135ce565b915061303f82613f01565b604082019050919050565b60006130576000836135c3565b915061306282613f50565b600082019050919050565b600061307a6031836135ce565b915061308582613f53565b604082019050919050565b600061309d601d836135ce565b91506130a882613fa2565b602082019050919050565b60006130c0602a836135ce565b91506130cb82613fcb565b604082019050919050565b6130df8161378d565b82525050565b60006130f18284612cd0565b915081905092915050565b60006131088285612d3a565b91506131148284612d3a565b91508190509392505050565b600061312b8261304a565b9150819050919050565b600060208201905061314a6000830184612c79565b92915050565b60006040820190506131656000830185612c6a565b61317260208301846130d6565b9392505050565b600060808201905061318e6000830187612c79565b61319b6020830186612c79565b6131a860408301856130d6565b81810360608301526131ba8184612c97565b905095945050505050565b60006040820190506131da6000830185612c79565b6131e760208301846130d6565b9392505050565b60006020820190506132036000830184612c88565b92915050565b600060208201905081810360008301526132238184612d01565b905092915050565b6000602082019050818103600083015261324481612d6b565b9050919050565b6000602082019050818103600083015261326481612d8e565b9050919050565b6000602082019050818103600083015261328481612db1565b9050919050565b600060208201905081810360008301526132a481612dd4565b9050919050565b600060208201905081810360008301526132c481612df7565b9050919050565b600060208201905081810360008301526132e481612e1a565b9050919050565b6000602082019050818103600083015261330481612e3d565b9050919050565b6000602082019050818103600083015261332481612e60565b9050919050565b6000602082019050818103600083015261334481612e83565b9050919050565b6000602082019050818103600083015261336481612ea6565b9050919050565b6000602082019050818103600083015261338481612ec9565b9050919050565b600060208201905081810360008301526133a481612eec565b9050919050565b600060208201905081810360008301526133c481612f0f565b9050919050565b600060208201905081810360008301526133e481612f32565b9050919050565b6000602082019050818103600083015261340481612f55565b9050919050565b6000602082019050818103600083015261342481612f78565b9050919050565b6000602082019050818103600083015261344481612f9b565b9050919050565b6000602082019050818103600083015261346481612fbe565b9050919050565b6000602082019050818103600083015261348481612fe1565b9050919050565b600060208201905081810360008301526134a481613004565b9050919050565b600060208201905081810360008301526134c481613027565b9050919050565b600060208201905081810360008301526134e48161306d565b9050919050565b6000602082019050818103600083015261350481613090565b9050919050565b60006020820190508181036000830152613524816130b3565b9050919050565b600060208201905061354060008301846130d6565b92915050565b6000613550613561565b905061355c8282613841565b919050565b6000604051905090565b600067ffffffffffffffff82111561358657613585613979565b5b61358f826139a8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135f58261378d565b91506136008361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613635576136346138ec565b5b828201905092915050565b600061364b8261378d565b91506136568361378d565b9250826136665761366561391b565b5b828204905092915050565b600061367c8261378d565b91506136878361378d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136c0576136bf6138ec565b5b828202905092915050565b60006136d68261378d565b91506136e18361378d565b9250828210156136f4576136f36138ec565b5b828203905092915050565b600061370a8261376d565b9050919050565b600061371c8261376d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613766826136ff565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006137a2826137a9565b9050919050565b60006137b4826137bb565b9050919050565b60006137c68261376d565b9050919050565b82818337600083830152505050565b60005b838110156137fa5780820151818401526020810190506137df565b83811115613809576000848401525b50505050565b6000600282049050600182168061382757607f821691505b6020821081141561383b5761383a61394a565b5b50919050565b61384a826139a8565b810181811067ffffffffffffffff8211171561386957613868613979565b5b80604052505050565b600061387d8261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b0576138af6138ec565b5b600182019050919050565b60006138c68261378d565b91506138d18361378d565b9250826138e1576138e061391b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f746865206d696e696d756d20707269636520697320302e303235206574686572600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b614023816136ff565b811461402e57600080fd5b50565b61403a81613711565b811461404557600080fd5b50565b61405181613723565b811461405c57600080fd5b50565b6140688161372f565b811461407357600080fd5b50565b61407f8161375b565b811461408a57600080fd5b50565b6140968161378d565b81146140a157600080fd5b5056fe697066733a2f2f516d594d445770794b5751624e676773576738477551426f534c7659645777766a6a486648374a686545414c59732fa2646970667358221220effd705d26aba9fe5cb19c31a689ae99743a89eb633e863f0760efd1589bb3db64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000068367ae4cc962ce9fd559684830f8776d61f0c470000000000000000000000008fe3d04c671da6bd0f9986294ed699c9a1f4b5ab000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004
Deployed Bytecode
0x6080604052600436106101a05760003560e01c8063715018a6116100ec578063c87b56dd1161008a578063d79779b211610064578063d79779b21461063a578063e33b7de314610677578063e985e9c5146106a2578063f2fde38b146106df576101e7565b8063c87b56dd14610595578063ca0dcf16146105d2578063ce7c2ac2146105fd576101e7565b806395d89b41116100c657806395d89b41146104db5780639852595c14610506578063a22cb46514610543578063b88d4fde1461056c576101e7565b8063715018a61461045c5780638b83209b146104735780638da5cb5b146104b0576101e7565b80633a98ef391161015957806342842e0e1161013357806342842e0e1461039057806348b75044146103b95780636352211e146103e257806370a082311461041f576101e7565b80633a98ef391461030c578063406072a91461033757806340d097c314610374576101e7565b806301ffc9a7146101ec57806306fdde0314610229578063081812fc14610254578063095ea7b31461029157806319165587146102ba57806323b872dd146102e3576101e7565b366101e7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706101ce610708565b346040516101dd9291906131c5565b60405180910390a1005b600080fd5b3480156101f857600080fd5b50610213600480360381019061020e9190612b61565b610710565b60405161022091906131ee565b60405180910390f35b34801561023557600080fd5b5061023e6107f2565b60405161024b9190613209565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612c18565b610884565b6040516102889190613135565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612afc565b610909565b005b3480156102c657600080fd5b506102e160048036038101906102dc9190612991565b610a21565b005b3480156102ef57600080fd5b5061030a600480360381019061030591906129f6565b610bcc565b005b34801561031857600080fd5b50610321610c2c565b60405161032e919061352b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612bdc565b610c36565b60405161036b919061352b565b60405180910390f35b61038e60048036038101906103899190612968565b610cbd565b005b34801561039c57600080fd5b506103b760048036038101906103b291906129f6565b610d28565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612bdc565b610d48565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612c18565b611010565b6040516104169190613135565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612968565b6110c2565b604051610453919061352b565b60405180910390f35b34801561046857600080fd5b5061047161117a565b005b34801561047f57600080fd5b5061049a60048036038101906104959190612c18565b611202565b6040516104a79190613135565b60405180910390f35b3480156104bc57600080fd5b506104c5611270565b6040516104d29190613135565b60405180910390f35b3480156104e757600080fd5b506104f061129a565b6040516104fd9190613209565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612968565b61132c565b60405161053a919061352b565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612ac0565b611375565b005b34801561057857600080fd5b50610593600480360381019061058e9190612a45565b61138b565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190612c18565b6113ed565b6040516105c99190613209565b60405180910390f35b3480156105de57600080fd5b506105e7611494565b6040516105f4919061352b565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612968565b61149a565b604051610631919061352b565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612bb3565b6114e3565b60405161066e919061352b565b60405180910390f35b34801561068357600080fd5b5061068c61152c565b604051610699919061352b565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c491906129ba565b611536565b6040516106d691906131ee565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190612968565b6115ca565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107eb57506107ea826116c2565b5b9050919050565b6060600080546108019061380f565b80601f016020809104026020016040519081016040528092919081815260200182805461082d9061380f565b801561087a5780601f1061084f5761010080835404028352916020019161087a565b820191906000526020600020905b81548152906001019060200180831161085d57829003601f168201915b5050505050905090565b600061088f8261172c565b6108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c59061342b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091482611010565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c906134ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4610708565b73ffffffffffffffffffffffffffffffffffffffff1614806109d357506109d2816109cd610708565b611536565b5b610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a099061338b565b60405180910390fd5b610a1c8383611798565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a9061328b565b60405180910390fd5b6000610aad61152c565b47610ab891906135ea565b90506000610acf8383610aca8661132c565b611851565b90506000811415610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061336b565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b6491906135ea565b925050819055508060086000828254610b7d91906135ea565b92505081905550610b8e83826118bf565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610bbf929190613150565b60405180910390a1505050565b610bdd610bd7610708565b826119b3565b610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906134cb565b60405180910390fd5b610c27838383611a91565b505050565b6000600754905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f54341015610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf9906133eb565b60405180910390fd5b6000610d0e600e611ced565b9050610d1a600e611cfb565b610d248282611d11565b5050565b610d438383836040518060200160405280600081525061138b565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19061328b565b60405180910390fd5b6000610dd5836114e3565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0e9190613135565b60206040518083038186803b158015610e2657600080fd5b505afa158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e9190612c41565b610e6891906135ea565b90506000610e808383610e7b8787610c36565b611851565b90506000811415610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd9061336b565b60405180910390fd5b80600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5291906135ea565b9250508190555080600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa891906135ea565b92505081905550610fba848483611d2f565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516110029291906131c5565b60405180910390a250505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906133cb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a906133ab565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611182610708565b73ffffffffffffffffffffffffffffffffffffffff166111a0611270565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed9061344b565b60405180910390fd5b6112006000611db5565b565b6000600b828154811061123e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112a99061380f565b80601f01602080910402602001604051908101604052809291908181526020018280546112d59061380f565b80156113225780601f106112f757610100808354040283529160200191611322565b820191906000526020600020905b81548152906001019060200180831161130557829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611387611380610708565b8383611e7b565b5050565b61139c611396610708565b836119b3565b6113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906134cb565b60405180910390fd5b6113e784848484611fe8565b50505050565b60606113f88261172c565b611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e9061348b565b60405180910390fd5b6000611441612044565b90506000815111611461576040518060200160405280600081525061148c565b8061146b84612064565b60405160200161147c9291906130fc565b6040516020818303038152906040525b915050919050565b600f5481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600854905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d2610708565b73ffffffffffffffffffffffffffffffffffffffff166115f0611270565b73ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d9061344b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad9061324b565b60405180910390fd5b6116bf81611db5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661180b83611010565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856118a29190613671565b6118ac9190613640565b6118b691906136cb565b90509392505050565b80471015611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f99061330b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161192890613120565b60006040518083038185875af1925050503d8060008114611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b50509050806119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906132eb565b60405180910390fd5b505050565b60006119be8261172c565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061334b565b60405180910390fd5b6000611a0883611010565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a7757508373ffffffffffffffffffffffffffffffffffffffff16611a5f84610884565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a885750611a878185611536565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ab182611010565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe9061346b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906132ab565b60405180910390fd5b611b82838383612211565b611b8d600082611798565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bdd91906136cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3491906135ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611d2b828260405180602001604052806000815250612216565b5050565b611db08363a9059cbb60e01b8484604051602401611d4e9291906131c5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612271565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee1906132cb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fdb91906131ee565b60405180910390a3505050565b611ff3848484611a91565b611fff84848484612338565b61203e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120359061322b565b60405180910390fd5b50505050565b60606040518060600160405280603681526020016140a560369139905090565b606060008214156120ac576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061220c565b600082905060005b600082146120de5780806120c790613872565b915050600a826120d79190613640565b91506120b4565b60008167ffffffffffffffff811115612120577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121525781602001600182028036833780820191505090505b5090505b600085146122055760018261216b91906136cb565b9150600a8561217a91906138bb565b603061218691906135ea565b60f81b8183815181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121fe9190613640565b9450612156565b8093505050505b919050565b505050565b61222083836124cf565b61222d6000848484612338565b61226c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122639061322b565b60405180910390fd5b505050565b60006122d3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661269d9092919063ffffffff16565b905060008151111561233357808060200190518101906122f39190612b38565b612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061350b565b60405180910390fd5b5b505050565b60006123598473ffffffffffffffffffffffffffffffffffffffff166126b5565b156124c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612382610708565b8786866040518563ffffffff1660e01b81526004016123a49493929190613179565b602060405180830381600087803b1580156123be57600080fd5b505af19250505080156123ef57506040513d601f19601f820116820180604052508101906123ec9190612b8a565b60015b612472573d806000811461241f576040519150601f19603f3d011682016040523d82523d6000602084013e612424565b606091505b5060008151141561246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061322b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124c7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369061340b565b60405180910390fd5b6125488161172c565b15612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f9061326b565b60405180910390fd5b61259460008383612211565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e491906135ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606126ac84846000856126c8565b90509392505050565b600080823b905060008111915050919050565b60608247101561270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127049061332b565b60405180910390fd5b612716856126b5565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c906134eb565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161277e91906130e5565b60006040518083038185875af1925050503d80600081146127bb576040519150601f19603f3d011682016040523d82523d6000602084013e6127c0565b606091505b50915091506127d08282866127dc565b92505050949350505050565b606083156127ec5782905061283c565b6000835111156127ff5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128339190613209565b60405180910390fd5b9392505050565b60006128566128518461356b565b613546565b90508281526020810184848401111561286e57600080fd5b6128798482856137cd565b509392505050565b6000813590506128908161401a565b92915050565b6000813590506128a581614031565b92915050565b6000813590506128ba81614048565b92915050565b6000815190506128cf81614048565b92915050565b6000813590506128e48161405f565b92915050565b6000815190506128f98161405f565b92915050565b600082601f83011261291057600080fd5b8135612920848260208601612843565b91505092915050565b60008135905061293881614076565b92915050565b60008135905061294d8161408d565b92915050565b6000815190506129628161408d565b92915050565b60006020828403121561297a57600080fd5b600061298884828501612881565b91505092915050565b6000602082840312156129a357600080fd5b60006129b184828501612896565b91505092915050565b600080604083850312156129cd57600080fd5b60006129db85828601612881565b92505060206129ec85828601612881565b9150509250929050565b600080600060608486031215612a0b57600080fd5b6000612a1986828701612881565b9350506020612a2a86828701612881565b9250506040612a3b8682870161293e565b9150509250925092565b60008060008060808587031215612a5b57600080fd5b6000612a6987828801612881565b9450506020612a7a87828801612881565b9350506040612a8b8782880161293e565b925050606085013567ffffffffffffffff811115612aa857600080fd5b612ab4878288016128ff565b91505092959194509250565b60008060408385031215612ad357600080fd5b6000612ae185828601612881565b9250506020612af2858286016128ab565b9150509250929050565b60008060408385031215612b0f57600080fd5b6000612b1d85828601612881565b9250506020612b2e8582860161293e565b9150509250929050565b600060208284031215612b4a57600080fd5b6000612b58848285016128c0565b91505092915050565b600060208284031215612b7357600080fd5b6000612b81848285016128d5565b91505092915050565b600060208284031215612b9c57600080fd5b6000612baa848285016128ea565b91505092915050565b600060208284031215612bc557600080fd5b6000612bd384828501612929565b91505092915050565b60008060408385031215612bef57600080fd5b6000612bfd85828601612929565b9250506020612c0e85828601612881565b9150509250929050565b600060208284031215612c2a57600080fd5b6000612c388482850161293e565b91505092915050565b600060208284031215612c5357600080fd5b6000612c6184828501612953565b91505092915050565b612c7381613797565b82525050565b612c82816136ff565b82525050565b612c9181613723565b82525050565b6000612ca28261359c565b612cac81856135b2565b9350612cbc8185602086016137dc565b612cc5816139a8565b840191505092915050565b6000612cdb8261359c565b612ce581856135c3565b9350612cf58185602086016137dc565b80840191505092915050565b6000612d0c826135a7565b612d1681856135ce565b9350612d268185602086016137dc565b612d2f816139a8565b840191505092915050565b6000612d45826135a7565b612d4f81856135df565b9350612d5f8185602086016137dc565b80840191505092915050565b6000612d786032836135ce565b9150612d83826139b9565b604082019050919050565b6000612d9b6026836135ce565b9150612da682613a08565b604082019050919050565b6000612dbe601c836135ce565b9150612dc982613a57565b602082019050919050565b6000612de16026836135ce565b9150612dec82613a80565b604082019050919050565b6000612e046024836135ce565b9150612e0f82613acf565b604082019050919050565b6000612e276019836135ce565b9150612e3282613b1e565b602082019050919050565b6000612e4a603a836135ce565b9150612e5582613b47565b604082019050919050565b6000612e6d601d836135ce565b9150612e7882613b96565b602082019050919050565b6000612e906026836135ce565b9150612e9b82613bbf565b604082019050919050565b6000612eb3602c836135ce565b9150612ebe82613c0e565b604082019050919050565b6000612ed6602b836135ce565b9150612ee182613c5d565b604082019050919050565b6000612ef96038836135ce565b9150612f0482613cac565b604082019050919050565b6000612f1c602a836135ce565b9150612f2782613cfb565b604082019050919050565b6000612f3f6029836135ce565b9150612f4a82613d4a565b604082019050919050565b6000612f626020836135ce565b9150612f6d82613d99565b602082019050919050565b6000612f856020836135ce565b9150612f9082613dc2565b602082019050919050565b6000612fa8602c836135ce565b9150612fb382613deb565b604082019050919050565b6000612fcb6020836135ce565b9150612fd682613e3a565b602082019050919050565b6000612fee6029836135ce565b9150612ff982613e63565b604082019050919050565b6000613011602f836135ce565b915061301c82613eb2565b604082019050919050565b60006130346021836135ce565b915061303f82613f01565b604082019050919050565b60006130576000836135c3565b915061306282613f50565b600082019050919050565b600061307a6031836135ce565b915061308582613f53565b604082019050919050565b600061309d601d836135ce565b91506130a882613fa2565b602082019050919050565b60006130c0602a836135ce565b91506130cb82613fcb565b604082019050919050565b6130df8161378d565b82525050565b60006130f18284612cd0565b915081905092915050565b60006131088285612d3a565b91506131148284612d3a565b91508190509392505050565b600061312b8261304a565b9150819050919050565b600060208201905061314a6000830184612c79565b92915050565b60006040820190506131656000830185612c6a565b61317260208301846130d6565b9392505050565b600060808201905061318e6000830187612c79565b61319b6020830186612c79565b6131a860408301856130d6565b81810360608301526131ba8184612c97565b905095945050505050565b60006040820190506131da6000830185612c79565b6131e760208301846130d6565b9392505050565b60006020820190506132036000830184612c88565b92915050565b600060208201905081810360008301526132238184612d01565b905092915050565b6000602082019050818103600083015261324481612d6b565b9050919050565b6000602082019050818103600083015261326481612d8e565b9050919050565b6000602082019050818103600083015261328481612db1565b9050919050565b600060208201905081810360008301526132a481612dd4565b9050919050565b600060208201905081810360008301526132c481612df7565b9050919050565b600060208201905081810360008301526132e481612e1a565b9050919050565b6000602082019050818103600083015261330481612e3d565b9050919050565b6000602082019050818103600083015261332481612e60565b9050919050565b6000602082019050818103600083015261334481612e83565b9050919050565b6000602082019050818103600083015261336481612ea6565b9050919050565b6000602082019050818103600083015261338481612ec9565b9050919050565b600060208201905081810360008301526133a481612eec565b9050919050565b600060208201905081810360008301526133c481612f0f565b9050919050565b600060208201905081810360008301526133e481612f32565b9050919050565b6000602082019050818103600083015261340481612f55565b9050919050565b6000602082019050818103600083015261342481612f78565b9050919050565b6000602082019050818103600083015261344481612f9b565b9050919050565b6000602082019050818103600083015261346481612fbe565b9050919050565b6000602082019050818103600083015261348481612fe1565b9050919050565b600060208201905081810360008301526134a481613004565b9050919050565b600060208201905081810360008301526134c481613027565b9050919050565b600060208201905081810360008301526134e48161306d565b9050919050565b6000602082019050818103600083015261350481613090565b9050919050565b60006020820190508181036000830152613524816130b3565b9050919050565b600060208201905061354060008301846130d6565b92915050565b6000613550613561565b905061355c8282613841565b919050565b6000604051905090565b600067ffffffffffffffff82111561358657613585613979565b5b61358f826139a8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135f58261378d565b91506136008361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613635576136346138ec565b5b828201905092915050565b600061364b8261378d565b91506136568361378d565b9250826136665761366561391b565b5b828204905092915050565b600061367c8261378d565b91506136878361378d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136c0576136bf6138ec565b5b828202905092915050565b60006136d68261378d565b91506136e18361378d565b9250828210156136f4576136f36138ec565b5b828203905092915050565b600061370a8261376d565b9050919050565b600061371c8261376d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613766826136ff565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006137a2826137a9565b9050919050565b60006137b4826137bb565b9050919050565b60006137c68261376d565b9050919050565b82818337600083830152505050565b60005b838110156137fa5780820151818401526020810190506137df565b83811115613809576000848401525b50505050565b6000600282049050600182168061382757607f821691505b6020821081141561383b5761383a61394a565b5b50919050565b61384a826139a8565b810181811067ffffffffffffffff8211171561386957613868613979565b5b80604052505050565b600061387d8261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b0576138af6138ec565b5b600182019050919050565b60006138c68261378d565b91506138d18361378d565b9250826138e1576138e061391b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f746865206d696e696d756d20707269636520697320302e303235206574686572600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b614023816136ff565b811461402e57600080fd5b50565b61403a81613711565b811461404557600080fd5b50565b61405181613723565b811461405c57600080fd5b50565b6140688161372f565b811461407357600080fd5b50565b61407f8161375b565b811461408a57600080fd5b50565b6140968161378d565b81146140a157600080fd5b5056fe697066733a2f2f516d594d445770794b5751624e676773576738477551426f534c7659645777766a6a486648374a686545414c59732fa2646970667358221220effd705d26aba9fe5cb19c31a689ae99743a89eb633e863f0760efd1589bb3db64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000068367ae4cc962ce9fd559684830f8776d61f0c470000000000000000000000008fe3d04c671da6bd0f9986294ed699c9a1f4b5ab000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004
-----Decoded View---------------
Arg [0] : _payees (address[]): 0x68367aE4cc962Ce9Fd559684830F8776D61f0c47,0x8FE3d04C671DA6BD0F9986294ed699c9A1f4b5ab
Arg [1] : _shares (uint256[]): 6,4
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 00000000000000000000000068367ae4cc962ce9fd559684830f8776d61f0c47
Arg [4] : 0000000000000000000000008fe3d04c671da6bd0f9986294ed699c9a1f4b5ab
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
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.