Overview
Max Total Supply
3,328,301.8925225507064052 TACO
Holders
831 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10.635300517188010165 TACOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TacoToken
Compiler Version
v0.6.8+commit.0bbfe453
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./DeflationaryERC20.sol"; import "./Pausable.sol"; import "./IERC20.sol"; import "./SocialProofable.sol"; interface IUniswapV2Pair { function sync() external; } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } /** * ╭╯╭╯ ╭╯╭╯ ╭╯╭╯ * ╱▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔╲▔▔▔╲ * ╱ ╭╮ ╭╮ ╲╮╮ ╲ * ▏ ▂▂▂▂▂▂▂▂▂ ▕╮╮ ▕ * ▏ ╲▂▂▂▂▂▂▂╱ ▕╮╮ ▕ * ╲▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂╲▂▂╱ * TACOS * * * @title TacoToken * @dev Contract for $TACO. * Based of the work by Tendies $TEND * * @author [email protected] ($TEND) * @author @Onchained ($TACO) */ contract TacoToken is DeflationaryERC20, Pausable, SocialProofable { using SafeMath for uint256; //===============================================// // Contract Variables // //===============================================// // SOCIAL PROOF // string public constant override getTwitter = "Taconomics101"; string public constant override getTelegram = "TacoGram"; string public constant override getWebsite = "taconomics.io"; string public constant override getGithub = "taconomics"; uint256 public twitterProof; bytes public githubProof; // CRUNCH // uint256 public lastCrunchTime; uint256 public totalCrunched; // crunchRate is defined as a percentage (e.g. 1 = 1%, 5 = 5%, 27 = 27%) uint256 public crunchRate; /** * rewardForTaquero is defined as a percentage (e.g. 1 = 1%, 5 = 5%, 27 = 27%) * this is however a percentage of the crunchRate. */ uint256 public rewardForTaquero; /** * Taco Tuesday means the reward is multiplied by a factor defined here. * This percentage is defined as a multiplier with 1 decimal. * (e.g. 15 = 1.5x, 10 = 1x, 2 = 2x) * This is a multiplier applied to the rewardForTaquero percentage * (e.g. if rewardForTaquery = 2%, and multiplier is 20 (2x), then the reward is 4%) */ uint256 public tacoTuesdayRewardMultiplier; struct TaqueroStats { uint256 timesCrunched; uint256 tacosCrunched; } mapping(address => TaqueroStats) public taquerosCrunchStats; address[] public taqueros; // UNISWAP // IERC20 public WETH; IUniswapV2Factory public uniswapFactory; address public uniswapPool; //===============================================// // Constructor // //===============================================// constructor(uint256 initialSupply, address _uniswapFactoryAddress, address _wethToken) public Pausable() DeflationaryERC20("Tacos", "TACO") { _mint(msg.sender, initialSupply); // Initialize UniswapFactory uniswapFactory = IUniswapV2Factory(_uniswapFactoryAddress); WETH = IERC20(_wethToken); // Crunch variables crunchRate = 4; // Initial crunch rate set at 4% rewardForTaquero = 1; // Initial reward percentage set at 1% (1% of 4%) tacoTuesdayRewardMultiplier = 20; // Initial tacoTuesday multiplier set at 2x } //===============================================// // Events // //===============================================// event PoolCrunched( address taquero, uint256 crunchedAmount, uint256 newTotalSupply, uint256 newUniswapPoolSupply, uint256 taqueroReward, uint256 timesCrunched, uint256 totalTacosCrunched ); //===============================================// // Methods // //===============================================// // UNISWAP POOL // function setUniswapPool() external onlyOwner { require(uniswapPool == address(0), "TacoToken: pool already created"); uniswapPool = uniswapFactory.createPair(address(WETH), address(this)); } // TOKEN TRANSFER HOOK // function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require( !paused || msg.sender == pauser, "TacoToken: Cannot transfer tokens while game is paused and sender is not the Pauser." ); } // PAUSABLE OVERRIDE // function unpause() external onlyPauser { super._unpause(); // Start crunching lastCrunchTime = now; } // CRUNCH VARIABLES SETTERS // function setCrunchRate(uint256 _crunchRate) external onlyOwner { require( _crunchRate > 0 && _crunchRate <= 10, "TacoToken: crunchRate must be at least 1 and at most 10" ); crunchRate = _crunchRate; } function setRewardForTaquero(uint256 _rewardForTaquero) external onlyOwner { require( _rewardForTaquero > 0 && _rewardForTaquero <= 10, "TacoToken: rewardForTaquero must be at least 1 and at most 10" ); rewardForTaquero = _rewardForTaquero; } function setTacoTuesdayRewardMultiplier(uint256 _tacoTuesdayRewardMultiplier) external onlyOwner { require( _tacoTuesdayRewardMultiplier > 9 && _tacoTuesdayRewardMultiplier <= 30, "TacoToken: tacoTuesdayRewardMultiplier must be at least 10 and at most 30" ); tacoTuesdayRewardMultiplier = _tacoTuesdayRewardMultiplier; } // INFORMATION OF TAQUEROS FOR UI // function getInfoFor(address addr) public view returns ( uint256 balance, uint256 poolBalance, uint256 totalSupply, uint256 totalTacosCrunched, uint256 crunchableTacos, uint256 lastCrunchAt, uint256 timesCrunched, uint256 tacosCrunched, bool tacoTuesday, uint256 tacosCrunchRate, uint256 taqueroRewardRate, uint256 tacoTuesdayMultiplier ) { TaqueroStats memory taqueroStats = taquerosCrunchStats[addr]; return ( balanceOf(addr), balanceOf(uniswapPool), _totalSupply, totalCrunched, getCrunchAmount(), lastCrunchTime, taqueroStats.timesCrunched, taqueroStats.tacosCrunched, isTacoTuesday(), crunchRate, rewardForTaquero, tacoTuesdayRewardMultiplier ); } // CRUNCH DAT POOL! // function crunchPool() external whenNotPaused { uint256 toRemoveFromUniswap = getCrunchAmount(); require( toRemoveFromUniswap >= 1 * 1e18, "crunchPool: min crunch amount not reached." ); // Reset last crunch time lastCrunchTime = now; uint256 toPayTaquero = toRemoveFromUniswap .mul(rewardForTaquero) .mul(rewardMultiplier()) .div(1000); uint256 toBurnPermanently = toRemoveFromUniswap.sub(toPayTaquero); //=== DEFLATE SUPPLY // Remove tokens from Uniswap Pool. _balances[uniswapPool] = _balances[uniswapPool].sub(toRemoveFromUniswap); // Payout reward to taquero. _balances[msg.sender] = _balances[msg.sender].add(toPayTaquero); // "Burn" remaining tokens. _totalSupply = _totalSupply.sub(toBurnPermanently); //=== END DEFLATE totalCrunched = totalCrunched.add(toBurnPermanently); // Track all tacos crunched //=== UPDATE TAQUERO STATS // Retrieve Taquero Stats TaqueroStats storage taqueroStats = taquerosCrunchStats[msg.sender]; // If this is a new taquero, add to the list if (taqueroStats.timesCrunched == 0) { taqueros.push(msg.sender); } // Update the stats taqueroStats.timesCrunched = taqueroStats.timesCrunched.add(1); taqueroStats.tacosCrunched = taqueroStats.tacosCrunched.add(toPayTaquero); // Save stats in the map taquerosCrunchStats[msg.sender] = taqueroStats; //=== END UPDATE STATS IUniswapV2Pair(uniswapPool).sync(); emit PoolCrunched( msg.sender, toRemoveFromUniswap, _totalSupply, balanceOf(uniswapPool), toPayTaquero, taqueroStats.timesCrunched, taqueroStats.tacosCrunched ); } // Calculates the Amount of tokens available for Crunching given the delta in time since // last Crunch. function getCrunchAmount() public view returns (uint256) { if (paused) return 0; uint256 timeBetweenLastCrunch = now - lastCrunchTime; uint256 tokensInUniswapPool = balanceOf(uniswapPool); uint256 dayInSeconds = 1 days; uint256 crunchAmount = (tokensInUniswapPool.mul(crunchRate).mul(timeBetweenLastCrunch)) .div(dayInSeconds) .div(100); return crunchAmount; } // Determines the Reward Multiplier function rewardMultiplier() public view returns (uint256) { // This returns a multiplier with 1 decimal. so 10 means 1.0x if (isTacoTuesday()) { return tacoTuesdayRewardMultiplier; } else { return 10; } } // Is it Tuesday Today? // Thank you @nanexcool // https://twitter.com/nanexcool/status/1259623747339849729 function isTacoTuesday() public view returns (bool) { uint256 day = (now / 1 days + 3) % 7; return day == 1; } // Taquero Stats getter for Leaderboard function countTaqueros() public view returns (uint256) { return taqueros.length; } function getTaqueros() public view returns(address[] memory) { return taqueros; } function getTaqueroStats(address _address) public view returns (uint256 timesCrunched, uint256 tacosCrunched) { return (taquerosCrunchStats[_address].timesCrunched, taquerosCrunchStats[_address].tacosCrunched); } //===============================================// // Social Proof // //===============================================// function setTwitterProof(uint256 _twitterProof) external onlyOwner { twitterProof = _twitterProof; } function getTwitterProof() external override view returns(uint256) { return twitterProof; } function setGithubProof(bytes calldata _githubProof) external onlyOwner { githubProof = _githubProof; } function getGithubProof() external override view returns(bytes memory) { return githubProof; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; import "./Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract DeflationaryERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; ///////////////////////////////// // FOR DEFLATIONARY PURPOSES // ///////////////////////////////// // Marked as `internal` instead of `private` to have access to them from super. mapping (address => uint256) internal _balances; uint256 internal _totalSupply; ///////////////////////////////// // END MODIFICATIONS // ///////////////////////////////// mapping (address => mapping (address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./Context.sol"; /** * @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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./Ownable.sol"; contract Pausable is Ownable { // For allowing tokens to only become transferable at the end of sale address public pauser; bool public paused; constructor() public Ownable() { pauser = msg.sender; paused = true; } modifier onlyPauser() { require(pauser == _msgSender(), "Pausable: Only Pauser can call this function."); _; } modifier whenNotPaused() { require(!paused, "Pausable: Contract is paused"); _; } // PAUSER // function setPauser(address newPauser) public onlyOwner { require( newPauser != address(0), "Pausable: newPauser is the zero address." ); require( pauser != address(0), "Pausable: Pauser rights have been burnt. It's no longer able to set newPauser" ); pauser = newPauser; } function _unpause() internal onlyPauser { paused = false; // Upon unpausing, burn the rights of becoming pauser. pauser = address(0); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @title SocialProofable * @dev Used to define the social proof for a specific token. * Based on the proposal by Dan Levine: * https://docs.google.com/document/d/1wbsqYC6ZqZZdaz3li3UAFaXT2Yrc8G8KUDu7F3KrQ6Y/edit * * @author @Onchained */ interface SocialProofable { function getTwitter() external view returns(string memory); function getTwitterProof() external view returns(uint256); function getTelegram() external view returns(string memory); function getWebsite() external view returns(string memory); function getGithub() external view returns(string memory); function getGithubProof() external view returns(bytes memory); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_uniswapFactoryAddress","type":"address"},{"internalType":"address","name":"_wethToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"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":false,"internalType":"address","name":"taquero","type":"address"},{"indexed":false,"internalType":"uint256","name":"crunchedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUniswapPoolSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"taqueroReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timesCrunched","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTacosCrunched","type":"uint256"}],"name":"PoolCrunched","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"countTaqueros","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crunchPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"crunchRate","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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCrunchAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGithub","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGithubProof","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getInfoFor","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"poolBalance","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"totalTacosCrunched","type":"uint256"},{"internalType":"uint256","name":"crunchableTacos","type":"uint256"},{"internalType":"uint256","name":"lastCrunchAt","type":"uint256"},{"internalType":"uint256","name":"timesCrunched","type":"uint256"},{"internalType":"uint256","name":"tacosCrunched","type":"uint256"},{"internalType":"bool","name":"tacoTuesday","type":"bool"},{"internalType":"uint256","name":"tacosCrunchRate","type":"uint256"},{"internalType":"uint256","name":"taqueroRewardRate","type":"uint256"},{"internalType":"uint256","name":"tacoTuesdayMultiplier","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getTaqueroStats","outputs":[{"internalType":"uint256","name":"timesCrunched","type":"uint256"},{"internalType":"uint256","name":"tacosCrunched","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaqueros","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTelegram","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTwitter","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTwitterProof","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWebsite","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"githubProof","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTacoTuesday","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastCrunchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardForTaquero","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_crunchRate","type":"uint256"}],"name":"setCrunchRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_githubProof","type":"bytes"}],"name":"setGithubProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPauser","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardForTaquero","type":"uint256"}],"name":"setRewardForTaquero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tacoTuesdayRewardMultiplier","type":"uint256"}],"name":"setTacoTuesdayRewardMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_twitterProof","type":"uint256"}],"name":"setTwitterProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUniswapPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tacoTuesdayRewardMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taqueros","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taquerosCrunchStats","outputs":[{"internalType":"uint256","name":"timesCrunched","type":"uint256"},{"internalType":"uint256","name":"tacosCrunched","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCrunched","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"twitterProof","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200464438038062004644833981810160405260608110156200003757600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050506040518060400160405280600581526020017f5461636f730000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5441434f000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e09291906200062c565b508060049080519060200190620000f99291906200062c565b506012600560006101000a81548160ff021916908360ff160217905550505060006200012a620002da60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660146101000a81548160ff021916908315150217905550620002373384620002e260201b60201c565b81601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004600b819055506001600c819055506014600d81905550505050620006db565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200039a60008383620004c060201b60201c565b620003b6816001546200059e60201b620031241790919060201c565b60018190555062000414816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200059e60201b620031241790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004d88383836200062760201b620031ac1760201c565b600660149054906101000a900460ff161580620005425750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b62000599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526054815260200180620045f06054913960600191505060405180910390fd5b505050565b6000808284019050838110156200061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200066f57805160ff1916838001178555620006a0565b82800160010185558215620006a0579182015b828111156200069f57825182559160200191906001019062000682565b5b509050620006af9190620006b3565b5090565b620006d891905b80821115620006d4576000816000905550600101620006ba565b5090565b90565b613f0580620006eb6000396000f3fe608060405234801561001057600080fd5b50600436106102d65760003560e01c8063715b256611610182578063ad5c4648116100e9578063dedf9d9b116100a2578063e84657d41161007c578063e84657d414610fea578063e87a75e514610ff4578063f175e6a914611053578063f2fde38b146110d6576102d6565b8063dedf9d9b14610ec6578063df51aa4914610f49578063e0d7b3be14610fcc576102d6565b8063ad5c464814610cc0578063afedd59c14610d0a578063b1978fe114610d69578063bdd3d82514610d8b578063be19738314610dd5578063dd62ed3e14610e4e576102d6565b80638da5cb5b1161013b5780638da5cb5b14610a5a57806395d89b4114610aa45780639fd0506d14610b27578063a26a29ed14610b71578063a457c2d714610bf4578063a9059cbb14610c5a576102d6565b8063715b25661461096a578063747940c71461098857806382e7f246146109a6578063895e86b5146109d45780638bdb2afa146109f25780638c162c9414610a3c576102d6565b8063313ce567116102415780635c975abb116101fa5780636f2c590a116101d45780636f2c590a146108bc5780636ffe8016146108da57806370a0823114610908578063715018a614610960576102d6565b80635c975abb146107d3578063635f2b73146107f557806368f414ae14610813576102d6565b8063313ce5671461065357806339509351146106775780633abf64d7146106dd5780633f4ba83a146106e75780635b18b3cf146106f15780635ba4846f14610774576102d6565b806323b872dd1161029357806323b872dd1461045c5780632658451a146104e25780632ce24c41146105005780632d88af4a1461056e5780632dd0fc9d146105b25780632e711dbb14610635576102d6565b806306fdde03146102db578063095ea7b31461035e57806309e09a96146103c45780631049b29a146103f257806318160ddd1461041057806319504bbf1461042e575b600080fd5b6102e361111a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610323578082015181840152602081019050610308565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103aa6004803603604081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111bc565b604051808215151515815260200191505060405180910390f35b6103f0600480360360208110156103da57600080fd5b81019080803590602001909291905050506111da565b005b6103fa6112ae565b6040518082815260200191505060405180910390f35b6104186112b4565b6040518082815260200191505060405180910390f35b61045a6004803603602081101561044457600080fd5b81019080803590602001909291905050506112be565b005b6104c86004803603606081101561047257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113f8565b604051808215151515815260200191505060405180910390f35b6104ea6114d1565b6040518082815260200191505060405180910390f35b61052c6004803603602081101561051657600080fd5b81019080803590602001909291905050506114d7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105b06004803603602081101561058457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611513565b005b6105ba61174f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105fa5780820151818401526020810190506105df565b50505050905090810190601f1680156106275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61063d611788565b6040518082815260200191505060405180910390f35b61065b61178e565b604051808260ff1660ff16815260200191505060405180910390f35b6106c36004803603604081101561068d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117a5565b604051808215151515815260200191505060405180910390f35b6106e5611858565b005b6106ef611de5565b005b6106f9611ea3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561073957808201518184015260208101905061071e565b50505050905090810190601f1680156107665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61077c611edc565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107bf5780820151818401526020810190506107a4565b505050509050019250505060405180910390f35b6107db611f6a565b604051808215151515815260200191505060405180910390f35b6107fd611f7d565b6040518082815260200191505060405180910390f35b6108556004803603602081101561082957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f87565b604051808d81526020018c81526020018b81526020018a8152602001898152602001888152602001878152602001868152602001851515151581526020018481526020018381526020018281526020019c5050505050505050505050505060405180910390f35b6108c4612089565b6040518082815260200191505060405180910390f35b610906600480360360208110156108f057600080fd5b81019080803590602001909291905050506120aa565b005b61094a6004803603602081101561091e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121e4565b6040518082815260200191505060405180910390f35b61096861222c565b005b6109726123b7565b6040518082815260200191505060405180910390f35b6109906123bd565b6040518082815260200191505060405180910390f35b6109d2600480360360208110156109bc57600080fd5b81019080803590602001909291905050506123c3565b005b6109dc6124fd565b6040518082815260200191505060405180910390f35b6109fa612503565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a44612529565b6040518082815260200191505060405180910390f35b610a62612536565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610aac612560565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aec578082015181840152602081019050610ad1565b50505050905090810190601f168015610b195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b2f612602565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b79612628565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bb9578082015181840152602081019050610b9e565b50505050905090810190601f168015610be65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c4060048036036040811015610c0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506126ca565b604051808215151515815260200191505060405180910390f35b610ca660048036036040811015610c7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612797565b604051808215151515815260200191505060405180910390f35b610cc86127b5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d4c60048036036020811015610d2057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127db565b604051808381526020018281526020019250505060405180910390f35b610d716127ff565b604051808215151515815260200191505060405180910390f35b610d93612828565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610e4c60048036036020811015610deb57600080fd5b8101908080359060200190640100000000811115610e0857600080fd5b820183602082011115610e1a57600080fd5b80359060200191846001830284011164010000000083111715610e3c57600080fd5b909192939192939050505061284e565b005b610eb060048036036040811015610e6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061292e565b6040518082815260200191505060405180910390f35b610ece6129b5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f0e578082015181840152602081019050610ef3565b50505050905090810190601f168015610f3b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f51612a53565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f91578082015181840152602081019050610f76565b50505050905090810190601f168015610fbe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fd4612a8c565b6040518082815260200191505060405180910390f35b610ff2612b47565b005b6110366004803603602081101561100a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e49565b604051808381526020018281526020019250505060405180910390f35b61105b612edb565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561109b578082015181840152602081019050611080565b50505050905090810190601f1680156110c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611118600480360360208110156110ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f14565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b25780601f10611187576101008083540402835291602001916111b2565b820191906000526020600020905b81548152906001019060200180831161119557829003601f168201915b5050505050905090565b60006111d06111c96131b1565b84846131b9565b6001905092915050565b6111e26131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b60075481565b6000600154905090565b6112c66131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000811180156113995750600a8111155b6113ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180613dc1603d913960400191505060405180910390fd5b80600c8190555050565b60006114058484846133b0565b6114c6846114116131b1565b6114c185604051806060016040528060288152602001613c8560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114776131b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136719092919063ffffffff16565b6131b9565b600190509392505050565b600a5481565b600f81815481106114e457fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61151b6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611663576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c3c6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d815260200180613d50604d913960600191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060400160405280600881526020017f5461636f4772616d00000000000000000000000000000000000000000000000081525081565b600c5481565b6000600560009054906101000a900460ff16905090565b600061184e6117b26131b1565b8461184985600260006117c36131b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312490919063ffffffff16565b6131b9565b6001905092915050565b600660149054906101000a900460ff16156118db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f5061757361626c653a20436f6e7472616374206973207061757365640000000081525060200191505060405180910390fd5b60006118e5612a8c565b9050670de0b6b3a7640000811015611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613cad602a913960400191505060405180910390fd5b4260098190555060006119936103e8611985611962612089565b611977600c548761373190919063ffffffff16565b61373190919063ffffffff16565b6137b790919063ffffffff16565b905060006119aa828461380190919063ffffffff16565b9050611a1f83600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461380190919063ffffffff16565b600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad4826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312490919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b2b8160015461380190919063ffffffff16565b600181905550611b4681600a5461312490919063ffffffff16565b600a819055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001541415611c0057600f339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b611c186001826000015461312490919063ffffffff16565b8160000181905550611c3783826001015461312490919063ffffffff16565b816001018190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820154816000015560018201548160010155905050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611d0057600080fd5b505af1158015611d14573d6000803e3d6000fd5b505050507f3014223ac687655271e5aea5a764708387a0514dfd8580e36a35b1ebb9e15d583385600154611d69601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121e4565b8786600001548760010154604051808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200187815260200186815260200185815260200184815260200183815260200182815260200197505050505050505060405180910390a150505050565b611ded6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613e7e602d913960400191505060405180910390fd5b611e9a61384b565b42600981905550565b6040518060400160405280600a81526020017f7461636f6e6f6d6963730000000000000000000000000000000000000000000081525081565b6060600f805480602002602001604051908101604052809291908181526020018280548015611f6057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611f16575b5050505050905090565b600660149054906101000a900460ff1681565b6000600754905090565b600080600080600080600080600080600080611fa1613aeb565b600e60008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180604001604052908160008201548152602001600182015481525050905061200a8e6121e4565b612035601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121e4565b600154600a54612043612a8c565b600954866000015187602001516120586127ff565b600b54600c54600d549c509c509c509c509c509c509c509c509c509c509c509c505091939597999b5091939597999b565b60006120936127ff565b156120a257600d5490506120a7565b600a90505b90565b6120b26131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6009811180156121855750601e8111155b6121da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526049815260200180613dfe6049913960600191505060405180910390fd5b80600d8190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6122346131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b600d5481565b6123cb6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008111801561249e5750600a8111155b6124f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180613e476037913960400191505060405180910390fd5b80600b8190555050565b60095481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f80549050905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125f85780601f106125cd576101008083540402835291602001916125f8565b820191906000526020600020905b8154815290600101906020018083116125db57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126c05780601f10612695576101008083540402835291602001916126c0565b820191906000526020600020905b8154815290600101906020018083116126a357829003601f168201915b5050505050905090565b600061278d6126d76131b1565b8461278885604051806060016040528060258152602001613eab60259139600260006127016131b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136719092919063ffffffff16565b6131b9565b6001905092915050565b60006127ab6127a46131b1565b84846133b0565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090508060000154908060010154905082565b6000806007600362015180428161281257fe5b04018161281b57fe5b0690506001811491505090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6128566131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b818160089190612929929190613b05565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a4b5780601f10612a2057610100808354040283529160200191612a4b565b820191906000526020600020905b815481529060010190602001808311612a2e57829003601f168201915b505050505081565b6040518060400160405280600d81526020017f7461636f6e6f6d6963732e696f0000000000000000000000000000000000000081525081565b6000600660149054906101000a900460ff1615612aac5760009050612b44565b6000600954420390506000612ae2601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121e4565b905060006201518090506000612b3a6064612b2c84612b1e88612b10600b548a61373190919063ffffffff16565b61373190919063ffffffff16565b6137b790919063ffffffff16565b6137b790919063ffffffff16565b9050809450505050505b90565b612b4f6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5461636f546f6b656e3a20706f6f6c20616c726561647920637265617465640081525060200191505060405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015612dcc57600080fd5b505af1158015612de0573d6000803e3d6000fd5b505050506040513d6020811015612df657600080fd5b8101908080519060200190929190505050601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015491509150915091565b6040518060400160405280600d81526020017f5461636f6e6f6d6963733130310000000000000000000000000000000000000081525081565b612f1c6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613064576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613bce6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156131a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561323f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613d9d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613bf46022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613436576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613cd76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613bab6023913960400191505060405180910390fd5b6134c7838383613957565b61353281604051806060016040528060268152602001613c16602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136719092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506135c5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156136e35780820151818401526020810190506136c8565b50505050905090810190601f1680156137105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083141561374457600090506137b1565b600082840290508284828161375557fe5b04146137ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613c646021913960400191505060405180910390fd5b809150505b92915050565b60006137f983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a25565b905092915050565b600061384383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613671565b905092915050565b6138536131b1565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146138f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613e7e602d913960400191505060405180910390fd5b6000600660146101000a81548160ff0219169083151502179055506000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6139628383836131ac565b600660149054906101000a900460ff1615806139cb5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b613a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526054815260200180613cfc6054913960600191505060405180910390fd5b505050565b60008083118290613ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a96578082015181840152602081019050613a7b565b50505050905090810190601f168015613ac35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613add57fe5b049050809150509392505050565b604051806040016040528060008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613b4657803560ff1916838001178555613b74565b82800160010185558215613b74579182015b82811115613b73578235825591602001919060010190613b58565b5b509050613b819190613b85565b5090565b613ba791905b80821115613ba3576000816000905550600101613b8b565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655061757361626c653a206e657750617573657220697320746865207a65726f20616464726573732e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63656372756e6368506f6f6c3a206d696e206372756e636820616d6f756e74206e6f7420726561636865642e45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735461636f546f6b656e3a2043616e6e6f74207472616e7366657220746f6b656e73207768696c652067616d652069732070617573656420616e642073656e646572206973206e6f7420746865205061757365722e5061757361626c653a20506175736572207269676874732068617665206265656e206275726e742e2049742773206e6f206c6f6e6765722061626c6520746f20736574206e657750617573657245524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735461636f546f6b656e3a20726577617264466f725461717565726f206d757374206265206174206c65617374203120616e64206174206d6f73742031305461636f546f6b656e3a207461636f547565736461795265776172644d756c7469706c696572206d757374206265206174206c6561737420313020616e64206174206d6f73742033305461636f546f6b656e3a206372756e636852617465206d757374206265206174206c65617374203120616e64206174206d6f73742031305061757361626c653a204f6e6c79205061757365722063616e2063616c6c20746869732066756e6374696f6e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122008ddb6c9d8d66df2294511ef76259aefc6e364eb79770c70941d2884a6a0f6a164736f6c634300060800335461636f546f6b656e3a2043616e6e6f74207472616e7366657220746f6b656e73207768696c652067616d652069732070617573656420616e642073656e646572206973206e6f7420746865205061757365722e0000000000000000000000000000000000000000000cec82bcb5943b150000000000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102d65760003560e01c8063715b256611610182578063ad5c4648116100e9578063dedf9d9b116100a2578063e84657d41161007c578063e84657d414610fea578063e87a75e514610ff4578063f175e6a914611053578063f2fde38b146110d6576102d6565b8063dedf9d9b14610ec6578063df51aa4914610f49578063e0d7b3be14610fcc576102d6565b8063ad5c464814610cc0578063afedd59c14610d0a578063b1978fe114610d69578063bdd3d82514610d8b578063be19738314610dd5578063dd62ed3e14610e4e576102d6565b80638da5cb5b1161013b5780638da5cb5b14610a5a57806395d89b4114610aa45780639fd0506d14610b27578063a26a29ed14610b71578063a457c2d714610bf4578063a9059cbb14610c5a576102d6565b8063715b25661461096a578063747940c71461098857806382e7f246146109a6578063895e86b5146109d45780638bdb2afa146109f25780638c162c9414610a3c576102d6565b8063313ce567116102415780635c975abb116101fa5780636f2c590a116101d45780636f2c590a146108bc5780636ffe8016146108da57806370a0823114610908578063715018a614610960576102d6565b80635c975abb146107d3578063635f2b73146107f557806368f414ae14610813576102d6565b8063313ce5671461065357806339509351146106775780633abf64d7146106dd5780633f4ba83a146106e75780635b18b3cf146106f15780635ba4846f14610774576102d6565b806323b872dd1161029357806323b872dd1461045c5780632658451a146104e25780632ce24c41146105005780632d88af4a1461056e5780632dd0fc9d146105b25780632e711dbb14610635576102d6565b806306fdde03146102db578063095ea7b31461035e57806309e09a96146103c45780631049b29a146103f257806318160ddd1461041057806319504bbf1461042e575b600080fd5b6102e361111a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610323578082015181840152602081019050610308565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103aa6004803603604081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111bc565b604051808215151515815260200191505060405180910390f35b6103f0600480360360208110156103da57600080fd5b81019080803590602001909291905050506111da565b005b6103fa6112ae565b6040518082815260200191505060405180910390f35b6104186112b4565b6040518082815260200191505060405180910390f35b61045a6004803603602081101561044457600080fd5b81019080803590602001909291905050506112be565b005b6104c86004803603606081101561047257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113f8565b604051808215151515815260200191505060405180910390f35b6104ea6114d1565b6040518082815260200191505060405180910390f35b61052c6004803603602081101561051657600080fd5b81019080803590602001909291905050506114d7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105b06004803603602081101561058457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611513565b005b6105ba61174f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105fa5780820151818401526020810190506105df565b50505050905090810190601f1680156106275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61063d611788565b6040518082815260200191505060405180910390f35b61065b61178e565b604051808260ff1660ff16815260200191505060405180910390f35b6106c36004803603604081101561068d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117a5565b604051808215151515815260200191505060405180910390f35b6106e5611858565b005b6106ef611de5565b005b6106f9611ea3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561073957808201518184015260208101905061071e565b50505050905090810190601f1680156107665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61077c611edc565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107bf5780820151818401526020810190506107a4565b505050509050019250505060405180910390f35b6107db611f6a565b604051808215151515815260200191505060405180910390f35b6107fd611f7d565b6040518082815260200191505060405180910390f35b6108556004803603602081101561082957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f87565b604051808d81526020018c81526020018b81526020018a8152602001898152602001888152602001878152602001868152602001851515151581526020018481526020018381526020018281526020019c5050505050505050505050505060405180910390f35b6108c4612089565b6040518082815260200191505060405180910390f35b610906600480360360208110156108f057600080fd5b81019080803590602001909291905050506120aa565b005b61094a6004803603602081101561091e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121e4565b6040518082815260200191505060405180910390f35b61096861222c565b005b6109726123b7565b6040518082815260200191505060405180910390f35b6109906123bd565b6040518082815260200191505060405180910390f35b6109d2600480360360208110156109bc57600080fd5b81019080803590602001909291905050506123c3565b005b6109dc6124fd565b6040518082815260200191505060405180910390f35b6109fa612503565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a44612529565b6040518082815260200191505060405180910390f35b610a62612536565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610aac612560565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aec578082015181840152602081019050610ad1565b50505050905090810190601f168015610b195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b2f612602565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b79612628565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bb9578082015181840152602081019050610b9e565b50505050905090810190601f168015610be65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c4060048036036040811015610c0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506126ca565b604051808215151515815260200191505060405180910390f35b610ca660048036036040811015610c7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612797565b604051808215151515815260200191505060405180910390f35b610cc86127b5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d4c60048036036020811015610d2057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127db565b604051808381526020018281526020019250505060405180910390f35b610d716127ff565b604051808215151515815260200191505060405180910390f35b610d93612828565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610e4c60048036036020811015610deb57600080fd5b8101908080359060200190640100000000811115610e0857600080fd5b820183602082011115610e1a57600080fd5b80359060200191846001830284011164010000000083111715610e3c57600080fd5b909192939192939050505061284e565b005b610eb060048036036040811015610e6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061292e565b6040518082815260200191505060405180910390f35b610ece6129b5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f0e578082015181840152602081019050610ef3565b50505050905090810190601f168015610f3b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f51612a53565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f91578082015181840152602081019050610f76565b50505050905090810190601f168015610fbe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fd4612a8c565b6040518082815260200191505060405180910390f35b610ff2612b47565b005b6110366004803603602081101561100a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e49565b604051808381526020018281526020019250505060405180910390f35b61105b612edb565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561109b578082015181840152602081019050611080565b50505050905090810190601f1680156110c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611118600480360360208110156110ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f14565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b25780601f10611187576101008083540402835291602001916111b2565b820191906000526020600020905b81548152906001019060200180831161119557829003601f168201915b5050505050905090565b60006111d06111c96131b1565b84846131b9565b6001905092915050565b6111e26131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b60075481565b6000600154905090565b6112c66131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000811180156113995750600a8111155b6113ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180613dc1603d913960400191505060405180910390fd5b80600c8190555050565b60006114058484846133b0565b6114c6846114116131b1565b6114c185604051806060016040528060288152602001613c8560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114776131b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136719092919063ffffffff16565b6131b9565b600190509392505050565b600a5481565b600f81815481106114e457fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61151b6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611663576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c3c6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d815260200180613d50604d913960600191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060400160405280600881526020017f5461636f4772616d00000000000000000000000000000000000000000000000081525081565b600c5481565b6000600560009054906101000a900460ff16905090565b600061184e6117b26131b1565b8461184985600260006117c36131b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312490919063ffffffff16565b6131b9565b6001905092915050565b600660149054906101000a900460ff16156118db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f5061757361626c653a20436f6e7472616374206973207061757365640000000081525060200191505060405180910390fd5b60006118e5612a8c565b9050670de0b6b3a7640000811015611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613cad602a913960400191505060405180910390fd5b4260098190555060006119936103e8611985611962612089565b611977600c548761373190919063ffffffff16565b61373190919063ffffffff16565b6137b790919063ffffffff16565b905060006119aa828461380190919063ffffffff16565b9050611a1f83600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461380190919063ffffffff16565b600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad4826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312490919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b2b8160015461380190919063ffffffff16565b600181905550611b4681600a5461312490919063ffffffff16565b600a819055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001541415611c0057600f339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b611c186001826000015461312490919063ffffffff16565b8160000181905550611c3783826001015461312490919063ffffffff16565b816001018190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820154816000015560018201548160010155905050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611d0057600080fd5b505af1158015611d14573d6000803e3d6000fd5b505050507f3014223ac687655271e5aea5a764708387a0514dfd8580e36a35b1ebb9e15d583385600154611d69601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121e4565b8786600001548760010154604051808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200187815260200186815260200185815260200184815260200183815260200182815260200197505050505050505060405180910390a150505050565b611ded6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613e7e602d913960400191505060405180910390fd5b611e9a61384b565b42600981905550565b6040518060400160405280600a81526020017f7461636f6e6f6d6963730000000000000000000000000000000000000000000081525081565b6060600f805480602002602001604051908101604052809291908181526020018280548015611f6057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611f16575b5050505050905090565b600660149054906101000a900460ff1681565b6000600754905090565b600080600080600080600080600080600080611fa1613aeb565b600e60008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180604001604052908160008201548152602001600182015481525050905061200a8e6121e4565b612035601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121e4565b600154600a54612043612a8c565b600954866000015187602001516120586127ff565b600b54600c54600d549c509c509c509c509c509c509c509c509c509c509c509c505091939597999b5091939597999b565b60006120936127ff565b156120a257600d5490506120a7565b600a90505b90565b6120b26131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6009811180156121855750601e8111155b6121da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526049815260200180613dfe6049913960600191505060405180910390fd5b80600d8190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6122346131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b600d5481565b6123cb6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008111801561249e5750600a8111155b6124f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180613e476037913960400191505060405180910390fd5b80600b8190555050565b60095481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f80549050905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125f85780601f106125cd576101008083540402835291602001916125f8565b820191906000526020600020905b8154815290600101906020018083116125db57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126c05780601f10612695576101008083540402835291602001916126c0565b820191906000526020600020905b8154815290600101906020018083116126a357829003601f168201915b5050505050905090565b600061278d6126d76131b1565b8461278885604051806060016040528060258152602001613eab60259139600260006127016131b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136719092919063ffffffff16565b6131b9565b6001905092915050565b60006127ab6127a46131b1565b84846133b0565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090508060000154908060010154905082565b6000806007600362015180428161281257fe5b04018161281b57fe5b0690506001811491505090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6128566131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b818160089190612929929190613b05565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a4b5780601f10612a2057610100808354040283529160200191612a4b565b820191906000526020600020905b815481529060010190602001808311612a2e57829003601f168201915b505050505081565b6040518060400160405280600d81526020017f7461636f6e6f6d6963732e696f0000000000000000000000000000000000000081525081565b6000600660149054906101000a900460ff1615612aac5760009050612b44565b6000600954420390506000612ae2601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121e4565b905060006201518090506000612b3a6064612b2c84612b1e88612b10600b548a61373190919063ffffffff16565b61373190919063ffffffff16565b6137b790919063ffffffff16565b6137b790919063ffffffff16565b9050809450505050505b90565b612b4f6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5461636f546f6b656e3a20706f6f6c20616c726561647920637265617465640081525060200191505060405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015612dcc57600080fd5b505af1158015612de0573d6000803e3d6000fd5b505050506040513d6020811015612df657600080fd5b8101908080519060200190929190505050601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015491509150915091565b6040518060400160405280600d81526020017f5461636f6e6f6d6963733130310000000000000000000000000000000000000081525081565b612f1c6131b1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613064576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613bce6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156131a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561323f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613d9d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613bf46022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613436576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613cd76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613bab6023913960400191505060405180910390fd5b6134c7838383613957565b61353281604051806060016040528060268152602001613c16602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136719092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506135c5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156136e35780820151818401526020810190506136c8565b50505050905090810190601f1680156137105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083141561374457600090506137b1565b600082840290508284828161375557fe5b04146137ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613c646021913960400191505060405180910390fd5b809150505b92915050565b60006137f983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a25565b905092915050565b600061384383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613671565b905092915050565b6138536131b1565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146138f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613e7e602d913960400191505060405180910390fd5b6000600660146101000a81548160ff0219169083151502179055506000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6139628383836131ac565b600660149054906101000a900460ff1615806139cb5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b613a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526054815260200180613cfc6054913960600191505060405180910390fd5b505050565b60008083118290613ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a96578082015181840152602081019050613a7b565b50505050905090810190601f168015613ac35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613add57fe5b049050809150509392505050565b604051806040016040528060008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613b4657803560ff1916838001178555613b74565b82800160010185558215613b74579182015b82811115613b73578235825591602001919060010190613b58565b5b509050613b819190613b85565b5090565b613ba791905b80821115613ba3576000816000905550600101613b8b565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655061757361626c653a206e657750617573657220697320746865207a65726f20616464726573732e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63656372756e6368506f6f6c3a206d696e206372756e636820616d6f756e74206e6f7420726561636865642e45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735461636f546f6b656e3a2043616e6e6f74207472616e7366657220746f6b656e73207768696c652067616d652069732070617573656420616e642073656e646572206973206e6f7420746865205061757365722e5061757361626c653a20506175736572207269676874732068617665206265656e206275726e742e2049742773206e6f206c6f6e6765722061626c6520746f20736574206e657750617573657245524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735461636f546f6b656e3a20726577617264466f725461717565726f206d757374206265206174206c65617374203120616e64206174206d6f73742031305461636f546f6b656e3a207461636f547565736461795265776172644d756c7469706c696572206d757374206265206174206c6561737420313020616e64206174206d6f73742033305461636f546f6b656e3a206372756e636852617465206d757374206265206174206c65617374203120616e64206174206d6f73742031305061757361626c653a204f6e6c79205061757365722063616e2063616c6c20746869732066756e6374696f6e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122008ddb6c9d8d66df2294511ef76259aefc6e364eb79770c70941d2884a6a0f6a164736f6c63430006080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000cec82bcb5943b150000000000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 15624000000000000000000000
Arg [1] : _uniswapFactoryAddress (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
Arg [2] : _wethToken (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000cec82bcb5943b15000000
Arg [1] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Arg [2] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode Sourcemap
1037:10103:8:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1037:10103:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;2518:81:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2518:81:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4554:166;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;4554:166:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10684:112:8;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;10684:112:8;;;;;;;;;;;;;;;;;:::i;:::-;;1591:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3561:98:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5236:294:8;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;5236:294:8;;;;;;;;;;;;;;;;;:::i;:::-;;5180:317:2;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;5180:317:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1707:28:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2613:25;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;2613:25:8;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;596:364:5;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;596:364:5;;;;;;;;;;;;;;;;;;;:::i;:::-;;1401:56:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1401:56:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2006:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3420:81:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5892:215;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;5892:215:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6992:1914:8;;;:::i;:::-;;4807:130;;;:::i;:::-;;1529:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1529:56:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10187:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10187:93:8;;;;;;;;;;;;;;;;;219:18:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10802:103:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5955:1004;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;5955:1004:8;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9517:264;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5536:372;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;5536:372:8;;;;;;;;;;;;;;;;;:::i;:::-;;3717:117:2;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;3717:117:2;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1684:145:4;;;:::i;:::-;;1819:25:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2404:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4978:252;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;4978:252:8;;;;;;;;;;;;;;;;;:::i;:::-;;1672:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2687:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10087:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1061:77:4;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2712:85:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2712:85:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192:21:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11032:106:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11032:106:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6594:266:2;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;6594:266:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4037:172;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;4037:172:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2663:18:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2548:59;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;2548:59:8;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;9907:130;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2732:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10911:115;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;10911:115:8;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;10911:115:8;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;10911:115:8;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;10911:115:8;;;;;;;;;;;;:::i;:::-;;4267:149:2;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;4267:149:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1624:24:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1624:24:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1463:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1463:60:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9025:446;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4166:210;;;:::i;:::-;;10286:224;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;10286:224:8;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;1335:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1335:60:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978:240:4;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;1978:240:4;;;;;;;;;;;;;;;;;;;:::i;:::-;;2518:81:2;2555:13;2587:5;2580:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2518:81;:::o;4554:166::-;4637:4;4653:39;4662:12;:10;:12::i;:::-;4676:7;4685:6;4653:8;:39::i;:::-;4709:4;4702:11;;4554:166;;;;:::o;10684:112:8:-;1275:12:4;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10776:13:8::1;10761:12;:28;;;;10684:112:::0;:::o;1591:27::-;;;;:::o;3561:98:2:-;3614:7;3640:12;;3633:19;;3561:98;:::o;5236:294:8:-;1275:12:4;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5362:1:8::1;5342:17;:21;:48;;;;;5388:2;5367:17;:23;;5342:48;5321:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5506:17;5487:16;:36;;;;5236:294:::0;:::o;5180:317:2:-;5286:4;5302:36;5312:6;5320:9;5331:6;5302:9;:36::i;:::-;5348:121;5357:6;5365:12;:10;:12::i;:::-;5379:89;5417:6;5379:89;;;;;;;;;;;;;;;;;:11;:19;5391:6;5379:19;;;;;;;;;;;;;;;:33;5399:12;:10;:12::i;:::-;5379:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;5348:8;:121::i;:::-;5486:4;5479:11;;5180:317;;;;;:::o;1707:28:8:-;;;;:::o;2613:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;596:364:5:-;1275:12:4;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;703:1:5::1;682:23;;:9;:23;;;;661:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820:1;802:20;;:6;;;;;;;;;;;:20;;;;781:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944:9;935:6;;:18;;;;;;;;;;;;;;;;;;596:364:::0;:::o;1401:56:8:-;;;;;;;;;;;;;;;;;;;:::o;2006:31::-;;;;:::o;3420:81:2:-;3461:5;3485:9;;;;;;;;;;;3478:16;;3420:81;:::o;5892:215::-;5980:4;5996:83;6005:12;:10;:12::i;:::-;6019:7;6028:50;6067:10;6028:11;:25;6040:12;:10;:12::i;:::-;6028:25;;;;;;;;;;;;;;;:34;6054:7;6028:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;5996:8;:83::i;:::-;6096:4;6089:11;;5892:215;;;;:::o;6992:1914:8:-;516:6:5;;;;;;;;;;;515:7;507:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7047:27:8::1;7077:17;:15;:17::i;:::-;7047:47;;7148:8;7125:19;:31;;7104:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7286:3;7269:14;:20;;;;7300;7323:114;7432:4;7323:91;7395:18;:16;:18::i;:::-;7323:54;7360:16;;7323:19;:36;;:54;;;;:::i;:::-;:71;;:91;;;;:::i;:::-;:108;;:114;;;;:::i;:::-;7300:137;;7448:25;7476:37;7500:12;7476:19;:23;;:37;;;;:::i;:::-;7448:65;;7622:47;7649:19;7622:9;:22:::0;7632:11:::1;;;;;;;;;;;7622:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;7597:9;:22:::0;7607:11:::1;;;;;;;;;;;7597:22;;;;;;;;;;;;;;;:72;;;;7740:39;7766:12;7740:9;:21:::0;7750:10:::1;7740:21;;;;;;;;;;;;;;;;:25;;:39;;;;:::i;:::-;7716:9;:21:::0;7726:10:::1;7716:21;;;;;;;;;;;;;;;:63;;;;7840:35;7857:17;7840:12;;:16;;:35;;;;:::i;:::-;7825:12;:50;;;;7928:36;7946:17;7928:13;;:17;;:36;;;;:::i;:::-;7912:13;:52;;;;8072:33;8108:19;:31;8128:10;8108:31;;;;;;;;;;;;;;;8072:67;;8236:1;8206:12;:26;;;:31;8202:87;;;8253:8;8267:10;8253:25;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;8253:25:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8202:87;8355:33;8386:1;8355:12;:26;;;:30;;:33;;;;:::i;:::-;8326:12;:26;;:62;;;;8427:44;8458:12;8427;:26;;;:30;;:44;;;;:::i;:::-;8398:12;:26;;:73;;;;8548:12;8514:19;:31;8534:10;8514:31;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;;8617:11;;;;;;;;;;;8602:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;8602:34:8;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;8602:34:8;;;;8652:247;8678:10;8702:19;8735:12;;8761:22;8771:11;;;;;;;;;;;8761:9;:22::i;:::-;8797:12;8823;:26;;;8863:12;:26;;;8652:247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;565:1:5;;;;6992:1914:8:o:0;4807:130::-;386:12:5;:10;:12::i;:::-;376:22;;:6;;;;;;;;;;;:22;;;368:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4856:16:8::1;:14;:16::i;:::-;4927:3;4910:14;:20;;;;4807:130::o:0;1529:56::-;;;;;;;;;;;;;;;;;;;:::o;10187:93::-;10230:16;10265:8;10258:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10187:93;:::o;219:18:5:-;;;;;;;;;;;;;:::o;10802:103:8:-;10860:7;10886:12;;10879:19;;10802:103;:::o;5955:1004::-;6047:15;6076:19;6109;6142:26;6182:23;6219:20;6253:21;6288;6323:16;6353:23;6390:25;6429:29;6483:32;;:::i;:::-;6518:19;:25;6538:4;6518:25;;;;;;;;;;;;;;;6483:60;;;;;;;;;;;;;;;;;;;;;;;;;;;6575:15;6585:4;6575:9;:15::i;:::-;6604:22;6614:11;;;;;;;;;;;6604:9;:22::i;:::-;6640:12;;6666:13;;6693:17;:15;:17::i;:::-;6724:14;;6752:12;:26;;;6792:12;:26;;;6832:15;:13;:15::i;:::-;6861:10;;6885:16;;6915:27;;6554:398;;;;;;;;;;;;;;;;;;;;;;;;;5955:1004;;;;;;;;;;;;;:::o;9517:264::-;9566:7;9659:15;:13;:15::i;:::-;9655:120;;;9697:27;;9690:34;;;;9655:120;9762:2;9755:9;;9517:264;;:::o;5536:372::-;1275:12:4;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5695:1:8::1;5664:28;:32;:70;;;;;5732:2;5700:28;:34;;5664:70;5643:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5873:28;5843:27;:58;;;;5536:372:::0;:::o;3717:117:2:-;3783:7;3809:9;:18;3819:7;3809:18;;;;;;;;;;;;;;;;3802:25;;3717:117;;;:::o;1684:145:4:-;1275:12;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1790:1:::1;1753:40;;1774:6;;;;;;;;;;;1753:40;;;;;;;;;;;;1820:1;1803:6;;:19;;;;;;;;;;;;;;;;;;1684:145::o:0;1819:25:8:-;;;;:::o;2404:42::-;;;;:::o;4978:252::-;1275:12:4;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5086:1:8::1;5072:11;:15;:36;;;;;5106:2;5091:11;:17;;5072:36;5051:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5212:11;5199:10;:24;;;;4978:252:::0;:::o;1672:29::-;;;;:::o;2687:39::-;;;;;;;;;;;;;:::o;10087:94::-;10133:7;10159:8;:15;;;;10152:22;;10087:94;:::o;1061:77:4:-;1099:7;1125:6;;;;;;;;;;;1118:13;;1061:77;:::o;2712:85:2:-;2751:13;2783:7;2776:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2712:85;:::o;192:21:5:-;;;;;;;;;;;;;:::o;11032:106:8:-;11089:12;11120:11;11113:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11032:106;:::o;6594:266:2:-;6687:4;6703:129;6712:12;:10;:12::i;:::-;6726:7;6735:96;6774:15;6735:96;;;;;;;;;;;;;;;;;:11;:25;6747:12;:10;:12::i;:::-;6735:25;;;;;;;;;;;;;;;:34;6761:7;6735:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;6703:8;:129::i;:::-;6849:4;6842:11;;6594:266;;;;:::o;4037:172::-;4123:4;4139:42;4149:12;:10;:12::i;:::-;4163:9;4174:6;4139:9;:42::i;:::-;4198:4;4191:11;;4037:172;;;;:::o;2663:18:8:-;;;;;;;;;;;;;:::o;2548:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9907:130::-;9953:4;9969:11;10004:1;9999;9990:6;9984:3;:12;;;;;;:16;9983:22;;;;;;9969:36;;10029:1;10022:3;:8;10015:15;;;9907:130;:::o;2732:26::-;;;;;;;;;;;;;:::o;10911:115::-;1275:12:4;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11007:12:8::1;;10993:11;:26;;;;;;;:::i;:::-;;10911:115:::0;;:::o;4267:149:2:-;4356:7;4382:11;:18;4394:5;4382:18;;;;;;;;;;;;;;;:27;4401:7;4382:27;;;;;;;;;;;;;;;;4375:34;;4267:149;;;;:::o;1624:24:8:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1463:60::-;;;;;;;;;;;;;;;;;;;:::o;9025:446::-;9073:7;9096:6;;;;;;;;;;;9092:20;;;9111:1;9104:8;;;;9092:20;9123:29;9161:14;;9155:3;:20;9123:52;;9185:27;9215:22;9225:11;;;;;;;;;;;9215:9;:22::i;:::-;9185:52;;9247:20;9270:6;9247:29;;9286:20;9309:125;9430:3;9309:99;9395:12;9310:62;9350:21;9310:35;9334:10;;9310:19;:23;;:35;;;;:::i;:::-;:39;;:62;;;;:::i;:::-;9309:85;;:99;;;;:::i;:::-;:120;;:125;;;;:::i;:::-;9286:148;;9452:12;9445:19;;;;;;9025:446;;:::o;4166:210::-;1275:12:4;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4252:1:8::1;4229:25;;:11;;;;;;;;;;;:25;;;4221:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;4314:14;;;;;;;;;;;:25;;;4348:4;;;;;;;;;;;4363;4314:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;4314:55:8;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;4314:55:8;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;4314:55:8;;;;;;;;;;;;;;;;4300:11;;:69;;;;;;;;;;;;;;;;;;4166:210::o:0;10286:224::-;10350:21;10373;10414:19;:29;10434:8;10414:29;;;;;;;;;;;;;;;:43;;;10459:19;:29;10479:8;10459:29;;;;;;;;;;;;;;;:43;;;10406:97;;;;10286:224;;;:::o;1335:60::-;;;;;;;;;;;;;;;;;;;:::o;1978:240:4:-;1275:12;:10;:12::i;:::-;1265:22;;:6;;;;;;;;;;;:22;;;1257:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2086:1:::1;2066:22;;:8;:22;;;;2058:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2175:8;2146:38;;2167:6;;;;;;;;;;;2146:38;;;;;;;;;;;;2203:8;2194:6;;:17;;;;;;;;;;;;;;;;;;1978:240:::0;:::o;874:176:6:-;932:7;951:9;967:1;963;:5;951:17;;991:1;986;:6;;978:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1042:1;1035:8;;;874:176;;;;:::o;10996:92:2:-;;;;:::o;590:104:1:-;643:15;677:10;670:17;;590:104;:::o;9658:340:2:-;9776:1;9759:19;;:5;:19;;;;9751:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9856:1;9837:21;;:7;:21;;;;9829:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9938:6;9908:11;:18;9920:5;9908:18;;;;;;;;;;;;;;;:27;9927:7;9908:27;;;;;;;;;;;;;;;:36;;;;9975:7;9959:32;;9968:5;9959:32;;;9984:6;9959:32;;;;;;;;;;;;;;;;;;9658:340;;;:::o;7334:530::-;7457:1;7439:20;;:6;:20;;;;7431:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7540:1;7519:23;;:9;:23;;;;7511:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7593:47;7614:6;7622:9;7633:6;7593:20;:47::i;:::-;7671:71;7693:6;7671:71;;;;;;;;;;;;;;;;;:9;:17;7681:6;7671:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;7651:9;:17;7661:6;7651:17;;;;;;;;;;;;;;;:91;;;;7775:32;7800:6;7775:9;:20;7785:9;7775:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7752:9;:20;7762:9;7752:20;;;;;;;;;;;;;;;:55;;;;7839:9;7822:35;;7831:6;7822:35;;;7850:6;7822:35;;;;;;;;;;;;;;;;;;7334:530;;;:::o;1746:187:6:-;1832:7;1864:1;1859;:6;;1867:12;1851:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1851:29:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1890:9;1906:1;1902;:5;1890:17;;1925:1;1918:8;;;1746:187;;;;;:::o;2180:459::-;2238:7;2484:1;2479;:6;2475:45;;;2508:1;2501:8;;;;2475:45;2530:9;2546:1;2542;:5;2530:17;;2574:1;2569;2565;:5;;;;;;:10;2557:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2631:1;2624:8;;;2180:459;;;;;:::o;3101:130::-;3159:7;3185:39;3189:1;3192;3185:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3178:46;;3101:130;;;;:::o;1321:134::-;1379:7;1405:43;1409:1;1412;1405:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1398:50;;1321:134;;;;:::o;966:163:5:-;386:12;:10;:12::i;:::-;376:22;;:6;;;;;;;;;;;:22;;;368:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025:5:::1;1016:6;;:14;;;;;;;;;;;;;;;;;;1120:1;1103:6;;:19;;;;;;;;;;;;;;;;;;966:163::o:0;4412:361:8:-;4550:44;4577:4;4583:2;4587:6;4550:26;:44::i;:::-;4626:6;;;;;;;;;;;4625:7;:31;;;;4650:6;;;;;;;;;;;4636:20;;:10;:20;;;4625:31;4604:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4412:361;;;:::o;3713:272:6:-;3799:7;3830:1;3826;:5;3833:12;3818:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3818:28:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3856:9;3872:1;3868;:5;;;;;;3856:17;;3977:1;3970:8;;;3713:272;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://08ddb6c9d8d66df2294511ef76259aefc6e364eb79770c70941d2884a6a0f6a1
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.