Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
543 DASP
Holders
519
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
DigitalAnimalsSoulPassesV2
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./IDigitalAnimals.sol"; import "./ReentrancyGuard.sol"; import "./IDigitalAnimalsSoulPasses.sol"; contract DigitalAnimalsSoulPassesV2 is IDigitalAnimalsSoulPasses, ERC1155, Ownable, ReentrancyGuard { string public name = "Digital Animals Soul Passes v2"; string public symbol = "DASP"; string private _baseTokenURI; // DA Contract IDigitalAnimals private _originalContract; IDigitalAnimalsSoulPasses private _preveousVersion; mapping(address => Pass) private _usersPass; mapping(Pass => int256) private _mintedPass; mapping(address => bool) private _burnedOld; address private _burnAddress = 0x000000000000000000000000000000000000dEaD; address private _burnAccessAddress; constructor(IDigitalAnimals originalContract, IDigitalAnimalsSoulPasses preveousVersion) ERC1155("") { _originalContract = originalContract; _preveousVersion = preveousVersion; _baseTokenURI = "https://digitalanimals.club/soul_tokens_v2/"; } function setBaseURI(string memory baseURI_) public onlyOwner { _baseTokenURI = baseURI_; } function migrate(Pass pass) public lock { require(canMigrate(msg.sender, pass), "You can't migrate"); require(_preveousVersion.isApprovedForAll(msg.sender, address(this)), "Contract can't burn"); Pass oldPass = _preveousVersion.usersPass(msg.sender); require(pass >= oldPass, "Pass should be at least same level"); uint256 lordIndex = 0; if (oldPass == Pass.LORD_OF_THE_REAPERS) { for (uint i = 4; i < 9; i++) { if (_preveousVersion.balanceOf(msg.sender, i) == 1) { lordIndex = i; break; } } } if (oldPass == Pass.LORD_OF_THE_REAPERS) { _preveousVersion.safeTransferFrom(msg.sender, _burnAddress, lordIndex, 1, ""); } else { _preveousVersion.safeTransferFrom(msg.sender, _burnAddress, uint256(oldPass), 1, ""); } if (oldPass == pass) { _usersPass[msg.sender] = pass; _burnedOld[msg.sender] = true; if (oldPass == Pass.LORD_OF_THE_REAPERS) { _mint(msg.sender, lordIndex, 1, ""); } else { _mint(msg.sender, uint256(pass), 1, ""); } } else { _burnedOld[msg.sender] = true; _mintedPass[oldPass] -= 1; _mintedPass[pass] += 1; _usersPass[msg.sender] = pass; _mint(msg.sender, uint256(pass), 1, ""); } if (pass == Pass.LORD_OF_THE_REAPERS || pass == Pass.SOUL_REAPERS) { emit NoOneCanStopDeath(msg.sender); } } function mintOrUpgrade(Pass pass) public lock { require(shouldMigrate(msg.sender) == false, "Should migrate first"); require(canMint(msg.sender, pass), "You can't mint this pass"); require(pass != Pass.NONE, "Pass can't be empty"); Pass oldPass = usersPass(msg.sender); require(uint256(oldPass) < uint256(pass), "You already minted pass of current or lower level"); if (pass == Pass.SOUL_REAPERS) { emit NoOneCanStopDeath(msg.sender); } if (oldPass != Pass.NONE) { _burn(msg.sender, uint256(oldPass), 1); _mintedPass[oldPass] -= 1; } _usersPass[msg.sender] = pass; _mintedPass[pass] += 1; _mint(msg.sender, uint256(pass), 1, ""); } function setBurnAccess(address burnAccessAddress) public onlyOwner lock { _burnAccessAddress = burnAccessAddress; } function burnOnePass(address operator, Pass pass) public lock { require(msg.sender == _burnAccessAddress, "You can't access this function"); _burn(operator, uint256(pass), 1); } function uri(uint256 index) public view virtual override returns (string memory) { require(index > 0 && index < 9, "URI query for nonexistent token"); return string(abi.encodePacked(_baseTokenURI, Strings.toString(index), ".json")); } function canUpgrade(address operator) public view returns (bool) { return canUpgrade(operator, maximumAvailablePass(operator)); } function canUpgrade(address operator, Pass pass) public view returns (bool) { Pass currentPass = _usersPass[operator]; bool _canMint = canMint(operator, pass); return currentPass != Pass.NONE && currentPass < pass && _canMint; } function shouldMigrate(address operator) public view returns (bool) { Pass oldPass = _preveousVersion.usersPass(operator); bool burned = _burnedOld[operator]; return oldPass != Pass.NONE && burned == false; } function canMigrate(address operator, Pass pass) public view returns (bool) { Pass oldPass = _preveousVersion.usersPass(operator); bool burned = _burnedOld[operator]; return (oldPass == pass || pass == maximumAvailablePass(operator)) && burned == false; } function maximumAvailablePass(address operator) public view returns (Pass pass) { uint256 minted = _originalContract.mintedAllSales(operator); uint256 own = _originalContract.balanceOf(operator); if (own >= 10) { if (isPassAvailable(Pass.SOUL_REAPERS)) { return Pass.SOUL_REAPERS; } } if (minted > 0) { if (own >= 3) { if (isPassAvailable(Pass.SOULBOURNE)) { return Pass.SOULBOURNE; } } if (own >= 1) { return Pass.COMMITED; } } return Pass.NONE; } function canMint(address operator, Pass pass) public view returns (bool) { bool available = pass <= maximumAvailablePass(operator); return available && isPassAvailable(pass); } function isPassAvailable(Pass pass) public view returns (bool) { return mintedPass(pass) < passLimit(pass); } function passLimit(Pass pass) public pure returns (uint256) { if (pass == Pass.COMMITED) { return 8888; } if (pass == Pass.SOULBOURNE) { return 1000; } if (pass == Pass.SOUL_REAPERS) { return 170; } if (pass == Pass.LORD_OF_THE_REAPERS) { return 5; } return 0; } function hasToken(address operator) public view returns (bool) { return maximumOwnedToken(operator) != Pass.NONE; } function maximumOwnedToken(address operator) public view returns (Pass pass) { for (uint i = 8; i >= 1; i--) { if ((balanceOf(operator, i) >= 1) || (_preveousVersion.balanceOf(operator, i) >= 1)) { if (i >= 4) { return Pass.LORD_OF_THE_REAPERS; } return Pass(i); } } return Pass.NONE; } function usersPass(address operator) override public view returns (Pass pass) { Pass newPass = _usersPass[operator]; if (newPass != Pass.NONE) { return newPass; } Pass oldPass = _preveousVersion.usersPass(operator); return oldPass; } function mintedPass(Pass pass) override public view returns (uint256 minted) { int256 alreadyMinted = _mintedPass[pass] + int256(_preveousVersion.mintedPass(pass)); return alreadyMinted >= 0 ? uint256(alreadyMinted) : 0; } function hasOldPass(address operator) private view returns (bool) { return _preveousVersion.usersPass(operator) != Pass.NONE; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IDigitalAnimals { function mintedAllSales(address operator) external view returns (uint256); function balanceOf(address owner) external view returns (uint256 balance); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ReentrancyGuard { uint private unlocked = 1; modifier lock() { require(unlocked == 1, 'LOCKED'); unlocked = 0; _; unlocked = 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; interface IDigitalAnimalsSoulPasses is IERC1155 { event NoOneCanStopDeath( address indexed from ); enum Pass { NONE, COMMITED, SOULBOURNE, SOUL_REAPERS, LORD_OF_THE_REAPERS } function usersPass(address operator) external view returns (Pass pass); function mintedPass(Pass pass) external view returns (uint256 minted); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IDigitalAnimals","name":"originalContract","type":"address"},{"internalType":"contract IDigitalAnimalsSoulPasses","name":"preveousVersion","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"from","type":"address"}],"name":"NoOneCanStopDeath","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"burnOnePass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"canMigrate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"canUpgrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"canUpgrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"hasToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"isPassAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"maximumAvailablePass","outputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"maximumOwnedToken","outputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"mintOrUpgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"mintedPass","outputs":[{"internalType":"uint256","name":"minted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"name":"passLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burnAccessAddress","type":"address"}],"name":"setBurnAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"shouldMigrate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"usersPass","outputs":[{"internalType":"enum IDigitalAnimalsSoulPasses.Pass","name":"pass","type":"uint8"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600160045560c0604052601e60808190527f4469676974616c20416e696d616c7320536f756c20506173736573207632000060a0908152620000459160059190620001b1565b50604080518082019091526004808252630444153560e41b60209092019182526200007391600691620001b1565b50600d80546001600160a01b03191661dead1790553480156200009557600080fd5b50604051620034bc380380620034bc833981016040819052620000b89162000270565b604080516020810190915260008152620000d28162000146565b50620000de336200015f565b600880546001600160a01b038085166001600160a01b03199283161790925560098054928416929091169190911790556040805160608101909152602b80825262003491602083013980516200013d91600791602090910190620001b1565b505050620002ec565b80516200015b906002906020840190620001b1565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001bf90620002af565b90600052602060002090601f016020900481019282620001e357600085556200022e565b82601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b5b808211156200023c576000815560010162000241565b6001600160a01b03811681146200026d57600080fd5b50565b600080604083850312156200028457600080fd5b8251620002918162000257565b6020840151909250620002a48162000257565b809150509250929050565b600181811c90821680620002c457607f821691505b60208210811415620002e657634e487b7160e01b600052602260045260246000fd5b50919050565b61319580620002fc6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80637a536e11116101045780639bd4f18c116100a2578063b58a4bb311610071578063b58a4bb3146103ff578063e985e9c514610412578063f242432a1461044e578063f2fde38b1461046157600080fd5b80639bd4f18c146103b3578063a22cb465146103c6578063a6003e35146103d9578063aa1b1687146103ec57600080fd5b8063935af438116100de578063935af4381461037257806393e485361461038557806395d89b41146103985780639bb0f599146103a057600080fd5b80637a536e11146103315780638039fbef146103445780638da5cb5b1461035757600080fd5b806325c591741161017c57806355f804b31161014b57806355f804b3146102f0578063582fc40f146103035780636b31162914610316578063715018a61461032957600080fd5b806325c59174146102975780632eb2c2d6146102aa5780632f694ab8146102bd5780634e1273f4146102d057600080fd5b806306fdde03116101b857806306fdde031461023c57806308194cd3146102515780630e89341c146102645780631b33eee11461027757600080fd5b8062fdd58e146101de57806301ffc9a71461020457806305af7bc814610227575b600080fd5b6101f16101ec3660046125f6565b610474565b6040519081526020015b60405180910390f35b610217610212366004612636565b61050b565b60405190151581526020016101fb565b61023a610235366004612660565b61055d565b005b610244610604565b6040516101fb91906126f3565b61023a61025f366004612706565b610692565b610244610272366004612723565b610cb0565b61028a61028536600461273c565b610d40565b6040516101fb919061276d565b61028a6102a536600461273c565b610e22565b61023a6102b83660046128eb565b610ed3565b6102176102cb366004612660565b610f6a565b6102e36102de366004612995565b610fae565b6040516101fb9190612a9b565b61023a6102fe366004612aae565b6110d8565b610217610311366004612660565b611119565b61028a61032436600461273c565b611197565b61023a6112e3565b6101f161033f366004612706565b611319565b610217610352366004612660565b6113e1565b6003546040516001600160a01b0390911681526020016101fb565b61023a610380366004612706565b6114db565b6101f1610393366004612706565b6117e9565b61024461187d565b6102176103ae36600461273c565b61188a565b6102176103c1366004612706565b6118af565b61023a6103d4366004612b05565b6118ca565b6102176103e736600461273c565b6118d5565b6102176103fa36600461273c565b6118e4565b61023a61040d36600461273c565b61199b565b610217610420366004612b31565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61023a61045c366004612b64565b611a0e565b61023a61046f36600461273c565b611a95565b60006001600160a01b0383166104e55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061053c57506001600160e01b031982166303a24d0760e21b145b8061055757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60045460011461057f5760405162461bcd60e51b81526004016104dc90612bc9565b6000600455600e546001600160a01b031633146105de5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e27742061636365737320746869732066756e6374696f6e000060448201526064016104dc565b6105fb828260048111156105f4576105f4612757565b6001611b30565b50506001600455565b6005805461061190612be9565b80601f016020809104026020016040519081016040528092919081815260200182805461063d90612be9565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b505050505081565b6004546001146106b45760405162461bcd60e51b81526004016104dc90612bc9565b60006004556106c333826113e1565b6107035760405162461bcd60e51b8152602060048201526011602482015270596f752063616e2774206d69677261746560781b60448201526064016104dc565b60095460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c590604401602060405180830381865afa158015610751573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107759190612c24565b6107b75760405162461bcd60e51b815260206004820152601360248201527221b7b73a3930b1ba1031b0b713ba10313ab93760691b60448201526064016104dc565b600954604051630971645d60e21b81523360048201526000916001600160a01b0316906325c5917490602401602060405180830381865afa158015610800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108249190612c41565b905080600481111561083857610838612757565b82600481111561084a5761084a612757565b10156108a35760405162461bcd60e51b815260206004820152602260248201527f506173732073686f756c64206265206174206c656173742073616d65206c6576604482015261195b60f21b60648201526084016104dc565b600060048260048111156108b9576108b9612757565b14156109605760045b600981101561095e57600954604051627eeac760e11b8152336004820152602481018390526001600160a01b039091169062fdd58e90604401602060405180830381865afa158015610918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093c9190612c5e565b6001141561094c5780915061095e565b8061095681612c8d565b9150506108c2565b505b600482600481111561097457610974612757565b14156109ed57600954600d54604051637921219560e11b81526001600160a01b039283169263f242432a926109b6923392909116908690600190600401612ca8565b600060405180830381600087803b1580156109d057600080fd5b505af11580156109e4573d6000803e3d6000fd5b50505050610a6e565b600954600d546001600160a01b039182169163f242432a91339116856004811115610a1a57610a1a612757565b60016040518563ffffffff1660e01b8152600401610a3b9493929190612ca8565b600060405180830381600087803b158015610a5557600080fd5b505af1158015610a69573d6000803e3d6000fd5b505050505b826004811115610a8057610a80612757565b826004811115610a9257610a92612757565b1415610b4b57336000908152600a60205260409020805484919060ff19166001836004811115610ac457610ac4612757565b0217905550336000908152600c60205260409020805460ff191660011790556004826004811115610af757610af7612757565b1415610b1e57610b193382600160405180602001604052806000815250611caa565b610c44565b610b1933846004811115610b3457610b34612757565b600160405180602001604052806000815250611caa565b336000908152600c60205260408120805460ff1916600190811790915590600b90846004811115610b7e57610b7e612757565b6004811115610b8f57610b8f612757565b81526020019081526020016000206000828254610bac9190612ce0565b9091555060019050600b6000856004811115610bca57610bca612757565b6004811115610bdb57610bdb612757565b81526020019081526020016000206000828254610bf89190612d1f565b9091555050336000908152600a60205260409020805484919060ff19166001836004811115610c2957610c29612757565b0217905550610c4433846004811115610b3457610b34612757565b6004836004811115610c5857610c58612757565b1480610c7557506003836004811115610c7357610c73612757565b145b15610ca65760405133907fdbe57fc3c56f50862ba1101d35048710e67c41f77d4db8dd6406f7dcc13043e890600090a25b5050600160045550565b6060600082118015610cc25750600982105b610d0e5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016104dc565b6007610d1983611db4565b604051602001610d2a929190612d7c565b6040516020818303038152906040529050919050565b600060085b60018110610e19576001610d598483610474565b101580610dd85750600954604051627eeac760e11b81526001600160a01b03858116600483015260248201849052600192169062fdd58e90604401602060405180830381865afa158015610db1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd59190612c5e565b10155b15610e075760048110610dee5750600492915050565b806004811115610e0057610e00612757565b9392505050565b80610e1181612e2e565b915050610d45565b50600092915050565b6001600160a01b0381166000908152600a602052604081205460ff1681816004811115610e5157610e51612757565b14610e5c5792915050565b600954604051630971645d60e21b81526001600160a01b03858116600483015260009216906325c5917490602401602060405180830381865afa158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb9190612c41565b949350505050565b6001600160a01b038516331480610eef5750610eef8533610420565b610f565760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104dc565b610f638585858585611eb2565b5050505050565b600080610f7684611197565b6004811115610f8757610f87612757565b836004811115610f9957610f99612757565b11159050808015610ecb5750610ecb836118af565b606081518351146110135760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016104dc565b6000835167ffffffffffffffff81111561102f5761102f612795565b604051908082528060200260200182016040528015611058578160200160208202803683370190505b50905060005b84518110156110d0576110a385828151811061107c5761107c612e45565b602002602001015185838151811061109657611096612e45565b6020026020010151610474565b8282815181106110b5576110b5612e45565b60209081029190910101526110c981612c8d565b905061105e565b509392505050565b6003546001600160a01b031633146111025760405162461bcd60e51b81526004016104dc90612e5b565b8051611115906007906020840190612541565b5050565b6001600160a01b0382166000908152600a602052604081205460ff16816111408585610f6a565b9050600082600481111561115657611156612757565b14158015611185575083600481111561117157611171612757565b82600481111561118357611183612757565b105b801561118e5750805b95945050505050565b6008546040516335f8892560e11b81526001600160a01b0383811660048301526000928392911690636bf1124a90602401602060405180830381865afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190612c5e565b6008546040516370a0823160e01b81526001600160a01b038681166004830152929350600092909116906370a0823190602401602060405180830381865afa158015611259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127d9190612c5e565b9050600a81106112a05761129160036118af565b156112a0575060039392505050565b81156112d957600381106112c7576112b860026118af565b156112c7575060029392505050565b600181106112d9575060019392505050565b5060009392505050565b6003546001600160a01b0316331461130d5760405162461bcd60e51b81526004016104dc90612e5b565b611317600061208f565b565b600954604051637a536e1160e01b815260009182916001600160a01b0390911690637a536e119061134e90869060040161276d565b602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f9190612c5e565b600b60008560048111156113a5576113a5612757565b60048111156113b6576113b6612757565b8152602001908152602001600020546113cf9190612d1f565b90506000811215610557576000610e00565b600954604051630971645d60e21b81526001600160a01b03848116600483015260009283929116906325c5917490602401602060405180830381865afa15801561142f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114539190612c41565b6001600160a01b0385166000908152600c602052604090205490915060ff1683600481111561148457611484612757565b82600481111561149657611496612757565b14806114cb57506114a685611197565b60048111156114b7576114b7612757565b8460048111156114c9576114c9612757565b145b801561118e575015949350505050565b6004546001146114fd5760405162461bcd60e51b81526004016104dc90612bc9565b600060045561150b336118e4565b1561154f5760405162461bcd60e51b815260206004820152601460248201527314da1bdd5b19081b5a59dc985d1948199a5c9cdd60621b60448201526064016104dc565b6115593382610f6a565b6115a55760405162461bcd60e51b815260206004820152601860248201527f596f752063616e2774206d696e7420746869732070617373000000000000000060448201526064016104dc565b60008160048111156115b9576115b9612757565b14156115fd5760405162461bcd60e51b8152602060048201526013602482015272506173732063616e277420626520656d70747960681b60448201526064016104dc565b600061160833610e22565b905081600481111561161c5761161c612757565b81600481111561162e5761162e612757565b106116955760405162461bcd60e51b815260206004820152603160248201527f596f7520616c7265616479206d696e7465642070617373206f662063757272656044820152701b9d081bdc881b1bddd95c881b195d995b607a1b60648201526084016104dc565b60038260048111156116a9576116a9612757565b14156116db5760405133907fdbe57fc3c56f50862ba1101d35048710e67c41f77d4db8dd6406f7dcc13043e890600090a25b60008160048111156116ef576116ef612757565b146117565761170a338260048111156105f4576105f4612757565b6001600b600083600481111561172257611722612757565b600481111561173357611733612757565b815260200190815260200160002060008282546117509190612ce0565b90915550505b336000908152600a60205260409020805483919060ff1916600183600481111561178257611782612757565b02179055506001600b600084600481111561179f5761179f612757565b60048111156117b0576117b0612757565b815260200190815260200160002060008282546117cd9190612d1f565b909155506105fb905033836004811115610b3457610b34612757565b600060018260048111156117ff576117ff612757565b141561180e57506122b8919050565b600282600481111561182257611822612757565b141561183157506103e8919050565b600382600481111561184557611845612757565b1415611853575060aa919050565b600482600481111561186757611867612757565b141561187557506005919050565b506000919050565b6006805461061190612be9565b60008061189683610d40565b60048111156118a7576118a7612757565b141592915050565b60006118ba826117e9565b6118c383611319565b1092915050565b6111153383836120e1565b60006105578261031184611197565b600954604051630971645d60e21b81526001600160a01b03838116600483015260009283929116906325c5917490602401602060405180830381865afa158015611932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119569190612c41565b6001600160a01b0384166000908152600c602052604081205491925060ff9091169082600481111561198a5761198a612757565b14158015610ecb5750159392505050565b6003546001600160a01b031633146119c55760405162461bcd60e51b81526004016104dc90612e5b565b6004546001146119e75760405162461bcd60e51b81526004016104dc90612bc9565b600e80546001600160a01b0319166001600160a01b03929092169190911790556001600455565b6001600160a01b038516331480611a2a5750611a2a8533610420565b611a885760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016104dc565b610f6385858585856121c2565b6003546001600160a01b03163314611abf5760405162461bcd60e51b81526004016104dc90612e5b565b6001600160a01b038116611b245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104dc565b611b2d8161208f565b50565b6001600160a01b038316611b925760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016104dc565b33611bc281856000611ba3876122df565b611bac876122df565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611c3f5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016104dc565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b038416611d0a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016104dc565b33611d2481600087611d1b886122df565b610f63886122df565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611d54908490612e90565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f638160008787878761232a565b606081611dd85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e025780611dec81612c8d565b9150611dfb9050600a83612ebe565b9150611ddc565b60008167ffffffffffffffff811115611e1d57611e1d612795565b6040519080825280601f01601f191660200182016040528015611e47576020820181803683370190505b5090505b8415610ecb57611e5c600183612ed2565b9150611e69600a86612ee9565b611e74906030612e90565b60f81b818381518110611e8957611e89612e45565b60200101906001600160f81b031916908160001a905350611eab600a86612ebe565b9450611e4b565b8151835114611f145760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016104dc565b6001600160a01b038416611f3a5760405162461bcd60e51b81526004016104dc90612efd565b3360005b8451811015612021576000858281518110611f5b57611f5b612e45565b602002602001015190506000858381518110611f7957611f79612e45565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611fc95760405162461bcd60e51b81526004016104dc90612f42565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612006908490612e90565b925050819055505050508061201a90612c8d565b9050611f3e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612071929190612f8c565b60405180910390a4612087818787878787612486565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121555760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016104dc565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166121e85760405162461bcd60e51b81526004016104dc90612efd565b336121f8818787611d1b886122df565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122395760405162461bcd60e51b81526004016104dc90612f42565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612276908490612e90565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122d682888888888861232a565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061231957612319612e45565b602090810291909101015292915050565b6001600160a01b0384163b156120875760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061236e9089908990889088908890600401612fb1565b6020604051808303816000875af19250505080156123a9575060408051601f3d908101601f191682019092526123a691810190612ff6565b60015b612456576123b5613013565b806308c379a014156123ef57506123ca61302f565b806123d557506123f1565b8060405162461bcd60e51b81526004016104dc91906126f3565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016104dc565b6001600160e01b0319811663f23a6e6160e01b146122d65760405162461bcd60e51b81526004016104dc906130b9565b6001600160a01b0384163b156120875760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906124ca9089908990889088908890600401613101565b6020604051808303816000875af1925050508015612505575060408051601f3d908101601f1916820190925261250291810190612ff6565b60015b612511576123b5613013565b6001600160e01b0319811663bc197c8160e01b146122d65760405162461bcd60e51b81526004016104dc906130b9565b82805461254d90612be9565b90600052602060002090601f01602090048101928261256f57600085556125b5565b82601f1061258857805160ff19168380011785556125b5565b828001600101855582156125b5579182015b828111156125b557825182559160200191906001019061259a565b506125c19291506125c5565b5090565b5b808211156125c157600081556001016125c6565b80356001600160a01b03811681146125f157600080fd5b919050565b6000806040838503121561260957600080fd5b612612836125da565b946020939093013593505050565b6001600160e01b031981168114611b2d57600080fd5b60006020828403121561264857600080fd5b8135610e0081612620565b60058110611b2d57600080fd5b6000806040838503121561267357600080fd5b61267c836125da565b9150602083013561268c81612653565b809150509250929050565b60005b838110156126b257818101518382015260200161269a565b838111156126c1576000848401525b50505050565b600081518084526126df816020860160208601612697565b601f01601f19169290920160200192915050565b602081526000610e0060208301846126c7565b60006020828403121561271857600080fd5b8135610e0081612653565b60006020828403121561273557600080fd5b5035919050565b60006020828403121561274e57600080fd5b610e00826125da565b634e487b7160e01b600052602160045260246000fd5b602081016005831061278f57634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156127d1576127d1612795565b6040525050565b600067ffffffffffffffff8211156127f2576127f2612795565b5060051b60200190565b600082601f83011261280d57600080fd5b8135602061281a826127d8565b60405161282782826127ab565b83815260059390931b850182019282810191508684111561284757600080fd5b8286015b84811015612862578035835291830191830161284b565b509695505050505050565b600067ffffffffffffffff83111561288757612887612795565b60405161289e601f8501601f1916602001826127ab565b8091508381528484840111156128b357600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126128dc57600080fd5b610e008383356020850161286d565b600080600080600060a0868803121561290357600080fd5b61290c866125da565b945061291a602087016125da565b9350604086013567ffffffffffffffff8082111561293757600080fd5b61294389838a016127fc565b9450606088013591508082111561295957600080fd5b61296589838a016127fc565b9350608088013591508082111561297b57600080fd5b50612988888289016128cb565b9150509295509295909350565b600080604083850312156129a857600080fd5b823567ffffffffffffffff808211156129c057600080fd5b818501915085601f8301126129d457600080fd5b813560206129e1826127d8565b6040516129ee82826127ab565b83815260059390931b8501820192828101915089841115612a0e57600080fd5b948201945b83861015612a3357612a24866125da565b82529482019490820190612a13565b96505086013592505080821115612a4957600080fd5b50612a56858286016127fc565b9150509250929050565b600081518084526020808501945080840160005b83811015612a9057815187529582019590820190600101612a74565b509495945050505050565b602081526000610e006020830184612a60565b600060208284031215612ac057600080fd5b813567ffffffffffffffff811115612ad757600080fd5b8201601f81018413612ae857600080fd5b610ecb8482356020840161286d565b8015158114611b2d57600080fd5b60008060408385031215612b1857600080fd5b612b21836125da565b9150602083013561268c81612af7565b60008060408385031215612b4457600080fd5b612b4d836125da565b9150612b5b602084016125da565b90509250929050565b600080600080600060a08688031215612b7c57600080fd5b612b85866125da565b9450612b93602087016125da565b93506040860135925060608601359150608086013567ffffffffffffffff811115612bbd57600080fd5b612988888289016128cb565b6020808252600690820152651313d0d2d15160d21b604082015260600190565b600181811c90821680612bfd57607f821691505b60208210811415612c1e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612c3657600080fd5b8151610e0081612af7565b600060208284031215612c5357600080fd5b8151610e0081612653565b600060208284031215612c7057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612ca157612ca1612c77565b5060010190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b60008083128015600160ff1b850184121615612cfe57612cfe612c77565b6001600160ff1b0384018313811615612d1957612d19612c77565b50500390565b600080821280156001600160ff1b0384900385131615612d4157612d41612c77565b600160ff1b8390038412811615612d5a57612d5a612c77565b50500190565b60008151612d72818560208601612697565b9290920192915050565b600080845481600182811c915080831680612d9857607f831692505b6020808410821415612db857634e487b7160e01b86526022600452602486fd5b818015612dcc5760018114612ddd57612e0a565b60ff19861689528489019650612e0a565b60008b81526020902060005b86811015612e025781548b820152908501908301612de9565b505084890196505b50505050505061118e612e1d8286612d60565b64173539b7b760d91b815260050190565b600081612e3d57612e3d612c77565b506000190190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612ea357612ea3612c77565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612ecd57612ecd612ea8565b500490565b600082821015612ee457612ee4612c77565b500390565b600082612ef857612ef8612ea8565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612f9f6040830185612a60565b828103602084015261118e8185612a60565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612feb908301846126c7565b979650505050505050565b60006020828403121561300857600080fd5b8151610e0081612620565b600060033d111561302c5760046000803e5060005160e01c5b90565b600060443d101561303d5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561306d57505050505090565b82850191508151818111156130855750505050505090565b843d870101602082850101111561309f5750505050505090565b6130ae602082860101876127ab565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061312d90830186612a60565b828103606084015261313f8186612a60565b9050828103608084015261315381856126c7565b9897505050505050505056fea264697066735822122056f153d0465006ece89736933562b6ed72a9d9b7eb6b09469a96424bb50ff2cc64736f6c634300080b003368747470733a2f2f6469676974616c616e696d616c732e636c75622f736f756c5f746f6b656e735f76322f00000000000000000000000025593a50255bfb30ea027f6966417b0bf780401d0000000000000000000000003491ead95de2f4a945c2ead3c3afe7747f2ae373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d95760003560e01c80637a536e11116101045780639bd4f18c116100a2578063b58a4bb311610071578063b58a4bb3146103ff578063e985e9c514610412578063f242432a1461044e578063f2fde38b1461046157600080fd5b80639bd4f18c146103b3578063a22cb465146103c6578063a6003e35146103d9578063aa1b1687146103ec57600080fd5b8063935af438116100de578063935af4381461037257806393e485361461038557806395d89b41146103985780639bb0f599146103a057600080fd5b80637a536e11146103315780638039fbef146103445780638da5cb5b1461035757600080fd5b806325c591741161017c57806355f804b31161014b57806355f804b3146102f0578063582fc40f146103035780636b31162914610316578063715018a61461032957600080fd5b806325c59174146102975780632eb2c2d6146102aa5780632f694ab8146102bd5780634e1273f4146102d057600080fd5b806306fdde03116101b857806306fdde031461023c57806308194cd3146102515780630e89341c146102645780631b33eee11461027757600080fd5b8062fdd58e146101de57806301ffc9a71461020457806305af7bc814610227575b600080fd5b6101f16101ec3660046125f6565b610474565b6040519081526020015b60405180910390f35b610217610212366004612636565b61050b565b60405190151581526020016101fb565b61023a610235366004612660565b61055d565b005b610244610604565b6040516101fb91906126f3565b61023a61025f366004612706565b610692565b610244610272366004612723565b610cb0565b61028a61028536600461273c565b610d40565b6040516101fb919061276d565b61028a6102a536600461273c565b610e22565b61023a6102b83660046128eb565b610ed3565b6102176102cb366004612660565b610f6a565b6102e36102de366004612995565b610fae565b6040516101fb9190612a9b565b61023a6102fe366004612aae565b6110d8565b610217610311366004612660565b611119565b61028a61032436600461273c565b611197565b61023a6112e3565b6101f161033f366004612706565b611319565b610217610352366004612660565b6113e1565b6003546040516001600160a01b0390911681526020016101fb565b61023a610380366004612706565b6114db565b6101f1610393366004612706565b6117e9565b61024461187d565b6102176103ae36600461273c565b61188a565b6102176103c1366004612706565b6118af565b61023a6103d4366004612b05565b6118ca565b6102176103e736600461273c565b6118d5565b6102176103fa36600461273c565b6118e4565b61023a61040d36600461273c565b61199b565b610217610420366004612b31565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61023a61045c366004612b64565b611a0e565b61023a61046f36600461273c565b611a95565b60006001600160a01b0383166104e55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061053c57506001600160e01b031982166303a24d0760e21b145b8061055757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60045460011461057f5760405162461bcd60e51b81526004016104dc90612bc9565b6000600455600e546001600160a01b031633146105de5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e27742061636365737320746869732066756e6374696f6e000060448201526064016104dc565b6105fb828260048111156105f4576105f4612757565b6001611b30565b50506001600455565b6005805461061190612be9565b80601f016020809104026020016040519081016040528092919081815260200182805461063d90612be9565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b505050505081565b6004546001146106b45760405162461bcd60e51b81526004016104dc90612bc9565b60006004556106c333826113e1565b6107035760405162461bcd60e51b8152602060048201526011602482015270596f752063616e2774206d69677261746560781b60448201526064016104dc565b60095460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c590604401602060405180830381865afa158015610751573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107759190612c24565b6107b75760405162461bcd60e51b815260206004820152601360248201527221b7b73a3930b1ba1031b0b713ba10313ab93760691b60448201526064016104dc565b600954604051630971645d60e21b81523360048201526000916001600160a01b0316906325c5917490602401602060405180830381865afa158015610800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108249190612c41565b905080600481111561083857610838612757565b82600481111561084a5761084a612757565b10156108a35760405162461bcd60e51b815260206004820152602260248201527f506173732073686f756c64206265206174206c656173742073616d65206c6576604482015261195b60f21b60648201526084016104dc565b600060048260048111156108b9576108b9612757565b14156109605760045b600981101561095e57600954604051627eeac760e11b8152336004820152602481018390526001600160a01b039091169062fdd58e90604401602060405180830381865afa158015610918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093c9190612c5e565b6001141561094c5780915061095e565b8061095681612c8d565b9150506108c2565b505b600482600481111561097457610974612757565b14156109ed57600954600d54604051637921219560e11b81526001600160a01b039283169263f242432a926109b6923392909116908690600190600401612ca8565b600060405180830381600087803b1580156109d057600080fd5b505af11580156109e4573d6000803e3d6000fd5b50505050610a6e565b600954600d546001600160a01b039182169163f242432a91339116856004811115610a1a57610a1a612757565b60016040518563ffffffff1660e01b8152600401610a3b9493929190612ca8565b600060405180830381600087803b158015610a5557600080fd5b505af1158015610a69573d6000803e3d6000fd5b505050505b826004811115610a8057610a80612757565b826004811115610a9257610a92612757565b1415610b4b57336000908152600a60205260409020805484919060ff19166001836004811115610ac457610ac4612757565b0217905550336000908152600c60205260409020805460ff191660011790556004826004811115610af757610af7612757565b1415610b1e57610b193382600160405180602001604052806000815250611caa565b610c44565b610b1933846004811115610b3457610b34612757565b600160405180602001604052806000815250611caa565b336000908152600c60205260408120805460ff1916600190811790915590600b90846004811115610b7e57610b7e612757565b6004811115610b8f57610b8f612757565b81526020019081526020016000206000828254610bac9190612ce0565b9091555060019050600b6000856004811115610bca57610bca612757565b6004811115610bdb57610bdb612757565b81526020019081526020016000206000828254610bf89190612d1f565b9091555050336000908152600a60205260409020805484919060ff19166001836004811115610c2957610c29612757565b0217905550610c4433846004811115610b3457610b34612757565b6004836004811115610c5857610c58612757565b1480610c7557506003836004811115610c7357610c73612757565b145b15610ca65760405133907fdbe57fc3c56f50862ba1101d35048710e67c41f77d4db8dd6406f7dcc13043e890600090a25b5050600160045550565b6060600082118015610cc25750600982105b610d0e5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016104dc565b6007610d1983611db4565b604051602001610d2a929190612d7c565b6040516020818303038152906040529050919050565b600060085b60018110610e19576001610d598483610474565b101580610dd85750600954604051627eeac760e11b81526001600160a01b03858116600483015260248201849052600192169062fdd58e90604401602060405180830381865afa158015610db1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd59190612c5e565b10155b15610e075760048110610dee5750600492915050565b806004811115610e0057610e00612757565b9392505050565b80610e1181612e2e565b915050610d45565b50600092915050565b6001600160a01b0381166000908152600a602052604081205460ff1681816004811115610e5157610e51612757565b14610e5c5792915050565b600954604051630971645d60e21b81526001600160a01b03858116600483015260009216906325c5917490602401602060405180830381865afa158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb9190612c41565b949350505050565b6001600160a01b038516331480610eef5750610eef8533610420565b610f565760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104dc565b610f638585858585611eb2565b5050505050565b600080610f7684611197565b6004811115610f8757610f87612757565b836004811115610f9957610f99612757565b11159050808015610ecb5750610ecb836118af565b606081518351146110135760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016104dc565b6000835167ffffffffffffffff81111561102f5761102f612795565b604051908082528060200260200182016040528015611058578160200160208202803683370190505b50905060005b84518110156110d0576110a385828151811061107c5761107c612e45565b602002602001015185838151811061109657611096612e45565b6020026020010151610474565b8282815181106110b5576110b5612e45565b60209081029190910101526110c981612c8d565b905061105e565b509392505050565b6003546001600160a01b031633146111025760405162461bcd60e51b81526004016104dc90612e5b565b8051611115906007906020840190612541565b5050565b6001600160a01b0382166000908152600a602052604081205460ff16816111408585610f6a565b9050600082600481111561115657611156612757565b14158015611185575083600481111561117157611171612757565b82600481111561118357611183612757565b105b801561118e5750805b95945050505050565b6008546040516335f8892560e11b81526001600160a01b0383811660048301526000928392911690636bf1124a90602401602060405180830381865afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190612c5e565b6008546040516370a0823160e01b81526001600160a01b038681166004830152929350600092909116906370a0823190602401602060405180830381865afa158015611259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127d9190612c5e565b9050600a81106112a05761129160036118af565b156112a0575060039392505050565b81156112d957600381106112c7576112b860026118af565b156112c7575060029392505050565b600181106112d9575060019392505050565b5060009392505050565b6003546001600160a01b0316331461130d5760405162461bcd60e51b81526004016104dc90612e5b565b611317600061208f565b565b600954604051637a536e1160e01b815260009182916001600160a01b0390911690637a536e119061134e90869060040161276d565b602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f9190612c5e565b600b60008560048111156113a5576113a5612757565b60048111156113b6576113b6612757565b8152602001908152602001600020546113cf9190612d1f565b90506000811215610557576000610e00565b600954604051630971645d60e21b81526001600160a01b03848116600483015260009283929116906325c5917490602401602060405180830381865afa15801561142f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114539190612c41565b6001600160a01b0385166000908152600c602052604090205490915060ff1683600481111561148457611484612757565b82600481111561149657611496612757565b14806114cb57506114a685611197565b60048111156114b7576114b7612757565b8460048111156114c9576114c9612757565b145b801561118e575015949350505050565b6004546001146114fd5760405162461bcd60e51b81526004016104dc90612bc9565b600060045561150b336118e4565b1561154f5760405162461bcd60e51b815260206004820152601460248201527314da1bdd5b19081b5a59dc985d1948199a5c9cdd60621b60448201526064016104dc565b6115593382610f6a565b6115a55760405162461bcd60e51b815260206004820152601860248201527f596f752063616e2774206d696e7420746869732070617373000000000000000060448201526064016104dc565b60008160048111156115b9576115b9612757565b14156115fd5760405162461bcd60e51b8152602060048201526013602482015272506173732063616e277420626520656d70747960681b60448201526064016104dc565b600061160833610e22565b905081600481111561161c5761161c612757565b81600481111561162e5761162e612757565b106116955760405162461bcd60e51b815260206004820152603160248201527f596f7520616c7265616479206d696e7465642070617373206f662063757272656044820152701b9d081bdc881b1bddd95c881b195d995b607a1b60648201526084016104dc565b60038260048111156116a9576116a9612757565b14156116db5760405133907fdbe57fc3c56f50862ba1101d35048710e67c41f77d4db8dd6406f7dcc13043e890600090a25b60008160048111156116ef576116ef612757565b146117565761170a338260048111156105f4576105f4612757565b6001600b600083600481111561172257611722612757565b600481111561173357611733612757565b815260200190815260200160002060008282546117509190612ce0565b90915550505b336000908152600a60205260409020805483919060ff1916600183600481111561178257611782612757565b02179055506001600b600084600481111561179f5761179f612757565b60048111156117b0576117b0612757565b815260200190815260200160002060008282546117cd9190612d1f565b909155506105fb905033836004811115610b3457610b34612757565b600060018260048111156117ff576117ff612757565b141561180e57506122b8919050565b600282600481111561182257611822612757565b141561183157506103e8919050565b600382600481111561184557611845612757565b1415611853575060aa919050565b600482600481111561186757611867612757565b141561187557506005919050565b506000919050565b6006805461061190612be9565b60008061189683610d40565b60048111156118a7576118a7612757565b141592915050565b60006118ba826117e9565b6118c383611319565b1092915050565b6111153383836120e1565b60006105578261031184611197565b600954604051630971645d60e21b81526001600160a01b03838116600483015260009283929116906325c5917490602401602060405180830381865afa158015611932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119569190612c41565b6001600160a01b0384166000908152600c602052604081205491925060ff9091169082600481111561198a5761198a612757565b14158015610ecb5750159392505050565b6003546001600160a01b031633146119c55760405162461bcd60e51b81526004016104dc90612e5b565b6004546001146119e75760405162461bcd60e51b81526004016104dc90612bc9565b600e80546001600160a01b0319166001600160a01b03929092169190911790556001600455565b6001600160a01b038516331480611a2a5750611a2a8533610420565b611a885760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016104dc565b610f6385858585856121c2565b6003546001600160a01b03163314611abf5760405162461bcd60e51b81526004016104dc90612e5b565b6001600160a01b038116611b245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104dc565b611b2d8161208f565b50565b6001600160a01b038316611b925760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016104dc565b33611bc281856000611ba3876122df565b611bac876122df565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611c3f5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016104dc565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b038416611d0a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016104dc565b33611d2481600087611d1b886122df565b610f63886122df565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611d54908490612e90565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f638160008787878761232a565b606081611dd85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e025780611dec81612c8d565b9150611dfb9050600a83612ebe565b9150611ddc565b60008167ffffffffffffffff811115611e1d57611e1d612795565b6040519080825280601f01601f191660200182016040528015611e47576020820181803683370190505b5090505b8415610ecb57611e5c600183612ed2565b9150611e69600a86612ee9565b611e74906030612e90565b60f81b818381518110611e8957611e89612e45565b60200101906001600160f81b031916908160001a905350611eab600a86612ebe565b9450611e4b565b8151835114611f145760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016104dc565b6001600160a01b038416611f3a5760405162461bcd60e51b81526004016104dc90612efd565b3360005b8451811015612021576000858281518110611f5b57611f5b612e45565b602002602001015190506000858381518110611f7957611f79612e45565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611fc95760405162461bcd60e51b81526004016104dc90612f42565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612006908490612e90565b925050819055505050508061201a90612c8d565b9050611f3e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612071929190612f8c565b60405180910390a4612087818787878787612486565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121555760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016104dc565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166121e85760405162461bcd60e51b81526004016104dc90612efd565b336121f8818787611d1b886122df565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122395760405162461bcd60e51b81526004016104dc90612f42565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612276908490612e90565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122d682888888888861232a565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061231957612319612e45565b602090810291909101015292915050565b6001600160a01b0384163b156120875760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061236e9089908990889088908890600401612fb1565b6020604051808303816000875af19250505080156123a9575060408051601f3d908101601f191682019092526123a691810190612ff6565b60015b612456576123b5613013565b806308c379a014156123ef57506123ca61302f565b806123d557506123f1565b8060405162461bcd60e51b81526004016104dc91906126f3565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016104dc565b6001600160e01b0319811663f23a6e6160e01b146122d65760405162461bcd60e51b81526004016104dc906130b9565b6001600160a01b0384163b156120875760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906124ca9089908990889088908890600401613101565b6020604051808303816000875af1925050508015612505575060408051601f3d908101601f1916820190925261250291810190612ff6565b60015b612511576123b5613013565b6001600160e01b0319811663bc197c8160e01b146122d65760405162461bcd60e51b81526004016104dc906130b9565b82805461254d90612be9565b90600052602060002090601f01602090048101928261256f57600085556125b5565b82601f1061258857805160ff19168380011785556125b5565b828001600101855582156125b5579182015b828111156125b557825182559160200191906001019061259a565b506125c19291506125c5565b5090565b5b808211156125c157600081556001016125c6565b80356001600160a01b03811681146125f157600080fd5b919050565b6000806040838503121561260957600080fd5b612612836125da565b946020939093013593505050565b6001600160e01b031981168114611b2d57600080fd5b60006020828403121561264857600080fd5b8135610e0081612620565b60058110611b2d57600080fd5b6000806040838503121561267357600080fd5b61267c836125da565b9150602083013561268c81612653565b809150509250929050565b60005b838110156126b257818101518382015260200161269a565b838111156126c1576000848401525b50505050565b600081518084526126df816020860160208601612697565b601f01601f19169290920160200192915050565b602081526000610e0060208301846126c7565b60006020828403121561271857600080fd5b8135610e0081612653565b60006020828403121561273557600080fd5b5035919050565b60006020828403121561274e57600080fd5b610e00826125da565b634e487b7160e01b600052602160045260246000fd5b602081016005831061278f57634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156127d1576127d1612795565b6040525050565b600067ffffffffffffffff8211156127f2576127f2612795565b5060051b60200190565b600082601f83011261280d57600080fd5b8135602061281a826127d8565b60405161282782826127ab565b83815260059390931b850182019282810191508684111561284757600080fd5b8286015b84811015612862578035835291830191830161284b565b509695505050505050565b600067ffffffffffffffff83111561288757612887612795565b60405161289e601f8501601f1916602001826127ab565b8091508381528484840111156128b357600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126128dc57600080fd5b610e008383356020850161286d565b600080600080600060a0868803121561290357600080fd5b61290c866125da565b945061291a602087016125da565b9350604086013567ffffffffffffffff8082111561293757600080fd5b61294389838a016127fc565b9450606088013591508082111561295957600080fd5b61296589838a016127fc565b9350608088013591508082111561297b57600080fd5b50612988888289016128cb565b9150509295509295909350565b600080604083850312156129a857600080fd5b823567ffffffffffffffff808211156129c057600080fd5b818501915085601f8301126129d457600080fd5b813560206129e1826127d8565b6040516129ee82826127ab565b83815260059390931b8501820192828101915089841115612a0e57600080fd5b948201945b83861015612a3357612a24866125da565b82529482019490820190612a13565b96505086013592505080821115612a4957600080fd5b50612a56858286016127fc565b9150509250929050565b600081518084526020808501945080840160005b83811015612a9057815187529582019590820190600101612a74565b509495945050505050565b602081526000610e006020830184612a60565b600060208284031215612ac057600080fd5b813567ffffffffffffffff811115612ad757600080fd5b8201601f81018413612ae857600080fd5b610ecb8482356020840161286d565b8015158114611b2d57600080fd5b60008060408385031215612b1857600080fd5b612b21836125da565b9150602083013561268c81612af7565b60008060408385031215612b4457600080fd5b612b4d836125da565b9150612b5b602084016125da565b90509250929050565b600080600080600060a08688031215612b7c57600080fd5b612b85866125da565b9450612b93602087016125da565b93506040860135925060608601359150608086013567ffffffffffffffff811115612bbd57600080fd5b612988888289016128cb565b6020808252600690820152651313d0d2d15160d21b604082015260600190565b600181811c90821680612bfd57607f821691505b60208210811415612c1e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612c3657600080fd5b8151610e0081612af7565b600060208284031215612c5357600080fd5b8151610e0081612653565b600060208284031215612c7057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612ca157612ca1612c77565b5060010190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b60008083128015600160ff1b850184121615612cfe57612cfe612c77565b6001600160ff1b0384018313811615612d1957612d19612c77565b50500390565b600080821280156001600160ff1b0384900385131615612d4157612d41612c77565b600160ff1b8390038412811615612d5a57612d5a612c77565b50500190565b60008151612d72818560208601612697565b9290920192915050565b600080845481600182811c915080831680612d9857607f831692505b6020808410821415612db857634e487b7160e01b86526022600452602486fd5b818015612dcc5760018114612ddd57612e0a565b60ff19861689528489019650612e0a565b60008b81526020902060005b86811015612e025781548b820152908501908301612de9565b505084890196505b50505050505061118e612e1d8286612d60565b64173539b7b760d91b815260050190565b600081612e3d57612e3d612c77565b506000190190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612ea357612ea3612c77565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612ecd57612ecd612ea8565b500490565b600082821015612ee457612ee4612c77565b500390565b600082612ef857612ef8612ea8565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612f9f6040830185612a60565b828103602084015261118e8185612a60565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612feb908301846126c7565b979650505050505050565b60006020828403121561300857600080fd5b8151610e0081612620565b600060033d111561302c5760046000803e5060005160e01c5b90565b600060443d101561303d5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561306d57505050505090565b82850191508151818111156130855750505050505090565b843d870101602082850101111561309f5750505050505090565b6130ae602082860101876127ab565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061312d90830186612a60565b828103606084015261313f8186612a60565b9050828103608084015261315381856126c7565b9897505050505050505056fea264697066735822122056f153d0465006ece89736933562b6ed72a9d9b7eb6b09469a96424bb50ff2cc64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000025593a50255bfb30ea027f6966417b0bf780401d0000000000000000000000003491ead95de2f4a945c2ead3c3afe7747f2ae373
-----Decoded View---------------
Arg [0] : originalContract (address): 0x25593A50255Bfb30eA027f6966417b0BF780401d
Arg [1] : preveousVersion (address): 0x3491eaD95dE2f4a945c2eaD3c3AfE7747f2Ae373
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000025593a50255bfb30ea027f6966417b0bf780401d
Arg [1] : 0000000000000000000000003491ead95de2f4a945c2ead3c3afe7747f2ae373
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.