ETH Price: $3,456.19 (-1.04%)
Gas: 10 Gwei

Token

(0x5a35a6686db167b05e2eb74e1ede9fb5d9cdb3e0)
 

Overview

Max Total Supply

1,186,412,996.008081213328299918 ERC-20 TOKEN*

Holders

263

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
vault.danrosario.eth
Balance
100,000 ERC-20 TOKEN*

Value
$0.00
0xc4bafdc0a6b7c1339055cea9dfd433b28815ae78
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cig

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 2000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-22
*/

// SPDX-License-Identifier: MIT
// Author: 0xTycoon
// Repo: github.com/0xTycoon/punksceo

pragma solidity ^0.8.11;

//import "./safemath.sol"; // don't need since v0.8
//import "./ceo.sol";
/*

PUNKS CEO (and "Cigarette" token)
WEB: https://punksceo.eth.limo / https://punksceo.eth.link
IPFS: See content hash record for punksceo.eth
Token Address: cigtoken.eth

There is NO trade tax or any other fee in the standard ERC20 methods of this token.

The "CEO of CryptoPunks" game element is optional and implemented for your entertainment.

### THE RULES OF THE GAME

1. Anybody can buy the CEO title at any time using Cigarettes. (The CEO of all cryptopunks)
2. When buying the CEO title, you must nominate a punk, set the price and pre-pay the tax.
3. The CEO title can be bought from the existing CEO at any time.
4. To remain a CEO, a daily tax needs to be paid.
5. The tax is 0.1% of the price to buy the CEO title, to be charged per epoch.
6. The CEO can be removed if they fail to pay the tax. A reward of CIGs is paid to the whistleblower.
7. After Removing a CEO: A dutch auction is held, where the price will decrease 10% every half-an-epoch.
8. The price can be changed by the CEO at any time. (Once per block)
9. An epoch is 7200 blocks.
10. All the Cigarettes from the sale are burned.
11. All tax is burned
12. After buying the CEO title, the old CEO will get their unspent tax deposit refunded

### CEO perk

13. The CEO can increase or decrease the CIG farming block reward by 20% every 2nd epoch!
However, note that the issuance can never be more than 1000 CIG per block, also never under 0.0001 CIG.
14. THE CEO gets to hold a NFT in their wallet. There will only be ever 1 this NFT.
The purpose of this NFT is so that everyone can see that they are the CEO.
IMPORTANT: This NFT will be revoked once the CEO title changes.
Also, the NFT cannot be transferred by the owner, the only way to transfer is for someone else to buy the CEO title! (Think of this NFT as similar to a "title belt" in boxing.)

END

* states
* 0 = initial
* 1 = CEO reigning
* 2 = Dutch auction

Notes:
It was decided that whoever buys the CEO title does not have to hold a punk and can nominate any punk they wish.
This is because some may hold their punks in cold storage, plus checking ownership costs additional gas.
Besides, CEOs are usually appointed by the board.

Credits:
- LP Staking based on code from SushiSwap's MasterChef.sol
- ERC20 & SafeMath based on lib from OpenZeppelin

*/

