Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
2,090 OUCHIR
Holders
68
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 |
---|
Contract Name:
OuchiRealty1155
Compiler Version
v0.7.4+commit.3f05b770
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-16 */ pragma solidity ^0.7.4; /* * @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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol pragma solidity ^0.7.4; /** * @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. * * 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. */ 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: multi-token-standard/contracts/utils/SafeMath.sol pragma solidity 0.7.4; /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath#mul: OVERFLOW"); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath#div: DIVISION_BY_ZERO"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath#sub: UNDERFLOW"); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath#add: OVERFLOW"); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO"); return a % b; } } // File: multi-token-standard/contracts/interfaces/IERC1155TokenReceiver.sol pragma solidity 0.7.4; /** * @dev ERC-1155 interface for accepting safe transfers. */ interface IERC1155TokenReceiver { /** * @notice Handle the receipt of a single ERC1155 token type * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated * This function MAY throw to revert and reject the transfer * Return of other amount than the magic value MUST result in the transaction being reverted * Note: The token contract address is always the message sender * @param _operator The address which called the `safeTransferFrom` function * @param _from The address which previously owned the token * @param _id The id of the token being transferred * @param _amount The amount of tokens being transferred * @param _data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` */ function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4); /** * @notice Handle the receipt of multiple ERC1155 token types * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated * This function MAY throw to revert and reject the transfer * Return of other amount than the magic value WILL result in the transaction being reverted * Note: The token contract address is always the message sender * @param _operator The address which called the `safeBatchTransferFrom` function * @param _from The address which previously owned the token * @param _ids An array containing ids of each token being transferred * @param _amounts An array containing amounts of each token being transferred * @param _data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` */ function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4); } // File: multi-token-standard/contracts/interfaces/IERC1155.sol pragma solidity 0.7.4; interface IERC1155 { /****************************************| | Events | |_______________________________________*/ /** * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning * Operator MUST be msg.sender * When minting/creating tokens, the `_from` field MUST be set to `0x0` * When burning/destroying tokens, the `_to` field MUST be set to `0x0` * The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID * To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0 */ event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount); /** * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning * Operator MUST be msg.sender * When minting/creating tokens, the `_from` field MUST be set to `0x0` * When burning/destroying tokens, the `_to` field MUST be set to `0x0` * The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID * To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0 */ event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts); /** * @dev MUST emit when an approval is updated */ event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); /****************************************| | Functions | |_______________________________________*/ /** * @notice Transfers amount of an _id from the _from address to the _to address specified * @dev MUST emit TransferSingle event on success * Caller must be approved to manage the _from account's tokens (see isApprovedForAll) * MUST throw if `_to` is the zero address * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent * MUST throw on any other error * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount * @param _data Additional data with no specified format, sent in call to `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external; /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @dev MUST emit TransferBatch event on success * Caller must be approved to manage the _from account's tokens (see isApprovedForAll) * MUST throw if `_to` is the zero address * MUST throw if length of `_ids` is not the same as length of `_amounts` * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent * MUST throw on any other error * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type * @param _data Additional data with no specified format, sent in call to `_to` */ function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external; /** * @notice Get the balance of an account's Tokens * @param _owner The address of the token holder * @param _id ID of the Token * @return The _owner's balance of the Token type requested */ function balanceOf(address _owner, uint256 _id) external view returns (uint256); /** * @notice Get the balance of multiple account/token pairs * @param _owners The addresses of the token holders * @param _ids ID of the Tokens * @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair) */ function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory); /** * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens * @dev MUST emit the ApprovalForAll event on success * @param _operator Address to add to the set of authorized operators * @param _approved True if the operator is approved, false to revoke approval */ function setApprovalForAll(address _operator, bool _approved) external; /** * @notice Queries the approval status of an operator for a given owner * @param _owner The owner of the Tokens * @param _operator Address of authorized operator * @return isOperator True if the operator is approved, false if not */ function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator); } // File: multi-token-standard/contracts/utils/Address.sol pragma solidity 0.7.4; /** * Utility library of inline functions on addresses */ library Address { // Default hash for EOA accounts returned by extcodehash bytes32 constant internal ACCOUNT_HASH = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract. * @param _address address of the account to check * @return Whether the target address is a contract */ function isContract(address _address) internal view returns (bool) { bytes32 codehash; // Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address or if it has a non-zero code hash or account hash assembly { codehash := extcodehash(_address) } return (codehash != 0x0 && codehash != ACCOUNT_HASH); } } // File: multi-token-standard/contracts/utils/ERC165.sol pragma solidity 0.7.4; abstract contract ERC165 { /** * @notice Query if a contract implements an interface * @param _interfaceID The interface identifier, as specified in ERC-165 * @return `true` if the contract implements `_interfaceID` */ function supportsInterface(bytes4 _interfaceID) virtual public pure returns (bool) { return _interfaceID == this.supportsInterface.selector; } } // File: multi-token-standard/contracts/tokens/ERC1155/ERC1155.sol pragma solidity 0.7.4; /** * @dev Implementation of Multi-Token Standard contract */ contract ERC1155 is IERC1155, ERC165 { using SafeMath for uint256; using Address for address; /***********************************| | Variables and Events | |__________________________________*/ // onReceive function signatures bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61; bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81; // Objects balances mapping (address => mapping(uint256 => uint256)) internal balances; // Operator Functions mapping (address => mapping(address => bool)) internal operators; /***********************************| | Public Transfer Functions | |__________________________________*/ /** * @notice Transfers amount amount of an _id from the _from address to the _to address specified * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount * @param _data Additional data with no specified format, sent in call to `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data) public override { require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR"); require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT"); // require(_amount <= balances[_from][_id]) is not necessary since checked with safemath operations _safeTransferFrom(_from, _to, _id, _amount); _callonERC1155Received(_from, _to, _id, _amount, gasleft(), _data); } /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type * @param _data Additional data with no specified format, sent in call to `_to` */ function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) public override { // Requirements require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR"); require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT"); _safeBatchTransferFrom(_from, _to, _ids, _amounts); _callonERC1155BatchReceived(_from, _to, _ids, _amounts, gasleft(), _data); } /***********************************| | Internal Transfer Functions | |__________________________________*/ /** * @notice Transfers amount amount of an _id from the _from address to the _to address specified * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount */ function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount) internal virtual { // Update balances balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount balances[_to][_id] = balances[_to][_id].add(_amount); // Add amount // Emit event emit TransferSingle(msg.sender, _from, _to, _id, _amount); } /** * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...) */ function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, uint256 _gasLimit, bytes memory _data) internal { // Check if recipient is contract if (_to.isContract()) { bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received{gas: _gasLimit}(msg.sender, _from, _id, _amount, _data); require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE"); } } /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type */ function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts) internal { require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH"); // Number of transfer to execute uint256 nTransfer = _ids.length; // Executing all transfers for (uint256 i = 0; i < nTransfer; i++) { // Update storage balance of previous bin balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]); balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]); } // Emit event emit TransferBatch(msg.sender, _from, _to, _ids, _amounts); } /** * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...) */ function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, uint256 _gasLimit, bytes memory _data) internal { // Pass data if recipient is contract if (_to.isContract()) { bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived{gas: _gasLimit}(msg.sender, _from, _ids, _amounts, _data); require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE"); } } /***********************************| | Operator Functions | |__________________________________*/ /** * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens * @param _operator Address to add to the set of authorized operators * @param _approved True if the operator is approved, false to revoke approval */ function setApprovalForAll(address _operator, bool _approved) external override { // Update operator status operators[msg.sender][_operator] = _approved; emit ApprovalForAll(msg.sender, _operator, _approved); } /** * @notice Queries the approval status of an operator for a given owner * @param _owner The owner of the Tokens * @param _operator Address of authorized operator * @return isOperator True if the operator is approved, false if not */ function isApprovedForAll(address _owner, address _operator) public override view returns (bool isOperator) { return operators[_owner][_operator]; } /***********************************| | Balance Functions | |__________________________________*/ /** * @notice Get the balance of an account's Tokens * @param _owner The address of the token holder * @param _id ID of the Token * @return The _owner's balance of the Token type requested */ function balanceOf(address _owner, uint256 _id) public override view returns (uint256) { return balances[_owner][_id]; } /** * @notice Get the balance of multiple account/token pairs * @param _owners The addresses of the token holders * @param _ids ID of the Tokens * @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair) */ function balanceOfBatch(address[] memory _owners, uint256[] memory _ids) public override view returns (uint256[] memory) { require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH"); // Variables uint256[] memory batchBalances = new uint256[](_owners.length); // Iterate over each owner and token ID for (uint256 i = 0; i < _owners.length; i++) { batchBalances[i] = balances[_owners[i]][_ids[i]]; } return batchBalances; } /***********************************| | ERC165 Functions | |__________________________________*/ /** * @notice Query if a contract implements an interface * @param _interfaceID The interface identifier, as specified in ERC-165 * @return `true` if the contract implements `_interfaceID` and */ function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) { if (_interfaceID == type(IERC1155).interfaceId) { return true; } return super.supportsInterface(_interfaceID); } } // File: multi-token-standard/contracts/interfaces/IERC1155Metadata.sol pragma solidity 0.7.4; interface IERC1155Metadata { event URI(string _uri, uint256 indexed _id); /****************************************| | Functions | |_______________________________________*/ /** * @notice A distinct Uniform Resource Identifier (URI) for a given token. * @dev URIs are defined in RFC 3986. * URIs are assumed to be deterministically generated based on token ID * Token IDs are assumed to be represented in their hex format in URIs * @return URI string */ function uri(uint256 _id) external virtual view returns (string memory); } // File: multi-token-standard/contracts/tokens/ERC1155/ERC1155Metadata.sol pragma solidity 0.7.4; /** * @notice Contract that handles metadata related methods. * @dev Methods assume a deterministic generation of URI based on token IDs. * Methods also assume that URI uses hex representation of token IDs. */ contract ERC1155Metadata is IERC1155Metadata, ERC165 { // URI's default URI prefix string internal baseMetadataURI; /***********************************| | Metadata Public Function s | |__________________________________*/ /** * @notice A distinct Uniform Resource Identifier (URI) for a given token. * @dev URIs are defined in RFC 3986. * URIs are assumed to be deterministically generated based on token ID * @return URI string */ function uri(uint256 _id) public override virtual view returns (string memory) { return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json")); } /***********************************| | Metadata Internal Functions | |__________________________________*/ /** * @notice Will emit default URI log event for corresponding token _id * @param _tokenIDs Array of IDs of tokens to log default URI */ function _logURIs(uint256[] memory _tokenIDs) internal { string memory baseURL = baseMetadataURI; string memory tokenURI; for (uint256 i = 0; i < _tokenIDs.length; i++) { tokenURI = string(abi.encodePacked(baseURL, _uint2str(_tokenIDs[i]), ".json")); emit URI(tokenURI, _tokenIDs[i]); } } /** * @notice Will update the base URL of token's URI * @param _newBaseMetadataURI New base URL of token's URI */ function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal { baseMetadataURI = _newBaseMetadataURI; } /** * @notice Query if a contract implements an interface * @param _interfaceID The interface identifier, as specified in ERC-165 * @return `true` if the contract implements `_interfaceID` and */ function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) { if (_interfaceID == type(IERC1155Metadata).interfaceId) { return true; } return super.supportsInterface(_interfaceID); } /***********************************| | Utility Internal Functions | |__________________________________*/ /** * @notice Convert uint256 to string * @param _i Unsigned integer to convert to string */ function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 ii = _i; uint256 len; // Get number of bytes while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len - 1; // Get each individual ASCII while (ii != 0) { bstr[k--] = byte(uint8(48 + ii % 10)); ii /= 10; } // Convert to string return string(bstr); } } // File: multi-token-standard/contracts/tokens/ERC1155/ERC1155MintBurn.sol pragma solidity 0.7.4; /** * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume * a parent contract to be executed as they are `internal` functions */ contract ERC1155MintBurn is ERC1155 { using SafeMath for uint256; /****************************************| | Minting Functions | |_______________________________________*/ /** * @notice Mint _amount of tokens of a given id * @param _to The address to mint tokens to * @param _id Token id to mint * @param _amount The amount to be minted * @param _data Data to pass if receiver is contract */ function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data) internal virtual { // Add _amount balances[_to][_id] = balances[_to][_id].add(_amount); // Emit event emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount); // Calling onReceive method if recipient is contract _callonERC1155Received(address(0x0), _to, _id, _amount, gasleft(), _data); } /** * @notice Mint tokens for each ids in _ids * @param _to The address to mint tokens to * @param _ids Array of ids to mint * @param _amounts Array of amount of tokens to mint per id * @param _data Data to pass if receiver is contract */ function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) internal { require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH"); // Number of mints to execute uint256 nMint = _ids.length; // Executing all minting for (uint256 i = 0; i < nMint; i++) { // Update storage balance balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]); } // Emit batch mint event emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts); // Calling onReceive method if recipient is contract _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, gasleft(), _data); } /****************************************| | Burning Functions | |_______________________________________*/ /** * @notice Burn _amount of tokens of a given token id * @param _from The address to burn tokens from * @param _id Token id to burn * @param _amount The amount to be burned */ function _burn(address _from, uint256 _id, uint256 _amount) internal { //Substract _amount balances[_from][_id] = balances[_from][_id].sub(_amount); // Emit event emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount); } /** * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair * @param _from The address to burn tokens from * @param _ids Array of token ids to burn * @param _amounts Array of the amount to be burned */ function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts) internal { // Number of mints to execute uint256 nBurn = _ids.length; require(nBurn == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH"); // Executing all minting for (uint256 i = 0; i < nBurn; i++) { // Update storage balance balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]); } // Emit batch mint event emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts); } } // File: contracts/Strings.sol pragma solidity ^0.7.4; library Strings { // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (_i != 0) { bstr[k--] = byte(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } } // File: contracts/OuchiRealty1155.sol pragma solidity ^0.7.4; /** * @title ERC1155Tradable * ERC1155Tradable - ERC1155 contract that whitelists an operator address, has create and mint functionality, and supports useful standards from OpenZeppelin, like _exists(), name(), symbol(), and totalSupply() */ contract OuchiRealty1155 is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable { using Strings for string; using SafeMath for uint256; mapping (uint256 => address) public creators; mapping (uint256 => uint256) public tokenSupply; // Contract name string public name; // Contract symbol string public symbol; // Array with all token ids, used for enumeration uint256[] private _allTokens; mapping(uint256 => uint256) public numHolders; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; mapping(uint256 => mapping(uint256 => address)) public holders; mapping(uint256 => mapping(address => bool)) public holding; /** * @dev Require msg.sender to be the creator of the token id */ modifier creatorOnly(uint256 _id) { require(creators[_id] == msg.sender, "ERC1155Tradable#creatorOnly: ONLY_CREATOR_ALLOWED"); _; } /** * @dev Require msg.sender to own more than 0 of the token id */ modifier ownersOnly(uint256 _id) { require(balances[msg.sender][_id] > 0, "ERC1155Tradable#ownersOnly: ONLY_OWNERS_ALLOWED"); _; } constructor( string memory _name, string memory _symbol ) public { name = _name; symbol = _symbol; } function uri( uint256 _id ) public override view returns (string memory) { require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN"); return Strings.strConcat( baseMetadataURI, Strings.uint2str(_id) ); } /** * @dev Returns the total quantity for a token ID * @param _id uint256 ID of the token to query * @return amount of token in existence */ function totalSupply( uint256 _id ) public view returns (uint256) { return tokenSupply[_id]; } /** * @dev Will update the base URL of token's URI * @param _newBaseMetadataURI New base URL of token's URI */ function setBaseMetadataURI( string memory _newBaseMetadataURI ) public onlyOwner { _setBaseMetadataURI(_newBaseMetadataURI); } /** * @dev Creates a new token type and assigns _initialSupply to an address * NOTE: remove onlyOwner if you want third parties to create new tokens on your contract (which may change your IDs) * @param _initialOwner address of the first owner of the token * @param _initialSupply amount to supply the first owner * @param _uri Optional URI for this token type * @param _data Data to pass if receiver is contract * @return The newly created token ID */ function create( address _initialOwner, uint256 _initialSupply, string calldata _uri, uint256 _tokenId, bytes calldata _data ) external onlyOwner returns (uint256) { uint256 _id = _tokenId; _addTokenToAllTokensEnumeration(_tokenId); creators[_id] = msg.sender; if (bytes(_uri).length > 0) { emit URI(_uri, _id); } _mint(_initialOwner, _id, _initialSupply, _data); tokenSupply[_id] = _initialSupply; return _id; } /** * @dev Mints some amount of tokens to an address * @param _to Address of the future owner of the token * @param _id Token ID to mint * @param _quantity Amount of tokens to mint * @param _data Data to pass if receiver is contract */ function mint( address _to, uint256 _id, uint256 _quantity, bytes memory _data ) public creatorOnly(_id) { _mint(_to, _id, _quantity, _data); tokenSupply[_id] = tokenSupply[_id].add(_quantity); } /** * @dev Mint tokens for each id in _ids * @param _to The address to mint tokens to * @param _ids Array of ids to mint * @param _quantities Array of amounts of tokens to mint per id * @param _data Data to pass if receiver is contract */ function batchMint( address _to, uint256[] memory _ids, uint256[] memory _quantities, bytes memory _data ) public { for (uint256 i = 0; i < _ids.length; i++) { uint256 _id = _ids[i]; require(creators[_id] == msg.sender, "ERC1155Tradable#batchMint: ONLY_CREATOR_ALLOWED"); uint256 quantity = _quantities[i]; tokenSupply[_id] = tokenSupply[_id].add(quantity); } _batchMint(_to, _ids, _quantities, _data); } /** * @dev Change the creator address for given tokens * @param _to Address of the new creator * @param _ids Array of Token IDs to change creator */ function setCreator( address _to, uint256[] memory _ids ) public { require(_to != address(0), "ERC1155Tradable#setCreator: INVALID_ADDRESS."); for (uint256 i = 0; i < _ids.length; i++) { uint256 id = _ids[i]; _setCreator(_to, id); } } /** * @dev Change the creator address for given token * @param _to Address of the new creator * @param _id Token IDs to change creator of */ function _setCreator(address _to, uint256 _id) internal creatorOnly(_id) { creators[_id] = _to; } /** * @dev Returns whether the specified token exists by checking to see if it has a creator * @param _id uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists( uint256 _id ) internal view returns (bool) { return creators[_id] != address(0); } function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } function currentTokenCount() external view returns(uint256){ return _allTokens.length; } function tokenByIndex(uint256 index) public view returns (uint256) { require(index < _allTokens.length, "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } function tokenURI( uint256 _id ) public view returns (string memory) { return uri(_id); } function supportsInterface(bytes4 _interfaceID) public override(ERC1155,ERC1155Metadata) virtual pure returns (bool) { return super.supportsInterface(_interfaceID); } function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount) internal override { super._safeTransferFrom(_from, _to, _id, _amount); if(!holding[_id][_to]){ holders[_id][numHolders[_id]] = _to; holding[_id][_to] = true; numHolders[_id] ++; } } function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data) internal override { super._mint(_to, _id, _amount, _data); if(!holding[_id][_to]){ holders[_id][numHolders[_id]] = _to; holding[_id][_to] = true; numHolders[_id] ++; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_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":"_amounts","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":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"holders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"holding","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"numHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_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":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002fb238038062002fb2833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b506040525050506000620001b16200023360201b60201c565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200021490600690602085019062000237565b5080516200022a90600790602084019062000237565b505050620002e3565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200026f5760008555620002ba565b82601f106200028a57805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002ba5782518255916020019190600101906200029d565b50620002c8929150620002cc565b5090565b5b80821115620002c85760008155600101620002cd565b612cbf80620002f36000396000f3fe608060405234801561001057600080fd5b50600436106101c35760003560e01c80638da5cb5b116100f9578063bd85b03911610097578063d2a6b51a11610071578063d2a6b51a14610b73578063e985e9c514610c24578063f242432a14610c52578063f2fde38b14610d1b576101c3565b8063bd85b03914610b1c578063c87b56dd14610b39578063cd53d08e14610b56576101c3565b8063a22cb465116100d3578063a22cb465146108f6578063aed6176e14610924578063af9f0c5214610947578063b48ab8b614610964576101c3565b80638da5cb5b146108c25780638f32d59b146108e657806395d89b41146108ee576101c3565b80632eb2c2d6116101665780634f6ccce7116101405780634f6ccce714610739578063715018a614610756578063731133e91461075e5780637e518ec81461081e576101c3565b80632eb2c2d61461032c57806342c78353146104ef5780634e1273f4146105c6576101c3565b80630b1e8281116101a25780630b1e8281146102be5780630e89341c146102ea57806311b639d9146103075780632693ebf21461030f576101c3565b8062fdd58e146101c857806301ffc9a71461020657806306fdde0314610241575b600080fd5b6101f4600480360360408110156101de57600080fd5b506001600160a01b038135169060200135610d41565b60408051918252519081900360200190f35b61022d6004803603602081101561021c57600080fd5b50356001600160e01b031916610d67565b604080519115158252519081900360200190f35b610249610d7a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028357818101518382015260200161026b565b50505050905090810190601f1680156102b05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022d600480360360408110156102d457600080fd5b50803590602001356001600160a01b0316610e08565b6102496004803603602081101561030057600080fd5b5035610e28565b6101f4610f0b565b6101f46004803603602081101561032557600080fd5b5035610f11565b6104ed600480360360a081101561034257600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561037557600080fd5b82018360208201111561038757600080fd5b803590602001918460208302840111600160201b831117156103a857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156103f757600080fd5b82018360208201111561040957600080fd5b803590602001918460208302840111600160201b8311171561042a57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561047957600080fd5b82018360208201111561048b57600080fd5b803590602001918460018302840111600160201b831117156104ac57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f23945050505050565b005b6101f4600480360360a081101561050557600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561053457600080fd5b82018360208201111561054657600080fd5b803590602001918460018302840111600160201b8311171561056757600080fd5b91939092823592604081019060200135600160201b81111561058857600080fd5b82018360208201111561059a57600080fd5b803590602001918460018302840111600160201b831117156105bb57600080fd5b509092509050610fe0565b6106e9600480360360408110156105dc57600080fd5b810190602081018135600160201b8111156105f657600080fd5b82018360208201111561060857600080fd5b803590602001918460208302840111600160201b8311171561062957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561067857600080fd5b82018360208201111561068a57600080fd5b803590602001918460208302840111600160201b831117156106ab57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611119945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561072557818101518382015260200161070d565b505050509050019250505060405180910390f35b6101f46004803603602081101561074f57600080fd5b5035611231565b6104ed611293565b6104ed6004803603608081101561077457600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b8111156107aa57600080fd5b8201836020820111156107bc57600080fd5b803590602001918460018302840111600160201b831117156107dd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611324945050505050565b6104ed6004803603602081101561083457600080fd5b810190602081018135600160201b81111561084e57600080fd5b82018360208201111561086057600080fd5b803590602001918460018302840111600160201b8311171561088157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113b9945050505050565b6108ca61140c565b604080516001600160a01b039092168252519081900360200190f35b61022d61141b565b610249611441565b6104ed6004803603604081101561090c57600080fd5b506001600160a01b038135169060200135151561149c565b6108ca6004803603604081101561093a57600080fd5b508035906020013561150a565b6101f46004803603602081101561095d57600080fd5b5035611530565b6104ed6004803603608081101561097a57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156109a457600080fd5b8201836020820111156109b657600080fd5b803590602001918460208302840111600160201b831117156109d757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610a2657600080fd5b820183602082011115610a3857600080fd5b803590602001918460208302840111600160201b83111715610a5957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610aa857600080fd5b820183602082011115610aba57600080fd5b803590602001918460018302840111600160201b83111715610adb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611542945050505050565b6101f460048036036020811015610b3257600080fd5b503561162e565b61024960048036036020811015610b4f57600080fd5b5035611640565b6108ca60048036036020811015610b6c57600080fd5b503561164b565b6104ed60048036036040811015610b8957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610bb357600080fd5b820183602082011115610bc557600080fd5b803590602001918460208302840111600160201b83111715610be657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611666945050505050565b61022d60048036036040811015610c3a57600080fd5b506001600160a01b03813581169160200135166116e7565b6104ed600480360360a0811015610c6857600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610ca757600080fd5b820183602082011115610cb957600080fd5b803590602001918460018302840111600160201b83111715610cda57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611715945050505050565b6104ed60048036036020811015610d3157600080fd5b50356001600160a01b03166117cb565b6001600160a01b0391909116600090815260208181526040808320938352929052205490565b6000610d728261181b565b90505b919050565b6006805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b505050505081565b600c60209081526000928352604080842090915290825290205460ff1681565b6060610e3382611847565b610e6e5760405162461bcd60e51b8152600401808060200182810382526025815260200180612ab86025913960400191505060405180910390fd5b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152610d729390929091830182828015610ef85780601f10610ecd57610100808354040283529160200191610ef8565b820191906000526020600020905b815481529060010190602001808311610edb57829003601f168201915b5050505050610f0684611864565b61193c565b60085490565b60056020526000908152604090205481565b336001600160a01b0386161480610f3f5750610f3f85336116e7565b610f7a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612b29602f913960400191505060405180910390fd5b6001600160a01b038416610fbf5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a886030913960400191505060405180910390fd5b610fcb8585858561197f565b610fd9858585855a86611c2a565b5050505050565b6000610fea61141b565b611029576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b8361103381611e22565b600081815260046020526040902080546001600160a01b0319163317905585156110b957807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b6110fb89828a87878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e6692505050565b60008181526005602052604090208890559050979650505050505050565b6060815183511461115b5760405162461bcd60e51b815260040180806020018281038252602c815260200180612afd602c913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561117557600080fd5b5060405190808252806020026020018201604052801561119f578160200160208202803683370190505b50905060005b8451811015611229576000808683815181106111bd57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008583815181106111f357fe5b602002602001015181526020019081526020016000205482828151811061121657fe5b60209081029190910101526001016111a5565b509392505050565b60085460009082106112745760405162461bcd60e51b815260040180806020018281038252602c815260200180612c01602c913960400191505060405180910390fd5b6008828154811061128157fe5b90600052602060002001549050919050565b61129b61141b565b6112da576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60008381526004602052604090205483906001600160a01b0316331461137b5760405162461bcd60e51b8152600401808060200182810382526031815260200180612c596031913960400191505060405180910390fd5b61138785858585611e66565b6000848152600560205260409020546113a09084611f0e565b6000948552600560205260409094209390935550505050565b6113c161141b565b611400576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b61140981611f61565b50565b6003546001600160a01b031690565b6003546000906001600160a01b0316611432611f78565b6001600160a01b031614905090565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600b6020908152600092835260408084209091529082529020546001600160a01b031681565b60096020526000908152604090205481565b60005b835181101561161b57600084828151811061155c57fe5b602090810291909101810151600081815260049092526040909120549091506001600160a01b031633146115c15760405162461bcd60e51b815260040180806020018281038252602f8152602001806129d4602f913960400191505060405180910390fd5b60008483815181106115cf57fe5b602002602001015190506115ff816005600085815260200190815260200160002054611f0e90919063ffffffff16565b6000928352600560205260409092209190915550600101611545565b5061162884848484611f7c565b50505050565b60009081526005602052604090205490565b6060610d7282610e28565b6004602052600090815260409020546001600160a01b031681565b6001600160a01b0382166116ab5760405162461bcd60e51b815260040180806020018281038252602c815260200180612c2d602c913960400191505060405180910390fd5b60005b81518110156116e25760008282815181106116c557fe5b602002602001015190506116d98482612151565b506001016116ae565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b336001600160a01b0386161480611731575061173185336116e7565b61176c5760405162461bcd60e51b815260040180806020018281038252602a815260200180612a29602a913960400191505060405180910390fd5b6001600160a01b0384166117b15760405162461bcd60e51b815260040180806020018281038252602b8152602001806129a9602b913960400191505060405180910390fd5b6117bd858585856121d7565b610fd9858585855a8661227f565b6117d361141b565b611812576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b611409816123f1565b60006001600160e01b031982166303a24d0760e21b141561183e57506001610d75565b610d7282612492565b6000908152600460205260409020546001600160a01b0316151590565b60608161188957506040805180820190915260018152600360fc1b6020820152610d75565b8160005b81156118a157600101600a8204915061188d565b60608167ffffffffffffffff811180156118ba57600080fd5b506040519080825280601f01601f1916602001820160405280156118e5576020820181803683370190505b50905060001982015b851561193357600a860660300160f81b8282806001900393508151811061191157fe5b60200101906001600160f81b031916908160001a905350600a860495506118ee565b50949350505050565b606061197883836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506124be565b9392505050565b80518251146119bf5760405162461bcd60e51b8152600401808060200182810382526035815260200180612a536035913960400191505060405180910390fd5b815160005b81811015611b4957611a3a8382815181106119db57fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611a1557fe5b60200260200101518152602001908152602001600020546126e390919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611a6c57fe5b6020026020010151815260200190815260200160002081905550611af4838281518110611a9557fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611acf57fe5b6020026020010151815260200190815260200160002054611f0e90919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611b2657fe5b6020908102919091018101518252810191909152604001600020556001016119c4565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611bcf578181015183820152602001611bb7565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611c0e578181015183820152602001611bf6565b5050505090500194505050505060405180910390a45050505050565b611c3c856001600160a01b0316612740565b15611e1a576000856001600160a01b031663bc197c8184338a8989886040518763ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015611ccd578181015183820152602001611cb5565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015611d0c578181015183820152602001611cf4565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015611d48578181015183820152602001611d30565b50505050905090810190601f168015611d755780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600088803b158015611d9a57600080fd5b5087f1158015611dae573d6000803e3d6000fd5b50505050506040513d6020811015611dc557600080fd5b505190506001600160e01b0319811663bc197c8160e01b14611e185760405162461bcd60e51b815260040180806020018281038252603f815260200180612b88603f913960400191505060405180910390fd5b505b505050505050565b600880546000838152600a60205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e7284848484612777565b6000838152600c602090815260408083206001600160a01b038816845290915290205460ff166116285750506000818152600b6020908152604080832060098084528285208054865291845282852080546001600160a01b0319166001600160a01b03989098169788179055858552600c8452828520968552958352908320805460ff1916600190811790915593909252929092528154019055565b600082820183811015611978576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b8051611f74906002906020840190612907565b5050565b3390565b8151835114611fbc5760405162461bcd60e51b8152600401808060200182810382526030815260200180612b586030913960400191505060405180910390fd5b825160005b8181101561206757612012848281518110611fd857fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000888581518110611acf57fe5b600080886001600160a01b03166001600160a01b03168152602001908152602001600020600087848151811061204457fe5b602090810291909101810151825281019190915260400160002055600101611fc1565b50846001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156120ee5781810151838201526020016120d6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561212d578181015183820152602001612115565b5050505090500194505050505060405180910390a4610fd960008686865a87611c2a565b60008181526004602052604090205481906001600160a01b031633146121a85760405162461bcd60e51b8152600401808060200182810382526031815260200180612c596031913960400191505060405180910390fd5b50600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6121e384848484612812565b6000828152600c602090815260408083206001600160a01b038716845290915290205460ff1661162857506000818152600b6020908152604080832060098084528285208054865291845282852080546001600160a01b0319166001600160a01b03989098169788179055858552600c8452828520968552958352908320805460ff191660019081179091559390925292909252815401905550565b612291856001600160a01b0316612740565b15611e1a576000856001600160a01b031663f23a6e6184338a8989886040518763ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561232357818101518382015260200161230b565b50505050905090810190601f1680156123505780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600088803b15801561237357600080fd5b5087f1158015612387573d6000803e3d6000fd5b50505050506040513d602081101561239e57600080fd5b505190506001600160e01b0319811663f23a6e6160e01b14611e185760405162461bcd60e51b815260040180806020018281038252603a815260200180612bc7603a913960400191505060405180910390fd5b6001600160a01b0381166124365760405162461bcd60e51b8152600401808060200182810382526026815260200180612a036026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b03198216636cdb3d1360e11b14156124b557506001610d75565b610d72826128ee565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff811180156124f857600080fd5b506040519080825280601f01601f191660200182016040528015612523576020820181803683370190505b509050806000805b885181101561257c5788818151811061254057fe5b602001015160f81c60f81b83838060010194508151811061255d57fe5b60200101906001600160f81b031916908160001a90535060010161252b565b5060005b87518110156125d15787818151811061259557fe5b602001015160f81c60f81b8383806001019450815181106125b257fe5b60200101906001600160f81b031916908160001a905350600101612580565b5060005b8651811015612626578681815181106125ea57fe5b602001015160f81c60f81b83838060010194508151811061260757fe5b60200101906001600160f81b031916908160001a9053506001016125d5565b5060005b855181101561267b5785818151811061263f57fe5b602001015160f81c60f81b83838060010194508151811061265c57fe5b60200101906001600160f81b031916908160001a90535060010161262a565b5060005b84518110156126d05784818151811061269457fe5b602001015160f81c60f81b8383806001019450815181106126b157fe5b60200101906001600160f81b031916908160001a90535060010161267f565b50909d9c50505050505050505050505050565b60008282111561273a576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f801580159061197857507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470141592915050565b6001600160a01b0384166000908152602081815260408083208684529091529020546127a39083611f0e565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a461162860008585855a8661227f565b6001600160a01b03841660009081526020818152604080832085845290915290205461283e90826126e3565b6001600160a01b03808616600090815260208181526040808320878452825280832094909455918616815280825282812085825290915220546128819082611f0e565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6001600160e01b031981166301ffc9a760e01b14919050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261293d5760008555612983565b82601f1061295657805160ff1916838001178555612983565b82800160010185558215612983579182015b82811115612983578251825591602001919060010190612968565b5061298f929150612993565b5090565b5b8082111561298f576000815560010161299456fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54455243313135355472616461626c652362617463684d696e743a204f4e4c595f43524541544f525f414c4c4f5745444f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135354d696e744275726e2362617463684d696e743a20494e56414c49445f4152524159535f4c454e47544845524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a26469706673582212201fd8467084f6b7e6b35ec70ab10cb436a53ee32ffe7d17b9cd01d13d77b3945464736f6c6343000704003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4f75636869205265616c7479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f55434849520000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c35760003560e01c80638da5cb5b116100f9578063bd85b03911610097578063d2a6b51a11610071578063d2a6b51a14610b73578063e985e9c514610c24578063f242432a14610c52578063f2fde38b14610d1b576101c3565b8063bd85b03914610b1c578063c87b56dd14610b39578063cd53d08e14610b56576101c3565b8063a22cb465116100d3578063a22cb465146108f6578063aed6176e14610924578063af9f0c5214610947578063b48ab8b614610964576101c3565b80638da5cb5b146108c25780638f32d59b146108e657806395d89b41146108ee576101c3565b80632eb2c2d6116101665780634f6ccce7116101405780634f6ccce714610739578063715018a614610756578063731133e91461075e5780637e518ec81461081e576101c3565b80632eb2c2d61461032c57806342c78353146104ef5780634e1273f4146105c6576101c3565b80630b1e8281116101a25780630b1e8281146102be5780630e89341c146102ea57806311b639d9146103075780632693ebf21461030f576101c3565b8062fdd58e146101c857806301ffc9a71461020657806306fdde0314610241575b600080fd5b6101f4600480360360408110156101de57600080fd5b506001600160a01b038135169060200135610d41565b60408051918252519081900360200190f35b61022d6004803603602081101561021c57600080fd5b50356001600160e01b031916610d67565b604080519115158252519081900360200190f35b610249610d7a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028357818101518382015260200161026b565b50505050905090810190601f1680156102b05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022d600480360360408110156102d457600080fd5b50803590602001356001600160a01b0316610e08565b6102496004803603602081101561030057600080fd5b5035610e28565b6101f4610f0b565b6101f46004803603602081101561032557600080fd5b5035610f11565b6104ed600480360360a081101561034257600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561037557600080fd5b82018360208201111561038757600080fd5b803590602001918460208302840111600160201b831117156103a857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156103f757600080fd5b82018360208201111561040957600080fd5b803590602001918460208302840111600160201b8311171561042a57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561047957600080fd5b82018360208201111561048b57600080fd5b803590602001918460018302840111600160201b831117156104ac57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f23945050505050565b005b6101f4600480360360a081101561050557600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561053457600080fd5b82018360208201111561054657600080fd5b803590602001918460018302840111600160201b8311171561056757600080fd5b91939092823592604081019060200135600160201b81111561058857600080fd5b82018360208201111561059a57600080fd5b803590602001918460018302840111600160201b831117156105bb57600080fd5b509092509050610fe0565b6106e9600480360360408110156105dc57600080fd5b810190602081018135600160201b8111156105f657600080fd5b82018360208201111561060857600080fd5b803590602001918460208302840111600160201b8311171561062957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561067857600080fd5b82018360208201111561068a57600080fd5b803590602001918460208302840111600160201b831117156106ab57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611119945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561072557818101518382015260200161070d565b505050509050019250505060405180910390f35b6101f46004803603602081101561074f57600080fd5b5035611231565b6104ed611293565b6104ed6004803603608081101561077457600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b8111156107aa57600080fd5b8201836020820111156107bc57600080fd5b803590602001918460018302840111600160201b831117156107dd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611324945050505050565b6104ed6004803603602081101561083457600080fd5b810190602081018135600160201b81111561084e57600080fd5b82018360208201111561086057600080fd5b803590602001918460018302840111600160201b8311171561088157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113b9945050505050565b6108ca61140c565b604080516001600160a01b039092168252519081900360200190f35b61022d61141b565b610249611441565b6104ed6004803603604081101561090c57600080fd5b506001600160a01b038135169060200135151561149c565b6108ca6004803603604081101561093a57600080fd5b508035906020013561150a565b6101f46004803603602081101561095d57600080fd5b5035611530565b6104ed6004803603608081101561097a57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156109a457600080fd5b8201836020820111156109b657600080fd5b803590602001918460208302840111600160201b831117156109d757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610a2657600080fd5b820183602082011115610a3857600080fd5b803590602001918460208302840111600160201b83111715610a5957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610aa857600080fd5b820183602082011115610aba57600080fd5b803590602001918460018302840111600160201b83111715610adb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611542945050505050565b6101f460048036036020811015610b3257600080fd5b503561162e565b61024960048036036020811015610b4f57600080fd5b5035611640565b6108ca60048036036020811015610b6c57600080fd5b503561164b565b6104ed60048036036040811015610b8957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610bb357600080fd5b820183602082011115610bc557600080fd5b803590602001918460208302840111600160201b83111715610be657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611666945050505050565b61022d60048036036040811015610c3a57600080fd5b506001600160a01b03813581169160200135166116e7565b6104ed600480360360a0811015610c6857600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610ca757600080fd5b820183602082011115610cb957600080fd5b803590602001918460018302840111600160201b83111715610cda57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611715945050505050565b6104ed60048036036020811015610d3157600080fd5b50356001600160a01b03166117cb565b6001600160a01b0391909116600090815260208181526040808320938352929052205490565b6000610d728261181b565b90505b919050565b6006805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b505050505081565b600c60209081526000928352604080842090915290825290205460ff1681565b6060610e3382611847565b610e6e5760405162461bcd60e51b8152600401808060200182810382526025815260200180612ab86025913960400191505060405180910390fd5b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152610d729390929091830182828015610ef85780601f10610ecd57610100808354040283529160200191610ef8565b820191906000526020600020905b815481529060010190602001808311610edb57829003601f168201915b5050505050610f0684611864565b61193c565b60085490565b60056020526000908152604090205481565b336001600160a01b0386161480610f3f5750610f3f85336116e7565b610f7a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612b29602f913960400191505060405180910390fd5b6001600160a01b038416610fbf5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a886030913960400191505060405180910390fd5b610fcb8585858561197f565b610fd9858585855a86611c2a565b5050505050565b6000610fea61141b565b611029576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b8361103381611e22565b600081815260046020526040902080546001600160a01b0319163317905585156110b957807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b6110fb89828a87878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e6692505050565b60008181526005602052604090208890559050979650505050505050565b6060815183511461115b5760405162461bcd60e51b815260040180806020018281038252602c815260200180612afd602c913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561117557600080fd5b5060405190808252806020026020018201604052801561119f578160200160208202803683370190505b50905060005b8451811015611229576000808683815181106111bd57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008583815181106111f357fe5b602002602001015181526020019081526020016000205482828151811061121657fe5b60209081029190910101526001016111a5565b509392505050565b60085460009082106112745760405162461bcd60e51b815260040180806020018281038252602c815260200180612c01602c913960400191505060405180910390fd5b6008828154811061128157fe5b90600052602060002001549050919050565b61129b61141b565b6112da576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60008381526004602052604090205483906001600160a01b0316331461137b5760405162461bcd60e51b8152600401808060200182810382526031815260200180612c596031913960400191505060405180910390fd5b61138785858585611e66565b6000848152600560205260409020546113a09084611f0e565b6000948552600560205260409094209390935550505050565b6113c161141b565b611400576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b61140981611f61565b50565b6003546001600160a01b031690565b6003546000906001600160a01b0316611432611f78565b6001600160a01b031614905090565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e005780601f10610dd557610100808354040283529160200191610e00565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600b6020908152600092835260408084209091529082529020546001600160a01b031681565b60096020526000908152604090205481565b60005b835181101561161b57600084828151811061155c57fe5b602090810291909101810151600081815260049092526040909120549091506001600160a01b031633146115c15760405162461bcd60e51b815260040180806020018281038252602f8152602001806129d4602f913960400191505060405180910390fd5b60008483815181106115cf57fe5b602002602001015190506115ff816005600085815260200190815260200160002054611f0e90919063ffffffff16565b6000928352600560205260409092209190915550600101611545565b5061162884848484611f7c565b50505050565b60009081526005602052604090205490565b6060610d7282610e28565b6004602052600090815260409020546001600160a01b031681565b6001600160a01b0382166116ab5760405162461bcd60e51b815260040180806020018281038252602c815260200180612c2d602c913960400191505060405180910390fd5b60005b81518110156116e25760008282815181106116c557fe5b602002602001015190506116d98482612151565b506001016116ae565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b336001600160a01b0386161480611731575061173185336116e7565b61176c5760405162461bcd60e51b815260040180806020018281038252602a815260200180612a29602a913960400191505060405180910390fd5b6001600160a01b0384166117b15760405162461bcd60e51b815260040180806020018281038252602b8152602001806129a9602b913960400191505060405180910390fd5b6117bd858585856121d7565b610fd9858585855a8661227f565b6117d361141b565b611812576040805162461bcd60e51b81526020600482018190526024820152600080516020612add833981519152604482015290519081900360640190fd5b611409816123f1565b60006001600160e01b031982166303a24d0760e21b141561183e57506001610d75565b610d7282612492565b6000908152600460205260409020546001600160a01b0316151590565b60608161188957506040805180820190915260018152600360fc1b6020820152610d75565b8160005b81156118a157600101600a8204915061188d565b60608167ffffffffffffffff811180156118ba57600080fd5b506040519080825280601f01601f1916602001820160405280156118e5576020820181803683370190505b50905060001982015b851561193357600a860660300160f81b8282806001900393508151811061191157fe5b60200101906001600160f81b031916908160001a905350600a860495506118ee565b50949350505050565b606061197883836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506124be565b9392505050565b80518251146119bf5760405162461bcd60e51b8152600401808060200182810382526035815260200180612a536035913960400191505060405180910390fd5b815160005b81811015611b4957611a3a8382815181106119db57fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611a1557fe5b60200260200101518152602001908152602001600020546126e390919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611a6c57fe5b6020026020010151815260200190815260200160002081905550611af4838281518110611a9557fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611acf57fe5b6020026020010151815260200190815260200160002054611f0e90919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611b2657fe5b6020908102919091018101518252810191909152604001600020556001016119c4565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611bcf578181015183820152602001611bb7565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611c0e578181015183820152602001611bf6565b5050505090500194505050505060405180910390a45050505050565b611c3c856001600160a01b0316612740565b15611e1a576000856001600160a01b031663bc197c8184338a8989886040518763ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015611ccd578181015183820152602001611cb5565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015611d0c578181015183820152602001611cf4565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015611d48578181015183820152602001611d30565b50505050905090810190601f168015611d755780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600088803b158015611d9a57600080fd5b5087f1158015611dae573d6000803e3d6000fd5b50505050506040513d6020811015611dc557600080fd5b505190506001600160e01b0319811663bc197c8160e01b14611e185760405162461bcd60e51b815260040180806020018281038252603f815260200180612b88603f913960400191505060405180910390fd5b505b505050505050565b600880546000838152600a60205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e7284848484612777565b6000838152600c602090815260408083206001600160a01b038816845290915290205460ff166116285750506000818152600b6020908152604080832060098084528285208054865291845282852080546001600160a01b0319166001600160a01b03989098169788179055858552600c8452828520968552958352908320805460ff1916600190811790915593909252929092528154019055565b600082820183811015611978576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b8051611f74906002906020840190612907565b5050565b3390565b8151835114611fbc5760405162461bcd60e51b8152600401808060200182810382526030815260200180612b586030913960400191505060405180910390fd5b825160005b8181101561206757612012848281518110611fd857fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000888581518110611acf57fe5b600080886001600160a01b03166001600160a01b03168152602001908152602001600020600087848151811061204457fe5b602090810291909101810151825281019190915260400160002055600101611fc1565b50846001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156120ee5781810151838201526020016120d6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561212d578181015183820152602001612115565b5050505090500194505050505060405180910390a4610fd960008686865a87611c2a565b60008181526004602052604090205481906001600160a01b031633146121a85760405162461bcd60e51b8152600401808060200182810382526031815260200180612c596031913960400191505060405180910390fd5b50600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6121e384848484612812565b6000828152600c602090815260408083206001600160a01b038716845290915290205460ff1661162857506000818152600b6020908152604080832060098084528285208054865291845282852080546001600160a01b0319166001600160a01b03989098169788179055858552600c8452828520968552958352908320805460ff191660019081179091559390925292909252815401905550565b612291856001600160a01b0316612740565b15611e1a576000856001600160a01b031663f23a6e6184338a8989886040518763ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561232357818101518382015260200161230b565b50505050905090810190601f1680156123505780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600088803b15801561237357600080fd5b5087f1158015612387573d6000803e3d6000fd5b50505050506040513d602081101561239e57600080fd5b505190506001600160e01b0319811663f23a6e6160e01b14611e185760405162461bcd60e51b815260040180806020018281038252603a815260200180612bc7603a913960400191505060405180910390fd5b6001600160a01b0381166124365760405162461bcd60e51b8152600401808060200182810382526026815260200180612a036026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b03198216636cdb3d1360e11b14156124b557506001610d75565b610d72826128ee565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff811180156124f857600080fd5b506040519080825280601f01601f191660200182016040528015612523576020820181803683370190505b509050806000805b885181101561257c5788818151811061254057fe5b602001015160f81c60f81b83838060010194508151811061255d57fe5b60200101906001600160f81b031916908160001a90535060010161252b565b5060005b87518110156125d15787818151811061259557fe5b602001015160f81c60f81b8383806001019450815181106125b257fe5b60200101906001600160f81b031916908160001a905350600101612580565b5060005b8651811015612626578681815181106125ea57fe5b602001015160f81c60f81b83838060010194508151811061260757fe5b60200101906001600160f81b031916908160001a9053506001016125d5565b5060005b855181101561267b5785818151811061263f57fe5b602001015160f81c60f81b83838060010194508151811061265c57fe5b60200101906001600160f81b031916908160001a90535060010161262a565b5060005b84518110156126d05784818151811061269457fe5b602001015160f81c60f81b8383806001019450815181106126b157fe5b60200101906001600160f81b031916908160001a90535060010161267f565b50909d9c50505050505050505050505050565b60008282111561273a576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f801580159061197857507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470141592915050565b6001600160a01b0384166000908152602081815260408083208684529091529020546127a39083611f0e565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a461162860008585855a8661227f565b6001600160a01b03841660009081526020818152604080832085845290915290205461283e90826126e3565b6001600160a01b03808616600090815260208181526040808320878452825280832094909455918616815280825282812085825290915220546128819082611f0e565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6001600160e01b031981166301ffc9a760e01b14919050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261293d5760008555612983565b82601f1061295657805160ff1916838001178555612983565b82800160010185558215612983579182015b82811115612983578251825591602001919060010190612968565b5061298f929150612993565b5090565b5b8082111561298f576000815560010161299456fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54455243313135355472616461626c652362617463684d696e743a204f4e4c595f43524541544f525f414c4c4f5745444f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135354d696e744275726e2362617463684d696e743a20494e56414c49445f4152524159535f4c454e47544845524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a26469706673582212201fd8467084f6b7e6b35ec70ab10cb436a53ee32ffe7d17b9cd01d13d77b3945464736f6c63430007040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4f75636869205265616c7479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f55434849520000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Ouchi Realty
Arg [1] : _symbol (string): OUCHIR
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 4f75636869205265616c74790000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4f55434849520000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
34391:6928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23014:136;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23014:136:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;40489:174;;;;;;;;;;;;;;;;-1:-1:-1;40489:174:0;-1:-1:-1;;;;;;40489:174:0;;:::i;:::-;;;;;;;;;;;;;;;;;;34658:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35058:59;;;;;;;;;;;;;;;;-1:-1:-1;35058:59:0;;;;;;-1:-1:-1;;;;;35058:59:0;;:::i;35712:248::-;;;;;;;;;;;;;;;;-1:-1:-1;35712:248:0;;:::i;40076:97::-;;;:::i;34586:47::-;;;;;;;;;;;;;;;;-1:-1:-1;34586:47:0;;:::i;18064:531::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18064:531:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18064:531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18064:531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18064:531:0;;;;;;;;-1:-1:-1;18064:531:0;;-1:-1:-1;;;;;18064:531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18064:531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18064:531:0;;;;;;;;-1:-1:-1;18064:531:0;;-1:-1:-1;;;;;18064:531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18064:531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18064:531:0;;-1:-1:-1;18064:531:0;;-1:-1:-1;;;;;18064:531:0:i;:::-;;37017:496;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37017:496:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37017:496:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37017:496:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37017:496:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37017:496:0;;;;;;;;;;-1:-1:-1;37017:496:0;;-1:-1:-1;37017:496:0;-1:-1:-1;37017:496:0;:::i;23438:509::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23438:509:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23438:509:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23438:509:0;;;;;;;;-1:-1:-1;23438:509:0;;-1:-1:-1;;;;;23438:509:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23438:509:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23438:509:0;;-1:-1:-1;23438:509:0;;-1:-1:-1;;;;;23438:509:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40179:193;;;;;;;;;;;;;;;;-1:-1:-1;40179:193:0;;:::i;2901:140::-;;;:::i;37816:231::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37816:231:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37816:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37816:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37816:231:0;;-1:-1:-1;37816:231:0;;-1:-1:-1;;;;;37816:231:0:i;36372:143::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36372:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36372:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36372:143:0;;-1:-1:-1;36372:143:0;;-1:-1:-1;;;;;36372:143:0:i;2090:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2090:79:0;;;;;;;;;;;;;;2456:94;;;:::i;34703:20::-;;;:::i;21991:236::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21991:236:0;;;;;;;;;;:::i;34991:62::-;;;;;;;;;;;;;;;;-1:-1:-1;34991:62:0;;;;;;;:::i;34818:45::-;;;;;;;;;;;;;;;;-1:-1:-1;34818:45:0;;:::i;38350:473::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38350:473:0;;;;;;;;;;;;;;;-1:-1:-1;;;38350:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38350:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38350:473:0;;;;;;;;-1:-1:-1;38350:473:0;;-1:-1:-1;;;;;38350:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38350:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38350:473:0;;;;;;;;-1:-1:-1;38350:473:0;;-1:-1:-1;;;;;38350:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38350:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38350:473:0;;-1:-1:-1;38350:473:0;;-1:-1:-1;;;;;38350:473:0:i;36130:110::-;;;;;;;;;;;;;;;;-1:-1:-1;36130:110:0;;:::i;40378:105::-;;;;;;;;;;;;;;;;-1:-1:-1;40378:105:0;;:::i;34537:44::-;;;;;;;;;;;;;;;;-1:-1:-1;34537:44:0;;:::i;39004:279::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39004:279:0;;;;;;;;;;;;;;;-1:-1:-1;;;39004:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39004:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39004:279:0;;-1:-1:-1;39004:279:0;;-1:-1:-1;;;;;39004:279:0:i;22497:164::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22497:164:0;;;;;;;;;;:::i;17106:565::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17106:565:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17106:565:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17106:565:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17106:565:0;;-1:-1:-1;17106:565:0;;-1:-1:-1;;;;;17106:565:0:i;3196:109::-;;;;;;;;;;;;;;;;-1:-1:-1;3196:109:0;-1:-1:-1;;;;;3196:109:0;;:::i;23014:136::-;-1:-1:-1;;;;;23123:16:0;;;;23097:7;23123:16;;;;;;;;;;;:21;;;;;;;;;23014:136::o;40489:174::-;40600:4;40620:37;40644:12;40620:23;:37::i;:::-;40613:44;;40489:174;;;;:::o;34658:18::-;;;;;;;;;;;;;;;-1:-1:-1;;34658:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35058:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35712:248::-;35778:13;35808:12;35816:3;35808:7;:12::i;:::-;35800:62;;;;-1:-1:-1;;;35800:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35902:15;35876:78;;;;;;;-1:-1:-1;;35876:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35902:15;;35876:78;;35902:15;35876:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35926:21;35943:3;35926:16;:21::i;:::-;35876:17;:78::i;40076:97::-;40150:10;:17;40076:97;:::o;34586:47::-;;;;;;;;;;;;;:::o;18064:531::-;18254:10;-1:-1:-1;;;;;18254:19:0;;;;18253:60;;;18278:35;18295:5;18302:10;18278:16;:35::i;:::-;18245:120;;;;-1:-1:-1;;;18245:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18380:17:0;;18372:78;;;;-1:-1:-1;;;18372:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18459:50;18482:5;18489:3;18494:4;18500:8;18459:22;:50::i;:::-;18516:73;18544:5;18551:3;18556:4;18562:8;18572:9;18583:5;18516:27;:73::i;:::-;18064:531;;;;;:::o;37017:496::-;37200:7;2302:9;:7;:9::i;:::-;2294:54;;;;;-1:-1:-1;;;2294:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:54:0;;;;;;;;;;;;;;;37232:8;37247:41:::1;37232:8:::0;37247:31:::1;:41::i;:::-;37295:13;::::0;;;:8:::1;:13;::::0;;;;:26;;-1:-1:-1;;;;;;37295:26:0::1;37311:10;37295:26;::::0;;37334:22;;37330:64:::1;;37382:3;37372:14;37376:4;;37372:14;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;37372:14:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;37372:14:0;;-1:-1:-1;;;;37372:14:0::1;37330:64;37402:48;37408:13;37423:3;37428:14;37444:5;;37402:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;37402:5:0::1;::::0;-1:-1:-1;;;37402:48:0:i:1;:::-;37457:16;::::0;;;:11:::1;:16;::::0;;;;:33;;;37469:3;-1:-1:-1;37017:496:0;;;;;;;;;:::o;23438:509::-;23546:16;23600:4;:11;23582:7;:14;:29;23574:86;;;;-1:-1:-1;;;23574:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23687:30;23734:7;:14;23720:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23720:29:0;;23687:62;;23808:9;23803:110;23827:7;:14;23823:1;:18;23803:110;;;23876:8;:20;23885:7;23893:1;23885:10;;;;;;;;;;;;;;-1:-1:-1;;;;;23876:20:0;-1:-1:-1;;;;;23876:20:0;;;;;;;;;;;;:29;23897:4;23902:1;23897:7;;;;;;;;;;;;;;23876:29;;;;;;;;;;;;23857:13;23871:1;23857:16;;;;;;;;;;;;;;;;;:48;23843:3;;23803:110;;;-1:-1:-1;23928:13:0;23438:509;-1:-1:-1;;;23438:509:0:o;40179:193::-;40269:10;:17;40237:7;;40261:25;;40253:82;;;;-1:-1:-1;;;40253:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40349:10;40360:5;40349:17;;;;;;;;;;;;;;;;40342:24;;40179:193;;;:::o;2901:140::-;2302:9;:7;:9::i;:::-;2294:54;;;;;-1:-1:-1;;;2294:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:54:0;;;;;;;;;;;;;;;2984:6:::1;::::0;2963:40:::1;::::0;3000:1:::1;::::0;-1:-1:-1;;;;;2984:6:0::1;::::0;2963:40:::1;::::0;3000:1;;2963:40:::1;3014:6;:19:::0;;-1:-1:-1;;;;;;3014:19:0::1;::::0;;2901:140::o;37816:231::-;35251:13;;;;:8;:13;;;;;;37939:3;;-1:-1:-1;;;;;35251:13:0;35268:10;35251:27;35243:89;;;;-1:-1:-1;;;35243:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37951:33:::1;37957:3;37962;37967:9;37978:5;37951;:33::i;:::-;38010:16;::::0;;;:11:::1;:16;::::0;;;;;:31:::1;::::0;38031:9;38010:20:::1;:31::i;:::-;37991:16;::::0;;;:11:::1;:16;::::0;;;;;:50;;;;-1:-1:-1;;;;37816:231:0:o;36372:143::-;2302:9;:7;:9::i;:::-;2294:54;;;;;-1:-1:-1;;;2294:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:54:0;;;;;;;;;;;;;;;36469:40:::1;36489:19;36469;:40::i;:::-;36372:143:::0;:::o;2090:79::-;2155:6;;-1:-1:-1;;;;;2155:6:0;2090:79;:::o;2456:94::-;2536:6;;2496:4;;-1:-1:-1;;;;;2536:6:0;2520:12;:10;:12::i;:::-;-1:-1:-1;;;;;2520:22:0;;2513:29;;2456:94;:::o;34703:20::-;;;;;;;;;;;;;;;-1:-1:-1;;34703:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21991:236;22127:10;22117:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;22117:32:0;;;;;;;;;;;;:44;;-1:-1:-1;;22117:44:0;;;;;;;;;;22173:48;;;;;;;22117:32;;22127:10;22173:48;;;;;;;;;;;21991:236;;:::o;34991:62::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34991:62:0;;:::o;34818:45::-;;;;;;;;;;;;;:::o;38350:473::-;38499:9;38494:276;38518:4;:11;38514:1;:15;38494:276;;;38545:11;38559:4;38564:1;38559:7;;;;;;;;;;;;;;;;;;;38583:13;;;;:8;:13;;;;;;;;38559:7;;-1:-1:-1;;;;;;38583:13:0;38600:10;38583:27;38575:87;;;;-1:-1:-1;;;38575:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38671:16;38690:11;38702:1;38690:14;;;;;;;;;;;;;;38671:33;;38732:30;38753:8;38732:11;:16;38744:3;38732:16;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;38713:16;;;;:11;:16;;;;;;:49;;;;-1:-1:-1;38531:3:0;;38494:276;;;;38776:41;38787:3;38792:4;38798:11;38811:5;38776:10;:41::i;:::-;38350:473;;;;:::o;36130:110::-;36195:7;36218:16;;;:11;:16;;;;;;;36130:110::o;40378:105::-;40440:13;40469:8;40473:3;40469;:8::i;34537:44::-;;;;;;;;;;;;-1:-1:-1;;;;;34537:44:0;;:::o;39004:279::-;-1:-1:-1;;;;;39097:17:0;;39089:74;;;;-1:-1:-1;;;39089:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39175:9;39170:108;39194:4;:11;39190:1;:15;39170:108;;;39221:10;39234:4;39239:1;39234:7;;;;;;;;;;;;;;39221:20;;39250;39262:3;39267:2;39250:11;:20::i;:::-;-1:-1:-1;39207:3:0;;39170:108;;;;39004:279;;:::o;22497:164::-;-1:-1:-1;;;;;22627:17:0;;;22593:15;22627:17;;;:9;:17;;;;;;;;:28;;;;;;;;;;;;;;;22497:164::o;17106:565::-;17250:10;-1:-1:-1;;;;;17250:19:0;;;;17249:60;;;17274:35;17291:5;17298:10;17274:16;:35::i;:::-;17241:115;;;;-1:-1:-1;;;17241:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17371:17:0;;17363:72;;;;-1:-1:-1;;;17363:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17549:43;17567:5;17574:3;17579;17584:7;17549:17;:43::i;:::-;17599:66;17622:5;17629:3;17634;17639:7;17648:9;17659:5;17599:22;:66::i;3196:109::-;2302:9;:7;:9::i;:::-;2294:54;;;;;-1:-1:-1;;;2294:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:54:0;;;;;;;;;;;;;;;3269:28:::1;3288:8;3269:18;:28::i;27335:239::-:0;27421:4;-1:-1:-1;;;;;;27438:50:0;;-1:-1:-1;;;27438:50:0;27434:84;;;-1:-1:-1;27506:4:0;27499:11;;27434:84;27531:37;27555:12;27531:23;:37::i;39794:116::-;39857:4;39877:13;;;:8;:13;;;;;;-1:-1:-1;;;;;39877:13:0;:27;;;39794:116::o;33579:482::-;33629:27;33673:7;33669:50;;-1:-1:-1;33697:10:0;;;;;;;;;;;;-1:-1:-1;;;33697:10:0;;;;;;33669:50;33738:2;33729:6;33770:69;33777:6;;33770:69;;33800:5;;33825:2;33820:7;;;;33770:69;;;33849:17;33879:3;33869:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33869:14:0;-1:-1:-1;33849:34:0;-1:-1:-1;;;33903:7:0;;33921:103;33928:7;;33921:103;;33985:2;33980;:7;33975:2;:12;33964:25;;33952:4;33957:3;;;;;;;33952:9;;;;;;;;;;;:37;-1:-1:-1;;;;;33952:37:0;;;;;;;;-1:-1:-1;34010:2:0;34004:8;;;;33921:103;;;-1:-1:-1;34048:4:0;33579:482;-1:-1:-1;;;;33579:482:0:o;33423:148::-;33501:13;33534:29;33544:2;33548;33534:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;33527:36;33423:148;-1:-1:-1;;;33423:148:0:o;20266:687::-;20423:8;:15;20408:4;:11;:30;20400:96;;;;-1:-1:-1;;;20400:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20563:11;;20543:17;20615:247;20639:9;20635:1;:13;20615:247;;;20740:41;20769:8;20778:1;20769:11;;;;;;;;;;;;;;20740:8;:15;20749:5;-1:-1:-1;;;;;20740:15:0;-1:-1:-1;;;;;20740:15:0;;;;;;;;;;;;:24;20756:4;20761:1;20756:7;;;;;;;;;;;;;;20740:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;20713:8;:15;20722:5;-1:-1:-1;;;;;20713:15:0;-1:-1:-1;;;;;20713:15:0;;;;;;;;;;;;:24;20729:4;20734:1;20729:7;;;;;;;;;;;;;;20713:24;;;;;;;;;;;:68;;;;20815:39;20842:8;20851:1;20842:11;;;;;;;;;;;;;;20815:8;:13;20824:3;-1:-1:-1;;;;;20815:13:0;-1:-1:-1;;;;;20815:13:0;;;;;;;;;;;;:22;20829:4;20834:1;20829:7;;;;;;;;;;;;;;20815:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;20790:8;:13;20799:3;-1:-1:-1;;;;;20790:13:0;-1:-1:-1;;;;;20790:13:0;;;;;;;;;;;;:22;20804:4;20809:1;20804:7;;;;;;;;;;;;;;;;;;;20790:22;;;;;;;;;;-1:-1:-1;20790:22:0;:64;20650:3;;20615:247;;;;20927:3;-1:-1:-1;;;;;20894:53:0;20920:5;-1:-1:-1;;;;;20894:53:0;20908:10;-1:-1:-1;;;;;20894:53:0;;20932:4;20938:8;20894:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20266:687;;;;;:::o;21071:511::-;21296:16;:3;-1:-1:-1;;;;;21296:14:0;;:16::i;:::-;21292:285;;;21323:13;21361:3;-1:-1:-1;;;;;21339:49:0;;21394:9;21405:10;21417:5;21424:4;21430:8;21440:5;21339:107;;;;;;;;;;;;;-1:-1:-1;;;;;21339:107:0;;;;;;-1:-1:-1;;;;;21339:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21339:107:0;;-1:-1:-1;;;;;;;21463:38:0;;-1:-1:-1;;;21463:38:0;21455:114;;;;-1:-1:-1;;;21455:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21292:285;;21071:511;;;;;;:::o;39916:154::-;40016:10;:17;;39989:24;;;;:15;:24;;;;;:44;;;40040:24;;;;;;;;;;;;39916:154::o;41004:312::-;41119:37;41131:3;41136;41141:7;41150:5;41119:11;:37::i;:::-;41169:12;;;;:7;:12;;;;;;;;-1:-1:-1;;;;;41169:17:0;;;;;;;;;;;;41165:142;;-1:-1:-1;;41198:12:0;;;;:7;:12;;;;;;;;41211:10;:15;;;;;;;;41198:29;;;;;;;;:35;;-1:-1:-1;;;;;;41198:35:0;-1:-1:-1;;;;;41198:35:0;;;;;;;;;41244:12;;;:7;:12;;;;;:17;;;;;;;;;:24;;-1:-1:-1;;41244:24:0;-1:-1:-1;41244:24:0;;;;;;41279:15;;;;;;;;:18;;;;;41004:312::o;5179:163::-;5237:7;5265:5;;;5285:6;;;;5277:41;;;;;-1:-1:-1;;;5277:41:0;;;;;;;;;;;;-1:-1:-1;;;5277:41:0;;;;;;;;;;;;;;26990:123;27070:37;;;;:15;;:37;;;;;:::i;:::-;;26990:123;:::o;797:98::-;877:10;797:98;:::o;29818:735::-;29968:8;:15;29953:4;:11;:30;29945:91;;;;-1:-1:-1;;;29945:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30096:11;;30080:13;30147:150;30171:5;30167:1;:9;30147:150;;;30250:39;30277:8;30286:1;30277:11;;;;;;;;;;;;;;30250:8;:13;30259:3;-1:-1:-1;;;;;30250:13:0;-1:-1:-1;;;;;30250:13:0;;;;;;;;;;;;:22;30264:4;30269:1;30264:7;;;;;;;30250:39;30225:8;:13;30234:3;-1:-1:-1;;;;;30225:13:0;-1:-1:-1;;;;;30225:13:0;;;;;;;;;;;;:22;30239:4;30244:1;30239:7;;;;;;;;;;;;;;;;;;;30225:22;;;;;;;;;;-1:-1:-1;30225:22:0;:64;30178:3;;30147:150;;;;30380:3;-1:-1:-1;;;;;30340:60:0;30374:3;-1:-1:-1;;;;;30340:60:0;30354:10;-1:-1:-1;;;;;30340:60:0;;30385:4;30391:8;30340:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30467:80;30503:3;30509;30514:4;30520:8;30530:9;30541:5;30467:27;:80::i;39456:110::-;35251:13;;;;:8;:13;;;;;;39524:3;;-1:-1:-1;;;;;35251:13:0;35268:10;35251:27;35243:89;;;;-1:-1:-1;;;35243:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39541:13:0::1;::::0;;;:8:::1;:13;::::0;;;;:19;;-1:-1:-1;;;;;;39541:19:0::1;-1:-1:-1::0;;;;;39541:19:0;;;::::1;::::0;;;::::1;::::0;;39456:110::o;40669:329::-;40791:49;40815:5;40822:3;40827;40832:7;40791:23;:49::i;:::-;40853:12;;;;:7;:12;;;;;;;;-1:-1:-1;;;;;40853:17:0;;;;;;;;;;;;40849:142;;-1:-1:-1;40882:12:0;;;;:7;:12;;;;;;;;40895:10;:15;;;;;;;;40882:29;;;;;;;;:35;;-1:-1:-1;;;;;;40882:35:0;-1:-1:-1;;;;;40882:35:0;;;;;;;;;40928:12;;;:7;:12;;;;;:17;;;;;;;;;:24;;-1:-1:-1;;40928:24:0;-1:-1:-1;40928:24:0;;;;;;40963:15;;;;;;;;:18;;;;;-1:-1:-1;40669:329:0:o;19496:464::-;19692:16;:3;-1:-1:-1;;;;;19692:14:0;;:16::i;:::-;19688:267;;;19719:13;19757:3;-1:-1:-1;;;;;19735:44:0;;19785:9;19796:10;19808:5;19815:3;19820:7;19829:5;19735:100;;;;;;;;;;;;;-1:-1:-1;;;;;19735:100:0;;;;;;-1:-1:-1;;;;;19735:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19735:100:0;;-1:-1:-1;;;;;;;19852:32:0;;-1:-1:-1;;;19852:32:0;19844:103;;;;-1:-1:-1;;;19844:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3411:229;-1:-1:-1;;;;;3485:22:0;;3477:73;;;;-1:-1:-1;;;3477:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3587:6;;3566:38;;-1:-1:-1;;;;;3566:38:0;;;;3587:6;;3566:38;;3587:6;;3566:38;3615:6;:17;;-1:-1:-1;;;;;;3615:17:0;-1:-1:-1;;;;;3615:17:0;;;;;;;;;;3411:229::o;24296:231::-;24382:4;-1:-1:-1;;;;;;24399:42:0;;-1:-1:-1;;;24399:42:0;24395:76;;;-1:-1:-1;24459:4:0;24452:11;;24395:76;24484:37;24508:12;24484:23;:37::i;32177:872::-;32603:10;;32590;;32577;;32564;;32551;;32309:13;;32358:2;;32395;;32432;;32469;;32506;;32309:13;;32551:23;;;;:36;;;:49;;;:62;32540:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32540:74:0;-1:-1:-1;32518:96:0;-1:-1:-1;32518:96:0;32666:6;;32685:58;32706:3;:10;32702:1;:14;32685:58;;;32737:3;32741:1;32737:6;;;;;;;;;;;;;;;;32723;32730:3;;;;;;32723:11;;;;;;;;;;;:20;-1:-1:-1;;;;;32723:20:0;;;;;;;;-1:-1:-1;32718:3:0;;32685:58;;;;32757:6;32752:58;32773:3;:10;32769:1;:14;32752:58;;;32804:3;32808:1;32804:6;;;;;;;;;;;;;;;;32790;32797:3;;;;;;32790:11;;;;;;;;;;;:20;-1:-1:-1;;;;;32790:20:0;;;;;;;;-1:-1:-1;32785:3:0;;32752:58;;;;32824:6;32819:58;32840:3;:10;32836:1;:14;32819:58;;;32871:3;32875:1;32871:6;;;;;;;;;;;;;;;;32857;32864:3;;;;;;32857:11;;;;;;;;;;;:20;-1:-1:-1;;;;;32857:20:0;;;;;;;;-1:-1:-1;32852:3:0;;32819:58;;;;32891:6;32886:58;32907:3;:10;32903:1;:14;32886:58;;;32938:3;32942:1;32938:6;;;;;;;;;;;;;;;;32924;32931:3;;;;;;32924:11;;;;;;;;;;;:20;-1:-1:-1;;;;;32924:20:0;;;;;;;;-1:-1:-1;32919:3:0;;32886:58;;;;32958:6;32953:58;32974:3;:10;32970:1;:14;32953:58;;;33005:3;33009:1;33005:6;;;;;;;;;;;;;;;;32991;32998:3;;;;;;32991:11;;;;;;;;;;;:20;-1:-1:-1;;;;;32991:20:0;;;;;;;;-1:-1:-1;32986:3:0;;32953:58;;;-1:-1:-1;33034:6:0;;32177:872;-1:-1:-1;;;;;;;;;;;;;32177:872:0:o;4936:163::-;4994:7;5023:1;5018;:6;;5010:42;;;;;-1:-1:-1;;;5010:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5071:5:0;;;4936:163::o;14959:405::-;15020:4;15277:21;;15314:15;;;;;:43;;-1:-1:-1;14616:66:0;15333:24;;;15306:52;-1:-1:-1;;14959:405:0:o;29111:420::-;-1:-1:-1;;;;;29262:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:31;;29285:7;29262:22;:31::i;:::-;-1:-1:-1;;;;;29241:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;:52;;;;29326:59;;;;;;;;;;;;;29241:13;;:8;;29341:10;;29326:59;;;;;;;;29452:73;29483:3;29489;29494;29499:7;29508:9;29519:5;29452:22;:73::i;18999:384::-;-1:-1:-1;;;;;19163:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;;:33;;19188:7;19163:24;:33::i;:::-;-1:-1:-1;;;;;19140:15:0;;;:8;:15;;;;;;;;;;;:20;;;;;;;;:56;;;;19243:13;;;;;;;;;;;:18;;;;;;;;:31;;19266:7;19243:22;:31::i;:::-;-1:-1:-1;;;;;19222:13:0;;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:52;;;;19325;;;;;;;;;;;;;19222:13;;19325:52;;;;19340:10;;19325:52;;;;;;;;;;;18999:384;;;;:::o;15698:150::-;-1:-1:-1;;;;;;15795:47:0;;-1:-1:-1;;;15795:47:0;15698:150;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;
Swarm Source
ipfs://1fd8467084f6b7e6b35ec70ab10cb436a53ee32ffe7d17b9cd01d13d77b39454
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.