Token Moola
Overview ERC20
Price
$0.00 @ 0.007729 CELO (-2.47%)
Fully Diluted Market Cap
Total Supply:
100,000,000 MOO
Holders:
4,803 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
Market
Volume (24H) | : | $552.84 |
Market Capitalization | : | $267,389.00 |
Circulating Supply | : | 73,766,232.00 MOO |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | ![]() | 0X17700282592D6917F6A73D0BF8ACCF4D578C131E-0X7D00CD74FF385C955EA3D79E47BF06BD7386387D | $0.0036 0.0000001 Btc | $459.75 125,226.584 0X17700282592D6917F6A73D0BF8ACCF4D578C131E | 83.2167% |
2 | ![]() | 0X17700282592D6917F6A73D0BF8ACCF4D578C131E-0X471ECE3750DA237F93B8E339C536989B8978A438 | $0.0036 0.0000001 Btc | $68.43 18,580.296 0X17700282592D6917F6A73D0BF8ACCF4D578C131E | 12.3472% |
3 | ![]() | 0X17700282592D6917F6A73D0BF8ACCF4D578C131E-0X7037F7296B2FC7908DE7B57A89EFAA8319F0C500 | $0.0036 0.0000001 Btc | $24.53 6,675.581 0X17700282592D6917F6A73D0BF8ACCF4D578C131E | 4.4361% |
Contract Name:
MooToken
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-26 */ // Sources flattened with hardhat v2.11.2 https://hardhat.org // File contracts/interfaces/INonTransferrableToken.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.3; /** * A token that cannot be transferred. */ interface INonTransferrableToken { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); // Views function totalSupply() external view returns (uint256); function balanceOf(address _account) external view returns (uint256); } // File contracts/interfaces/IHasVotes.sol /** * Reads the votes that an account has. */ interface IHasVotes { /** * @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); /** * @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, uint256 blockNumber) external view returns (uint96); } // File contracts/interfaces/IVotingDelegates.sol /** * Interface for a contract that keeps track of voting delegates. */ interface IVotingDelegates { /// @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, uint256 previousBalance, uint256 newBalance ); /// @notice An event emitted when an account's voting power is transferred. // - If `from` is `address(0)`, power was minted. // - If `to` is `address(0)`, power was burned. event Transfer(address indexed from, address indexed to, uint256 amount); /// @notice Name of the contract. // Required for signing. function name() external view returns (string memory); /// @notice A record of each accounts delegate function delegates(address delegatee) external view returns (address); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external; /** * @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, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external; /** * @notice Get the amount of voting power of an account * @param account The address of the account to get the balance of * @return The amount of voting power held */ function votingPower(address account) external view returns (uint96); /// @notice Total voting power in existence. function totalVotingPower() external view returns (uint96); } // File contracts/voting/VotingPower.sol /** * Power to vote. Heavily based on Uni. */ contract VotingPower is IHasVotes, IVotingDelegates { // Name of the token. This cannot be changed after creating the token. string private _name; // Total amount of voting power available. uint96 private totalVotingPowerSupply; constructor(string memory name_) { _name = name_; } function name() public view virtual override returns (string memory) { return _name; } /** * @notice Mint new voting power * @param dst The address of the destination account * @param amount The amount of voting power to be minted */ function _mintVotes(address dst, uint96 amount) internal { require(dst != address(0), "VotingPower::_mintVotes: cannot mint to the zero address"); // transfer the amount to the recipient balances[dst] = add96(balances[dst], amount, "VotingPower::_mintVotes: mint amount overflows"); totalVotingPowerSupply = add96( totalVotingPowerSupply, amount, "VotingPower::_mintVotes: total supply overflows" ); emit Transfer(address(0), dst, amount); // move delegates _moveDelegates(address(0), delegates[dst], amount); } /** * @notice Burn voting power * @param src The address of the source account * @param amount The amount of voting power to be burned */ function _burnVotes(address src, uint96 amount) internal { require(src != address(0), "VotingPower::_burnVotes: cannot burn from the zero address"); // transfer the amount to the recipient balances[src] = sub96(balances[src], amount, "VotingPower::_burnVotes: burn amount underflows"); totalVotingPowerSupply = sub96( totalVotingPowerSupply, amount, "VotingPower::_burnVotes: total supply underflows" ); emit Transfer(src, address(0), amount); // move delegates _moveDelegates(delegates[src], address(0), amount); } /** * @notice Get the amount of voting power of an account * @param account The address of the account to get the balance of * @return The amount of voting power held */ function votingPower(address account) public view override returns (uint96) { return balances[account]; } function totalVotingPower() public view override returns (uint96) { return totalVotingPowerSupply; } //////////////////////////////// // // The below code is copied from ../uniswap-governance/contracts/Uni.sol. // Changes are marked with "XXX". // //////////////////////////////// // XXX: deleted name, symbol, decimals, totalSupply, minter, mintingAllowedAfter, // minimumTimeBetweenMints, mintCap, allowances // Official record of token balances for each account // XXX: internal => private visibility mapping (address => uint96) private balances; /// @notice A record of each accounts delegate mapping (address => address) public override 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)"); // XXX: deleted PERMIT_TYPEHASH /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; // XXX: deleted MinterChanged // XXX: deleted DelegateChanged, DelegateVotesChanged, Transfer and moved them to IVotingPower // XXX: deleted Approval // XXX: deleted constructor, setMinter, mint, allowance, approve, permit, balanceOf // XXX: deleted transfer, transferFrom /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public override { 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 override { // XXX_CHANGED: name => _name 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), "Uni::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "Uni::delegateBySig: invalid nonce"); // XXX: added linter disable // solhint-disable-next-line not-rely-on-time require(block.timestamp <= expiry, "Uni::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 override 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 override returns (uint96) { require(blockNumber < block.number, "Uni::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), "Uni::_transferTokens: cannot transfer from the zero address"); require(dst != address(0), "Uni::_transferTokens: cannot transfer to the zero address"); balances[src] = sub96(balances[src], amount, "Uni::_transferTokens: transfer amount exceeds balance"); balances[dst] = add96(balances[dst], amount, "Uni::_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, "Uni::_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, "Uni::_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, "Uni::_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 view returns (uint) { uint256 chainId; // XXX: added linter disable // solhint-disable-next-line no-inline-assembly assembly { chainId := chainid() } return chainId; } } // File contracts/voting/VotingToken.sol /** * A non-transferrable token that can vote. */ contract VotingToken is INonTransferrableToken, VotingPower { string private _symbol; uint8 private immutable _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor( string memory name_, string memory symbol_, uint8 decimals_ ) VotingPower(name_) { _symbol = symbol_; _decimals = decimals_; } function name() public view override(INonTransferrableToken, VotingPower) returns (string memory) { return VotingPower.name(); } function symbol() public view override returns (string memory) { return _symbol; } function decimals() public view override returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return totalVotingPower(); } function balanceOf(address _account) public view override returns (uint256) { return votingPower(_account); } } // File contracts/voting/TransferrableVotingToken.sol contract TransferrableVotingToken is VotingToken { /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. * @param initialSupply_ Initial supply of tokens * @param account_ The initial account to grant all the tokens */ constructor( string memory name_, string memory symbol_, uint8 decimals_, uint96 initialSupply_, address account_ ) VotingToken(name_, symbol_, decimals_) { _mintVotes(account_, initialSupply_); } //////////////////////////////// // // The below code is copied from Uniswap's Uni.sol. // Changes are marked with "XXX". // //////////////////////////////// // XXX: deleted name, symbol, decimals, totalSupply, minter, mintingAllowedAfter, // minimumTimeBetweenMints, mintCap // Allowance amounts on behalf of others mapping (address => mapping (address => uint96)) internal allowances; // XXX: balances, delegates, Checkpoint, checkpoints, // numCheckpoints, DOMAIN_TYPEHASH, DELEGATION_TYPEHASH // are inherited from VotingPower.sol /// @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)"); // XXX: nonces is inherited from VotingPower.sol // XXX: deleted MinterChanged // XXX: deleted DelegateChanged, DelegateVotesChanged, Transfer and moved them to IVotingPower /// @notice The standard EIP-20 approval event event Approval(address indexed owner, address indexed spender, uint256 amount); // XXX: deleted constructor, setMinter, mint /** * @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]; } // XXX_ADDED: upgrade to Solidity 0.8.3, which doesn't allow use of uintn(-1) uint256 internal constant MAX_INT = 2**256 - 1; uint96 internal constant MAX_INT_96 = 2**96 - 1; /** * @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; // XXX: uint256(-1) => MAX_INT if (rawAmount == MAX_INT) { // XXX: uint96(-1) => MAX_INT_96 amount = MAX_INT_96; } else { amount = safe96(rawAmount, "Uni::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; // XXX: uint256(-1) => MAX_INT if (rawAmount == MAX_INT) { // XXX: uint96(-1) => MAX_INT_oy amount = MAX_INT_96; } else { amount = safe96(rawAmount, "Uni::permit: amount exceeds 96 bits"); } // XXX_CHANGED: name => name() 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), "Uni::permit: invalid signature"); require(signatory == owner, "Uni::permit: unauthorized"); // XXX: added linter disable // solhint-disable-next-line not-rely-on-time require(block.timestamp <= deadline, "Uni::permit: signature expired"); allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } // XXX: deleted balanceOf /** * @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) { // XXX_ADDED require( dst != address(this), "TransferrableVotingToken::transfer: cannot send tokens to contract" ); uint96 amount = safe96(rawAmount, "Uni::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) { // XXX_ADDED require( dst != address(this), "TransferrableVotingToken::transferFrom: cannot send tokens to contract" ); address spender = msg.sender; uint96 spenderAllowance = allowances[src][spender]; uint96 amount = safe96(rawAmount, "Uni::approve: amount exceeds 96 bits"); // XXX: uint96(-1) => MAX_INT_96 if (spender != src && spenderAllowance != MAX_INT_96) { uint96 newAllowance = sub96(spenderAllowance, amount, "Uni::transferFrom: transfer amount exceeds spender allowance"); allowances[src][spender] = newAllowance; emit Approval(src, spender, newAllowance); } _transferTokens(src, dst, amount); return true; } // XXX: rest is in VotingPower.sol } // File contracts/MooToken.sol /** * Moola governance token, based on Ube. */ contract MooToken is TransferrableVotingToken { /// @notice The maximum supply of Ube Tokens. uint96 public constant MAX_SUPPLY = 100_000_000e18; /** * @notice Construct a new Moo token * Note: this contract doesn't specify an initial minter, so there is no way new * tokens can get created. * @param _initialOwner The initial account to grant all the tokens */ constructor(address _initialOwner) TransferrableVotingToken( "Moola", "MOO", 18, MAX_SUPPLY, _initialOwner ) // solhint-disable-next-line no-empty-blocks { // Do nothing } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"}],"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"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalVotingPower","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"votingPower","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620032a3380380620032a38339810160408190526200003491620007f0565b604051806040016040528060058152602001644d6f6f6c6160d81b815250604051806040016040528060038152602001624d4f4f60e81b81525060126a52b7d2dcc80cd2e400000084848484828060009080519060200190620000999291906200074a565b50508151620000b09060079060208501906200074a565b5060f81b7fff000000000000000000000000000000000000000000000000000000000000001660805250620000e890508183620000f4565b50505050505062000964565b6001600160a01b038216620001765760405162461bcd60e51b815260206004820152603860248201527f566f74696e67506f7765723a3a5f6d696e74566f7465733a2063616e6e6f742060448201527f6d696e7420746f20746865207a65726f2061646472657373000000000000000060648201526084015b60405180910390fd5b6001600160a01b03821660009081526002602090815260409182902054825160608101909352602e808452620001c4936001600160601b039092169285929190620031c690830139620002b2565b6001600160a01b03831660009081526002602090815260409182902080546001600160601b0319166001600160601b03948516179055600154825160608101909352602f808452620002289491909116928592909190620031f490830139620002b2565b600180546001600160601b0319166001600160601b0392831617905560405190821681526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36001600160a01b03808316600090815260036020526040812054620002ae92168362000304565b5050565b600080620002c18486620008a1565b9050846001600160601b0316816001600160601b031610158390620002fb5760405162461bcd60e51b81526004016200016d919062000820565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156200033057506000816001600160601b0316115b15620004cc576001600160a01b0383161562000401576001600160a01b03831660009081526005602052604081205463ffffffff16908162000374576000620003c3565b6001600160a01b0385166000908152600460205260408120906200039a600185620008c6565b63ffffffff16815260208101919091526040016000205464010000000090046001600160601b03165b90506000620003ed82856040518060600160405280602781526020016200327c60279139620004d1565b9050620003fd8684848462000520565b5050505b6001600160a01b03821615620004cc576001600160a01b03821660009081526005602052604081205463ffffffff1690816200043f5760006200048e565b6001600160a01b03841660009081526004602052604081209062000465600185620008c6565b63ffffffff16815260208101919091526040016000205464010000000090046001600160601b03165b90506000620004b882856040518060600160405280602681526020016200322360269139620002b2565b9050620004c88584848462000520565b5050505b505050565b6000836001600160601b0316836001600160601b0316111582906200050b5760405162461bcd60e51b81526004016200016d919062000820565b50620005188385620008ee565b949350505050565b60006200054743604051806060016040528060338152602001620032496033913962000717565b905060008463ffffffff16118015620005a457506001600160a01b038516600090815260046020526040812063ffffffff83169162000588600188620008c6565b63ffffffff908116825260208201929092526040016000205416145b1562000617576001600160a01b03851660009081526004602052604081208391620005d1600188620008c6565b63ffffffff168152602081019190915260400160002080546001600160601b039290921664010000000002600160201b600160801b0319909216919091179055620006c2565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000908152600482528681208b8616825290915294909420925183549451909116640100000000026001600160801b03199094169116179190911790556200069184600162000876565b6001600160a01b0386166000908152600560205260409020805463ffffffff191663ffffffff929092169190911790555b604080516001600160601b038086168252841660208201526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000816401000000008410620007425760405162461bcd60e51b81526004016200016d919062000820565b509192915050565b828054620007589062000911565b90600052602060002090601f0160209004810192826200077c5760008555620007c7565b82601f106200079757805160ff1916838001178555620007c7565b82800160010185558215620007c7579182015b82811115620007c7578251825591602001919060010190620007aa565b50620007d5929150620007d9565b5090565b5b80821115620007d55760008155600101620007da565b60006020828403121562000802578081fd5b81516001600160a01b038116811462000819578182fd5b9392505050565b6000602080835283518082850152825b818110156200084e5785810183015185820160400152820162000830565b81811115620008605783604083870101525b50601f01601f1916929092016040019392505050565b600063ffffffff8083168185168083038211156200089857620008986200094e565b01949350505050565b60006001600160601b038281168482168083038211156200089857620008986200094e565b600063ffffffff83811690831681811015620008e657620008e66200094e565b039392505050565b60006001600160601b0383811690831681811015620008e657620008e66200094e565b600181811c908216806200092657607f821691505b602082108114156200094857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160f81c61284362000983600039600061025c01526128436000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c806370a08231116100e3578063c07473f61161008c578063dd62ed3e11610066578063dd62ed3e14610454578063e7a324dc146104a8578063f1127ed8146104cf57610198565b8063c07473f6146103ea578063c3cda5201461042e578063d505accf1461044157610198565b806395d89b41116100bd57806395d89b41146103bc578063a9059cbb146103c4578063b4b5ea57146103d757610198565b806370a0823114610376578063782d6fe1146103895780637ecebe001461039c57610198565b8063313ce567116101455780635c19a95c1161011f5780635c19a95c14610310578063671b3793146103255780636fcfff451461033b57610198565b8063313ce5671461025557806332cb6b0c14610286578063587cde1e146102b557610198565b806320606b701161017657806320606b70146101f457806323b872dd1461021b57806330adf81f1461022e57610198565b806306fdde031461019d578063095ea7b3146101bb57806318160ddd146101de575b600080fd5b6101a5610541565b6040516101b29190612473565b60405180910390f35b6101ce6101c93660046122e3565b610550565b60405190151581526020016101b2565b6101e661065e565b6040519081526020016101b2565b6101e67f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6101ce61022936600461223f565b61068a565b6101e67f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101b2565b6102986a52b7d2dcc80cd2e400000081565b6040516bffffffffffffffffffffffff90911681526020016101b2565b6102eb6102c33660046121f3565b60036020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b2565b61032361031e3660046121f3565b6108fb565b005b6001546bffffffffffffffffffffffff16610298565b6103616103493660046121f3565b60056020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016101b2565b6101e66103843660046121f3565b610908565b6102986103973660046122e3565b610942565b6101e66103aa3660046121f3565b60066020526000908152604090205481565b6101a5610c59565b6101ce6103d23660046122e3565b610ceb565b6102986103e53660046121f3565b610df4565b6102986103f83660046121f3565b73ffffffffffffffffffffffffffffffffffffffff166000908152600260205260409020546bffffffffffffffffffffffff1690565b61032361043c36600461230c565b610e92565b61032361044f36600461227a565b61127d565b6101e661046236600461220d565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526008602090815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b6101e67fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6105186104dd366004612363565b600460209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b6040805163ffffffff90931683526bffffffffffffffffffffffff9091166020830152016101b2565b606061054b6117d2565b905090565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561058e57506bffffffffffffffffffffffff6105b3565b6105b0836040518060600160405280602481526020016127bb602491396117e1565b90505b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff871690811790915590519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a360019150505b92915050565b60006106776001546bffffffffffffffffffffffff1690565b6bffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff831630141561075d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604660248201527f5472616e736665727261626c65566f74696e67546f6b656e3a3a7472616e736660448201527f657246726f6d3a2063616e6e6f742073656e6420746f6b656e7320746f20636f60648201527f6e74726163740000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602090815260408083203380855290835281842054825160608101909352602480845291946bffffffffffffffffffffffff9091169390926107c59288926127bb908301396117e1565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561081157506bffffffffffffffffffffffff82811614155b156108e357600061083b83836040518060600160405280603c8152602001612682603c9139611833565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600860209081526040808320948a168084529482529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff87169081179091559151918252939450919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505b6108ee8787836118a1565b5060019695505050505050565b6109053382611bb3565b50565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600260205260409020546bffffffffffffffffffffffff165b919050565b60004382106109d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f556e693a3a6765745072696f72566f7465733a206e6f7420796574206465746560448201527f726d696e656400000000000000000000000000000000000000000000000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205463ffffffff1680610a0e576000915050610658565b73ffffffffffffffffffffffffffffffffffffffff841660009081526004602052604081208491610a4060018561257b565b63ffffffff90811682526020820192909252604001600020541611610ac65773ffffffffffffffffffffffffffffffffffffffff8416600090815260046020526040812090610a9060018461257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff1691506106589050565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260046020908152604080832083805290915290205463ffffffff16831015610b0e576000915050610658565b600080610b1c60018461257b565b90505b8163ffffffff168163ffffffff161115610c015760006002610b41848461257b565b610b4b9190612533565b610b55908361257b565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260046020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff1691810191909152919250871415610bd5576020015194506106589350505050565b805163ffffffff16871115610bec57819350610bfa565b610bf760018361257b565b92505b5050610b1f565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260046020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b606060078054610c68906125c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c94906125c5565b8015610ce15780601f10610cb657610100808354040283529160200191610ce1565b820191906000526020600020905b815481529060010190602001808311610cc457829003601f168201915b5050505050905090565b600073ffffffffffffffffffffffffffffffffffffffff8316301415610db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5472616e736665727261626c65566f74696e67546f6b656e3a3a7472616e736660448201527f65723a2063616e6e6f742073656e6420746f6b656e7320746f20636f6e74726160648201527f6374000000000000000000000000000000000000000000000000000000000000608482015260a401610754565b6000610ddd83604051806060016040528060258152602001612796602591396117e1565b9050610dea3385836118a1565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205463ffffffff1680610e2c576000610e8b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020526040812090610e5d60018461257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff165b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666000604051610ec491906123a1565b6040518091039020610ed34690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c084015273ffffffffffffffffffffffffffffffffffffffff8b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401909252815191909301207f1901000000000000000000000000000000000000000000000000000000000000610160830152610162820183905261018282018190529192506000906101a201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611045573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f556e693a3a64656c656761746542795369673a20696e76616c6964207369676e60448201527f61747572650000000000000000000000000000000000000000000000000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040812080549161114483612619565b9190505589146111d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f556e693a3a64656c656761746542795369673a20696e76616c6964206e6f6e6360448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610754565b87421115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f556e693a3a64656c656761746542795369673a207369676e617475726520657860448201527f70697265640000000000000000000000000000000000000000000000000000006064820152608401610754565b611270818b611bb3565b505050505b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8614156112ba57506bffffffffffffffffffffffff6112df565b6112dc866040518060600160405280602381526020016126f3602391396117e1565b90505b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661130a610541565b805190602001206113184690565b604080516020810194909452830191909152606082015230608082015260a001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152918152815160209283012073ffffffffffffffffffffffffffffffffffffffff8c166000908152600690935290822080549193507f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918c918c918c91866113c983612619565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810188905260e001604051602081830303815290604052805190602001209050600082826040516020016114709291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff8b169284019290925260608301899052608083018890529092509060019060a0016020604051602081039080840390855afa1580156114f9573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f556e693a3a7065726d69743a20696e76616c6964207369676e617475726500006044820152606401610754565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f556e693a3a7065726d69743a20756e617574686f72697a6564000000000000006044820152606401610754565b884211156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f556e693a3a7065726d69743a207369676e6174757265206578706972656400006044820152606401610754565b84600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516117bc91906bffffffffffffffffffffffff91909116815260200190565b60405180910390a3505050505050505050505050565b606060008054610c68906125c5565b6000816c01000000000000000000000000841061182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff161115829061188e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b5061189983856125a0565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f556e693a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160448201527f6e736665722066726f6d20746865207a65726f206164647265737300000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff82166119e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f556e693a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160448201527f6e7366657220746f20746865207a65726f2061646472657373000000000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020908152604091829020548251606081019093526035808452611a44936bffffffffffffffffffffffff90921692859291906126be90830139611833565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260026020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff96871617905592861682529082902054825160608101909352602f808452611ad694919091169285929091906127df90830139611c67565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff968716179055905193851684529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260036020526040808220548584168352912054611bae92918216911683611cd8565b505050565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260036020818152604080842080546002845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611c61828483611cd8565b50505050565b600080611c74848661250c565b9050846bffffffffffffffffffffffff16816bffffffffffffffffffffffff1610158390611ccf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d2257506000816bffffffffffffffffffffffff16115b15611bae5773ffffffffffffffffffffffffffffffffffffffff831615611e145773ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604081205463ffffffff169081611d7c576000611ddb565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260046020526040812090611dad60018561257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff165b90506000611e02828560405180606001604052806027815260200161276f60279139611833565b9050611e1086848484611ef9565b5050505b73ffffffffffffffffffffffffffffffffffffffff821615611bae5773ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604081205463ffffffff169081611e69576000611ec8565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260046020526040812090611e9a60018561257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff165b90506000611eef828560405180606001604052806026815260200161271660269139611c67565b9050611275858484845b6000611f1d4360405180606001604052806033815260200161273c6033913961217c565b905060008463ffffffff16118015611f84575073ffffffffffffffffffffffffffffffffffffffff8516600090815260046020526040812063ffffffff831691611f6860018861257b565b63ffffffff908116825260208201929092526040016000205416145b1561201a5773ffffffffffffffffffffffffffffffffffffffff851660009081526004602052604081208391611fbb60018861257b565b63ffffffff168152602081019190915260400160002080546bffffffffffffffffffffffff92909216640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff909216919091179055612115565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000908152600482528681208b8616825290915294909420925183549451909116640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000000000009094169116179190911790556120bc8460016124e4565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff929092169190911790555b604080516bffffffffffffffffffffffff80861682528416602082015273ffffffffffffffffffffffffffffffffffffffff8716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841061182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b803573ffffffffffffffffffffffffffffffffffffffff8116811461093d57600080fd5b803560ff8116811461093d57600080fd5b600060208284031215612204578081fd5b610e8b826121be565b6000806040838503121561221f578081fd5b612228836121be565b9150612236602084016121be565b90509250929050565b600080600060608486031215612253578081fd5b61225c846121be565b925061226a602085016121be565b9150604084013590509250925092565b600080600080600080600060e0888a031215612294578283fd5b61229d886121be565b96506122ab602089016121be565b955060408801359450606088013593506122c7608089016121e2565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156122f5578182fd5b6122fe836121be565b946020939093013593505050565b60008060008060008060c08789031215612324578182fd5b61232d876121be565b95506020870135945060408701359350612349606088016121e2565b92506080870135915060a087013590509295509295509295565b60008060408385031215612375578182fd5b61237e836121be565b9150602083013563ffffffff81168114612396578182fd5b809150509250929050565b600080835482600182811c9150808316806123bd57607f831692505b60208084108214156123f6577f4e487b710000000000000000000000000000000000000000000000000000000087526022600452602487fd5b81801561240a576001811461243957612465565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650612465565b60008a815260209020885b8681101561245d5781548b820152908501908301612444565b505084890196505b509498975050505050505050565b6000602080835283518082850152825b8181101561249f57858101830151858201604001528201612483565b818111156124b05783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600063ffffffff80831681851680830382111561250357612503612652565b01949350505050565b60006bffffffffffffffffffffffff80831681851680830382111561250357612503612652565b600063ffffffff8084168061256f577f4e487b710000000000000000000000000000000000000000000000000000000083526012600452602483fd5b92169190910492915050565b600063ffffffff8381169083168181101561259857612598612652565b039392505050565b60006bffffffffffffffffffffffff8381169083168181101561259857612598612652565b600181811c908216806125d957607f821691505b60208210811415612613577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561264b5761264b612652565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfe556e693a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365556e693a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365556e693a3a7065726d69743a20616d6f756e7420657863656564732039362062697473556e693a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773556e693a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473556e693a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773556e693a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473556e693a3a617070726f76653a20616d6f756e7420657863656564732039362062697473556e693a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773a264697066735822122066747c4bbec5df9c49f41b4a2d51306c94e5e3e76183f20fe801ac7067f8646364736f6c63430008030033566f74696e67506f7765723a3a5f6d696e74566f7465733a206d696e7420616d6f756e74206f766572666c6f7773566f74696e67506f7765723a3a5f6d696e74566f7465733a20746f74616c20737570706c79206f766572666c6f7773556e693a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773556e693a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473556e693a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77730000000000000000000000000b48321965eb8a982dec25b43542e07a202d931a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000b48321965eb8a982dec25b43542e07a202d931a
-----Decoded View---------------
Arg [0] : _initialOwner (address): 0x0b48321965eb8a982dec25b43542e07a202d931a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b48321965eb8a982dec25b43542e07a202d931a
Deployed ByteCode Sourcemap
24323:695:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16307:183;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20009:503;;;;;;:::i;:::-;;:::i;:::-;;;5079:14:1;;5072:22;5054:41;;5042:2;5027:18;20009:503:0;5009:92:1;16702:106:0;;;:::i;:::-;;;5252:25:1;;;5240:2;5225:18;16702:106:0;5207:76:1;7596:122:0;;7638:80;7596:122;;23297:885;;;;;;:::i;:::-;;:::i;18375:137::-;;18417:95;18375:137;;16602:92;;;13218:4:1;16677:9:0;13206:17:1;13188:36;;13176:2;13161:18;16602:92:0;13143:87:1;24427:50:0;;24463:14;24427:50;;;;;13410:26:1;13398:39;;;13380:58;;13368:2;13353:18;24427:50:0;13335:109:1;7037:54:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4859:42:1;4847:55;;;4829:74;;4817:2;4802:18;7037:54:0;4784:125:1;8545:111:0;;;;;;:::i;:::-;;:::i;:::-;;6353:114;6437:22;;;;6353:114;;7474:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12724:10:1;12712:23;;;12694:42;;12682:2;12667:18;7474:49:0;12649:93:1;16816:164:0;;;;;;:::i;:::-;;:::i;10893:1226::-;;;;;;:::i;:::-;;:::i;8049:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;16498:96;;;:::i;22581:406::-;;;;;;:::i;:::-;;:::i;10231:231::-;;;;;;:::i;:::-;;:::i;6226:119::-;;;;;;:::i;:::-;6320:17;;6294:6;6320:17;;;:8;:17;;;;;;;;;6226:119;9090:940;;;;;;:::i;:::-;;:::i;21002:1282::-;;;;;;:::i;:::-;;:::i;19203:136::-;;;;;;:::i;:::-;19303:19;;;;19279:4;19303:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;;;19203:136;7812:117;;7858:71;7812:117;;7335:70;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12947:10:1;12935:23;;;12917:42;;13007:26;12995:39;;;12990:2;12975:18;;12968:67;12890:18;7335:70:0;12872:169:1;16307:183:0;16426:13;16464:18;:16;:18::i;:::-;16457:25;;16307:183;:::o;20009:503::-;20077:4;20094:13;19466:10;20162:9;:20;20158:217;;;-1:-1:-1;19521:9:0;20158:217;;;20306:57;20313:9;20306:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;20297:66;;20158:217;20398:10;20387:22;;;;:10;:22;;;;;;;;;:31;;;;;;;;;;;;:40;;;;;;;;;;;;;20445:37;;13380:58:1;;;20387:31:0;;20398:10;20445:37;;13353:18:1;20445:37:0;;;;;;;20500:4;20493:11;;;20009:503;;;;;:::o;16702:106::-;16755:7;16782:18;6437:22;;;;6353:114;;16782:18;16775:25;;;;16702:106;:::o;23297:885::-;23379:4;23440:20;;;23455:4;23440:20;;23418:140;;;;;;;8069:2:1;23418:140:0;;;8051:21:1;8108:2;8088:18;;;8081:30;8147:34;8127:18;;;8120:62;8218:34;8198:18;;;8191:62;8290:8;8269:19;;;8262:37;8316:19;;23418:140:0;;;;;;;;;23634:15;;;23569;23634;;;:10;:15;;;;;;;;23587:10;23634:24;;;;;;;;;;23685:57;;;;;;;;;;;;23587:10;;23634:24;;;;;23569:15;;23685:57;;23692:9;;23685:57;;;;;:6;:57::i;:::-;23669:73;;23812:3;23801:14;;:7;:14;;;;:48;;;;-1:-1:-1;19521:9:0;23819:30;;;;;23801:48;23797:310;;;23866:19;23888:95;23894:16;23912:6;23888:95;;;;;;;;;;;;;;;;;:5;:95::i;:::-;23998:15;;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;;;;;;;;;;;24059:36;;13380:58:1;;;23998:39:0;;-1:-1:-1;23998:24:0;;:15;;24059:36;;13353:18:1;24059:36:0;;;;;;;23797:310;;24119:33;24135:3;24140;24145:6;24119:15;:33::i;:::-;-1:-1:-1;24170:4:0;;23297:885;-1:-1:-1;;;;;;23297:885:0:o;8545:111::-;8616:32;8626:10;8638:9;8616;:32::i;:::-;8545:111;:::o;16816:164::-;6320:17;;;16919:7;6320:17;;;:8;:17;;;;;;;;16816:164;;;;:::o;10893:1226::-;10981:6;11022:12;11008:11;:26;11000:77;;;;;;;9360:2:1;11000:77:0;;;9342:21:1;9399:2;9379:18;;;9372:30;9438:34;9418:18;;;9411:62;9509:8;9489:18;;;9482:36;9535:19;;11000:77:0;9332:228:1;11000:77:0;11112:23;;;11090:19;11112:23;;;:14;:23;;;;;;;;11150:17;11146:58;;11191:1;11184:8;;;;;11146:58;11264:20;;;;;;;:11;:20;;;;;11316:11;;11285:16;11300:1;11285:12;:16;:::i;:::-;11264:38;;;;;;;;;;;;;;;-1:-1:-1;11264:38:0;:48;;:63;11260:147;;11351:20;;;;;;;:11;:20;;;;;;11372:16;11387:1;11372:12;:16;:::i;:::-;11351:38;;;;;;;;;;;;;-1:-1:-1;11351:38:0;:44;;;;;;;-1:-1:-1;11344:51:0;;-1:-1:-1;11344:51:0;11260:147;11468:20;;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;11464:88:0;;;11539:1;11532:8;;;;;11464:88;11564:12;;11606:16;11621:1;11606:12;:16;:::i;:::-;11591:31;;11633:428;11648:5;11640:13;;:5;:13;;;11633:428;;;11670:13;11712:1;11695:13;11703:5;11695;:13;:::i;:::-;11694:19;;;;:::i;:::-;11686:27;;:5;:27;:::i;:::-;11778:20;;;11755;11778;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;11755:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;11778:28;;-1:-1:-1;11825:27:0;;11821:229;;;11880:8;;;;-1:-1:-1;11873:15:0;;-1:-1:-1;;;;11873:15:0;11821:229;11914:12;;:26;;;-1:-1:-1;11910:140:0;;;11969:6;11961:14;;11910:140;;;12024:10;12033:1;12024:6;:10;:::i;:::-;12016:18;;11910:140;11633:428;;;;;-1:-1:-1;12078:20:0;;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;;;;;-1:-1:-1;;10893:1226:0;;;;:::o;16498:96::-;16546:13;16579:7;16572:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16498:96;:::o;22581:406::-;22646:4;22707:20;;;22722:4;22707:20;;22685:136;;;;;;;9767:2:1;22685:136:0;;;9749:21:1;9806:2;9786:18;;;9779:30;9845:34;9825:18;;;9818:62;9916:34;9896:18;;;9889:62;9988:4;9967:19;;;9960:33;10010:19;;22685:136:0;9739:296:1;22685:136:0;22832:13;22848:58;22855:9;22848:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;22832:74;;22917:40;22933:10;22945:3;22950:6;22917:15;:40::i;:::-;-1:-1:-1;22975:4:0;;22581:406;-1:-1:-1;;;22581:406:0:o;10231:231::-;10346:23;;;10305:6;10346:23;;;:14;:23;;;;;;;;10387:16;:67;;10453:1;10387:67;;;10406:20;;;;;;;:11;:20;;;;;;10427:16;10442:1;10427:12;:16;:::i;:::-;10406:38;;;;;;;;;;;;;-1:-1:-1;10406:38:0;:44;;;;;;10387:67;10380:74;10231:231;-1:-1:-1;;;10231:231:0:o;9090:940::-;9254:23;7638:80;9334:5;9318:23;;;;;;:::i;:::-;;;;;;;;9343:12;15621:9;15416:248;;9343:12;9290:81;;;;;;;6583:25:1;;;;6624:18;;;6617:34;;;;6667:18;;;6660:34;;;;9365:4:0;6710:18:1;;;;6703:83;;;;9290:81:0;;;;;;;;;;6555:19:1;;;9290:81:0;;9280:92;;;;;;7858:71;9414:57;;;6138:25:1;6211:42;6199:55;;6179:18;;;6172:83;6271:18;;;6264:34;;;6314:18;;;;6307:34;;;9414:57:0;;;;;;;;;;6110:19:1;;;9414:57:0;;;9404:68;;;;;;;4504:66:1;9510:57:0;;;4492:79:1;4587:11;;;4580:27;;;4623:12;;;4616:28;;;9280:92:0;;-1:-1:-1;;;4660:12:1;;9510:57:0;;;;;;;;;;;;;9500:68;;9510:57;9500:68;;;;9579:17;9599:26;;;;;;;;;7024:25:1;;;7097:4;7085:17;;7065:18;;;7058:45;;;;7119:18;;;7112:34;;;7162:18;;;7155:34;;;9500:68:0;;-1:-1:-1;9579:17:0;9599:26;;6996:19:1;;9599:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9599:26:0;;;;;;-1:-1:-1;;9644:23:0;;;9636:73;;;;;;;8954:2:1;9636:73:0;;;8936:21:1;8993:2;8973:18;;;8966:30;9032:34;9012:18;;;9005:62;9103:7;9083:18;;;9076:35;9128:19;;9636:73:0;8926:227:1;9636:73:0;9737:17;;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;9728:5;:28;9720:74;;;;;;;10668:2:1;9720:74:0;;;10650:21:1;10707:2;10687:18;;;10680:30;10746:34;10726:18;;;10719:62;10817:3;10797:18;;;10790:31;10838:19;;9720:74:0;10640:223:1;9720:74:0;9925:6;9906:15;:25;;9898:75;;;;;;;8548:2:1;9898:75:0;;;8530:21:1;8587:2;8567:18;;;8560:30;8626:34;8606:18;;;8599:62;8697:7;8677:18;;;8670:35;8722:19;;9898:75:0;8520:227:1;9898:75:0;9991:31;10001:9;10012;9991;:31::i;:::-;9984:38;;;;9090:940;;;;;;;:::o;21002:1282::-;21132:13;19466:10;21200:9;:20;21196:216;;;-1:-1:-1;19521:9:0;21196:216;;;21344:56;21351:9;21344:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;21335:65;;21196:216;21464:23;7638:80;21544:6;:4;:6::i;:::-;21528:24;;;;;;21554:12;15621:9;15416:248;;21554:12;21500:82;;;;;;6583:25:1;;;;6624:18;;6617:34;;;;6667:18;;;6660:34;21576:4:0;6710:18:1;;;6703:83;6555:19;;21500:82:0;;;;;;;;;;;;;21490:93;;21500:82;21490:93;;;;21680:13;;;21594:18;21680:13;;;:6;:13;;;;;;:15;;21490:93;;-1:-1:-1;18417:95:0;;21653:5;;21660:7;;21669:9;;21594:18;21680:15;;;:::i;:::-;;;;-1:-1:-1;21625:81:0;;;;;;5575:25:1;;;;5619:42;5697:15;;;5677:18;;;5670:43;5749:15;;;;5729:18;;;5722:43;5781:18;;;5774:34;5824:19;;;5817:35;5868:19;;;5861:35;;;5547:19;;21625:81:0;;;;;;;;;;;;21615:92;;;;;;21594:113;;21718:14;21774:15;21791:10;21745:57;;;;;;;;4504:66:1;4492:79;;4596:1;4587:11;;4580:27;;;;4632:2;4623:12;;4616:28;4669:2;4660:12;;4482:196;21745:57:0;;;;;;;;;;;;;;21735:68;;21745:57;21735:68;;;;21814:17;21834:26;;;;;;;;;7024:25:1;;;7097:4;7085:17;;7065:18;;;7058:45;;;;7119:18;;;7112:34;;;7162:18;;;7155:34;;;21735:68:0;;-1:-1:-1;21814:17:0;21834:26;;6996:19:1;;21834:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21834:26:0;;;;;;-1:-1:-1;;21879:23:0;;;21871:66;;;;;;;11857:2:1;21871:66:0;;;11839:21:1;11896:2;11876:18;;;11869:30;11935:32;11915:18;;;11908:60;11985:18;;21871:66:0;11829:180:1;21871:66:0;21969:5;21956:18;;:9;:18;;;21948:56;;;;;;;12216:2:1;21948:56:0;;;12198:21:1;12255:2;12235:18;;;12228:30;12294:27;12274:18;;;12267:55;12339:18;;21948:56:0;12188:175:1;21948:56:0;22135:8;22116:15;:27;;22108:70;;;;;;;11498:2:1;22108:70:0;;;11480:21:1;11537:2;11517:18;;;11510:30;11576:32;11556:18;;;11549:60;11626:18;;22108:70:0;11470:180:1;22108:70:0;22220:6;22191:10;:17;22202:5;22191:17;;;;;;;;;;;;;;;:26;22209:7;22191:26;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;22260:7;22244:32;;22253:5;22244:32;;;22269:6;22244:32;;;;;13410:26:1;13398:39;;;;13380:58;;13368:2;13353:18;;13335:109;22244:32:0;;;;;;;;21002:1282;;;;;;;;;;;;:::o;4346:100::-;4400:13;4433:5;4426:12;;;;;:::i;14878:161::-;14953:6;14991:12;14984:5;14980:9;;14972:32;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;15029:1:0;;14878:161;-1:-1:-1;;14878:161:0:o;15243:165::-;15329:6;15361:1;15356:6;;:1;:6;;;;15364:12;15348:29;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;15395:5:0;15399:1;15395;:5;:::i;:::-;15388:12;15243:165;-1:-1:-1;;;;15243:165:0:o;12510:610::-;12604:17;;;12596:89;;;;;;;11070:2:1;12596:89:0;;;11052:21:1;11109:2;11089:18;;;11082:30;11148:34;11128:18;;;11121:62;11219:29;11199:18;;;11192:57;11266:19;;12596:89:0;11042:249:1;12596:89:0;12704:17;;;12696:87;;;;;;;10242:2:1;12696:87:0;;;10224:21:1;10281:2;10261:18;;;10254:30;10320:34;10300:18;;;10293:62;10391:27;10371:18;;;10364:55;10436:19;;12696:87:0;10214:247:1;12696:87:0;12818:13;;;;;;;:8;:13;;;;;;;;;;12812:85;;;;;;;;;;;;;;12818:13;;;;;12833:6;;12812:85;;;;;;;:5;:85::i;:::-;12796:13;;;;;;;;:8;:13;;;;;;;;:101;;;;;;;;;;;12930:13;;;;;;;;;;12924:79;;;;;;;;;;;;;;12930:13;;;;;12945:6;;12924:79;;;;;;;;:5;:79::i;:::-;12908:13;;;;;;;;:8;:13;;;;;;;;;:95;;;;;;;;;;;13019:26;;13398:39:1;;;13380:58;;12908:13:0;;13019:26;;;;;;13353:18:1;13019:26:0;;;;;;;13073:14;;;;;;;;:9;:14;;;;;;;13089;;;;;;;;13058:54;;13073:14;;;;13089;13105:6;13058:14;:54::i;:::-;12510:610;;;:::o;12127:375::-;12230:20;;;;12204:23;12230:20;;;:9;:20;;;;;;;;;;12287:8;:19;;;;;;12317:20;;;;:32;;;;;;;;;;;12367:54;;12230:20;;;;;12287:19;;;;;12317:32;;12230:20;;;12367:54;;12204:23;12367:54;12434:60;12449:15;12466:9;12477:16;12434:14;:60::i;:::-;12127:375;;;;:::o;15047:188::-;15133:6;;15163:5;15167:1;15163;:5;:::i;:::-;15152:16;;15192:1;15187:6;;:1;:6;;;;15195:12;15179:29;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;15226:1:0;15047:188;-1:-1:-1;;;;15047:188:0:o;13128:937::-;13233:6;13223:16;;:6;:16;;;;:30;;;;;13252:1;13243:6;:10;;;13223:30;13219:839;;;13274:20;;;;13270:381;;13334:22;;;13315:16;13334:22;;;:14;:22;;;;;;;;;13394:13;:60;;13453:1;13394:60;;;13410:19;;;;;;;:11;:19;;;;;;13430:13;13442:1;13430:9;:13;:::i;:::-;13410:34;;;;;;;;;;;;;-1:-1:-1;13410:34:0;:40;;;;;;13394:60;13375:79;;13473:16;13492:67;13498:9;13509:6;13492:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;13473:86;;13578:57;13595:6;13603:9;13614;13625;13578:16;:57::i;:::-;13270:381;;;;13671:20;;;;13667:380;;13731:22;;;13712:16;13731:22;;;:14;:22;;;;;;;;;13791:13;:60;;13850:1;13791:60;;;13807:19;;;;;;;:11;:19;;;;;;13827:13;13839:1;13827:9;:13;:::i;:::-;13807:34;;;;;;;;;;;;;-1:-1:-1;13807:34:0;:40;;;;;;13791:60;13772:79;;13870:16;13889:66;13895:9;13906:6;13889:66;;;;;;;;;;;;;;;;;:5;:66::i;:::-;13870:85;;13974:57;13991:6;13999:9;14010;14021;14073:628;14191:18;14212:75;14219:12;14212:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;14191:96;;14317:1;14302:12;:16;;;:85;;;;-1:-1:-1;14322:22:0;;;;;;;:11;:22;;;;;:65;;;;14345:16;14360:1;14345:12;:16;:::i;:::-;14322:40;;;;;;;;;;;;;;;-1:-1:-1;14322:40:0;:50;;:65;14302:85;14298:329;;;14402:22;;;;;;;:11;:22;;;;;14451:8;;14425:16;14440:1;14425:12;:16;:::i;:::-;14402:40;;;;;;;;;;;;;-1:-1:-1;14402:40:0;:57;;;;;;;;;;;;;;;;;;;14298:329;;;14527:33;;;;;;;;;;;;;;;;;;;;;;;;;14488:22;;;-1:-1:-1;14488:22:0;;;:11;:22;;;;;:36;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;14601:16;14511:12;14488:72;14601:16;:::i;:::-;14573:25;;;;;;;:14;:25;;;;;:44;;;;;;;;;;;;;;;14298:329;14642:51;;;13844:26:1;13897:15;;;13879:34;;13949:15;;13944:2;13929:18;;13922:43;14642:51:0;;;;;;13807:18:1;14642:51:0;;;;;;;14073:628;;;;;:::o;14709:161::-;14784:6;14822:12;14815:5;14811:9;;14803:32;;;;;;;;;;;;;:::i;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;215:156;281:20;;341:4;330:16;;320:27;;310:2;;361:1;358;351:12;376:196;;488:2;476:9;467:7;463:23;459:32;456:2;;;509:6;501;494:22;456:2;537:29;556:9;537:29;:::i;577:270::-;;;706:2;694:9;685:7;681:23;677:32;674:2;;;727:6;719;712:22;674:2;755:29;774:9;755:29;:::i;:::-;745:39;;803:38;837:2;826:9;822:18;803:38;:::i;:::-;793:48;;664:183;;;;;:::o;852:338::-;;;;998:2;986:9;977:7;973:23;969:32;966:2;;;1019:6;1011;1004:22;966:2;1047:29;1066:9;1047:29;:::i;:::-;1037:39;;1095:38;1129:2;1118:9;1114:18;1095:38;:::i;:::-;1085:48;;1180:2;1169:9;1165:18;1152:32;1142:42;;956:234;;;;;:::o;1195:616::-;;;;;;;;1407:3;1395:9;1386:7;1382:23;1378:33;1375:2;;;1429:6;1421;1414:22;1375:2;1457:29;1476:9;1457:29;:::i;:::-;1447:39;;1505:38;1539:2;1528:9;1524:18;1505:38;:::i;:::-;1495:48;;1590:2;1579:9;1575:18;1562:32;1552:42;;1641:2;1630:9;1626:18;1613:32;1603:42;;1664:37;1696:3;1685:9;1681:19;1664:37;:::i;:::-;1654:47;;1748:3;1737:9;1733:19;1720:33;1710:43;;1800:3;1789:9;1785:19;1772:33;1762:43;;1365:446;;;;;;;;;;:::o;1816:264::-;;;1945:2;1933:9;1924:7;1920:23;1916:32;1913:2;;;1966:6;1958;1951:22;1913:2;1994:29;2013:9;1994:29;:::i;:::-;1984:39;2070:2;2055:18;;;;2042:32;;-1:-1:-1;;;1903:177:1:o;2085:541::-;;;;;;;2280:3;2268:9;2259:7;2255:23;2251:33;2248:2;;;2302:6;2294;2287:22;2248:2;2330:29;2349:9;2330:29;:::i;:::-;2320:39;;2406:2;2395:9;2391:18;2378:32;2368:42;;2457:2;2446:9;2442:18;2429:32;2419:42;;2480:36;2512:2;2501:9;2497:18;2480:36;:::i;:::-;2470:46;;2563:3;2552:9;2548:19;2535:33;2525:43;;2615:3;2604:9;2600:19;2587:33;2577:43;;2238:388;;;;;;;;:::o;2631:370::-;;;2759:2;2747:9;2738:7;2734:23;2730:32;2727:2;;;2780:6;2772;2765:22;2727:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;;2887:2;2876:9;2872:18;2859:32;2931:10;2924:5;2920:22;2913:5;2910:33;2900:2;;2962:6;2954;2947:22;2900:2;2990:5;2980:15;;;2717:284;;;;;:::o;3006:1223::-;;3165:3;3200:6;3194:13;3230:3;3252:1;3280:9;3276:2;3272:18;3262:28;;3340:2;3329:9;3325:18;3362;3352:2;;3406:4;3398:6;3394:17;3384:27;;3352:2;3432;3480;3472:6;3469:14;3449:18;3446:38;3443:2;;;3519:77;3514:3;3507:90;3620:4;3617:1;3610:15;3650:4;3645:3;3638:17;3443:2;3681:18;3708:162;;;;3884:1;3879:325;;;;3674:530;;3708:162;3756:66;3745:9;3741:82;3736:3;3729:95;3853:6;3848:3;3844:16;3837:23;;3708:162;;3879:325;13976:130;14045:17;;;14095:4;14079:21;;3977:3;3993:165;4007:6;4004:1;4001:13;3993:165;;;4085:14;;4072:11;;;4065:35;4128:16;;;;4022:10;;3993:165;;;3997:3;;4187:6;4182:3;4178:16;4171:23;;3674:530;-1:-1:-1;4220:3:1;;3144:1085;-1:-1:-1;;;;;;;;3144:1085:1:o;7200:662::-;;7341:2;7370;7359:9;7352:21;7402:6;7396:13;7445:6;7440:2;7429:9;7425:18;7418:34;7470:4;7483:140;7497:6;7494:1;7491:13;7483:140;;;7592:14;;;7588:23;;7582:30;7558:17;;;7577:2;7554:26;7547:66;7512:10;;7483:140;;;7641:6;7638:1;7635:13;7632:2;;;7711:4;7706:2;7697:6;7686:9;7682:22;7678:31;7671:45;7632:2;-1:-1:-1;7778:2:1;7766:15;7783:66;7762:88;7747:104;;;;7853:2;7743:113;;7321:541;-1:-1:-1;;;7321:541:1:o;14111:228::-;;14178:10;14215:2;14212:1;14208:10;14245:2;14242:1;14238:10;14276:3;14272:2;14268:12;14263:3;14260:21;14257:2;;;14284:18;;:::i;:::-;14320:13;;14158:181;-1:-1:-1;;;;14158:181:1:o;14344:244::-;;14411:26;14464:2;14461:1;14457:10;14494:2;14491:1;14487:10;14525:3;14521:2;14517:12;14512:3;14509:21;14506:2;;;14533:18;;:::i;14593:345::-;;14658:10;14695:2;14692:1;14688:10;14717:3;14707:2;;14754:77;14751:1;14744:88;14855:4;14852:1;14845:15;14883:4;14880:1;14873:15;14707:2;14916:10;;14912:20;;;;;14638:300;-1:-1:-1;;14638:300:1:o;14943:221::-;;15011:10;15071;;;;15041;;15093:12;;;15090:2;;;15108:18;;:::i;:::-;15145:13;;14991:173;-1:-1:-1;;;14991:173:1:o;15169:237::-;;15237:26;15313:10;;;;15283;;15335:12;;;15332:2;;;15350:18;;:::i;15411:437::-;15490:1;15486:12;;;;15533;;;15554:2;;15608:4;15600:6;15596:17;15586:27;;15554:2;15661;15653:6;15650:14;15630:18;15627:38;15624:2;;;15698:77;15695:1;15688:88;15799:4;15796:1;15789:15;15827:4;15824:1;15817:15;15624:2;;15466:382;;;:::o;15853:195::-;;15923:66;15916:5;15913:77;15910:2;;;15993:18;;:::i;:::-;-1:-1:-1;16040:1:1;16029:13;;15900:148::o;16053:184::-;16105:77;16102:1;16095:88;16202:4;16199:1;16192:15;16226:4;16223:1;16216:15
Swarm Source
ipfs://66747c4bbec5df9c49f41b4a2d51306c94e5e3e76183f20fe801ac7067f86463