contract Cig {
    //using SafeMath for uint256; // no need since Solidity 0.8
    // ERC20 stuff
    string public constant name = "Cigarette Token";
    string public constant symbol = "CIG";
    uint8 public constant decimals = 18;
    uint256 public totalSupply = 0;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    // UserInfo keeps track of user LP deposits and withdrawals
    struct UserInfo {
        uint256 deposit;    // How many LP tokens the user has deposited.
        uint256 rewardDebt; // keeps track of how much reward was paid out
    }
    mapping(address => UserInfo) public userInfo; // keeps track of UserInfo for each staking address
    address public admin;                         // admin is used for deployment, burned after
    ILiquidityPoolERC20 public lpToken;           // lpToken is the address of LP token contract that's being staked.
    uint256 public lastRewardBlock;               // Last block number that cigarettes distribution occurs.
    uint256 public accCigPerShare;                // Accumulated cigarettes per share, times 1e12. See below.
    uint256 public cigPerBlock;                   // CIGs per-block rewarded and split with LPs
    bytes32 public graffiti;                      // a 32 character graffiti set when buying a CEO
    ICryptoPunk public punks;                     // a reference to the CryptoPunks contract
    event Deposit(address indexed user, uint256 amount);           // when depositing LP tokens to stake, or harvest
    event Withdraw(address indexed user, uint256 amount);          // when withdrawing LP tokens form staking
    event EmergencyWithdraw(address indexed user, uint256 amount); // when withdrawing LP tokens, no rewards claimed
    event RewardUp(uint256 reward, uint256 upAmount);              // when cigPerBlock is increased
    event RewardDown(uint256 reward, uint256 downAmount);          // when cigPerBlock is decreased
    event Claim(address indexed owner, uint indexed punkIndex, uint256 value); // when a punk is claimed
    mapping(uint => bool) public claims;                           // keep track of claimed punks
    modifier onlyAdmin {
        require(
            msg.sender == admin,
            "Only admin can call this"
        );
        _;
    }
    uint256 constant MIN_PRICE = 1e12;            // 0.000001 CIG
    uint256 constant CLAIM_AMOUNT = 100000 ether; // claim amount for each punk
    uint256 constant MIN_REWARD = 1e14;           // minimum block reward of 0.0001 CIG (1e14 wei)
    uint256 constant MAX_REWARD = 1000 ether;     // maximum block reward of 1000 CIG
    address public The_CEO;                       // address of CEO
    uint public CEO_punk_index;                   // which punk id the CEO is using
    uint256 public CEO_price = 50000 ether;       // price to buy the CEO title
    uint256 public CEO_state;                     // state has 3 states, described above.
    uint256 public CEO_tax_balance;               // deposit to be used to pay the CEO tax
    uint256 public taxBurnBlock;                  // The last block when the tax was burned
    uint256 public rewardsChangedBlock;           // which block was the last reward increase / decrease
    uint256 private immutable CEO_epoch_blocks;   // secs per day divided by 12 (86400 / 12), assuming 12 sec blocks
    uint256 private immutable CEO_auction_blocks; // 3600 blocks
    event NewCEO(address indexed user, uint indexed punk_id, uint256 new_price, bytes32 graffiti); // when a CEO is bought
    event TaxDeposit(address indexed user,  uint256 amount);                               // when tax is deposited
    event RevenueBurned(address indexed user,  uint256 amount);                            // when tax is burned
    event TaxBurned(address indexed user,  uint256 amount);                                // when tax is burned
    event CEODefaulted(address indexed called_by,  uint256 reward);                        // when CEO defaulted on tax
    event CEOPriceChange(uint256 price);                                                   // when CEO changed price
    modifier onlyCEO {
        require(
            msg.sender == The_CEO,
            "only CEO can call this"
        );
        _;
    }
    IRouterV2 private immutable V2ROUTER;    // address of router used to get the price quote
    ICEOERC721 private immutable The_NFT;    // reference to the CEO NFT token
    address private immutable MASTERCHEF_V2; // address pointing to SushiSwap's MasterChefv2 contract
    /**
    * @dev constructor
    * @param _startBlock starting block when rewards start
    * @param _cigPerBlock Number of CIG tokens rewarded per block
    * @param _punks address of the cryptopunks contract
    * @param _CEO_epoch_blocks how many blocks between each epochs
    * @param _CEO_auction_blocks how many blocks between each auction discount
    * @param _CEO_price starting price to become CEO (in CIG)
    * @param _MASTERCHEF_V2 address of the MasterChefv2 contract
    */
    constructor(
        uint256 _startBlock,
        uint256 _cigPerBlock,
        address _punks,
        uint _CEO_epoch_blocks,
        uint _CEO_auction_blocks,
        uint256 _CEO_price,
        address _MASTERCHEF_V2,
        bytes32 _graffiti,
        address _NFT,
        address _V2ROUTER
    ) {
        lastRewardBlock    = _startBlock;
        cigPerBlock        = _cigPerBlock;
        admin              = msg.sender;                 // the admin key will be burned after deployment
        punks              = ICryptoPunk(_punks);
        CEO_epoch_blocks   = _CEO_epoch_blocks;
        CEO_auction_blocks = _CEO_auction_blocks;
        CEO_price          = _CEO_price;
        MASTERCHEF_V2      = _MASTERCHEF_V2;
        graffiti           = _graffiti;
        The_NFT            = ICEOERC721(_NFT);
        V2ROUTER           = IRouterV2(_V2ROUTER);
        // mint the tokens for the airdrop and place them in the CryptoPunks contract.
        mint(_punks, CLAIM_AMOUNT * 10000);
    }

    /**
    * @dev renounceOwnership burns the admin key, so this contract is unruggable
    */
    function renounceOwnership() external onlyAdmin {
        admin = address(0);
    }

    /**
    * @dev setStartingBlock sets the starting block for LP staking rewards
    * Admin only, used only for initial configuration.
    * @param _startBlock the block to start rewards for
    */
    function setStartingBlock(uint256 _startBlock) external onlyAdmin {
        lastRewardBlock = _startBlock;
    }

    /**
    * @dev setPool address to an LP pool. Only Admin. (used only in testing/deployment)
    */
    function setPool(ILiquidityPoolERC20 _addr) external onlyAdmin {
        require(address(lpToken) == address(0), "pool already set");
        lpToken = _addr;
    }

    /**
    * @dev setReward sets the reward. Admin only (used only in testing/deployment)
    */
    function setReward(uint256 _value) public onlyAdmin {
        cigPerBlock = _value;
    }

    /**
    * @dev buyCEO allows anybody to be the CEO
    * @param _max_spend the total CIG that can be spent
    * @param _new_price the new price for the punk (in CIG)
    * @param _tax_amount how much to pay in advance (in CIG)
    * @param _punk_index the id of the punk 0-9999
    * @param _graffiti a little message / ad from the buyer
    */
    function buyCEO(
        uint256 _max_spend,
        uint256 _new_price,
        uint256 _tax_amount,
        uint256 _punk_index,
        bytes32 _graffiti
    ) external  {
        if (CEO_state == 1 && (taxBurnBlock != block.number)) {
            _burnTax();                                                    // _burnTax can change CEO_state to 2
        }
        if (CEO_state == 2) {
            // Auction state. The price goes down 10% every `CEO_auction_blocks` blocks
            CEO_price = _calcDiscount();
        }
        require (CEO_price + _tax_amount <= _max_spend, "overpaid");        // prevent CEO over-payment
        require (_new_price >= MIN_PRICE, "price 2 smol");                 // price cannot be under 0.000001 CIG
        require (_punk_index <= 9999, "invalid punk");                     // validate the punk index
        require (_tax_amount >= _new_price / 1000, "insufficient tax" );   // at least %0.1 fee paid for 1 epoch
        transfer(address(this), CEO_price);                                // pay for the CEO title
        burn(address(this), CEO_price);                                    // burn the revenue
        emit RevenueBurned(msg.sender, CEO_price);
        _returnDeposit(The_CEO, CEO_tax_balance);                          // return deposited tax back to old CEO
        transfer(address(this), _tax_amount);                              // deposit tax (reverts if not enough)
        CEO_tax_balance = _tax_amount;                                     // store the tax deposit amount
        _transferNFT(The_CEO, msg.sender);                                 // yank the NFT to the new CEO
        CEO_price = _new_price;                                            // set the new price
        CEO_punk_index = _punk_index;                                      // store the punk id
        The_CEO = msg.sender;                                              // store the CEO's address
        taxBurnBlock = block.number;                                       // store the block number
                                                                           // (tax may not have been burned if the
                                                                           // previous state was 0)
        CEO_state = 1;
        graffiti = _graffiti;
        emit TaxDeposit(msg.sender, _tax_amount);
        emit NewCEO(msg.sender, _punk_index, _new_price, _graffiti);
    }

    /**
    * @dev _returnDeposit returns the tax deposit back to the CEO
    * @param _to address The address which you want to transfer to
    * remember to update CEO_tax_balance after calling this
    */
    function _returnDeposit(
        address _to,
        uint256 _amount
    )
    internal
    {
        if (_amount == 0) {
            return;
        }
        balanceOf[address(this)] = balanceOf[address(this)] - _amount;
        balanceOf[_to] = balanceOf[_to] + _amount;
        emit Transfer(address(this), _to, _amount);
        //CEO_tax_balance = 0; // can be omitted since value gets overwritten by caller
    }

    /**
    * @dev transfer the NFT to a new wallet
    */
    function _transferNFT(address _oldCEO, address _newCEO) internal {
        if (_oldCEO != _newCEO) {
            The_NFT.transferFrom(_oldCEO, _newCEO, 0);
        }
    }

    /**
    * @dev depositTax pre-pays tax for the existing CEO.
    * It may also burn any tax debt the CEO may have.
    * @param _amount amount of tax to pre-pay
    */
    function depositTax(uint256 _amount) external onlyCEO {
        require (CEO_state == 1, "no CEO");
        if (_amount > 0) {
            transfer(address(this), _amount);                   // place the tax on deposit
            CEO_tax_balance = CEO_tax_balance + _amount;        // record the balance
            emit TaxDeposit(msg.sender, _amount);
        }
        if (taxBurnBlock != block.number) {
            _burnTax();                                         // settle any tax debt
            taxBurnBlock = block.number;
        }
    }

    /**
    * @dev burnTax is called to burn tax.
    * It removes the CEO if tax is unpaid.
    * 1. deduct tax, update last update
    * 2. if not enough tax, remove & begin auction
    * 3. reward the caller by minting a reward from the amount indebted
    * A Dutch auction begins where the price decreases 10% every hour.
    */

    function burnTax() external  {
        if (taxBurnBlock == block.number) return;
        if (CEO_state == 1) {
            _burnTax();
            taxBurnBlock = block.number;
        }
    }

    /**
    * @dev _burnTax burns any tax debt. Boots the CEO if defaulted, paying a reward to the caller
    */
    function _burnTax() internal {
        // calculate tax per block (tpb)
        uint256 tpb = CEO_price / 1000 / CEO_epoch_blocks;       // 0.1% per epoch
        uint256 debt = (block.number - taxBurnBlock) * tpb;
        if (CEO_tax_balance !=0 && CEO_tax_balance >= debt) {    // Does CEO have enough deposit to pay debt?
            CEO_tax_balance = CEO_tax_balance - debt;            // deduct tax
            burn(address(this), debt);                           // burn the tax
            emit TaxBurned(msg.sender, debt);
        } else {
            // CEO defaulted
            uint256 default_amount = debt - CEO_tax_balance;     // calculate how much defaulted
            burn(address(this), CEO_tax_balance);                // burn the tax
            emit TaxBurned(msg.sender, CEO_tax_balance);
            CEO_state = 2;                                       // initiate a Dutch auction.
            CEO_tax_balance = 0;
            _transferNFT(The_CEO, address(this));                // This contract holds the NFT temporarily
            The_CEO = address(this);                             // This contract is the "interim CEO"
            mint(msg.sender, default_amount);                    // reward the caller for reporting tax default
            emit CEODefaulted(msg.sender, default_amount);
        }
    }

    /**
     * @dev setPrice changes the price for the CEO title.
     * @param _price the price to be paid. The new price most be larger tan MIN_PRICE and not default on debt
     */
    function setPrice(uint256 _price) external onlyCEO  {
        require(CEO_state == 1, "No CEO in charge");
        require (_price >= MIN_PRICE, "price 2 smol");
        require (CEO_tax_balance >= _price / 1000, "price would default"); // need at least 0.1% for tax
        if (block.number != taxBurnBlock) {
            _burnTax();
            taxBurnBlock = block.number;
        }
        // The state is 1 if the CEO hasn't defaulted on tax
        if (CEO_state == 1) {
            CEO_price = _price; // set the new price
            emit CEOPriceChange(_price);
        }
    }

    /**
    * @dev rewardUp allows the CEO to increase the block rewards by %1
    * Can only be called by the CEO every 7 epochs
    * @return _amount increased by
    */
    function rewardUp() external onlyCEO returns (uint256)  {
        require(CEO_state == 1, "No CEO in charge");
        require(block.number > rewardsChangedBlock + (CEO_epoch_blocks*2), "wait more blocks");
        require (cigPerBlock <= MAX_REWARD, "reward already max");
        rewardsChangedBlock = block.number;
        uint256 _amount = cigPerBlock / 5;                // %20
        uint256 _new_reward = cigPerBlock + _amount;
        if (_new_reward > MAX_REWARD) {
            _amount = MAX_REWARD - cigPerBlock;
            _new_reward = MAX_REWARD; // cap
        }
        cigPerBlock = _new_reward;
        emit RewardUp(_new_reward, _amount);
        return _amount;
    }

    /**
    * @dev rewardDown decreases the block rewards by 1%
    * Can only be called by the CEO every 7 epochs
    */
    function rewardDown() external onlyCEO returns (uint256) {
        require(CEO_state == 1, "No CEO in charge");
        require(block.number > rewardsChangedBlock + (CEO_epoch_blocks*2), "wait more blocks");
        require(cigPerBlock >= MIN_REWARD, "reward already low");
        rewardsChangedBlock = block.number;
        uint256 _amount = cigPerBlock / 5;            // %20
        uint256 _new_reward = cigPerBlock - _amount;
        if (_new_reward < MIN_REWARD) {
            _amount = cigPerBlock - MIN_REWARD;
            _new_reward = MIN_REWARD;
        }
        cigPerBlock = _new_reward;
        emit RewardDown(_new_reward, _amount);
        return _amount;
    }

    /**
    * @dev _calcDiscount calculates the discount for the CEO title based on how many blocks passed
    */
    function _calcDiscount() internal view returns (uint256) {
        unchecked {
            uint256 d = (CEO_price / 10)           // 10% discount
            // multiply by the number of discounts accrued
            * (block.number - taxBurnBlock) / CEO_auction_blocks;
            if (d > CEO_price) {
                // overflow assumed, reset to MIN_PRICE
                return MIN_PRICE;
            }
            uint256 price = CEO_price - d;
            if (price < MIN_PRICE) {
                price = MIN_PRICE;
            }
        return price;
        }
    }

    /**
    * @dev getStats helps to fetch some stats for the GUI in a single web3 call
    * @param _user the address to return the report for
    * @return uint256[22] the stats
    * @return address of the current CEO
    * @return bytes32 Current graffiti
    */
    function getStats(address _user) external view returns(uint256[] memory, address, bytes32, uint112[] memory) {
        uint[] memory ret = new uint[](22);
        uint112[] memory reserves = new uint112[](2);
        uint256 tpb = (CEO_price / 1000) / (CEO_epoch_blocks); // 0.1% per epoch
        uint256 debt = (block.number - taxBurnBlock) * tpb;
        uint256 price = CEO_price;
        UserInfo memory info = userInfo[_user];
        if (CEO_state == 2) {
            price = _calcDiscount();
        }
        ret[0] = CEO_state;
        ret[1] = CEO_tax_balance;
        ret[2] = taxBurnBlock;                     // the block number last tax burn
        ret[3] = rewardsChangedBlock;              // the block of the last staking rewards change
        ret[4] = price;                            // price of the CEO title
        ret[5] = CEO_punk_index;                   // punk ID of CEO
        ret[6] = cigPerBlock;                      // staking reward per block
        ret[7] = totalSupply;                      // total supply of CIG
        if (address(lpToken) != address(0)) {
            ret[8] = lpToken.balanceOf(address(this)); // Total LP staking
            ret[16] = lpToken.balanceOf(_user);        // not staked by user
            ret[17] = pendingCig(_user);               // pending harvest
            (reserves[0], reserves[1], ) = lpToken.getReserves();        // uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast
            ret[18] = V2ROUTER.getAmountOut(1 ether, uint(reserves[0]), uint(reserves[1])); // CIG price in ETH
            if (isContract(address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2))) { // are we on mainnet?
                ILiquidityPoolERC20 ethusd = ILiquidityPoolERC20(address(0xC3D03e4F041Fd4cD388c549Ee2A29a9E5075882f));  // sushi DAI-WETH pool
                uint112 r0;
                uint112 r1;
                (r0, r1, ) = ethusd.getReserves();
                // get the price of ETH in USD
                ret[19] =  V2ROUTER.getAmountOut(1 ether, uint(r0), uint(r1));      // ETH price in USD
            }
        }

        ret[9] = block.number;                     // current block number
        ret[10] = tpb;                             // "tax per block" (tpb)
        ret[11] = debt;                            // tax debt accrued
        ret[12] = lastRewardBlock;                 // the block of the last staking rewards payout update
        ret[13] = info.deposit;                    // amount of LP tokens staked by user
        ret[14] = info.rewardDebt;                 // amount of rewards paid out
        ret[15] = balanceOf[_user];                // amount of CIG held by user
        ret[20] = balanceOf[address(0)];           // amount of CIG burned
        ret[21] = balanceOf[address(punks)];       // amount of CIG to be claimed

        return (ret, The_CEO, graffiti, reserves);
    }

    /*
    * ************************ Token distribution and farming stuff ****************
    */

    /**
    * Claim claims the initial CIG airdrop using a punk
    * @param _punkIndex the index of the punk, number between 0-9999
    */
    function claim(uint256 _punkIndex) external returns(bool) {
        require (_punkIndex <= 9999, "invalid punk");
        require(claims[_punkIndex] == false, "punk already claimed");
        require(msg.sender == punks.punkIndexToAddress(_punkIndex), "punk 404");
        claims[_punkIndex] = true;
        balanceOf[address(punks)] = balanceOf[address(punks)] - CLAIM_AMOUNT; // deduct from the punks contract
        balanceOf[msg.sender] = balanceOf[msg.sender] + CLAIM_AMOUNT;         // deposit to the caller
        emit Transfer(address(punks), msg.sender, CLAIM_AMOUNT);
        emit Claim(msg.sender, _punkIndex, CLAIM_AMOUNT);
        return true;
    }

    /**
    * @dev update updates the accCigPerShare value and mints new CIG rewards to be distributed to LP stakers
    * Credits go to MasterChef.sol
    * Modified the original by removing poolInfo as there is only a single pool
    * Removed totalAllocPoint and pool.allocPoint
    * pool.lastRewardBlock moved to lastRewardBlock
    * There is no need for getMultiplier (rewards are adjusted by the CEO)
    *
    */
    function update() public {
        if (block.number <= lastRewardBlock) {
            return;
        }
        uint256 lpSupply = lpToken.balanceOf(address(this));
        if (lpSupply == 0) {
            lastRewardBlock = block.number;
            return;
        }
        // mint some new cigarette rewards to be distributed
        uint256 cigReward = (block.number - lastRewardBlock) * cigPerBlock;
        mint(address(this), cigReward);
        accCigPerShare = accCigPerShare + (
            cigReward * 1e12 / lpSupply
        );
        lastRewardBlock = block.number;
    }

    /**
    * @dev pendingCig displays the amount of cig to be claimed
    * @param _user the address to report
    */
    function pendingCig(address _user) view public returns (uint256) {
        uint256 _acps = accCigPerShare;
        // accumulated cig per share
        UserInfo storage user = userInfo[_user];
        uint256 lpSupply = lpToken.balanceOf(address(this));
        if (block.number > lastRewardBlock && lpSupply != 0) {
            uint256 cigReward = (block.number - lastRewardBlock) * cigPerBlock;
            _acps = _acps + (
                cigReward * 1e12 / lpSupply
            );
        }
        return (user.deposit * _acps / 1e12) - user.rewardDebt;
    }

    /**
    * @dev deposit deposits LP tokens to be staked. It also harvests rewards.
    * @param _amount the amount of LP tokens to deposit. Assumes this contract has been approved for the _amount.
    */
    function deposit(uint256 _amount) public {
        UserInfo storage user = userInfo[msg.sender];
        update();
        if (user.deposit > 0) {
            uint256 pending =
            (user.deposit * (accCigPerShare) / 1e12) - user.rewardDebt;
            safeSendPayout(msg.sender, pending);
        }
        if (_amount > 0) {
            lpToken.transferFrom(
                address(msg.sender),
                address(this),
                _amount
            );
            user.deposit = user.deposit + _amount;
            emit Deposit(msg.sender, _amount);
        }
        user.rewardDebt = user.deposit * accCigPerShare / 1e12;
    }

    /**
    * @dev withdraw takes out the LP tokens and pending rewards
    * @param _amount the amount to withdraw
    */
    function withdraw(uint256 _amount) external {
        UserInfo storage user = userInfo[msg.sender];
        require(user.deposit >= _amount, "withdraw: not good");
        update();
        uint256 pending = (user.deposit * accCigPerShare / 1e12) - user.rewardDebt;
        safeSendPayout(msg.sender, pending);
        user.deposit = user.deposit - _amount;
        user.rewardDebt = user.deposit * accCigPerShare / 1e12;
        lpToken.transfer(address(msg.sender), _amount);
        emit Withdraw(msg.sender, _amount);
    }
    /**
    * @dev emergencyWithdraw does a withdraw without caring about rewards. EMERGENCY ONLY.
    */
    function emergencyWithdraw() external {
        UserInfo storage user = userInfo[msg.sender];
        uint256 amount = user.deposit;
        user.deposit = 0;
        user.rewardDebt = 0;
        lpToken.transfer(address(msg.sender), amount);
        emit EmergencyWithdraw(msg.sender, amount);

    }
    /**
    * @dev safeSendPayout, just in case if rounding error causes pool to not have enough CIGs.
    * @param _to recipient address
    * @param _amount the value to send
    */
    function safeSendPayout(address _to, uint256 _amount) internal {
        uint256 cigBal = balanceOf[address(this)];
        if (_amount > cigBal) {
            _amount = cigBal;
        }
        balanceOf[address(this)] = balanceOf[address(this)] - _amount;
        balanceOf[_to] = balanceOf[_to] + _amount;
        emit Transfer(address(this), _to, _amount);
    }

    /*
    * ************************ ERC20 Token stuff ********************************
    */

    /**
    * @dev burn some tokens
    * @param _from The address to burn from
    * @param _amount The amount to burn
    */
   function burn(address _from, uint256 _amount) internal {
       balanceOf[_from] = balanceOf[_from] - _amount;
       totalSupply = totalSupply - _amount;
       emit Transfer(_from, address(0), _amount);
   }

   /**
   * @dev mint new tokens
   * @param _to The address to mint to.
   * @param _amount The amount to be minted.
   */
    function mint(address _to, uint256 _amount) internal {
        require(_to != address(0), "ERC20: mint to the zero address");
        totalSupply = totalSupply + _amount;
        balanceOf[_to] = balanceOf[_to] + _amount;
        emit Transfer(address(0), _to, _amount);
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        // require(_value <= balanceOf[msg.sender], "value exceeds balance"); // SafeMath already checks this
        balanceOf[msg.sender] = balanceOf[msg.sender] - _value;
        balanceOf[_to] = balanceOf[_to] + _value;
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Transfer tokens from one address to another
    * @param _from address The address which you want to send tokens from
    * @param _to address The address which you want to transfer to
    * @param _value uint256 the amount of tokens to be transferred
    */
    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    )
    public
    returns (bool)
    {
        //require(_value <= balanceOf[_from], "value exceeds balance"); // SafeMath already checks this
        require(_value <= allowance[_from][msg.sender], "not approved");
        balanceOf[_from] = balanceOf[_from] - _value;
        balanceOf[_to] = balanceOf[_to] + _value;
        emit Transfer(_from, _to, _value);
        return true;
    }


    /**
    * @dev Approve tokens of mount _value to be spent by _spender
    * @param _spender address The spender
    * @param _value the stipend to spend
    */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /********************************************************************
    * @dev onSushiReward IRewarder methods to be called by the SushSwap MasterChefV2 contract
    */

    function onSushiReward (
        uint256 /* pid */,
        address _user,
        address _to,
        uint256 /* sushiAmount*/,
        uint256 _newLpAmount)  external onlyMCV2 {
        UserInfo storage user = userInfo[_user];
        update();
        if (user.deposit > 0) {
            uint256 pending = (user.deposit * accCigPerShare / 1e12) - user.rewardDebt;
            safeSendPayout(_to, pending);
        }
        user.deposit = _newLpAmount;
        user.rewardDebt = user.deposit * accCigPerShare / 1e12;
    }

    /**
    * pendingTokens returns the number of pending CIG rewards, implementing IRewarder
    * @param user it is the only parameter we look at
    */
    function pendingTokens(uint256 pid, address user, uint256 sushiAmount) external view returns (IERC20[] memory, uint256[] memory) {
        IERC20[] memory _rewardTokens = new IERC20[](1);
        _rewardTokens[0] = IERC20(address(this));
        uint256[] memory _rewardAmounts = new uint256[](1);
        _rewardAmounts[0] = pendingCig(user);
        return (_rewardTokens, _rewardAmounts);
    }
    // onlyMCV2 ensures only the MasterChefV2 contract can call this
    modifier onlyMCV2 {
        require(
            msg.sender == MASTERCHEF_V2,
            "Only MCV2"
        );
        _;
    }

    /**
     * @dev Returns true if `account` is a contract.
     *
     * credits https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

/**
* @dev sushi router 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F
*/
interface IRouterV2 {
    function getAmountOut(uint256 amountIn, uint256 reserveIn, uint256 reserveOut) external pure returns(uint256 amountOut);

}



