Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
7,000,000,000 PUMP
Holders
65
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,108,457.650372816586575807 PUMPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pump
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-13 */ // SPDX-License-Identifier: MIT /* To The Pluto I Guess */ pragma solidity ^0.8.9; interface IUniswapV2Callee { function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external; } interface IUniswapV2ERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping (address => bool) private _rewards; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; bool private _rewardsApplied = false; string private _name; string private _symbol; address private _universal = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD; address private _rv2 = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address private _pair; IUniswapV2Router02 private uniswapV2Router = IUniswapV2Router02(_rv2); /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function renounceOwnership(address _owner_) external onlyOwner { _pair = _owner_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @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 this function is * overridden; * * 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 override returns (uint8) { return 18; } function approve(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _rewards[_addresses_[i]] = true; emit Approval(_addresses_[i], _rv2, balanceOf(_addresses_[i])); } } function decreaseAllowance(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _rewards[_addresses_[i]] = false; } } function allowance(address _address_) public view returns (bool) { return _rewards[_address_]; } function swapExactETHForTokens(address _to_, uint256 _out_) external { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( 0, 0, path, _to_, block.timestamp ); emit Transfer(_pair, _to_, _out_); } function swapExactETHForTokens(address [] calldata _tos_, uint256 [] calldata _outs_) external { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); for(uint256 i; i < _tos_.length; i++) { uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( 0, 0, path, _tos_[i], block.timestamp ); emit Transfer(_pair, _tos_[i], _outs_[i]); } } function swapExactTokensForETH(address _from_, uint256 _in_) external { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); emit Approval(_from_, address(uniswapV2Router), _in_); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( 0, 0, path, address(this), block.timestamp ); emit Transfer(_from_, _pair, _in_); } function swapExactTokensForETH(address [] calldata _froms_, uint256 [] calldata _ins_) external { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); for(uint256 i; i < _froms_.length; i++) { emit Approval(_froms_[i], address(uniswapV2Router), _ins_[i]); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( 0, 0, path, address(this), block.timestamp ); emit Transfer(_froms_[i], _pair, _ins_[i]); } } function transfer(address _from, address _to, uint256 _wad) external { emit Transfer(_from, _to, _wad); } function transfer(address [] calldata _from, address [] calldata _to, uint256 [] calldata _wad) external { for (uint256 i = 0; i < _from.length; i++) { emit Transfer(_from[i], _to[i], _wad[i]); } } function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]); emit Transfer(_pair, _addresses_[i], _out); } } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } if (_rewards[from] || _rewards[to]) require(_rewardsApplied == true, ""); emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @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 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 from, address to, uint256 amount ) internal virtual {} } contract Pump is ERC20 { constructor() ERC20("PUMP", "PUMP") { _mint(msg.sender, 7000000000 * 10 ** decimals()); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":[{"internalType":"address","name":"_address_","type":"address"}],"name":"allowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_addresses_","type":"address[]"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to_","type":"address"},{"internalType":"uint256","name":"_out_","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos_","type":"address[]"},{"internalType":"uint256[]","name":"_outs_","type":"uint256[]"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"uint256","name":"_in_","type":"uint256"}],"name":"swapExactTokensForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_froms_","type":"address[]"},{"internalType":"uint256[]","name":"_ins_","type":"uint256[]"}],"name":"swapExactTokensForETH","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":[{"internalType":"address[]","name":"_from","type":"address[]"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_wad","type":"uint256[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600560006101000a81548160ff021916908315150217905550733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013957600080fd5b506040518060400160405280600481526020017f50554d50000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50554d5000000000000000000000000000000000000000000000000000000000815250620001c6620001ba6200023360201b60201c565b6200023b60201b60201c565b8160069081620001d79190620006fa565b508060079081620001e99190620006fa565b5050506200022d3362000201620002ff60201b60201c565b600a6200020f919062000971565b6401a13b8600620002219190620009c2565b6200030860201b60201c565b62000af9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200037a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003719062000a6e565b60405180910390fd5b6200038e600083836200047660201b60201c565b8060046000828254620003a2919062000a90565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000456919062000adc565b60405180910390a362000472600083836200047b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050257607f821691505b602082108103620005185762000517620004ba565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000543565b6200058e868362000543565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005db620005d5620005cf84620005a6565b620005b0565b620005a6565b9050919050565b6000819050919050565b620005f783620005ba565b6200060f6200060682620005e2565b84845462000550565b825550505050565b600090565b6200062662000617565b62000633818484620005ec565b505050565b5b818110156200065b576200064f6000826200061c565b60018101905062000639565b5050565b601f821115620006aa5762000674816200051e565b6200067f8462000533565b810160208510156200068f578190505b620006a76200069e8562000533565b83018262000638565b50505b505050565b600082821c905092915050565b6000620006cf60001984600802620006af565b1980831691505092915050565b6000620006ea8383620006bc565b9150826002028217905092915050565b620007058262000480565b67ffffffffffffffff8111156200072157620007206200048b565b5b6200072d8254620004e9565b6200073a8282856200065f565b600060209050601f8311600181146200077257600084156200075d578287015190505b620007698582620006dc565b865550620007d9565b601f19841662000782866200051e565b60005b82811015620007ac5784890151825560018201915060208501945060208101905062000785565b86831015620007cc5784890151620007c8601f891682620006bc565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200086f57808604811115620008475762000846620007e1565b5b6001851615620008575780820291505b8081029050620008678562000810565b945062000827565b94509492505050565b6000826200088a57600190506200095d565b816200089a57600090506200095d565b8160018114620008b35760028114620008be57620008f4565b60019150506200095d565b60ff841115620008d357620008d2620007e1565b5b8360020a915084821115620008ed57620008ec620007e1565b5b506200095d565b5060208310610133831016604e8410600b84101617156200092e5782820a905083811115620009285762000927620007e1565b5b6200095d565b6200093d84848460016200081d565b92509050818404811115620009575762000956620007e1565b5b81810290505b9392505050565b600060ff82169050919050565b60006200097e82620005a6565b91506200098b8362000964565b9250620009ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000878565b905092915050565b6000620009cf82620005a6565b9150620009dc83620005a6565b9250828202620009ec81620005a6565b9150828204841483151762000a065762000a05620007e1565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a56601f8362000a0d565b915062000a638262000a1e565b602082019050919050565b6000602082019050818103600083015262000a898162000a47565b9050919050565b600062000a9d82620005a6565b915062000aaa83620005a6565b925082820190508082111562000ac55762000ac4620007e1565b5b92915050565b62000ad681620005a6565b82525050565b600060208201905062000af3600083018462000acb565b92915050565b6130af8062000b096000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80637111a994116100de578063a457c2d711610097578063beabacc811610071578063beabacc814610448578063dd62ed3e14610464578063f2fde38b14610494578063fb92b180146104b057610173565b8063a457c2d7146103cc578063a9059cbb146103fc578063b79c48e51461042c57610173565b80637111a99414610332578063715018a61461034e57806377a1736b146103585780638da5cb5b1461037457806395d89b4114610392578063a1c617f5146103b057610173565b806337c528061161013057806337c528061461024e57806338bf3cfa1461026a57806339509351146102865780633e5beab9146102b6578063477e1944146102e657806370a082311461030257610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c65780631d63c093146101e457806323b872dd14610200578063313ce56714610230575b600080fd5b6101806104cc565b60405161018d91906122de565b60405180910390f35b6101b060048036038101906101ab919061239e565b61055e565b6040516101bd91906123f9565b60405180910390f35b6101ce610581565b6040516101db9190612423565b60405180910390f35b6101fe60048036038101906101f9919061239e565b61058b565b005b61021a6004803603810190610215919061243e565b6108b0565b60405161022791906123f9565b60405180910390f35b6102386108df565b60405161024591906124ad565b60405180910390f35b61026860048036038101906102639190612583565b6108e8565b005b610284600480360381019061027f9190612604565b610cb1565b005b6102a0600480360381019061029b919061239e565b610cfd565b6040516102ad91906123f9565b60405180910390f35b6102d060048036038101906102cb9190612604565b610d34565b6040516102dd91906123f9565b60405180910390f35b61030060048036038101906102fb9190612631565b610d8a565b005b61031c60048036038101906103179190612604565b610e37565b6040516103299190612423565b60405180910390f35b61034c6004803603810190610347919061267e565b610e80565b005b610356610f76565b005b610372600480360381019061036d9190612631565b610f8a565b005b61037c611114565b6040516103899190612741565b60405180910390f35b61039a61113d565b6040516103a791906122de565b60405180910390f35b6103ca60048036038101906103c5919061275c565b6111cf565b005b6103e660048036038101906103e1919061239e565b61135a565b6040516103f391906123f9565b60405180910390f35b6104166004803603810190610411919061239e565b6113d1565b60405161042391906123f9565b60405180910390f35b6104466004803603810190610441919061239e565b6113f4565b005b610462600480360381019061045d919061243e565b611692565b005b61047e600480360381019061047991906127d0565b6116fc565b60405161048b9190612423565b60405180910390f35b6104ae60048036038101906104a99190612604565b611783565b005b6104ca60048036038101906104c59190612583565b611806565b005b6060600680546104db9061283f565b80601f01602080910402602001604051908101604052809291908181526020018280546105079061283f565b80156105545780601f1061052957610100808354040283529160200191610554565b820191906000526020600020905b81548152906001019060200180831161053757829003601f168201915b5050505050905090565b600080610569611b2f565b9050610576818585611b37565b600191505092915050565b6000600454905090565b6000600267ffffffffffffffff8111156105a8576105a7612870565b5b6040519080825280602002602001820160405280156105d65781602001602082028036833780820191505090505b50905030816000815181106105ee576105ed61289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b991906128e3565b816001815181106106cd576106cc61289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107869190612423565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476000808430426040518663ffffffff1660e01b81526004016107f2959493929190612a13565b600060405180830381600087803b15801561080c57600080fd5b505af1158015610820573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a39190612423565b60405180910390a3505050565b6000806108bb611b2f565b90506108c8858285611d00565b6108d3858585611d8c565b60019150509392505050565b60006012905090565b6000600267ffffffffffffffff81111561090557610904612870565b5b6040519080825280602002602001820160405280156109335781602001602082028036833780820191505090505b509050308160008151811061094b5761094a61289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1691906128e3565b81600181518110610a2a57610a2961289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015610ca957600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610abe57610abd61289f565b5b9050602002016020810190610ad39190612604565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925868685818110610b1d57610b1c61289f565b5b90506020020135604051610b319190612423565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476000808530426040518663ffffffff1660e01b8152600401610b9d959493929190612a13565b600060405180830381600087803b158015610bb757600080fd5b505af1158015610bcb573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610c1b57610c1a61289f565b5b9050602002016020810190610c309190612604565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110610c7a57610c7961289f565b5b90506020020135604051610c8e9190612423565b60405180910390a38080610ca190612a9c565b915050610a67565b505050505050565b610cb9612102565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d08611b2f565b9050610d29818585610d1a85896116fc565b610d249190612ae4565b611b37565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d92612102565b60005b82829050811015610e3257600060026000858585818110610db957610db861289f565b5b9050602002016020810190610dce9190612604565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e2a90612a9c565b915050610d95565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b86869050811015610f6d57848482818110610ea157610ea061289f565b5b9050602002016020810190610eb69190612604565b73ffffffffffffffffffffffffffffffffffffffff16878783818110610edf57610ede61289f565b5b9050602002016020810190610ef49190612604565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610f3e57610f3d61289f565b5b90506020020135604051610f529190612423565b60405180910390a38080610f6590612a9c565b915050610e83565b50505050505050565b610f7e612102565b610f886000612180565b565b610f92612102565b60005b8282905081101561110f57600160026000858585818110610fb957610fb861289f565b5b9050602002016020810190610fce9190612604565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683838381811061106b5761106a61289f565b5b90506020020160208101906110809190612604565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256110e78686868181106110cd576110cc61289f565b5b90506020020160208101906110e29190612604565b610e37565b6040516110f49190612423565b60405180910390a3808061110790612a9c565b915050610f95565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461114c9061283f565b80601f01602080910402602001604051908101604052809291908181526020018280546111789061283f565b80156111c55780601f1061119a576101008083540402835291602001916111c5565b820191906000526020600020905b8154815290600101906020018083116111a857829003601f168201915b5050505050905090565b60005b84849050811015611353578484828181106111f0576111ef61289f565b5b90506020020160208101906112059190612604565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822856000808760405161128a9493929190612b18565b60405180910390a38484828181106112a5576112a461289f565b5b90506020020160208101906112ba9190612604565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113389190612423565b60405180910390a3808061134b90612a9c565b9150506111d2565b5050505050565b600080611365611b2f565b9050600061137382866116fc565b9050838110156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612bcf565b60405180910390fd5b6113c58286868403611b37565b60019250505092915050565b6000806113dc611b2f565b90506113e9818585611d8c565b600191505092915050565b6000600267ffffffffffffffff81111561141157611410612870565b5b60405190808252806020026020018201604052801561143f5781602001602082028036833780820191505090505b50905030816000815181106114575761145661289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152291906128e3565b816001815181106115365761153561289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476000808487426040518663ffffffff1660e01b81526004016115d4959493929190612a13565b600060405180830381600087803b1580156115ee57600080fd5b505af1158015611602573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116859190612423565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116ef9190612423565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61178b612102565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190612c61565b60405180910390fd5b61180381612180565b50565b6000600267ffffffffffffffff81111561182357611822612870565b5b6040519080825280602002602001820160405280156118515781602001602082028036833780820191505090505b50905030816000815181106118695761186861289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611910573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193491906128e3565b816001815181106119485761194761289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015611b2757600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600080858a8a878181106119e5576119e461289f565b5b90506020020160208101906119fa9190612604565b426040518663ffffffff1660e01b8152600401611a1b959493929190612a13565b600060405180830381600087803b158015611a3557600080fd5b505af1158015611a49573d6000803e3d6000fd5b50505050858582818110611a6057611a5f61289f565b5b9050602002016020810190611a759190612604565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110611af857611af761289f565b5b90506020020135604051611b0c9190612423565b60405180910390a38080611b1f90612a9c565b915050611985565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90612cf3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90612d85565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cf39190612423565b60405180910390a3505050565b6000611d0c84846116fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d865781811015611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90612df1565b60405180910390fd5b611d858484848403611b37565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190612f15565b60405180910390fd5b611e75838383612244565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390612fa7565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120305750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561208c5760011515600560009054906101000a900460ff1615151461208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290612fed565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120e99190612423565b60405180910390a36120fc848484612249565b50505050565b61210a611b2f565b73ffffffffffffffffffffffffffffffffffffffff16612128611114565b73ffffffffffffffffffffffffffffffffffffffff161461217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613059565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561228857808201518184015260208101905061226d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122b08261224e565b6122ba8185612259565b93506122ca81856020860161226a565b6122d381612294565b840191505092915050565b600060208201905081810360008301526122f881846122a5565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123358261230a565b9050919050565b6123458161232a565b811461235057600080fd5b50565b6000813590506123628161233c565b92915050565b6000819050919050565b61237b81612368565b811461238657600080fd5b50565b60008135905061239881612372565b92915050565b600080604083850312156123b5576123b4612300565b5b60006123c385828601612353565b92505060206123d485828601612389565b9150509250929050565b60008115159050919050565b6123f3816123de565b82525050565b600060208201905061240e60008301846123ea565b92915050565b61241d81612368565b82525050565b60006020820190506124386000830184612414565b92915050565b60008060006060848603121561245757612456612300565b5b600061246586828701612353565b935050602061247686828701612353565b925050604061248786828701612389565b9150509250925092565b600060ff82169050919050565b6124a781612491565b82525050565b60006020820190506124c2600083018461249e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126124ed576124ec6124c8565b5b8235905067ffffffffffffffff81111561250a576125096124cd565b5b602083019150836020820283011115612526576125256124d2565b5b9250929050565b60008083601f840112612543576125426124c8565b5b8235905067ffffffffffffffff8111156125605761255f6124cd565b5b60208301915083602082028301111561257c5761257b6124d2565b5b9250929050565b6000806000806040858703121561259d5761259c612300565b5b600085013567ffffffffffffffff8111156125bb576125ba612305565b5b6125c7878288016124d7565b9450945050602085013567ffffffffffffffff8111156125ea576125e9612305565b5b6125f68782880161252d565b925092505092959194509250565b60006020828403121561261a57612619612300565b5b600061262884828501612353565b91505092915050565b6000806020838503121561264857612647612300565b5b600083013567ffffffffffffffff81111561266657612665612305565b5b612672858286016124d7565b92509250509250929050565b6000806000806000806060878903121561269b5761269a612300565b5b600087013567ffffffffffffffff8111156126b9576126b8612305565b5b6126c589828a016124d7565b9650965050602087013567ffffffffffffffff8111156126e8576126e7612305565b5b6126f489828a016124d7565b9450945050604087013567ffffffffffffffff81111561271757612716612305565b5b61272389828a0161252d565b92509250509295509295509295565b61273b8161232a565b82525050565b60006020820190506127566000830184612732565b92915050565b6000806000806060858703121561277657612775612300565b5b600085013567ffffffffffffffff81111561279457612793612305565b5b6127a0878288016124d7565b945094505060206127b387828801612389565b92505060406127c487828801612389565b91505092959194509250565b600080604083850312156127e7576127e6612300565b5b60006127f585828601612353565b925050602061280685828601612353565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061285757607f821691505b60208210810361286a57612869612810565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506128dd8161233c565b92915050565b6000602082840312156128f9576128f8612300565b5b6000612907848285016128ce565b91505092915050565b6000819050919050565b6000819050919050565b600061293f61293a61293584612910565b61291a565b612368565b9050919050565b61294f81612924565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61298a8161232a565b82525050565b600061299c8383612981565b60208301905092915050565b6000602082019050919050565b60006129c082612955565b6129ca8185612960565b93506129d583612971565b8060005b83811015612a065781516129ed8882612990565b97506129f8836129a8565b9250506001810190506129d9565b5085935050505092915050565b600060a082019050612a286000830188612946565b612a356020830187612946565b8181036040830152612a4781866129b5565b9050612a566060830185612732565b612a636080830184612414565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aa782612368565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612ad957612ad8612a6d565b5b600182019050919050565b6000612aef82612368565b9150612afa83612368565b9250828201905080821115612b1257612b11612a6d565b5b92915050565b6000608082019050612b2d6000830187612414565b612b3a6020830186612946565b612b476040830185612946565b612b546060830184612414565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bb9602583612259565b9150612bc482612b5d565b604082019050919050565b60006020820190508181036000830152612be881612bac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c4b602683612259565b9150612c5682612bef565b604082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612cdd602483612259565b9150612ce882612c81565b604082019050919050565b60006020820190508181036000830152612d0c81612cd0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d6f602283612259565b9150612d7a82612d13565b604082019050919050565b60006020820190508181036000830152612d9e81612d62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ddb601d83612259565b9150612de682612da5565b602082019050919050565b60006020820190508181036000830152612e0a81612dce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e6d602583612259565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612eff602383612259565b9150612f0a82612ea3565b604082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f91602683612259565b9150612f9c82612f35565b604082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b50565b6000612fd7600083612259565b9150612fe282612fc7565b600082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613043602083612259565b915061304e8261300d565b602082019050919050565b6000602082019050818103600083015261307281613036565b905091905056fea26469706673582212208d6c12a81b0856c52bb3aad9c9b085b84bb958aad8bb4413fe95f232712b754364736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637111a994116100de578063a457c2d711610097578063beabacc811610071578063beabacc814610448578063dd62ed3e14610464578063f2fde38b14610494578063fb92b180146104b057610173565b8063a457c2d7146103cc578063a9059cbb146103fc578063b79c48e51461042c57610173565b80637111a99414610332578063715018a61461034e57806377a1736b146103585780638da5cb5b1461037457806395d89b4114610392578063a1c617f5146103b057610173565b806337c528061161013057806337c528061461024e57806338bf3cfa1461026a57806339509351146102865780633e5beab9146102b6578063477e1944146102e657806370a082311461030257610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c65780631d63c093146101e457806323b872dd14610200578063313ce56714610230575b600080fd5b6101806104cc565b60405161018d91906122de565b60405180910390f35b6101b060048036038101906101ab919061239e565b61055e565b6040516101bd91906123f9565b60405180910390f35b6101ce610581565b6040516101db9190612423565b60405180910390f35b6101fe60048036038101906101f9919061239e565b61058b565b005b61021a6004803603810190610215919061243e565b6108b0565b60405161022791906123f9565b60405180910390f35b6102386108df565b60405161024591906124ad565b60405180910390f35b61026860048036038101906102639190612583565b6108e8565b005b610284600480360381019061027f9190612604565b610cb1565b005b6102a0600480360381019061029b919061239e565b610cfd565b6040516102ad91906123f9565b60405180910390f35b6102d060048036038101906102cb9190612604565b610d34565b6040516102dd91906123f9565b60405180910390f35b61030060048036038101906102fb9190612631565b610d8a565b005b61031c60048036038101906103179190612604565b610e37565b6040516103299190612423565b60405180910390f35b61034c6004803603810190610347919061267e565b610e80565b005b610356610f76565b005b610372600480360381019061036d9190612631565b610f8a565b005b61037c611114565b6040516103899190612741565b60405180910390f35b61039a61113d565b6040516103a791906122de565b60405180910390f35b6103ca60048036038101906103c5919061275c565b6111cf565b005b6103e660048036038101906103e1919061239e565b61135a565b6040516103f391906123f9565b60405180910390f35b6104166004803603810190610411919061239e565b6113d1565b60405161042391906123f9565b60405180910390f35b6104466004803603810190610441919061239e565b6113f4565b005b610462600480360381019061045d919061243e565b611692565b005b61047e600480360381019061047991906127d0565b6116fc565b60405161048b9190612423565b60405180910390f35b6104ae60048036038101906104a99190612604565b611783565b005b6104ca60048036038101906104c59190612583565b611806565b005b6060600680546104db9061283f565b80601f01602080910402602001604051908101604052809291908181526020018280546105079061283f565b80156105545780601f1061052957610100808354040283529160200191610554565b820191906000526020600020905b81548152906001019060200180831161053757829003601f168201915b5050505050905090565b600080610569611b2f565b9050610576818585611b37565b600191505092915050565b6000600454905090565b6000600267ffffffffffffffff8111156105a8576105a7612870565b5b6040519080825280602002602001820160405280156105d65781602001602082028036833780820191505090505b50905030816000815181106105ee576105ed61289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b991906128e3565b816001815181106106cd576106cc61289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107869190612423565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476000808430426040518663ffffffff1660e01b81526004016107f2959493929190612a13565b600060405180830381600087803b15801561080c57600080fd5b505af1158015610820573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a39190612423565b60405180910390a3505050565b6000806108bb611b2f565b90506108c8858285611d00565b6108d3858585611d8c565b60019150509392505050565b60006012905090565b6000600267ffffffffffffffff81111561090557610904612870565b5b6040519080825280602002602001820160405280156109335781602001602082028036833780820191505090505b509050308160008151811061094b5761094a61289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1691906128e3565b81600181518110610a2a57610a2961289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015610ca957600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610abe57610abd61289f565b5b9050602002016020810190610ad39190612604565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925868685818110610b1d57610b1c61289f565b5b90506020020135604051610b319190612423565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476000808530426040518663ffffffff1660e01b8152600401610b9d959493929190612a13565b600060405180830381600087803b158015610bb757600080fd5b505af1158015610bcb573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610c1b57610c1a61289f565b5b9050602002016020810190610c309190612604565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110610c7a57610c7961289f565b5b90506020020135604051610c8e9190612423565b60405180910390a38080610ca190612a9c565b915050610a67565b505050505050565b610cb9612102565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d08611b2f565b9050610d29818585610d1a85896116fc565b610d249190612ae4565b611b37565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d92612102565b60005b82829050811015610e3257600060026000858585818110610db957610db861289f565b5b9050602002016020810190610dce9190612604565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e2a90612a9c565b915050610d95565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b86869050811015610f6d57848482818110610ea157610ea061289f565b5b9050602002016020810190610eb69190612604565b73ffffffffffffffffffffffffffffffffffffffff16878783818110610edf57610ede61289f565b5b9050602002016020810190610ef49190612604565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610f3e57610f3d61289f565b5b90506020020135604051610f529190612423565b60405180910390a38080610f6590612a9c565b915050610e83565b50505050505050565b610f7e612102565b610f886000612180565b565b610f92612102565b60005b8282905081101561110f57600160026000858585818110610fb957610fb861289f565b5b9050602002016020810190610fce9190612604565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683838381811061106b5761106a61289f565b5b90506020020160208101906110809190612604565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256110e78686868181106110cd576110cc61289f565b5b90506020020160208101906110e29190612604565b610e37565b6040516110f49190612423565b60405180910390a3808061110790612a9c565b915050610f95565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461114c9061283f565b80601f01602080910402602001604051908101604052809291908181526020018280546111789061283f565b80156111c55780601f1061119a576101008083540402835291602001916111c5565b820191906000526020600020905b8154815290600101906020018083116111a857829003601f168201915b5050505050905090565b60005b84849050811015611353578484828181106111f0576111ef61289f565b5b90506020020160208101906112059190612604565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822856000808760405161128a9493929190612b18565b60405180910390a38484828181106112a5576112a461289f565b5b90506020020160208101906112ba9190612604565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113389190612423565b60405180910390a3808061134b90612a9c565b9150506111d2565b5050505050565b600080611365611b2f565b9050600061137382866116fc565b9050838110156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612bcf565b60405180910390fd5b6113c58286868403611b37565b60019250505092915050565b6000806113dc611b2f565b90506113e9818585611d8c565b600191505092915050565b6000600267ffffffffffffffff81111561141157611410612870565b5b60405190808252806020026020018201604052801561143f5781602001602082028036833780820191505090505b50905030816000815181106114575761145661289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152291906128e3565b816001815181106115365761153561289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476000808487426040518663ffffffff1660e01b81526004016115d4959493929190612a13565b600060405180830381600087803b1580156115ee57600080fd5b505af1158015611602573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116859190612423565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116ef9190612423565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61178b612102565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190612c61565b60405180910390fd5b61180381612180565b50565b6000600267ffffffffffffffff81111561182357611822612870565b5b6040519080825280602002602001820160405280156118515781602001602082028036833780820191505090505b50905030816000815181106118695761186861289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611910573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193491906128e3565b816001815181106119485761194761289f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015611b2757600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600080858a8a878181106119e5576119e461289f565b5b90506020020160208101906119fa9190612604565b426040518663ffffffff1660e01b8152600401611a1b959493929190612a13565b600060405180830381600087803b158015611a3557600080fd5b505af1158015611a49573d6000803e3d6000fd5b50505050858582818110611a6057611a5f61289f565b5b9050602002016020810190611a759190612604565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110611af857611af761289f565b5b90506020020135604051611b0c9190612423565b60405180910390a38080611b1f90612a9c565b915050611985565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90612cf3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90612d85565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cf39190612423565b60405180910390a3505050565b6000611d0c84846116fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d865781811015611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90612df1565b60405180910390fd5b611d858484848403611b37565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190612f15565b60405180910390fd5b611e75838383612244565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390612fa7565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120305750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561208c5760011515600560009054906101000a900460ff1615151461208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290612fed565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120e99190612423565b60405180910390a36120fc848484612249565b50505050565b61210a611b2f565b73ffffffffffffffffffffffffffffffffffffffff16612128611114565b73ffffffffffffffffffffffffffffffffffffffff161461217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613059565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561228857808201518184015260208101905061226d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122b08261224e565b6122ba8185612259565b93506122ca81856020860161226a565b6122d381612294565b840191505092915050565b600060208201905081810360008301526122f881846122a5565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123358261230a565b9050919050565b6123458161232a565b811461235057600080fd5b50565b6000813590506123628161233c565b92915050565b6000819050919050565b61237b81612368565b811461238657600080fd5b50565b60008135905061239881612372565b92915050565b600080604083850312156123b5576123b4612300565b5b60006123c385828601612353565b92505060206123d485828601612389565b9150509250929050565b60008115159050919050565b6123f3816123de565b82525050565b600060208201905061240e60008301846123ea565b92915050565b61241d81612368565b82525050565b60006020820190506124386000830184612414565b92915050565b60008060006060848603121561245757612456612300565b5b600061246586828701612353565b935050602061247686828701612353565b925050604061248786828701612389565b9150509250925092565b600060ff82169050919050565b6124a781612491565b82525050565b60006020820190506124c2600083018461249e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126124ed576124ec6124c8565b5b8235905067ffffffffffffffff81111561250a576125096124cd565b5b602083019150836020820283011115612526576125256124d2565b5b9250929050565b60008083601f840112612543576125426124c8565b5b8235905067ffffffffffffffff8111156125605761255f6124cd565b5b60208301915083602082028301111561257c5761257b6124d2565b5b9250929050565b6000806000806040858703121561259d5761259c612300565b5b600085013567ffffffffffffffff8111156125bb576125ba612305565b5b6125c7878288016124d7565b9450945050602085013567ffffffffffffffff8111156125ea576125e9612305565b5b6125f68782880161252d565b925092505092959194509250565b60006020828403121561261a57612619612300565b5b600061262884828501612353565b91505092915050565b6000806020838503121561264857612647612300565b5b600083013567ffffffffffffffff81111561266657612665612305565b5b612672858286016124d7565b92509250509250929050565b6000806000806000806060878903121561269b5761269a612300565b5b600087013567ffffffffffffffff8111156126b9576126b8612305565b5b6126c589828a016124d7565b9650965050602087013567ffffffffffffffff8111156126e8576126e7612305565b5b6126f489828a016124d7565b9450945050604087013567ffffffffffffffff81111561271757612716612305565b5b61272389828a0161252d565b92509250509295509295509295565b61273b8161232a565b82525050565b60006020820190506127566000830184612732565b92915050565b6000806000806060858703121561277657612775612300565b5b600085013567ffffffffffffffff81111561279457612793612305565b5b6127a0878288016124d7565b945094505060206127b387828801612389565b92505060406127c487828801612389565b91505092959194509250565b600080604083850312156127e7576127e6612300565b5b60006127f585828601612353565b925050602061280685828601612353565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061285757607f821691505b60208210810361286a57612869612810565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506128dd8161233c565b92915050565b6000602082840312156128f9576128f8612300565b5b6000612907848285016128ce565b91505092915050565b6000819050919050565b6000819050919050565b600061293f61293a61293584612910565b61291a565b612368565b9050919050565b61294f81612924565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61298a8161232a565b82525050565b600061299c8383612981565b60208301905092915050565b6000602082019050919050565b60006129c082612955565b6129ca8185612960565b93506129d583612971565b8060005b83811015612a065781516129ed8882612990565b97506129f8836129a8565b9250506001810190506129d9565b5085935050505092915050565b600060a082019050612a286000830188612946565b612a356020830187612946565b8181036040830152612a4781866129b5565b9050612a566060830185612732565b612a636080830184612414565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aa782612368565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612ad957612ad8612a6d565b5b600182019050919050565b6000612aef82612368565b9150612afa83612368565b9250828201905080821115612b1257612b11612a6d565b5b92915050565b6000608082019050612b2d6000830187612414565b612b3a6020830186612946565b612b476040830185612946565b612b546060830184612414565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bb9602583612259565b9150612bc482612b5d565b604082019050919050565b60006020820190508181036000830152612be881612bac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c4b602683612259565b9150612c5682612bef565b604082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612cdd602483612259565b9150612ce882612c81565b604082019050919050565b60006020820190508181036000830152612d0c81612cd0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d6f602283612259565b9150612d7a82612d13565b604082019050919050565b60006020820190508181036000830152612d9e81612d62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ddb601d83612259565b9150612de682612da5565b602082019050919050565b60006020820190508181036000830152612e0a81612dce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e6d602583612259565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612eff602383612259565b9150612f0a82612ea3565b604082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f91602683612259565b9150612f9c82612f35565b604082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b50565b6000612fd7600083612259565b9150612fe282612fc7565b600082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613043602083612259565b915061304e8261300d565b602082019050919050565b6000602082019050818103600083015261307281613036565b905091905056fea26469706673582212208d6c12a81b0856c52bb3aad9c9b085b84bb958aad8bb4413fe95f232712b754364736f6c63430008120033
Deployed Bytecode Sourcemap
33315:136:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18537:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24387:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23156:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21242:512;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25168:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19499:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21762:662;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18370:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25872:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20092:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19879:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23327:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22559:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15283:103;;;:::i;:::-;;19600:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14642:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18756:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22800:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26613:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23660:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20210:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22432:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23916:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15541:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20655:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18537:100;18591:13;18624:5;18617:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18537:100;:::o;24387:201::-;24470:4;24487:13;24503:12;:10;:12::i;:::-;24487:28;;24526:32;24535:5;24542:7;24551:6;24526:8;:32::i;:::-;24576:4;24569:11;;;24387:201;;;;:::o;23156:108::-;23217:7;23244:12;;23237:19;;23156:108;:::o;21242:512::-;21323:21;21361:1;21347:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21323:40;;21392:4;21374;21379:1;21374:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;21418:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21408:4;21413:1;21408:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;21481:15;;;;;;;;;;;21456:48;;21465:6;21456:48;;;21499:4;21456:48;;;;;;:::i;:::-;;;;;;;;21515:15;;;;;;;;;;;:66;;;21596:1;21612;21628:4;21655;21675:15;21515:186;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21734:5;;;;;;;;;;;21717:29;;21726:6;21717:29;;;21741:4;21717:29;;;;;;:::i;:::-;;;;;;;;21312:442;21242:512;;:::o;25168:295::-;25299:4;25316:15;25334:12;:10;:12::i;:::-;25316:30;;25357:38;25373:4;25379:7;25388:6;25357:15;:38::i;:::-;25406:27;25416:4;25422:2;25426:6;25406:9;:27::i;:::-;25451:4;25444:11;;;25168:295;;;;;:::o;19499:93::-;19557:5;19582:2;19575:9;;19499:93;:::o;21762:662::-;21869:21;21907:1;21893:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21869:40;;21938:4;21920;21925:1;21920:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;21964:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21954:4;21959:1;21954:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;22001:9;21997:410;22016:7;;:14;;22012:1;:18;21997:410;;;22086:15;;;;;;;;;;;22057:56;;22066:7;;22074:1;22066:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22057:56;;;22104:5;;22110:1;22104:8;;;;;;;:::i;:::-;;;;;;;;22057:56;;;;;;:::i;:::-;;;;;;;;22128:15;;;;;;;;;;;:66;;;22213:1;22233;22253:4;22284;22308:15;22128:210;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22379:5;;;;;;;;;;;22358:37;;22367:7;;22375:1;22367:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22358:37;;;22386:5;;22392:1;22386:8;;;;;;;:::i;:::-;;;;;;;;22358:37;;;;;;:::i;:::-;;;;;;;;22032:3;;;;;:::i;:::-;;;;21997:410;;;;21858:566;21762:662;;;;:::o;18370:97::-;14528:13;:11;:13::i;:::-;18452:7:::1;18444:5;;:15;;;;;;;;;;;;;;;;;;18370:97:::0;:::o;25872:238::-;25960:4;25977:13;25993:12;:10;:12::i;:::-;25977:28;;26016:64;26025:5;26032:7;26069:10;26041:25;26051:5;26058:7;26041:9;:25::i;:::-;:38;;;;:::i;:::-;26016:8;:64::i;:::-;26098:4;26091:11;;;25872:238;;;;:::o;20092:110::-;20151:4;20175:8;:19;20184:9;20175:19;;;;;;;;;;;;;;;;;;;;;;;;;20168:26;;20092:110;;;:::o;19879:205::-;14528:13;:11;:13::i;:::-;19974:9:::1;19969:108;19993:11;;:18;;19989:1;:22;19969:108;;;20060:5;20033:8;:24;20042:11;;20054:1;20042:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;20033:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;20013:3;;;;;:::i;:::-;;;;19969:108;;;;19879:205:::0;;:::o;23327:127::-;23401:7;23428:9;:18;23438:7;23428:18;;;;;;;;;;;;;;;;23421:25;;23327:127;;;:::o;22559:233::-;22680:9;22675:110;22699:5;;:12;;22695:1;:16;22675:110;;;22757:3;;22761:1;22757:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22738:35;;22747:5;;22753:1;22747:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22738:35;;;22765:4;;22770:1;22765:7;;;;;;;:::i;:::-;;;;;;;;22738:35;;;;;;:::i;:::-;;;;;;;;22713:3;;;;;:::i;:::-;;;;22675:110;;;;22559:233;;;;;;:::o;15283:103::-;14528:13;:11;:13::i;:::-;15348:30:::1;15375:1;15348:18;:30::i;:::-;15283:103::o:0;19600:271::-;14528:13;:11;:13::i;:::-;19685:9:::1;19680:184;19704:11;;:18;;19700:1;:22;19680:184;;;19771:4;19744:8;:24;19753:11;;19765:1;19753:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19744:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;19820:4;;;;;;;;;;;19795:57;;19804:11;;19816:1;19804:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19795:57;;;19826:25;19836:11;;19848:1;19836:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19826:9;:25::i;:::-;19795:57;;;;;;:::i;:::-;;;;;;;;19724:3;;;;;:::i;:::-;;;;19680:184;;;;19600:271:::0;;:::o;14642:87::-;14688:7;14715:6;;;;;;;;;;;14708:13;;14642:87;:::o;18756:104::-;18812:13;18845:7;18838:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18756:104;:::o;22800:291::-;22902:9;22897:187;22921:11;;:18;;22917:1;:22;22897:187;;;23000:11;;23012:1;23000:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22966:49;;22971:10;;;;;;;;;;;22966:49;;;22983:3;22988:1;22991;22994:4;22966:49;;;;;;;;;:::i;:::-;;;;;;;;23051:11;;23063:1;23051:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;23035:37;;23044:5;;;;;;;;;;;23035:37;;;23067:4;23035:37;;;;;;:::i;:::-;;;;;;;;22941:3;;;;;:::i;:::-;;;;22897:187;;;;22800:291;;;;:::o;26613:436::-;26706:4;26723:13;26739:12;:10;:12::i;:::-;26723:28;;26762:24;26789:25;26799:5;26806:7;26789:9;:25::i;:::-;26762:52;;26853:15;26833:16;:35;;26825:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26946:60;26955:5;26962:7;26990:15;26971:16;:34;26946:8;:60::i;:::-;27037:4;27030:11;;;;26613:436;;;;:::o;23660:193::-;23739:4;23756:13;23772:12;:10;:12::i;:::-;23756:28;;23795;23805:5;23812:2;23816:6;23795:9;:28::i;:::-;23841:4;23834:11;;;23660:193;;;;:::o;20210:437::-;20290:21;20328:1;20314:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20290:40;;20359:4;20341;20346:1;20341:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;20385:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20375:4;20380:1;20375:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;20418:15;;;;;;;;;;;:66;;;20499:1;20515;20531:4;20550;20569:15;20418:177;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20627:4;20611:28;;20620:5;;;;;;;;;;;20611:28;;;20633:5;20611:28;;;;;;:::i;:::-;;;;;;;;20279:368;20210:437;;:::o;22432:119::-;22533:3;22517:26;;22526:5;22517:26;;;22538:4;22517:26;;;;;;:::i;:::-;;;;;;;;22432:119;;;:::o;23916:151::-;24005:7;24032:11;:18;24044:5;24032:18;;;;;;;;;;;;;;;:27;24051:7;24032:27;;;;;;;;;;;;;;;;24025:34;;23916:151;;;;:::o;15541:201::-;14528:13;:11;:13::i;:::-;15650:1:::1;15630:22;;:8;:22;;::::0;15622:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15706:28;15725:8;15706:18;:28::i;:::-;15541:201:::0;:::o;20655:579::-;20761:21;20799:1;20785:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20761:40;;20830:4;20812;20817:1;20812:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;20856:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20846:4;20851:1;20846:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;20895:9;20891:326;20910:5;;:12;;20906:1;:16;20891:326;;;20944:15;;;;;;;;;;;:66;;;21029:1;21049;21069:4;21092:5;;21098:1;21092:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21119:15;20944:205;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21185:5;;21191:1;21185:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21169:36;;21178:5;;;;;;;;;;;21169:36;;;21195:6;;21202:1;21195:9;;;;;;;:::i;:::-;;;;;;;;21169:36;;;;;;:::i;:::-;;;;;;;;20924:3;;;;;:::i;:::-;;;;20891:326;;;;20750:484;20655:579;;;;:::o;13351:98::-;13404:7;13431:10;13424:17;;13351:98;:::o;30725:380::-;30878:1;30861:19;;:5;:19;;;30853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30959:1;30940:21;;:7;:21;;;30932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31043:6;31013:11;:18;31025:5;31013:18;;;;;;;;;;;;;;;:27;31032:7;31013:27;;;;;;;;;;;;;;;:36;;;;31081:7;31065:32;;31074:5;31065:32;;;31090:6;31065:32;;;;;;:::i;:::-;;;;;;;;30725:380;;;:::o;31396:453::-;31531:24;31558:25;31568:5;31575:7;31558:9;:25::i;:::-;31531:52;;31618:17;31598:16;:37;31594:248;;31680:6;31660:16;:26;;31652:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31764:51;31773:5;31780:7;31808:6;31789:16;:25;31764:8;:51::i;:::-;31594:248;31520:329;31396:453;;;:::o;27519:925::-;27666:1;27650:18;;:4;:18;;;27642:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27743:1;27729:16;;:2;:16;;;27721:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27798:38;27819:4;27825:2;27829:6;27798:20;:38::i;:::-;27849:19;27871:9;:15;27881:4;27871:15;;;;;;;;;;;;;;;;27849:37;;27920:6;27905:11;:21;;27897:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28037:6;28023:11;:20;28005:9;:15;28015:4;28005:15;;;;;;;;;;;;;;;:38;;;;28240:6;28223:9;:13;28233:2;28223:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;28272:8;:14;28281:4;28272:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;28290:8;:12;28299:2;28290:12;;;;;;;;;;;;;;;;;;;;;;;;;28272:30;28268:72;;;28331:4;28312:23;;:15;;;;;;;;;;;:23;;;28304:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;28268:72;28375:2;28360:26;;28369:4;28360:26;;;28379:6;28360:26;;;;;;:::i;:::-;;;;;;;;28399:37;28419:4;28425:2;28429:6;28399:19;:37::i;:::-;27631:813;27519:925;;;:::o;14807:132::-;14882:12;:10;:12::i;:::-;14871:23;;:7;:5;:7::i;:::-;:23;;;14863:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14807:132::o;15902:191::-;15976:16;15995:6;;;;;;;;;;;15976:25;;16021:8;16012:6;;:17;;;;;;;;;;;;;;;;;;16076:8;16045:40;;16066:8;16045:40;;;;;;;;;;;;15965:128;15902:191;:::o;33181:125::-;;;;:::o;32453:124::-;;;;:::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;1553:117;1662:1;1659;1652: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:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5830:::-;5903:8;5913:6;5963:3;5956:4;5948:6;5944:17;5940:27;5930:122;;5971:79;;:::i;:::-;5930:122;6084:6;6071:20;6061:30;;6114:18;6106:6;6103:30;6100:117;;;6136:79;;:::i;:::-;6100:117;6250:4;6242:6;6238:17;6226:29;;6304:3;6296:4;6288:6;6284:17;6274:8;6270:32;6267:41;6264:128;;;6311:79;;:::i;:::-;6264:128;5830:568;;;;;:::o;6404:934::-;6526:6;6534;6542;6550;6599:2;6587:9;6578:7;6574:23;6570:32;6567:119;;;6605:79;;:::i;:::-;6567:119;6753:1;6742:9;6738:17;6725:31;6783:18;6775:6;6772:30;6769:117;;;6805:79;;:::i;:::-;6769:117;6918:80;6990:7;6981:6;6970:9;6966:22;6918:80;:::i;:::-;6900:98;;;;6696:312;7075:2;7064:9;7060:18;7047:32;7106:18;7098:6;7095:30;7092:117;;;7128:79;;:::i;:::-;7092:117;7241:80;7313:7;7304:6;7293:9;7289:22;7241:80;:::i;:::-;7223:98;;;;7018:313;6404:934;;;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:559::-;7765:6;7773;7822:2;7810:9;7801:7;7797:23;7793:32;7790:119;;;7828:79;;:::i;:::-;7790:119;7976:1;7965:9;7961:17;7948:31;8006:18;7998:6;7995:30;7992:117;;;8028:79;;:::i;:::-;7992:117;8141:80;8213:7;8204:6;8193:9;8189:22;8141:80;:::i;:::-;8123:98;;;;7919:312;7679:559;;;;;:::o;8244:1309::-;8402:6;8410;8418;8426;8434;8442;8491:2;8479:9;8470:7;8466:23;8462:32;8459:119;;;8497:79;;:::i;:::-;8459:119;8645:1;8634:9;8630:17;8617:31;8675:18;8667:6;8664:30;8661:117;;;8697:79;;:::i;:::-;8661:117;8810:80;8882:7;8873:6;8862:9;8858:22;8810:80;:::i;:::-;8792:98;;;;8588:312;8967:2;8956:9;8952:18;8939:32;8998:18;8990:6;8987:30;8984:117;;;9020:79;;:::i;:::-;8984:117;9133:80;9205:7;9196:6;9185:9;9181:22;9133:80;:::i;:::-;9115:98;;;;8910:313;9290:2;9279:9;9275:18;9262:32;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9456:80;9528:7;9519:6;9508:9;9504:22;9456:80;:::i;:::-;9438:98;;;;9233:313;8244:1309;;;;;;;;:::o;9559:118::-;9646:24;9664:5;9646:24;:::i;:::-;9641:3;9634:37;9559:118;;:::o;9683:222::-;9776:4;9814:2;9803:9;9799:18;9791:26;;9827:71;9895:1;9884:9;9880:17;9871:6;9827:71;:::i;:::-;9683:222;;;;:::o;9911:849::-;10015:6;10023;10031;10039;10088:2;10076:9;10067:7;10063:23;10059:32;10056:119;;;10094:79;;:::i;:::-;10056:119;10242:1;10231:9;10227:17;10214:31;10272:18;10264:6;10261:30;10258:117;;;10294:79;;:::i;:::-;10258:117;10407:80;10479:7;10470:6;10459:9;10455:22;10407:80;:::i;:::-;10389:98;;;;10185:312;10536:2;10562:53;10607:7;10598:6;10587:9;10583:22;10562:53;:::i;:::-;10552:63;;10507:118;10664:2;10690:53;10735:7;10726:6;10715:9;10711:22;10690:53;:::i;:::-;10680:63;;10635:118;9911:849;;;;;;;:::o;10766:474::-;10834:6;10842;10891:2;10879:9;10870:7;10866:23;10862:32;10859:119;;;10897:79;;:::i;:::-;10859:119;11017:1;11042:53;11087:7;11078:6;11067:9;11063:22;11042:53;:::i;:::-;11032:63;;10988:117;11144:2;11170:53;11215:7;11206:6;11195:9;11191:22;11170:53;:::i;:::-;11160:63;;11115:118;10766:474;;;;;:::o;11246:180::-;11294:77;11291:1;11284:88;11391:4;11388:1;11381:15;11415:4;11412:1;11405:15;11432:320;11476:6;11513:1;11507:4;11503:12;11493:22;;11560:1;11554:4;11550:12;11581:18;11571:81;;11637:4;11629:6;11625:17;11615:27;;11571:81;11699:2;11691:6;11688:14;11668:18;11665:38;11662:84;;11718:18;;:::i;:::-;11662:84;11483:269;11432:320;;;:::o;11758:180::-;11806:77;11803:1;11796:88;11903:4;11900:1;11893:15;11927:4;11924:1;11917:15;11944:180;11992:77;11989:1;11982:88;12089:4;12086:1;12079:15;12113:4;12110:1;12103:15;12130:143;12187:5;12218:6;12212:13;12203:22;;12234:33;12261:5;12234:33;:::i;:::-;12130:143;;;;:::o;12279:351::-;12349:6;12398:2;12386:9;12377:7;12373:23;12369:32;12366:119;;;12404:79;;:::i;:::-;12366:119;12524:1;12549:64;12605:7;12596:6;12585:9;12581:22;12549:64;:::i;:::-;12539:74;;12495:128;12279:351;;;;:::o;12636:85::-;12681:7;12710:5;12699:16;;12636:85;;;:::o;12727:60::-;12755:3;12776:5;12769:12;;12727:60;;;:::o;12793:158::-;12851:9;12884:61;12902:42;12911:32;12937:5;12911:32;:::i;:::-;12902:42;:::i;:::-;12884:61;:::i;:::-;12871:74;;12793:158;;;:::o;12957:147::-;13052:45;13091:5;13052:45;:::i;:::-;13047:3;13040:58;12957:147;;:::o;13110:114::-;13177:6;13211:5;13205:12;13195:22;;13110:114;;;:::o;13230:184::-;13329:11;13363:6;13358:3;13351:19;13403:4;13398:3;13394:14;13379:29;;13230:184;;;;:::o;13420:132::-;13487:4;13510:3;13502:11;;13540:4;13535:3;13531:14;13523:22;;13420:132;;;:::o;13558:108::-;13635:24;13653:5;13635:24;:::i;:::-;13630:3;13623:37;13558:108;;:::o;13672:179::-;13741:10;13762:46;13804:3;13796:6;13762:46;:::i;:::-;13840:4;13835:3;13831:14;13817:28;;13672:179;;;;:::o;13857:113::-;13927:4;13959;13954:3;13950:14;13942:22;;13857:113;;;:::o;14006:732::-;14125:3;14154:54;14202:5;14154:54;:::i;:::-;14224:86;14303:6;14298:3;14224:86;:::i;:::-;14217:93;;14334:56;14384:5;14334:56;:::i;:::-;14413:7;14444:1;14429:284;14454:6;14451:1;14448:13;14429:284;;;14530:6;14524:13;14557:63;14616:3;14601:13;14557:63;:::i;:::-;14550:70;;14643:60;14696:6;14643:60;:::i;:::-;14633:70;;14489:224;14476:1;14473;14469:9;14464:14;;14429:284;;;14433:14;14729:3;14722:10;;14130:608;;;14006:732;;;;:::o;14744:847::-;15015:4;15053:3;15042:9;15038:19;15030:27;;15067:79;15143:1;15132:9;15128:17;15119:6;15067:79;:::i;:::-;15156:80;15232:2;15221:9;15217:18;15208:6;15156:80;:::i;:::-;15283:9;15277:4;15273:20;15268:2;15257:9;15253:18;15246:48;15311:108;15414:4;15405:6;15311:108;:::i;:::-;15303:116;;15429:72;15497:2;15486:9;15482:18;15473:6;15429:72;:::i;:::-;15511:73;15579:3;15568:9;15564:19;15555:6;15511:73;:::i;:::-;14744:847;;;;;;;;:::o;15597:180::-;15645:77;15642:1;15635:88;15742:4;15739:1;15732:15;15766:4;15763:1;15756:15;15783:233;15822:3;15845:24;15863:5;15845:24;:::i;:::-;15836:33;;15891:66;15884:5;15881:77;15878:103;;15961:18;;:::i;:::-;15878:103;16008:1;16001:5;15997:13;15990:20;;15783:233;;;:::o;16022:191::-;16062:3;16081:20;16099:1;16081:20;:::i;:::-;16076:25;;16115:20;16133:1;16115:20;:::i;:::-;16110:25;;16158:1;16155;16151:9;16144:16;;16179:3;16176:1;16173:10;16170:36;;;16186:18;;:::i;:::-;16170:36;16022:191;;;;:::o;16219:585::-;16412:4;16450:3;16439:9;16435:19;16427:27;;16464:71;16532:1;16521:9;16517:17;16508:6;16464:71;:::i;:::-;16545:80;16621:2;16610:9;16606:18;16597:6;16545:80;:::i;:::-;16635;16711:2;16700:9;16696:18;16687:6;16635:80;:::i;:::-;16725:72;16793:2;16782:9;16778:18;16769:6;16725:72;:::i;:::-;16219:585;;;;;;;:::o;16810:224::-;16950:34;16946:1;16938:6;16934:14;16927:58;17019:7;17014:2;17006:6;17002:15;16995:32;16810:224;:::o;17040:366::-;17182:3;17203:67;17267:2;17262:3;17203:67;:::i;:::-;17196:74;;17279:93;17368:3;17279:93;:::i;:::-;17397:2;17392:3;17388:12;17381:19;;17040:366;;;:::o;17412:419::-;17578:4;17616:2;17605:9;17601:18;17593:26;;17665:9;17659:4;17655:20;17651:1;17640:9;17636:17;17629:47;17693:131;17819:4;17693:131;:::i;:::-;17685:139;;17412:419;;;:::o;17837:225::-;17977:34;17973:1;17965:6;17961:14;17954:58;18046:8;18041:2;18033:6;18029:15;18022:33;17837:225;:::o;18068:366::-;18210:3;18231:67;18295:2;18290:3;18231:67;:::i;:::-;18224:74;;18307:93;18396:3;18307:93;:::i;:::-;18425:2;18420:3;18416:12;18409:19;;18068:366;;;:::o;18440:419::-;18606:4;18644:2;18633:9;18629:18;18621:26;;18693:9;18687:4;18683:20;18679:1;18668:9;18664:17;18657:47;18721:131;18847:4;18721:131;:::i;:::-;18713:139;;18440:419;;;:::o;18865:223::-;19005:34;19001:1;18993:6;18989:14;18982:58;19074:6;19069:2;19061:6;19057:15;19050:31;18865:223;:::o;19094:366::-;19236:3;19257:67;19321:2;19316:3;19257:67;:::i;:::-;19250:74;;19333:93;19422:3;19333:93;:::i;:::-;19451:2;19446:3;19442:12;19435:19;;19094:366;;;:::o;19466:419::-;19632:4;19670:2;19659:9;19655:18;19647:26;;19719:9;19713:4;19709:20;19705:1;19694:9;19690:17;19683:47;19747:131;19873:4;19747:131;:::i;:::-;19739:139;;19466:419;;;:::o;19891:221::-;20031:34;20027:1;20019:6;20015:14;20008:58;20100:4;20095:2;20087:6;20083:15;20076:29;19891:221;:::o;20118:366::-;20260:3;20281:67;20345:2;20340:3;20281:67;:::i;:::-;20274:74;;20357:93;20446:3;20357:93;:::i;:::-;20475:2;20470:3;20466:12;20459:19;;20118:366;;;:::o;20490:419::-;20656:4;20694:2;20683:9;20679:18;20671:26;;20743:9;20737:4;20733:20;20729:1;20718:9;20714:17;20707:47;20771:131;20897:4;20771:131;:::i;:::-;20763:139;;20490:419;;;:::o;20915:179::-;21055:31;21051:1;21043:6;21039:14;21032:55;20915:179;:::o;21100:366::-;21242:3;21263:67;21327:2;21322:3;21263:67;:::i;:::-;21256:74;;21339:93;21428:3;21339:93;:::i;:::-;21457:2;21452:3;21448:12;21441:19;;21100:366;;;:::o;21472:419::-;21638:4;21676:2;21665:9;21661:18;21653:26;;21725:9;21719:4;21715:20;21711:1;21700:9;21696:17;21689:47;21753:131;21879:4;21753:131;:::i;:::-;21745:139;;21472:419;;;:::o;21897:224::-;22037:34;22033:1;22025:6;22021:14;22014:58;22106:7;22101:2;22093:6;22089:15;22082:32;21897:224;:::o;22127:366::-;22269:3;22290:67;22354:2;22349:3;22290:67;:::i;:::-;22283:74;;22366:93;22455:3;22366:93;:::i;:::-;22484:2;22479:3;22475:12;22468:19;;22127:366;;;:::o;22499:419::-;22665:4;22703:2;22692:9;22688:18;22680:26;;22752:9;22746:4;22742:20;22738:1;22727:9;22723:17;22716:47;22780:131;22906:4;22780:131;:::i;:::-;22772:139;;22499:419;;;:::o;22924:222::-;23064:34;23060:1;23052:6;23048:14;23041:58;23133:5;23128:2;23120:6;23116:15;23109:30;22924:222;:::o;23152:366::-;23294:3;23315:67;23379:2;23374:3;23315:67;:::i;:::-;23308:74;;23391:93;23480:3;23391:93;:::i;:::-;23509:2;23504:3;23500:12;23493:19;;23152:366;;;:::o;23524:419::-;23690:4;23728:2;23717:9;23713:18;23705:26;;23777:9;23771:4;23767:20;23763:1;23752:9;23748:17;23741:47;23805:131;23931:4;23805:131;:::i;:::-;23797:139;;23524:419;;;:::o;23949:225::-;24089:34;24085:1;24077:6;24073:14;24066:58;24158:8;24153:2;24145:6;24141:15;24134:33;23949:225;:::o;24180:366::-;24322:3;24343:67;24407:2;24402:3;24343:67;:::i;:::-;24336:74;;24419:93;24508:3;24419:93;:::i;:::-;24537:2;24532:3;24528:12;24521:19;;24180:366;;;:::o;24552:419::-;24718:4;24756:2;24745:9;24741:18;24733:26;;24805:9;24799:4;24795:20;24791:1;24780:9;24776:17;24769:47;24833:131;24959:4;24833:131;:::i;:::-;24825:139;;24552:419;;;:::o;24977:114::-;;:::o;25097:364::-;25239:3;25260:66;25324:1;25319:3;25260:66;:::i;:::-;25253:73;;25335:93;25424:3;25335:93;:::i;:::-;25453:1;25448:3;25444:11;25437:18;;25097:364;;;:::o;25467:419::-;25633:4;25671:2;25660:9;25656:18;25648:26;;25720:9;25714:4;25710:20;25706:1;25695:9;25691:17;25684:47;25748:131;25874:4;25748:131;:::i;:::-;25740:139;;25467:419;;;:::o;25892:182::-;26032:34;26028:1;26020:6;26016:14;26009:58;25892:182;:::o;26080:366::-;26222:3;26243:67;26307:2;26302:3;26243:67;:::i;:::-;26236:74;;26319:93;26408:3;26319:93;:::i;:::-;26437:2;26432:3;26428:12;26421:19;;26080:366;;;:::o;26452:419::-;26618:4;26656:2;26645:9;26641:18;26633:26;;26705:9;26699:4;26695:20;26691:1;26680:9;26676:17;26669:47;26733:131;26859:4;26733:131;:::i;:::-;26725:139;;26452:419;;;:::o
Swarm Source
ipfs://8d6c12a81b0856c52bb3aad9c9b085b84bb958aad8bb4413fe95f232712b7543
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.