Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 SYO
Holders
122
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SYO
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-13 */ pragma solidity ^0.5.0; // Symbio Decentralized Autonomous Fund Token 2020 // Based on Giveth's MiniMe Token framework contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } // Modified 2019, Will Harborne /* Copyright 2016, Jordi Baylina This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /// @title MiniMeToken Contract /// @author Jordi Baylina /// @dev This token contract's goal is to make it easy for anyone to clone this /// token using the token distribution at a given block, this will allow DAO's /// and DApps to upgrade their features in a decentralized manner without /// affecting the original token /// @dev It is ERC20 compliant, but still needs to under go further testing. contract Controlled { event ControlTransferred(address indexed previousControler, address indexed newController); /// @notice The address of the controller is the only address that can call /// a function with this modifier modifier onlyController { require(msg.sender == controller); _; } address public controller; constructor() public { controller = msg.sender;} /// @notice Changes the controller of the contract /// @param _newController The new controller of the contract function changeController(address _newController) public onlyController { emit ControlTransferred(controller, _newController); controller = _newController; } } contract TokenController { /// @notice Called when `_owner` sends ether to the MiniMe Token contract /// @param _owner The address that sent the ether to create tokens /// @return True if the ether is accepted, false if it throws function proxyPayment(address _owner) public payable returns(bool); /// @notice Notifies the controller about a token transfer allowing the /// controller to react if desired /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) public returns(bool); /// @notice Notifies the controller about an approval allowing the /// controller to react if desired /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) public returns(bool); } contract ApproveAndCallFallBack { function receiveApproval(address from, uint256 _amount, address _token, bytes memory _data) public; } /// @dev The actual token contract, the default controller is the msg.sender /// that deploys the contract, so usually this token will be deployed by a /// token controller contract, which Giveth will call a "Campaign" /// @dev The actual token contract, the default controller is the msg.sender /// that deploys the contract, so usually this token will be deployed by a /// token controller contract, which Giveth will call a "Campaign" contract MiniMeToken is Controlled { string public name; //The Token's name: e.g. DigixDAO Tokens uint8 public decimals; //Number of decimals of the smallest unit string public symbol; //An identifier: e.g. REP string public version = '1.0.0'; //An arbitrary versioning scheme /// @dev `Checkpoint` is the structure that attaches a block number to a /// given value, the block number attached is the one that last changed the /// value struct Checkpoint { // `fromBlock` is the block number that the value was generated from uint256 fromBlock; // `value` is the amount of tokens at a specific block number uint256 value; } // `parentToken` is the Token address that was cloned to produce this token; // it will be 0x0 for a token that was not cloned MiniMeToken public parentToken; // `parentSnapShotBlock` is the block number from the Parent Token that was // used to determine the initial distribution of the Clone Token uint public parentSnapShotBlock; // `creationBlock` is the block number that the Clone Token was created uint public creationBlock; // `balances` is the map that tracks the balance of each address, in this // contract when the balance changes the block number that the change // occurred is also included in the map mapping (address => Checkpoint[]) balances; // `allowed` tracks any extra transfer rights as in all ERC20 tokens mapping (address => mapping (address => uint256)) allowed; // Tracks the history of the `totalSupply` of the token Checkpoint[] totalSupplyHistory; // Flag that determines if the token is transferable or not. bool public transfersEnabled; // The factory used to create new clone tokens MiniMeTokenFactory public tokenFactory; //////////////// // Constructor //////////////// /// @notice Constructor to create a MiniMeToken /// @param _tokenFactory The address of the MiniMeTokenFactory contract that /// will create the Clone token contracts, the token factory needs to be /// deployed first /// @param _parentToken Address of the parent token, set to 0x0 if it is a /// new token /// @param _parentSnapShotBlock Block of the parent token that will /// determine the initial distribution of the clone token, set to 0 if it /// is a new token /// @param _tokenName Name of the new token /// @param _decimalUnits Number of decimals of the new token /// @param _tokenSymbol Token Symbol for the new token /// @param _transfersEnabled If true, tokens will be able to be transferred constructor( address _tokenFactory, address payable _parentToken, uint _parentSnapShotBlock, string memory _tokenName, uint8 _decimalUnits, string memory _tokenSymbol, bool _transfersEnabled ) public { tokenFactory = MiniMeTokenFactory(_tokenFactory); name = _tokenName; // Set the name decimals = _decimalUnits; // Set the decimals symbol = _tokenSymbol; // Set the symbol parentToken = MiniMeToken(_parentToken); parentSnapShotBlock = _parentSnapShotBlock; transfersEnabled = _transfersEnabled; creationBlock = block.number; } /////////////////// // ERC20 Methods /////////////////// uint constant MAX_UINT = 2**256 - 1; /// @notice Send `_amount` tokens to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return Whether the transfer was successful or not function transfer(address _to, uint256 _amount) public returns (bool success) { require(transfersEnabled); doTransfer(msg.sender, _to, _amount); return true; } /// @notice Send `_amount` tokens to `_to` from `_from` on the condition it /// is approved by `_from` /// @param _from The address holding the tokens being transferred /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return True if the transfer was successful function transferFrom(address _from, address _to, uint256 _amount ) public returns (bool success) { // The controller of this contract can move tokens around at will, // this is important to recognize! Confirm that you trust the // controller of this contract, which in most situations should be // another open source smart contract or 0x0 if (msg.sender != controller) { require(transfersEnabled); // The standard ERC 20 transferFrom functionality if (allowed[_from][msg.sender] < MAX_UINT) { require(allowed[_from][msg.sender] >= _amount); allowed[_from][msg.sender] -= _amount; } } doTransfer(_from, _to, _amount); return true; } /// @dev This is the actual transfer function in the token contract, it can /// only be called by other functions in this contract. /// @param _from The address holding the tokens being transferred /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return True if the transfer was successful function doTransfer(address _from, address _to, uint _amount ) internal { if (_amount == 0) { emit Transfer(_from, _to, _amount); // Follow the spec to louch the event when transfer 0 return; } require(parentSnapShotBlock < block.number); // Do not allow transfer to 0x0 or the token contract itself require((_to != address(0)) && (_to != address(this))); // If the amount being transfered is more than the balance of the // account the transfer throws uint256 previousBalanceFrom = balanceOfAt(_from, block.number); require(previousBalanceFrom >= _amount); // Alerts the token controller of the transfer if (isContract(controller)) { require(TokenController(controller).onTransfer(_from, _to, _amount)); } // First update the balance array with the new value for the address // sending the tokens updateValueAtNow(balances[_from], previousBalanceFrom - _amount); // Then update the balance array with the new value for the address // receiving the tokens uint256 previousBalanceTo = balanceOfAt(_to, block.number); require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(balances[_to], previousBalanceTo + _amount); // An event to make the transfer easy to find on the blockchain emit Transfer(_from, _to, _amount); } /// @param _owner The address that's balance is being requested /// @return The balance of `_owner` at the current block function balanceOf(address _owner) public view returns (uint256 balance) { return balanceOfAt(_owner, block.number); } /// @notice `msg.sender` approves `_spender` to spend `_amount` tokens on /// its behalf. This is a modified version of the ERC20 approve function /// to be a little bit safer /// @param _spender The address of the account able to transfer the tokens /// @param _amount The amount of tokens to be approved for transfer /// @return True if the approval was successful function approve(address _spender, uint256 _amount) public returns (bool success) { require(transfersEnabled); // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender,0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_amount == 0) || (allowed[msg.sender][_spender] == 0)); // Alerts the token controller of the approve function call if (isContract(controller)) { require(TokenController(controller).onApprove(msg.sender, _spender, _amount)); } allowed[msg.sender][_spender] = _amount; emit Approval(msg.sender, _spender, _amount); return true; } /// @dev This function makes it easy to read the `allowed[]` map /// @param _owner The address of the account that owns the token /// @param _spender The address of the account able to transfer the tokens /// @return Amount of remaining tokens of _owner that _spender is allowed /// to spend function allowance(address _owner, address _spender ) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } /// @notice `msg.sender` approves `_spender` to send `_amount` tokens on /// its behalf, and then a function is triggered in the contract that is /// being approved, `_spender`. This allows users to use their tokens to /// interact with contracts in one function call instead of two /// @param _spender The address of the contract able to transfer the tokens /// @param _amount The amount of tokens to be approved for transfer /// @return True if the function call was successful function approveAndCall(address _spender, uint256 _amount, bytes memory _extraData ) public returns (bool success) { require(approve(_spender, _amount)); ApproveAndCallFallBack(_spender).receiveApproval( msg.sender, _amount, address(this), _extraData ); return true; } /// @dev This function makes it easy to get the total number of tokens /// @return The total number of tokens function totalSupply() public view returns (uint) { return totalSupplyAt(block.number); } //////////////// // Query balance and totalSupply in History //////////////// /// @dev Queries the balance of `_owner` at a specific `_blockNumber` /// @param _owner The address from which the balance will be retrieved /// @param _blockNumber The block number when the balance is queried /// @return The balance at `_blockNumber` function balanceOfAt(address _owner, uint _blockNumber) public view returns (uint) { // These next few lines are used when the balance of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.balanceOfAt` be queried at the // genesis block for that token as this contains initial balance of // this token if ((balances[_owner].length == 0) || (balances[_owner][0].fromBlock > _blockNumber)) { if (address(parentToken) != address(0)) { return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock)); } else { // Has no parent return 0; } // This will return the expected balance during normal situations } else { return getValueAt(balances[_owner], _blockNumber); } } /// @notice Total amount of tokens at a specific `_blockNumber`. /// @param _blockNumber The block number when the totalSupply is queried /// @return The total amount of tokens at `_blockNumber` function totalSupplyAt(uint _blockNumber) public view returns(uint) { // These next few lines are used when the totalSupply of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.totalSupplyAt` be queried at the // genesis block for this token as that contains totalSupply of this // token at this block number. if ((totalSupplyHistory.length == 0) || (totalSupplyHistory[0].fromBlock > _blockNumber)) { if (address(parentToken) != address(0)) { return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock)); } else { return 0; } // This will return the expected totalSupply during normal situations } else { return getValueAt(totalSupplyHistory, _blockNumber); } } //////////////// // Clone Token Method //////////////// /// @notice Creates a new clone token with the initial distribution being /// this token at `_snapshotBlock` /// @param _cloneTokenName Name of the clone token /// @param _cloneDecimalUnits Number of decimals of the smallest unit /// @param _cloneTokenSymbol Symbol of the clone token /// @param _snapshotBlock Block when the distribution of the parent token is /// copied to set the initial distribution of the new clone token; /// if the block is zero than the actual block, the current block is used /// @param _transfersEnabled True if transfers are allowed in the clone /// @return The address of the new MiniMeToken Contract function createCloneToken( string memory _cloneTokenName, uint8 _cloneDecimalUnits, string memory _cloneTokenSymbol, uint _snapshotBlock, bool _transfersEnabled ) public returns(address) { if (_snapshotBlock == 0) _snapshotBlock = block.number; MiniMeToken cloneToken = tokenFactory.createCloneToken( address(this), _snapshotBlock, _cloneTokenName, _cloneDecimalUnits, _cloneTokenSymbol, _transfersEnabled ); cloneToken.changeController(msg.sender); // An event to make the token easy to find on the blockchain emit NewCloneToken(address(cloneToken), _snapshotBlock); return address(cloneToken); } //////////////// // Generate and destroy tokens //////////////// /// @notice Generates `_amount` tokens that are assigned to `_owner` /// @param _owner The address that will be assigned the new tokens /// @param _amount The quantity of tokens generated /// @return True if the tokens are generated correctly function generateTokens(address _owner, uint _amount ) public onlyController returns (bool) { uint curTotalSupply = totalSupply(); require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow uint previousBalanceTo = balanceOf(_owner); require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount); updateValueAtNow(balances[_owner], previousBalanceTo + _amount); emit Transfer(address(0), _owner, _amount); return true; } /// @notice Burns `_amount` tokens from `_owner` /// @param _owner The address that will lose the tokens /// @param _amount The quantity of tokens to burn /// @return True if the tokens are burned correctly function destroyTokens(address _owner, uint _amount ) onlyController public returns (bool) { uint curTotalSupply = totalSupply(); require(curTotalSupply >= _amount); uint previousBalanceFrom = balanceOf(_owner); require(previousBalanceFrom >= _amount); updateValueAtNow(totalSupplyHistory, curTotalSupply - _amount); updateValueAtNow(balances[_owner], previousBalanceFrom - _amount); emit Transfer(_owner, address(0), _amount); return true; } //////////////// // Enable tokens transfers //////////////// /// @notice Enables token holders to transfer their tokens freely if true /// @param _transfersEnabled True if transfers are allowed in the clone function enableTransfers(bool _transfersEnabled) public onlyController { transfersEnabled = _transfersEnabled; } //////////////// // Internal helper functions to query and set a value in a snapshot array //////////////// /// @dev `getValueAt` retrieves the number of tokens at a given block number /// @param checkpoints The history of values being queried /// @param _block The block number to retrieve the value at /// @return The number of tokens being queried function getValueAt(Checkpoint[] storage checkpoints, uint _block ) view internal returns (uint) { if (checkpoints.length == 0) return 0; // Shortcut for the actual value if (_block >= checkpoints[checkpoints.length-1].fromBlock) return checkpoints[checkpoints.length-1].value; if (_block < checkpoints[0].fromBlock) return 0; // Binary search of the value in the array uint min = 0; uint max = checkpoints.length-1; uint mid = 0; while (max > min) { mid = (max + min + 1)/ 2; if (checkpoints[mid].fromBlock<=_block) { min = mid; } else { max = mid-1; } } return checkpoints[min].value; } /// @dev `updateValueAtNow` used to update the `balances` map and the /// `totalSupplyHistory` /// @param checkpoints The history of data being updated /// @param _value The new number of tokens function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value ) internal { if ((checkpoints.length == 0) || (checkpoints[checkpoints.length -1].fromBlock < block.number)) { Checkpoint storage newCheckPoint = checkpoints[ checkpoints.length++ ]; newCheckPoint.fromBlock = uint256(block.number); newCheckPoint.value = uint256(_value); } else { Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length-1]; oldCheckPoint.value = uint256(_value); } } /// @dev Internal function to determine if an address is a contract /// @param _addr The address being queried /// @return True if `_addr` is a contract function isContract(address _addr) view internal returns(bool) { uint size; if (_addr == address(0)) return false; assembly { size := extcodesize(_addr) } return size>0; } /// @dev Helper function to return a min betwen the two uints function min(uint a, uint b) pure internal returns (uint) { return a < b ? a : b; } /// @notice The fallback function: If the contract's controller has not been /// set to 0, then the `proxyPayment` method is called which relays the /// ether and creates tokens as described in the token controller contract function () external payable { require(isContract(controller)); require(TokenController(controller).proxyPayment.value(msg.value)(msg.sender)); } //////////////// // Events //////////////// event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount); event Transfer(address indexed _from, address indexed _to, uint256 _amount); event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock); event Approval( address indexed _owner, address indexed _spender, uint256 _amount ); } //////////////// // MiniMeTokenFactory //////////////// /// @dev This contract is used to generate clone contracts from a contract. /// In solidity this is the way to create a contract from a contract of the /// same class contract MiniMeTokenFactory { /// @notice Update the DApp by creating a new token with new functionalities /// the msg.sender becomes the controller of this clone token /// @param _parentToken Address of the token being cloned /// @param _snapshotBlock Block of the parent token that will /// determine the initial distribution of the clone token /// @param _tokenName Name of the new token /// @param _decimalUnits Number of decimals of the new token /// @param _tokenSymbol Token Symbol for the new token /// @param _transfersEnabled If true, tokens will be able to be transferred /// @return The address of the new token contract function createCloneToken( address payable _parentToken, uint _snapshotBlock, string memory _tokenName, uint8 _decimalUnits, string memory _tokenSymbol, bool _transfersEnabled ) public returns (MiniMeToken) { MiniMeToken newToken = new MiniMeToken( address(this), _parentToken, _snapshotBlock, _tokenName, _decimalUnits, _tokenSymbol, _transfersEnabled ); newToken.changeController(msg.sender); return newToken; } } contract SYO is MiniMeToken { constructor( address _tokenFactory, address initialOwner ) public MiniMeToken( _tokenFactory, address(0), // no parent token 0, // no snapshot block number from parent "Symbio", // Token name 18, // Decimals "SYO", // Symbol true // Enable transfers ) { generateTokens(initialOwner, 100000000000000000000000000); } } contract SYOController is TokenController, Ownable { SYO public tokenContract; // The new token for this Campaign /// @param _tokenAddress Address of the token contract this contract controls constructor( address payable _tokenAddress ) public { tokenContract = SYO(_tokenAddress); // The Deployed Token Contract } ///////////////// // TokenController interface ///////////////// /// @notice Notifies the controller about a transfer. /// Transfers can only happen to whitelisted addresses /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) public returns(bool) { return true; } /// @notice Notifies the controller about an approval, for this Campaign all /// approvals are allowed by default and no extra notifications are needed /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) public returns(bool) { return true; } function proxyPayment(address _owner) public payable returns(bool allowed) { allowed = false; } /// @notice `onlyOwner` can upgrade the controller contract /// @param _newControllerAddress The address that will have the token control logic function upgradeController(address _newControllerAddress) public onlyOwner { tokenContract.changeController(_newControllerAddress); emit UpgradedController(_newControllerAddress); } function burnTokens(uint _amount) public onlyOwner returns (bool) { tokenContract.destroyTokens(owner, _amount); } ////////// // Safety Methods ////////// /// @notice This method can be used by the owner to extract mistakenly /// sent tokens to this contract. /// @param _token The address of the token contract that you want to recover function claimLostTokens(address payable _token) public onlyOwner { SYO token = SYO(_token); uint balance = token.balanceOf(address(this)); token.transfer(owner, balance); emit ClaimedTokens(_token, owner, balance); } //////////////// // Events //////////////// event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount); event UpgradedController (address newAddress); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tokenFactory","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_controller","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousControler","type":"address"},{"indexed":true,"internalType":"address","name":"newController","type":"address"}],"name":"ControlTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_cloneToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_cloneTokenName","type":"string"},{"internalType":"uint8","name":"_cloneDecimalUnits","type":"uint8"},{"internalType":"string","name":"_cloneTokenSymbol","type":"string"},{"internalType":"uint256","name":"_snapshotBlock","type":"uint256"},{"internalType":"bool","name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"internalType":"contract MiniMeToken","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"internalType":"contract MiniMeTokenFactory","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f312e302e30000000000000000000000000000000000000000000000000000000815250600490805190602001906200005192919062000a35565b503480156200005f57600080fd5b50604051620033db380380620033db833981810160405260408110156200008557600080fd5b810190808051906020019092919080519060200190929190505050816000806040518060400160405280600681526020017f53796d62696f000000000000000000000000000000000000000000000000000081525060126040518060400160405280600381526020017f53594f00000000000000000000000000000000000000000000000000000000008152506001336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360019080519060200190620001ad92919062000a35565b5082600260006101000a81548160ff021916908360ff1602179055508160039080519060200190620001e192919062000a35565b5085600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460068190555080600b60006101000a81548160ff02191690831515021790555043600781905550505050505050506200026f816a52b7d2dcc80cd2e40000006200027860201b60201c565b50505062000b4b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620002d457600080fd5b6000620002e6620003f660201b60201c565b9050808382011015620002f857600080fd5b60006200030b856200040e60201b60201c565b90508084820110156200031d57600080fd5b62000332600a8584016200042960201b60201c565b62000384600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208583016200042960201b60201c565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60006200040943620004e860201b60201c565b905090565b60006200042282436200066b60201b60201c565b9050919050565b60008280549050148062000461575043826001848054905003815481106200044d57fe5b906000526020600020906002020160000154105b15620004b3576000828380548091906001016200047f919062000abc565b815481106200048a57fe5b9060005260206000209060020201905043816000018190555081816001018190555050620004e4565b600082600184805490500381548110620004c957fe5b90600052602060002090600202019050818160010181905550505b5050565b600080600a8054905014806200051d575081600a6000815481106200050957fe5b906000526020600020906002020160000154115b156200065057600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200064657600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663981b24d0620005cc84600654620008da60201b60201c565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156200060157600080fd5b505afa15801562000616573d6000803e3d6000fd5b505050506040513d60208110156200062d57600080fd5b8101908080519060200190929190505050905062000666565b6000905062000666565b62000663600a83620008f560201b60201c565b90505b919050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905014806200071a575081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815481106200070657fe5b906000526020600020906002020160000154115b156200088157600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200087757600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ee2cd7e84620007ca85600654620008da60201b60201c565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b1580156200083257600080fd5b505afa15801562000847573d6000803e3d6000fd5b505050506040513d60208110156200085e57600080fd5b81019080805190602001909291905050509050620008d4565b60009050620008d4565b620008d1600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083620008f560201b60201c565b90505b92915050565b6000818310620008eb5781620008ed565b825b905092915050565b600080838054905014156200090e576000905062000a2f565b826001848054905003815481106200092257fe5b90600052602060002090600202016000015482106200096957826001848054905003815481106200094f57fe5b906000526020600020906002020160010154905062000a2f565b826000815481106200097757fe5b9060005260206000209060020201600001548210156200099b576000905062000a2f565b600080905060006001858054905003905060008090505b8282111562000a0a57600260018484010181620009cb57fe5b04905084868281548110620009dc57fe5b90600052602060002090600202016000015411620009fd5780925062000a04565b6001810391505b620009b2565b85838154811062000a1757fe5b90600052602060002090600202016001015493505050505b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a7857805160ff191683800117855562000aa9565b8280016001018555821562000aa9579182015b8281111562000aa857825182559160200191906001019062000a8b565b5b50905062000ab8919062000af1565b5090565b81548183558181111562000aec5760020281600202836000526020600020918201910162000aeb919062000b19565b5b505050565b62000b1691905b8082111562000b1257600081600090555060010162000af8565b5090565b90565b62000b4891905b8082111562000b445760008082016000905560018201600090555060020162000b20565b5090565b90565b6128808062000b5b6000396000f3fe60806040526004361061014b5760003560e01c8063827f32c0116100b6578063cae9ca511161006f578063cae9ca5114610a6f578063d3ce77fe14610b79578063dd62ed3e14610bec578063e77772fe14610c71578063f41e60c514610cc8578063f77c479114610d055761014b565b8063827f32c01461085057806395d89b41146108c3578063981b24d014610953578063a9059cbb146109a2578063bef97c8714610a15578063c5bcc4f114610a445761014b565b80633cebb823116101085780633cebb823146104825780634ee2cd7e146104d357806354fd4d50146105425780636638c087146105d257806370a082311461079457806380a54001146107f95761014b565b806306fdde0314610265578063095ea7b3146102f5578063176345141461036857806318160ddd1461039357806323b872dd146103be578063313ce56714610451575b6101756000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5c565b61017e57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f48c305434336040518363ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506020604051808303818588803b15801561021e57600080fd5b505af1158015610232573d6000803e3d6000fd5b50505050506040513d602081101561024957600080fd5b810190808051906020019092919050505061026357600080fd5b005b34801561027157600080fd5b5061027a610daf565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ba57808201518184015260208101905061029f565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030157600080fd5b5061034e6004803603604081101561031857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e4d565b604051808215151515815260200191505060405180910390f35b34801561037457600080fd5b5061037d61113c565b6040518082815260200191505060405180910390f35b34801561039f57600080fd5b506103a8611142565b6040518082815260200191505060405180910390f35b3480156103ca57600080fd5b50610437600480360360608110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611152565b604051808215151515815260200191505060405180910390f35b34801561045d57600080fd5b50610466611390565b604051808260ff1660ff16815260200191505060405180910390f35b34801561048e57600080fd5b506104d1600480360360208110156104a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a3565b005b3480156104df57600080fd5b5061052c600480360360408110156104f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ba565b6040518082815260200191505060405180910390f35b34801561054e57600080fd5b50610557611710565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561059757808201518184015260208101905061057c565b50505050905090810190601f1680156105c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105de57600080fd5b50610752600480360360a08110156105f557600080fd5b810190808035906020019064010000000081111561061257600080fd5b82018360208201111561062457600080fd5b8035906020019184600183028401116401000000008311171561064657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff169060200190929190803590602001906401000000008111156106b657600080fd5b8201836020820111156106c857600080fd5b803590602001918460018302840111640100000000831117156106ea57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001909291908035151590602001909291905050506117ae565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a8a565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611a9d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085c57600080fd5b506108a96004803603604081101561087357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac3565b604051808215151515815260200191505060405180910390f35b3480156108cf57600080fd5b506108d8611c1e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109185780820151818401526020810190506108fd565b50505050905090810190601f1680156109455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561095f57600080fd5b5061098c6004803603602081101561097657600080fd5b8101908080359060200190929190505050611cbc565b6040518082815260200191505060405180910390f35b3480156109ae57600080fd5b506109fb600480360360408110156109c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e26565b604051808215151515815260200191505060405180910390f35b348015610a2157600080fd5b50610a2a611e56565b604051808215151515815260200191505060405180910390f35b348015610a5057600080fd5b50610a59611e69565b6040518082815260200191505060405180910390f35b348015610a7b57600080fd5b50610b5f60048036036060811015610a9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ad957600080fd5b820183602082011115610aeb57600080fd5b80359060200191846001830284011164010000000083111715610b0d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e6f565b604051808215151515815260200191505060405180910390f35b348015610b8557600080fd5b50610bd260048036036040811015610b9c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fcf565b604051808215151515815260200191505060405180910390f35b348015610bf857600080fd5b50610c5b60048036036040811015610c0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610c7d57600080fd5b50610c866121ad565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cd457600080fd5b50610d0360048036036020811015610ceb57600080fd5b810190808035151590602001909291905050506121d3565b005b348015610d1157600080fd5b50610d1a612249565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9e576000915050610daa565b823b9050600081119150505b919050565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b6000600b60009054906101000a900460ff16610e6857600080fd5b6000821480610ef357506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b610efc57600080fd5b610f266000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5c565b1561104c576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663da682aeb3385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561100757600080fd5b505af115801561101b573d6000803e3d6000fd5b505050506040513d602081101561103157600080fd5b810190808051906020019092919050505061104b57600080fd5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60075481565b600061114d43611cbc565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461137a57600b60009054906101000a900460ff166111c157600080fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156113795781600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156112ee57600080fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b5b61138584848461226e565b600190509392505050565b600260009054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113fc57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f260405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501480611567575081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154811061155357fe5b906000526020600020906002020160000154115b156116bf57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116b657600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ee2cd7e8461160d856006546125ea565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561167457600080fd5b505afa158015611688573d6000803e3d6000fd5b505050506040513d602081101561169e57600080fd5b8101908080519060200190929190505050905061170a565b6000905061170a565b611707600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083612603565b90505b92915050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117a65780601f1061177b576101008083540402835291602001916117a6565b820191906000526020600020905b81548152906001019060200180831161178957829003601f168201915b505050505081565b6000808314156117bc574392505b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b7b72c130868a8a8a896040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b838110156118a3578082015181840152602081019050611888565b50505050905090810190601f1680156118d05780820380516001836020036101000a031916815260200191505b50838103825285818151815260200191508051906020019080838360005b838110156119095780820151818401526020810190506118ee565b50505050905090810190601f1680156119365780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561195b57600080fd5b505af115801561196f573d6000803e3d6000fd5b505050506040513d602081101561198557600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff16633cebb823336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611a1757600080fd5b505af1158015611a2b573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade856040518082815260200191505060405180910390a28091505095945050505050565b6000611a9682436114ba565b9050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b1e57600080fd5b6000611b28611142565b9050808382011015611b3957600080fd5b6000611b4485611a8a565b9050808482011015611b5557600080fd5b611b62600a858401612733565b611bac600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858301612733565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cb45780601f10611c8957610100808354040283529160200191611cb4565b820191906000526020600020905b815481529060010190602001808311611c9757829003601f168201915b505050505081565b600080600a805490501480611cef575081600a600081548110611cdb57fe5b906000526020600020906002020160000154115b15611e1357600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0a57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663981b24d0611d94846006546125ea565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611dc857600080fd5b505afa158015611ddc573d6000803e3d6000fd5b505050506040513d6020811015611df257600080fd5b81019080805190602001909291905050509050611e21565b60009050611e21565b611e1e600a83612603565b90505b919050565b6000600b60009054906101000a900460ff16611e4157600080fd5b611e4c33848461226e565b6001905092915050565b600b60009054906101000a900460ff1681565b60065481565b6000611e7b8484610e4d565b611e8457600080fd5b8373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611f5d578082015181840152602081019050611f42565b50505050905090810190601f168015611f8a5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b50505050600190509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461202a57600080fd5b6000612034611142565b90508281101561204357600080fd5b600061204e85611a8a565b90508381101561205d57600080fd5b61206a600a858403612733565b6120b4600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858303612733565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461222c57600080fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008114156122e1578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36125e5565b43600654106122ef57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561235857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b61236157600080fd5b600061236d84436114ba565b90508181101561237c57600080fd5b6123a66000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5c565b156124cc576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634a3931498585856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561248757600080fd5b505af115801561249b573d6000803e3d6000fd5b505050506040513d60208110156124b157600080fd5b81019080805190602001909291905050506124cb57600080fd5b5b612516600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838303612733565b600061252284436114ba565b905080838201101561253357600080fd5b61257d600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020848301612733565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a350505b505050565b60008183106125f957816125fb565b825b905092915050565b6000808380549050141561261a576000905061272d565b8260018480549050038154811061262d57fe5b9060005260206000209060020201600001548210612671578260018480549050038154811061265857fe5b906000526020600020906002020160010154905061272d565b8260008154811061267e57fe5b9060005260206000209060020201600001548210156126a0576000905061272d565b600080905060006001858054905003905060008090505b82821115612709576002600184840101816126ce57fe5b049050848682815481106126de57fe5b906000526020600020906002020160000154116126fd57809250612704565b6001810391505b6126b7565b85838154811061271557fe5b90600052602060002090600202016001015493505050505b92915050565b6000828054905014806127695750438260018480549050038154811061275557fe5b906000526020600020906002020160000154105b156127b65760008283805480919060010161278491906127ea565b8154811061278e57fe5b90600052602060002090600202019050438160000181905550818160010181905550506127e6565b6000826001848054905003815481106127cb57fe5b90600052602060002090600202019050818160010181905550505b5050565b81548183558181111561281757600202816002028360005260206000209182019101612816919061281c565b5b505050565b61284891905b8082111561284457600080820160009055600182016000905550600201612822565b5090565b9056fea265627a7a723158205dce54e8e9cff31a8b380fcea319c96d0b30277f071ebdcbf8426e55dfaca24664736f6c63430005110032000000000000000000000000b744b5b0cddd114d1578a2bfcfb6469fd22bfa740000000000000000000000009050a32c98d4dc26ba7c4aee5ea1e079048784e9
Deployed Bytecode
0x60806040526004361061014b5760003560e01c8063827f32c0116100b6578063cae9ca511161006f578063cae9ca5114610a6f578063d3ce77fe14610b79578063dd62ed3e14610bec578063e77772fe14610c71578063f41e60c514610cc8578063f77c479114610d055761014b565b8063827f32c01461085057806395d89b41146108c3578063981b24d014610953578063a9059cbb146109a2578063bef97c8714610a15578063c5bcc4f114610a445761014b565b80633cebb823116101085780633cebb823146104825780634ee2cd7e146104d357806354fd4d50146105425780636638c087146105d257806370a082311461079457806380a54001146107f95761014b565b806306fdde0314610265578063095ea7b3146102f5578063176345141461036857806318160ddd1461039357806323b872dd146103be578063313ce56714610451575b6101756000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5c565b61017e57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f48c305434336040518363ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506020604051808303818588803b15801561021e57600080fd5b505af1158015610232573d6000803e3d6000fd5b50505050506040513d602081101561024957600080fd5b810190808051906020019092919050505061026357600080fd5b005b34801561027157600080fd5b5061027a610daf565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ba57808201518184015260208101905061029f565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030157600080fd5b5061034e6004803603604081101561031857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e4d565b604051808215151515815260200191505060405180910390f35b34801561037457600080fd5b5061037d61113c565b6040518082815260200191505060405180910390f35b34801561039f57600080fd5b506103a8611142565b6040518082815260200191505060405180910390f35b3480156103ca57600080fd5b50610437600480360360608110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611152565b604051808215151515815260200191505060405180910390f35b34801561045d57600080fd5b50610466611390565b604051808260ff1660ff16815260200191505060405180910390f35b34801561048e57600080fd5b506104d1600480360360208110156104a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a3565b005b3480156104df57600080fd5b5061052c600480360360408110156104f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ba565b6040518082815260200191505060405180910390f35b34801561054e57600080fd5b50610557611710565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561059757808201518184015260208101905061057c565b50505050905090810190601f1680156105c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105de57600080fd5b50610752600480360360a08110156105f557600080fd5b810190808035906020019064010000000081111561061257600080fd5b82018360208201111561062457600080fd5b8035906020019184600183028401116401000000008311171561064657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff169060200190929190803590602001906401000000008111156106b657600080fd5b8201836020820111156106c857600080fd5b803590602001918460018302840111640100000000831117156106ea57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001909291908035151590602001909291905050506117ae565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a8a565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611a9d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085c57600080fd5b506108a96004803603604081101561087357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac3565b604051808215151515815260200191505060405180910390f35b3480156108cf57600080fd5b506108d8611c1e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109185780820151818401526020810190506108fd565b50505050905090810190601f1680156109455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561095f57600080fd5b5061098c6004803603602081101561097657600080fd5b8101908080359060200190929190505050611cbc565b6040518082815260200191505060405180910390f35b3480156109ae57600080fd5b506109fb600480360360408110156109c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e26565b604051808215151515815260200191505060405180910390f35b348015610a2157600080fd5b50610a2a611e56565b604051808215151515815260200191505060405180910390f35b348015610a5057600080fd5b50610a59611e69565b6040518082815260200191505060405180910390f35b348015610a7b57600080fd5b50610b5f60048036036060811015610a9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ad957600080fd5b820183602082011115610aeb57600080fd5b80359060200191846001830284011164010000000083111715610b0d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e6f565b604051808215151515815260200191505060405180910390f35b348015610b8557600080fd5b50610bd260048036036040811015610b9c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fcf565b604051808215151515815260200191505060405180910390f35b348015610bf857600080fd5b50610c5b60048036036040811015610c0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610c7d57600080fd5b50610c866121ad565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cd457600080fd5b50610d0360048036036020811015610ceb57600080fd5b810190808035151590602001909291905050506121d3565b005b348015610d1157600080fd5b50610d1a612249565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9e576000915050610daa565b823b9050600081119150505b919050565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b6000600b60009054906101000a900460ff16610e6857600080fd5b6000821480610ef357506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b610efc57600080fd5b610f266000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5c565b1561104c576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663da682aeb3385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561100757600080fd5b505af115801561101b573d6000803e3d6000fd5b505050506040513d602081101561103157600080fd5b810190808051906020019092919050505061104b57600080fd5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60075481565b600061114d43611cbc565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461137a57600b60009054906101000a900460ff166111c157600080fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156113795781600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156112ee57600080fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b5b61138584848461226e565b600190509392505050565b600260009054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113fc57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f260405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501480611567575081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154811061155357fe5b906000526020600020906002020160000154115b156116bf57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116b657600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ee2cd7e8461160d856006546125ea565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561167457600080fd5b505afa158015611688573d6000803e3d6000fd5b505050506040513d602081101561169e57600080fd5b8101908080519060200190929190505050905061170a565b6000905061170a565b611707600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083612603565b90505b92915050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117a65780601f1061177b576101008083540402835291602001916117a6565b820191906000526020600020905b81548152906001019060200180831161178957829003601f168201915b505050505081565b6000808314156117bc574392505b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b7b72c130868a8a8a896040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b838110156118a3578082015181840152602081019050611888565b50505050905090810190601f1680156118d05780820380516001836020036101000a031916815260200191505b50838103825285818151815260200191508051906020019080838360005b838110156119095780820151818401526020810190506118ee565b50505050905090810190601f1680156119365780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561195b57600080fd5b505af115801561196f573d6000803e3d6000fd5b505050506040513d602081101561198557600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff16633cebb823336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611a1757600080fd5b505af1158015611a2b573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade856040518082815260200191505060405180910390a28091505095945050505050565b6000611a9682436114ba565b9050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b1e57600080fd5b6000611b28611142565b9050808382011015611b3957600080fd5b6000611b4485611a8a565b9050808482011015611b5557600080fd5b611b62600a858401612733565b611bac600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858301612733565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cb45780601f10611c8957610100808354040283529160200191611cb4565b820191906000526020600020905b815481529060010190602001808311611c9757829003601f168201915b505050505081565b600080600a805490501480611cef575081600a600081548110611cdb57fe5b906000526020600020906002020160000154115b15611e1357600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0a57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663981b24d0611d94846006546125ea565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611dc857600080fd5b505afa158015611ddc573d6000803e3d6000fd5b505050506040513d6020811015611df257600080fd5b81019080805190602001909291905050509050611e21565b60009050611e21565b611e1e600a83612603565b90505b919050565b6000600b60009054906101000a900460ff16611e4157600080fd5b611e4c33848461226e565b6001905092915050565b600b60009054906101000a900460ff1681565b60065481565b6000611e7b8484610e4d565b611e8457600080fd5b8373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611f5d578082015181840152602081019050611f42565b50505050905090810190601f168015611f8a5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b50505050600190509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461202a57600080fd5b6000612034611142565b90508281101561204357600080fd5b600061204e85611a8a565b90508381101561205d57600080fd5b61206a600a858403612733565b6120b4600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858303612733565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461222c57600080fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008114156122e1578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36125e5565b43600654106122ef57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561235857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b61236157600080fd5b600061236d84436114ba565b90508181101561237c57600080fd5b6123a66000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5c565b156124cc576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634a3931498585856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561248757600080fd5b505af115801561249b573d6000803e3d6000fd5b505050506040513d60208110156124b157600080fd5b81019080805190602001909291905050506124cb57600080fd5b5b612516600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838303612733565b600061252284436114ba565b905080838201101561253357600080fd5b61257d600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020848301612733565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a350505b505050565b60008183106125f957816125fb565b825b905092915050565b6000808380549050141561261a576000905061272d565b8260018480549050038154811061262d57fe5b9060005260206000209060020201600001548210612671578260018480549050038154811061265857fe5b906000526020600020906002020160010154905061272d565b8260008154811061267e57fe5b9060005260206000209060020201600001548210156126a0576000905061272d565b600080905060006001858054905003905060008090505b82821115612709576002600184840101816126ce57fe5b049050848682815481106126de57fe5b906000526020600020906002020160000154116126fd57809250612704565b6001810391505b6126b7565b85838154811061271557fe5b90600052602060002090600202016001015493505050505b92915050565b6000828054905014806127695750438260018480549050038154811061275557fe5b906000526020600020906002020160000154105b156127b65760008283805480919060010161278491906127ea565b8154811061278e57fe5b90600052602060002090600202019050438160000181905550818160010181905550506127e6565b6000826001848054905003815481106127cb57fe5b90600052602060002090600202019050818160010181905550505b5050565b81548183558181111561281757600202816002028360005260206000209182019101612816919061281c565b5b505050565b61284891905b8082111561284457600080820160009055600182016000905550600201612822565b5090565b9056fea265627a7a723158205dce54e8e9cff31a8b380fcea319c96d0b30277f071ebdcbf8426e55dfaca24664736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b744b5b0cddd114d1578a2bfcfb6469fd22bfa740000000000000000000000009050a32c98d4dc26ba7c4aee5ea1e079048784e9
-----Decoded View---------------
Arg [0] : _tokenFactory (address): 0xb744b5b0cDdd114D1578a2BfCfB6469FD22bfa74
Arg [1] : initialOwner (address): 0x9050A32C98d4DC26bA7C4AeE5eA1e079048784E9
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b744b5b0cddd114d1578a2bfcfb6469fd22bfa74
Arg [1] : 0000000000000000000000009050a32c98d4dc26ba7c4aee5ea1e079048784e9
Deployed Bytecode Sourcemap
25748:513:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23643:22;23654:10;;;;;;;;;;;23643;:22::i;:::-;23635:31;;;;;;23701:10;;;;;;;;;;;23685:40;;;23732:9;23743:10;23685:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23685:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23685:69:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23685:69:0;;;;;;;;;;;;;;;;23677:78;;;;;;25748:513;4341:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4341:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4341:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12205:851;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12205:851:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12205:851:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5507:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5507:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14556:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14556:103:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8724:808;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8724:808:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8724:808:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4422:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4422:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2286:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2286:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2286:180:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15024:964;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15024:964:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15024:964:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4570:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4570:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4570:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17893:805;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17893:805:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;17893:805:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;17893:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17893:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17893:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17893:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;17893:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17893:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17893:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17893:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11666:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11666:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11666:132:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5199:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5199:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19039:600;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19039:600:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19039:600:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4504:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4504:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4504:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16206:934;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16206:934:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16206:934:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8175:191;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8175:191:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8175:191:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6100:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6100:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5390:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5390:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14058:370;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14058:370:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14058:370:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;14058:370:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;14058:370:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;14058:370:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;14058:370:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19876:524;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19876:524:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19876:524:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13382:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13382:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13382:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6189:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6189:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20632:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20632:126:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20632:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;2074:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2074:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22940:234;22997:4;23014:9;23055:1;23038:19;;:5;:19;;;23034:37;;;23066:5;23059:12;;;;;23034:37;23126:5;23114:18;23106:26;;23165:1;23160:4;:6;23153:13;;;22940:234;;;;:::o;4341:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12205:851::-;12273:12;12306:16;;;;;;;;;;;12298:25;;;;;;12663:1;12652:7;:12;12651:54;;;;12703:1;12670:7;:19;12678:10;12670:19;;;;;;;;;;;;;;;:29;12690:8;12670:29;;;;;;;;;;;;;;;;:34;12651:54;12643:63;;;;;;12792:22;12803:10;;;;;;;;;;;12792;:22::i;:::-;12788:132;;;12855:10;;;;;;;;;;;12839:37;;;12877:10;12889:8;12899:7;12839:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12839:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12839:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12839:68:0;;;;;;;;;;;;;;;;12831:77;;;;;;12788:132;12964:7;12932;:19;12940:10;12932:19;;;;;;;;;;;;;;;:29;12952:8;12932:29;;;;;;;;;;;;;;;:39;;;;13008:8;12987:39;;12996:10;12987:39;;;13018:7;12987:39;;;;;;;;;;;;;;;;;;13044:4;13037:11;;12205:851;;;;:::o;5507:25::-;;;;:::o;14556:103::-;14600:4;14624:27;14638:12;14624:13;:27::i;:::-;14617:34;;14556:103;:::o;8724:808::-;8813:12;9138:10;;;;;;;;;;;9124:24;;:10;:24;;;9120:341;;9173:16;;;;;;;;;;;9165:25;;;;;;7918:10;9274:7;:14;9282:5;9274:14;;;;;;;;;;;;;;;:26;9289:10;9274:26;;;;;;;;;;;;;;;;:37;9270:180;;;9370:7;9340;:14;9348:5;9340:14;;;;;;;;;;;;;;;:26;9355:10;9340:26;;;;;;;;;;;;;;;;:37;;9332:46;;;;;;9427:7;9397;:14;9405:5;9397:14;;;;;;;;;;;;;;;:26;9412:10;9397:26;;;;;;;;;;;;;;;;:37;;;;;;;;;;;9270:180;9120:341;9471:31;9482:5;9489:3;9494:7;9471:10;:31::i;:::-;9520:4;9513:11;;8724:808;;;;;:::o;4422:21::-;;;;;;;;;;;;;:::o;2286:180::-;2049:10;;;;;;;;;;;2035:24;;:10;:24;;;2027:33;;;;;;2405:14;2374:46;;2393:10;;;;;;;;;;;2374:46;;;;;;;;;;;;2444:14;2431:10;;:27;;;;;;;;;;;;;;;;;;2286:180;:::o;15024:964::-;15110:4;15493:1;15466:8;:16;15475:6;15466:16;;;;;;;;;;;;;;;:23;;;;:28;15465:93;;;;15545:12;15513:8;:16;15522:6;15513:16;;;;;;;;;;;;;;;15530:1;15513:19;;;;;;;;;;;;;;;;;;:29;;;:44;15465:93;15461:520;;;15611:1;15579:34;;15587:11;;;;;;;;;;;15579:34;;;15575:236;;15641:11;;;;;;;;;;;:23;;;15665:6;15673:38;15677:12;15691:19;;15673:3;:38::i;:::-;15641:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15641:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15641:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15641:71:0;;;;;;;;;;;;;;;;15634:78;;;;15575:236;15794:1;15787:8;;;;15461:520;15927:42;15938:8;:16;15947:6;15938:16;;;;;;;;;;;;;;;15956:12;15927:10;:42::i;:::-;15920:49;;15024:964;;;;;:::o;4570:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17893:805::-;18125:7;18167:1;18149:14;:19;18145:54;;;18187:12;18170:29;;18145:54;18210:22;18235:12;;;;;;;;;;;:29;;;18287:4;18307:14;18336:15;18366:18;18399:17;18431;18235:228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18235:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18235:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18235:228:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18235:228:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18235:228:0;;;;;;;;;;;;;;;;18210:253;;18476:10;:27;;;18504:10;18476:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18476:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18476:39:0;;;;18625:10;18603:50;;;18638:14;18603:50;;;;;;;;;;;;;;;;;;18679:10;18664:26;;;17893:805;;;;;;;:::o;11666:132::-;11722:15;11757:33;11769:6;11777:12;11757:11;:33::i;:::-;11750:40;;11666:132;;;:::o;5199:30::-;;;;;;;;;;;;;:::o;19039:600::-;19130:4;2049:10;;;;;;;;;;;2035:24;;:10;:24;;;2027:33;;;;;;19147:19;19169:13;:11;:13::i;:::-;19147:35;;19229:14;19218:7;19201:14;:24;:42;;19193:51;;;;;;19277:22;19302:17;19312:6;19302:9;:17::i;:::-;19277:42;;19369:17;19358:7;19338:17;:27;:48;;19330:57;;;;;;19420:62;19437:18;19474:7;19457:14;:24;19420:16;:62::i;:::-;19493:63;19510:8;:16;19519:6;19510:16;;;;;;;;;;;;;;;19548:7;19528:17;:27;19493:16;:63::i;:::-;19593:6;19572:37;;19589:1;19572:37;;;19601:7;19572:37;;;;;;;;;;;;;;;;;;19627:4;19620:11;;;;19039:600;;;;:::o;4504:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16206:934::-;16268:4;16677:1;16648:18;:25;;;;:30;16647:97;;;;16731:12;16697:18;16716:1;16697:21;;;;;;;;;;;;;;;;;;:31;;;:46;16647:97;16643:490;;;16797:1;16765:34;;16773:11;;;;;;;;;;;16765:34;;;16761:196;;16827:11;;;;;;;;;;;:25;;;16853:38;16857:12;16871:19;;16853:3;:38::i;:::-;16827:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16827:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16827:65:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16827:65:0;;;;;;;;;;;;;;;;16820:72;;;;16761:196;16940:1;16933:8;;;;16643:490;17077:44;17088:18;17108:12;17077:10;:44::i;:::-;17070:51;;16206:934;;;;:::o;8175:191::-;8239:12;8272:16;;;;;;;;;;;8264:25;;;;;;8300:36;8311:10;8323:3;8328:7;8300:10;:36::i;:::-;8354:4;8347:11;;8175:191;;;;:::o;6100:28::-;;;;;;;;;;;;;:::o;5390:31::-;;;;:::o;14058:370::-;14164:12;14197:26;14205:8;14215:7;14197;:26::i;:::-;14189:35;;;;;;14260:8;14237:48;;;14300:10;14325:7;14355:4;14375:10;14237:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;14237:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14237:159:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14237:159:0;;;;14416:4;14409:11;;14058:370;;;;;:::o;19876:524::-;19966:4;2049:10;;;;;;;;;;;2035:24;;:10;:24;;;2027:33;;;;;;19983:19;20005:13;:11;:13::i;:::-;19983:35;;20055:7;20037:14;:25;;20029:34;;;;;;20074:24;20101:17;20111:6;20101:9;:17::i;:::-;20074:44;;20160:7;20137:19;:30;;20129:39;;;;;;20179:62;20196:18;20233:7;20216:14;:24;20179:16;:62::i;:::-;20252:65;20269:8;:16;20278:6;20269:16;;;;;;;;;;;;;;;20309:7;20287:19;:29;20252:16;:65::i;:::-;20358:1;20333:37;;20342:6;20333:37;;;20362:7;20333:37;;;;;;;;;;;;;;;;;;20388:4;20381:11;;;;19876:524;;;;:::o;13382:150::-;13462:17;13499:7;:15;13507:6;13499:15;;;;;;;;;;;;;;;:25;13515:8;13499:25;;;;;;;;;;;;;;;;13492:32;;13382:150;;;;:::o;6189:38::-;;;;;;;;;;;;;:::o;20632:126::-;2049:10;;;;;;;;;;;2035:24;;:10;:24;;;2027:33;;;;;;20733:17;20714:16;;:36;;;;;;;;;;;;;;;;;;20632:126;:::o;2074:25::-;;;;;;;;;;;;;:::o;9919:1608::-;10027:1;10016:7;:12;10012:166;;;10069:3;10053:29;;10062:5;10053:29;;;10074:7;10053:29;;;;;;;;;;;;;;;;;;10157:7;;10012:166;10223:12;10201:19;;:34;10193:43;;;;;;10349:1;10334:17;;:3;:17;;;;10333:45;;;;;10372:4;10357:20;;:3;:20;;;;10333:45;10325:54;;;;;;10517:27;10547:32;10559:5;10566:12;10547:11;:32::i;:::-;10517:62;;10626:7;10603:19;:30;;10595:39;;;;;;10713:22;10724:10;;;;;;;;;;;10713;:22::i;:::-;10709:129;;;10779:10;;;;;;;;;;;10763:38;;;10802:5;10809:3;10814:7;10763:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10763:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10763:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10763:59:0;;;;;;;;;;;;;;;;10755:68;;;;;;10709:129;10969:64;10986:8;:15;10995:5;10986:15;;;;;;;;;;;;;;;11025:7;11003:19;:29;10969:16;:64::i;:::-;11166:25;11194:30;11206:3;11211:12;11194:11;:30::i;:::-;11166:58;;11277:17;11266:7;11246:17;:27;:48;;11238:57;;;;;;11331:60;11348:8;:13;11357:3;11348:13;;;;;;;;;;;;;;;11383:7;11363:17;:27;11331:16;:60::i;:::-;11504:3;11488:29;;11497:5;11488:29;;;11509:7;11488:29;;;;;;;;;;;;;;;;;;9919:1608;;;;;;:::o;23249:97::-;23301:4;23329:1;23325;:5;:13;;23337:1;23325:13;;;23333:1;23325:13;23318:20;;23249:97;;;;:::o;21142:800::-;21238:4;21281:1;21259:11;:18;;;;:23;21255:37;;;21291:1;21284:8;;;;21255:37;21361:11;21392:1;21373:11;:18;;;;:20;21361:33;;;;;;;;;;;;;;;;;;:43;;;21351:6;:53;21347:118;;21426:11;21457:1;21438:11;:18;;;;:20;21426:33;;;;;;;;;;;;;;;;;;:39;;;21419:46;;;;21347:118;21489:11;21501:1;21489:14;;;;;;;;;;;;;;;;;;:24;;;21480:6;:33;21476:47;;;21522:1;21515:8;;;;21476:47;21588:8;21599:1;21588:12;;21611:8;21641:1;21622:11;:18;;;;:20;21611:31;;21653:8;21664:1;21653:12;;21676:219;21689:3;21683;:9;21676:219;;;21732:1;21728;21722:3;21716;:9;:13;21715:18;;;;;;21709:24;;21780:6;21752:11;21764:3;21752:16;;;;;;;;;;;;;;;;;;:26;;;:34;21748:136;;21813:3;21807:9;;21748:136;;;21867:1;21863:3;:5;21857:11;;21748:136;21676:219;;;21912:11;21924:3;21912:16;;;;;;;;;;;;;;;;;;:22;;;21905:29;;;;;21142:800;;;;;:::o;22166:598::-;22293:1;22271:11;:18;;;;:23;22270:99;;;;22356:12;22309:11;22341:1;22321:11;:18;;;;:21;22309:34;;;;;;;;;;;;;;;;;;:44;;;:59;22270:99;22266:491;;;22389:32;22424:11;22437;:20;;;;;;;;;;;:::i;:::-;22424:35;;;;;;;;;;;;;;;;;;22389:70;;22512:12;22477:13;:23;;:48;;;;22573:6;22543:13;:19;;:37;;;;22266:491;;;;22619:32;22654:11;22685:1;22666:11;:18;;;;:20;22654:33;;;;;;;;;;;;;;;;;;22619:68;;22735:6;22705:13;:19;;:37;;;;22266:491;;22166:598;;:::o;25748:513::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://5dce54e8e9cff31a8b380fcea319c96d0b30277f071ebdcbf8426e55dfaca246
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.