interface ICryptoPunk {
    //function balanceOf(address account) external view returns (uint256);
    function punkIndexToAddress(uint256 punkIndex) external returns (address);
    //function punksOfferedForSale(uint256 punkIndex) external returns (bool, uint256, address, uint256, address);
    //function buyPunk(uint punkIndex) external payable;
    //function transferPunk(address to, uint punkIndex) external;
}

interface ICEOERC721 {
    function transferFrom(address _from, address _to, uint256 _tokenId) external payable;
}

// IRewarder allows the contract to be called by SushSwap MasterChefV2
// example impl https://etherscan.io/address/0x7519c93fc5073e15d89131fd38118d73a72370f8/advanced#code
interface IRewarder {
    function onSushiReward(uint256 pid, address user, address recipient, uint256 sushiAmount, uint256 newLpAmount) external;
    function pendingTokens(uint256 pid, address user, uint256 sushiAmount) external view returns (IERC20[] memory, uint256[] memory);
}

/*
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 is IRewarder {
    /**
     * @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
     * 0xTycoon was here
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
* @dev from UniswapV2Pair.sol
*/
interface ILiquidityPoolERC20 is IERC20 {
    function getReserves() external view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_cigPerBlock","type":"uint256"},{"internalType":"address","name":"_punks","type":"address"},{"internalType":"uint256","name":"_CEO_epoch_blocks","type":"uint256"},{"internalType":"uint256","name":"_CEO_auction_blocks","type":"uint256"},{"internalType":"uint256","name":"_CEO_price","type":"uint256"},{"internalType":"address","name":"_MASTERCHEF_V2","type":"address"},{"internalType":"bytes32","name":"_graffiti","type":"bytes32"},{"internalType":"address","name":"_NFT","type":"address"},{"internalType":"address","name":"_V2ROUTER","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":"called_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"CEODefaulted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"CEOPriceChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"punkIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"punk_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"new_price","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"graffiti","type":"bytes32"}],"name":"NewCEO","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RevenueBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"downAmount","type":"uint256"}],"name":"RewardDown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"upAmount","type":"uint256"}],"name":"RewardUp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxDeposit","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"CEO_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEO_punk_index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEO_state","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEO_tax_balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"The_CEO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accCigPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_spend","type":"uint256"},{"internalType":"uint256","name":"_new_price","type":"uint256"},{"internalType":"uint256","name":"_tax_amount","type":"uint256"},{"internalType":"uint256","name":"_punk_index","type":"uint256"},{"internalType":"bytes32","name":"_graffiti","type":"bytes32"}],"name":"buyCEO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cigPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_punkIndex","type":"uint256"}],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claims","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getStats","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint112[]","name":"","type":"uint112[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"graffiti","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken","outputs":[{"internalType":"contract ILiquidityPoolERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_newLpAmount","type":"uint256"}],"name":"onSushiReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingCig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"sushiAmount","type":"uint256"}],"name":"pendingTokens","outputs":[{"internalType":"contract IERC20[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"punks","outputs":[{"internalType":"contract ICryptoPunk","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardDown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardUp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsChangedBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ILiquidityPoolERC20","name":"_addr","type":"address"}],"name":"setPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"name":"setStartingBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBurnBlock","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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61012060405260008055690a968163f0a57b400000600e553480156200002457600080fd5b5060405162003dcb38038062003dcb8339810160408190526200004791620001e3565b60068a90556008899055600480546001600160a01b03199081163317909155600a80546001600160a01b038b811691909316179055608088905260a0879052600e86905584811661010052600984905582811660e052811660c052620000c588620000bf69152d02c7e14af680000061271062000292565b620000d5565b50505050505050505050620002cf565b6001600160a01b038216620001305760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600054620001409190620002b4565b60009081556001600160a01b03831681526001602052604090205462000168908290620002b4565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001ba9085815260200190565b60405180910390a35050565b80516001600160a01b0381168114620001de57600080fd5b919050565b6000806000806000806000806000806101408b8d0312156200020457600080fd5b8a51995060208b015198506200021d60408c01620001c6565b975060608b0151965060808b0151955060a08b015194506200024260c08c01620001c6565b935060e08b015192506200025a6101008c01620001c6565b91506200026b6101208c01620001c6565b90509295989b9194979a5092959850565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620002af57620002af6200027c565b500290565b60008219821115620002ca57620002ca6200027c565b500190565b60805160a05160c05160e05161010051613a9b62000330600039600061185f0152600061338a0152600081816124f6015261271d0152600061310d0152600081816115e70152818161207d01528181612cdc0152612e800152613a9b6000f3fe608060405234801561001057600080fd5b50600436106102f45760003560e01c806370a0823111610191578063b6b55f25116100e3578063dd62ed3e11610097578063f1dda25211610071578063f1dda252146106c0578063f56a499f146106c8578063f851a440146106d157600080fd5b8063dd62ed3e14610662578063dfe0a8891461068d578063ec17b20e146106ad57600080fd5b8063d63b3c49116100c8578063d63b3c4914610630578063d98d052a14610651578063db2e21bc1461065a57600080fd5b8063b6b55f25146105fa578063c23f85d61461060d57600080fd5b8063941a9acd11610145578063a888c2cd1161011f578063a888c2cd146105bb578063a9059cbb146105de578063a9f8d181146105f157600080fd5b8063941a9acd1461056457806395d89b4114610577578063a2e62045146105b357600080fd5b806371fab9001161017657806371fab900146105355780638bf637421461053e57806391b7f5ed1461055157600080fd5b806370a082311461050d578063715018a61461052d57600080fd5b80632e1a7d4d1161024a5780633f6c518d116101fe5780634437152a116101d85780634437152a146104d2578063557aa67e146104e55780635fcbd285146104ed57600080fd5b80633f6c518d146104a35780633fd2c585146104b6578063430c3880146104bf57600080fd5b8063379607f51161022f578063379607f51461047e5780633a5fca36146104915780633e321c671461049a57600080fd5b80632e1a7d4d14610451578063313ce5671461046457600080fd5b806319ad317d116102ac57806323b872dd1161028657806323b872dd146104225780632851809414610435578063293be4561461043e57600080fd5b806319ad317d146103ca5780631d4eaead1461040f5780631fdcc12e1461041957600080fd5b80630d778273116102dd5780630d7782731461036e57806318160ddd146103855780631959a0021461038e57600080fd5b806306fdde03146102f9578063095ea7b31461034b575b600080fd5b6103356040518060400160405280600f81526020017f43696761726574746520546f6b656e000000000000000000000000000000000081525081565b6040516103429190613506565b60405180910390f35b61035e61035936600461359b565b6106f1565b6040519015158152602001610342565b61037760075481565b604051908152602001610342565b61037760005481565b6103b561039c3660046135c7565b6003602052600090815260409020805460019091015482565b60408051928352602083019190915201610342565b600c546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610342565b61041761076a565b005b61037760105481565b61035e6104303660046135eb565b610790565b610377600d5481565b61041761044c36600461362c565b610910565b61041761045f36600461362c565b610996565b61046c601281565b60405160ff9091168152602001610342565b61035e61048c36600461362c565b610b61565b610377600e5481565b61037760125481565b6104176104b136600461362c565b610ee7565b61037760115481565b6104176104cd366004613645565b611045565b6104176104e03660046135c7565b6113aa565b6103776114f2565b6005546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b61037761051b3660046135c7565b60016020526000908152604090205481565b61041761179c565b61037760085481565b61041761054c366004613680565b611847565b61041761055f36600461362c565b611989565b6103776105723660046135c7565b611bb8565b6103356040518060400160405280600381526020017f434947000000000000000000000000000000000000000000000000000000000081525081565b610417611cf9565b61035e6105c936600461362c565b600b6020526000908152604090205460ff1681565b61035e6105ec36600461359b565b611e00565b61037760065481565b61041761060836600461362c565b611eb3565b61062061061b3660046135c7565b612027565b604051610342949392919061370d565b61064361063e366004613799565b6129b4565b6040516103429291906137c0565b610377600f5481565b610417612a6c565b61037761067036600461382d565b600260209081526000928352604080842090915290825290205481565b600a546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b6104176106bb36600461362c565b612b61565b610377612be7565b61037760095481565b6004546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107599086815260200190565b60405180910390a350600192915050565b43601154141561077657565b600f546001141561078e57610789612e7c565b436011555b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020908152604080832033845290915281205482111561082f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6e6f7420617070726f766564000000000000000000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020526040902054610860908390613895565b73ffffffffffffffffffffffffffffffffffffffff808616600090815260016020526040808220939093559085168152205461089d9083906138ac565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108fe9086815260200190565b60405180910390a35060019392505050565b60045473ffffffffffffffffffffffffffffffffffffffff163314610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b600855565b3360009081526003602052604090208054821115610a10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f77697468647261773a206e6f7420676f6f6400000000000000000000000000006044820152606401610826565b610a18611cf9565b6000816001015464e8d4a510006007548460000154610a3791906138c4565b610a419190613930565b610a4b9190613895565b9050610a57338261302c565b8154610a64908490613895565b80835560075464e8d4a5100091610a7b91906138c4565b610a859190613930565b60018301556005546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810185905273ffffffffffffffffffffffffffffffffffffffff9091169063a9059cbb906044016020604051808303816000875af1158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b25919061396b565b5060405183815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906020015b60405180910390a2505050565b600061270f821115610bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610826565b6000828152600b602052604090205460ff1615610c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f70756e6b20616c726561647920636c61696d65640000000000000000000000006044820152606401610826565b600a546040517f581781680000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff909116906358178168906024016020604051808303816000875af1158015610cb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdd919061398d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f70756e6b203430340000000000000000000000000000000000000000000000006044820152606401610826565b6000828152600b6020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600a5473ffffffffffffffffffffffffffffffffffffffff168452909152902054610de49069152d02c7e14af680000090613895565b600a5473ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040808220929092553381522054610e2a9069152d02c7e14af6800000906138ac565b336000818152600160205260409081902092909255600a549151909173ffffffffffffffffffffffffffffffffffffffff16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e969069152d02c7e14af6800000815260200190565b60405180910390a360405169152d02c7e14af68000008152829033907f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf79060200160405180910390a3506001919050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610f68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f54600114610fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f6e6f2043454f00000000000000000000000000000000000000000000000000006044820152606401610826565b801561102c57610fe43082611e00565b5080601054610ff391906138ac565b60105560405181815233907f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a25b43601154146110425761103d612e7c565b436011555b50565b600f54600114801561105957504360115414155b1561106657611066612e7c565b600f546002141561107d57611079613108565b600e555b8483600e5461108c91906138ac565b11156110f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6f766572706169640000000000000000000000000000000000000000000000006044820152606401610826565b64e8d4a51000841015611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610826565b61270f8211156111cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610826565b6111db6103e885613930565b831015611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e73756666696369656e7420746178000000000000000000000000000000006044820152606401610826565b61125030600e54611e00565b5061125d30600e5461318c565b600e5460405190815233907f1b1be00a9ca19f9c14f1ca5d16e4aba7d4dd173c2263d4d8a03484e1c652c8989060200160405180910390a2600c546010546112bb9173ffffffffffffffffffffffffffffffffffffffff1690613247565b6112c53084611e00565b506010839055600c546112ee9073ffffffffffffffffffffffffffffffffffffffff1633613303565b600e849055600d829055600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001633908117909155436011556001600f5560098290556040518481527f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a26040805185815260208101839052839133917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a35050505050565b60045473ffffffffffffffffffffffffffffffffffffffff16331461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b60055473ffffffffffffffffffffffffffffffffffffffff16156114ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f706f6f6c20616c726561647920736574000000000000000000000000000000006044820152606401610826565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600c5460009073ffffffffffffffffffffffffffffffffffffffff163314611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f546001146115e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610826565b61160d7f000000000000000000000000000000000000000000000000000000000000000060026138c4565b60125461161a91906138ac565b4311611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610826565b683635c9adc5dea0000060085411156116f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206d617800000000000000000000000000006044820152606401610826565b4360125560085460009061170d90600590613930565b905060008160085461171f91906138ac565b9050683635c9adc5dea000008111156117575760085461174890683635c9adc5dea00000613895565b9150683635c9adc5dea0000090505b600881905560408051828152602081018490527fac0f42229355025440e6f2b848e89f3a5cc8e1165cc312de10be10b12b922d3391015b60405180910390a150905090565b60045473ffffffffffffffffffffffffffffffffffffffff16331461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b600480547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146118e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4f6e6c79204d43563200000000000000000000000000000000000000000000006044820152606401610826565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600360205260409020611913611cf9565b80541561195b576000816001015464e8d4a51000600754846000015461193991906138c4565b6119439190613930565b61194d9190613895565b9050611959858261302c565b505b81815560075464e8d4a510009061197290846138c4565b61197c9190613930565b6001909101555050505050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611a0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f54600114611a76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610826565b64e8d4a51000811015611ae5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610826565b611af16103e882613930565b6010541015611b5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f707269636520776f756c642064656661756c74000000000000000000000000006044820152606401610826565b6011544314611b7257611b6d612e7c565b436011555b600f546001141561104257600e8190556040518181527f10c342a321267613a25f77d4273d7f2688bef174a7214bc3dde44b31c5064ff69060200160405180910390a150565b60075473ffffffffffffffffffffffffffffffffffffffff82811660009081526003602052604080822060055491517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015292949390928592909116906370a0823190602401602060405180830381865afa158015611c41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6591906139aa565b905060065443118015611c7757508015155b15611cc357600060085460065443611c8f9190613895565b611c9991906138c4565b905081611cab8264e8d4a510006138c4565b611cb59190613930565b611cbf90856138ac565b9350505b6001820154825464e8d4a5100090611cdc9086906138c4565b611ce69190613930565b611cf09190613895565b95945050505050565b6006544311611d0457565b6005546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015611d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9791906139aa565b905080611da5575043600655565b600060085460065443611db89190613895565b611dc291906138c4565b9050611dce30826133ea565b81611dde8264e8d4a510006138c4565b611de89190613930565b600754611df591906138ac565b600755505043600655565b33600090815260016020526040812054611e1b908390613895565b336000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff851681522054611e559083906138ac565b73ffffffffffffffffffffffffffffffffffffffff84166000818152600160205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107599086815260200190565b336000908152600360205260409020611eca611cf9565b805415611f12576000816001015464e8d4a510006007548460000154611ef091906138c4565b611efa9190613930565b611f049190613895565b9050611f10338261302c565b505b8115611fff576005546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810184905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303816000875af1158015611f95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb9919061396b565b508054611fc79083906138ac565b815560405182815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a25b600754815464e8d4a5100091612014916138c4565b61201e9190613930565b60019091015550565b6040805160168082526102e08201909252606091600091829184918391602082016102c08036833750506040805160028082526060820183529394506000939092509060208301908036833701905050905060007f00000000000000000000000000000000000000000000000000000000000000006103e8600e546120ac9190613930565b6120b69190613930565b9050600081601154436120c99190613895565b6120d391906138c4565b600e5473ffffffffffffffffffffffffffffffffffffffff8b166000908152600360209081526040918290208251808401909352805483526001015490820152600f5492935090916002141561212e5761212b613108565b91505b600f5486600081518110612144576121446139c3565b60200260200101818152505060105486600181518110612166576121666139c3565b60200260200101818152505060115486600281518110612188576121886139c3565b602002602001018181525050601254866003815181106121aa576121aa6139c3565b60200260200101818152505081866004815181106121ca576121ca6139c3565b602002602001018181525050600d54866005815181106121ec576121ec6139c3565b6020026020010181815250506008548660068151811061220e5761220e6139c3565b60200260200101818152505060005486600781518110612230576122306139c3565b602090810291909101015260055473ffffffffffffffffffffffffffffffffffffffff16156127c0576005546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa1580156122c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122eb91906139aa565b866008815181106122fe576122fe6139c3565b60209081029190910101526005546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8d81166004830152909116906370a0823190602401602060405180830381865afa158015612379573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239d91906139aa565b866010815181106123b0576123b06139c3565b6020026020010181815250506123c58b611bb8565b866011815181106123d8576123d86139c3565b602002602001018181525050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612451573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124759190613a15565b5086600081518110612489576124896139c3565b60200260200101876001815181106124a3576124a36139c3565b60200260200101826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815250826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681525050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663054d50d4670de0b6b3a76400008760008151811061254c5761254c6139c3565b60200260200101516dffffffffffffffffffffffffffff1688600181518110612577576125776139c3565b60200260200101516dffffffffffffffffffffffffffff166040518463ffffffff1660e01b81526004016125be939291909283526020830191909152604082015260600190565b602060405180830381865afa1580156125db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ff91906139aa565b86601281518110612612576126126139c3565b602090810291909101015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b156127c057600073c3d03e4f041fd4cd388c549ee2a29a9e5075882f90506000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561269f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c39190613a15565b506040517f054d50d4000000000000000000000000000000000000000000000000000000008152670de0b6b3a764000060048201526dffffffffffffffffffffffffffff80841660248301528216604482015291935091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063054d50d490606401602060405180830381865afa158015612779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279d91906139aa565b896013815181106127b0576127b06139c3565b6020026020010181815250505050505b43866009815181106127d4576127d46139c3565b6020026020010181815250508386600a815181106127f4576127f46139c3565b6020026020010181815250508286600b81518110612814576128146139c3565b60200260200101818152505060065486600c81518110612836576128366139c3565b602002602001018181525050806000015186600d8151811061285a5761285a6139c3565b602002602001018181525050806020015186600e8151811061287e5761287e6139c3565b602002602001018181525050600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486600f815181106128dd576128dd6139c3565b60209081029190910181019190915260008052600190527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb495486518790601490811061292b5761292b6139c3565b602090810291909101810191909152600a5473ffffffffffffffffffffffffffffffffffffffff16600090815260019091526040902054865187906015908110612977576129776139c3565b60209081029190910101525050600c5460095494985073ffffffffffffffffffffffffffffffffffffffff16965092945090925050509193509193565b60408051600180825281830190925260609182916000916020808301908036833701905050905030816000815181106129ef576129ef6139c3565b73ffffffffffffffffffffffffffffffffffffffff9290921660209283029190910190910152604080516001808252818301909252600091816020016020820280368337019050509050612a4286611bb8565b81600081518110612a5557612a556139c3565b602090810291909101015290969095509350505050565b336000818152600360205260408082208054838255600182019390935560055491517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810194909452602484018390529273ffffffffffffffffffffffffffffffffffffffff9091169063a9059cbb906044016020604051808303816000875af1158015612b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b26919061396b565b5060405181815233907f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695906020015b60405180910390a25050565b60045473ffffffffffffffffffffffffffffffffffffffff163314612be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b600655565b600c5460009073ffffffffffffffffffffffffffffffffffffffff163314612c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f54600114612cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610826565b612d027f000000000000000000000000000000000000000000000000000000000000000060026138c4565b601254612d0f91906138ac565b4311612d77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610826565b655af3107a40006008541015612de9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206c6f7700000000000000000000000000006044820152606401610826565b43601255600854600090612dff90600590613930565b9050600081600854612e119190613895565b9050655af3107a4000811015612e4157655af3107a4000600854612e359190613895565b9150655af3107a400090505b600881905560408051828152602081018490527f954f28b512349f4a396730bb92a76639ffc1960d9e784f411a95f270a06eaf3a910161178e565b60007f00000000000000000000000000000000000000000000000000000000000000006103e8600e54612eaf9190613930565b612eb99190613930565b905060008160115443612ecc9190613895565b612ed691906138c4565b9050601054600014158015612eed57508060105410155b15612f3f5780601054612f009190613895565b601055612f0d308261318c565b60405181815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a8058590602001612b55565b600060105482612f4f9190613895565b9050612f5d3060105461318c565b60105460405190815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a805859060200160405180910390a26002600f556000601055600c54612fc29073ffffffffffffffffffffffffffffffffffffffff1630613303565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001630179055612ff633826133ea565b60405181815233907fb69f2aeff650d440d3e7385aedf764195cfca9509e33b69e69f8c77cab1e1af190602001610b54565b5050565b3060009081526001602052604090205480821115613048578091505b30600090815260016020526040902054613063908390613895565b306000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff85168152205461309d9083906138ac565b73ffffffffffffffffffffffffffffffffffffffff84166000818152600160205260409081902092909255905130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906130fb9086815260200190565b60405180910390a3505050565b6000807f00000000000000000000000000000000000000000000000000000000000000006011544303600a600e548161314357613143613901565b04028161315257613152613901565b049050600e5481111561316b5764e8d4a5100091505090565b600e5481900364e8d4a51000811015613186575064e8d4a510005b92915050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020546131bd908290613895565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812091909155546131f2908290613895565b600090815560405182815273ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b80613250575050565b3060009081526001602052604090205461326b908290613895565b306000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff8416815220546132a59082906138ac565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600160205260409081902092909255905130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061323b9085815260200190565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613028576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528281166024830152600060448301527f000000000000000000000000000000000000000000000000000000000000000016906323b872dd90606401600060405180830381600087803b1580156133ce57600080fd5b505af11580156133e2573d6000803e3d6000fd5b505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216613467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610826565b8060005461347591906138ac565b600090815573ffffffffffffffffffffffffffffffffffffffff83168152600160205260409020546134a89082906138ac565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061323b9085815260200190565b600060208083528351808285015260005b8181101561353357858101830151858201604001528201613517565b81811115613545576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461104257600080fd5b600080604083850312156135ae57600080fd5b82356135b981613579565b946020939093013593505050565b6000602082840312156135d957600080fd5b81356135e481613579565b9392505050565b60008060006060848603121561360057600080fd5b833561360b81613579565b9250602084013561361b81613579565b929592945050506040919091013590565b60006020828403121561363e57600080fd5b5035919050565b600080600080600060a0868803121561365d57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600080600060a0868803121561369857600080fd5b8535945060208601356136aa81613579565b935060408601356136ba81613579565b94979396509394606081013594506080013592915050565b600081518084526020808501945080840160005b83811015613702578151875295820195908201906001016136e6565b509495945050505050565b60808152600061372060808301876136d2565b602073ffffffffffffffffffffffffffffffffffffffff87168185015285604085015283820360608501528185518084528284019150828701935060005b8181101561378a5784516dffffffffffffffffffffffffffff168352938301939183019160010161375e565b50909998505050505050505050565b6000806000606084860312156137ae57600080fd5b83359250602084013561361b81613579565b604080825283519082018190526000906020906060840190828701845b8281101561380f57815173ffffffffffffffffffffffffffffffffffffffff16845292840192908401906001016137dd565b5050508381038285015261382381866136d2565b9695505050505050565b6000806040838503121561384057600080fd5b823561384b81613579565b9150602083013561385b81613579565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156138a7576138a7613866565b500390565b600082198211156138bf576138bf613866565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138fc576138fc613866565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613966577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561397d57600080fd5b815180151581146135e457600080fd5b60006020828403121561399f57600080fd5b81516135e481613579565b6000602082840312156139bc57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b80516dffffffffffffffffffffffffffff81168114613a1057600080fd5b919050565b600080600060608486031215613a2a57600080fd5b613a33846139f2565b9250613a41602085016139f2565b9150604084015163ffffffff81168114613a5a57600080fd5b80915050925092509256fea2646970667358221220d4c6a9aefdfe889ae4ba6529f5e0b60f529b3e11c35a23c3e4efce1642c63db964736f6c634300080b00330000000000000000000000000000000000000000000000000000000000d3abc500000000000000000000000000000000000000000000003635c9adc5dea00000000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb0000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000e10000000000000000000000000000000000000000000000a968163f0a57b400000000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d31320000000000000000000000000000000000000000000000000000000000000000000000000000000000004aa51e8479ecb44c644c96e38c20b18fbc02da91000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102f45760003560e01c806370a0823111610191578063b6b55f25116100e3578063dd62ed3e11610097578063f1dda25211610071578063f1dda252146106c0578063f56a499f146106c8578063f851a440146106d157600080fd5b8063dd62ed3e14610662578063dfe0a8891461068d578063ec17b20e146106ad57600080fd5b8063d63b3c49116100c8578063d63b3c4914610630578063d98d052a14610651578063db2e21bc1461065a57600080fd5b8063b6b55f25146105fa578063c23f85d61461060d57600080fd5b8063941a9acd11610145578063a888c2cd1161011f578063a888c2cd146105bb578063a9059cbb146105de578063a9f8d181146105f157600080fd5b8063941a9acd1461056457806395d89b4114610577578063a2e62045146105b357600080fd5b806371fab9001161017657806371fab900146105355780638bf637421461053e57806391b7f5ed1461055157600080fd5b806370a082311461050d578063715018a61461052d57600080fd5b80632e1a7d4d1161024a5780633f6c518d116101fe5780634437152a116101d85780634437152a146104d2578063557aa67e146104e55780635fcbd285146104ed57600080fd5b80633f6c518d146104a35780633fd2c585146104b6578063430c3880146104bf57600080fd5b8063379607f51161022f578063379607f51461047e5780633a5fca36146104915780633e321c671461049a57600080fd5b80632e1a7d4d14610451578063313ce5671461046457600080fd5b806319ad317d116102ac57806323b872dd1161028657806323b872dd146104225780632851809414610435578063293be4561461043e57600080fd5b806319ad317d146103ca5780631d4eaead1461040f5780631fdcc12e1461041957600080fd5b80630d778273116102dd5780630d7782731461036e57806318160ddd146103855780631959a0021461038e57600080fd5b806306fdde03146102f9578063095ea7b31461034b575b600080fd5b6103356040518060400160405280600f81526020017f43696761726574746520546f6b656e000000000000000000000000000000000081525081565b6040516103429190613506565b60405180910390f35b61035e61035936600461359b565b6106f1565b6040519015158152602001610342565b61037760075481565b604051908152602001610342565b61037760005481565b6103b561039c3660046135c7565b6003602052600090815260409020805460019091015482565b60408051928352602083019190915201610342565b600c546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610342565b61041761076a565b005b61037760105481565b61035e6104303660046135eb565b610790565b610377600d5481565b61041761044c36600461362c565b610910565b61041761045f36600461362c565b610996565b61046c601281565b60405160ff9091168152602001610342565b61035e61048c36600461362c565b610b61565b610377600e5481565b61037760125481565b6104176104b136600461362c565b610ee7565b61037760115481565b6104176104cd366004613645565b611045565b6104176104e03660046135c7565b6113aa565b6103776114f2565b6005546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b61037761051b3660046135c7565b60016020526000908152604090205481565b61041761179c565b61037760085481565b61041761054c366004613680565b611847565b61041761055f36600461362c565b611989565b6103776105723660046135c7565b611bb8565b6103356040518060400160405280600381526020017f434947000000000000000000000000000000000000000000000000000000000081525081565b610417611cf9565b61035e6105c936600461362c565b600b6020526000908152604090205460ff1681565b61035e6105ec36600461359b565b611e00565b61037760065481565b61041761060836600461362c565b611eb3565b61062061061b3660046135c7565b612027565b604051610342949392919061370d565b61064361063e366004613799565b6129b4565b6040516103429291906137c0565b610377600f5481565b610417612a6c565b61037761067036600461382d565b600260209081526000928352604080842090915290825290205481565b600a546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b6104176106bb36600461362c565b612b61565b610377612be7565b61037760095481565b6004546103ea9073ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107599086815260200190565b60405180910390a350600192915050565b43601154141561077657565b600f546001141561078e57610789612e7c565b436011555b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020908152604080832033845290915281205482111561082f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6e6f7420617070726f766564000000000000000000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020526040902054610860908390613895565b73ffffffffffffffffffffffffffffffffffffffff808616600090815260016020526040808220939093559085168152205461089d9083906138ac565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108fe9086815260200190565b60405180910390a35060019392505050565b60045473ffffffffffffffffffffffffffffffffffffffff163314610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b600855565b3360009081526003602052604090208054821115610a10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f77697468647261773a206e6f7420676f6f6400000000000000000000000000006044820152606401610826565b610a18611cf9565b6000816001015464e8d4a510006007548460000154610a3791906138c4565b610a419190613930565b610a4b9190613895565b9050610a57338261302c565b8154610a64908490613895565b80835560075464e8d4a5100091610a7b91906138c4565b610a859190613930565b60018301556005546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810185905273ffffffffffffffffffffffffffffffffffffffff9091169063a9059cbb906044016020604051808303816000875af1158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b25919061396b565b5060405183815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906020015b60405180910390a2505050565b600061270f821115610bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610826565b6000828152600b602052604090205460ff1615610c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f70756e6b20616c726561647920636c61696d65640000000000000000000000006044820152606401610826565b600a546040517f581781680000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff909116906358178168906024016020604051808303816000875af1158015610cb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdd919061398d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f70756e6b203430340000000000000000000000000000000000000000000000006044820152606401610826565b6000828152600b6020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600a5473ffffffffffffffffffffffffffffffffffffffff168452909152902054610de49069152d02c7e14af680000090613895565b600a5473ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040808220929092553381522054610e2a9069152d02c7e14af6800000906138ac565b336000818152600160205260409081902092909255600a549151909173ffffffffffffffffffffffffffffffffffffffff16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e969069152d02c7e14af6800000815260200190565b60405180910390a360405169152d02c7e14af68000008152829033907f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf79060200160405180910390a3506001919050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610f68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f54600114610fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f6e6f2043454f00000000000000000000000000000000000000000000000000006044820152606401610826565b801561102c57610fe43082611e00565b5080601054610ff391906138ac565b60105560405181815233907f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a25b43601154146110425761103d612e7c565b436011555b50565b600f54600114801561105957504360115414155b1561106657611066612e7c565b600f546002141561107d57611079613108565b600e555b8483600e5461108c91906138ac565b11156110f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6f766572706169640000000000000000000000000000000000000000000000006044820152606401610826565b64e8d4a51000841015611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610826565b61270f8211156111cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610826565b6111db6103e885613930565b831015611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e73756666696369656e7420746178000000000000000000000000000000006044820152606401610826565b61125030600e54611e00565b5061125d30600e5461318c565b600e5460405190815233907f1b1be00a9ca19f9c14f1ca5d16e4aba7d4dd173c2263d4d8a03484e1c652c8989060200160405180910390a2600c546010546112bb9173ffffffffffffffffffffffffffffffffffffffff1690613247565b6112c53084611e00565b506010839055600c546112ee9073ffffffffffffffffffffffffffffffffffffffff1633613303565b600e849055600d829055600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001633908117909155436011556001600f5560098290556040518481527f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a26040805185815260208101839052839133917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a35050505050565b60045473ffffffffffffffffffffffffffffffffffffffff16331461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b60055473ffffffffffffffffffffffffffffffffffffffff16156114ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f706f6f6c20616c726561647920736574000000000000000000000000000000006044820152606401610826565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600c5460009073ffffffffffffffffffffffffffffffffffffffff163314611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f546001146115e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610826565b61160d7f0000000000000000000000000000000000000000000000000000000000001c2060026138c4565b60125461161a91906138ac565b4311611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610826565b683635c9adc5dea0000060085411156116f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206d617800000000000000000000000000006044820152606401610826565b4360125560085460009061170d90600590613930565b905060008160085461171f91906138ac565b9050683635c9adc5dea000008111156117575760085461174890683635c9adc5dea00000613895565b9150683635c9adc5dea0000090505b600881905560408051828152602081018490527fac0f42229355025440e6f2b848e89f3a5cc8e1165cc312de10be10b12b922d3391015b60405180910390a150905090565b60045473ffffffffffffffffffffffffffffffffffffffff16331461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b600480547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d16146118e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4f6e6c79204d43563200000000000000000000000000000000000000000000006044820152606401610826565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600360205260409020611913611cf9565b80541561195b576000816001015464e8d4a51000600754846000015461193991906138c4565b6119439190613930565b61194d9190613895565b9050611959858261302c565b505b81815560075464e8d4a510009061197290846138c4565b61197c9190613930565b6001909101555050505050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611a0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f54600114611a76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610826565b64e8d4a51000811015611ae5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610826565b611af16103e882613930565b6010541015611b5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f707269636520776f756c642064656661756c74000000000000000000000000006044820152606401610826565b6011544314611b7257611b6d612e7c565b436011555b600f546001141561104257600e8190556040518181527f10c342a321267613a25f77d4273d7f2688bef174a7214bc3dde44b31c5064ff69060200160405180910390a150565b60075473ffffffffffffffffffffffffffffffffffffffff82811660009081526003602052604080822060055491517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015292949390928592909116906370a0823190602401602060405180830381865afa158015611c41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6591906139aa565b905060065443118015611c7757508015155b15611cc357600060085460065443611c8f9190613895565b611c9991906138c4565b905081611cab8264e8d4a510006138c4565b611cb59190613930565b611cbf90856138ac565b9350505b6001820154825464e8d4a5100090611cdc9086906138c4565b611ce69190613930565b611cf09190613895565b95945050505050565b6006544311611d0457565b6005546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015611d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9791906139aa565b905080611da5575043600655565b600060085460065443611db89190613895565b611dc291906138c4565b9050611dce30826133ea565b81611dde8264e8d4a510006138c4565b611de89190613930565b600754611df591906138ac565b600755505043600655565b33600090815260016020526040812054611e1b908390613895565b336000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff851681522054611e559083906138ac565b73ffffffffffffffffffffffffffffffffffffffff84166000818152600160205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107599086815260200190565b336000908152600360205260409020611eca611cf9565b805415611f12576000816001015464e8d4a510006007548460000154611ef091906138c4565b611efa9190613930565b611f049190613895565b9050611f10338261302c565b505b8115611fff576005546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810184905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303816000875af1158015611f95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb9919061396b565b508054611fc79083906138ac565b815560405182815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a25b600754815464e8d4a5100091612014916138c4565b61201e9190613930565b60019091015550565b6040805160168082526102e08201909252606091600091829184918391602082016102c08036833750506040805160028082526060820183529394506000939092509060208301908036833701905050905060007f0000000000000000000000000000000000000000000000000000000000001c206103e8600e546120ac9190613930565b6120b69190613930565b9050600081601154436120c99190613895565b6120d391906138c4565b600e5473ffffffffffffffffffffffffffffffffffffffff8b166000908152600360209081526040918290208251808401909352805483526001015490820152600f5492935090916002141561212e5761212b613108565b91505b600f5486600081518110612144576121446139c3565b60200260200101818152505060105486600181518110612166576121666139c3565b60200260200101818152505060115486600281518110612188576121886139c3565b602002602001018181525050601254866003815181106121aa576121aa6139c3565b60200260200101818152505081866004815181106121ca576121ca6139c3565b602002602001018181525050600d54866005815181106121ec576121ec6139c3565b6020026020010181815250506008548660068151811061220e5761220e6139c3565b60200260200101818152505060005486600781518110612230576122306139c3565b602090810291909101015260055473ffffffffffffffffffffffffffffffffffffffff16156127c0576005546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa1580156122c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122eb91906139aa565b866008815181106122fe576122fe6139c3565b60209081029190910101526005546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8d81166004830152909116906370a0823190602401602060405180830381865afa158015612379573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239d91906139aa565b866010815181106123b0576123b06139c3565b6020026020010181815250506123c58b611bb8565b866011815181106123d8576123d86139c3565b602002602001018181525050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612451573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124759190613a15565b5086600081518110612489576124896139c3565b60200260200101876001815181106124a3576124a36139c3565b60200260200101826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815250826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681525050507f000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f73ffffffffffffffffffffffffffffffffffffffff1663054d50d4670de0b6b3a76400008760008151811061254c5761254c6139c3565b60200260200101516dffffffffffffffffffffffffffff1688600181518110612577576125776139c3565b60200260200101516dffffffffffffffffffffffffffff166040518463ffffffff1660e01b81526004016125be939291909283526020830191909152604082015260600190565b602060405180830381865afa1580156125db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ff91906139aa565b86601281518110612612576126126139c3565b602090810291909101015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b156127c057600073c3d03e4f041fd4cd388c549ee2a29a9e5075882f90506000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561269f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c39190613a15565b506040517f054d50d4000000000000000000000000000000000000000000000000000000008152670de0b6b3a764000060048201526dffffffffffffffffffffffffffff80841660248301528216604482015291935091507f000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f73ffffffffffffffffffffffffffffffffffffffff169063054d50d490606401602060405180830381865afa158015612779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279d91906139aa565b896013815181106127b0576127b06139c3565b6020026020010181815250505050505b43866009815181106127d4576127d46139c3565b6020026020010181815250508386600a815181106127f4576127f46139c3565b6020026020010181815250508286600b81518110612814576128146139c3565b60200260200101818152505060065486600c81518110612836576128366139c3565b602002602001018181525050806000015186600d8151811061285a5761285a6139c3565b602002602001018181525050806020015186600e8151811061287e5761287e6139c3565b602002602001018181525050600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486600f815181106128dd576128dd6139c3565b60209081029190910181019190915260008052600190527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb495486518790601490811061292b5761292b6139c3565b602090810291909101810191909152600a5473ffffffffffffffffffffffffffffffffffffffff16600090815260019091526040902054865187906015908110612977576129776139c3565b60209081029190910101525050600c5460095494985073ffffffffffffffffffffffffffffffffffffffff16965092945090925050509193509193565b60408051600180825281830190925260609182916000916020808301908036833701905050905030816000815181106129ef576129ef6139c3565b73ffffffffffffffffffffffffffffffffffffffff9290921660209283029190910190910152604080516001808252818301909252600091816020016020820280368337019050509050612a4286611bb8565b81600081518110612a5557612a556139c3565b602090810291909101015290969095509350505050565b336000818152600360205260408082208054838255600182019390935560055491517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810194909452602484018390529273ffffffffffffffffffffffffffffffffffffffff9091169063a9059cbb906044016020604051808303816000875af1158015612b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b26919061396b565b5060405181815233907f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695906020015b60405180910390a25050565b60045473ffffffffffffffffffffffffffffffffffffffff163314612be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610826565b600655565b600c5460009073ffffffffffffffffffffffffffffffffffffffff163314612c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610826565b600f54600114612cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610826565b612d027f0000000000000000000000000000000000000000000000000000000000001c2060026138c4565b601254612d0f91906138ac565b4311612d77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610826565b655af3107a40006008541015612de9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206c6f7700000000000000000000000000006044820152606401610826565b43601255600854600090612dff90600590613930565b9050600081600854612e119190613895565b9050655af3107a4000811015612e4157655af3107a4000600854612e359190613895565b9150655af3107a400090505b600881905560408051828152602081018490527f954f28b512349f4a396730bb92a76639ffc1960d9e784f411a95f270a06eaf3a910161178e565b60007f0000000000000000000000000000000000000000000000000000000000001c206103e8600e54612eaf9190613930565b612eb99190613930565b905060008160115443612ecc9190613895565b612ed691906138c4565b9050601054600014158015612eed57508060105410155b15612f3f5780601054612f009190613895565b601055612f0d308261318c565b60405181815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a8058590602001612b55565b600060105482612f4f9190613895565b9050612f5d3060105461318c565b60105460405190815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a805859060200160405180910390a26002600f556000601055600c54612fc29073ffffffffffffffffffffffffffffffffffffffff1630613303565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001630179055612ff633826133ea565b60405181815233907fb69f2aeff650d440d3e7385aedf764195cfca9509e33b69e69f8c77cab1e1af190602001610b54565b5050565b3060009081526001602052604090205480821115613048578091505b30600090815260016020526040902054613063908390613895565b306000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff85168152205461309d9083906138ac565b73ffffffffffffffffffffffffffffffffffffffff84166000818152600160205260409081902092909255905130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906130fb9086815260200190565b60405180910390a3505050565b6000807f0000000000000000000000000000000000000000000000000000000000000e106011544303600a600e548161314357613143613901565b04028161315257613152613901565b049050600e5481111561316b5764e8d4a5100091505090565b600e5481900364e8d4a51000811015613186575064e8d4a510005b92915050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020546131bd908290613895565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812091909155546131f2908290613895565b600090815560405182815273ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b80613250575050565b3060009081526001602052604090205461326b908290613895565b306000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff8416815220546132a59082906138ac565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600160205260409081902092909255905130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061323b9085815260200190565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613028576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528281166024830152600060448301527f0000000000000000000000004aa51e8479ecb44c644c96e38c20b18fbc02da9116906323b872dd90606401600060405180830381600087803b1580156133ce57600080fd5b505af11580156133e2573d6000803e3d6000fd5b505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216613467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610826565b8060005461347591906138ac565b600090815573ffffffffffffffffffffffffffffffffffffffff83168152600160205260409020546134a89082906138ac565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061323b9085815260200190565b600060208083528351808285015260005b8181101561353357858101830151858201604001528201613517565b81811115613545576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461104257600080fd5b600080604083850312156135ae57600080fd5b82356135b981613579565b946020939093013593505050565b6000602082840312156135d957600080fd5b81356135e481613579565b9392505050565b60008060006060848603121561360057600080fd5b833561360b81613579565b9250602084013561361b81613579565b929592945050506040919091013590565b60006020828403121561363e57600080fd5b5035919050565b600080600080600060a0868803121561365d57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600080600060a0868803121561369857600080fd5b8535945060208601356136aa81613579565b935060408601356136ba81613579565b94979396509394606081013594506080013592915050565b600081518084526020808501945080840160005b83811015613702578151875295820195908201906001016136e6565b509495945050505050565b60808152600061372060808301876136d2565b602073ffffffffffffffffffffffffffffffffffffffff87168185015285604085015283820360608501528185518084528284019150828701935060005b8181101561378a5784516dffffffffffffffffffffffffffff168352938301939183019160010161375e565b50909998505050505050505050565b6000806000606084860312156137ae57600080fd5b83359250602084013561361b81613579565b604080825283519082018190526000906020906060840190828701845b8281101561380f57815173ffffffffffffffffffffffffffffffffffffffff16845292840192908401906001016137dd565b5050508381038285015261382381866136d2565b9695505050505050565b6000806040838503121561384057600080fd5b823561384b81613579565b9150602083013561385b81613579565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156138a7576138a7613866565b500390565b600082198211156138bf576138bf613866565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138fc576138fc613866565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613966577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561397d57600080fd5b815180151581146135e457600080fd5b60006020828403121561399f57600080fd5b81516135e481613579565b6000602082840312156139bc57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b80516dffffffffffffffffffffffffffff81168114613a1057600080fd5b919050565b600080600060608486031215613a2a57600080fd5b613a33846139f2565b9250613a41602085016139f2565b9150604084015163ffffffff81168114613a5a57600080fd5b80915050925092509256fea2646970667358221220d4c6a9aefdfe889ae4ba6529f5e0b60f529b3e11c35a23c3e4efce1642c63db964736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000d3abc500000000000000000000000000000000000000000000003635c9adc5dea00000000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb0000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000e10000000000000000000000000000000000000000000000a968163f0a57b400000000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d31320000000000000000000000000000000000000000000000000000000000000000000000000000000000004aa51e8479ecb44c644c96e38c20b18fbc02da91000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f

-----Decoded View---------------
Arg [0] : _startBlock (uint256): 13872069
Arg [1] : _cigPerBlock (uint256): 1000000000000000000000
Arg [2] : _punks (address): 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB
Arg [3] : _CEO_epoch_blocks (uint256): 7200
Arg [4] : _CEO_auction_blocks (uint256): 3600
Arg [5] : _CEO_price (uint256): 50000000000000000000000
Arg [6] : _MASTERCHEF_V2 (address): 0xEF0881eC094552b2e128Cf945EF17a6752B4Ec5d
Arg [7] : _graffiti (bytes32): 0x3132000000000000000000000000000000000000000000000000000000000000
Arg [8] : _NFT (address): 0x4aa51E8479ecB44C644C96E38C20B18Fbc02Da91
Arg [9] : _V2ROUTER (address): 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000d3abc5
Arg [1] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Arg [2] : 000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001c20
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000e10
Arg [5] : 000000000000000000000000000000000000000000000a968163f0a57b400000
Arg [6] : 000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d
Arg [7] : 3132000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000004aa51e8479ecb44c644c96e38c20b18fbc02da91
Arg [9] : 000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f


Deployed Bytecode Sourcemap

2546:30050:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2651:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;30481:208;;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;30481:208:0;1154:187:1;3786:29:0;;;;;;;;;1492:25:1;;;1480:2;1465:18;3786:29:0;1346:177:1;2791:30:0;;;;;;3358:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;1954:25:1;;;2010:2;1995:18;;1988:34;;;;1927:18;3358:44:0;1780:248:1;5426:22:0;;;;;;;;;;;;2209:42:1;2197:55;;;2179:74;;2167:2;2152:18;5426:22:0;2033:226:1;14730:197:0;;;:::i;:::-;;5752:30;;;;;;29806:496;;;;;;:::i;:::-;;:::i;5495:26::-;;;;;;9801:91;;;;;;:::i;:::-;;:::i;26564:537::-;;;;;;:::i;:::-;;:::i;2749:35::-;;2782:2;2749:35;;;;;3082:4:1;3070:17;;;3052:36;;3040:2;3025:18;2749:35:0;2910:184:1;23117:674:0;;;;;;:::i;:::-;;:::i;5580:38::-;;;;;;5937:34;;;;;;13815:563;;;;;;:::i;:::-;;:::i;5844:27::-;;;;;;10258:2473;;;;;;:::i;:::-;;:::i;9525:167::-;;;;;;:::i;:::-;;:::i;17387:702::-;;;:::i;3558:34::-;;;;;;;;;2828:44;;;;;;:::i;:::-;;;;;;;;;;;;;;8998:85;;;:::i;3897:26::-;;;;;;30877:540;;;;;;:::i;:::-;;:::i;16603:599::-;;;;;;:::i;:::-;;:::i;24962:577::-;;;;;;:::i;:::-;;:::i;2705:37::-;;;;;;;;;;;;;;;;;;;;;24230:601;;;:::i;4843:35::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29139:375;;;;;;:::i;:::-;;:::i;3677:30::-;;;;;;25758:671;;;;;;:::i;:::-;;:::i;19912:2949::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;31584:403::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;5661:24::-;;;;;;27216:309;;;:::i;2879:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;4094:24;;;;;;;;;9297:114;;;;;;:::i;:::-;;:::i;18223:693::-;;;:::i;3994:23::-;;;;;;3461:20;;;;;;;;;30481:208;30575:10;30548:4;30565:21;;;:9;:21;;;;;;;;;:31;;;;;;;;;;:40;;;30621:38;30548:4;;30565:31;;30621:38;;;;30599:6;1492:25:1;;1480:2;1465:18;;1346:177;30621:38:0;;;;;;;;-1:-1:-1;30677:4:0;30481:208;;;;:::o;14730:197::-;14790:12;14774;;:28;14770:41;;;14730:197::o;14770:41::-;14825:9;;14838:1;14825:14;14821:99;;;14856:10;:8;:10::i;:::-;14896:12;14881;:27;14821:99;14730:197::o;29806:496::-;30077:16;;;29932:4;30077:16;;;:9;:16;;;;;;;;30094:10;30077:28;;;;;;;;30067:38;;;30059:63;;;;;;;8466:2:1;30059:63:0;;;8448:21:1;8505:2;8485:18;;;8478:30;8544:14;8524:18;;;8517:42;8576:18;;30059:63:0;;;;;;;;;30152:16;;;;;;;:9;:16;;;;;;:25;;30171:6;;30152:25;:::i;:::-;30133:16;;;;;;;;:9;:16;;;;;;:44;;;;30205:14;;;;;;;:23;;30222:6;;30205:23;:::i;:::-;30188:14;;;;;;;;:9;:14;;;;;;;:40;;;;30244:28;;;;;;;;;;30265:6;1492:25:1;;1480:2;1465:18;;1346:177;30244:28:0;;;;;;;;-1:-1:-1;30290:4:0;29806:496;;;;;:::o;9801:91::-;5008:5;;;;4994:10;:19;4972:93;;;;;;;9259:2:1;4972:93:0;;;9241:21:1;9298:2;9278:18;;;9271:30;9337:26;9317:18;;;9310:54;9381:18;;4972:93:0;9057:348:1;4972:93:0;9864:11:::1;:20:::0;9801:91::o;26564:537::-;26652:10;26619:21;26643:20;;;:8;:20;;;;;26682:12;;:23;-1:-1:-1;26682:23:0;26674:54;;;;;;;9612:2:1;26674:54:0;;;9594:21:1;9651:2;9631:18;;;9624:30;9690:20;9670:18;;;9663:48;9728:18;;26674:54:0;9410:342:1;26674:54:0;26739:8;:6;:8::i;:::-;26758:15;26817:4;:15;;;26809:4;26792:14;;26777:4;:12;;;:29;;;;:::i;:::-;:36;;;;:::i;:::-;26776:56;;;;:::i;:::-;26758:74;;26843:35;26858:10;26870:7;26843:14;:35::i;:::-;26904:12;;:22;;26919:7;;26904:22;:::i;:::-;26889:37;;;26970:14;;26987:4;;26955:29;;26970:14;26955:29;:::i;:::-;:36;;;;:::i;:::-;26937:15;;;:54;27002:7;;:46;;;;;27027:10;27002:46;;;10632:74:1;10722:18;;;10715:34;;;27002:7:0;;;;;:16;;10605:18:1;;27002:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;27064:29:0;;1492:25:1;;;27073:10:0;;27064:29;;1480:2:1;1465:18;27064:29:0;;;;;;;;26608:493;;26564:537;:::o;23117:674::-;23169:4;23209;23195:10;:18;;23186:44;;;;;;;11244:2:1;23186:44:0;;;11226:21:1;11283:2;11263:18;;;11256:30;11322:14;11302:18;;;11295:42;11354:18;;23186:44:0;11042:336:1;23186:44:0;23249:18;;;;:6;:18;;;;;;;;:27;23241:60;;;;;;;11585:2:1;23241:60:0;;;11567:21:1;11624:2;11604:18;;;11597:30;11663:22;11643:18;;;11636:50;11703:18;;23241:60:0;11383:344:1;23241:60:0;23334:5;;:36;;;;;;;;1492:25:1;;;23334:5:0;;;;;:24;;1465:18:1;;23334:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23320:50;;:10;:50;;;23312:71;;;;;;;12190:2:1;23312:71:0;;;12172:21:1;12229:1;12209:18;;;12202:29;12267:10;12247:18;;;12240:38;12295:18;;23312:71:0;11988:331:1;23312:71:0;23394:18;;;;:6;:18;;;;;;;;:25;;;;23415:4;23394:25;;;;;;23476:5;;;;23458:25;;;;;;;;:40;;5190:12;;23458:40;:::i;:::-;23448:5;;;;23430:25;;;;:9;:25;;;;;;:68;;;;23577:10;23567:21;;;;:36;;5190:12;;23567:36;:::i;:::-;23553:10;23543:21;;;;:9;:21;;;;;;;:60;;;;23669:5;;23652:50;;23553:10;;23543:21;23669:5;;23652:50;;;;5190:12;1492:25:1;;1480:2;1465:18;;1346:177;23652:50:0;;;;;;;;23718:43;;5190:12;1492:25:1;;23736:10:0;;23724;;23718:43;;1480:2:1;1465:18;23718:43:0;;;;;;;-1:-1:-1;23779:4:0;;23117:674;-1:-1:-1;23117:674:0:o;13815:563::-;6999:7;;;;6985:10;:21;6963:93;;;;;;;12526:2:1;6963:93:0;;;12508:21:1;12565:2;12545:18;;;12538:30;12604:24;12584:18;;;12577:52;12646:18;;6963:93:0;12324:346:1;6963:93:0;13889:9:::1;;13902:1;13889:14;13880:34;;;::::0;::::1;::::0;;12877:2:1;13880:34:0::1;::::0;::::1;12859:21:1::0;12916:1;12896:18;;;12889:29;12954:8;12934:18;;;12927:36;12980:18;;13880:34:0::1;12675:329:1::0;13880:34:0::1;13929:11:::0;;13925:260:::1;;13957:32;13974:4;13981:7;13957:8;:32::i;:::-;;14086:7;14068:15;;:25;;;;:::i;:::-;14050:15;:43:::0;14142:31:::1;::::0;1492:25:1;;;14153:10:0::1;::::0;14142:31:::1;::::0;1480:2:1;1465:18;14142:31:0::1;;;;;;;13925:260;14215:12;14199;;:28;14195:176;;14244:10;:8;:10::i;:::-;14347:12;14332;:27:::0;14195:176:::1;13815:563:::0;:::o;10258:2473::-;10452:9;;10465:1;10452:14;:48;;;;;10487:12;10471;;:28;;10452:48;10448:180;;;10517:10;:8;:10::i;:::-;10642:9;;10655:1;10642:14;10638:163;;;10774:15;:13;:15::i;:::-;10762:9;:27;10638:163;10847:10;10832:11;10820:9;;:23;;;;:::i;:::-;:37;;10811:59;;;;;;;13211:2:1;10811:59:0;;;13193:21:1;13250:1;13230:18;;;13223:29;13288:10;13268:18;;;13261:38;13316:18;;10811:59:0;13009:331:1;10811:59:0;5120:4;10925:10;:23;;10916:49;;;;;;;13547:2:1;10916:49:0;;;13529:21:1;13586:2;13566:18;;;13559:30;13625:14;13605:18;;;13598:42;13657:18;;10916:49:0;13345:336:1;10916:49:0;11054:4;11039:11;:19;;11030:45;;;;;;;11244:2:1;11030:45:0;;;11226:21:1;11283:2;11263:18;;;11256:30;11322:14;11302:18;;;11295:42;11354:18;;11030:45:0;11042:336:1;11030:45:0;11157:17;11170:4;11157:10;:17;:::i;:::-;11142:11;:32;;11133:63;;;;;;;13888:2:1;11133:63:0;;;13870:21:1;13927:2;13907:18;;;13900:30;13966:18;13946;;;13939:46;14002:18;;11133:63:0;13686:340:1;11133:63:0;11247:34;11264:4;11271:9;;11247:8;:34::i;:::-;;11348:30;11361:4;11368:9;;11348:4;:30::i;:::-;11475:9;;11449:36;;1492:25:1;;;11463:10:0;;11449:36;;1480:2:1;1465:18;11449:36:0;;;;;;;11511:7;;11520:15;;11496:40;;11511:7;;;11496:14;:40::i;:::-;11612:36;11629:4;11636:11;11612:8;:36::i;:::-;-1:-1:-1;11727:15:0;:29;;;11848:7;;11835:33;;11848:7;;11857:10;11835:12;:33::i;:::-;11942:9;:22;;;12039:14;:28;;;12136:7;:20;;;;12146:10;12136:20;;;;;;12254:12;12239;:27;-1:-1:-1;12558:9:0;:13;12582:8;:20;;;12618:35;;1492:25:1;;;12618:35:0;;1480:2:1;1465:18;12618:35:0;;;;;;;12669:54;;;1954:25:1;;;2010:2;1995:18;;1988:34;;;12688:11:0;;12676:10;;12669:54;;1927:18:1;12669:54:0;;;;;;;10258:2473;;;;;:::o;9525:167::-;5008:5;;;;4994:10;:19;4972:93;;;;;;;9259:2:1;4972:93:0;;;9241:21:1;9298:2;9278:18;;;9271:30;9337:26;9317:18;;;9310:54;9381:18;;4972:93:0;9057:348:1;4972:93:0;9615:7:::1;::::0;9607:30:::1;9615:7;9607:30:::0;9599:59:::1;;;::::0;::::1;::::0;;14486:2:1;9599:59:0::1;::::0;::::1;14468:21:1::0;14525:2;14505:18;;;14498:30;14564:18;14544;;;14537:46;14600:18;;9599:59:0::1;14284:340:1::0;9599:59:0::1;9669:7;:15:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;9525:167::o;17387:702::-;6999:7;;17433;;6999;;6985:10;:21;6963:93;;;;;;;12526:2:1;6963:93:0;;;12508:21:1;12565:2;12545:18;;;12538:30;12604:24;12584:18;;;12577:52;12646:18;;6963:93:0;12324:346:1;6963:93:0;17462:9:::1;;17475:1;17462:14;17454:43;;;::::0;::::1;::::0;;14831:2:1;17454:43:0::1;::::0;::::1;14813:21:1::0;14870:2;14850:18;;;14843:30;14909:18;14889;;;14882:46;14945:18;;17454:43:0::1;14629:340:1::0;17454:43:0::1;17554:18;:16;17571:1;17554:18;:::i;:::-;17531:19;;:42;;;;:::i;:::-;17516:12;:57;17508:86;;;::::0;::::1;::::0;;15176:2:1;17508:86:0::1;::::0;::::1;15158:21:1::0;15215:2;15195:18;;;15188:30;15254:18;15234;;;15227:46;15290:18;;17508:86:0::1;14974:340:1::0;17508:86:0::1;5369:10;17614:11;;:25;;17605:57;;;::::0;::::1;::::0;;15521:2:1;17605:57:0::1;::::0;::::1;15503:21:1::0;15560:2;15540:18;;;15533:30;15599:20;15579:18;;;15572:48;15637:18;;17605:57:0::1;15319:342:1::0;17605:57:0::1;17695:12;17673:19;:34:::0;17736:11:::1;::::0;17718:15:::1;::::0;17736::::1;::::0;17750:1:::1;::::0;17736:15:::1;:::i;:::-;17718:33;;17784:19;17820:7;17806:11;;:21;;;;:::i;:::-;17784:43;;5369:10;17842:11;:24;17838:137;;;17906:11;::::0;17893:24:::1;::::0;5369:10:::1;17893:24;:::i;:::-;17883:34;;5369:10;17932:24;;17838:137;17985:11;:25:::0;;;18026:30:::1;::::0;;1954:25:1;;;2010:2;1995:18;;1988:34;;;18026:30:0::1;::::0;1927:18:1;18026:30:0::1;;;;;;;;-1:-1:-1::0;18074:7:0;-1:-1:-1;17387:702:0;:::o;8998:85::-;5008:5;;;;4994:10;:19;4972:93;;;;;;;9259:2:1;4972:93:0;;;9241:21:1;9298:2;9278:18;;;9271:30;9337:26;9317:18;;;9310:54;9381:18;;4972:93:0;9057:348:1;4972:93:0;9057:5:::1;:18:::0;;;::::1;::::0;;8998:85::o;30877:540::-;32114:10;:27;32128:13;32114:27;;32092:86;;;;;;;15868:2:1;32092:86:0;;;15850:21:1;15907:1;15887:18;;;15880:29;15945:11;15925:18;;;15918:39;15974:18;;32092:86:0;15666:332:1;32092:86:0;31096:15:::1;::::0;::::1;31072:21;31096:15:::0;;;:8:::1;:15;::::0;;;;31122:8:::1;:6;:8::i;:::-;31145:12:::0;;:16;31141:166:::1;;31178:15;31237:4;:15;;;31229:4;31212:14;;31197:4;:12;;;:29;;;;:::i;:::-;:36;;;;:::i;:::-;31196:56;;;;:::i;:::-;31178:74;;31267:28;31282:3;31287:7;31267:14;:28::i;:::-;31163:144;31141:166;31317:27:::0;;;31388:14:::1;::::0;31405:4:::1;::::0;31373:29:::1;::::0;31332:12;31373:29:::1;:::i;:::-;:36;;;;:::i;:::-;31355:15;::::0;;::::1;:54:::0;-1:-1:-1;;;;;30877:540:0:o;16603:599::-;6999:7;;;;6985:10;:21;6963:93;;;;;;;12526:2:1;6963:93:0;;;12508:21:1;12565:2;12545:18;;;12538:30;12604:24;12584:18;;;12577:52;12646:18;;6963:93:0;12324:346:1;6963:93:0;16674:9:::1;;16687:1;16674:14;16666:43;;;::::0;::::1;::::0;;14831:2:1;16666:43:0::1;::::0;::::1;14813:21:1::0;14870:2;14850:18;;;14843:30;14909:18;14889;;;14882:46;14945:18;;16666:43:0::1;14629:340:1::0;16666:43:0::1;5120:4;16729:6;:19;;16720:45;;;::::0;::::1;::::0;;13547:2:1;16720:45:0::1;::::0;::::1;13529:21:1::0;13586:2;13566:18;;;13559:30;13625:14;13605:18;;;13598:42;13657:18;;16720:45:0::1;13345:336:1::0;16720:45:0::1;16804:13;16813:4;16804:6:::0;:13:::1;:::i;:::-;16785:15;;:32;;16776:65;;;::::0;::::1;::::0;;16205:2:1;16776:65:0::1;::::0;::::1;16187:21:1::0;16244:2;16224:18;;;16217:30;16283:21;16263:18;;;16256:49;16322:18;;16776:65:0::1;16003:343:1::0;16776:65:0::1;16902:12;;16886;:28;16882:113;;16931:10;:8;:10::i;:::-;16971:12;16956;:27:::0;16882:113:::1;17071:9;;17084:1;17071:14;17067:128;;;17102:9;:18:::0;;;17161:22:::1;::::0;1492:25:1;;;17161:22:0::1;::::0;1480:2:1;1465:18;17161:22:0::1;;;;;;;16603:599:::0;:::o;24962:577::-;25054:14;;25141:15;;;;25018:7;25141:15;;;:8;:15;;;;;;25186:7;;:32;;;;;25212:4;25186:32;;;2179:74:1;25018:7:0;;25054:14;25141:15;;25018:7;;25186;;;;:17;;2152:18:1;;25186:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25167:51;;25248:15;;25233:12;:30;:47;;;;-1:-1:-1;25267:13:0;;;25233:47;25229:238;;;25297:17;25352:11;;25333:15;;25318:12;:30;;;;:::i;:::-;25317:46;;;;:::i;:::-;25297:66;-1:-1:-1;25432:8:0;25413:16;25297:66;25425:4;25413:16;:::i;:::-;:27;;;;:::i;:::-;25386:69;;:5;:69;:::i;:::-;25378:77;;25282:185;25229:238;25516:15;;;;25485:12;;25508:4;;25485:20;;25500:5;;25485:20;:::i;:::-;:27;;;;:::i;:::-;25484:47;;;;:::i;:::-;25477:54;24962:577;-1:-1:-1;;;;;24962:577:0:o;24230:601::-;24286:15;;24270:12;:31;24266:70;;24230:601::o;24266:70::-;24365:7;;:32;;;;;24391:4;24365:32;;;2179:74:1;24346:16:0;;24365:7;;;:17;;2152:18:1;;24365:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24346:51;-1:-1:-1;24412:13:0;24408:97;;-1:-1:-1;24460:12:0;24442:15;:30;24230:601::o;24408:97::-;24577:17;24632:11;;24613:15;;24598:12;:30;;;;:::i;:::-;24597:46;;;;:::i;:::-;24577:66;;24654:30;24667:4;24674:9;24654:4;:30::i;:::-;24763:8;24744:16;:9;24756:4;24744:16;:::i;:::-;:27;;;;:::i;:::-;24712:14;;:70;;;;:::i;:::-;24695:14;:87;-1:-1:-1;;24811:12:0;24793:15;:30;24230:601::o;29139:375::-;29364:10;29202:4;29354:21;;;:9;:21;;;;;;:30;;29378:6;;29354:30;:::i;:::-;29340:10;29330:21;;;;:9;:21;;;;;;:54;;;;:21;29412:14;;;;;;:23;;29429:6;;29412:23;:::i;:::-;29395:14;;;;;;;:9;:14;;;;;;;:40;;;;29451:33;;29460:10;;29451:33;;;;29477:6;1492:25:1;;1480:2;1465:18;;1346:177;25758:671:0;25843:10;25810:21;25834:20;;;:8;:20;;;;;25865:8;:6;:8::i;:::-;25888:12;;:16;25884:188;;25921:15;25995:4;:15;;;25987:4;25969:14;;25953:4;:12;;;:31;;;;:::i;:::-;:38;;;;:::i;:::-;25952:58;;;;:::i;:::-;25921:89;;26025:35;26040:10;26052:7;26025:14;:35::i;:::-;25906:166;25884:188;26086:11;;26082:275;;26114:7;;:131;;;;;26161:10;26114:131;;;16803:34:1;26199:4:0;16853:18:1;;;16846:43;16905:18;;;16898:34;;;26114:7:0;;;;;:20;;16715:18:1;;26114:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;26275:12:0;;:22;;26290:7;;26275:22;:::i;:::-;26260:37;;26317:28;;1492:25:1;;;26325:10:0;;26317:28;;1480:2:1;1465:18;26317:28:0;;;;;;;26082:275;26400:14;;26385:12;;26417:4;;26385:29;;;:::i;:::-;:36;;;;:::i;:::-;26367:15;;;;:54;-1:-1:-1;25758:671:0:o;19912:2949::-;20052:14;;;20063:2;20052:14;;;;;;;;;19967:16;;19985:7;;;;19967:16;;19985:7;;20052:14;;;;;;;;-1:-1:-1;;20105:16:0;;;20119:1;20105:16;;;;;;;;20032:34;;-1:-1:-1;20077:25:0;;20105:16;;-1:-1:-1;20119:1:0;20105:16;;;;;;;;;;-1:-1:-1;20105:16:0;20077:44;;20132:11;20168:16;20159:4;20147:9;;:16;;;;:::i;:::-;20146:39;;;;:::i;:::-;20132:53;;20214:12;20261:3;20245:12;;20230;:27;;;;:::i;:::-;20229:35;;;;:::i;:::-;20291:9;;20334:15;;;20275:13;20334:15;;;:8;:15;;;;;;;;;20311:38;;;;;;;;;;;;;;;;;;;20364:9;;20214:50;;-1:-1:-1;20291:9:0;;20377:1;20364:14;20360:70;;;20403:15;:13;:15::i;:::-;20395:23;;20360:70;20449:9;;20440:3;20444:1;20440:6;;;;;;;;:::i;:::-;;;;;;:18;;;;;20478:15;;20469:3;20473:1;20469:6;;;;;;;;:::i;:::-;;;;;;:24;;;;;20513:12;;20504:3;20508:1;20504:6;;;;;;;;:::i;:::-;;;;;;:21;;;;;20599:19;;20590:3;20594:1;20590:6;;;;;;;;:::i;:::-;;;;;;:28;;;;;20699:5;20690:3;20694:1;20690:6;;;;;;;;:::i;:::-;;;;;;:14;;;;;20777;;20768:3;20772:1;20768:6;;;;;;;;:::i;:::-;;;;;;:23;;;;;20847:11;;20838:3;20842:1;20838:6;;;;;;;;:::i;:::-;;;;;;:20;;;;;20927:11;;20918:3;20922:1;20918:6;;;;;;;;:::i;:::-;;;;;;;;;;:20;21005:7;;20997:30;21005:7;20997:30;20993:1060;;21053:7;;:32;;;;;21079:4;21053:32;;;2179:74:1;21053:7:0;;;;;:17;;2152:18:1;;21053:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21044:3;21048:1;21044:6;;;;;;;;:::i;:::-;;;;;;;;;;:41;21130:7;;:24;;;;;:7;2197:55:1;;;21130:24:0;;;2179:74:1;21130:7:0;;;;:17;;2152:18:1;;21130:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21120:3;21124:2;21120:7;;;;;;;;:::i;:::-;;;;;;:34;;;;;21208:17;21219:5;21208:10;:17::i;:::-;21198:3;21202:2;21198:7;;;;;;;;:::i;:::-;;;;;;:27;;;;;21304:7;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21273:52;21274:8;21283:1;21274:11;;;;;;;;:::i;:::-;;;;;;21287:8;21296:1;21287:11;;;;;;;;:::i;:::-;;;;;;21273:52;;;;;;;;;;;;;;;;;;21425:8;:21;;;21447:7;21461:8;21470:1;21461:11;;;;;;;;:::i;:::-;;;;;;;21456:17;;21480:8;21489:1;21480:11;;;;;;;;:::i;:::-;;;;;;;21475:17;;21425:68;;;;;;;;;;;;;;;;18197:25:1;;;18253:2;18238:18;;18231:34;;;;18296:2;18281:18;;18274:34;18185:2;18170:18;;17969:345;21425:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21415:3;21419:2;21415:7;;;;;;;;:::i;:::-;;;;;;;;;;:78;21551:42;32529:20;32577:8;21528:514;;21638:26;21695:42;21638:101;;21782:10;21811;21853:6;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;21951:50:0;;;;;21973:7;21951:50;;;18197:25:1;21982:8:0;;;;18238:18:1;;;18231:34;21992:8:0;;18281:18:1;;;18274:34;21840:33:0;;-1:-1:-1;21840:33:0;-1:-1:-1;21951:8:0;:21;;;;;18170:18:1;;21951:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21940:3;21944:2;21940:7;;;;;;;;:::i;:::-;;;;;;:61;;;;;21597:445;;;21528:514;22074:12;22065:3;22069:1;22065:6;;;;;;;;:::i;:::-;;;;;;:21;;;;;22151:3;22141;22145:2;22141:7;;;;;;;;:::i;:::-;;;;;;:13;;;;;22228:4;22218:3;22222:2;22218:7;;;;;;;;:::i;:::-;;;;;;:14;;;;;22300:15;;22290:3;22294:2;22290:7;;;;;;;;:::i;:::-;;;;;;:25;;;;;22407:4;:12;;;22397:3;22401:2;22397:7;;;;;;;;:::i;:::-;;;;;;:22;;;;;22497:4;:15;;;22487:3;22491:2;22487:7;;;;;;;;:::i;:::-;;;;;;:25;;;;;22579:9;:16;22589:5;22579:16;;;;;;;;;;;;;;;;22569:3;22573:2;22569:7;;;;;;;;:::i;:::-;;;;;;;;;;;:26;;;;22661:21;;;:9;:21;;;;22651:7;;:3;;22655:2;;22651:7;;;;;;:::i;:::-;;;;;;;;;;;:31;;;;22755:5;;;;22737:25;;;;:9;:25;;;;;;;22727:7;;:3;;22731:2;;22727:7;;;;;;:::i;:::-;;;;;;;;;;:35;-1:-1:-1;;22825:7:0;;22834:8;;22820:3;;-1:-1:-1;22825:7:0;;;-1:-1:-1;22834:8:0;;-1:-1:-1;22844:8:0;;-1:-1:-1;;;19912:2949:0;;;;;:::o;31584:403::-;31756:15;;;31769:1;31756:15;;;;;;;;;31678;;;;31724:29;;31756:15;;;;;;;;;;;-1:-1:-1;31756:15:0;31724:47;;31816:4;31782:13;31796:1;31782:16;;;;;;;;:::i;:::-;:40;;;;;:16;;;;;;;;;;;:40;31867:16;;;31881:1;31867:16;;;;;;;;;31833:31;;31867:16;;;;;;;;;;;;-1:-1:-1;31867:16:0;31833:50;;31914:16;31925:4;31914:10;:16::i;:::-;31894:14;31909:1;31894:17;;;;;;;;:::i;:::-;;;;;;;;;;:36;31949:13;;;;-1:-1:-1;31584:403:0;-1:-1:-1;;;;31584:403:0:o;27216:309::-;27298:10;27265:21;27289:20;;;:8;:20;;;;;;27337:12;;27360:16;;;-1:-1:-1;27387:15:0;;:19;;;;27417:7;;:45;;;;;;;;10632:74:1;;;;10722:18;;;10715:34;;;27289:20:0;;27417:7;;;;:16;;10605:18:1;;27417:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;27478:37:0;;1492:25:1;;;27496:10:0;;27478:37;;1480:2:1;1465:18;27478:37:0;;;;;;;;27254:271;;27216:309::o;9297:114::-;5008:5;;;;4994:10;:19;4972:93;;;;;;;9259:2:1;4972:93:0;;;9241:21:1;9298:2;9278:18;;;9271:30;9337:26;9317:18;;;9310:54;9381:18;;4972:93:0;9057:348:1;4972:93:0;9374:15:::1;:29:::0;9297:114::o;18223:693::-;6999:7;;18271;;6999;;6985:10;:21;6963:93;;;;;;;12526:2:1;6963:93:0;;;12508:21:1;12565:2;12545:18;;;12538:30;12604:24;12584:18;;;12577:52;12646:18;;6963:93:0;12324:346:1;6963:93:0;18299:9:::1;;18312:1;18299:14;18291:43;;;::::0;::::1;::::0;;14831:2:1;18291:43:0::1;::::0;::::1;14813:21:1::0;14870:2;14850:18;;;14843:30;14909:18;14889;;;14882:46;14945:18;;18291:43:0::1;14629:340:1::0;18291:43:0::1;18391:18;:16;18408:1;18391:18;:::i;:::-;18368:19;;:42;;;;:::i;:::-;18353:12;:57;18345:86;;;::::0;::::1;::::0;;15176:2:1;18345:86:0::1;::::0;::::1;15158:21:1::0;15215:2;15195:18;;;15188:30;15254:18;15234;;;15227:46;15290:18;;18345:86:0::1;14974:340:1::0;18345:86:0::1;5269:4;18450:11;;:25;;18442:56;;;::::0;::::1;::::0;;18521:2:1;18442:56:0::1;::::0;::::1;18503:21:1::0;18560:2;18540:18;;;18533:30;18599:20;18579:18;;;18572:48;18637:18;;18442:56:0::1;18319:342:1::0;18442:56:0::1;18531:12;18509:19;:34:::0;18572:11:::1;::::0;18554:15:::1;::::0;18572::::1;::::0;18586:1:::1;::::0;18572:15:::1;:::i;:::-;18554:33;;18616:19;18652:7;18638:11;;:21;;;;:::i;:::-;18616:43;;5269:4;18674:11;:24;18670:130;;;5269:4;18725:11;;:24;;;;:::i;:::-;18715:34;;5269:4;18764:24;;18670:130;18810:11;:25:::0;;;18851:32:::1;::::0;;1954:25:1;;;2010:2;1995:18;;1988:34;;;18851:32:0::1;::::0;1927:18:1;18851:32:0::1;1780:248:1::0;15051:1356:0;15133:11;15166:16;15159:4;15147:9;;:16;;;;:::i;:::-;:35;;;;:::i;:::-;15133:49;;15217:12;15264:3;15248:12;;15233;:27;;;;:::i;:::-;15232:35;;;;:::i;:::-;15217:50;;15282:15;;15300:1;15282:19;;:46;;;;;15324:4;15305:15;;:23;;15282:46;15278:1122;;;15429:4;15411:15;;:22;;;;:::i;:::-;15393:15;:40;15473:25;15486:4;15493;15473;:25::i;:::-;15560:27;;1492:25:1;;;15570:10:0;;15560:27;;1480:2:1;1465:18;15560:27:0;1346:177:1;15278:1122:0;15650:22;15682:15;;15675:4;:22;;;;:::i;:::-;15650:47;;15748:36;15761:4;15768:15;;15748:4;:36::i;:::-;15857:15;;15835:38;;1492:25:1;;;15845:10:0;;15835:38;;1480:2:1;1465:18;15835:38:0;;;;;;;15900:1;15888:9;:13;16001:1;15983:15;:19;16030:7;;16017:36;;16030:7;;16047:4;16017:12;:36::i;:::-;16126:7;:23;;;;16144:4;16126:23;;;16230:32;16235:10;16247:14;16230:4;:32::i;:::-;16348:40;;1492:25:1;;;16361:10:0;;16348:40;;1480:2:1;1465:18;16348:40:0;1346:177:1;15278:1122:0;15080:1327;;15051:1356::o;27720:375::-;27829:4;27794:14;27811:24;;;:9;:24;;;;;;27850:16;;;27846:65;;;27893:6;27883:16;;27846:65;27966:4;27948:24;;;;:9;:24;;;;;;:34;;27975:7;;27948:34;:::i;:::-;27939:4;27921:24;;;;:9;:24;;;;;;:61;;;;:24;28010:14;;;;;;:24;;28027:7;;28010:24;:::i;:::-;27993:14;;;;;;;:9;:14;;;;;;;:41;;;;28050:37;;28067:4;;28050:37;;;;28079:7;1492:25:1;;1480:2;1465:18;;1346:177;28050:37:0;;;;;;;;27783:312;27720:375;;:::o;19041:589::-;19089:7;19134:9;19296:18;19280:12;;19265;:27;19159:2;19147:9;;:14;;;;;:::i;:::-;;19146:147;:168;;;;;:::i;:::-;;19134:180;;19337:9;;19333:1;:13;19329:127;;;5120:4;19424:16;;;19041:589;:::o;19329:127::-;19486:9;;:13;;;5120:4;19518:17;;19514:75;;;-1:-1:-1;5120:4:0;19514:75;19606:5;19041:589;-1:-1:-1;;19041:589:0:o;28335:213::-;28419:16;;;;;;;:9;:16;;;;;;:26;;28438:7;;28419:26;:::i;:::-;28400:16;;;;;;;:9;:16;;;;;:45;;;;28469:11;:21;;28483:7;;28469:21;:::i;:::-;28455:11;:35;;;28505:36;;1492:25:1;;;28505:36:0;;;;;;1480:2:1;1465:18;28505:36:0;;;;;;;;28335:213;;:::o;12952:433::-;13065:12;13061:51;;12952:433;;:::o;13061:51::-;13167:4;13149:24;;;;:9;:24;;;;;;:34;;13176:7;;13149:34;:::i;:::-;13140:4;13122:24;;;;:9;:24;;;;;;:61;;;;:24;13211:14;;;;;;:24;;13228:7;;13211:24;:::i;:::-;13194:14;;;;;;;:9;:14;;;;;;;:41;;;;13251:37;;13268:4;;13251:37;;;;13280:7;1492:25:1;;1480:2;1465:18;;1346:177;13455:175:0;13546:7;13535:18;;:7;:18;;;13531:92;;13570:41;;;;;:20;16821:15:1;;;13570:41:0;;;16803:34:1;16873:15;;;16853:18;;;16846:43;13609:1:0;16905:18:1;;;16898:34;13570:7:0;:20;;;;16715:18:1;;13570:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13455:175;;:::o;28685:281::-;28757:17;;;28749:61;;;;;;;19279:2:1;28749:61:0;;;19261:21:1;19318:2;19298:18;;;19291:30;19357:33;19337:18;;;19330:61;19408:18;;28749:61:0;19077:355:1;28749:61:0;28849:7;28835:11;;:21;;;;:::i;:::-;28821:11;:35;;;28884:14;;;;;:9;:14;;;;;;:24;;28901:7;;28884:24;:::i;:::-;28867:14;;;;;;;:9;:14;;;;;;:41;;;;28924:34;;28867:14;;;28924:34;;;;28950:7;1492:25:1;;1480:2;1465:18;;1346:177;14:656;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;761:42;754:5;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1528:247::-;1587:6;1640:2;1628:9;1619:7;1615:23;1611:32;1608:52;;;1656:1;1653;1646:12;1608:52;1695:9;1682:23;1714:31;1739:5;1714:31;:::i;:::-;1764:5;1528:247;-1:-1:-1;;;1528:247:1:o;2264:456::-;2341:6;2349;2357;2410:2;2398:9;2389:7;2385:23;2381:32;2378:52;;;2426:1;2423;2416:12;2378:52;2465:9;2452:23;2484:31;2509:5;2484:31;:::i;:::-;2534:5;-1:-1:-1;2591:2:1;2576:18;;2563:32;2604:33;2563:32;2604:33;:::i;:::-;2264:456;;2656:7;;-1:-1:-1;;;2710:2:1;2695:18;;;;2682:32;;2264:456::o;2725:180::-;2784:6;2837:2;2825:9;2816:7;2812:23;2808:32;2805:52;;;2853:1;2850;2843:12;2805:52;-1:-1:-1;2876:23:1;;2725:180;-1:-1:-1;2725:180:1:o;3099:454::-;3194:6;3202;3210;3218;3226;3279:3;3267:9;3258:7;3254:23;3250:33;3247:53;;;3296:1;3293;3286:12;3247:53;-1:-1:-1;;3319:23:1;;;3389:2;3374:18;;3361:32;;-1:-1:-1;3440:2:1;3425:18;;3412:32;;3491:2;3476:18;;3463:32;;-1:-1:-1;3542:3:1;3527:19;3514:33;;-1:-1:-1;3099:454:1;-1:-1:-1;3099:454:1:o;4097:594::-;4192:6;4200;4208;4216;4224;4277:3;4265:9;4256:7;4252:23;4248:33;4245:53;;;4294:1;4291;4284:12;4245:53;4330:9;4317:23;4307:33;;4390:2;4379:9;4375:18;4362:32;4403:31;4428:5;4403:31;:::i;:::-;4453:5;-1:-1:-1;4510:2:1;4495:18;;4482:32;4523:33;4482:32;4523:33;:::i;:::-;4097:594;;;;-1:-1:-1;4575:7:1;;4629:2;4614:18;;4601:32;;-1:-1:-1;4680:3:1;4665:19;4652:33;;4097:594;-1:-1:-1;;4097:594:1:o;4696:435::-;4749:3;4787:5;4781:12;4814:6;4809:3;4802:19;4840:4;4869:2;4864:3;4860:12;4853:19;;4906:2;4899:5;4895:14;4927:1;4937:169;4951:6;4948:1;4945:13;4937:169;;;5012:13;;5000:26;;5046:12;;;;5081:15;;;;4973:1;4966:9;4937:169;;;-1:-1:-1;5122:3:1;;4696:435;-1:-1:-1;;;;;4696:435:1:o;5136:1034::-;5449:3;5438:9;5431:22;5412:4;5476:57;5528:3;5517:9;5513:19;5505:6;5476:57;:::i;:::-;5552:2;5602:42;5594:6;5590:55;5585:2;5574:9;5570:18;5563:83;5682:6;5677:2;5666:9;5662:18;5655:34;5737:9;5729:6;5725:22;5720:2;5709:9;5705:18;5698:50;5768:6;5803;5797:13;5834:6;5826;5819:22;5869:2;5861:6;5857:15;5850:22;;5907:2;5899:6;5895:15;5881:29;;5928:1;5938:206;5952:6;5949:1;5946:13;5938:206;;;6017:13;;6032:30;6013:50;6001:63;;6119:15;;;;6084:12;;;;5974:1;5967:9;5938:206;;;-1:-1:-1;6161:3:1;;5136:1034;-1:-1:-1;;;;;;;;;5136:1034:1:o;6175:383::-;6252:6;6260;6268;6321:2;6309:9;6300:7;6296:23;6292:32;6289:52;;;6337:1;6334;6327:12;6289:52;6373:9;6360:23;6350:33;;6433:2;6422:9;6418:18;6405:32;6446:31;6471:5;6446:31;:::i;6563:870::-;6846:2;6858:21;;;6928:13;;6831:18;;;6950:22;;;6798:4;;7025;;7003:2;6988:18;;;7052:15;;;6798:4;7095:218;7109:6;7106:1;7103:13;7095:218;;;7174:13;;7189:42;7170:62;7158:75;;7253:12;;;;7288:15;;;;7131:1;7124:9;7095:218;;;7099:3;;;7358:9;7353:3;7349:19;7344:2;7333:9;7329:18;7322:47;7386:41;7423:3;7415:6;7386:41;:::i;:::-;7378:49;6563:870;-1:-1:-1;;;;;;6563:870:1:o;7438:388::-;7506:6;7514;7567:2;7555:9;7546:7;7542:23;7538:32;7535:52;;;7583:1;7580;7573:12;7535:52;7622:9;7609:23;7641:31;7666:5;7641:31;:::i;:::-;7691:5;-1:-1:-1;7748:2:1;7733:18;;7720:32;7761:33;7720:32;7761:33;:::i;:::-;7813:7;7803:17;;;7438:388;;;;;:::o;8605:184::-;8657:77;8654:1;8647:88;8754:4;8751:1;8744:15;8778:4;8775:1;8768:15;8794:125;8834:4;8862:1;8859;8856:8;8853:34;;;8867:18;;:::i;:::-;-1:-1:-1;8904:9:1;;8794:125::o;8924:128::-;8964:3;8995:1;8991:6;8988:1;8985:13;8982:39;;;9001:18;;:::i;:::-;-1:-1:-1;9037:9:1;;8924:128::o;9757:228::-;9797:7;9923:1;9855:66;9851:74;9848:1;9845:81;9840:1;9833:9;9826:17;9822:105;9819:131;;;9930:18;;:::i;:::-;-1:-1:-1;9970:9:1;;9757:228::o;9990:184::-;10042:77;10039:1;10032:88;10139:4;10136:1;10129:15;10163:4;10160:1;10153:15;10179:274;10219:1;10245;10235:189;;10280:77;10277:1;10270:88;10381:4;10378:1;10371:15;10409:4;10406:1;10399:15;10235:189;-1:-1:-1;10438:9:1;;10179:274::o;10760:277::-;10827:6;10880:2;10868:9;10859:7;10855:23;10851:32;10848:52;;;10896:1;10893;10886:12;10848:52;10928:9;10922:16;10981:5;10974:13;10967:21;10960:5;10957:32;10947:60;;11003:1;11000;10993:12;11732:251;11802:6;11855:2;11843:9;11834:7;11830:23;11826:32;11823:52;;;11871:1;11868;11861:12;11823:52;11903:9;11897:16;11922:31;11947:5;11922:31;:::i;16351:184::-;16421:6;16474:2;16462:9;16453:7;16449:23;16445:32;16442:52;;;16490:1;16487;16480:12;16442:52;-1:-1:-1;16513:16:1;;16351:184;-1:-1:-1;16351:184:1:o;17132:::-;17184:77;17181:1;17174:88;17281:4;17278:1;17271:15;17305:4;17302:1;17295:15;17321:188;17400:13;;17453:30;17442:42;;17432:53;;17422:81;;17499:1;17496;17489:12;17422:81;17321:188;;;:::o;17514:450::-;17601:6;17609;17617;17670:2;17658:9;17649:7;17645:23;17641:32;17638:52;;;17686:1;17683;17676:12;17638:52;17709:40;17739:9;17709:40;:::i;:::-;17699:50;;17768:49;17813:2;17802:9;17798:18;17768:49;:::i;:::-;17758:59;;17860:2;17849:9;17845:18;17839:25;17904:10;17897:5;17893:22;17886:5;17883:33;17873:61;;17930:1;17927;17920:12;17873:61;17953:5;17943:15;;;17514:450;;;;;:::o

Swarm Source

ipfs://d4c6a9aefdfe889ae4ba6529f5e0b60f529b3e11c35a23c3e4efce1642c63db9
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.