Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 161 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 17082055 | 683 days ago | IN | 0 ETH | 0.00410633 | ||||
Set Approval For... | 15163764 | 959 days ago | IN | 0 ETH | 0.00032117 | ||||
Set Approval For... | 15134942 | 963 days ago | IN | 0 ETH | 0.00215062 | ||||
Claim Token | 13311612 | 1252 days ago | IN | 0 ETH | 0.01978957 | ||||
Claim Token | 13310336 | 1252 days ago | IN | 0 ETH | 0.01413032 | ||||
Create Cohort | 13310026 | 1252 days ago | IN | 0 ETH | 0.0061587 | ||||
Set Merkle Root | 13310005 | 1252 days ago | IN | 0 ETH | 0.00225235 | ||||
Admin Claim Toke... | 13247991 | 1262 days ago | IN | 0 ETH | 0.01067569 | ||||
Admin Claim Toke... | 13247989 | 1262 days ago | IN | 0 ETH | 0.01123433 | ||||
Admin Claim Toke... | 13247989 | 1262 days ago | IN | 0 ETH | 0.01123433 | ||||
Admin Claim Toke... | 13247989 | 1262 days ago | IN | 0 ETH | 0.01123433 | ||||
Admin Claim Toke... | 13247983 | 1262 days ago | IN | 0 ETH | 0.00893157 | ||||
Admin Claim Toke... | 13247983 | 1262 days ago | IN | 0 ETH | 0.00893157 | ||||
Admin Claim Toke... | 13247983 | 1262 days ago | IN | 0 ETH | 0.00893157 | ||||
Admin Claim Toke... | 13247983 | 1262 days ago | IN | 0 ETH | 0.00893157 | ||||
Admin Claim Toke... | 13247983 | 1262 days ago | IN | 0 ETH | 0.00893157 | ||||
Admin Claim Toke... | 13247983 | 1262 days ago | IN | 0 ETH | 0.00893157 | ||||
Admin Claim Toke... | 13247980 | 1262 days ago | IN | 0 ETH | 0.00942751 | ||||
Admin Claim Toke... | 13247968 | 1262 days ago | IN | 0 ETH | 0.01034819 | ||||
Admin Claim Toke... | 13247968 | 1262 days ago | IN | 0 ETH | 0.01034885 | ||||
Admin Claim Toke... | 13247967 | 1262 days ago | IN | 0 ETH | 0.00923071 | ||||
Admin Claim Toke... | 13247964 | 1262 days ago | IN | 0 ETH | 0.00958677 | ||||
Admin Claim Toke... | 13247964 | 1262 days ago | IN | 0 ETH | 0.00958677 | ||||
Admin Claim Toke... | 13247964 | 1262 days ago | IN | 0 ETH | 0.00958617 | ||||
Admin Claim Toke... | 13247955 | 1262 days ago | IN | 0 ETH | 0.0109024 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Buildspace
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Buildspace is ERC721URIStorage, Ownable { mapping(address => mapping(string => bool)) public claimed; mapping(address => bool) private admins; mapping(string => Cohort) public cohorts; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; string contractBaseURI; bool allowsTransfers = false; struct Cohort { uint128 limit; uint128 tokenMinted; bytes32 merkleRoot; } event Claim( address indexed _receiver, string indexed _cohortId, uint128 _cohortIndex, uint256 _contractIndex, bool _isAdmin ); constructor(string memory _contractBaseURI) ERC721("buildspace", "BUILDSPACE") { admins[msg.sender] = true; contractBaseURI = _contractBaseURI; } modifier onlyAdmin() { require(admins[msg.sender] == true); _; } modifier limitCheck(string memory _cohortId, address to) { require( cohorts[_cohortId].tokenMinted < cohorts[_cohortId].limit, "Buildspace: max tokens issued for cohort" ); require( !claimed[to][_cohortId], "Buildspace: address has already claimed token." ); _; } function _baseURI() internal view virtual override returns (string memory) { return contractBaseURI; } function issueToken( string memory _cohortId, address to, bool _isAdmin ) internal limitCheck(_cohortId, to) returns (uint256) { uint128 nextCohortTokenIndex = cohorts[_cohortId].tokenMinted; string memory _uri = string( abi.encodePacked( _cohortId, "-", uint2str(nextCohortTokenIndex), "/metadata.json" ) ); claimed[to][_cohortId] = true; uint256 newTokenId = _tokenIdTracker.current(); _safeMint(to, newTokenId); emit Claim(to, _cohortId, nextCohortTokenIndex, newTokenId, _isAdmin); _setTokenURI(newTokenId, _uri); cohorts[_cohortId].tokenMinted = nextCohortTokenIndex + 1; _tokenIdTracker.increment(); return newTokenId; } function uint2str(uint128 _i) internal pure returns (string memory str) { if (_i == 0) return "0"; uint128 j = _i; uint128 length; while (j != 0) { length++; j /= 10; } bytes memory bstr = new bytes(length); uint128 k = length; j = _i; while (j != 0) { bstr[--k] = bytes1(uint8(48 + (j % 10))); j /= 10; } str = string(bstr); return str; } function adminClaimToken(string memory _cohortId, address to) external onlyAdmin returns (uint256) { return issueToken(_cohortId, to, true); } function claimToken(string memory _cohortId, bytes32[] memory _proof) external returns (uint256) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_proof, cohorts[_cohortId].merkleRoot, leaf), "Buildspace: address not eligible for claim" ); return issueToken(_cohortId, msg.sender, false); } function setAllowsTransfers(bool _allowsTransfers) external onlyAdmin { allowsTransfers = _allowsTransfers; } function createCohort( string memory _cohortId, uint128 _limit, bytes32 _merkleRoot ) external onlyAdmin { require( cohorts[_cohortId].limit == 0, "Buildspace: Cohort already exists" ); require(_limit > 0, "Buildspace: Limit must be greater than 0"); Cohort memory cohort = Cohort(_limit, 0, _merkleRoot); cohorts[_cohortId] = cohort; } function setMerkleRoot(string memory _cohortId, bytes32 _merkleRoot) external onlyAdmin { require( cohorts[_cohortId].limit > 0, "Buildspace: No cohort limit set" ); cohorts[_cohortId].merkleRoot = _merkleRoot; } function updateAdmin(address _admin, bool isAdmin) external onlyOwner { admins[_admin] = isAdmin; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { require( from == address(0) || to == address(0) || allowsTransfers, "Not allowed to transfer" ); return super._beforeTokenTransfer(from, to, tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT 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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 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 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 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 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 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 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 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 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 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_contractBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_receiver","type":"address"},{"indexed":true,"internalType":"string","name":"_cohortId","type":"string"},{"indexed":false,"internalType":"uint128","name":"_cohortIndex","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"_contractIndex","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_isAdmin","type":"bool"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"_cohortId","type":"string"},{"internalType":"address","name":"to","type":"address"}],"name":"adminClaimToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_cohortId","type":"string"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"claimToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"string","name":"","type":"string"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"cohorts","outputs":[{"internalType":"uint128","name":"limit","type":"uint128"},{"internalType":"uint128","name":"tokenMinted","type":"uint128"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_cohortId","type":"string"},{"internalType":"uint128","name":"_limit","type":"uint128"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"createCohort","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowsTransfers","type":"bool"}],"name":"setAllowsTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cohortId","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"bool","name":"isAdmin","type":"bool"}],"name":"updateAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600d60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004c9238038062004c9283398181016040528101906200005291906200037a565b6040518060400160405280600a81526020017f6275696c647370616365000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4255494c445350414345000000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000258565b508060019080519060200190620000ef92919062000258565b50505062000112620001066200018a60201b60201c565b6200019260201b60201c565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c90805190602001906200018292919062000258565b5050620004f0565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000266906200045c565b90600052602060002090601f0160209004810192826200028a5760008555620002d6565b82601f10620002a557805160ff1916838001178555620002d6565b82800160010185558215620002d6579182015b82811115620002d5578251825591602001919060010190620002b8565b5b509050620002e59190620002e9565b5090565b5b8082111562000304576000816000905550600101620002ea565b5090565b60006200031f6200031984620003f3565b620003bf565b9050828152602081018484840111156200033857600080fd5b6200034584828562000426565b509392505050565b600082601f8301126200035f57600080fd5b81516200037184826020860162000308565b91505092915050565b6000602082840312156200038d57600080fd5b600082015167ffffffffffffffff811115620003a857600080fd5b620003b6848285016200034d565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620003e957620003e8620004c1565b5b8060405250919050565b600067ffffffffffffffff821115620004115762000410620004c1565b5b601f19601f8301169050602081019050919050565b60005b838110156200044657808201518184015260208101905062000429565b8381111562000456576000848401525b50505050565b600060028204905060018216806200047557607f821691505b602082108114156200048c576200048b62000492565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61479280620005006000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146103d7578063c87b56dd146103f3578063dbc1910214610423578063e985e9c514610453578063ec7981f014610483578063f2fde38b1461049f57610158565b8063715018a6146103275780638da5cb5b146103315780638ffc391a1461034f57806395d89b4114610381578063a22cb4651461039f578063b7aafa87146103bb57610158565b8063345d681811610115578063345d68181461024357806342842e0e146102735780635e51d31a1461028f5780636352211e146102ab578063670a6fd9146102db57806370a08231146102f757610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db578063163cf2e3146101f757806323b872dd14610227575b600080fd5b61017760048036038101906101729190612f8e565b6104bb565b6040516101849190613d96565b60405180910390f35b61019561059d565b6040516101a29190613db1565b60405180910390f35b6101c560048036038101906101c0919061319c565b61062f565b6040516101d29190613d2f565b60405180910390f35b6101f560048036038101906101f09190612f29565b6106b4565b005b610211600480360381019061020c9190613021565b6107cc565b60405161021e9190614161565b60405180910390f35b610241600480360381019061023c9190612dcf565b61083f565b005b61025d60048036038101906102589190613075565b61089f565b60405161026a9190614161565b60405180910390f35b61028d60048036038101906102889190612dcf565b61094b565b005b6102a960048036038101906102a49190612f65565b61096b565b005b6102c560048036038101906102c0919061319c565b6109e5565b6040516102d29190613d2f565b60405180910390f35b6102f560048036038101906102f09190612e99565b610a97565b005b610311600480360381019061030c9190612d6a565b610b6e565b60405161031e9190614161565b60405180910390f35b61032f610c26565b005b610339610cae565b6040516103469190613d2f565b60405180910390f35b61036960048036038101906103649190612fe0565b610cd8565b604051610378939291906140f3565b60405180910390f35b610389610d50565b6040516103969190613db1565b60405180910390f35b6103b960048036038101906103b49190612e99565b610de2565b005b6103d560048036038101906103d091906130e1565b610f63565b005b6103f160048036038101906103ec9190612e1e565b61107c565b005b61040d6004803603810190610408919061319c565b6110de565b60405161041a9190613db1565b60405180910390f35b61043d60048036038101906104389190612ed5565b611230565b60405161044a9190613d96565b60405180910390f35b61046d60048036038101906104689190612d93565b611275565b60405161047a9190613d96565b60405180910390f35b61049d60048036038101906104989190613135565b611309565b005b6104b960048036038101906104b49190612d6a565b611541565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610596575061059582611639565b5b9050919050565b6060600080546105ac906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546105d8906144b4565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b600061063a826116a3565b610679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067090613fb3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106bf826109e5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790614033565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661074f61170f565b73ffffffffffffffffffffffffffffffffffffffff16148061077e575061077d8161077861170f565b611275565b5b6107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490613ed3565b60405180910390fd5b6107c78383611717565b505050565b600060011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461082b57600080fd5b610837838360016117d0565b905092915050565b61085061084a61170f565b82611b48565b61088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690614073565b60405180910390fd5b61089a838383611c26565b505050565b600080336040516020016108b39190613c73565b6040516020818303038152906040528051906020012090506108f783600a866040516108df9190613cba565b90815260200160405180910390206001015483611e82565b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90614093565b60405180910390fd5b610942843360006117d0565b91505092915050565b6109668383836040518060200160405280600081525061107c565b505050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146109c857600080fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613f13565b60405180910390fd5b80915050919050565b610a9f61170f565b73ffffffffffffffffffffffffffffffffffffffff16610abd610cae565b73ffffffffffffffffffffffffffffffffffffffff1614610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90613fd3565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613ef3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c2e61170f565b73ffffffffffffffffffffffffffffffffffffffff16610c4c610cae565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613fd3565b60405180910390fd5b610cac6000611f5e565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a818051602081018201805184825260208301602085012081835280955050505050506000915090508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16908060010154905083565b606060018054610d5f906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b906144b4565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b610dea61170f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613e53565b60405180910390fd5b8060056000610e6561170f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1261170f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f579190613d96565b60405180910390a35050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fc057600080fd5b6000600a83604051610fd29190613cba565b908152602001604051809103902060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1611611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990613f93565b60405180910390fd5b80600a836040516110639190613cba565b9081526020016040518091039020600101819055505050565b61108d61108761170f565b83611b48565b6110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614073565b60405180910390fd5b6110d884848484612024565b50505050565b60606110e9826116a3565b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90613f73565b60405180910390fd5b6000600660008481526020019081526020016000208054611148906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611174906144b4565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b5050505050905060006111d2612080565b90506000815114156111e857819250505061122b565b60008251111561121d578082604051602001611205929190613cd1565b6040516020818303038152906040529250505061122b565b61122684612112565b925050505b919050565b6008602052816000526040600020818051602081018201805184825260208301602085012081835280955050505050506000915091509054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461136657600080fd5b6000600a846040516113789190613cba565b908152602001604051809103902060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16146113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906140d3565b60405180910390fd5b6000826fffffffffffffffffffffffffffffffff161161144d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611444906140b3565b60405180910390fd5b60006040518060600160405280846fffffffffffffffffffffffffffffffff16815260200160006fffffffffffffffffffffffffffffffff16815260200183815250905080600a856040516114a29190613cba565b908152602001604051809103902060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506040820151816001015590505050505050565b61154961170f565b73ffffffffffffffffffffffffffffffffffffffff16611567610cae565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613fd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613df3565b60405180910390fd5b61163681611f5e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178a836109e5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008383600a826040516117e49190613cba565b908152602001604051809103902060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16600a836040516118349190613cba565b908152602001604051809103902060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16106118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613eb3565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020826040516119019190613cba565b908152602001604051809103902060009054906101000a900460ff161561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613e93565b60405180910390fd5b6000600a8760405161196f9190613cba565b908152602001604051809103902060000160109054906101000a90046fffffffffffffffffffffffffffffffff1690506000876119ab836121b9565b6040516020016119bc929190613cf5565b60405160208183030381529060405290506001600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002089604051611a1c9190613cba565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506000611a4d600b6123c6565b9050611a5988826123d4565b88604051611a679190613cba565b60405180910390208873ffffffffffffffffffffffffffffffffffffffff167f436ed5ad57b88689854d2b756b16ffc1e461f71b9c88bc4316a6b58e9d7fc80985848b604051611ab99392919061412a565b60405180910390a3611acb81836123f2565b600183611ad8919061427c565b600a8a604051611ae89190613cba565b908152602001604051809103902060000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550611b39600b612466565b80955050505050509392505050565b6000611b53826116a3565b611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613e73565b60405180910390fd5b6000611b9d836109e5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0c57508373ffffffffffffffffffffffffffffffffffffffff16611bf48461062f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c1d5750611c1c8185611275565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c46826109e5565b73ffffffffffffffffffffffffffffffffffffffff1614611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613ff3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613e33565b60405180910390fd5b611d1783838361247c565b611d22600082611717565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d72919061437a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc991906142c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008082905060005b8551811015611f50576000868281518110611ecf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311611f10578281604051602001611ef3929190613c8e565b604051602081830303815290604052805190602001209250611f3c565b8083604051602001611f23929190613c8e565b6040516020818303038152906040528051906020012092505b508080611f489061451f565b915050611e8b565b508381149150509392505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61202f848484611c26565b61203b84848484612549565b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613dd3565b60405180910390fd5b50505050565b6060600c805461208f906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546120bb906144b4565b80156121085780601f106120dd57610100808354040283529160200191612108565b820191906000526020600020905b8154815290600101906020018083116120eb57829003601f168201915b5050505050905090565b606061211d826116a3565b61215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390614013565b60405180910390fd5b6000612166612080565b9050600081511161218657604051806020016040528060008152506121b1565b80612190846126e0565b6040516020016121a1929190613cd1565b6040516020818303038152906040525b915050919050565b60606000826fffffffffffffffffffffffffffffffff161415612213576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c1565b600082905060005b6000826fffffffffffffffffffffffffffffffff1614612257578080612240906144e6565b915050600a826122509190614318565b915061221b565b6000816fffffffffffffffffffffffffffffffff1667ffffffffffffffff8111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd5781602001600182028036833780820191505090505b50905060008290508593505b6000846fffffffffffffffffffffffffffffffff16146123b957600a846123109190614596565b603061231c919061427c565b60f81b828261232a9061448a565b9250826fffffffffffffffffffffffffffffffff1681518110612376577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a846123b29190614318565b93506122e9565b819450505050505b919050565b600081600001549050919050565b6123ee82826040518060200160405280600081525061288d565b5050565b6123fb826116a3565b61243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190613f33565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612461929190612ace565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806124e35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806124fa5750600d60009054906101000a900460ff165b612539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253090614053565b60405180910390fd5b6125448383836128e8565b505050565b600061256a8473ffffffffffffffffffffffffffffffffffffffff166128ed565b156126d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261259361170f565b8786866040518563ffffffff1660e01b81526004016125b59493929190613d4a565b602060405180830381600087803b1580156125cf57600080fd5b505af192505050801561260057506040513d601f19601f820116820180604052508101906125fd9190612fb7565b60015b612683573d8060008114612630576040519150601f19603f3d011682016040523d82523d6000602084013e612635565b606091505b5060008151141561267b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267290613dd3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d8565b600190505b949350505050565b60606000821415612728576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612888565b600082905060005b6000821461275a5780806127439061451f565b915050600a826127539190614349565b9150612730565b60008167ffffffffffffffff81111561279c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ce5781602001600182028036833780820191505090505b5090505b60008514612881576001826127e7919061437a565b9150600a856127f691906145c7565b603061280291906142c2565b60f81b81838151811061283e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561287a9190614349565b94506127d2565b8093505050505b919050565b6128978383612900565b6128a46000848484612549565b6128e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128da90613dd3565b60405180910390fd5b505050565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296790613f53565b60405180910390fd5b612979816116a3565b156129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090613e13565b60405180910390fd5b6129c56000838361247c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1591906142c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ada906144b4565b90600052602060002090601f016020900481019282612afc5760008555612b43565b82601f10612b1557805160ff1916838001178555612b43565b82800160010185558215612b43579182015b82811115612b42578251825591602001919060010190612b27565b5b509050612b509190612b54565b5090565b5b80821115612b6d576000816000905550600101612b55565b5090565b6000612b84612b7f846141ad565b61417c565b90508083825260208201905082856020860282011115612ba357600080fd5b60005b85811015612bd35781612bb98882612cad565b845260208401935060208301925050600181019050612ba6565b5050509392505050565b6000612bf0612beb846141d9565b61417c565b905082815260208101848484011115612c0857600080fd5b612c13848285614448565b509392505050565b6000612c2e612c2984614209565b61417c565b905082815260208101848484011115612c4657600080fd5b612c51848285614448565b509392505050565b600081359050612c68816146d2565b92915050565b600082601f830112612c7f57600080fd5b8135612c8f848260208601612b71565b91505092915050565b600081359050612ca7816146e9565b92915050565b600081359050612cbc81614700565b92915050565b600081359050612cd181614717565b92915050565b600081519050612ce681614717565b92915050565b600082601f830112612cfd57600080fd5b8135612d0d848260208601612bdd565b91505092915050565b600082601f830112612d2757600080fd5b8135612d37848260208601612c1b565b91505092915050565b600081359050612d4f8161472e565b92915050565b600081359050612d6481614745565b92915050565b600060208284031215612d7c57600080fd5b6000612d8a84828501612c59565b91505092915050565b60008060408385031215612da657600080fd5b6000612db485828601612c59565b9250506020612dc585828601612c59565b9150509250929050565b600080600060608486031215612de457600080fd5b6000612df286828701612c59565b9350506020612e0386828701612c59565b9250506040612e1486828701612d55565b9150509250925092565b60008060008060808587031215612e3457600080fd5b6000612e4287828801612c59565b9450506020612e5387828801612c59565b9350506040612e6487828801612d55565b925050606085013567ffffffffffffffff811115612e8157600080fd5b612e8d87828801612cec565b91505092959194509250565b60008060408385031215612eac57600080fd5b6000612eba85828601612c59565b9250506020612ecb85828601612c98565b9150509250929050565b60008060408385031215612ee857600080fd5b6000612ef685828601612c59565b925050602083013567ffffffffffffffff811115612f1357600080fd5b612f1f85828601612d16565b9150509250929050565b60008060408385031215612f3c57600080fd5b6000612f4a85828601612c59565b9250506020612f5b85828601612d55565b9150509250929050565b600060208284031215612f7757600080fd5b6000612f8584828501612c98565b91505092915050565b600060208284031215612fa057600080fd5b6000612fae84828501612cc2565b91505092915050565b600060208284031215612fc957600080fd5b6000612fd784828501612cd7565b91505092915050565b600060208284031215612ff257600080fd5b600082013567ffffffffffffffff81111561300c57600080fd5b61301884828501612d16565b91505092915050565b6000806040838503121561303457600080fd5b600083013567ffffffffffffffff81111561304e57600080fd5b61305a85828601612d16565b925050602061306b85828601612c59565b9150509250929050565b6000806040838503121561308857600080fd5b600083013567ffffffffffffffff8111156130a257600080fd5b6130ae85828601612d16565b925050602083013567ffffffffffffffff8111156130cb57600080fd5b6130d785828601612c6e565b9150509250929050565b600080604083850312156130f457600080fd5b600083013567ffffffffffffffff81111561310e57600080fd5b61311a85828601612d16565b925050602061312b85828601612cad565b9150509250929050565b60008060006060848603121561314a57600080fd5b600084013567ffffffffffffffff81111561316457600080fd5b61317086828701612d16565b935050602061318186828701612d40565b925050604061319286828701612cad565b9150509250925092565b6000602082840312156131ae57600080fd5b60006131bc84828501612d55565b91505092915050565b6131ce816143ae565b82525050565b6131e56131e0826143ae565b614568565b82525050565b6131f4816143c0565b82525050565b613203816143cc565b82525050565b61321a613215826143cc565b61457a565b82525050565b600061322b82614239565b613235818561424f565b9350613245818560208601614457565b61324e816146b4565b840191505092915050565b600061326482614244565b61326e8185614260565b935061327e818560208601614457565b613287816146b4565b840191505092915050565b600061329d82614244565b6132a78185614271565b93506132b7818560208601614457565b80840191505092915050565b60006132d0603283614260565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613336602683614260565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601c83614260565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006133dc600e83614271565b91507f2f6d657461646174612e6a736f6e0000000000000000000000000000000000006000830152600e82019050919050565b600061341c602483614260565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613482601983614260565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006134c2602c83614260565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613528602e83614260565b91507f4275696c6473706163653a20616464726573732068617320616c72656164792060008301527f636c61696d656420746f6b656e2e0000000000000000000000000000000000006020830152604082019050919050565b600061358e602883614260565b91507f4275696c6473706163653a206d617820746f6b656e732069737375656420666f60008301527f7220636f686f72740000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f4603883614260565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061365a602a83614260565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006136c0602983614260565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613726602e83614260565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b600061378c602083614260565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006137cc603183614260565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613832601f83614260565b91507f4275696c6473706163653a204e6f20636f686f7274206c696d697420736574006000830152602082019050919050565b6000613872602c83614260565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138d8602083614260565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613918602983614260565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061397e602f83614260565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006139e4602183614260565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a4a601783614260565b91507f4e6f7420616c6c6f77656420746f207472616e736665720000000000000000006000830152602082019050919050565b6000613a8a603183614260565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613af0602a83614260565b91507f4275696c6473706163653a2061646472657373206e6f7420656c696769626c6560008301527f20666f7220636c61696d000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b56600183614271565b91507f2d000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613b96602883614260565b91507f4275696c6473706163653a204c696d6974206d7573742062652067726561746560008301527f72207468616e20300000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bfc602183614260565b91507f4275696c6473706163653a20436f686f727420616c726561647920657869737460008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613c5e81614402565b82525050565b613c6d8161443e565b82525050565b6000613c7f82846131d4565b60148201915081905092915050565b6000613c9a8285613209565b602082019150613caa8284613209565b6020820191508190509392505050565b6000613cc68284613292565b915081905092915050565b6000613cdd8285613292565b9150613ce98284613292565b91508190509392505050565b6000613d018285613292565b9150613d0c82613b49565b9150613d188284613292565b9150613d23826133cf565b91508190509392505050565b6000602082019050613d4460008301846131c5565b92915050565b6000608082019050613d5f60008301876131c5565b613d6c60208301866131c5565b613d796040830185613c64565b8181036060830152613d8b8184613220565b905095945050505050565b6000602082019050613dab60008301846131eb565b92915050565b60006020820190508181036000830152613dcb8184613259565b905092915050565b60006020820190508181036000830152613dec816132c3565b9050919050565b60006020820190508181036000830152613e0c81613329565b9050919050565b60006020820190508181036000830152613e2c8161338f565b9050919050565b60006020820190508181036000830152613e4c8161340f565b9050919050565b60006020820190508181036000830152613e6c81613475565b9050919050565b60006020820190508181036000830152613e8c816134b5565b9050919050565b60006020820190508181036000830152613eac8161351b565b9050919050565b60006020820190508181036000830152613ecc81613581565b9050919050565b60006020820190508181036000830152613eec816135e7565b9050919050565b60006020820190508181036000830152613f0c8161364d565b9050919050565b60006020820190508181036000830152613f2c816136b3565b9050919050565b60006020820190508181036000830152613f4c81613719565b9050919050565b60006020820190508181036000830152613f6c8161377f565b9050919050565b60006020820190508181036000830152613f8c816137bf565b9050919050565b60006020820190508181036000830152613fac81613825565b9050919050565b60006020820190508181036000830152613fcc81613865565b9050919050565b60006020820190508181036000830152613fec816138cb565b9050919050565b6000602082019050818103600083015261400c8161390b565b9050919050565b6000602082019050818103600083015261402c81613971565b9050919050565b6000602082019050818103600083015261404c816139d7565b9050919050565b6000602082019050818103600083015261406c81613a3d565b9050919050565b6000602082019050818103600083015261408c81613a7d565b9050919050565b600060208201905081810360008301526140ac81613ae3565b9050919050565b600060208201905081810360008301526140cc81613b89565b9050919050565b600060208201905081810360008301526140ec81613bef565b9050919050565b60006060820190506141086000830186613c55565b6141156020830185613c55565b61412260408301846131fa565b949350505050565b600060608201905061413f6000830186613c55565b61414c6020830185613c64565b61415960408301846131eb565b949350505050565b60006020820190506141766000830184613c64565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141a3576141a2614685565b5b8060405250919050565b600067ffffffffffffffff8211156141c8576141c7614685565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141f4576141f3614685565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561422457614223614685565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061428782614402565b915061429283614402565b9250826fffffffffffffffffffffffffffffffff038211156142b7576142b66145f8565b5b828201905092915050565b60006142cd8261443e565b91506142d88361443e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561430d5761430c6145f8565b5b828201905092915050565b600061432382614402565b915061432e83614402565b92508261433e5761433d614627565b5b828204905092915050565b60006143548261443e565b915061435f8361443e565b92508261436f5761436e614627565b5b828204905092915050565b60006143858261443e565b91506143908361443e565b9250828210156143a3576143a26145f8565b5b828203905092915050565b60006143b98261441e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447557808201518184015260208101905061445a565b83811115614484576000848401525b50505050565b600061449582614402565b915060008214156144a9576144a86145f8565b5b600182039050919050565b600060028204905060018216806144cc57607f821691505b602082108114156144e0576144df614656565b5b50919050565b60006144f182614402565b91506fffffffffffffffffffffffffffffffff821415614514576145136145f8565b5b600182019050919050565b600061452a8261443e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455d5761455c6145f8565b5b600182019050919050565b600061457382614584565b9050919050565b6000819050919050565b600061458f826146c5565b9050919050565b60006145a182614402565b91506145ac83614402565b9250826145bc576145bb614627565b5b828206905092915050565b60006145d28261443e565b91506145dd8361443e565b9250826145ed576145ec614627565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6146db816143ae565b81146146e657600080fd5b50565b6146f2816143c0565b81146146fd57600080fd5b50565b614709816143cc565b811461471457600080fd5b50565b614720816143d6565b811461472b57600080fd5b50565b61473781614402565b811461474257600080fd5b50565b61474e8161443e565b811461475957600080fd5b5056fea26469706673582212205dffb5f3fb60cef74fee6791262db142f97ec1b81e7dc2774d2017d3d2ae98a864736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f746f6b656e732e6275696c6473706163652e736f2f6173736574732f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146103d7578063c87b56dd146103f3578063dbc1910214610423578063e985e9c514610453578063ec7981f014610483578063f2fde38b1461049f57610158565b8063715018a6146103275780638da5cb5b146103315780638ffc391a1461034f57806395d89b4114610381578063a22cb4651461039f578063b7aafa87146103bb57610158565b8063345d681811610115578063345d68181461024357806342842e0e146102735780635e51d31a1461028f5780636352211e146102ab578063670a6fd9146102db57806370a08231146102f757610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db578063163cf2e3146101f757806323b872dd14610227575b600080fd5b61017760048036038101906101729190612f8e565b6104bb565b6040516101849190613d96565b60405180910390f35b61019561059d565b6040516101a29190613db1565b60405180910390f35b6101c560048036038101906101c0919061319c565b61062f565b6040516101d29190613d2f565b60405180910390f35b6101f560048036038101906101f09190612f29565b6106b4565b005b610211600480360381019061020c9190613021565b6107cc565b60405161021e9190614161565b60405180910390f35b610241600480360381019061023c9190612dcf565b61083f565b005b61025d60048036038101906102589190613075565b61089f565b60405161026a9190614161565b60405180910390f35b61028d60048036038101906102889190612dcf565b61094b565b005b6102a960048036038101906102a49190612f65565b61096b565b005b6102c560048036038101906102c0919061319c565b6109e5565b6040516102d29190613d2f565b60405180910390f35b6102f560048036038101906102f09190612e99565b610a97565b005b610311600480360381019061030c9190612d6a565b610b6e565b60405161031e9190614161565b60405180910390f35b61032f610c26565b005b610339610cae565b6040516103469190613d2f565b60405180910390f35b61036960048036038101906103649190612fe0565b610cd8565b604051610378939291906140f3565b60405180910390f35b610389610d50565b6040516103969190613db1565b60405180910390f35b6103b960048036038101906103b49190612e99565b610de2565b005b6103d560048036038101906103d091906130e1565b610f63565b005b6103f160048036038101906103ec9190612e1e565b61107c565b005b61040d6004803603810190610408919061319c565b6110de565b60405161041a9190613db1565b60405180910390f35b61043d60048036038101906104389190612ed5565b611230565b60405161044a9190613d96565b60405180910390f35b61046d60048036038101906104689190612d93565b611275565b60405161047a9190613d96565b60405180910390f35b61049d60048036038101906104989190613135565b611309565b005b6104b960048036038101906104b49190612d6a565b611541565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610596575061059582611639565b5b9050919050565b6060600080546105ac906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546105d8906144b4565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b600061063a826116a3565b610679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067090613fb3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106bf826109e5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790614033565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661074f61170f565b73ffffffffffffffffffffffffffffffffffffffff16148061077e575061077d8161077861170f565b611275565b5b6107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490613ed3565b60405180910390fd5b6107c78383611717565b505050565b600060011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461082b57600080fd5b610837838360016117d0565b905092915050565b61085061084a61170f565b82611b48565b61088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690614073565b60405180910390fd5b61089a838383611c26565b505050565b600080336040516020016108b39190613c73565b6040516020818303038152906040528051906020012090506108f783600a866040516108df9190613cba565b90815260200160405180910390206001015483611e82565b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90614093565b60405180910390fd5b610942843360006117d0565b91505092915050565b6109668383836040518060200160405280600081525061107c565b505050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146109c857600080fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613f13565b60405180910390fd5b80915050919050565b610a9f61170f565b73ffffffffffffffffffffffffffffffffffffffff16610abd610cae565b73ffffffffffffffffffffffffffffffffffffffff1614610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90613fd3565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613ef3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c2e61170f565b73ffffffffffffffffffffffffffffffffffffffff16610c4c610cae565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613fd3565b60405180910390fd5b610cac6000611f5e565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a818051602081018201805184825260208301602085012081835280955050505050506000915090508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16908060010154905083565b606060018054610d5f906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b906144b4565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b610dea61170f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613e53565b60405180910390fd5b8060056000610e6561170f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1261170f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f579190613d96565b60405180910390a35050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fc057600080fd5b6000600a83604051610fd29190613cba565b908152602001604051809103902060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1611611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990613f93565b60405180910390fd5b80600a836040516110639190613cba565b9081526020016040518091039020600101819055505050565b61108d61108761170f565b83611b48565b6110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614073565b60405180910390fd5b6110d884848484612024565b50505050565b60606110e9826116a3565b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90613f73565b60405180910390fd5b6000600660008481526020019081526020016000208054611148906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611174906144b4565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b5050505050905060006111d2612080565b90506000815114156111e857819250505061122b565b60008251111561121d578082604051602001611205929190613cd1565b6040516020818303038152906040529250505061122b565b61122684612112565b925050505b919050565b6008602052816000526040600020818051602081018201805184825260208301602085012081835280955050505050506000915091509054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461136657600080fd5b6000600a846040516113789190613cba565b908152602001604051809103902060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16146113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906140d3565b60405180910390fd5b6000826fffffffffffffffffffffffffffffffff161161144d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611444906140b3565b60405180910390fd5b60006040518060600160405280846fffffffffffffffffffffffffffffffff16815260200160006fffffffffffffffffffffffffffffffff16815260200183815250905080600a856040516114a29190613cba565b908152602001604051809103902060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506040820151816001015590505050505050565b61154961170f565b73ffffffffffffffffffffffffffffffffffffffff16611567610cae565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613fd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613df3565b60405180910390fd5b61163681611f5e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178a836109e5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008383600a826040516117e49190613cba565b908152602001604051809103902060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16600a836040516118349190613cba565b908152602001604051809103902060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16106118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613eb3565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020826040516119019190613cba565b908152602001604051809103902060009054906101000a900460ff161561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613e93565b60405180910390fd5b6000600a8760405161196f9190613cba565b908152602001604051809103902060000160109054906101000a90046fffffffffffffffffffffffffffffffff1690506000876119ab836121b9565b6040516020016119bc929190613cf5565b60405160208183030381529060405290506001600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002089604051611a1c9190613cba565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506000611a4d600b6123c6565b9050611a5988826123d4565b88604051611a679190613cba565b60405180910390208873ffffffffffffffffffffffffffffffffffffffff167f436ed5ad57b88689854d2b756b16ffc1e461f71b9c88bc4316a6b58e9d7fc80985848b604051611ab99392919061412a565b60405180910390a3611acb81836123f2565b600183611ad8919061427c565b600a8a604051611ae89190613cba565b908152602001604051809103902060000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550611b39600b612466565b80955050505050509392505050565b6000611b53826116a3565b611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613e73565b60405180910390fd5b6000611b9d836109e5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0c57508373ffffffffffffffffffffffffffffffffffffffff16611bf48461062f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c1d5750611c1c8185611275565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c46826109e5565b73ffffffffffffffffffffffffffffffffffffffff1614611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613ff3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613e33565b60405180910390fd5b611d1783838361247c565b611d22600082611717565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d72919061437a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc991906142c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008082905060005b8551811015611f50576000868281518110611ecf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311611f10578281604051602001611ef3929190613c8e565b604051602081830303815290604052805190602001209250611f3c565b8083604051602001611f23929190613c8e565b6040516020818303038152906040528051906020012092505b508080611f489061451f565b915050611e8b565b508381149150509392505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61202f848484611c26565b61203b84848484612549565b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613dd3565b60405180910390fd5b50505050565b6060600c805461208f906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546120bb906144b4565b80156121085780601f106120dd57610100808354040283529160200191612108565b820191906000526020600020905b8154815290600101906020018083116120eb57829003601f168201915b5050505050905090565b606061211d826116a3565b61215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390614013565b60405180910390fd5b6000612166612080565b9050600081511161218657604051806020016040528060008152506121b1565b80612190846126e0565b6040516020016121a1929190613cd1565b6040516020818303038152906040525b915050919050565b60606000826fffffffffffffffffffffffffffffffff161415612213576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c1565b600082905060005b6000826fffffffffffffffffffffffffffffffff1614612257578080612240906144e6565b915050600a826122509190614318565b915061221b565b6000816fffffffffffffffffffffffffffffffff1667ffffffffffffffff8111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd5781602001600182028036833780820191505090505b50905060008290508593505b6000846fffffffffffffffffffffffffffffffff16146123b957600a846123109190614596565b603061231c919061427c565b60f81b828261232a9061448a565b9250826fffffffffffffffffffffffffffffffff1681518110612376577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a846123b29190614318565b93506122e9565b819450505050505b919050565b600081600001549050919050565b6123ee82826040518060200160405280600081525061288d565b5050565b6123fb826116a3565b61243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190613f33565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612461929190612ace565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806124e35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806124fa5750600d60009054906101000a900460ff165b612539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253090614053565b60405180910390fd5b6125448383836128e8565b505050565b600061256a8473ffffffffffffffffffffffffffffffffffffffff166128ed565b156126d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261259361170f565b8786866040518563ffffffff1660e01b81526004016125b59493929190613d4a565b602060405180830381600087803b1580156125cf57600080fd5b505af192505050801561260057506040513d601f19601f820116820180604052508101906125fd9190612fb7565b60015b612683573d8060008114612630576040519150601f19603f3d011682016040523d82523d6000602084013e612635565b606091505b5060008151141561267b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267290613dd3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d8565b600190505b949350505050565b60606000821415612728576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612888565b600082905060005b6000821461275a5780806127439061451f565b915050600a826127539190614349565b9150612730565b60008167ffffffffffffffff81111561279c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ce5781602001600182028036833780820191505090505b5090505b60008514612881576001826127e7919061437a565b9150600a856127f691906145c7565b603061280291906142c2565b60f81b81838151811061283e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561287a9190614349565b94506127d2565b8093505050505b919050565b6128978383612900565b6128a46000848484612549565b6128e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128da90613dd3565b60405180910390fd5b505050565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296790613f53565b60405180910390fd5b612979816116a3565b156129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090613e13565b60405180910390fd5b6129c56000838361247c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1591906142c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ada906144b4565b90600052602060002090601f016020900481019282612afc5760008555612b43565b82601f10612b1557805160ff1916838001178555612b43565b82800160010185558215612b43579182015b82811115612b42578251825591602001919060010190612b27565b5b509050612b509190612b54565b5090565b5b80821115612b6d576000816000905550600101612b55565b5090565b6000612b84612b7f846141ad565b61417c565b90508083825260208201905082856020860282011115612ba357600080fd5b60005b85811015612bd35781612bb98882612cad565b845260208401935060208301925050600181019050612ba6565b5050509392505050565b6000612bf0612beb846141d9565b61417c565b905082815260208101848484011115612c0857600080fd5b612c13848285614448565b509392505050565b6000612c2e612c2984614209565b61417c565b905082815260208101848484011115612c4657600080fd5b612c51848285614448565b509392505050565b600081359050612c68816146d2565b92915050565b600082601f830112612c7f57600080fd5b8135612c8f848260208601612b71565b91505092915050565b600081359050612ca7816146e9565b92915050565b600081359050612cbc81614700565b92915050565b600081359050612cd181614717565b92915050565b600081519050612ce681614717565b92915050565b600082601f830112612cfd57600080fd5b8135612d0d848260208601612bdd565b91505092915050565b600082601f830112612d2757600080fd5b8135612d37848260208601612c1b565b91505092915050565b600081359050612d4f8161472e565b92915050565b600081359050612d6481614745565b92915050565b600060208284031215612d7c57600080fd5b6000612d8a84828501612c59565b91505092915050565b60008060408385031215612da657600080fd5b6000612db485828601612c59565b9250506020612dc585828601612c59565b9150509250929050565b600080600060608486031215612de457600080fd5b6000612df286828701612c59565b9350506020612e0386828701612c59565b9250506040612e1486828701612d55565b9150509250925092565b60008060008060808587031215612e3457600080fd5b6000612e4287828801612c59565b9450506020612e5387828801612c59565b9350506040612e6487828801612d55565b925050606085013567ffffffffffffffff811115612e8157600080fd5b612e8d87828801612cec565b91505092959194509250565b60008060408385031215612eac57600080fd5b6000612eba85828601612c59565b9250506020612ecb85828601612c98565b9150509250929050565b60008060408385031215612ee857600080fd5b6000612ef685828601612c59565b925050602083013567ffffffffffffffff811115612f1357600080fd5b612f1f85828601612d16565b9150509250929050565b60008060408385031215612f3c57600080fd5b6000612f4a85828601612c59565b9250506020612f5b85828601612d55565b9150509250929050565b600060208284031215612f7757600080fd5b6000612f8584828501612c98565b91505092915050565b600060208284031215612fa057600080fd5b6000612fae84828501612cc2565b91505092915050565b600060208284031215612fc957600080fd5b6000612fd784828501612cd7565b91505092915050565b600060208284031215612ff257600080fd5b600082013567ffffffffffffffff81111561300c57600080fd5b61301884828501612d16565b91505092915050565b6000806040838503121561303457600080fd5b600083013567ffffffffffffffff81111561304e57600080fd5b61305a85828601612d16565b925050602061306b85828601612c59565b9150509250929050565b6000806040838503121561308857600080fd5b600083013567ffffffffffffffff8111156130a257600080fd5b6130ae85828601612d16565b925050602083013567ffffffffffffffff8111156130cb57600080fd5b6130d785828601612c6e565b9150509250929050565b600080604083850312156130f457600080fd5b600083013567ffffffffffffffff81111561310e57600080fd5b61311a85828601612d16565b925050602061312b85828601612cad565b9150509250929050565b60008060006060848603121561314a57600080fd5b600084013567ffffffffffffffff81111561316457600080fd5b61317086828701612d16565b935050602061318186828701612d40565b925050604061319286828701612cad565b9150509250925092565b6000602082840312156131ae57600080fd5b60006131bc84828501612d55565b91505092915050565b6131ce816143ae565b82525050565b6131e56131e0826143ae565b614568565b82525050565b6131f4816143c0565b82525050565b613203816143cc565b82525050565b61321a613215826143cc565b61457a565b82525050565b600061322b82614239565b613235818561424f565b9350613245818560208601614457565b61324e816146b4565b840191505092915050565b600061326482614244565b61326e8185614260565b935061327e818560208601614457565b613287816146b4565b840191505092915050565b600061329d82614244565b6132a78185614271565b93506132b7818560208601614457565b80840191505092915050565b60006132d0603283614260565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613336602683614260565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601c83614260565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006133dc600e83614271565b91507f2f6d657461646174612e6a736f6e0000000000000000000000000000000000006000830152600e82019050919050565b600061341c602483614260565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613482601983614260565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006134c2602c83614260565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613528602e83614260565b91507f4275696c6473706163653a20616464726573732068617320616c72656164792060008301527f636c61696d656420746f6b656e2e0000000000000000000000000000000000006020830152604082019050919050565b600061358e602883614260565b91507f4275696c6473706163653a206d617820746f6b656e732069737375656420666f60008301527f7220636f686f72740000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f4603883614260565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061365a602a83614260565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006136c0602983614260565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613726602e83614260565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b600061378c602083614260565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006137cc603183614260565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613832601f83614260565b91507f4275696c6473706163653a204e6f20636f686f7274206c696d697420736574006000830152602082019050919050565b6000613872602c83614260565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138d8602083614260565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613918602983614260565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061397e602f83614260565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006139e4602183614260565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a4a601783614260565b91507f4e6f7420616c6c6f77656420746f207472616e736665720000000000000000006000830152602082019050919050565b6000613a8a603183614260565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613af0602a83614260565b91507f4275696c6473706163653a2061646472657373206e6f7420656c696769626c6560008301527f20666f7220636c61696d000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b56600183614271565b91507f2d000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613b96602883614260565b91507f4275696c6473706163653a204c696d6974206d7573742062652067726561746560008301527f72207468616e20300000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bfc602183614260565b91507f4275696c6473706163653a20436f686f727420616c726561647920657869737460008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613c5e81614402565b82525050565b613c6d8161443e565b82525050565b6000613c7f82846131d4565b60148201915081905092915050565b6000613c9a8285613209565b602082019150613caa8284613209565b6020820191508190509392505050565b6000613cc68284613292565b915081905092915050565b6000613cdd8285613292565b9150613ce98284613292565b91508190509392505050565b6000613d018285613292565b9150613d0c82613b49565b9150613d188284613292565b9150613d23826133cf565b91508190509392505050565b6000602082019050613d4460008301846131c5565b92915050565b6000608082019050613d5f60008301876131c5565b613d6c60208301866131c5565b613d796040830185613c64565b8181036060830152613d8b8184613220565b905095945050505050565b6000602082019050613dab60008301846131eb565b92915050565b60006020820190508181036000830152613dcb8184613259565b905092915050565b60006020820190508181036000830152613dec816132c3565b9050919050565b60006020820190508181036000830152613e0c81613329565b9050919050565b60006020820190508181036000830152613e2c8161338f565b9050919050565b60006020820190508181036000830152613e4c8161340f565b9050919050565b60006020820190508181036000830152613e6c81613475565b9050919050565b60006020820190508181036000830152613e8c816134b5565b9050919050565b60006020820190508181036000830152613eac8161351b565b9050919050565b60006020820190508181036000830152613ecc81613581565b9050919050565b60006020820190508181036000830152613eec816135e7565b9050919050565b60006020820190508181036000830152613f0c8161364d565b9050919050565b60006020820190508181036000830152613f2c816136b3565b9050919050565b60006020820190508181036000830152613f4c81613719565b9050919050565b60006020820190508181036000830152613f6c8161377f565b9050919050565b60006020820190508181036000830152613f8c816137bf565b9050919050565b60006020820190508181036000830152613fac81613825565b9050919050565b60006020820190508181036000830152613fcc81613865565b9050919050565b60006020820190508181036000830152613fec816138cb565b9050919050565b6000602082019050818103600083015261400c8161390b565b9050919050565b6000602082019050818103600083015261402c81613971565b9050919050565b6000602082019050818103600083015261404c816139d7565b9050919050565b6000602082019050818103600083015261406c81613a3d565b9050919050565b6000602082019050818103600083015261408c81613a7d565b9050919050565b600060208201905081810360008301526140ac81613ae3565b9050919050565b600060208201905081810360008301526140cc81613b89565b9050919050565b600060208201905081810360008301526140ec81613bef565b9050919050565b60006060820190506141086000830186613c55565b6141156020830185613c55565b61412260408301846131fa565b949350505050565b600060608201905061413f6000830186613c55565b61414c6020830185613c64565b61415960408301846131eb565b949350505050565b60006020820190506141766000830184613c64565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141a3576141a2614685565b5b8060405250919050565b600067ffffffffffffffff8211156141c8576141c7614685565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141f4576141f3614685565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561422457614223614685565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061428782614402565b915061429283614402565b9250826fffffffffffffffffffffffffffffffff038211156142b7576142b66145f8565b5b828201905092915050565b60006142cd8261443e565b91506142d88361443e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561430d5761430c6145f8565b5b828201905092915050565b600061432382614402565b915061432e83614402565b92508261433e5761433d614627565b5b828204905092915050565b60006143548261443e565b915061435f8361443e565b92508261436f5761436e614627565b5b828204905092915050565b60006143858261443e565b91506143908361443e565b9250828210156143a3576143a26145f8565b5b828203905092915050565b60006143b98261441e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447557808201518184015260208101905061445a565b83811115614484576000848401525b50505050565b600061449582614402565b915060008214156144a9576144a86145f8565b5b600182039050919050565b600060028204905060018216806144cc57607f821691505b602082108114156144e0576144df614656565b5b50919050565b60006144f182614402565b91506fffffffffffffffffffffffffffffffff821415614514576145136145f8565b5b600182019050919050565b600061452a8261443e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455d5761455c6145f8565b5b600182019050919050565b600061457382614584565b9050919050565b6000819050919050565b600061458f826146c5565b9050919050565b60006145a182614402565b91506145ac83614402565b9250826145bc576145bb614627565b5b828206905092915050565b60006145d28261443e565b91506145dd8361443e565b9250826145ed576145ec614627565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6146db816143ae565b81146146e657600080fd5b50565b6146f2816143c0565b81146146fd57600080fd5b50565b614709816143cc565b811461471457600080fd5b50565b614720816143d6565b811461472b57600080fd5b50565b61473781614402565b811461474257600080fd5b50565b61474e8161443e565b811461475957600080fd5b5056fea26469706673582212205dffb5f3fb60cef74fee6791262db142f97ec1b81e7dc2774d2017d3d2ae98a864736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f746f6b656e732e6275696c6473706163652e736f2f6173736574732f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _contractBaseURI (string): https://tokens.buildspace.so/assets/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [2] : 68747470733a2f2f746f6b656e732e6275696c6473706163652e736f2f617373
Arg [3] : 6574732f00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.