Contract Overview
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x1395ac3680e9f973cac2c2171c35f6392e5354a0051cdb48aec4d0ad63756d2e | Transfer | 22274926 | 419 days 12 hrs ago | 0x115efedb74314083bee38494e7e9e6c498328823 | IN | 0x523d9972d5f8a1c82ceafe130a45dc2a71fe06ef | 0.01 MATIC | 0.0012627 | |
0x2b55437cda88da164ba955a0b4b2c4fa543a756cba034cc66bc185946f6cd40e | Transfer | 22274877 | 419 days 12 hrs ago | 0x115efedb74314083bee38494e7e9e6c498328823 | IN | 0x523d9972d5f8a1c82ceafe130a45dc2a71fe06ef | 0.01 MATIC | 0.01575 | |
0xde24160b9e51110b7f56d9895527bb0afb9d60212b743f85792c14f71d839114 | 0x60806040 | 22270718 | 419 days 15 hrs ago | 0x115efedb74314083bee38494e7e9e6c498328823 | IN | Create: Metro | 0 MATIC | 0.06745344 |
[ Download CSV Export ]
Contract Name:
Metro
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-12-08 */ /** *Submitted for verification at polygonscan.com on 2021-05-18 */ /** *Submitted for verification at Etherscan.io on 2020-09-16 */ /** *Submitted for verification at Etherscan.io on 2020-09-15 */ pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; // From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol // Subject to the MIT license. /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, errorMessage); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction underflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, errorMessage); return c; } /** * @dev Returns the integer division of two unsigned integers. * Reverts on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. * Reverts with custom message on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Metro { /// @notice EIP-20 token name for this token string public constant name = "Metroswap"; /// @notice EIP-20 token symbol for this token string public constant symbol = "METRO"; /// @notice EIP-20 token decimals for this token uint8 public constant decimals = 18; /// @notice Total number of tokens in circulation uint public totalSupply = 0; // METRO /// @notice Allowance amounts on behalf of others mapping (address => mapping (address => uint96)) internal allowances; /// @notice Official record of token balances for each account mapping (address => uint96) internal balances; /// @notice A record of each accounts delegate mapping (address => address) public delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice The EIP-712 typehash for the permit struct used by the contract bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; address public gateway; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /// @notice The standard EIP-20 transfer event event Transfer(address indexed from, address indexed to, uint256 amount); /// @notice The standard EIP-20 approval event event Approval(address indexed owner, address indexed spender, uint256 amount); /** * @notice Construct a new Metro token * @param gateway_ The gateway contract address */ constructor(address gateway_) public { gateway = gateway_; } /** * @notice called when token is deposited on root chain * @dev Should be callable only by ChildChainManager * Should handle deposit by minting the required amount for user * Make sure minting is done only by this function * @param user user address for whom deposit is being done * @param depositData abi encoded amount */ function deposit(address user, bytes calldata depositData) external { require(msg.sender == gateway, "Invalid access"); uint256 rawAmount = abi.decode(depositData, (uint256)); uint96 amount = safe96(rawAmount, "Metro::deposit: amount exceeds 96 bits"); _mint(user, amount); } /** * @notice called when user wants to withdraw tokens back to root chain * @dev Should burn user's tokens. This transaction will be verified when exiting on root chain * @param rawAmount amount of tokens to withdraw */ function withdraw(uint256 rawAmount) external { uint96 amount = safe96(rawAmount, "Metro::withdraw: amount exceeds 96 bits"); _burn(msg.sender, amount); } /** * @notice Get the number of tokens `spender` is approved to spend on behalf of `account` * @param account The address of the account holding the funds * @param spender The address of the account spending the funds * @return The number of tokens approved */ function allowance(address account, address spender) external view returns (uint) { return allowances[account][spender]; } /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param rawAmount The number of tokens that are approved (2^256-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint rawAmount) external returns (bool) { uint96 amount; if (rawAmount == uint(-1)) { amount = uint96(-1); } else { amount = safe96(rawAmount, "Metro::approve: amount exceeds 96 bits"); } allowances[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } /** * @notice Triggers an approval from owner to spends * @param owner The address to approve from * @param spender The address to be approved * @param rawAmount The number of tokens that are approved (2^256-1 means infinite) * @param deadline The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external { uint96 amount; if (rawAmount == uint(-1)) { amount = uint96(-1); } else { amount = safe96(rawAmount, "Metro::permit: amount exceeds 96 bits"); } bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Metro::permit: invalid signature"); require(signatory == owner, "Metro::permit: unauthorized"); require(now <= deadline, "Metro::permit: signature expired"); allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @notice Get the number of tokens held by the `account` * @param account The address of the account to get the balance of * @return The number of tokens held */ function balanceOf(address account) external view returns (uint) { return balances[account]; } /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param rawAmount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint rawAmount) external returns (bool) { uint96 amount = safe96(rawAmount, "Metro::transfer: amount exceeds 96 bits"); _transferTokens(msg.sender, dst, amount); return true; } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param rawAmount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint rawAmount) external returns (bool) { address spender = msg.sender; uint96 spenderAllowance = allowances[src][spender]; uint96 amount = safe96(rawAmount, "Metro::approve: amount exceeds 96 bits"); if (spender != src && spenderAllowance != uint96(-1)) { uint96 newAllowance = sub96(spenderAllowance, amount, "Metro::transferFrom: transfer amount exceeds spender allowance"); allowances[src][spender] = newAllowance; emit Approval(src, spender, newAllowance); } _transferTokens(src, dst, amount); return true; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public { bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Metro::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "Metro::delegateBySig: invalid nonce"); require(now <= expiry, "Metro::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) public view returns (uint96) { require(blockNumber < block.number, "Metro::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = delegates[delegator]; uint96 delegatorBalance = balances[delegator]; delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _transferTokens(address src, address dst, uint96 amount) internal { require(src != address(0), "Metro::_transferTokens: cannot transfer from the zero address"); require(dst != address(0), "Metro::_transferTokens: cannot transfer to the zero address"); balances[src] = sub96(balances[src], amount, "Metro::_transferTokens: transfer amount exceeds balance"); balances[dst] = add96(balances[dst], amount, "Metro::_transferTokens: transfer amount overflows"); emit Transfer(src, dst, amount); _moveDelegates(delegates[src], delegates[dst], amount); } function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, "Metro::_moveVotes: vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, "Metro::_moveVotes: vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal { uint32 blockNumber = safe32(block.number, "Metro::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } function _mint(address dst, uint rawAmount) internal { require(dst != address(0), "Metro::mint: cannot transfer to the zero address"); // mint the amount uint96 amount = safe96(rawAmount, "Metro::mint: amount exceeds 96 bits"); totalSupply = safe96(SafeMath.add(totalSupply, amount), "Metro::mint: totalSupply exceeds 96 bits"); // transfer the amount to the recipient balances[dst] = add96(balances[dst], amount, "Metro::mint: transfer amount overflows"); emit Transfer(address(0), dst, amount); } function _burn(address account, uint96 amount) internal { require(account != address(0), "Metro:: burn from the zero address"); balances[account] = sub96(balances[account], amount, "Metro:: burn amount exceeds balance"); totalSupply = sub96(safe96(totalSupply, "Metro:: totalSupply exceeds 96 bits"), amount, "Metro:: burn amount exceeds total supply"); emit Transfer(account, address(0), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"gateway_","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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gateway","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600080553480156200001557600080fd5b506040516200280b3803806200280b833981016040819052620000389162000071565b600780546001600160a01b0319166001600160a01b0392909216919091179055620000c6565b80516200006b81620000ac565b92915050565b6000602082840312156200008457600080fd5b60006200009284846200005e565b949350505050565b60006001600160a01b0382166200006b565b620000b7816200009a565b8114620000c357600080fd5b50565b61273580620000d66000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063c3cda5201161007c578063c3cda520146102cc578063cf2c52cb146102df578063d505accf146102f2578063dd62ed3e14610305578063e7a324dc14610318578063f1127ed81461032057610158565b806370a0823114610258578063782d6fe11461026b5780637ecebe001461028b57806395d89b411461029e578063a9059cbb146102a6578063b4b5ea57146102b957610158565b80632e1a7d4d116101155780632e1a7d4d146101e057806330adf81f146101f5578063313ce567146101fd578063587cde1e146102125780635c19a95c146102255780636fcfff451461023857610158565b806306fdde031461015d578063095ea7b31461017b578063116191b61461019b57806318160ddd146101b057806320606b70146101c557806323b872dd146101cd575b600080fd5b610165610341565b604051610172919061221d565b60405180910390f35b61018e610189366004611a41565b610366565b6040516101729190612119565b6101a3610425565b604051610172919061210b565b6101b8610434565b6040516101729190612127565b6101b861043a565b61018e6101db366004611902565b610451565b6101f36101ee366004611b28565b61059a565b005b6101b86105ce565b6102056105da565b6040516101729190612327565b6101a36102203660046118a2565b6105df565b6101f36102333660046118a2565b6105fa565b61024b6102463660046118a2565b610607565b60405161017291906122fe565b6101b86102663660046118a2565b61061f565b61027e610279366004611a41565b610643565b6040516101729190612343565b6101b86102993660046118a2565b61085a565b61016561086c565b61018e6102b4366004611a41565b61088d565b61027e6102c73660046118a2565b6108c9565b6101f36102da366004611a71565b610939565b6101f36102ed3660046119eb565b610b24565b6101f361030036600461194f565b610b9e565b6101b86103133660046118c8565b610e8b565b6101b8610ebf565b61033361032e366004611af8565b610ecb565b60405161017292919061230c565b6040518060400160405280600981526020016804d6574726f737761760bc1b81525081565b60008060001983141561037c57506000196103a1565b61039e836040518060600160405280602681526020016125b460269139610f00565b90505b3360008181526001602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610411908590612335565b60405180910390a360019150505b92915050565b6007546001600160a01b031681565b60005481565b604051610446906120f5565b604051809103902081565b6001600160a01b03831660009081526001602090815260408083203380855290835281842054825160608101909352602680845291936001600160601b039091169285926104a992889291906125b490830139610f00565b9050866001600160a01b0316836001600160a01b0316141580156104d657506001600160601b0382811614155b1561058057600061050083836040518060600160405280603e815260200161252a603e9139610f2f565b6001600160a01b038981166000818152600160209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610576908590612335565b60405180910390a3505b61058b878783610f6e565b600193505050505b9392505050565b60006105be8260405180606001604052806027815260200161244f60279139610f00565b90506105ca3382611119565b5050565b604051610446906120ea565b601281565b6003602052600090815260409020546001600160a01b031681565b610604338261126e565b50565b60056020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600260205260409020546001600160601b031690565b600043821061066d5760405162461bcd60e51b81526004016106649061223e565b60405180910390fd5b6001600160a01b03831660009081526005602052604090205463ffffffff168061069b57600091505061041f565b6001600160a01b038416600090815260046020908152604080832063ffffffff600019860181168552925290912054168310610717576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b0316905061041f565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff1683101561075257600091505061041f565b600060001982015b8163ffffffff168163ffffffff16111561081557600282820363ffffffff16048103610784611816565b506001600160a01b038716600090815260046020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b031691810191909152908714156107f05760200151945061041f9350505050565b805163ffffffff168711156108075781935061080e565b6001820392505b505061075a565b506001600160a01b038516600090815260046020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60066020526000908152604090205481565b604051806040016040528060058152602001644d4554524f60d81b81525081565b6000806108b28360405180606001604052806027815260200161256860279139610f00565b90506108bf338583610f6e565b5060019392505050565b6001600160a01b03811660009081526005602052604081205463ffffffff16806108f4576000610593565b6001600160a01b0383166000908152600460209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610947906120f5565b60408051918290038220828201909152600982526804d6574726f737761760bc1b6020909201919091527f0531a706080dc4dea70b908715f5e8b347041912011d4d1710873e9bb814b32761099a6112f8565b306040516020016109ae94939291906121cd565b60405160208183030381529060405280519060200120905060006040516109d490612100565b6040519081900381206109ef918a908a908a9060200161218f565b60405160208183030381529060405280519060200120905060008282604051602001610a1c9291906120b9565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610a599493929190612202565b6020604051602081039080840390855afa158015610a7b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610aae5760405162461bcd60e51b81526004016106649061225e565b6001600160a01b03811660009081526006602052604090208054600181019091558914610aed5760405162461bcd60e51b81526004016106649061228e565b87421115610b0d5760405162461bcd60e51b81526004016106649061222e565b610b17818b61126e565b505050505b505050505050565b6007546001600160a01b03163314610b4e5760405162461bcd60e51b8152600401610664906122ae565b6000610b5c82840184611b28565b90506000610b828260405180606001604052806026815260200161260260269139610f00565b9050610b9785826001600160601b03166112fc565b5050505050565b6000600019861415610bb35750600019610bd8565b610bd58660405180606001604052806025815260200161258f60259139610f00565b90505b6000604051610be6906120f5565b60408051918290038220828201909152600982526804d6574726f737761760bc1b6020909201919091527f0531a706080dc4dea70b908715f5e8b347041912011d4d1710873e9bb814b327610c396112f8565b30604051602001610c4d94939291906121cd565b6040516020818303038152906040528051906020012090506000604051610c73906120ea565b604080519182900382206001600160a01b038d16600090815260066020908152929020805460018101909155610cb59391928e928e928e9290918e9101612135565b60405160208183030381529060405280519060200120905060008282604051602001610ce29291906120b9565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610d1f9493929190612202565b6020604051602081039080840390855afa158015610d41573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d745760405162461bcd60e51b8152600401610664906122ee565b8b6001600160a01b0316816001600160a01b031614610da55760405162461bcd60e51b8152600401610664906122de565b88421115610dc55760405162461bcd60e51b8152600401610664906122be565b84600160008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92587604051610e759190612335565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526001602090815260408083209390941682529190915220546001600160601b031690565b60405161044690612100565b600460209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b600081600160601b8410610f275760405162461bcd60e51b8152600401610664919061221d565b509192915050565b6000836001600160601b0316836001600160601b031611158290610f665760405162461bcd60e51b8152600401610664919061221d565b505050900390565b6001600160a01b038316610f945760405162461bcd60e51b81526004016106649061229e565b6001600160a01b038216610fba5760405162461bcd60e51b81526004016106649061226e565b6001600160a01b038316600090815260026020908152604091829020548251606081019093526037808452611005936001600160601b0390921692859291906124a790830139610f2f565b6001600160a01b03848116600090815260026020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352603180845261106d949190911692859290919061247690830139611447565b6001600160a01b038381166000818152600260205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110da908590612335565b60405180910390a36001600160a01b0380841660009081526003602052604080822054858416835291205461111492918216911683611483565b505050565b6001600160a01b03821661113f5760405162461bcd60e51b81526004016106649061227e565b6001600160a01b03821660009081526002602090815260409182902054825160608101909352602380845261118a936001600160601b03909216928592919061250790830139610f2f565b60026000846001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055506112196111fa6000546040518060600160405280602381526020016126a860239139610f00565b826040518060600160405280602881526020016125da60289139610f2f565b6001600160601b031660009081556040516001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611262908590612335565b60405180910390a35050565b6001600160a01b03808316600081815260036020818152604080842080546002845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46112f2828483611483565b50505050565b4690565b6001600160a01b0382166113225760405162461bcd60e51b8152600401610664906122ce565b60006113468260405180606001604052806023815260200161265d60239139610f00565b905061137e611360600054836001600160601b0316611615565b60405180606001604052806028815260200161268060289139610f00565b6001600160601b0390811660009081556001600160a01b0385168152600260209081526040918290205482516060810190935260268084526113d0949190911692859290919061242990830139611447565b6001600160a01b03841660008181526002602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061143a908590612335565b60405180910390a3505050565b6000838301826001600160601b03808716908316101561147a5760405162461bcd60e51b8152600401610664919061221d565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156114ae57506000816001600160601b0316115b15611114576001600160a01b03831615611566576001600160a01b03831660009081526005602052604081205463ffffffff1690816114ee57600061152d565b6001600160a01b0385166000908152600460209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061155482856040518060600160405280602981526020016124de60299139610f2f565b90506115628684848461163a565b5050505b6001600160a01b03821615611114576001600160a01b03821660009081526005602052604081205463ffffffff1690816115a15760006115e0565b6001600160a01b0384166000908152600460209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061160782856040518060600160405280602881526020016126cb60289139611447565b9050610b1c8584848461163a565b6000828201838110156105935760405162461bcd60e51b81526004016106649061224e565b600061165e43604051806060016040528060358152602001612628603591396117ef565b905060008463ffffffff161180156116a757506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611706576001600160a01b0385166000908152600460209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b038516021790556117a5565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600483528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600590935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516117e0929190612351565b60405180910390a25050505050565b600081600160201b8410610f275760405162461bcd60e51b8152600401610664919061221d565b604080518082019091526000808252602082015290565b803561041f816123f9565b803561041f8161240d565b60008083601f84011261185557600080fd5b50813567ffffffffffffffff81111561186d57600080fd5b60208301915083600182028301111561188557600080fd5b9250929050565b803561041f81612416565b803561041f8161241f565b6000602082840312156118b457600080fd5b60006118c0848461182d565b949350505050565b600080604083850312156118db57600080fd5b60006118e7858561182d565b92505060206118f88582860161182d565b9150509250929050565b60008060006060848603121561191757600080fd5b6000611923868661182d565b93505060206119348682870161182d565b925050604061194586828701611838565b9150509250925092565b600080600080600080600060e0888a03121561196a57600080fd5b60006119768a8a61182d565b97505060206119878a828b0161182d565b96505060406119988a828b01611838565b95505060606119a98a828b01611838565b94505060806119ba8a828b01611897565b93505060a06119cb8a828b01611838565b92505060c06119dc8a828b01611838565b91505092959891949750929550565b600080600060408486031215611a0057600080fd5b6000611a0c868661182d565b935050602084013567ffffffffffffffff811115611a2957600080fd5b611a3586828701611843565b92509250509250925092565b60008060408385031215611a5457600080fd5b6000611a60858561182d565b92505060206118f885828601611838565b60008060008060008060c08789031215611a8a57600080fd5b6000611a96898961182d565b9650506020611aa789828a01611838565b9550506040611ab889828a01611838565b9450506060611ac989828a01611897565b9350506080611ada89828a01611838565b92505060a0611aeb89828a01611838565b9150509295509295509295565b60008060408385031215611b0b57600080fd5b6000611b17858561182d565b92505060206118f88582860161188c565b600060208284031215611b3a57600080fd5b60006118c08484611838565b611b4f8161237e565b82525050565b611b4f81612389565b611b4f8161238e565b611b4f611b738261238e565b61238e565b6000611b838261236c565b611b8d8185612370565b9350611b9d8185602086016123c3565b611ba6816123ef565b9093019392505050565b6000611bbd602783612370565b7f4d6574726f3a3a64656c656761746542795369673a207369676e617475726520815266195e1c1a5c995960ca1b602082015260400192915050565b6000611c06600283612379565b61190160f01b815260020192915050565b6000611c24602883612370565b7f4d6574726f3a3a6765745072696f72566f7465733a206e6f74207965742064658152671d195c9b5a5b995960c21b602082015260400192915050565b6000611c6e601b83612370565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611ca7602783612370565b7f4d6574726f3a3a64656c656761746542795369673a20696e76616c6964207369815266676e617475726560c81b602082015260400192915050565b6000611cf0603b83612370565b7f4d6574726f3a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207481527f72616e7366657220746f20746865207a65726f20616464726573730000000000602082015260400192915050565b6000611d4f602283612370565b7f4d6574726f3a3a206275726e2066726f6d20746865207a65726f206164647265815261737360f01b602082015260400192915050565b6000611d93605283612379565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611e0d602383612370565b7f4d6574726f3a3a64656c656761746542795369673a20696e76616c6964206e6f8152626e636560e81b602082015260400192915050565b6000611e52603d83612370565b7f4d6574726f3a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207481527f72616e736665722066726f6d20746865207a65726f2061646472657373000000602082015260400192915050565b6000611eb1604383612379565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611f1c600e83612370565b6d496e76616c69642061636365737360901b815260200192915050565b6000611f46602083612370565b7f4d6574726f3a3a7065726d69743a207369676e61747572652065787069726564815260200192915050565b6000611f7f603083612370565b7f4d6574726f3a3a6d696e743a2063616e6e6f74207472616e7366657220746f2081526f746865207a65726f206164647265737360801b602082015260400192915050565b6000611fd1601b83612370565b7f4d6574726f3a3a7065726d69743a20756e617574686f72697a65640000000000815260200192915050565b600061200a603a83612379565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6000612069602083612370565b7f4d6574726f3a3a7065726d69743a20696e76616c6964207369676e6174757265815260200192915050565b611b4f8161239d565b611b4f816123a6565b611b4f816123b8565b611b4f816123ac565b60006120c482611bf9565b91506120d08285611b67565b6020820191506120e08284611b67565b5060200192915050565b600061041f82611d86565b600061041f82611ea4565b600061041f82611ffd565b6020810161041f8284611b46565b6020810161041f8284611b55565b6020810161041f8284611b5e565b60c081016121438289611b5e565b6121506020830188611b46565b61215d6040830187611b46565b61216a6060830186611b5e565b6121776080830185611b5e565b61218460a0830184611b5e565b979650505050505050565b6080810161219d8287611b5e565b6121aa6020830186611b46565b6121b76040830185611b5e565b6121c46060830184611b5e565b95945050505050565b608081016121db8287611b5e565b6121e86020830186611b5e565b6121f56040830185611b5e565b6121c46060830184611b46565b608081016122108287611b5e565b6121aa602083018661209e565b602080825281016105938184611b78565b6020808252810161041f81611bb0565b6020808252810161041f81611c17565b6020808252810161041f81611c61565b6020808252810161041f81611c9a565b6020808252810161041f81611ce3565b6020808252810161041f81611d42565b6020808252810161041f81611e00565b6020808252810161041f81611e45565b6020808252810161041f81611f0f565b6020808252810161041f81611f39565b6020808252810161041f81611f72565b6020808252810161041f81611fc4565b6020808252810161041f8161205c565b6020810161041f8284612095565b6040810161231a8285612095565b61059360208301846120b0565b6020810161041f828461209e565b6020810161041f82846120a7565b6020810161041f82846120b0565b6040810161235f82856120a7565b61059360208301846120a7565b5190565b90815260200190565b919050565b600061041f82612391565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b600061041f826123ac565b60005b838110156123de5781810151838201526020016123c6565b838111156112f25750506000910152565b601f01601f191690565b6124028161237e565b811461060457600080fd5b6124028161238e565b6124028161239d565b612402816123a656fe4d6574726f3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f77734d6574726f3a3a77697468647261773a20616d6f756e74206578636565647320393620626974734d6574726f3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734d6574726f3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d6574726f3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734d6574726f3a3a206275726e20616d6f756e7420657863656564732062616c616e63654d6574726f3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654d6574726f3a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734d6574726f3a3a7065726d69743a20616d6f756e74206578636565647320393620626974734d6574726f3a3a617070726f76653a20616d6f756e74206578636565647320393620626974734d6574726f3a3a206275726e20616d6f756e74206578636565647320746f74616c20737570706c794d6574726f3a3a6465706f7369743a20616d6f756e74206578636565647320393620626974734d6574726f3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734d6574726f3a3a6d696e743a20616d6f756e74206578636565647320393620626974734d6574726f3a3a6d696e743a20746f74616c537570706c79206578636565647320393620626974734d6574726f3a3a20746f74616c537570706c79206578636565647320393620626974734d6574726f3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773a365627a7a72315820c221c1ca56b974e3af2c20b44a485165ae6791a906765b0fa6b6448aefee706f6c6578706572696d656e74616cf564736f6c63430005110040000000000000000000000000af8f9b4987b1f3c3c65c6871ff1257ff4f0cf229
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000af8f9b4987b1f3c3c65c6871ff1257ff4f0cf229
-----Decoded View---------------
Arg [0] : gateway_ (address): 0xaf8f9b4987b1f3c3c65c6871ff1257ff4f0cf229
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000af8f9b4987b1f3c3c65c6871ff1257ff4f0cf229
Deployed ByteCode Sourcemap
6851:16717:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6851:16717:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6923:41;;;:::i;:::-;;;;;;;;;;;;;;;;11756:420;;;;;;;;;:::i;:::-;;;;;;;;8816:22;;;:::i;:::-;;;;;;;;7226:27;;;:::i;:::-;;;;;;;;8127:122;;;:::i;14848:674::-;;;;;;;;;:::i;10661:177::-;;;;;;;;;:::i;:::-;;8550:137;;;:::i;7127:35::-;;;:::i;:::-;;;;;;;;7577:45;;;;;;;;;:::i;15670:102::-;;;;;;;;;:::i;8005:49::-;;;;;;;;;:::i;:::-;;;;;;;;13927:108;;;;;;;;;:::i;17852:1219::-;;;;;;;;;:::i;:::-;;;;;;;;8768:39;;;;;;;;;:::i;7025:::-;;;:::i;14299:239::-;;;;;;;;;:::i;17199:222::-;;;;;;;;;:::i;16206:792::-;;;;;;;;;:::i;10070:333::-;;;;;;;;;:::i;12666:1058::-;;;;;;;;;:::i;11142:136::-;;;;;;;;;:::i;8343:117::-;;;:::i;7866:70::-;;;;;;;;;:::i;:::-;;;;;;;;;6923:41;;;;;;;;;;;;;;-1:-1:-1;;;6923:41:0;;;;:::o;11756:420::-;11824:4;11841:13;-1:-1:-1;;11869:9:0;:21;11865:174;;;-1:-1:-1;;;11865:174:0;;;11968:59;11975:9;11968:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;11959:68;;11865:174;12062:10;12051:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;12051:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;12051:40:0;-1:-1:-1;;;;;12051:40:0;;;;;12109:37;;12051:31;;12062:10;12109:37;;;;12051:40;;12109:37;;;;;;;;;;12164:4;12157:11;;;11756:420;;;;;:::o;8816:22::-;;;-1:-1:-1;;;;;8816:22:0;;:::o;7226:27::-;;;;:::o;8127:122::-;8169:80;;;;;;;;;;;;;;8127:122;:::o;14848:674::-;-1:-1:-1;;;;;15012:15:0;;14930:4;15012:15;;;:10;:15;;;;;;;;14965:10;15012:24;;;;;;;;;;15063:59;;;;;;;;;;;;14965:10;;-1:-1:-1;;;;;15012:24:0;;;;14930:4;;15063:59;;15070:9;;15063:59;;;;;;;:6;:59::i;:::-;15047:75;;15150:3;-1:-1:-1;;;;;15139:14:0;:7;-1:-1:-1;;;;;15139:14:0;;;:48;;;;-1:-1:-1;;;;;;15157:30:0;;;;;15139:48;15135:312;;;15204:19;15226:97;15232:16;15250:6;15226:97;;;;;;;;;;;;;;;;;:5;:97::i;:::-;-1:-1:-1;;;;;15338:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;15338:39:0;-1:-1:-1;;;;;15338:39:0;;;;;15399:36;15338:39;;-1:-1:-1;15338:24:0;;15399:36;;;;15338:39;;15399:36;;;;;;;;;;15135:312;;15459:33;15475:3;15480;15485:6;15459:15;:33::i;:::-;15510:4;15503:11;;;;;14848:674;;;;;;:::o;10661:177::-;10718:13;10734:60;10741:9;10734:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;10718:76;;10805:25;10811:10;10823:6;10805:5;:25::i;:::-;10661:177;;:::o;8550:137::-;8592:95;;;;;;7127:35;7160:2;7127:35;:::o;7577:45::-;;;;;;;;;;;;-1:-1:-1;;;;;7577:45:0;;:::o;15670:102::-;15732:32;15742:10;15754:9;15732;:32::i;:::-;15670:102;:::o;8005:49::-;;;;;;;;;;;;;;;:::o;13927:108::-;-1:-1:-1;;;;;14010:17:0;13986:4;14010:17;;;:8;:17;;;;;;-1:-1:-1;;;;;14010:17:0;;13927:108::o;17852:1219::-;17931:6;17972:12;17958:11;:26;17950:79;;;;-1:-1:-1;;;17950:79:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18064:23:0;;18042:19;18064:23;;;:14;:23;;;;;;;;18102:17;18098:58;;18143:1;18136:8;;;;;18098:58;-1:-1:-1;;;;;18216:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;18237:16:0;;18216:38;;;;;;;;;:48;;:63;-1:-1:-1;18212:147:0;;-1:-1:-1;;;;;18303:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;18324:16:0;;;;18303:38;;;;;;;;:44;-1:-1:-1;;;18303:44:0;;-1:-1:-1;;;;;18303:44:0;;-1:-1:-1;18296:51:0;;18212:147;-1:-1:-1;;;;;18420:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;18416:88:0;;;18491:1;18484:8;;;;;18416:88;18516:12;-1:-1:-1;;18558:16:0;;18585:428;18600:5;18592:13;;:5;:13;;;18585:428;;;18664:1;18647:13;;;18646:19;;;18638:27;;18707:20;;:::i;:::-;-1:-1:-1;;;;;;18730:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;18707:51;;;;;;;;;;;;;;;-1:-1:-1;;;18707:51:0;;;-1:-1:-1;;;;;18707:51:0;;;;;;;;;18777:27;;18773:229;;;18832:8;;;;-1:-1:-1;18825:15:0;;-1:-1:-1;;;;18825:15:0;18773:229;18866:12;;:26;;;-1:-1:-1;18862:140:0;;;18921:6;18913:14;;18862:140;;;18985:1;18976:6;:10;18968:18;;18862:140;18585:428;;;;;-1:-1:-1;;;;;;19030:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;19030:33:0;;;;;-1:-1:-1;;17852:1219:0;;;;:::o;8768:39::-;;;;;;;;;;;;;:::o;7025:::-;;;;;;;;;;;;;;-1:-1:-1;;;7025:39:0;;;;:::o;14299:239::-;14364:4;14381:13;14397:60;14404:9;14397:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;14381:76;;14468:40;14484:10;14496:3;14501:6;14468:15;:40::i;:::-;-1:-1:-1;14526:4:0;;14299:239;-1:-1:-1;;;14299:239:0:o;17199:222::-;-1:-1:-1;;;;;17305:23:0;;17264:6;17305:23;;;:14;:23;;;;;;;;17346:16;:67;;17412:1;17346:67;;;-1:-1:-1;;;;;17365:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;17386:16:0;;17365:38;;;;;;;;;:44;-1:-1:-1;;;17365:44:0;;-1:-1:-1;;;;;17365:44:0;17339:74;17199:222;-1:-1:-1;;;17199:222:0:o;16206:792::-;16322:23;8169:80;;;;;;;;;;;;;;;;16402:4;;;;;;;;;-1:-1:-1;;;16402:4:0;;;;;;;;16386:22;16410:12;:10;:12::i;:::-;16432:4;16358:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;16358:80:0;;;16348:91;;;;;;16322:117;;16450:18;8389:71;;;;;;;;;;;;;;;16481:57;;16513:9;;16524:5;;16531:6;;16481:57;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;16481:57:0;;;16471:68;;;;;;16450:89;;16550:14;16606:15;16623:10;16577:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;16577:57:0;;;16567:68;;;;;;16550:85;;16646:17;16666:26;16676:6;16684:1;16687;16690;16666:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;16666:26:0;;-1:-1:-1;;16666:26:0;;;-1:-1:-1;;;;;;;16711:23:0;;16703:75;;;;-1:-1:-1;;;16703:75:0;;;;;;;;;-1:-1:-1;;;;;16806:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;16797:28;;16789:76;;;;-1:-1:-1;;;16789:76:0;;;;;;;;;16891:6;16884:3;:13;;16876:65;;;;-1:-1:-1;;;16876:65:0;;;;;;;;;16959:31;16969:9;16980;16959;:31::i;:::-;16952:38;;;;16206:792;;;;;;;:::o;10070:333::-;10185:7;;-1:-1:-1;;;;;10185:7:0;10171:10;:21;10163:49;;;;-1:-1:-1;;;10163:49:0;;;;;;;;;10223:17;10243:34;;;;10254:11;10243:34;;;10223:54;;10288:13;10304:59;10311:9;10304:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;10288:75;;10376:19;10382:4;10388:6;-1:-1:-1;;;;;10376:19:0;:5;:19::i;:::-;10070:333;;;;;:::o;12666:1058::-;12796:13;-1:-1:-1;;12824:9:0;:21;12820:173;;;-1:-1:-1;;;12820:173:0;;;12923:58;12930:9;12923:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;12914:67;;12820:173;13005:23;8169:80;;;;;;;;;;;;;;;;13085:4;;;;;;;;;-1:-1:-1;;;13085:4:0;;;;;;;;13069:22;13093:12;:10;:12::i;:::-;13115:4;13041:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;13041:80:0;;;13031:91;;;;;;13005:117;;13133:18;8592:95;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13219:13:0;;;;;;:6;:13;;;;;;;:15;;;;;;;;13164:81;;8592:95;;13192:5;;13199:7;;13208:9;;13219:15;;13236:8;;13164:81;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;13164:81:0;;;13154:92;;;;;;13133:113;;13257:14;13313:15;13330:10;13284:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;13284:57:0;;;13274:68;;;;;;13257:85;;13353:17;13373:26;13383:6;13391:1;13394;13397;13373:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;13373:26:0;;-1:-1:-1;;13373:26:0;;;-1:-1:-1;;;;;;;13418:23:0;;13410:68;;;;-1:-1:-1;;;13410:68:0;;;;;;;;;13510:5;-1:-1:-1;;;;;13497:18:0;:9;-1:-1:-1;;;;;13497:18:0;;13489:58;;;;-1:-1:-1;;;13489:58:0;;;;;;;;;13573:8;13566:3;:15;;13558:60;;;;-1:-1:-1;;;13558:60:0;;;;;;;;;13660:6;13631:10;:17;13642:5;-1:-1:-1;;;;;13631:17:0;-1:-1:-1;;;;;13631:17:0;;;;;;;;;;;;:26;13649:7;-1:-1:-1;;;;;13631:26:0;-1:-1:-1;;;;;13631:26:0;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;;;;13631:35:0;;;;;-1:-1:-1;;;;;13631:35:0;;;;;;13700:7;-1:-1:-1;;;;;13684:32:0;13693:5;-1:-1:-1;;;;;13684:32:0;;13709:6;13684:32;;;;;;;;;;;;;;;12666:1058;;;;;;;;;;;;:::o;11142:136::-;-1:-1:-1;;;;;11242:19:0;;;11218:4;11242:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;11242:28:0;;11142:136::o;8343:117::-;8389:71;;;;;;7866:70;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7866:70:0;;-1:-1:-1;;;;;7866:70:0;;:::o;21844:161::-;21919:6;21957:12;-1:-1:-1;;;21946:9:0;;21938:32;;;;-1:-1:-1;;;21938:32:0;;;;;;;;;;-1:-1:-1;21995:1:0;;21844:161;-1:-1:-1;;21844:161:0:o;22209:165::-;22295:6;22327:1;-1:-1:-1;;;;;22322:6:0;:1;-1:-1:-1;;;;;22322:6:0;;;22330:12;22314:29;;;;;-1:-1:-1;;;22314:29:0;;;;;;;;;;-1:-1:-1;;;22361:5:0;;;22209:165::o;19462:618::-;-1:-1:-1;;;;;19556:17:0;;19548:91;;;;-1:-1:-1;;;19548:91:0;;;;;;;;;-1:-1:-1;;;;;19658:17:0;;19650:89;;;;-1:-1:-1;;;19650:89:0;;;;;;;;;-1:-1:-1;;;;;19774:13:0;;;;;;:8;:13;;;;;;;;;;19768:87;;;;;;;;;;;;;;-1:-1:-1;;;;;19774:13:0;;;;19789:6;;19768:87;;;;;;;:5;:87::i;:::-;-1:-1:-1;;;;;19752:13:0;;;;;;;:8;:13;;;;;;;;:103;;-1:-1:-1;;;;;;19752:103:0;-1:-1:-1;;;;;19752:103:0;;;;;;19888:13;;;;;;;;;;19882:81;;;;;;;;;;;;;;19888:13;;;;;19903:6;;19882:81;;;;;;;;:5;:81::i;:::-;-1:-1:-1;;;;;19866:13:0;;;;;;;:8;:13;;;;;;;:97;;-1:-1:-1;;;;;;19866:97:0;-1:-1:-1;;;;;19866:97:0;;;;;;;;;;;19979:26;;;;;;;;;;19998:6;;19979:26;;;;;;;;;;-1:-1:-1;;;;;20033:14:0;;;;;;;:9;:14;;;;;;;20049;;;;;;;;20018:54;;20033:14;;;;20049;20065:6;20018:14;:54::i;:::-;19462:618;;;:::o;23123:442::-;-1:-1:-1;;;;;23198:21:0;;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;;;-1:-1:-1;;;;;23297:17:0;;;;;;:8;:17;;;;;;;;;;23291:71;;;;;;;;;;;;;;-1:-1:-1;;;;;23297:17:0;;;;23316:6;;23291:71;;;;;;;:5;:71::i;:::-;23271:8;:17;23280:7;-1:-1:-1;;;;;23271:17:0;-1:-1:-1;;;;;23271:17:0;;;;;;;;;;;;;:91;;;;;-1:-1:-1;;;;;23271:91:0;;;;;-1:-1:-1;;;;;23271:91:0;;;;;;23387:117;23393:58;23400:11;;23393:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;23453:6;23387:117;;;;;;;;;;;;;;;;;:5;:117::i;:::-;-1:-1:-1;;;;;23373:131:0;:11;:131;;;23520:37;;-1:-1:-1;;;;;23520:37:0;;;;;;;23550:6;;23520:37;;;;;;;;;;23123:442;;:::o;19079:375::-;-1:-1:-1;;;;;19182:20:0;;;19156:23;19182:20;;;:9;:20;;;;;;;;;;19239:8;:19;;;;;;19269:20;;;;:32;;;-1:-1:-1;;;;;;19269:32:0;;;;;;;19319:54;;19182:20;;;;;-1:-1:-1;;;;;19239:19:0;;;;19269:32;;19182:20;;;19319:54;;19156:23;19319:54;19386:60;19401:15;19418:9;19429:16;19386:14;:60::i;:::-;19079:375;;;;:::o;22382:153::-;22492:9;22382:153;:::o;22543:572::-;-1:-1:-1;;;;;22615:17:0;;22607:78;;;;-1:-1:-1;;;22607:78:0;;;;;;;;;22726:13;22742:56;22749:9;22742:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;22726:72;;22823:85;22830:33;22843:11;;22856:6;-1:-1:-1;;;;;22830:33:0;:12;:33::i;:::-;22823:85;;;;;;;;;;;;;;;;;:6;:85::i;:::-;-1:-1:-1;;;;;22809:99:0;;;:11;:99;;;-1:-1:-1;;;;;22992:13:0;;;;:8;:13;;;;;;;;;;22986:70;;;;;;;;;;;;;;22992:13;;;;;23007:6;;22986:70;;;;;;;;:5;:70::i;:::-;-1:-1:-1;;;;;22970:13:0;;;;;;:8;:13;;;;;;:86;;-1:-1:-1;;;;;;22970:86:0;-1:-1:-1;;;;;22970:86:0;;;;;;;;;;;23072:33;;22970:13;;;23072:33;;;;23098:6;;23072:33;;;;;;;;;;22543:572;;;:::o;22013:188::-;22099:6;22129:5;;;22161:12;-1:-1:-1;;;;;22153:6:0;;;;;;;;22145:29;;;;-1:-1:-1;;;22145:29:0;;;;;;;;;;-1:-1:-1;22192:1:0;22013:188;-1:-1:-1;;;;22013:188:0:o;20088:941::-;20193:6;-1:-1:-1;;;;;20183:16:0;:6;-1:-1:-1;;;;;20183:16:0;;;:30;;;;;20212:1;20203:6;-1:-1:-1;;;;;20203:10:0;;20183:30;20179:843;;;-1:-1:-1;;;;;20234:20:0;;;20230:383;;-1:-1:-1;;;;;20294:22:0;;20275:16;20294:22;;;:14;:22;;;;;;;;;20354:13;:60;;20413:1;20354:60;;;-1:-1:-1;;;;;20370:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;20390:13:0;;20370:34;;;;;;;;;:40;-1:-1:-1;;;20370:40:0;;-1:-1:-1;;;;;20370:40:0;20354:60;20335:79;;20433:16;20452:69;20458:9;20469:6;20452:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;20433:88;;20540:57;20557:6;20565:9;20576;20587;20540:16;:57::i;:::-;20230:383;;;;-1:-1:-1;;;;;20633:20:0;;;20629:382;;-1:-1:-1;;;;;20693:22:0;;20674:16;20693:22;;;:14;:22;;;;;;;;;20753:13;:60;;20812:1;20753:60;;;-1:-1:-1;;;;;20769:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;20789:13:0;;20769:34;;;;;;;;;:40;-1:-1:-1;;;20769:40:0;;-1:-1:-1;;;;;20769:40:0;20753:60;20734:79;;20832:16;20851:68;20857:9;20868:6;20851:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;20832:87;;20938:57;20955:6;20963:9;20974;20985;20938:16;:57::i;1237:181::-;1295:7;1327:5;;;1351:6;;;;1343:46;;;;-1:-1:-1;;;1343:46:0;;;;;;;;21037:630;21155:18;21176:77;21183:12;21176:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;21155:98;;21283:1;21268:12;:16;;;:85;;;;-1:-1:-1;;;;;;21288:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;21311:16:0;;21288:40;;;;;;;;;:50;:65;;;:50;;:65;21268:85;21264:329;;;-1:-1:-1;;;;;21368:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;21391:16:0;;21368:40;;;;;;;;;:57;;-1:-1:-1;;21368:57:0;-1:-1:-1;;;;;;;;21368:57:0;;;;;;21264:329;;;21493:33;;;;;;;;;;;;;;-1:-1:-1;;;;;21493:33:0;;;;;;;;;;-1:-1:-1;;;;;21454:22:0;;-1:-1:-1;21454:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;21454:72:0;-1:-1:-1;;21454:72:0;;;-1:-1:-1;;21454:72:0;;;;;;;;;;;;;;;21539:25;;;:14;:25;;;;;;;:44;;21454:72;21567:16;;21539:44;;;;;;;;;;;;;21264:329;21629:9;-1:-1:-1;;;;;21608:51:0;;21640:8;21650;21608:51;;;;;;;;;;;;;;;;21037:630;;;;;:::o;21675:161::-;21750:6;21788:12;-1:-1:-1;;;21777:9:0;;21769:32;;;;-1:-1:-1;;;21769:32:0;;;;;;;;;6851:16717;;;;;;;;;;-1:-1:-1;6851:16717:0;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;142:130;209:20;;234:33;209:20;234:33;;293:336;;;407:3;400:4;392:6;388:17;384:27;374:2;;425:1;422;415:12;374:2;-1:-1;445:20;;485:18;474:30;;471:2;;;517:1;514;507:12;471:2;551:4;543:6;539:17;527:29;;602:3;594:4;586:6;582:17;572:8;568:32;565:41;562:2;;;619:1;616;609:12;562:2;367:262;;;;;;774:128;840:20;;865:32;840:20;865:32;;909:126;974:20;;999:31;974:20;999:31;;1042:241;;1146:2;1134:9;1125:7;1121:23;1117:32;1114:2;;;1162:1;1159;1152:12;1114:2;1197:1;1214:53;1259:7;1239:9;1214:53;;;1204:63;1108:175;-1:-1;;;;1108:175;1290:366;;;1411:2;1399:9;1390:7;1386:23;1382:32;1379:2;;;1427:1;1424;1417:12;1379:2;1462:1;1479:53;1524:7;1504:9;1479:53;;;1469:63;;1441:97;1569:2;1587:53;1632:7;1623:6;1612:9;1608:22;1587:53;;;1577:63;;1548:98;1373:283;;;;;;1663:491;;;;1801:2;1789:9;1780:7;1776:23;1772:32;1769:2;;;1817:1;1814;1807:12;1769:2;1852:1;1869:53;1914:7;1894:9;1869:53;;;1859:63;;1831:97;1959:2;1977:53;2022:7;2013:6;2002:9;1998:22;1977:53;;;1967:63;;1938:98;2067:2;2085:53;2130:7;2121:6;2110:9;2106:22;2085:53;;;2075:63;;2046:98;1763:391;;;;;;2161:991;;;;;;;;2365:3;2353:9;2344:7;2340:23;2336:33;2333:2;;;2382:1;2379;2372:12;2333:2;2417:1;2434:53;2479:7;2459:9;2434:53;;;2424:63;;2396:97;2524:2;2542:53;2587:7;2578:6;2567:9;2563:22;2542:53;;;2532:63;;2503:98;2632:2;2650:53;2695:7;2686:6;2675:9;2671:22;2650:53;;;2640:63;;2611:98;2740:2;2758:53;2803:7;2794:6;2783:9;2779:22;2758:53;;;2748:63;;2719:98;2848:3;2867:51;2910:7;2901:6;2890:9;2886:22;2867:51;;;2857:61;;2827:97;2955:3;2974:53;3019:7;3010:6;2999:9;2995:22;2974:53;;;2964:63;;2934:99;3064:3;3083:53;3128:7;3119:6;3108:9;3104:22;3083:53;;;3073:63;;3043:99;2327:825;;;;;;;;;;;3159:490;;;;3299:2;3287:9;3278:7;3274:23;3270:32;3267:2;;;3315:1;3312;3305:12;3267:2;3350:1;3367:53;3412:7;3392:9;3367:53;;;3357:63;;3329:97;3485:2;3474:9;3470:18;3457:32;3509:18;3501:6;3498:30;3495:2;;;3541:1;3538;3531:12;3495:2;3569:64;3625:7;3616:6;3605:9;3601:22;3569:64;;;3559:74;;;;3436:203;3261:388;;;;;;3656:366;;;3777:2;3765:9;3756:7;3752:23;3748:32;3745:2;;;3793:1;3790;3783:12;3745:2;3828:1;3845:53;3890:7;3870:9;3845:53;;;3835:63;;3807:97;3935:2;3953:53;3998:7;3989:6;3978:9;3974:22;3953:53;;4029:865;;;;;;;4216:3;4204:9;4195:7;4191:23;4187:33;4184:2;;;4233:1;4230;4223:12;4184:2;4268:1;4285:53;4330:7;4310:9;4285:53;;;4275:63;;4247:97;4375:2;4393:53;4438:7;4429:6;4418:9;4414:22;4393:53;;;4383:63;;4354:98;4483:2;4501:53;4546:7;4537:6;4526:9;4522:22;4501:53;;;4491:63;;4462:98;4591:2;4609:51;4652:7;4643:6;4632:9;4628:22;4609:51;;;4599:61;;4570:96;4697:3;4716:53;4761:7;4752:6;4741:9;4737:22;4716:53;;;4706:63;;4676:99;4806:3;4825:53;4870:7;4861:6;4850:9;4846:22;4825:53;;;4815:63;;4785:99;4178:716;;;;;;;;;4901:364;;;5021:2;5009:9;5000:7;4996:23;4992:32;4989:2;;;5037:1;5034;5027:12;4989:2;5072:1;5089:53;5134:7;5114:9;5089:53;;;5079:63;;5051:97;5179:2;5197:52;5241:7;5232:6;5221:9;5217:22;5197:52;;5272:241;;5376:2;5364:9;5355:7;5351:23;5347:32;5344:2;;;5392:1;5389;5382:12;5344:2;5427:1;5444:53;5489:7;5469:9;5444:53;;5520:113;5603:24;5621:5;5603:24;;;5598:3;5591:37;5585:48;;;5640:104;5717:21;5732:5;5717:21;;5751:113;5834:24;5852:5;5834:24;;5871:152;5972:45;5992:24;6010:5;5992:24;;;5972:45;;6030:347;;6142:39;6175:5;6142:39;;;6193:71;6257:6;6252:3;6193:71;;;6186:78;;6269:52;6314:6;6309:3;6302:4;6295:5;6291:16;6269:52;;;6342:29;6364:6;6342:29;;;6333:39;;;;6122:255;-1:-1;;;6122:255;6731:376;;6891:67;6955:2;6950:3;6891:67;;;6991:34;6971:55;;-1:-1;;;7055:2;7046:12;;7039:31;7098:2;7089:12;;6877:230;-1:-1;;6877:230;7116:398;;7294:84;7376:1;7371:3;7294:84;;;-1:-1;;;7391:87;;7506:1;7497:11;;7280:234;-1:-1;;7280:234;7523:377;;7683:67;7747:2;7742:3;7683:67;;;7783:34;7763:55;;-1:-1;;;7847:2;7838:12;;7831:32;7891:2;7882:12;;7669:231;-1:-1;;7669:231;7909:327;;8069:67;8133:2;8128:3;8069:67;;;8169:29;8149:50;;8227:2;8218:12;;8055:181;-1:-1;;8055:181;8245:376;;8405:67;8469:2;8464:3;8405:67;;;8505:34;8485:55;;-1:-1;;;8569:2;8560:12;;8553:31;8612:2;8603:12;;8391:230;-1:-1;;8391:230;8630:396;;8790:67;8854:2;8849:3;8790:67;;;8890:34;8870:55;;8959:29;8954:2;8945:12;;8938:51;9017:2;9008:12;;8776:250;-1:-1;;8776:250;9035:371;;9195:67;9259:2;9254:3;9195:67;;;9295:34;9275:55;;-1:-1;;;9359:2;9350:12;;9343:26;9397:2;9388:12;;9181:225;-1:-1;;9181:225;9415:492;;9593:85;9675:2;9670:3;9593:85;;;9711:34;9691:55;;9780:34;9775:2;9766:12;;9759:56;-1:-1;;;9844:2;9835:12;;9828:42;9898:2;9889:12;;9579:328;-1:-1;;9579:328;9916:372;;10076:67;10140:2;10135:3;10076:67;;;10176:34;10156:55;;-1:-1;;;10240:2;10231:12;;10224:27;10279:2;10270:12;;10062:226;-1:-1;;10062:226;10297:398;;10457:67;10521:2;10516:3;10457:67;;;10557:34;10537:55;;10626:31;10621:2;10612:12;;10605:53;10686:2;10677:12;;10443:252;-1:-1;;10443:252;10704:477;;10882:85;10964:2;10959:3;10882:85;;;11000:34;10980:55;;11069:34;11064:2;11055:12;;11048:56;-1:-1;;;11133:2;11124:12;;11117:27;11172:2;11163:12;;10868:313;-1:-1;;10868:313;11190:314;;11350:67;11414:2;11409:3;11350:67;;;-1:-1;;;11430:37;;11495:2;11486:12;;11336:168;-1:-1;;11336:168;11513:332;;11673:67;11737:2;11732:3;11673:67;;;11773:34;11753:55;;11836:2;11827:12;;11659:186;-1:-1;;11659:186;11854:385;;12014:67;12078:2;12073:3;12014:67;;;12114:34;12094:55;;-1:-1;;;12178:2;12169:12;;12162:40;12230:2;12221:12;;12000:239;-1:-1;;12000:239;12248:327;;12408:67;12472:2;12467:3;12408:67;;;12508:29;12488:50;;12566:2;12557:12;;12394:181;-1:-1;;12394:181;12584:431;;12762:85;12844:2;12839:3;12762:85;;;12880:34;12860:55;;12949:28;12944:2;12935:12;;12928:50;13006:2;12997:12;;12748:267;-1:-1;;12748:267;13024:332;;13184:67;13248:2;13243:3;13184:67;;;13284:34;13264:55;;13347:2;13338:12;;13170:186;-1:-1;;13170:186;13484:110;13565:23;13582:5;13565:23;;13601:107;13680:22;13696:5;13680:22;;13715:124;13797:36;13827:5;13797:36;;13846:110;13927:23;13944:5;13927:23;;13963:650;;14218:148;14362:3;14218:148;;;14211:155;;14377:75;14448:3;14439:6;14377:75;;;14474:2;14469:3;14465:12;14458:19;;14488:75;14559:3;14550:6;14488:75;;;-1:-1;14585:2;14576:12;;14199:414;-1:-1;;14199:414;14620:372;;14819:148;14963:3;14819:148;;14999:372;;15198:148;15342:3;15198:148;;15378:372;;15577:148;15721:3;15577:148;;15757:213;15875:2;15860:18;;15889:71;15864:9;15933:6;15889:71;;15977:201;16089:2;16074:18;;16103:65;16078:9;16141:6;16103:65;;16185:213;16303:2;16288:18;;16317:71;16292:9;16361:6;16317:71;;16405:771;16663:3;16648:19;;16678:71;16652:9;16722:6;16678:71;;;16760:72;16828:2;16817:9;16813:18;16804:6;16760:72;;;16843;16911:2;16900:9;16896:18;16887:6;16843:72;;;16926;16994:2;16983:9;16979:18;16970:6;16926:72;;;17009:73;17077:3;17066:9;17062:19;17053:6;17009:73;;;17093;17161:3;17150:9;17146:19;17137:6;17093:73;;;16634:542;;;;;;;;;;17183:547;17385:3;17370:19;;17400:71;17374:9;17444:6;17400:71;;;17482:72;17550:2;17539:9;17535:18;17526:6;17482:72;;;17565;17633:2;17622:9;17618:18;17609:6;17565:72;;;17648;17716:2;17705:9;17701:18;17692:6;17648:72;;;17356:374;;;;;;;;17737:547;17939:3;17924:19;;17954:71;17928:9;17998:6;17954:71;;;18036:72;18104:2;18093:9;18089:18;18080:6;18036:72;;;18119;18187:2;18176:9;18172:18;18163:6;18119:72;;;18202;18270:2;18259:9;18255:18;18246:6;18202:72;;18291:539;18489:3;18474:19;;18504:71;18478:9;18548:6;18504:71;;;18586:68;18650:2;18639:9;18635:18;18626:6;18586:68;;18837:293;18971:2;18985:47;;;18956:18;;19046:74;18956:18;19106:6;19046:74;;19445:407;19636:2;19650:47;;;19621:18;;19711:131;19621:18;19711:131;;19859:407;20050:2;20064:47;;;20035:18;;20125:131;20035:18;20125:131;;20273:407;20464:2;20478:47;;;20449:18;;20539:131;20449:18;20539:131;;20687:407;20878:2;20892:47;;;20863:18;;20953:131;20863:18;20953:131;;21101:407;21292:2;21306:47;;;21277:18;;21367:131;21277:18;21367:131;;21515:407;21706:2;21720:47;;;21691:18;;21781:131;21691:18;21781:131;;21929:407;22120:2;22134:47;;;22105:18;;22195:131;22105:18;22195:131;;22343:407;22534:2;22548:47;;;22519:18;;22609:131;22519:18;22609:131;;22757:407;22948:2;22962:47;;;22933:18;;23023:131;22933:18;23023:131;;23171:407;23362:2;23376:47;;;23347:18;;23437:131;23347:18;23437:131;;23585:407;23776:2;23790:47;;;23761:18;;23851:131;23761:18;23851:131;;23999:407;24190:2;24204:47;;;24175:18;;24265:131;24175:18;24265:131;;24413:407;24604:2;24618:47;;;24589:18;;24679:131;24589:18;24679:131;;25047:209;25163:2;25148:18;;25177:69;25152:9;25219:6;25177:69;;25263:316;25405:2;25390:18;;25419:69;25394:9;25461:6;25419:69;;;25499:70;25565:2;25554:9;25550:18;25541:6;25499:70;;25586:205;25700:2;25685:18;;25714:67;25689:9;25754:6;25714:67;;25798:211;25915:2;25900:18;;25929:70;25904:9;25972:6;25929:70;;26016:209;26132:2;26117:18;;26146:69;26121:9;26188:6;26146:69;;26232:320;26376:2;26361:18;;26390:70;26365:9;26433:6;26390:70;;;26471:71;26538:2;26527:9;26523:18;26514:6;26471:71;;26559:118;26643:12;;26614:63;26814:163;26917:19;;;26966:4;26957:14;;26910:67;26986:145;27122:3;27100:31;-1:-1;27100:31;27139:91;;27201:24;27219:5;27201:24;;27237:85;27303:13;27296:21;;27279:43;27329:72;27391:5;27374:27;27408:121;-1:-1;;;;;27470:54;;27453:76;27615:88;27687:10;27676:22;;27659:44;27710:81;27781:4;27770:16;;27753:38;27798:104;-1:-1;;;;;27859:38;;27842:60;27909:106;;27987:23;28004:5;27987:23;;28023:268;28088:1;28095:101;28109:6;28106:1;28103:13;28095:101;;;28176:11;;;28170:18;28157:11;;;28150:39;28131:2;28124:10;28095:101;;;28211:6;28208:1;28205:13;28202:2;;;-1:-1;;28276:1;28258:16;;28251:27;28072:219;28380:97;28468:2;28448:14;-1:-1;;28444:28;;28428:49;28485:117;28554:24;28572:5;28554:24;;;28547:5;28544:35;28534:2;;28593:1;28590;28583:12;28609:117;28678:24;28696:5;28678:24;;28857:115;28925:23;28942:5;28925:23;;28979:113;29046:22;29062:5;29046:22;
Swarm Source
bzzr://c221c1ca56b974e3af2c20b44a485165ae6791a906765b0fa6b6448aefee706f
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.