ETH Price: $3,398.40 (-2.15%)
Gas: 6 Gwei

Token

Ret↵rn (↵)
 

Overview

Max Total Supply

975

Holders

357

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 ↵
0x0000000000000000000000000000000000000000
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:
Ret_rn

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 9999999 runs

Other Settings:
default evmVersion
File 1 of 2 : Ret_rn.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import {
    ERC721A,
    IENS,
    IResolver,
    IENSReverseRegistrar,
    Base64,
    Strings,
    DataContract
} from "./dependencies.sol";

/**
 * @title Ret↵rn
 * @author 0age
 * @notice Generative audiovisual art where all metadata is stored and rendered
 *         onchain. Each musical work is minted in an unrevealed state over an
 *         open, 3 day window from deployment. After the mint phase ends,
 *         entropy is sourced from both a future block and a commited preimage
 *         and used to finalize metadata and reveal the end state of each minted
 *         work. Warning: flashing imagery & audio present.
 */
contract Ret_rn is ERC721A {
    using DataContract for address;
    using Base64 for bytes;
    using Strings for address;
    using Strings for uint256;

    /**
     * @dev Emit an event once the reveal phase has been finalized indicating
     *      that token metadata has been updated.
     *
     * @param fromTokenId The first tokenId (0).
     * @param toTokenId   The last tokenId (totalSupply - 1).
     */
    event BatchMetadataUpdate(uint256 fromTokenId, uint256 toTokenId);

    /**
     * @dev Emit an event when the reveal phase has been prepared, including
     *      the range of block numbers during which the reveal can be performed.
     *      If the reveal phase is not conducted during this window, owners of
     *      unrevealed tokens are able to burn their tokens to receive a refund
     *      of the mint price.
     *
     * @param firstAvailableRevealBlockNumber The first block number during
     *                                        which the reveal can be performed.
     * @param lastAvailableRevealBlockNumber  The last block number during which
     *                                        the reveal can be performed.
     */
    event Prepare(
        uint256 firstAvailableRevealBlockNumber,
        uint256 lastAvailableRevealBlockNumber
    );

    /**
     * @dev Emit an event when the reveal phase has been completed, displaying
     *      the finalized seed and maximum supply.
     *
     * @param finalizedSeed           The finalized seed set during the reveal.
     * @param finalizedMaximumSupply  The maximum post-reveal token supply.
     */
    event Reveal(bytes32 finalizedSeed, uint256 finalizedMaximumSupply);

    /**
     * @dev Revert with an error if attempting to mint tokens after the
     *      minting phase has been completed.
     */
    error MintCompleted();

    /**
     * @dev Revert with an error if attempting to retrieve a seed for a token
     *      prior to completion of the reveal phase.
     */
    error PreReveal();

    /**
     * @dev Revert with an error if attempting to prepare the reveal phase
     *      before the minting phase has been completed.
     */
    error MintPhaseNotComplete();

    /**
     * @dev Revert with an error if attempting to prepare the reveal phase
     *      multiple times.
     */
    error RevealAlreadyPrepared();

    /**
     * @dev Revert with an error if attempting to conduct the reveal phase
     *      before it has been prepared.
     */
    error RevealNotPrepared();

    /**
     * @dev Revert with an error if attempting to conduct the reveal phase
     *      before the prepared block number has been reached.
     */
    error RevealNotReady();

    /**
     * @dev Revert with an error if attempting to conduct the reveal phase
     *      after the block hash for the prepared block number is no longer
     *      accessible.
     */
    error RevealExpired();

    /**
     * @dev Revert with an error if block entropy used during the reveal phase
     *      is not available.
     */
    error RandomnessNotAvailable();

    /**
     * @dev Revert with an error if attempting to conduct the reveal phase
     *      multiple times.
     */
    error AlreadyRevealed();

    /**
     * @dev Revert with an error if the commit message provided during the
     *      reveal phase does not match the original commit hash.
     */
    error InvalidCommitMessage();

    /**
     * @dev Revert with an error if Ξ0.05 per minted token was not supplied.
     */
    error InvalidMintValue();

    /**
     * @dev Revert with an error if a refund attempt during token burning fails.
     */
    error BurnRefundFailed();

    /**
     * @dev Revert with an error if payment portion of the reveal phase fails.
     */
    error FinalizationFailed();

    /**
     * @dev Revert with an error if `prepareReveal` or `reveal` are called by an
     *      account other than the author as indicated by their ENS record.
     */
    error Unauthorized();

    /**
     * @dev Represent various attributes of a given token as a group of strings.
     */
    struct Attributes {
        string seed;
        string tempo;
        string vibe;
        string root;
        string style;
        string arrow;
        string color;
        string tone;
        string creator;
    }

    // Declare the core ENS registry contract.
    IENS private constant ens = IENS(
        0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e
    );

    // Declare a commit hash that will be used to verify a respective message
    // during the reveal phase before incorporating said message as a component
    // of the final global seed.
    bytes32 private constant commit = bytes32(
        0xdf1b8bdd0db9449895571155d1e7d8ba0b5891111de4164a8ebe2760472961b5
    );

    // Declare an immutable variable representing the time when minting ends.
    uint256 public immutable mintComplete;

    // Declare an immutable variable representing the ENS node for the author.
    bytes32 private immutable authorNode;

    // Declare an immutable variable representing the address of a data
    // contract containing metadata rendering logic.
    address private immutable dataContract;

    // Declare a mapping of token IDs to their respective creators. Note that
    // in instances where a multiple tokens are minted at once, only the first
    // token ID is recorded; when determining the creator of a token with a
    // given ID where a non-zero account value is held in the mapping, the
    // tokenId should be decremented until a non-zero account is located.
    mapping (uint256 => address) private _creators;

    // Declare a state variable representing the global seed. This value is
    // set upon completion of the reveal phase and is used as a component of
    // metadata generation for each token.
    bytes32 public globalSeed;

    // Declare a state variable representing the block number committed to
    // when preparing the reveal phase. The PREVRANDAO value (if available)
    // or the block hash of this block number is used as a component of the
    // final global seed.
    uint256 public revealEntropyBlockNumber;

    /**
     * @dev On contract creation, assign authorship via an ENS name hash,
     *      set the ENS reverse registrar name for this contract, deploy
     *      a new data contract containing rendering logic, and set the
     *      timestamp at which the initial mint phase completes.
     */
    constructor() {
        // Define the authorNode using the ENS name hash of "0age.eth".
        authorNode = keccak256(abi.encodePacked(
            keccak256(abi.encodePacked(
                bytes32(0),
                keccak256(abi.encodePacked("eth"))
            )),
            keccak256(abi.encodePacked("0age"))
        ));

        // Derive the ENS reverse registrar node using "reverse.ens.eth".
        bytes32 reverseRegistrarNode = keccak256(abi.encodePacked(
            keccak256(abi.encodePacked(
                keccak256(abi.encodePacked(
                    bytes32(0),
                    keccak256(abi.encodePacked("eth"))
                )),
                keccak256(abi.encodePacked("ens"))
            )),
            keccak256(abi.encodePacked("reverse"))
        ));

        // Instantiate the ENS reverse registrar.
        IENSReverseRegistrar ensReverseRegistrar = IENSReverseRegistrar(
            ens.resolver(reverseRegistrarNode).addr(reverseRegistrarNode)
        );

        // Set the name for the ENS reverse registrar.
        ensReverseRegistrar.setName(unicode"ret↩️rn.eth");

        // Declare the initialization code for the data contract containing
        // the rendering logic. The data is prepended with a header that places
        // a single `INVALID` opcode followed by the data in runtime during
        // contract creation.
        bytes memory initCode = abi.encodePacked
            (bytes12(0x600b5981380380925939f3fe),
            '<!doctypehtml><title>Ret&#8629;rn</title><meta content=0age name=author><link href="data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iYmxhY2siIC8+CiAgPHRleHQgeD0iNTElIiB5PSI2MCUiIGZvbnQtc2l6ZT0iMTEwIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJsaWdodGdyYXkiIGRvbWluYW50LWJhc2VsaW5lPSJjZW50cmFsIiBmb250LWZhbWlseT0iQXJpYWwiPiYjODYyOTs8L3RleHQ+Cjwvc3ZnPg=="rel=icon type=image/svg+xml><style>body{background-color:#000;height:100%;width:100%;margin:0;padding:0;overflow:hidden}button{height:100vh;width:100vw;position:relative;display:flex;align-items:center;justify-content:center;background:0 0;border:none}#e{position:absolute;top:50%;left:50%;font-size:clamp(1em,51vw,500px);transform:translate(-50%,-50%);color:#d3d3d3}</style><button id=_><span id=e></span></button><script>var seed="0x8a0a40912f2627d9cc3f37b4933f0f15670c5220610e593685634b852482dfdd",sy=[8629,8601,8629,8604,8617,8629,8647,8656,8629,8676,8678,8629,9166,8629,9664,10550];function germinate(e){var $,t=parseInt(e.slice(2,4),16),_=parseInt(e.slice(64),16),n=(t+192)%128+64,i=[2,3,4,6][parseInt(e.slice(4,5),16)>>2],c=[2,3,4,2][parseInt(e.slice(4,5),16)%4],l=[2,3,4,6][parseInt(e.slice(5,6),16)>>2],r=[2,3,4,2][parseInt(e.slice(5,6),16)%4],o=[41.2,43.65,46.25,49,51.91,55,58.27,61.74,65.41,69.3,73.42,77.78,82.41,87.31,92.5,98][parseInt(e.slice(6,7),16)],f=[-2,0,-2,0,3,3,7,10,12,12,12,15.05,15.05,19.1,19.1,24.1][parseInt(e.slice(7,8),16)],u=[3,12,-2,0,3,3,5,7,10,10,12,15.05,15.05,17.05,19.1,24.1][parseInt(e.slice(8,9),16)],p=[-2,0,-2,0,3,5,7,10,12,12,15.05,15.05,12,19.1,24.1,12][parseInt(e.slice(9,10),16)],b=[[8,3],[8,5],[16,5],[16,7],[16,9],[16,10],[16,11],[16,13]],m=_e(_d(...b[parseInt(e.slice(10,11),16)>>1]),t),T=_e(_d(...b[parseInt(e.slice(11,12),16)>>1]),_),g=[[f],[f,u],[f,u,p],[f,f,u,p],[f,u,p,f],[f,u,u,f,p],[f,u,f,f,u],[f,u,0,p,0],[f,0],[f,u,0],[f,0,u,p,0],[0,f,f,0,u],[0,f,u,f,u,p],[0,f,u,u,0,f],[0,f,u,f,f,u],[f,0,0,f,0,u],][parseInt(e.slice(12,13),16)],A=[[0,1,1],[0,1],[0,2],[1,0],[1,2],[2,0,1],[2,1,1],[0,1,0,2],[2,0],[2,1,2],[0,2,1],[0,1,0],[1,2,2],[0,0,1],[0,1,2],[0,0,1,2]][parseInt(e.slice(13,14),16)],v=parseInt(e.slice(14,15),16)>>2,V=parseInt(e.slice(14,15),16)%4+3,y=parseInt(e.slice(15,16),16)>>2,h=parseInt(e.slice(15,16),16)%4+3,q=parseInt(e.slice(16,17),16),R=parseInt(e.slice(17,18),16)>>2,x=parseInt(e.slice(17,18),16)%4,B=sy[parseInt(e.slice(18,19),16)],k=2+parseInt(e.slice(19,20),16),G=parseInt(e.slice(20,22),16),E=parseInt(e.slice(22,23),16),w=4>parseInt(e.slice(23,25),16)?parseInt(e.slice(23,25),16):0,C=15===parseInt(e.slice(25,26),16);return G<189?$="#000000":G<205?$="#ffffff":G<221?$="#ff0000":G<237?$="#00ff00":G<253?$="#0000ff":G<254?($="#ffff00",_f()):G<255?($="#ff00ff",_f()):($="#00ffff",_f()),document.getElementById("e").innerHTML="&#"+B+";",_g($),{seed:e,t:n,b:60/n,p:i,e1:c,e2:l,e3:r,f:o,r1:m,r2:T,fb:t,lb:_,x2:t>>7==1&&n<145,e1s:v,e1i:V,e2s:y,q:g,oq:A,e2i:h,e3s:R,e4s:x,d:q,u:B,sq:k,sk:G,sc:$,sz:E,bt:w,h:C}}function _d(e,$){var t=[],_=[],n=[],i=e-$,c=0;for(n.push($);_.push(Math.floor(i/n[c])),n.push(i%n[c]),i=n[c],!(n[c+=1]<=1););return _.push(i),!function e($){if(-1===$)t.push(!1);else if(-2===$)t.push(!0);else{for(var i=0;i<_[$];i++)e($-1);0!==n[$]&&e($-2)}}(c),t}function _e(e,$){return $%=e.length,e.slice($).concat(e.slice(0,$))}function _f(){document.getElementById("_").style.color="#ffffff"}function _g(e){document.body.style.backgroundColor=e}let lc="#ff0000",sx=parseInt(seed.slice(18,19),16),cx=0;function _h(e,$,t,_=1){let n=lc;lc="#00ff00"===lc?"#0000ff":"#0000ff"===lc?"#ff0000":"#00ff00";var i=setInterval(function(){$.currentTime>=e+.05&&(_g(n),document.getElementById("_").style.color="lightgray",(cx+=_)>=t.sq&&(cx=0),0===cx&&(sx=(sx+t.sz)%sy.length,document.getElementById("e").innerHTML="&#"+sy[sx]+";"),clearInterval(i))},50)}function _i(e,$){return e*Math.pow(2,$/12)}function _j(e,$,t,_,n,i,c,l,r,o=1){t.forEach(({oscillator:t,harmonic:f,volume:u})=>{var p=_*f;t.frequency.setValueAtTime(p,i),t.frequency.setValueAtTime(p,c),t.frequency.linearRampToValueAtTime(n*f,l);var b=$.createGain();b.gain.setValueAtTime(.001,i),b.gain.linearRampToValueAtTime(.25*u*o,i+.01),b.gain.linearRampToValueAtTime(.3*u*o,i+r-.005),b.gain.linearRampToValueAtTime(0,i+r),t.connect(b),b.connect(e),t.start(i),t.stop(i+r),t.onended=function(){b.disconnect(e),t.disconnect(b)}})}function _k(e,$,t,_,n,i,c,l,r,o){t.forEach(({oscillator:t,harmonic:f,volume:u})=>{var p=$.createGain(),b=$.createGain();t.frequency.setValueAtTime(_*f,r),p.gain.setValueAtTime(n*u,r),b.gain.setValueAtTime(i*u,r),p.gain.linearRampToValueAtTime(c*u,r+o),b.gain.linearRampToValueAtTime(l*u,r+o);var m=$.createDelay();m.delayTime.setValueAtTime(.04,r),t.connect(p),t.connect(m),p.connect(e),b.connect(e),t.start(r),t.stop(r+o),t.onended=function(){p.disconnect(e),b.disconnect(e),t.disconnect(),m.disconnect()}})}function _l(e,$,t,_,n,i,c,l,r,o){t.forEach(({oscillator:t,harmonic:f,volume:u})=>{var p=_*f;t.frequency.setValueAtTime(p,c),t.frequency.setValueAtTime(p,c+o);var b=$.createGain();b.gain.setValueAtTime(1e-4*u,c),b.gain.linearRampToValueAtTime(.4*u,c+.01),b.gain.linearRampToValueAtTime(.3*u,c+o-.05),b.gain.linearRampToValueAtTime(.1*u,c+o-.02),b.gain.exponentialRampToValueAtTime(.001*u,c+o);var m=$.createBiquadFilter();m.type="lowpass",m.frequency.setValueAtTime(n,c),m.frequency.setValueAtTime(n,l),m.frequency.linearRampToValueAtTime(i,r),t.connect(m),m.connect(b),b.connect(e),t.start(c),t.stop(c+o),t.onended=function(){b.disconnect(e),m.disconnect(b),t.disconnect(m)}})}function _m(e,$,t,_,n,i,c,l=!1){let r=i/c;t.forEach(({oscillator:t,harmonic:o,volume:f})=>{var u=_*o;t.frequency.setValueAtTime(u,n),t.frequency.setValueAtTime(u,n+i);var p=$.createGain();p.gain.setValueAtTime(1e-4*f,n);for(let b=0;b<c;++b){let m=l?(b+1)/(3*c/2):1,T=n+r*b;p.gain.setValueAtTime(1e-4*f,T),p.gain.linearRampToValueAtTime(.15*f*m*c/2,T+.01),p.gain.exponentialRampToValueAtTime(.075*f*m*c/2,T+3*r/4-.05),p.gain.linearRampToValueAtTime(.001*f,T+3*r/4),p.gain.linearRampToValueAtTime(.001*f,T+r-.02)}p.gain.exponentialRampToValueAtTime(.001*f,n+i),t.connect(p),p.connect(e),t.start(n),t.stop(n+i),t.onended=function(){p.disconnect(e),t.disconnect(p)}})}function _n(e,$,t,_,n,i,c){c<4&&(c*=2);let l=[0,12,19,24,31,36,0,12,19,24,31,36],r=i/c;t.forEach(({oscillator:t,harmonic:o,volume:f})=>{var u=_*o;t.frequency.setValueAtTime(u,n);var p=$.createGain();p.gain.setValueAtTime(1e-4*f,n);for(let b=0;b<c;++b){let m=n+r*b;t.frequency.setValueAtTime(_i(u,l[b]),m),p.gain.setValueAtTime(1e-4*f,m),p.gain.linearRampToValueAtTime(.13*f*(12-b)/12,m+.01),p.gain.exponentialRampToValueAtTime(.065*f*(12-b)/12,m+7*r/8-.05),p.gain.linearRampToValueAtTime(.001*f,m+7*r/8),p.gain.linearRampToValueAtTime(.001*f,m+r-.02)}p.gain.exponentialRampToValueAtTime(.001*f,n+i),t.connect(p),p.connect(e),t.start(n),t.stop(n+i),t.onended=function(){p.disconnect(e),t.disconnect(p)}})}function _o(e,$,t,_,n,i,c,l,r,o,f=1){t.forEach(({oscillator:t,harmonic:u,volume:p})=>{var b=_*u;t.frequency.setValueAtTime(b,c),t.frequency.setValueAtTime(b,c+o);var m=$.createGain();m.gain.setValueAtTime(.15*p*f,c),m.gain.linearRampToValueAtTime(.25*p*f,c+o-.005),m.gain.linearRampToValueAtTime(0,c+o);var T=$.createBiquadFilter();T.type="highpass",T.frequency.setValueAtTime(n,c),T.frequency.setValueAtTime(n,l),T.frequency.linearRampToValueAtTime(i,r),t.connect(T),T.connect(m),m.connect(e),t.start(c),t.stop(c+o),t.onended=function(){m.disconnect(e),T.disconnect(m),t.disconnect(T)}})}function _p(e,$,t,_=1){var n=$.createOscillator(),i=$.createGain();n.connect(i),i.connect(e),n.frequency.setValueAtTime(130,t),n.frequency.exponentialRampToValueAtTime(30,t+.2);var c=t+.01;i.gain.setValueAtTime(.7*_,t),i.gain.setValueAtTime(.7*_,c),i.gain.exponentialRampToValueAtTime(.001*_,t+.2),n.start(t),n.stop(t+.2);var l=$.createOscillator(),r=$.createGain();l.connect(r),r.connect(e),l.frequency.setValueAtTime(65,t),l.frequency.exponentialRampToValueAtTime(15,t+.2),r.gain.setValueAtTime(.25,t),r.gain.setValueAtTime(.2,c),r.gain.exponentialRampToValueAtTime(.001,t+.2),l.start(t),l.stop(t+.2);for(var o=t,f=$.sampleRate,u=$.createBuffer(1,f,$.sampleRate),p=u.getChannelData(0),b=0;b<f;b++)p[b]=2*Math.random()-1;var m=$.createBufferSource();m.buffer=u;var T=$.createGain();m.connect(T),T.connect(e),T.gain.setValueAtTime(.2,o),T.gain.setValueAtTime(.1,o+.01),T.gain.exponentialRampToValueAtTime(.001,o+.1),m.start(o),m.stop(o+.1);var g=setInterval(function(){$.currentTime>=t&&(_g("#000000"),clearInterval(g))},25)}function _q(e,$,t){for(var _=$.sampleRate,n=$.createBuffer(1,_,$.sampleRate),i=n.getChannelData(0),c=0;c<_;c++)i[c]=2*Math.random()-1;var l=$.createBufferSource();l.buffer=n;var r=$.createBiquadFilter();r.type="highpass",r.frequency.value=6e3;var o=$.createGain();l.connect(r),r.connect(o),o.connect(e),o.gain.setValueAtTime(.1,t),o.gain.exponentialRampToValueAtTime(.001,t+.08),l.start(t),l.stop(t+.08)}function _s(e,$,t,_,n=!1){for(var i=$.sampleRate,c=$.createBuffer(1,i,$.sampleRate),l=c.getChannelData(0),r=0;r<i;r++)l[r]=2*Math.random()-1;var o=$.createBufferSource();o.buffer=c;var f=$.createBiquadFilter();f.type="highpass",f.frequency.value=n?7e3:5500;var u=$.createGain();o.connect(f),f.connect(u),u.connect(e);var p=n?.1:.15;u.gain.setValueAtTime(p,t),u.gain.setValueAtTime(n?0:p,t+.05),o.start(t),o.stop(t+_)}function _t(e,$,t){for(var _=$.sampleRate,n=$.createBuffer(1,_,$.sampleRate),i=n.getChannelData(0),c=0;c<_;c++)i[c]=2*Math.random()-1;var l=$.createBufferSource();l.buffer=n;var r=$.createBiquadFilter();r.type="highpass",r.frequency.value=3500;var o=$.createGain();l.connect(r),r.connect(o),o.connect(e),t-=.2,o.gain.setValueAtTime(.001,t),o.gain.exponentialRampToValueAtTime(.07,t+.2),l.start(t),l.stop(t+.2)}function _u(e,$,t){for(var _=$.createBufferSource(),n=$.createBuffer(1,$.sampleRate/10,$.sampleRate),i=$.createGain(),c=n.getChannelData(0),l=0;l<c.length;l++)c[l]=2*Math.random()-1;_.buffer=n,_.connect(i),i.connect(e),i.gain.setValueAtTime(.4,t),i.gain.exponentialRampToValueAtTime(.2,t+.01),i.gain.exponentialRampToValueAtTime(.01,t+.2),_.start(t),_.stop(t+.2);var r=setInterval(function(){$.currentTime>=t&&(_g("#ffffff"),clearInterval(r))},25)}function _v(e){return function($){return e.map(([e,t,_])=>{var n=$.createOscillator();return n.type=["sine","triangle","square","sawtooth"][e],{oscillator:n,harmonic:t,volume:_}})}}const d=[[[3,1,.2],[2,3,.03],[1,6,.1]],[[0,1,1],[2,1,.4],[1,2,.15],[3,4,.15]],[[1,1,1],[0,2,.3],[0,3,.06],[3,3,.02],[3,6,.01]],[[0,1,1],[3,1,.03],[1,2,.025],[0,4,.016],[1,4,.008],[1,8,.002]],[[3,1,1],[1,2,.6],[3,4.75,.15],[0,6,.2],[3,9.5,.05],[3,8,.1]],[[3,1,.3],[1,1,1],[1,3,.3],[1,7,.4]],[[0,1,1],[0,2,.3],[0,2,.5],[3,3.56,.3],[3,7.12,.2]]].map(_v);function _w(e,$,t,_,n){let i=0;if(0===e.d||4===e.d||12===e.d)for(let c=_;c<_+960/e.t-.01;c+=120/e.t)0!==n&&i%8==0&&_t($,t,c),i+=1,_p($,t,0===n&&c===_?c:c-.003);else if(1===e.d||5==e.d||13==e.d)for(let l=_;l<_+960/e.t-.01;l+=240/e.t)0!==n&&i%4==0&&_t($,t,l),i+=1,_p($,t,0===n&&l===_?l:l-.003);else if(2===e.d||6==e.d||14===e.d||15===e.d)for(let r=_;r<_+900/e.t-.01;r+=60/e.t)0!==n&&i%8==0&&_t($,t,r),i+=1,_p($,t,0===n&&r===_?r:r-.003);else if(3===e.d||7===e.d||8===e.d)for(let o=_;o<_+900/e.t-.01;o+=60/e.t)0!==n&&i%8==0&&_t($,t,o),_p($,t,0===n&&o===_?o:o-.003),i%2==0&&i<15&&_p($,t,o+e.b*(1-1/e.p)-.003,.1),i+=1;else if(9===e.d)for(let f=_;f<_+900/e.t-.01;f+=120/e.t)0!==n&&i%8==0&&_t($,t,f),(i+=1)%2==0?_p($,t,f+e.b*(1-1/e.p)-.003,.1):_p($,t,f);else if(10===e.d||11===e.d)for(let u=_;u<_+900/e.t-.01;u+=60/e.t)0!==n&&i%8==0&&_t($,t,u),i%2==0&&_p($,t,0===n&&u===_?u:u-.003),i%2==1&&_p($,t,u+e.b*(e.p%3==0?1/3:1/4)-.003),i+=1;7===n&&_p($,t,_+960/e.t)}function _x(e,$,t,_){let n=0;if(0===e.d||2===e.d||12===e.d)for(let i=_+60/e.t;i<_+960/e.t;i+=120/e.t)n%8==3&&_t($,t,i+.001),n+=1,_u($,t,i);else if(1===e.d||13==e.d)for(let c=_+120/e.t;c<_+960/e.t;c+=240/e.t)n%4==3&&_t($,t,c+.001),n+=1,_u($,t,c);else if(3===e.d||8===e.d||14===e.d)for(let l=_+30/e.t;l<_+840/e.t;l+=60/e.t)n%8==3&&_t($,t,l+.001),n+=1,_u($,t,l);else if(4===e.d||5===e.d||6==e.d||7===e.d)for(let r=_+60/e.t;r<_+960/e.t;r+=120/e.t)n%8==3&&_t($,t,r+.001),n&&n%8%3==0?(_u($,t,r-e.b*(1/e.p)-.003,.1),_u($,t,r+e.b*(3===e.p?2/3:.5)-.003,.1)):_u($,t,r),n+=1;else if(9===e.d)for(let o=_+60/e.t;o<_+900/e.t;o+=120/e.t)n%8==3&&n<13&&_t($,t,o+.001),(n+=1)<13&&(n%2==1&&n<11?(n%3==1&&_u($,t,o-e.b*(1/e.p)-.003,.1),_u($,t,o+e.b*(3===e.p?2/3:.5)-.003,.1)):_u($,t,o+e.b*(3===e.p?2/3:.5)));else if(10===e.d)for(let f=_+60/e.t;f<_+900/e.t;f+=60/e.t)n%8==3&&_t($,t,f+.001),(n+=1)<15&&(n%2==1?(n%3==1&&_u($,t,f-e.b*(1/e.p)-.003,.1),_u($,t,f+e.b*(3===e.p?2/3:.5)-.003,.1)):_u($,t,f+e.b*(3===e.p?2/3:.5)));else if(11===e.d)for(let u=_;u<_+900/e.t;u+=60/e.t)n<15&&(n%2==1?(_u($,t,u-e.b*(1/e.p)-.003,.1),_u($,t,u+e.b*(3===e.p?2/3:.5)-.003,.2)):_u($,t,u+e.b*(3===e.p?2/3:.5),.3)),n+=1}function _y(e,$,t,_,n){let i=0;for(let c=_;c<_+60/e.t-.01;c+=60/(e.t*e.e1))i=i%e.e1+1,(6!==e.e1||2!==i&&5!=i)&&_s($,t,0===n&&c===_?c:c-.001,30/(e.t*e.e1));i=0;for(let l=_+60/e.t;l<_+480/e.t;l+=60/(e.t*e.p))i=i%e.p+1,(6!==e.p||2!==i&&5!=i)&&_q($,t,0===n&&l===_?l:l-.001);i=0;for(let r=_+480/e.t;r<_+540/e.t-.01;r+=60/(e.t*e.e2))i=i%e.e2+1,(6!==e.e2||2!==i&&5!=i)&&_s($,t,0===n&&r===_?r:r-.001,30/(e.t*e.e2));i=0;for(let o=_+540/e.t;o<_+840/e.t;o+=60/(e.t*e.p))i=i%e.p+1,(6!==e.p||2!==i&&5!=i)&&_q($,t,0===n&&o===_?o:o-.001);i=0;for(let f=_+840/e.t;f<_+960/e.t;f+=60/(e.t*e.e3))i=i%e.e3+1,(6!==e.e3||2!==i&&5!=i)&&_q($,t,0===n&&f===_?f:f-.001)}function _1(e,$,t,_,n,i=!1,c){let l=0,r=0,o=0,f=0;for(let u=_;u<_+960/e.t-.01;u+=60/(e.t*e.p))if(f=f%e.p+1,e.p%3!=0||2!==f&&5!==f){if(u>_+60/e.t+.001&&!(u>_+480/e.t-.001&&u<_+540/e.t+.001)&&u<_+840/e.t-.001&&e.r1[l]){let p=(l<e.r1.length&&!e.r1[l+1]?2*e.b/e.p:e.b/e.p)*(6===e.p&&1!==f&&4!==f?.5:1)*(6===e.p&&e.x2?2:1)*(3===e.p&&1===f?1.5:.75)*(2===e.p&&e.t<140?.5:1)*(i?2:1)*(4===e.p&&!e.x2&&e.t<145?.5:1)*(6===e.p&&e.t>144?2:1);1===f?_l($,t,c[e.oq[o]](t),_i(e.f,e.q[r]),100,750,u,u,u+p,p):_j($,t,c[e.oq[o]](t),_i(e.f,e.q[r]),_i(e.f,e.q[r]),u,u+p/2,u+3*p/4,p),_h(u,t,e),r+=1,r%=e.q.length,o+=1,o%=e.oq.length}l+=1,l%=e.r1.length}}function _2(e,$,t,_){let n=_+60/e.t;if(1===e.bt){_o($,t,d[1](t),_i(e.f,31),3e3,600,n,n+e.b/3,n+2*e.b/3,e.b,.3);for(let i=_+120/e.t;i<_+840/e.t-.01;i+=120/(e.t*e.p))_o($,t,d[1](t),_i(e.f,31),3e3,700,i,i+e.b/3,i+2*e.b/3,e.b,.2)}else if(2===e.bt){_o($,t,d[2](t),_i(e.f,36),4e3,600,n,n+e.b/3,n+2*e.b/3,e.b,.5);for(let c=_+120/e.t;c<_+840/e.t-.01;c+=120/(e.t*e.p))_o($,t,d[2](t),_i(e.f,36),1800,700,c,c+e.b/3,c+2*e.b/3,e.b,.4)}else if(3===e.bt){_o($,t,d[3](t),_i(e.f,51.08),2e3,700,n,n+e.b/3,n+2*e.b/3,e.b,.22);for(let l=_+120/e.t;l<_+840/e.t-.01;l+=120/(e.t*e.p))_o($,t,d[3](t),_i(e.f,51.08),3e3,800,l,l+e.b/3,l+2*e.b/3,e.b,.15)}}function _z(e,$,t,_,n){let i=0,c=0,l=0,r=0;for(let o=_;o<_+960/e.t-.01;o+=60/(e.t*e.p))r=r%e.p+1,(e.p%3!=0||2!==r&&5!==r)&&(o>_+60/e.t+.001&&!(o>_+480/e.t-.001&&o<_+540/e.t+.001)&&o<_+840/e.t-.001&&e.r2[i]&&(_s($,t,0===n&&o===_?o:o-.001,(i<e.r2.length&&!e.r2[i+1]?2*e.b/e.p:e.b/e.p)*(6===e.p&&1!==r&&4!==r?.3:.6)*(6===e.p&&e.x2?2:1)*(3===e.p&&1===r?2:1),!0),c+=1,c%=e.q.length,l+=1,l%=e.oq.length),i+=1,i%=e.r2.length)}function _b(e,$,t,_,n,i){e.h||(_w(e,$,t,_,n),_x(e,$,t,_),_y(e,$,t,_,n),_z(e,$,t,_,n)),_1(e,$,t,_,n,!e.x2&&(2===e.p||4===e.p&&e.t<145),i),0!==e.bt&&_2(e,$,t,_),_h(_,t,e,5),0===e.e1s?_l($,t,i[e.e1i](t),e.f,50,300,_,_+e.b/2,_+3*e.b/4,e.b):1===e.e1s?_n($,t,i[e.e1i](t),e.f,_,e.b,e.e1):2===e.e1s?_j($,t,i[e.e1i](t),e.f,_i(e.f,12),_,_+e.b/2,_+3*e.b/4,e.b,.6):3===e.e1s&&_m($,t,i[e.e1i](t),e.f,_,e.b,e.e1),_k($,t,d[0](t),_i(e.f,63.2),.005,.005,0,.01,_+e.b,e.b),_h(_+8*e.b,t,e,3),0===e.e2s?_l($,t,i[e.e2i](t),e.f,200,600,_+8*e.b,_+8*e.b+e.b/2,_+8*e.b+3*e.b/4,e.b):1===e.e2s?_m($,t,i[e.e2i](t),e.f,_+8*e.b,e.b,e.e2):2===e.e2s?_j($,t,i[e.e2i](t),_i(e.f,12),e.f,_+8*e.b,_+8*e.b+e.b/2,_+8*e.b+3*e.b/4,e.b,.6):3===e.e2s&&_n($,t,i[e.e2i](t),e.f,_+8*e.b,e.b,e.e2),_k($,t,d[0](t),_i(e.f,60.2),.005,.005,0,.01,_+9*e.b,e.b),_k($,t,d[0](t),_i(e.f,36.07),.009,.009,0,.018,_+15*e.b,e.b),_h(_+15*e.b,t,e),n%2==0?0===e.e3s?(_j($,t,d[3](t),_i(e.f,e.lb>127?0:12),_i(e.f,e.lb>127?12:0),_+14*e.b,_+14*e.b+e.b/2,_+14*e.b+3*e.b/4,e.b),_o($,t,d[1](t),_i(e.f,e.fb>127?3:-2),4e3,500,_+15*e.b,_+15*e.b+e.b/2,_+15*e.b+3*e.b/4,e.b)):1===e.e3s?_n($,t,i[e.e1i](t),e.f,_+14*e.b,2*e.b,2*e.e3):2===e.e3s?(_l($,t,d[1](t),_i(e.f,3),50,400,_+14*e.b,_+14*e.b+e.b/2,_+14*e.b+3*e.b/4,e.b),_l($,t,d[1](t),_i(e.f,2),300,3e3,_+15*e.b,_+15*e.b+e.b/2,_+15*e.b+3*e.b/4,e.b)):3===e.e3s&&_m($,t,i[e.e1i](t),_i(e.f,e.fb%2==0?0:-2),_+14*e.b,2*e.b,2*e.e3,!0):0===e.e4s?(_j($,t,d[3](t),_i(e.f,e.lb>127?0:12),_i(e.f,e.lb>127?12:0),_+14*e.b,_+14*e.b+e.b/2,_+14*e.b+3*e.b/4,e.b),_o($,t,d[1](t),_i(e.f,e.fb>127||7===n?3:-2),4e3,500,_+15*e.b,_+15*e.b+e.b/2,_+15*e.b+3*e.b/4,e.b)):1===e.e4s?_o($,t,d[1](t),_i(e.f,e.fb>127||7===n?3:-2),5e3,200,_+14*e.b,_+14*e.b+e.b/2,_+15*e.b+3*e.b/4,2*e.b):2===e.e4s?(_n($,t,i[e.e1i](t),e.f,_+14*e.b,e.b,e.e3),_n($,t,i[e.e2i](t),e.f,_+15*e.b,e.b,e.e3)):3===e.e4s&&_m($,t,i[e.e1i](t),_i(e.f,e.fb%2==0||7===n?0:-2),_+14*e.b,2*e.b,4*e.e3,!0)}function _r(e){let $=e.sampleRate,t=.3*$,_=e.createBuffer(2,t,$),n=_.getChannelData(0),i=_.getChannelData(1),c,l,r,o,f,u,p;function b(){let e=2*Math.random()-1;return c=.99886*c+.0555179*e,l=.99332*l+.0750759*e,r=.969*r+.153852*e,o=.8665*o+.3104856*e,c+l+r+o+(f=.55*f+.5329522*e)+(u=-.7616*u-.016898*e)+p+.5362*e}c=l=r=o=f=u=p=0;for(let m=0;m<t;m++){let T=m/$,g=b();n[m]=g*Math.pow(1-T/.3,2),i[m]=g*Math.pow(1-T/.3,2)}let A=e.createConvolver();A.buffer=_;let v=e.createGain(),V=e.createGain();return v.gain.value=.875,V.gain.value=.125,{connect:function(e,$){e.connect(A),A.connect(V),V.connect($),e.connect(v),v.connect($)}}}function _c(e,$,t){let _=[],n=$.createDynamicsCompressor();n.threshold.value=-.1,n.knee.value=0,n.ratio.value=20,n.attack.value=0,n.release.value=.01;let i=$.createGain();i.gain.value=1,e.connect(i),i.connect(n);for(let c=0;c<t.length;c++){let l=t[c],r=$.createBiquadFilter();r.type="lowpass",r.frequency.value=l.x;let o=$.createBiquadFilter();o.type="highpass",o.frequency.value=c>0?t[c-1].x:0;let f=$.createDynamicsCompressor();f.threshold.value=l.t,f.knee.value=l.k,f.ratio.value=l.o,f.attack.value=l.a,f.release.value=l.r;let u=$.createGain();u.gain.value=l.g;let p=$.createGain();p.gain.value=.9,0===c?e.connect(o):_[c-1].lowpass.connect(o),o.connect(r),r.connect(f),f.connect(p),p.connect(u),u.connect(n),_.push({lowpass:r,highpass:o,compressor:f,gain:u,normalizationGain:p})}return _r($).connect(n,$.destination),_}function _a(e){_g("grey"),a=new(window.AudioContext||window.webkitAudioContext);let $=[d[3],d[0],d[2],d[1],d[4],d[5],d[6]],t=a.createGain();t.gain.value=1,_c(t,a,[{x:75,t:-30,k:30,o:3,a:.01,r:.37,g:1},{x:150,t:-30,k:30,o:3,a:.03,r:.33,g:1.1},{x:400,t:-30,k:35,o:8,a:.01,r:.3,g:.8},{x:700,t:-30,k:40,o:12,a:.005,r:.25,g:.4},{x:2e3,t:-30,k:40,o:14,a:.002,r:.23,g:.3},{x:4e3,t:-30,k:40,o:16,a:.001,r:.2,g:.2},{x:a.sampleRate/2,t:-30,k:40,o:4,a:.001,r:.15,g:.2},]);let _=a.currentTime+.3;for(let n=0;n<8;++n)setTimeout(function(){_b(e,t,a,_+960/e.t*n+.1,n,$)},2e3*n)}const s=germinate(seed);console.log(s);var db=128e3*s.b+200,le=0;document.getElementById("_").addEventListener("click",function(){var e=Date.now();e-le>db&&(_a(s),le=e)}),window.addEventListener("keyup",function(e){var $=Date.now();"Enter"===e.key&&$-le>db&&(document.getElementById("_").click(),le=$)});</script>'
        );

        // Create a new contract using the initialization code.
        address addr;
        assembly {
            addr := create(0, add(initCode, 0x20), mload(initCode))
        }

        // Assign the new contract's address to the data contract.
        dataContract = addr;

        // Set the timestamp at which the mint phase completes.
        mintComplete = block.timestamp + 3 days;
    }

    /**
     * @dev Supply Ξ0.05 and mint a single token to the caller. Minting is
     *      possible until 3 days after contract deployment. Minted token will
     *      be in an unrevealed state until the mint completes and additional
     *      entropy is added. Provenance is established by permanently storing
     *      the address of the caller as the creator of the respective token
     *      and incorporating it into the seed that determines its attributes.
     */
    function mint() external payable {
        _create(msg.sender, 1);
    }

    /**
     * @dev Mint an arbitrary quantity of tokens to the caller, supplying Ξ0.05
     *      per work minted. Minting is possible until 3 days after contract
     *      deployment. Minted token will be in an unrevealed state until the
     *      mint completes and additional randomness is added. Provenance is
     *      established by permanently storing the address of the caller as the
     *      creator of the respective token and incorporating it into the seed
     *      that determines its attributes.
     *
     * @param amount The amount of tokens to mint.
     */
    function mint(uint256 amount) external payable {
        _create(msg.sender, amount);
    }

    /**
     * @dev Mint an arbitrary quantity of tokens to the a specified account,
     *      supplying Ξ0.05 per work minted. Minting is possible until 3 days
     *      after contract deployment. Minted token will be in an unrevealed
     *      state until the mint completes and additional randomness is added.
     *      Provenance is established by permanently storing the address of the
     *      caller as the creator of the respective token and incorporating it
     *      into the seed that determines its attributes.
     *
     * @param to The address to send the minted tokens to.
     * @param amount The amount of tokens to mint.
     */
    function mint(address to, uint256 amount) external payable {
        _create(to, amount);
    }

    /**
     * @dev Prepare for the reveal phase by setting a future block number that
     *      will be used to derive additional entropy when revealing tokens.
     *      This function can only be called by the author and only after the
     *      mint phase is complete, or 3 days after contract deployment. A
     *      `RevealAlreadyPrepared` error will be thrown if an attempt is made
     *      to prepare the reveal phase multiple times.
     *
     * @return firstAvailableRevealBlockNumber The first block number that the
     *                                         reveal can be performed.
     * @return lastAvailableRevealBlockNumber  The last block number that the
     *                                         reveal can be performed.
     */
    function prepareReveal() external returns (
        uint256 firstAvailableRevealBlockNumber,
        uint256 lastAvailableRevealBlockNumber
    ) {
        // Only the author can prepare the reveal phase.
        _onlyAuthor();

        // Ensure mint phase is complete before reveal phase can be prepared.
        if (mintComplete > block.timestamp) {
            revert MintPhaseNotComplete();
        }

        // Ensure that the reveal phase can only be prepared once.
        if (revealEntropyBlockNumber != uint256(0)) {
            revert RevealAlreadyPrepared();
        }

        // Set the block number that will be used to derive additional
        // entropy during the reveal phase. Assign a block number that
        // is 64 blocks in the future to protect against selecting for
        // a specific block proposer.
        revealEntropyBlockNumber = block.number + 0x40;

        // Set block number range during which reveal can be performed.
        firstAvailableRevealBlockNumber = revealEntropyBlockNumber + 1;
        lastAvailableRevealBlockNumber = revealEntropyBlockNumber + 0xff;

        // Emit an event to signal the preparation of the reveal phase,
        // including the range of block numbers during which the reveal
        // can be performed.
        emit Prepare(
            firstAvailableRevealBlockNumber,
            lastAvailableRevealBlockNumber
        );
    }

    /**
     * @dev Reveal final attributes and metadata by setting a global seed to a
     *      derived from the block number assigned when preparing to reveal and
     *      from a message that hashes to a value committed during deployment.
     *      This function can only be called by the author and only after the
     *      reveal phase has been prepared. An "AlreadyRevealed" error will be
     *      thrown if an attempt is made to reveal multiple times. Triggering
     *      reveal on the first available block is preferable, as PREVRANDAO is
     *      more resistant to biasability than block hashes. Should the author
     *      fail to successfully finalize the reveal during this period, owners
     *      of unrevealed tokens are able to burn those tokens to receive a
     *      refund of the mint price.
     *
     * @param commitMessage The commit message used during the reveal.
     *
     * @return finalizedSeed The finalized seed used for the reveal.
     */
    function reveal(
        string calldata commitMessage
    ) external returns (bytes32 finalizedSeed) {
        // Only the author can finalize the reveal phase.
        address payable authorAccount = _onlyAuthor();

        // Ensure that the reveal has not already been conducted.
        if (globalSeed != bytes32(0)) {
            revert AlreadyRevealed();
        }

        // Ensure supplied commit message matches original commit hash.
        if (keccak256(bytes(commitMessage)) != commit) {
            revert InvalidCommitMessage();
        }

        // Retrieve the block number committed to during the prepare phase.
        uint256 randomnessBlockNumber = revealEntropyBlockNumber;

        // Ensure that the reveal phase has been prepared.
        if (randomnessBlockNumber == uint256(0)) {
            revert RevealNotPrepared();
        }

        // Ensure that the reveal phase has started.
        if (randomnessBlockNumber >= block.number) {
            revert RevealNotReady();
        }

        // Ensure that the reveal phase has not ended.
        if (randomnessBlockNumber + 0xff < block.number) {
            revert RevealExpired();
        }

        // Declare a value for the randomness sourced from that block.
        uint256 randomness;

        // Use PREVRANDAO if available — it is only available on the
        // first block after the reveal phase has started.
        if (randomnessBlockNumber == block.number - 1) {
            randomness = block.prevrandao;
        }

        // Otherwise, use the blockhash as a fallback.
        if (randomness == 0) {
            randomness = uint256(blockhash(randomnessBlockNumber));
        }

        // Sanity check to ensure a non-zero randomness was located.
        if (randomness == 0) {
            revert RandomnessNotAvailable();
        }

        // Derive finalized seed using the chain id, the contract address,
        // the randomness sourced from the block, and the commit message.
        finalizedSeed = keccak256(abi.encodePacked(
            block.chainid,
            address(this),
            randomness,
            commitMessage
        ));

        // Set the global seed to the finalized seed.
        globalSeed = finalizedSeed;

        // Transfer any remaining contract balance to the author.
        (bool ok, ) = authorAccount.call{value: address(this).balance}("");

        // If the transfer fails, revert the transaction.
        if (!ok) {
            // Use assembly to "bubble up" return data if available and not
            // excessively long.
            assembly {
                if and(returndatasize(), lt(returndatasize(), 0xffffff)) {
                    returndatacopy(0, 0, returndatasize())
                    revert(0, returndatasize())
                }
            }

            // Otherwise, revert with a generic error.
            revert FinalizationFailed();
        }

        // Determine the total supply of tokens.
        uint256 maxSupply = totalSupply();

        // Emit event to indicate finalization of metadata and max supply.
        emit Reveal(finalizedSeed, maxSupply);

        // Emit event to indicate that all metadata has been updated. Note
        // that some tokens may not be included if any have been burned and
        // will have to be updated manually.
        emit BatchMetadataUpdate(0, maxSupply - 1);

        // Return the finalized seed value.
        return finalizedSeed;
    }

    /**
     * @dev Burn a given token assuming that the caller is the owner or has been
     *      approved by the owner. If more than 30 minutes have passed since the
     *      minting phase has completed and the reveal phase has not yet been
     *      finalized, the owner of the token will receive a refund of the mint
     *      price. Note that there is a danger that a token may be burned even
     *      when it is not eligible for a refund; if a refund is expected, using
     *      `burnUnrevealedAndRefund` is recommended.
     */
    function burn(uint256 id) external {
        // Burn the token and perform a refund if applicable.
        _destroy(id);
    }

    /**
     * @dev Burn a given unrevealed token and ensure that a refund of the
     *      mint price is received by the owner, assuming that the caller is
     *      the owner or has been approved by the owner. This function is only
     *      callable if more than 30 minutes have passed since the minting phase
     *      has completed and the reveal phase has not yet been finalized. While
     *      `burn` may also be used for this purpose, there is a danger that the
     *      token may be burned even when it is not eligible for a refund.
     */
    function burnUnrevealedAndRefund(uint256 id) external {
        // Ensure that the reveal phase has not been finalized.
        if (globalSeed != bytes32(0)) {
            revert AlreadyRevealed();
        }

        // Burn the token and ensure that a refund is performed.
        if (!_destroy(id)) {
            revert BurnRefundFailed();
        }
    }

    /**
     * @dev Get the address of the account that minted a specified token. Note
     *      that this function can consume a significant amount of gas in cases
     *      where the creator minted many tokens at once.
     *
     * @param id The id of the token in question.
     *
     * @return creator The address of the account that minted the token.
     */
    function getCreator(uint256 id) external view returns (address) {
        // Ensure that a token with the given id exists.
        if (!_exists(id)) {
            revert URIQueryForNonexistentToken();
        }

        // Retrieve and return the creator of the specified token.
        return _getCreator(id);
    }

    /**
     * @dev Get the "seed" for a given id. The seed is derived from the
     *      token's id, the global seed, and the address of the account
     *      that minted the token. This function will revert unless the
     *      global seed has been finalized.
     *
     * @param id The id of the token in question.
     */
    function getSeed(uint256 id) external view returns (bytes32) {
        // Ensure that a token with the given id exists.
        if (!_exists(id)) {
            revert URIQueryForNonexistentToken();
        }

        // Retrieve the global seed value from storage.
        bytes32 randomness = globalSeed;

        // Revert if the global seed has not been finalized.
        if (randomness == bytes32(0)) {
            revert PreReveal();
        }

        // Derive and return the seed of the specified token.
        return _getSeed(id, globalSeed);
    }

    /**
     * @dev Get the SVG associated with the specified id. The default image
     *      will be returned unless the global seed has been finalized.
     *
     * @param id The id of the token in question.
     */
    function image(uint256 id) external view returns (string memory) {
        // Ensure that a token with the given id exists.
        if (!_exists(id)) {
            revert URIQueryForNonexistentToken();
        }

        // Return image for the token (do not supply a previously-derived seed).
        return _image(id, globalSeed, bytes32(0));
    }

    /**
     * @dev Get the address currently resolved by the ENS name hash of the
     *      author of this artwork.
     */
    function author() public view returns (address) {
        return ens.resolver(authorNode).addr(authorNode);
    }

    /**
     * @dev Get the ERC721 metadata for the token with the specified id. The
     *      metadata is formatted as a dataURI containing a JSON object
     *      containing the name, description, and attributes of the token as
     *      well as a dataURI-encoded SVG image and a dataURI animation_url
     *      containing an html document with web audio code for playing the song
     *      and animation of the token. The html document itself is retrieved
     *      from a data contract and the token's seed is inserted into the code;
     *      this seed determines what audiovisual content will be rendered. The
     *      metadata is only finalized once the global seed has been set, and
     *      will otherwise return a default image and metadata.
     *
     * @param id The id of the token in question.
     */
    function tokenURI(uint256 id) public view override returns (string memory) {
        // Ensure that a token with the given id exists.
        if (!_exists(id)) {
            revert URIQueryForNonexistentToken();
        }

        // Read the global seed value from storage and use as entropy.
        bytes32 entropy = globalSeed;

        // Derive the seed for the given token using the id and entropy.
        bytes32 seed = _getSeed(id, entropy);

        // Construct and return the token metadata.
        return string.concat(
            'data:application/json;base64,',
            bytes(
                string.concat(
                    unicode'{"name":"Ret↵rn — #',
                    id.toString(),
                    '","description":"Generative audiovisual art where all metadata is stored and rendered onchain.","attributes":',
                    entropy == bytes32(0) ? '[{"trait_type":"Status","value":"Unrevealed"}]' : _format(_getAttributes(seed)),
                    ',"image":"data:image/svg+xml;base64,' ,
                    bytes(_image(id, entropy, seed)).encode(),
                    '","animation_url":"data:text/html;base64,',
                    entropy == bytes32(0) ? _prerevealAnimation() : dataContract.encode(seed),
                    '"}'
                )
            ).encode()
        );
    }

    /**
     * @dev Get a quasirandom dataURI containing an html document with web audio
     *      code for playing a generative song and animation.
     */
    function explore() external view returns (string memory) {
        // Construct and return metadata using entropy from the previous block.
        return _explore(bytes32(block.prevrandao));
    }

    /**
     * @dev Get a dataURI containing an html document with web audio code for
     *      playing a specific generative instance of an audiovisual work using
     *      a deterministic seed, regardless of whether a token with the given
     *      seed exists.
     *
     * @param seed The seed to use for generating the audiovisual work.
     *
     * @return The dataURI containing the base64-encoded html audiovisuals.
     */
    function explore(bytes32 seed) external view returns (string memory) {
        // Construct and return the metadata using the supplied seed.
        return _explore(seed);
    }

    /**
     * @dev Get the name of this contract.
     */
    function name() public pure override returns (string memory) {
        // Return the name of this contract.
        return unicode"Ret↵rn";
    }

    /**
     * @dev Get the symbol of this contract.
     */
    function symbol() public pure override returns (string memory) {
        // Return the symbol of this contract.
        return unicode"↵";
    }

    /**
     * @dev Deconstruct the supplied seed into its constituent attributes,
     *      represented as strings.
     *
     * @param seed The provided seed.
     *
     * @return tempo
     * @return vibe
     * @return root
     * @return style
     * @return arrow
     * @return color
     * @return tone
     * @return creator The address of the account that minted the token.
     */
    function germinate(bytes32 seed) public pure returns (
        string memory tempo,
        string memory vibe,
        string memory root,
        string memory style,
        string memory arrow,
        string memory color,
        string memory tone,
        string memory creator
    ) {
        // Derive the attributes from the seed.
        Attributes memory attributes = _getAttributes(seed);

        // Return the attributes as distinct strings.
        return (
            attributes.tempo,
            attributes.vibe,
            attributes.root,
            attributes.style,
            attributes.arrow,
            attributes.color,
            attributes.tone,
            attributes.creator
        );
    }

    /**
     * @dev Get contract-level information, formatted as a dataURI containing a
     *      JSON object with the contract name, author, description, and
     *      collection image.
     */
    function contractURI() external view returns (string memory) {
        return string.concat(
            'data:application/json;base64,',
            Base64.encode(
                abi.encodePacked('{',
                    unicode'"name": "Ret↵rn", ',
                    '"author": "0age", ',
                    '"description": "Generative audiovisual art where all metadata is stored and rendered onchain. Each musical work is minted in an unrevealed state over an open, 3 day window from deployment. After the mint phase ends, entropy is sourced from both a future block and from a message whose contents are committed to at the time of deployment. This entropy is used to finalize metadata and reveal the end state of each minted work. Provenance is established for each token by permanently recording the account used to create it and incorporating the address into the seed that determines token attributes. Warning: flashing imagery & audio present.", ',
                    '"image": "data:image/svg+xml;base64,', bytes(_image(0, bytes32(0), bytes32(0))).encode(),
                '"}')
            )
        );
    }

    /**
     * @dev Internal function for minting a specified amount of tokens to a
     *      specified address. Ξ0.05 must be provided for each token minted, and
     *      minting is only possible during the mint phase, which lasts for 3
     *      days after deployment. As part of token creation, the address of the
     *      caller will be recorded as the creator of the tokens, and will be
     *      incorporated into each token's seed once reveal has been finalized.
     *
     * @param owner The address to mint the tokens to.
     * @param amount The amount of tokens to mint.
     */
    function _create(address owner, uint256 amount) internal {
        // Ensure that the mint phase is still active.
        if (mintComplete <= block.timestamp) {
            revert MintCompleted();
        }

        // Ensure that the correct amount of Ξ has been provided.
        if (msg.value != amount * 1 ether / 20) {
            revert InvalidMintValue();
        }

        // Determine the next token id to be minted, used to register creator.
        uint256 id = _nextTokenId();

        // Mint the tokens to the specified address.
        _mint(owner, amount);

        // Record the creator of the tokens.
        _creators[id] = msg.sender;
    }

    /**
     * @dev Internal function for burning a token. If the mint phase has been
     *      over for 30 minutes and the reveal phase has not been finalized, the
     *      owner of the token will be refunded Ξ0.05. Otherwise, the token will
     *      just be burned. Note that only the owner or an approved account can
     *      burn a token.
     *
     * @param id The id of the token to burn.
     *
     * @return A boolean representing whether or not the owner was refunded.
     */
    function _destroy(uint256 id) internal returns (bool) {
        // Determine the current owner of the token.
        address owner = ownerOf(id);

        // Burn the token if the owner is the caller or the caller is approved.
        _burn(id, true);

        // Declare a boolean representing whether or not the owner was refunded.
        bool refunded;

        // Refund if mint has been over for 30 minutes & global seed is not set.
        if (
            mintComplete + 30 minutes <= block.timestamp &&
            globalSeed == bytes32(0)
        ) {
            // Send the owner Ξ0.05 (the original mint amount per token).
            (bool ok, ) = owner.call{value: 1 ether / 20}("");

            // If the transfer fails, revert the transaction.
            if (!ok) {
                // Use assembly to "bubble up" return data if available and not
                // excessively long.
                assembly {
                    if and(returndatasize(), lt(returndatasize(), 0xffffff)) {
                        returndatacopy(0, 0, returndatasize())
                        revert(0, returndatasize())
                    }
                }

                // Otherwise, revert with a generic error.
                revert BurnRefundFailed();
            }

            // Mark the owner as having been refunded.
            refunded = true;
        } else {
            // Otherwise, mark the owner as not having been refunded.
            refunded = false;
        }

        // Return whether or not the owner was refunded.
        return refunded;
    }

    /**
     * @dev Internal function for deriving the seed of a token from its id, the
     *      global seed or other entropy source, and the creator of the token.
     *
     * @param id The id of the token to derive the seed for.
     * @param entropy The global seed or other entropy used to derive the seed.
     *
     * @return The derived seed.
     */
    function _getSeed(
        uint256 id,
        bytes32 entropy
    ) internal view returns (bytes32) {
        // Return seed using id, entropy, & token creator as determinants.
        return (
            keccak256(
                abi.encodePacked(id, entropy)
            ) & ~bytes32(uint256(type(uint160).max))
        ) | bytes32(uint256(uint160(_getCreator(id))));
    }

    /**
     * @dev Internal function for rendering pre-reveal animation, a countdown to
     *      the reveal that is displayed before the token's global seed has been
     *      set. The countdown ends at the timestamp stored in mintComplete.
     *
     * @return An html document, base64-encoded, containing a countdown to mint
     *         completion or a message if the mint phase is over but the reveal
     *         phase has not been finalized.
     */
    function _prerevealAnimation() internal view returns (string memory) {
        // Construct and return the pre-reveal animation.
        return bytes(
            string.concat(
                '<!doctypehtml><title>Ret&#8629;rn</title><meta content=0age name=author><style>body{background-color:#000;color:#d3d3d3;display:flex;justify-content:center;align-items:center;height:100vh;margin:0;font-family:Arial,sans-serif;text-align:center}</style><div><h1 id=1></h1><h1 id=2></h1></div><script>let t=new Date(',
                mintComplete.toString(),
                'e3),m="Waiting for reveal...";let c;function u(){let e=new Date,n=t-e;n<=0?(clearInterval(c),document.getElementById("1").textContent=m,document.getElementById("2").style.display="none"):document.getElementById("2").textContent=[Math.floor(n/864e5),Math.floor(n%864e5/36e5),Math.floor(n%36e5/6e4),Math.floor(n%6e4/1e3)].map(e=>e.toString().padStart(2,"0")).join(":")}new Date<t?(document.getElementById("1").textContent="Waiting for mint to complete",u(),c=setInterval(u,1e3)):document.getElementById("1").textContent=m;</script>'
            )
        ).encode();
    }

    /**
     * @dev Internal view function for retrieving the address of the account
     *      that minted a specified token. Note that this function can consume
     *      a significant amount of gas in cases where the creator minted many
     *      tokens at once. Note that this function assumes that the supplied
     *      id has been confirmed to exist; otherwise, non-existent tokens will
     *      be treated as having been created by the most recent creator.
     *
     * @param id The id of the token in question.
     *
     * @return creator The address of the account that minted the token.
     */
    function _getCreator(uint256 id) internal view returns (address creator) {
        // Iterate until a creator has been located.
        while (true) {
            // Retrieve the creator of the token with the current id.
            creator = _creators[id];

            // If the retrieved address is not empty, return it.
            if (creator != address(0)) {
                return creator;
            }

            // Otherwise, decrement the id and try again.
            id -= 1;
        }
    }

    /**
     * @dev Internal view function for ensuring that the caller is the account
     *      currently resolved by the ENS name hash of contract author If the.
     *      caller is not the author, the transaction will revert.
     *
     * @return The account resolved by the author's ENS name hash.
     */
    function _onlyAuthor() internal view returns (address payable) {
        // Retrieve the address resolved by the author's ENS name hash.
        address authorAccount = author();

        // Revert if caller is not the address resolved by author's name hash.
        if (msg.sender != authorAccount) {
            revert Unauthorized();
        }

        // Return the author's account.
        return payable(authorAccount);
    }

    /**
     * @dev Internal function for deriving and rendering an SVG image for a token.
     *      If metadata is not yet revealed, default values are used. Otherwise, it
     *      is derived using the id and the global seed and returned as a string.
     *
     * @param id      The id of the token.
     * @param entropy The global seed value if one has been set via metadata reveal.
     * @param seed    The seed for the token if one has already been derived. If not
     *                provided, it will be derived using the id and the global seed.
     *
     * @return A string representing the SVG image for the token.
     */
    function _image(
        uint256 id,
        bytes32 entropy,
        bytes32 seed
    ) internal view returns (string memory) {
        // Declare variables representing visual properties of the token.
        string memory arrow;
        string memory color;
        bool vivid;

        // If metadata has not been revealed, use default values.
        if (entropy == bytes32(0)) {
            arrow = unicode"↵";
            color = "#000000";
            vivid = false;
        } else {
            // If a seed has not been provided, derive one using id and entropy.
            if (seed == bytes32(0)) {
                seed = _getSeed(id, entropy);
            }

            // Derive the visual properties of the token using the seed.
            (,,,, arrow, color,,) = germinate(seed);
            vivid = uint8(seed[10]) > 252;
        }

        // Render & return the SVG image for the token using derived properties.
        return _renderImage(arrow, color, vivid);
    }

    /**
     * @dev Internal view function for rendering a dataURI containing an html
     *      document with web audio code for playing a specific generative
     *      instance of an audiovisual work using a deterministic seed. Metadata
     *      is retrieved from a corresponding data contract and the seed is
     *      inserted into the code before it is base64-encoded and returned as a
     *      string.
     *
     * @param seed The seed to use for generating the audiovisual work.
     *
     * @return The dataURI containing the base64-encoded html audiovisuals.
     */
    function _explore(bytes32 seed) internal view returns (string memory) {
        return string.concat(
            "data:text/html;base64,",
            dataContract.encode(seed)
        );
    }

    /**
     * @dev Internal pure function for rendering an SVG image for a token using
     *      the provided visual properties.
     *
     * @return The SVG image as a string.
     */
    function _renderImage(
        string memory arrow,
        string memory color,
        bool vivid
    ) internal pure returns (string memory) {
        return string.concat('<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="', color, '" /><text x="50" y="67" font-size="49" text-anchor="middle" fill="', vivid ? 'white' : 'lightgray', '" font-family="Arial">', arrow, '</text></svg>');
    }

    /**
     * @dev Internal pure function for rendering an array of attributes as a
     *      JSON string.
     *
     * @param attributes The attributes to format.
     *
     * @return The attributes formatted as a string.
     */
    function _format(
        Attributes memory attributes
    ) internal pure returns (string memory) {
        // Declare variables for storing the two halves of the JSON string.
        // This is necessary due to constraints on stack pressure.
        string memory a;
        string memory b;

        // Render the first half of the JSON string.
        {
            a = string.concat(
                '[{"trait_type":"Seed","value":"',
                attributes.seed,
                '"},{"trait_type":"Tempo","value":"',
                attributes.tempo,
                '"},{"trait_type":"Vibe","value":"',
                attributes.vibe,
                '"},{"trait_type":"Root","value":"',
                attributes.root,
                '"},{"trait_type":"Style","value":"',
                attributes.style
            );
        }

        // Render the second half of the JSON string.
        {
            b = string.concat(
                '"},{"trait_type":"Arrow","value":"',
                attributes.arrow,
                '"},{"trait_type":"Color","value":"',
                attributes.color,
                '"},{"trait_type":"Tone","value":"',
                attributes.tone,
                '"},{"trait_type":"Creator","value":"',
                attributes.creator
            );
        }

        // Concatenate the two halves and return the result.
        return string.concat(a, b, '"}]');
    }

    /**
     * @dev Internal pure function for deconstructing a supplied seed into
     *      its constituent attributes, represented by an Attributes struct.
     *
     * @param seed The provided seed.
     *
     * @return attributes The attributes represented by the seed.
     */
    function _getAttributes(
        bytes32 seed
    ) internal pure returns (
        Attributes memory attributes
    ) {
        // Encode the seed as a hex string and store it as the seed attribute.
        attributes.seed = uint256(seed).toHexString(32);

        // Derive the tempo attribute from the seed.
        attributes.tempo = (
            (uint256(uint8(seed[0])) + 192) % 128 + 64
        ).toString();

        // Derive the vibe attribute from the seed.
        attributes.vibe = ["2", "3", "4", "6"][uint8(seed[1]) >> 6];

        // Derive the root attribute from the seed.
        attributes.root = [
            unicode"E₁",
            unicode"F₁",
            unicode"F♯₁/G♭₁",
            unicode"G₁",
            unicode"G♯₁/A♭₁",
            unicode"A₁",
            unicode"A♯₁/B♭₁",
            unicode"B₁",
            unicode"C₂",
            unicode"C♯₂/D♭₂",
            unicode"D₂",
            unicode"D♯₂/E♭₂",
            unicode"E₂",
            unicode"F₂",
            unicode"F♯₂/G♭₂",
            unicode"G₂"
        ][uint8(seed[2]) >> 4];

        // Derive the style attribute from the seed.
        attributes.style = (uint8(seed[11]) & 0x0f) == 15
            ? "16"
            : (uint256(uint8(seed[7])) >> 4).toString();

        // Derive the arrow attribute from the seed.
        attributes.arrow = [
            unicode"↵",
            unicode"↙",
            unicode"↵",
            unicode"↜",
            unicode"↩",
            unicode"↵",
            unicode"⇇",
            unicode"⇐",
            unicode"↵",
            unicode"⇤",
            unicode"⇦",
            unicode"↵",
            unicode"⏎",
            unicode"↵",
            unicode"◀",
            unicode"⤶"
        ][uint8(seed[8]) >> 4];

        // Derive the color attribute from the seed.
        attributes.tone = uint256(
            (uint8(seed[10]) % 16 == 0) && (uint8(seed[11]) >> 4 < 4)
                ? uint8(seed[11]) >> 4
                : 0
        ).toString();

        // Derive the color attribute from the seed.
        uint8 startingColorKey = uint8(seed[10]);
        if (startingColorKey < 189) {
            attributes.color = "#000000";
        } else if (startingColorKey < 205) {
            attributes.color = "#ffffff";
        } else if (startingColorKey < 221) {
            attributes.color = "#ff0000";
        } else if (startingColorKey < 237) {
            attributes.color = "#00ff00";
        } else if (startingColorKey < 253) {
            attributes.color = "#0000ff";
        } else if (startingColorKey < 254) {
            attributes.color = "#ffff00";
        } else if (startingColorKey < 255) {
            attributes.color = "#ff00ff";
        } else {
            attributes.color = "#00ffff";
        }

        // Derive the creator attribute from the seed.
        attributes.creator = address(uint160(uint256(seed))).toHexString();

        // Return the derived attributes.
        return attributes;
    }
}

File 2 of 2 : dependencies.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
abstract contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor() {
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory);

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector);

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
            assembly {
                revert(add(32, reason), mload(reason))
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) _revert(MintZeroQuantity.selector);

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) _revert(MintToZeroAddress.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        _revert(TransferToNonERC721ReceiverImplementer.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                       APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_approve(to, tokenId, false)`.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _approve(to, tokenId, false);
    }

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector);
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

interface IENS {
    function resolver(bytes32 node) external view returns (IResolver);
}

interface IResolver {
    function addr(bytes32 node) external view returns (address);
}

interface IENSReverseRegistrar {
    function setName(string calldata name) external;
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

/**
 * @dev Library for interacting with the Ret_rn data contract.
 */
library DataContract {
    using Base64 for bytes;

    function bytes32ToStringRepresentationInBytes32(bytes32 x) public pure returns (bytes32 y, bytes32 z) {
        bytes memory hexChar = bytes("0123456789abcdef");
        bytes memory str = new bytes(64);

        for (uint256 i = 0; i < 32; i++) {
            bytes1 b = bytes1(uint8(uint256(x) / (2**(8*(31 - i)))));
            str[i*2] = bytes1(uint8(hexChar[uint256(uint8(b)/16)]));
            str[1+i*2] = bytes1(uint8(hexChar[uint256(uint8(b)%16)]));
        }

        (y, z) = abi.decode(str, (bytes32, bytes32));
    }

    function encode(address dataContract, bytes32 seed) internal view returns (string memory) {
        (bytes32 y, bytes32 z) = bytes32ToStringRepresentationInBytes32(seed);

        bytes memory data = new bytes(19466);

        assembly {
            extcodecopy(dataContract, add(data, 0x20), 1, 19466)
            mstore(add(data, add(0x20, 894)), y)
            mstore(add(data, add(0x40, 894)), z)
        }

        return data.encode();
    }
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 9999999
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyRevealed","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BurnRefundFailed","type":"error"},{"inputs":[],"name":"FinalizationFailed","type":"error"},{"inputs":[],"name":"InvalidCommitMessage","type":"error"},{"inputs":[],"name":"InvalidMintValue","type":"error"},{"inputs":[],"name":"MintCompleted","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintPhaseNotComplete","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PreReveal","type":"error"},{"inputs":[],"name":"RandomnessNotAvailable","type":"error"},{"inputs":[],"name":"RevealAlreadyPrepared","type":"error"},{"inputs":[],"name":"RevealExpired","type":"error"},{"inputs":[],"name":"RevealNotPrepared","type":"error"},{"inputs":[],"name":"RevealNotReady","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"firstAvailableRevealBlockNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastAvailableRevealBlockNumber","type":"uint256"}],"name":"Prepare","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"finalizedSeed","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"finalizedMaximumSupply","type":"uint256"}],"name":"Reveal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"author","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burnUnrevealedAndRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"explore","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"seed","type":"bytes32"}],"name":"explore","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"seed","type":"bytes32"}],"name":"germinate","outputs":[{"internalType":"string","name":"tempo","type":"string"},{"internalType":"string","name":"vibe","type":"string"},{"internalType":"string","name":"root","type":"string"},{"internalType":"string","name":"style","type":"string"},{"internalType":"string","name":"arrow","type":"string"},{"internalType":"string","name":"color","type":"string"},{"internalType":"string","name":"tone","type":"string"},{"internalType":"string","name":"creator","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getSeed","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalSeed","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"image","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintComplete","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepareReveal","outputs":[{"internalType":"uint256","name":"firstAvailableRevealBlockNumber","type":"uint256"},{"internalType":"uint256","name":"lastAvailableRevealBlockNumber","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"commitMessage","type":"string"}],"name":"reveal","outputs":[{"internalType":"bytes32","name":"finalizedSeed","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealEntropyBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"}]

604060e081523462005eda576000808055620cae8d60eb1b61010052600360e0526200002c602362005edf565b60e05161010020825190602090826200005383820192836040916000825260208201520190565b039262000069601f199485810183528262005f30565b519020620000bf620000cc865184810190620000a2816200009584600490633061676560e01b81520190565b0388810183528262005f30565b519020875192839186830195869091604092825260208201520190565b0385810183528262005f30565b51902060a0528351620cae8d60eb1b82820190815290620000f18160038401620000bf565b51902084516200011481620000bf85820194856040916000825260208201520190565b519020620000bf6200013f865184810190620000a281620000958460039062656e7360e81b81520190565b519020620000bf6200016e865184810190620000a2816200009584600790667265766572736560c81b81520190565b5190208451630178b8bf60e01b81526004810182905282816024816e0c2e074ec69a0dfb2997ba6c7d2e1e5afa90811562005e75578390869262005eb3575b508651631d9dabef60e11b815260048101939093529091908180602481015b038160018060a01b038096165afa90811562005e7557859162005e7f575b5016803b1562005e7b57845163c47f002760e01b815260206004820152600f60248201526e0e4cae9c50d53df711ee4dc5ccae8d608b1b60448201529084908290606490829084905af1801562005e755762005e57575b5062005de98451918201928262005ddc85614c16906b3005acc09c01c0492c9cf9ff60a11b81527f3c21646f637479706568746d6c3e3c7469746c653e5265742623383632393b72600c8201527f6e3c2f7469746c653e3c6d65746120636f6e74656e743d30616765206e616d65602c8201527f3d617574686f723e3c6c696e6b20687265663d22646174613a696d6167652f73604c8201527f76672b786d6c3b6261736536342c50484e325a79423261575633516d39345053606c8201527f4977494441674d544177494445774d43496765473173626e4d39496d68306448608c8201527f41364c79393364336375647a4d7562334a6e4c7a49774d44417663335a6e496a60ac8201527f344b49434138636d566a6443423361575230614430694d5441774969426f5a5760cc8201527f6c6e61485139496a45774d4349675a6d6c7362443069596d786859327369494360ec8201527f382b436941675048526c65485167654430694e54456c49694235505349324d4361010c8201527f556949475a76626e517463326c365a5430694d544577496942305a5868304c5761012c8201527f467559326876636a306962576c6b5a47786c4969426d6157787350534a73615761014c8201527f646f6447647959586b694947527662576c75595735304c574a6863325673615761016c8201527f356c50534a6a5a573530636d46734969426d623235304c575a6862576c73655461018c8201527f306951584a70595777695069596a4f4459794f5473384c33526c6548512b436a6101ac8201527f777663335a6e50673d3d2272656c3d69636f6e20747970653d696d6167652f736101cc8201527f76672b786d6c3e3c7374796c653e626f64797b6261636b67726f756e642d636f6101ec8201527f6c6f723a233030303b6865696768743a313030253b77696474683a313030253b61020c8201527f6d617267696e3a303b70616464696e673a303b6f766572666c6f773a6869646461022c8201527f656e7d627574746f6e7b6865696768743a31303076683b77696474683a31303061024c8201527f76773b706f736974696f6e3a72656c61746976653b646973706c61793a666c6561026c8201527f783b616c69676e2d6974656d733a63656e7465723b6a7573746966792d636f6e61028c8201527f74656e743a63656e7465723b6261636b67726f756e643a3020303b626f7264656102ac8201527f723a6e6f6e657d23657b706f736974696f6e3a6162736f6c7574653b746f703a6102cc8201527f3530253b6c6566743a3530253b666f6e742d73697a653a636c616d702831656d6102ec8201527f2c353176772c3530307078293b7472616e73666f726d3a7472616e736c61746561030c8201527f282d3530252c2d353025293b636f6c6f723a236433643364337d3c2f7374796c61032c8201527f653e3c627574746f6e2069643d5f3e3c7370616e2069643d653e3c2f7370616e61034c8201527f3e3c2f627574746f6e3e3c7363726970743e76617220736565643d223078386161036c8201527f306134303931326632363237643963633366333762343933336630663135363761038c8201527f306335323230363130653539333638353633346238353234383264666464222c6103ac8201527f73793d5b383632392c383630312c383632392c383630342c383631372c3836326103cc8201527f392c383634372c383635362c383632392c383637362c383637382c383632392c6103ec8201527f393136362c383632392c393636342c31303535305d3b66756e6374696f6e206761040c8201527f65726d696e6174652865297b76617220242c743d7061727365496e7428652e7361042c8201527f6c69636528322c34292c3136292c5f3d7061727365496e7428652e736c69636561044c8201527f283634292c3136292c6e3d28742b31393229253132382b36342c693d5b322c3361046c8201527f2c342c365d5b7061727365496e7428652e736c69636528342c35292c3136293e61048c8201527f3e325d2c633d5b322c332c342c325d5b7061727365496e7428652e736c6963656104ac8201527f28342c35292c31362925345d2c6c3d5b322c332c342c365d5b7061727365496e6104cc8201527f7428652e736c69636528352c36292c3136293e3e325d2c723d5b322c332c342c6104ec8201527f325d5b7061727365496e7428652e736c69636528352c36292c31362925345d2c61050c8201527f6f3d5b34312e322c34332e36352c34362e32352c34392c35312e39312c35352c61052c8201527f35382e32372c36312e37342c36352e34312c36392e332c37332e34322c37372e61054c8201527f37382c38322e34312c38372e33312c39322e352c39385d5b7061727365496e7461056c8201527f28652e736c69636528362c37292c3136295d2c663d5b2d322c302c2d322c302c61058c8201527f332c332c372c31302c31322c31322c31322c31352e30352c31352e30352c31396105ac8201527f2e312c31392e312c32342e315d5b7061727365496e7428652e736c69636528376105cc8201527f2c38292c3136295d2c753d5b332c31322c2d322c302c332c332c352c372c31306105ec8201527f2c31302c31322c31352e30352c31352e30352c31372e30352c31392e312c323461060c8201527f2e315d5b7061727365496e7428652e736c69636528382c39292c3136295d2c7061062c8201527f3d5b2d322c302c2d322c302c332c352c372c31302c31322c31322c31352e303561064c8201527f2c31352e30352c31322c31392e312c32342e312c31325d5b7061727365496e7461066c8201527f28652e736c69636528392c3130292c3136295d2c623d5b5b382c335d2c5b382c61068c8201527f355d2c5b31362c355d2c5b31362c375d2c5b31362c395d2c5b31362c31305d2c6106ac8201527f5b31362c31315d2c5b31362c31335d5d2c6d3d5f65285f64282e2e2e625b70616106cc8201527f727365496e7428652e736c6963652831302c3131292c3136293e3e315d292c746106ec8201527f292c543d5f65285f64282e2e2e625b7061727365496e7428652e736c6963652861070c8201527f31312c3132292c3136293e3e315d292c5f292c673d5b5b665d2c5b662c755d2c61072c8201527f5b662c752c705d2c5b662c662c752c705d2c5b662c752c702c665d2c5b662c7561074c8201527f2c752c662c705d2c5b662c752c662c662c755d2c5b662c752c302c702c305d2c61076c8201527f5b662c305d2c5b662c752c305d2c5b662c302c752c702c305d2c5b302c662c6661078c8201527f2c302c755d2c5b302c662c752c662c752c705d2c5b302c662c752c752c302c666107ac8201527f5d2c5b302c662c752c662c662c755d2c5b662c302c302c662c302c755d2c5d5b6107cc8201527f7061727365496e7428652e736c6963652831322c3133292c3136295d2c413d5b6107ec8201527f5b302c312c315d2c5b302c315d2c5b302c325d2c5b312c305d2c5b312c325d2c61080c8201527f5b322c302c315d2c5b322c312c315d2c5b302c312c302c325d2c5b322c305d2c61082c8201527f5b322c312c325d2c5b302c322c315d2c5b302c312c305d2c5b312c322c325d2c61084c8201527f5b302c302c315d2c5b302c312c325d2c5b302c302c312c325d5d5b706172736561086c8201527f496e7428652e736c6963652831332c3134292c3136295d2c763d70617273654961088c8201527f6e7428652e736c6963652831342c3135292c3136293e3e322c563d70617273656108ac8201527f496e7428652e736c6963652831342c3135292c31362925342b332c793d7061726108cc8201527f7365496e7428652e736c6963652831352c3136292c3136293e3e322c683d70616108ec8201527f727365496e7428652e736c6963652831352c3136292c31362925342b332c713d61090c8201527f7061727365496e7428652e736c6963652831362c3137292c3136292c523d706161092c8201527f727365496e7428652e736c6963652831372c3138292c3136293e3e322c783d7061094c8201527f61727365496e7428652e736c6963652831372c3138292c31362925342c423d7361096c8201527f795b7061727365496e7428652e736c6963652831382c3139292c3136295d2c6b61098c8201527f3d322b7061727365496e7428652e736c6963652831392c3230292c3136292c476109ac8201527f3d7061727365496e7428652e736c6963652832302c3232292c3136292c453d706109cc8201527f61727365496e7428652e736c6963652832322c3233292c3136292c773d343e706109ec8201527f61727365496e7428652e736c6963652832332c3235292c3136293f7061727365610a0c8201527f496e7428652e736c6963652832332c3235292c3136293a302c433d31353d3d3d610a2c8201527f7061727365496e7428652e736c6963652832352c3236292c3136293b72657475610a4c8201527f726e20473c3138393f243d2223303030303030223a473c3230353f243d222366610a6c8201527f6666666666223a473c3232313f243d2223666630303030223a473c3233373f24610a8c8201527f3d2223303066663030223a473c3235333f243d2223303030306666223a473c32610aac8201527f35343f28243d2223666666663030222c5f662829293a473c3235353f28243d22610acc8201527f23666630306666222c5f662829293a28243d2223303066666666222c5f662829610aec8201527f292c646f63756d656e742e676574456c656d656e744279496428226522292e69610b0c8201527f6e6e657248544d4c3d222623222b422b223b222c5f672824292c7b736565643a610b2c8201527f652c743a6e2c623a36302f6e2c703a692c65313a632c65323a6c2c65333a722c610b4c8201527f663a6f2c72313a6d2c72323a542c66623a742c6c623a5f2c78323a743e3e373d610b6c8201527f3d3126266e3c3134352c6531733a762c6531693a562c6532733a792c713a672c610b8c8201527f6f713a412c6532693a682c6533733a522c6534733a782c643a712c753a422c73610bac8201527f713a6b2c736b3a472c73633a242c737a3a452c62743a772c683a437d7d66756e610bcc8201527f6374696f6e205f6428652c24297b76617220743d5b5d2c5f3d5b5d2c6e3d5b5d610bec8201527f2c693d652d242c633d303b666f72286e2e707573682824293b5f2e7075736828610c0c8201527f4d6174682e666c6f6f7228692f6e5b635d29292c6e2e707573682869256e5b63610c2c8201527f5d292c693d6e5b635d2c21286e5b632b3d315d3c3d31293b293b72657475726e610c4c8201527f205f2e707573682869292c2166756e6374696f6e20652824297b6966282d313d610c6c8201527f3d3d2429742e70757368282131293b656c7365206966282d323d3d3d2429742e610c8c8201527f70757368282130293b656c73657b666f722876617220693d303b693c5f5b245d610cac8201527f3b692b2b296528242d31293b30213d3d6e5b245d26266528242d32297d7d2863610ccc8201527f292c747d66756e6374696f6e205f6528652c24297b72657475726e2024253d65610cec8201527f2e6c656e6774682c652e736c6963652824292e636f6e63617428652e736c6963610d0c8201527f6528302c2429297d66756e6374696f6e205f6628297b646f63756d656e742e67610d2c8201527f6574456c656d656e744279496428225f22292e7374796c652e636f6c6f723d22610d4c8201527f23666666666666227d66756e6374696f6e205f672865297b646f63756d656e74610d6c8201527f2e626f64792e7374796c652e6261636b67726f756e64436f6c6f723d657d6c65610d8c8201527f74206c633d2223666630303030222c73783d7061727365496e7428736565642e610dac8201527f736c6963652831382c3139292c3136292c63783d303b66756e6374696f6e205f610dcc8201527f6828652c242c742c5f3d31297b6c6574206e3d6c633b6c633d22233030666630610dec8201527f30223d3d3d6c633f2223303030306666223a2223303030306666223d3d3d6c63610e0c8201527f3f2223666630303030223a2223303066663030223b76617220693d736574496e610e2c8201527f74657276616c2866756e6374696f6e28297b242e63757272656e7454696d653e610e4c8201527f3d652b2e30352626285f67286e292c646f63756d656e742e676574456c656d65610e6c8201527f6e744279496428225f22292e7374796c652e636f6c6f723d226c696768746772610e8c8201527f6179222c2863782b3d5f293e3d742e737126262863783d30292c303d3d3d6378610eac8201527f26262873783d2873782b742e737a292573792e6c656e6774682c646f63756d65610ecc8201527f6e742e676574456c656d656e744279496428226522292e696e6e657248544d4c610eec8201527f3d222623222b73795b73785d2b223b22292c636c656172496e74657276616c28610f0c8201527f6929297d2c3530297d66756e6374696f6e205f6928652c24297b72657475726e610f2c8201527f20652a4d6174682e706f7728322c242f3132297d66756e6374696f6e205f6a28610f4c8201527f652c242c742c5f2c6e2c692c632c6c2c722c6f3d31297b742e666f7245616368610f6c8201527f28287b6f7363696c6c61746f723a742c6861726d6f6e69633a662c766f6c756d610f8c8201527f653a757d293d3e7b76617220703d5f2a663b742e6672657175656e63792e7365610fac8201527f7456616c7565417454696d6528702c69292c742e6672657175656e63792e7365610fcc8201527f7456616c7565417454696d6528702c63292c742e6672657175656e63792e6c69610fec8201527f6e65617252616d70546f56616c7565417454696d65286e2a662c6c293b76617261100c8201527f20623d242e6372656174654761696e28293b622e6761696e2e73657456616c7561102c8201527f65417454696d65282e3030312c69292c622e6761696e2e6c696e65617252616d61104c8201527f70546f56616c7565417454696d65282e32352a752a6f2c692b2e3031292c622e61106c8201527f6761696e2e6c696e65617252616d70546f56616c7565417454696d65282e332a61108c8201527f752a6f2c692b722d2e303035292c622e6761696e2e6c696e65617252616d70546110ac8201527f6f56616c7565417454696d6528302c692b72292c742e636f6e6e6563742862296110cc8201527f2c622e636f6e6e6563742865292c742e73746172742869292c742e73746f70286110ec8201527f692b72292c742e6f6e656e6465643d66756e6374696f6e28297b622e6469736361110c8201527f6f6e6e6563742865292c742e646973636f6e6e6563742862297d7d297d66756e61112c8201527f6374696f6e205f6b28652c242c742c5f2c6e2c692c632c6c2c722c6f297b742e61114c8201527f666f724561636828287b6f7363696c6c61746f723a742c6861726d6f6e69633a61116c8201527f662c766f6c756d653a757d293d3e7b76617220703d242e63726561746547616961118c8201527f6e28292c623d242e6372656174654761696e28293b742e6672657175656e63796111ac8201527f2e73657456616c7565417454696d65285f2a662c72292c702e6761696e2e73656111cc8201527f7456616c7565417454696d65286e2a752c72292c622e6761696e2e73657456616111ec8201527f6c7565417454696d6528692a752c72292c702e6761696e2e6c696e656172526161120c8201527f6d70546f56616c7565417454696d6528632a752c722b6f292c622e6761696e2e61122c8201527f6c696e65617252616d70546f56616c7565417454696d65286c2a752c722b6f2961124c8201527f3b766172206d3d242e63726561746544656c617928293b6d2e64656c6179546961126c8201527f6d652e73657456616c7565417454696d65282e30342c72292c742e636f6e6e6561128c8201527f63742870292c742e636f6e6e656374286d292c702e636f6e6e6563742865292c6112ac8201527f622e636f6e6e6563742865292c742e73746172742872292c742e73746f7028726112cc8201527f2b6f292c742e6f6e656e6465643d66756e6374696f6e28297b702e646973636f6112ec8201527f6e6e6563742865292c622e646973636f6e6e6563742865292c742e646973636f61130c8201527f6e6e65637428292c6d2e646973636f6e6e65637428297d7d297d66756e63746961132c8201527f6f6e205f6c28652c242c742c5f2c6e2c692c632c6c2c722c6f297b742e666f7261134c8201527f4561636828287b6f7363696c6c61746f723a742c6861726d6f6e69633a662c7661136c8201527f6f6c756d653a757d293d3e7b76617220703d5f2a663b742e6672657175656e6361138c8201527f792e73657456616c7565417454696d6528702c63292c742e6672657175656e636113ac8201527f792e73657456616c7565417454696d6528702c632b6f293b76617220623d242e6113cc8201527f6372656174654761696e28293b622e6761696e2e73657456616c7565417454696113ec8201527f6d652831652d342a752c63292c622e6761696e2e6c696e65617252616d70546f61140c8201527f56616c7565417454696d65282e342a752c632b2e3031292c622e6761696e2e6c61142c8201527f696e65617252616d70546f56616c7565417454696d65282e332a752c632b6f2d61144c8201527f2e3035292c622e6761696e2e6c696e65617252616d70546f56616c756541745461146c8201527f696d65282e312a752c632b6f2d2e3032292c622e6761696e2e6578706f6e656e61148c8201527f7469616c52616d70546f56616c7565417454696d65282e3030312a752c632b6f6114ac8201527f293b766172206d3d242e63726561746542697175616446696c74657228293b6d6114cc8201527f2e747970653d226c6f7770617373222c6d2e6672657175656e63792e736574566114ec8201527f616c7565417454696d65286e2c63292c6d2e6672657175656e63792e7365745661150c8201527f616c7565417454696d65286e2c6c292c6d2e6672657175656e63792e6c696e6561152c8201527f617252616d70546f56616c7565417454696d6528692c72292c742e636f6e6e6561154c8201527f6374286d292c6d2e636f6e6e6563742862292c622e636f6e6e6563742865292c61156c8201527f742e73746172742863292c742e73746f7028632b6f292c742e6f6e656e64656461158c8201527f3d66756e6374696f6e28297b622e646973636f6e6e6563742865292c6d2e64696115ac8201527f73636f6e6e6563742862292c742e646973636f6e6e656374286d297d7d297d666115cc8201527f756e6374696f6e205f6d28652c242c742c5f2c6e2c692c632c6c3d2131297b6c6115ec8201527f657420723d692f633b742e666f724561636828287b6f7363696c6c61746f723a61160c8201527f742c6861726d6f6e69633a6f2c766f6c756d653a667d293d3e7b76617220753d61162c8201527f5f2a6f3b742e6672657175656e63792e73657456616c7565417454696d65287561164c8201527f2c6e292c742e6672657175656e63792e73657456616c7565417454696d65287561166c8201527f2c6e2b69293b76617220703d242e6372656174654761696e28293b702e67616961168c8201527f6e2e73657456616c7565417454696d652831652d342a662c6e293b666f72286c6116ac8201527f657420623d303b623c633b2b2b62297b6c6574206d3d6c3f28622b31292f28336116cc8201527f2a632f32293a312c543d6e2b722a623b702e6761696e2e73657456616c7565416116ec8201527f7454696d652831652d342a662c54292c702e6761696e2e6c696e65617252616d61170c8201527f70546f56616c7565417454696d65282e31352a662a6d2a632f322c542b2e303161172c8201527f292c702e6761696e2e6578706f6e656e7469616c52616d70546f56616c75654161174c8201527f7454696d65282e3037352a662a6d2a632f322c542b332a722f342d2e3035292c61176c8201527f702e6761696e2e6c696e65617252616d70546f56616c7565417454696d65282e8061178c8301527f3030312a662c542b332a722f34292c702e6761696e2e6c696e65617252616d706117ac8301527f546f56616c7565417454696d65282e3030312a662c542b722d2e3032297d702e6117cc8301527f6761696e2e6578706f6e656e7469616c52616d70546f56616c7565417454696d806117ec8401527f65282e3030312a662c6e2b69292c742e636f6e6e6563742870292c702e636f6e8061180c8501527f6e6563742865292c742e7374617274286e292c742e73746f70286e2b69292c74908161182c8601527f2e6f6e656e6465643d66756e6374696f6e28297b702e646973636f6e6e656374928361184c8701527f2865292c742e646973636f6e6e6563742870297d7d297d66756e6374696f6e20948561186c8801527f5f6e28652c242c742c5f2c6e2c692c63297b633c34262628632a3d32293b6c6561188c8801527f74206c3d5b302c31322c31392c32342c33312c33362c302c31322c31392c32346118ac8801527f2c33312c33365d2c723d692f633b742e666f724561636828287b6f7363696c6c6118cc8801527f61746f723a742c6861726d6f6e69633a6f2c766f6c756d653a667d293d3e7b766118ec8801527f617220753d5f2a6f3b742e6672657175656e63792e73657456616c756541745461190c8801527f696d6528752c6e293b76617220703d242e6372656174654761696e28293b702e61192c8801527f6761696e2e73657456616c7565417454696d652831652d342a662c6e293b666f61194c8801527f72286c657420623d303b623c633b2b2b62297b6c6574206d3d6e2b722a623b7461196c8801527f2e6672657175656e63792e73657456616c7565417454696d65285f6928752c6c61198c8801527f5b625d292c6d292c702e6761696e2e73657456616c7565417454696d652831656119ac8801527f2d342a662c6d292c702e6761696e2e6c696e65617252616d70546f56616c75656119cc8801527f417454696d65282e31332a662a2831322d62292f31322c6d2b2e3031292c702e6119ec88015281611a0c8801527f65282e3036352a662a2831322d62292f31322c6d2b372a722f382d2e3035292c611a2c880152611a4c8701527f3030312a662c6d2b372a722f38292c702e6761696e2e6c696e65617252616d70611a6c8701527f546f56616c7565417454696d65282e3030312a662c6d2b722d2e3032297d702e611a8c870152611aac860152611acc850152611aec840152611b0c830152611b2c8201527f5f6f28652c242c742c5f2c6e2c692c632c6c2c722c6f2c663d31297b742e666f611b4c8201527f724561636828287b6f7363696c6c61746f723a742c6861726d6f6e69633a752c611b6c8201527f766f6c756d653a707d293d3e7b76617220623d5f2a753b742e6672657175656e611b8c8201527f63792e73657456616c7565417454696d6528622c63292c742e6672657175656e611bac8201527f63792e73657456616c7565417454696d6528622c632b6f293b766172206d3d24611bcc8201527f2e6372656174654761696e28293b6d2e6761696e2e73657456616c7565417454611bec8201527f696d65282e31352a702a662c63292c6d2e6761696e2e6c696e65617252616d70611c0c8201527f546f56616c7565417454696d65282e32352a702a662c632b6f2d2e303035292c611c2c8201527f6d2e6761696e2e6c696e65617252616d70546f56616c7565417454696d652830611c4c8201527f2c632b6f293b76617220543d242e63726561746542697175616446696c746572611c6c8201527f28293b542e747970653d226869676870617373222c542e6672657175656e6379611c8c8201527f2e73657456616c7565417454696d65286e2c63292c542e6672657175656e6379611cac8201527f2e73657456616c7565417454696d65286e2c6c292c542e6672657175656e6379611ccc8201527f2e6c696e65617252616d70546f56616c7565417454696d6528692c72292c742e611cec8201527f636f6e6e6563742854292c542e636f6e6e656374286d292c6d2e636f6e6e6563611d0c8201527f742865292c742e73746172742863292c742e73746f7028632b6f292c742e6f6e611d2c8201527f656e6465643d66756e6374696f6e28297b6d2e646973636f6e6e656374286529611d4c8201527f2c542e646973636f6e6e656374286d292c742e646973636f6e6e656374285429611d6c8201527f7d7d297d66756e6374696f6e205f7028652c242c742c5f3d31297b766172206e611d8c8201527f3d242e6372656174654f7363696c6c61746f7228292c693d242e637265617465611dac8201527f4761696e28293b6e2e636f6e6e6563742869292c692e636f6e6e656374286529611dcc8201527f2c6e2e6672657175656e63792e73657456616c7565417454696d65283133302c611dec8201527f74292c6e2e6672657175656e63792e6578706f6e656e7469616c52616d70546f611e0c8201527f56616c7565417454696d652833302c742b2e32293b76617220633d742b2e3031611e2c8201527f3b692e6761696e2e73657456616c7565417454696d65282e372a5f2c74292c69611e4c8201527f2e6761696e2e73657456616c7565417454696d65282e372a5f2c63292c692e67611e6c8201527f61696e2e6578706f6e656e7469616c52616d70546f56616c7565417454696d65611e8c8201527f282e3030312a5f2c742b2e32292c6e2e73746172742874292c6e2e73746f7028611eac8201527f742b2e32293b766172206c3d242e6372656174654f7363696c6c61746f722829611ecc8201527f2c723d242e6372656174654761696e28293b6c2e636f6e6e6563742872292c72611eec8201527f2e636f6e6e6563742865292c6c2e6672657175656e63792e73657456616c7565611f0c8201527f417454696d652836352c74292c6c2e6672657175656e63792e6578706f6e656e611f2c8201527f7469616c52616d70546f56616c7565417454696d652831352c742b2e32292c72611f4c8201527f2e6761696e2e73657456616c7565417454696d65282e32352c74292c722e6761611f6c8201527f696e2e73657456616c7565417454696d65282e322c63292c722e6761696e2e65611f8c8201527f78706f6e656e7469616c52616d70546f56616c7565417454696d65282e303031611fac8201527f2c742b2e32292c6c2e73746172742874292c6c2e73746f7028742b2e32293b66611fcc8201527f6f7228766172206f3d742c663d242e73616d706c65526174652c753d242e6372611fec8201527f6561746542756666657228312c662c242e73616d706c6552617465292c703d7561200c8201527f2e6765744368616e6e656c446174612830292c623d303b623c663b622b2b297061202c8201527f5b625d3d322a4d6174682e72616e646f6d28292d313b766172206d3d242e637261204c8201527f65617465427566666572536f7572636528293b6d2e6275666665723d753b766161206c8201527f7220543d242e6372656174654761696e28293b6d2e636f6e6e6563742854292c61208c8201527f542e636f6e6e6563742865292c542e6761696e2e73657456616c7565417454696120ac8201527f6d65282e322c6f292c542e6761696e2e73657456616c7565417454696d65282e6120cc8201527f312c6f2b2e3031292c542e6761696e2e6578706f6e656e7469616c52616d70546120ec8201527f6f56616c7565417454696d65282e3030312c6f2b2e31292c6d2e73746172742861210c8201527f6f292c6d2e73746f70286f2b2e31293b76617220673d736574496e746572766161212c8201527f6c2866756e6374696f6e28297b242e63757272656e7454696d653e3d7426262861214c8201527f5f6728222330303030303022292c636c656172496e74657276616c286729297d61216c8201527f2c3235297d66756e6374696f6e205f7128652c242c74297b666f72287661722061218c8201527f5f3d242e73616d706c65526174652c6e3d242e637265617465427566666572286121ac8201527f312c5f2c242e73616d706c6552617465292c693d6e2e6765744368616e6e656c6121cc8201527f446174612830292c633d303b633c5f3b632b2b29695b635d3d322a4d6174682e6121ec8201527f72616e646f6d28292d313b766172206c3d242e6372656174654275666665725361220c8201527f6f7572636528293b6c2e6275666665723d6e3b76617220723d242e637265617461222c8201527f6542697175616446696c74657228293b722e747970653d22686967687061737361224c8201527f222c722e6672657175656e63792e76616c75653d3665333b766172206f3d242e61226c8201527f6372656174654761696e28293b6c2e636f6e6e6563742872292c722e636f6e6e61228c8201527f656374286f292c6f2e636f6e6e6563742865292c6f2e6761696e2e73657456616122ac8201527f6c7565417454696d65282e312c74292c6f2e6761696e2e6578706f6e656e74696122cc8201527f616c52616d70546f56616c7565417454696d65282e3030312c742b2e3038292c6122ec8201527f6c2e73746172742874292c6c2e73746f7028742b2e3038297d66756e6374696f61230c8201527f6e205f7328652c242c742c5f2c6e3d2131297b666f722876617220693d242e7361232c8201527f616d706c65526174652c633d242e63726561746542756666657228312c692c2461234c8201527f2e73616d706c6552617465292c6c3d632e6765744368616e6e656c446174612861236c8201527f30292c723d303b723c693b722b2b296c5b725d3d322a4d6174682e72616e646f61238c8201527f6d28292d313b766172206f3d242e637265617465427566666572536f757263656123ac8201527f28293b6f2e6275666665723d633b76617220663d242e637265617465426971756123cc8201527f616446696c74657228293b662e747970653d226869676870617373222c662e666123ec8201527f72657175656e63792e76616c75653d6e3f3765333a353530303b76617220753d61240c8201527f242e6372656174654761696e28293b6f2e636f6e6e6563742866292c662e636f61242c8201527f6e6e6563742875292c752e636f6e6e6563742865293b76617220703d6e3f2e3161244c8201527f3a2e31353b752e6761696e2e73657456616c7565417454696d6528702c74292c61246c8201527f752e6761696e2e73657456616c7565417454696d65286e3f303a702c742b2e3061248c8201527f35292c6f2e73746172742874292c6f2e73746f7028742b5f297d66756e6374696124ac8201527f6f6e205f7428652c242c74297b666f7228766172205f3d242e73616d706c65526124cc8201527f6174652c6e3d242e63726561746542756666657228312c5f2c242e73616d706c6124ec8201527f6552617465292c693d6e2e6765744368616e6e656c446174612830292c633d3061250c8201527f3b633c5f3b632b2b29695b635d3d322a4d6174682e72616e646f6d28292d313b61252c8201527f766172206c3d242e637265617465427566666572536f7572636528293b6c2e6261254c8201527f75666665723d6e3b76617220723d242e63726561746542697175616446696c7461256c8201527f657228293b722e747970653d226869676870617373222c722e6672657175656e61258c8201527f63792e76616c75653d333530303b766172206f3d242e6372656174654761696e6125ac8201527f28293b6c2e636f6e6e6563742872292c722e636f6e6e656374286f292c6f2e636125cc8201527f6f6e6e6563742865292c742d3d2e322c6f2e6761696e2e73657456616c7565416125ec8201527f7454696d65282e3030312c74292c6f2e6761696e2e6578706f6e656e7469616c61260c8201527f52616d70546f56616c7565417454696d65282e30372c742b2e32292c6c2e737461262c8201527f6172742874292c6c2e73746f7028742b2e32297d66756e6374696f6e205f752861264c8201527f652c242c74297b666f7228766172205f3d242e6372656174654275666665725361266c8201527f6f7572636528292c6e3d242e63726561746542756666657228312c242e73616d61268c8201527f706c65526174652f31302c242e73616d706c6552617465292c693d242e6372656126ac8201527f6174654761696e28292c633d6e2e6765744368616e6e656c446174612830292c6126cc8201527f6c3d303b6c3c632e6c656e6774683b6c2b2b29635b6c5d3d322a4d6174682e726126ec8201527f616e646f6d28292d313b5f2e6275666665723d6e2c5f2e636f6e6e656374286961270c8201527f292c692e636f6e6e6563742865292c692e6761696e2e73657456616c7565417461272c8201527f54696d65282e342c74292c692e6761696e2e6578706f6e656e7469616c52616d61274c8201527f70546f56616c7565417454696d65282e322c742b2e3031292c692e6761696e2e61276c8201527f6578706f6e656e7469616c52616d70546f56616c7565417454696d65282e303161278c8201527f2c742b2e32292c5f2e73746172742874292c5f2e73746f7028742b2e32293b766127ac8201527f617220723d736574496e74657276616c2866756e6374696f6e28297b242e63756127cc8201527f7272656e7454696d653e3d742626285f6728222366666666666622292c636c656127ec8201527f6172496e74657276616c287229297d2c3235297d66756e6374696f6e205f762861280c8201527f65297b72657475726e2066756e6374696f6e2824297b72657475726e20652e6d61282c8201527f617028285b652c742c5f5d293d3e7b766172206e3d242e6372656174654f736361284c8201527f696c6c61746f7228293b72657475726e206e2e747970653d5b2273696e65222c61286c8201527f22747269616e676c65222c22737175617265222c22736177746f6f7468225d5b61288c8201527f655d2c7b6f7363696c6c61746f723a6e2c6861726d6f6e69633a742c766f6c756128ac8201527f6d653a5f7d7d297d7d636f6e737420643d5b5b5b332c312c2e325d2c5b322c336128cc8201527f2c2e30335d2c5b312c362c2e315d5d2c5b5b302c312c315d2c5b322c312c2e346128ec8201527f5d2c5b312c322c2e31355d2c5b332c342c2e31355d5d2c5b5b312c312c315d2c61290c8201527f5b302c322c2e335d2c5b302c332c2e30365d2c5b332c332c2e30325d2c5b332c61292c8201527f362c2e30315d5d2c5b5b302c312c315d2c5b332c312c2e30335d2c5b312c322c61294c8201527f2e3032355d2c5b302c342c2e3031365d2c5b312c342c2e3030385d2c5b312c3861296c8201527f2c2e3030325d5d2c5b5b332c312c315d2c5b312c322c2e365d2c5b332c342e3761298c8201527f352c2e31355d2c5b302c362c2e325d2c5b332c392e352c2e30355d2c5b332c386129ac8201527f2c2e315d5d2c5b5b332c312c2e335d2c5b312c312c315d2c5b312c332c2e335d6129cc8201527f2c5b312c372c2e345d5d2c5b5b302c312c315d2c5b302c322c2e335d2c5b302c6129ec8201527f322c2e355d2c5b332c332e35362c2e335d2c5b332c372e31322c2e325d5d5d2e612a0c8201527f6d6170285f76293b66756e6374696f6e205f7728652c242c742c5f2c6e297b6c612a2c8201527f657420693d303b696628303d3d3d652e647c7c343d3d3d652e647c7c31323d3d612a4c8201527f3d652e6429666f72286c657420633d5f3b633c5f2b3936302f652e742d2e3031612a6c8201527f3b632b3d3132302f652e742930213d3d6e26266925383d3d3026265f7428242c612a8c8201527f742c63292c692b3d312c5f7028242c742c303d3d3d6e2626633d3d3d5f3f633a612aac8201527f632d2e303033293b656c736520696628313d3d3d652e647c7c353d3d652e647c612acc8201527f7c31333d3d652e6429666f72286c6574206c3d5f3b6c3c5f2b3936302f652e74612aec8201527f2d2e30313b6c2b3d3234302f652e742930213d3d6e26266925343d3d3026265f612b0c8201527f7428242c742c6c292c692b3d312c5f7028242c742c303d3d3d6e26266c3d3d3d612b2c8201527f5f3f6c3a6c2d2e303033293b656c736520696628323d3d3d652e647c7c363d3d612b4c8201527f652e647c7c31343d3d3d652e647c7c31353d3d3d652e6429666f72286c657420612b6c8201527f723d5f3b723c5f2b3930302f652e742d2e30313b722b3d36302f652e74293021612b8c8201527f3d3d6e26266925383d3d3026265f7428242c742c72292c692b3d312c5f702824612bac8201527f2c742c303d3d3d6e2626723d3d3d5f3f723a722d2e303033293b656c73652069612bcc8201527f6628333d3d3d652e647c7c373d3d3d652e647c7c383d3d3d652e6429666f7228612bec8201527f6c6574206f3d5f3b6f3c5f2b3930302f652e742d2e30313b6f2b3d36302f652e612c0c8201527f742930213d3d6e26266925383d3d3026265f7428242c742c6f292c5f7028242c612c2c8201527f742c303d3d3d6e26266f3d3d3d5f3f6f3a6f2d2e303033292c6925323d3d3026612c4c8201527f26693c313526265f7028242c742c6f2b652e622a28312d312f652e70292d2e30612c6c8201527f30332c2e31292c692b3d313b656c736520696628393d3d3d652e6429666f7228612c8c8201527f6c657420663d5f3b663c5f2b3930302f652e742d2e30313b662b3d3132302f65612cac8201527f2e742930213d3d6e26266925383d3d3026265f7428242c742c66292c28692b3d612ccc8201527f312925323d3d303f5f7028242c742c662b652e622a28312d312f652e70292d2e612cec8201527f3030332c2e31293a5f7028242c742c66293b656c73652069662831303d3d3d65612d0c8201527f2e647c7c31313d3d3d652e6429666f72286c657420753d5f3b753c5f2b393030612d2c8201527f2f652e742d2e30313b752b3d36302f652e742930213d3d6e26266925383d3d30612d4c8201527f26265f7428242c742c75292c6925323d3d3026265f7028242c742c303d3d3d6e612d6c8201527f2626753d3d3d5f3f753a752d2e303033292c6925323d3d3126265f7028242c74612d8c8201527f2c752b652e622a28652e7025333d3d303f312f333a312f34292d2e303033292c612dac8201527f692b3d313b373d3d3d6e26265f7028242c742c5f2b3936302f652e74297d6675612dcc8201527f6e6374696f6e205f7828652c242c742c5f297b6c6574206e3d303b696628303d612dec8201527f3d3d652e647c7c323d3d3d652e647c7c31323d3d3d652e6429666f72286c6574612e0c8201527f20693d5f2b36302f652e743b693c5f2b3936302f652e743b692b3d3132302f65612e2c8201527f2e74296e25383d3d3326265f7428242c742c692b2e303031292c6e2b3d312c5f612e4c8201527f7528242c742c69293b656c736520696628313d3d3d652e647c7c31333d3d652e612e6c8201527f6429666f72286c657420633d5f2b3132302f652e743b633c5f2b3936302f652e612e8c8201527f743b632b3d3234302f652e74296e25343d3d3326265f7428242c742c632b2e30612eac8201527f3031292c6e2b3d312c5f7528242c742c63293b656c736520696628333d3d3d65612ecc8201527f2e647c7c383d3d3d652e647c7c31343d3d3d652e6429666f72286c6574206c3d612eec8201527f5f2b33302f652e743b6c3c5f2b3834302f652e743b6c2b3d36302f652e74296e612f0c8201527f25383d3d3326265f7428242c742c6c2b2e303031292c6e2b3d312c5f7528242c612f2c8201527f742c6c293b656c736520696628343d3d3d652e647c7c353d3d3d652e647c7c36612f4c8201527f3d3d652e647c7c373d3d3d652e6429666f72286c657420723d5f2b36302f652e612f6c8201527f743b723c5f2b3936302f652e743b722b3d3132302f652e74296e25383d3d3326612f8c8201527f265f7428242c742c722b2e303031292c6e26266e253825333d3d303f285f7528612fac8201527f242c742c722d652e622a28312f652e70292d2e3030332c2e31292c5f7528242c612fcc8201527f742c722b652e622a28333d3d3d652e703f322f333a2e35292d2e3030332c2e31612fec8201527f29293a5f7528242c742c72292c6e2b3d313b656c736520696628393d3d3d652e61300c8201527f6429666f72286c6574206f3d5f2b36302f652e743b6f3c5f2b3930302f652e7461302c8201527f3b6f2b3d3132302f652e74296e25383d3d3326266e3c313326265f7428242c7461304c8201527f2c6f2b2e303031292c286e2b3d31293c31332626286e25323d3d3126266e3c3161306c8201527f313f286e25333d3d3126265f7528242c742c6f2d652e622a28312f652e70292d61308c8201527f2e3030332c2e31292c5f7528242c742c6f2b652e622a28333d3d3d652e703f326130ac8201527f2f333a2e35292d2e3030332c2e3129293a5f7528242c742c6f2b652e622a28336130cc8201527f3d3d3d652e703f322f333a2e352929293b656c73652069662831303d3d3d652e6130ec8201527f6429666f72286c657420663d5f2b36302f652e743b663c5f2b3930302f652e7461310c8201527f3b662b3d36302f652e74296e25383d3d3326265f7428242c742c662b2e30303161312c8201527f292c286e2b3d31293c31352626286e25323d3d313f286e25333d3d3126265f7561314c8201527f28242c742c662d652e622a28312f652e70292d2e3030332c2e31292c5f75282461316c8201527f2c742c662b652e622a28333d3d3d652e703f322f333a2e35292d2e3030332c2e61318c8201527f3129293a5f7528242c742c662b652e622a28333d3d3d652e703f322f333a2e356131ac8201527f2929293b656c73652069662831313d3d3d652e6429666f72286c657420753d5f6131cc8201527f3b753c5f2b3930302f652e743b752b3d36302f652e74296e3c31352626286e256131ec8201527f323d3d313f285f7528242c742c752d652e622a28312f652e70292d2e3030332c61320c8201527f2e31292c5f7528242c742c752b652e622a28333d3d3d652e703f322f333a2e3561322c8201527f292d2e3030332c2e3229293a5f7528242c742c752b652e622a28333d3d3d652e61324c8201527f703f322f333a2e35292c2e3329292c6e2b3d317d66756e6374696f6e205f792861326c8201527f652c242c742c5f2c6e297b6c657420693d303b666f72286c657420633d5f3b6361328c8201527f3c5f2b36302f652e742d2e30313b632b3d36302f28652e742a652e65312929696132ac8201527f3d6925652e65312b312c2836213d3d652e65317c7c32213d3d69262635213d696132cc8201527f2926265f7328242c742c303d3d3d6e2626633d3d3d5f3f633a632d2e3030312c6132ec8201527f33302f28652e742a652e653129293b693d303b666f72286c6574206c3d5f2b3661330c8201527f302f652e743b6c3c5f2b3438302f652e743b6c2b3d36302f28652e742a652e7061332c8201527f2929693d6925652e702b312c2836213d3d652e707c7c32213d3d69262635213d61334c8201527f692926265f7128242c742c303d3d3d6e26266c3d3d3d5f3f6c3a6c2d2e30303161336c8201527f293b693d303b666f72286c657420723d5f2b3438302f652e743b723c5f2b353461338c8201527f302f652e742d2e30313b722b3d36302f28652e742a652e65322929693d6925656133ac8201527f2e65322b312c2836213d3d652e65327c7c32213d3d69262635213d692926265f6133cc8201527f7328242c742c303d3d3d6e2626723d3d3d5f3f723a722d2e3030312c33302f286133ec8201527f652e742a652e653229293b693d303b666f72286c6574206f3d5f2b3534302f6561340c8201527f2e743b6f3c5f2b3834302f652e743b6f2b3d36302f28652e742a652e7029296961342c8201527f3d6925652e702b312c2836213d3d652e707c7c32213d3d69262635213d69292661344c8201527f265f7128242c742c303d3d3d6e26266f3d3d3d5f3f6f3a6f2d2e303031293b6961346c8201527f3d303b666f72286c657420663d5f2b3834302f652e743b663c5f2b3936302f6561348c8201527f2e743b662b3d36302f28652e742a652e65332929693d6925652e65332b312c286134ac8201527f36213d3d652e65337c7c32213d3d69262635213d692926265f7128242c742c306134cc8201527f3d3d3d6e2626663d3d3d5f3f663a662d2e303031297d66756e6374696f6e205f6134ec8201527f3128652c242c742c5f2c6e2c693d21312c63297b6c6574206c3d302c723d302c61350c8201527f6f3d302c663d303b666f72286c657420753d5f3b753c5f2b3936302f652e742d61352c8201527f2e30313b752b3d36302f28652e742a652e702929696628663d6625652e702b3161354c8201527f2c652e702533213d307c7c32213d3d66262635213d3d66297b696628753e5f2b61356c8201527f36302f652e742b2e30303126262128753e5f2b3438302f652e742d2e3030312661358c8201527f26753c5f2b3534302f652e742b2e303031292626753c5f2b3834302f652e742d6135ac8201527f2e3030312626652e72315b6c5d297b6c657420703d286c3c652e72312e6c656e6135cc8201527f677468262621652e72315b6c2b315d3f322a652e622f652e703a652e622f652e6135ec8201527f70292a28363d3d3d652e70262631213d3d66262634213d3d663f2e353a31292a61360c8201527f28363d3d3d652e702626652e78323f323a31292a28333d3d3d652e702626313d61362c8201527f3d3d663f312e353a2e3735292a28323d3d3d652e702626652e743c3134303f2e61364c8201527f353a31292a28693f323a31292a28343d3d3d652e70262621652e78322626652e61366c8201527f743c3134353f2e353a31292a28363d3d3d652e702626652e743e3134343f323a61368c8201527f31293b313d3d3d663f5f6c28242c742c635b652e6f715b6f5d5d2874292c5f696136ac8201527f28652e662c652e715b725d292c3130302c3735302c752c752c752b702c70293a6136cc8201527f5f6a28242c742c635b652e6f715b6f5d5d2874292c5f6928652e662c652e715b6136ec8201527f725d292c5f6928652e662c652e715b725d292c752c752b702f322c752b332a7061370c8201527f2f342c70292c5f6828752c742c65292c722b3d312c72253d652e712e6c656e6761372c8201527f74682c6f2b3d312c6f253d652e6f712e6c656e6774687d6c2b3d312c6c253d6561374c8201527f2e72312e6c656e6774687d7d66756e6374696f6e205f3228652c242c742c5f2961376c8201527f7b6c6574206e3d5f2b36302f652e743b696628313d3d3d652e6274297b5f6f2861378c8201527f242c742c645b315d2874292c5f6928652e662c3331292c3365332c3630302c6e6137ac8201527f2c6e2b652e622f332c6e2b322a652e622f332c652e622c2e33293b666f72286c6137cc8201527f657420693d5f2b3132302f652e743b693c5f2b3834302f652e742d2e30313b696137ec8201527f2b3d3132302f28652e742a652e7029295f6f28242c742c645b315d2874292c5f61380c8201527f6928652e662c3331292c3365332c3730302c692c692b652e622f332c692b322a61382c8201527f652e622f332c652e622c2e32297d656c736520696628323d3d3d652e6274297b61384c8201527f5f6f28242c742c645b325d2874292c5f6928652e662c3336292c3465332c363061386c8201527f302c6e2c6e2b652e622f332c6e2b322a652e622f332c652e622c2e35293b666f61388c8201527f72286c657420633d5f2b3132302f652e743b633c5f2b3834302f652e742d2e306138ac8201527f313b632b3d3132302f28652e742a652e7029295f6f28242c742c645b325d28746138cc8201527f292c5f6928652e662c3336292c313830302c3730302c632c632b652e622f332c6138ec8201527f632b322a652e622f332c652e622c2e34297d656c736520696628333d3d3d652e61390c8201527f6274297b5f6f28242c742c645b335d2874292c5f6928652e662c35312e30382961392c8201527f2c3265332c3730302c6e2c6e2b652e622f332c6e2b322a652e622f332c652e6261394c8201527f2c2e3232293b666f72286c6574206c3d5f2b3132302f652e743b6c3c5f2b383461396c8201527f302f652e742d2e30313b6c2b3d3132302f28652e742a652e7029295f6f28242c61398c8201527f742c645b335d2874292c5f6928652e662c35312e3038292c3365332c3830302c6139ac8201527f6c2c6c2b652e622f332c6c2b322a652e622f332c652e622c2e3135297d7d66756139cc8201527f6e6374696f6e205f7a28652c242c742c5f2c6e297b6c657420693d302c633d306139ec8201527f2c6c3d302c723d303b666f72286c6574206f3d5f3b6f3c5f2b3936302f652e74613a0c8201527f2d2e30313b6f2b3d36302f28652e742a652e702929723d7225652e702b312c28613a2c8201527f652e702533213d307c7c32213d3d72262635213d3d72292626286f3e5f2b3630613a4c8201527f2f652e742b2e303031262621286f3e5f2b3438302f652e742d2e30303126266f613a6c8201527f3c5f2b3534302f652e742b2e3030312926266f3c5f2b3834302f652e742d2e30613a8c8201527f30312626652e72325b695d2626285f7328242c742c303d3d3d6e26266f3d3d3d613aac8201527f5f3f6f3a6f2d2e3030312c28693c652e72322e6c656e677468262621652e7232613acc8201527f5b692b315d3f322a652e622f652e703a652e622f652e70292a28363d3d3d652e613aec8201527f70262631213d3d72262634213d3d723f2e333a2e36292a28363d3d3d652e7026613b0c8201527f26652e78323f323a31292a28333d3d3d652e702626313d3d3d723f323a31292c613b2c8201527f2130292c632b3d312c63253d652e712e6c656e6774682c6c2b3d312c6c253d65613b4c8201527f2e6f712e6c656e677468292c692b3d312c69253d652e72322e6c656e67746829613b6c8201527f7d66756e6374696f6e205f6228652c242c742c5f2c6e2c69297b652e687c7c28613b8c8201527f5f7728652c242c742c5f2c6e292c5f7828652c242c742c5f292c5f7928652c24613bac8201527f2c742c5f2c6e292c5f7a28652c242c742c5f2c6e29292c5f3128652c242c742c613bcc8201527f5f2c6e2c21652e7832262628323d3d3d652e707c7c343d3d3d652e702626652e613bec8201527f743c313435292c69292c30213d3d652e627426265f3228652c242c742c5f292c613c0c8201527f5f68285f2c742c652c35292c303d3d3d652e6531733f5f6c28242c742c695b65613c2c8201527f2e6531695d2874292c652e662c35302c3330302c5f2c5f2b652e622f322c5f2b613c4c8201527f332a652e622f342c652e62293a313d3d3d652e6531733f5f6e28242c742c695b613c6c8201527f652e6531695d2874292c652e662c5f2c652e622c652e6531293a323d3d3d652e613c8c8201527f6531733f5f6a28242c742c695b652e6531695d2874292c652e662c5f6928652e613cac8201527f662c3132292c5f2c5f2b652e622f322c5f2b332a652e622f342c652e622c2e36613ccc8201527f293a333d3d3d652e65317326265f6d28242c742c695b652e6531695d2874292c613cec8201527f652e662c5f2c652e622c652e6531292c5f6b28242c742c645b305d2874292c5f613d0c8201527f6928652e662c36332e32292c2e3030352c2e3030352c302c2e30312c5f2b652e613d2c8201527f622c652e62292c5f68285f2b382a652e622c742c652c33292c303d3d3d652e65613d4c8201527f32733f5f6c28242c742c695b652e6532695d2874292c652e662c3230302c3630613d6c8201527f302c5f2b382a652e622c5f2b382a652e622b652e622f322c5f2b382a652e622b613d8c8201527f332a652e622f342c652e62293a313d3d3d652e6532733f5f6d28242c742c695b613dac8201527f652e6532695d2874292c652e662c5f2b382a652e622c652e622c652e6532293a613dcc8201527f323d3d3d652e6532733f5f6a28242c742c695b652e6532695d2874292c5f6928613dec8201527f652e662c3132292c652e662c5f2b382a652e622c5f2b382a652e622b652e622f613e0c8201527f322c5f2b382a652e622b332a652e622f342c652e622c2e36293a333d3d3d652e613e2c8201527f65327326265f6e28242c742c695b652e6532695d2874292c652e662c5f2b382a613e4c8201527f652e622c652e622c652e6532292c5f6b28242c742c645b305d2874292c5f6928613e6c8201527f652e662c36302e32292c2e3030352c2e3030352c302c2e30312c5f2b392a652e613e8c8201527f622c652e62292c5f6b28242c742c645b305d2874292c5f6928652e662c33362e613eac8201527f3037292c2e3030392c2e3030392c302c2e3031382c5f2b31352a652e622c652e613ecc8201527f62292c5f68285f2b31352a652e622c742c65292c6e25323d3d303f303d3d3d65613eec8201527f2e6533733f285f6a28242c742c645b335d2874292c5f6928652e662c652e6c62613f0c8201527f3e3132373f303a3132292c5f6928652e662c652e6c623e3132373f31323a302980613f2c8301527f2c5f2b31342a652e622c5f2b31342a652e622b652e622f322c5f2b31342a652e80613f4c8401527f622b332a652e622f342c652e62292c5f6f28242c742c645b315d2874292c5f699182613f6c8501527f28652e662c652e66623e3132373f333a2d32292c3465332c3530302c5f2b3135613f8c8501527f2a652e622c5f2b31352a652e622b652e622f322c5f2b31352a652e622b332a65613fac8501527f2e622f342c652e6229293a313d3d3d652e6533733f5f6e28242c742c695b652e613fcc8501527f6531695d2874292c652e662c5f2b31342a652e622c322a652e622c322a652e65613fec8501527f33293a323d3d3d652e6533733f285f6c28242c742c645b315d2874292c5f692861400c8501527f652e662c33292c35302c3430302c5f2b31342a652e622c5f2b31342a652e622b61402c8501527f652e622f322c5f2b31342a652e622b332a652e622f342c652e62292c5f6c282461404c8501527f2c742c645b315d2874292c5f6928652e662c32292c3330302c3365332c5f2b3161406c8501527f352a652e622c5f2b31352a652e622b652e622f322c5f2b31352a652e622b332a61408c8501527f652e622f342c652e6229293a333d3d3d652e65337326265f6d28242c742c695b6140ac8501527f652e6531695d2874292c5f6928652e662c652e666225323d3d303f303a2d32296140cc8501527f2c5f2b31342a652e622c322a652e622c322a652e65332c2130293a303d3d3d656140ec8501527f2e6534733f285f6a28242c742c645b335d2874292c5f6928652e662c652e6c6261410c85015261412c84015261414c83015261416c8201527f28652e662c652e66623e3132377c7c373d3d3d6e3f333a2d32292c3465332c3561418c8201527f30302c5f2b31352a652e622c5f2b31352a652e622b652e622f322c5f2b31352a6141ac8201527f652e622b332a652e622f342c652e6229293a313d3d3d652e6534733f5f6f28246141cc8201527f2c742c645b315d2874292c5f6928652e662c652e66623e3132377c7c373d3d3d6141ec8201527f6e3f333a2d32292c3565332c3230302c5f2b31342a652e622c5f2b31342a652e61420c8201527f622b652e622f322c5f2b31352a652e622b332a652e622f342c322a652e62293a61422c8201527f323d3d3d652e6534733f285f6e28242c742c695b652e6531695d2874292c652e61424c8201527f662c5f2b31342a652e622c652e622c652e6533292c5f6e28242c742c695b652e61426c8201527f6532695d2874292c652e662c5f2b31352a652e622c652e622c652e653329293a61428c8201527f333d3d3d652e65347326265f6d28242c742c695b652e6531695d2874292c5f696142ac8201527f28652e662c652e666225323d3d307c7c373d3d3d6e3f303a2d32292c5f2b31346142cc8201527f2a652e622c322a652e622c342a652e65332c2130297d66756e6374696f6e205f6142ec8201527f722865297b6c657420243d652e73616d706c65526174652c743d2e332a242c5f61430c8201527f3d652e63726561746542756666657228322c742c24292c6e3d5f2e676574436861432c8201527f616e6e656c446174612830292c693d5f2e6765744368616e6e656c446174612861434c8201527f31292c632c6c2c722c6f2c662c752c703b66756e6374696f6e206228297b6c6561436c8201527f7420653d322a4d6174682e72616e646f6d28292d313b72657475726e20633d2e61438c8201527f39393838362a632b2e303535353137392a652c6c3d2e39393333322a6c2b2e306143ac8201527f3735303735392a652c723d2e3936392a722b2e3135333835322a652c6f3d2e386143cc8201527f3636352a6f2b2e333130343835362a652c632b6c2b722b6f2b28663d2e35352a6143ec8201527f662b2e353332393532322a65292b28753d2d2e373631362a752d2e303136383961440c8201527f382a65292b702b2e353336322a657d633d6c3d723d6f3d663d753d703d303b6661442c8201527f6f72286c6574206d3d303b6d3c743b6d2b2b297b6c657420543d6d2f242c673d61444c8201527f6228293b6e5b6d5d3d672a4d6174682e706f7728312d542f2e332c32292c695b61446c8201527f6d5d3d672a4d6174682e706f7728312d542f2e332c32297d6c657420413d652e61448c8201527f637265617465436f6e766f6c76657228293b412e6275666665723d5f3b6c65746144ac8201527f20763d652e6372656174654761696e28292c563d652e6372656174654761696e6144cc8201527f28293b72657475726e20762e6761696e2e76616c75653d2e3837352c562e67616144ec8201527f696e2e76616c75653d2e3132352c7b636f6e6e6563743a66756e6374696f6e2861450c8201527f652c24297b652e636f6e6e6563742841292c412e636f6e6e6563742856292c5661452c8201527f2e636f6e6e6563742824292c652e636f6e6e6563742876292c762e636f6e6e6561454c8201527f63742824297d7d7d66756e6374696f6e205f6328652c242c74297b6c6574205f61456c8201527f3d5b5d2c6e3d242e63726561746544796e616d696373436f6d70726573736f7261458c8201527f28293b6e2e7468726573686f6c642e76616c75653d2d2e312c6e2e6b6e65652e6145ac8201527f76616c75653d302c6e2e726174696f2e76616c75653d32302c6e2e61747461636145cc8201527f6b2e76616c75653d302c6e2e72656c656173652e76616c75653d2e30313b6c656145ec8201527f7420693d242e6372656174654761696e28293b692e6761696e2e76616c75653d61460c8201527f312c652e636f6e6e6563742869292c692e636f6e6e656374286e293b666f722861462c8201527f6c657420633d303b633c742e6c656e6774683b632b2b297b6c6574206c3d745b61464c8201527f635d2c723d242e63726561746542697175616446696c74657228293b722e747961466c8201527f70653d226c6f7770617373222c722e6672657175656e63792e76616c75653d6c61468c8201527f2e783b6c6574206f3d242e63726561746542697175616446696c74657228293b6146ac8201527f6f2e747970653d226869676870617373222c6f2e6672657175656e63792e76616146cc8201527f6c75653d633e303f745b632d315d2e783a303b6c657420663d242e63726561746146ec8201527f6544796e616d696373436f6d70726573736f7228293b662e7468726573686f6c61470c8201527f642e76616c75653d6c2e742c662e6b6e65652e76616c75653d6c2e6b2c662e7261472c8201527f6174696f2e76616c75653d6c2e6f2c662e61747461636b2e76616c75653d6c2e61474c8201527f612c662e72656c656173652e76616c75653d6c2e723b6c657420753d242e637261476c8201527f656174654761696e28293b752e6761696e2e76616c75653d6c2e673b6c65742061478c8201527f703d242e6372656174654761696e28293b702e6761696e2e76616c75653d2e396147ac8201527f2c303d3d3d633f652e636f6e6e656374286f293a5f5b632d315d2e6c6f7770616147cc8201527f73732e636f6e6e656374286f292c6f2e636f6e6e6563742872292c722e636f6e6147ec8201527f6e6563742866292c662e636f6e6e6563742870292c702e636f6e6e656374287561480c8201527f292c752e636f6e6e656374286e292c5f2e70757368287b6c6f77706173733a7261482c8201527f2c68696768706173733a6f2c636f6d70726573736f723a662c6761696e3a752c61484c8201527f6e6f726d616c697a6174696f6e4761696e3a707d297d72657475726e205f722861486c8201527f24292e636f6e6e656374286e2c242e64657374696e6174696f6e292c5f7d667561488c8201527f6e6374696f6e205f612865297b5f6728226772657922292c613d6e65772877696148ac8201527f6e646f772e417564696f436f6e746578747c7c77696e646f772e7765626b69746148cc8201527f417564696f436f6e74657874293b6c657420243d5b645b335d2c645b305d2c646148ec8201527f5b325d2c645b315d2c645b345d2c645b355d2c645b365d5d2c743d612e63726561490c8201527f6174654761696e28293b742e6761696e2e76616c75653d312c5f6328742c612c61492c8201527f5b7b783a37352c743a2d33302c6b3a33302c6f3a332c613a2e30312c723a2e3361494c8201527f372c673a317d2c7b783a3135302c743a2d33302c6b3a33302c6f3a332c613a2e61496c8201527f30332c723a2e33332c673a312e317d2c7b783a3430302c743a2d33302c6b3a3361498c8201527f352c6f3a382c613a2e30312c723a2e332c673a2e387d2c7b783a3730302c743a6149ac8201527f2d33302c6b3a34302c6f3a31322c613a2e3030352c723a2e32352c673a2e347d6149cc8201527f2c7b783a3265332c743a2d33302c6b3a34302c6f3a31342c613a2e3030322c726149ec8201527f3a2e32332c673a2e337d2c7b783a3465332c743a2d33302c6b3a34302c6f3a31614a0c8201527f362c613a2e3030312c723a2e322c673a2e327d2c7b783a612e73616d706c6552614a2c8201527f6174652f322c743a2d33302c6b3a34302c6f3a342c613a2e3030312c723a2e31614a4c8201527f352c673a2e327d2c5d293b6c6574205f3d612e63757272656e7454696d652b2e614a6c8201527f333b666f72286c6574206e3d303b6e3c383b2b2b6e2973657454696d656f7574614a8c8201527f2866756e6374696f6e28297b5f6228652c742c612c5f2b3936302f652e742a6e614aac8201527f2b2e312c6e2c24297d2c3265332a6e297d636f6e737420733d6765726d696e61614acc8201527f74652873656564293b636f6e736f6c652e6c6f672873293b7661722064623d31614aec8201527f323865332a732e622b3230302c6c653d303b646f63756d656e742e676574456c614b0c8201527f656d656e744279496428225f22292e6164644576656e744c697374656e657228614b2c8201527f22636c69636b222c66756e6374696f6e28297b76617220653d446174652e6e6f614b4c8201527f7728293b652d6c653e64622626285f612873292c6c653d65297d292c77696e64614b6c8201527f6f772e6164644576656e744c697374656e657228226b65797570222c66756e63614b8c8201527f74696f6e2865297b76617220243d446174652e6e6f7728293b22456e74657222614bac8201527f3d3d3d652e6b65792626242d6c653e6462262628646f63756d656e742e676574614bcc8201527f456c656d656e744279496428225f22292e636c69636b28292c6c653d24297d29614bec820152691d9e17b9b1b934b83a1f60b11b614c0c8201520190565b0390810183528262005f30565b5191f060c05262005dfa4262005f8d565b60805251615288908162005fb582396080518181816106960152818161093101528181610b2b015281816116280152818161262501526127ee015260a0518161212a015260c05181818161098f0152818161166201526116b00152f35b8062005e6762005e6e9262005f1c565b8062005f81565b3862000241565b62005f75565b8380fd5b62005ea49150833d851162005eab575b62005e9b818362005f30565b81019062005f54565b38620001ea565b503d62005e8f565b620001cc925062005ed390823d841162005eab5762005e9b818362005f30565b91620001ad565b600080fd5b60e0601f91909101601f19168101906001600160401b0382119082101762005f0657604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811162005f0657604052565b601f909101601f19168101906001600160401b0382119082101762005f0657604052565b9081602091031262005eda57516001600160a01b038116810362005eda5790565b6040513d6000823e3d90fd5b600091031262005eda57565b906203f480820180921162005f9e57565b634e487b7160e01b600052601160045260246000fdfe6080604052600436101561001257600080fd5b60003560e01c806301ffc9a71461021757806306fdde031461021257806307aafa981461020d578063081812fc14610208578063095ea7b3146102035780631249c58b146101fe57806318160ddd146101f957806323b872dd146101f45780632f2c269c146101ef578063345cbc48146101ea57806340c10f19146101e557806342842e0e146101e057806342966c68146101db5780634c261247146101d65780635d87a48e146101d15780636352211e146101cc57806370a08231146101c757806395d89b41146101c25780639df5f95a146101bd578063a0712d68146101b8578063a22cb465146101b3578063a4f657c8146101ae578063a6c3e6b9146101a9578063b467e099146101a4578063b88d4fde1461019f578063c79178c61461019a578063c87b56dd14610195578063cc0970d714610190578063d48e638a1461018b578063e0d4ea3714610186578063e8a3d485146101815763e985e9c51461017c57600080fd5b611c4b565b6117a7565b61171f565b6116d4565b611697565b61158c565b611280565b6111ff565b610fd5565b610f4e565b610eb2565b610dc1565b610d8b565b610d4f565b610d15565b610c72565b610c18565b610af0565b610a6b565b610a31565b610a0e565b6109cc565b610954565b6108fb565b6108e7565b61085c565b610668565b610527565b610471565b610435565b6103b5565b61024b565b7fffffffff0000000000000000000000000000000000000000000000000000000081160361024657565b600080fd5b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760207fffffffff000000000000000000000000000000000000000000000000000000006004356102a98161021c565b167f01ffc9a7000000000000000000000000000000000000000000000000000000008114908115610311575b81156102e7575b506040519015158152f35b7f5b5e139f00000000000000000000000000000000000000000000000000000000915014386102dc565b7f80ac58cd00000000000000000000000000000000000000000000000000000000811491506102d5565b60005b83811061034e5750506000910152565b818101518382015260200161033e565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361039a8151809281875287808801910161033b565b0116010190565b9060206103b292818152019061035e565b90565b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316040516103f3816110b3565b600881527f526574e286b5726e000000000000000000000000000000000000000000000000602082015260405191829160208352602083019061035e565b0390f35b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576020600954604051908152f35b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576004356104ac81614443565b156104df576000526006602052602073ffffffffffffffffffffffffffffffffffffffff60406000205416604051908152f35b7fcf4700e40000000000000000000000000000000000000000000000000000000060005260046000fd5b73ffffffffffffffffffffffffffffffffffffffff81160361024657565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561055d81610509565b60243573ffffffffffffffffffffffffffffffffffffffff8061057f836142e8565b16908133036105ff575b600083815260066020526040812080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87161790559316907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b81600052600760205260ff6106383360406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b5416610589577fcfb3b9420000000000000000000000000000000000000000000000000000000060005260046000fd5b6000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261085957427f0000000000000000000000000000000000000000000000000000000000000000111561082f5766b1a2bc2ec500003403610805578054907c02000000000000000000000000000000000000000000000000000000004260a01b331717610705836000526004602052604060002090565b55336000818152600560205260409020805468010000000000000001019055156107dd578160018181019080805b610798575b846107958585835561075533916000526008602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b80f35b156107cc575b83818633877fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4610733565b8094019381850361079e5780610738565b807f2e0763000000000000000000000000000000000000000000000000000000000060049252fd5b60046040517fc755930f000000000000000000000000000000000000000000000000000000008152fd5b60046040517f844da602000000000000000000000000000000000000000000000000000000008152fd5b80fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760206000546001549003604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6060910112610246576004356108d381610509565b906024356108e081610509565b9060443590565b6108f96108f33661089d565b916144a4565b005b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316109b86109b3447f000000000000000000000000000000000000000000000000000000000000000061506d565b6131eb565b60405191829160208352602083019061035e565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576108f9600435610a0581610509565b6024359061261f565b6108f9610a1a3661089d565b9060405192610a28846110d4565b600084526146d5565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576108f96004356127b6565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465767ffffffffffffffff600435818111610246573660238201121561024657806004013591821161024657366024838301011161024657610431916024610ae09201611e52565b6040519081529081906020820190565b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657610b27612d8e565b50427f000000000000000000000000000000000000000000000000000000000000000011610bee57600a54610bc45760404301804311610bbf57600a55600a54610b79610b7382611d1c565b91611d2a565b60408051838152602081018390529192917fef73cf832d827457ef61704e0c7f9c27fc5aa00c041fc24009dfdb7f965cbb6a9190a1604080519182526020820192909252f35b611ced565b60046040517fdd46f15c000000000000000000000000000000000000000000000000000000008152fd5b60046040517f302fd415000000000000000000000000000000000000000000000000000000008152fd5b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657602073ffffffffffffffffffffffffffffffffffffffff610c696004356142e8565b16604051908152f35b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465773ffffffffffffffffffffffffffffffffffffffff600435610cc281610509565b168015610ceb576000526005602052602067ffffffffffffffff60406000205416604051908152f35b7f8f4eb6040000000000000000000000000000000000000000000000000000000060005260046000fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316109b86124f4565b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576020600a54604051908152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576108f96004353361261f565b346102465760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657600435610dfc81610509565b602435908115158092036102465773ffffffffffffffffffffffffffffffffffffffff90336000526007602052610e578160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff851617905560405192835216907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657600954610f2457610ef36004356127b6565b15610efa57005b60046040517ffdab2ab4000000000000000000000000000000000000000000000000000000008152fd5b60046040517fa89ac151000000000000000000000000000000000000000000000000000000008152fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576020610f87612102565b73ffffffffffffffffffffffffffffffffffffffff60405191168152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60209101126102465760043590565b3461024657610fe336610fa5565b610fec9061252d565b94604097969794919493929351978897610100808a52890161100d9161035e565b88810360208a015261101e9161035e565b878103604089015261102f9161035e565b86810360608801526110409161035e565b85810360808701526110519161035e565b84810360a08601526110629161035e565b83810360c08501526110739161035e565b82810360e08401526104319161035e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff8211176110cf57604052565b611084565b6020810190811067ffffffffffffffff8211176110cf57604052565b6060810190811067ffffffffffffffff8211176110cf57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176110cf57604052565b604051906080820182811067ffffffffffffffff8211176110cf57604052565b60405190610200820182811067ffffffffffffffff8211176110cf57604052565b67ffffffffffffffff81116110cf57601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b9291926111d48261118e565b916111e2604051938461110c565b829481845281830111610246578281602093846000960137010152565b60807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561123581610509565b60243561124181610509565b6064359167ffffffffffffffff83116102465736602384011215610246576112766108f99336906024816004013591016111c8565b91604435916146d5565b34610246576020807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576004356112bc81614443565b15611562576114eb600d610431936114679360095490811560001461153257505061149b6112e86124f4565b60db6112f2612e0f565b9360005b156114f757604051611307816110b3565b600581527f776869746500000000000000000000000000000000000000000000000000000082820152905b6040519889967f3c7376672076696577426f783d2230203020313030203130302220786d6c6e73838901527f3d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7260408901527f6563742077696474683d2231303022206865696768743d22313030222066696c60608901527f6c3d22000000000000000000000000000000000000000000000000000000000060808901526113e2815180928560838c01910161033b565b8701917f22202f3e3c7465787420783d2235302220793d2236372220666f6e742d73697a60838401527f653d2234392220746578742d616e63686f723d226d6964646c65222066696c6c60a38401527f3d2200000000000000000000000000000000000000000000000000000000000060c3840152835193849160c58501910161033b565b0161149460c582017f2220666f6e742d66616d696c793d22417269616c223e000000000000000000009052565b0190612292565b7f3c2f746578743e3c2f7376673e000000000000000000000000000000000000008152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed81018452018261110c565b604051918291826103a1565b604051611503816110b3565b600981527f6c696768746772617900000000000000000000000000000000000000000000008282015290611332565b9160db61154461149b9360fc95612889565b9161154e8361252d565b5050935098935050509593600a1a116112f6565b60046040517fa14c4b50000000000000000000000000000000000000000000000000000000008152fd5b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576004356115c781614443565b15611562576114eb611657611611610431936009546115e68183612889565b916115f081614d5f565b9261161661161182851595866000146116865761160b612233565b95612fd2565b614bf9565b921561165c575061165161161161164c7f0000000000000000000000000000000000000000000000000000000000000000614d5f565b6128f0565b926122a9565b6124a0565b611651907f000000000000000000000000000000000000000000000000000000000000000061506d565b61160b61169283613f0f565b613417565b34610246576104316109b86109b36116ae36610fa5565b7f000000000000000000000000000000000000000000000000000000000000000061506d565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561170f81614443565b1561156257610f87602091612d2b565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561175a81614443565b156115625760095490811561177d5760209161177591612889565b604051908152f35b60046040517f45772ba4000000000000000000000000000000000000000000000000000000008152fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316114eb611657611bf66116116117f0611611612e48565b611c1f6040519384927f7b0000000000000000000000000000000000000000000000000000000000000060208501527f226e616d65223a2022526574e286b5726e222c2000000000000000000000000060218501527f22617574686f72223a202230616765222c20000000000000000000000000000060358501527f226465736372697074696f6e223a202247656e6572617469766520617564696f60478501527f76697375616c2061727420776865726520616c6c206d6574616461746120697360678501527f2073746f72656420616e642072656e6465726564206f6e636861696e2e20456160878501527f6368206d75736963616c20776f726b206973206d696e74656420696e20616e2060a78501527f756e72657665616c6564207374617465206f76657220616e206f70656e2c203360c78501527f206461792077696e646f772066726f6d206465706c6f796d656e742e2041667460e78501527f657220746865206d696e7420706861736520656e64732c20656e74726f7079206101078501527f697320736f75726365642066726f6d20626f746820612066757475726520626c6101278501527f6f636b20616e642066726f6d2061206d6573736167652077686f736520636f6e6101478501527f74656e74732061726520636f6d6d697474656420746f206174207468652074696101678501527f6d65206f66206465706c6f796d656e742e205468697320656e74726f707920696101878501527f73207573656420746f2066696e616c697a65206d6574616461746120616e64206101a78501527f72657665616c2074686520656e64207374617465206f662065616368206d696e6101c78501527f74656420776f726b2e2050726f76656e616e63652069732065737461626c69736101e78501527f68656420666f72206561636820746f6b656e206279207065726d616e656e746c6102078501527f79207265636f7264696e6720746865206163636f756e74207573656420746f206102278501527f63726561746520697420616e6420696e636f72706f726174696e6720746865206102478501527f6164647265737320696e746f20746865207365656420746861742064657465726102678501527f6d696e657320746f6b656e20617474726962757465732e205761726e696e673a6102878501527f20666c617368696e6720696d6167657279202620617564696f2070726573656e6102a78501527f742e222c200000000000000000000000000000000000000000000000000000006102c7850152611bf06102cc85016024907f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62617381527f6536342c0000000000000000000000000000000000000000000000000000000060208201520190565b90612292565b7f227d000000000000000000000000000000000000000000000000000000000000815260020190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810183528261110c565b346102465760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657602060ff611ce1600435611c8d81610509565b73ffffffffffffffffffffffffffffffffffffffff60243591611caf83610509565b166000526007845260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54166040519015158152f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b9060018201809211610bbf57565b9060ff8201809211610bbf57565b906107088201809211610bbf57565b9060c08201809211610bbf57565b9060408201809211610bbf57565b9060028201809211610bbf57565b9060208201809211610bbf57565b6001019081600111610bbf57565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201918211610bbf57565b601f0390601f8211610bbf57565b927fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008695929360549794865260601b16602085015260348401528483013701016000815290565b60405190611e1c826110d4565b60008252565b3d15611e4d573d90611e338261118e565b91611e41604051938461110c565b82523d6000602084013e565b606090565b611e5a612d8e565b91600954610f24577fdf1b8bdd0db9449895571155d1e7d8ba0b5891111de4164a8ebe2760472961b5611e8e3683856111c8565b60208151910120036120b757600a5490811561208d57438210156120635743611eb683611d2a565b1061203957600091611ec743611d8d565b8114612031575b8215612028575b508115611ffe576000809392819392611eff8394611c1f6040519384926020840196304689611dc8565b51902094611f0c86600955565b73ffffffffffffffffffffffffffffffffffffffff4791165af1611f2e611e22565b5015611fbe577f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c611fb8611fa0611f69600054600154900390565b60408051868152602081018390527f6765f1b8ca6c099f7378c6e9b12cf8afac970d483c3faf81745e4b40c26148db9190a1611d8d565b60405191829182919060206040840193600081520152565b0390a190565b62ffffff3d103d16611ff45760046040517fc224d493000000000000000000000000000000000000000000000000000000008152fd5b3d6000803e3d6000fd5b60046040517f23d50cb7000000000000000000000000000000000000000000000000000000008152fd5b40915038611ed5565b449250611ece565b60046040517f9a73e7fe000000000000000000000000000000000000000000000000000000008152fd5b60046040517f350e7b68000000000000000000000000000000000000000000000000000000008152fd5b60046040517f0a0ce86b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fa620d854000000000000000000000000000000000000000000000000000000008152fd5b9081602091031261024657516103b281610509565b6040513d6000823e3d90fd5b6040517f0178b8bf0000000000000000000000000000000000000000000000000000000081527f0000000000000000000000000000000000000000000000000000000000000000600482018190526020919082826024816e0c2e074ec69a0dfb2997ba6c7d2e1e5afa91821561220f5773ffffffffffffffffffffffffffffffffffffffff9284926121d192600092612214575b506040519485809481937f3b3b57de000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b0392165afa91821561220f576000926121e957505090565b6103b29250803d10612208575b612200818361110c565b8101906120e1565b503d6121f6565b6120f6565b61222c919250843d861161220857612200818361110c565b9038612196565b60405190612240826110f0565b602e82527f22556e72657665616c6564227d5d0000000000000000000000000000000000006040837f5b7b2274726169745f74797065223a22537461747573222c2276616c7565223a60208201520152565b906122a56020928281519485920161033b565b0190565b61244e6002929594611bf06123ff61249e9660c86040519a8b977f7b226e616d65223a22526574e286b5726e20e28094202300000000000000000060208a01526122fd81518092602060378d01910161033b565b88017f222c226465736372697074696f6e223a2247656e65726174697665206175646960378201527f6f76697375616c2061727420776865726520616c6c206d65746164617461206960578201527f732073746f72656420616e642072656e6465726564206f6e636861696e2e222c60778201527f2261747472696275746573223a0000000000000000000000000000000000000060978201526123ab82518093602060a48501910161033b565b017f2c22696d616765223a22646174613a696d6167652f7376672b786d6c3b62617360a48201527f6536342c0000000000000000000000000000000000000000000000000000000060c48201520190612292565b7f222c22616e696d6174696f6e5f75726c223a22646174613a746578742f68746d81527f6c3b6261736536342c0000000000000000000000000000000000000000000000602082015260290190565b7f227d0000000000000000000000000000000000000000000000000000000000008152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe281018552018361110c565b565b9061249e603d60405180947f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000060208301526124e4815180926020868601910161033b565b810103601d81018552018361110c565b60405190612501826110b3565b600382527fe286b500000000000000000000000000000000000000000000000000000000006020830152565b61253690613f0f565b602081015160408201516060830151608084015160a085015160c086015160e0870151610100909701519597949693959294919390929091565b908160021b917f3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811603610bbf57565b908160031b917f1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811603610bbf57565b908160011b9180830460021490151715610bbf57565b81156125f0570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b919091427f0000000000000000000000000000000000000000000000000000000000000000111561082f57670de0b6b3a76400009081840284159285820414831715610bbf5760149004340361080557600080549261278e576001946126de73ffffffffffffffffffffffffffffffffffffffff84169387831460e11b4260a01b1785176126b7876000526004602052604060002090565b5573ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b6801000000000000000182028154019055821561276657830191839580805b612721575b50505061249e9394505561075533916000526008602052604060002090565b15612755575b82818884867fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a46126fd565b809601958387036127275780612702565b6004827f2e076300000000000000000000000000000000000000000000000000000000008152fd5b807fb562e8dd0000000000000000000000000000000000000000000000000000000060049252fd5b6127e76127e16127c86127c8846142e8565b73ffffffffffffffffffffffffffffffffffffffff1690565b9161483d565b60006128127f0000000000000000000000000000000000000000000000000000000000000000611d38565b4210158061287f575b1561287a57506000808066b1a2bc2ec5000081945af1612839611e22565b501561284457600190565b62ffffff3d103d16611ff45760046040517ffdab2ab4000000000000000000000000000000000000000000000000000000008152fd5b905090565b506009541561281b565b906128eb7fffffffffffffffffffffffff000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff9260405160208101918683526040820152604081526128e1816110f0565b5190201692612d2b565b161790565b9061249e612a8b92612cff6040519485927f3c21646f637479706568746d6c3e3c7469746c653e5265742623383632393b7260208501527f6e3c2f7469746c653e3c6d65746120636f6e74656e743d30616765206e616d6560408501527f3d617574686f723e3c7374796c653e626f64797b6261636b67726f756e642d6360608501527f6f6c6f723a233030303b636f6c6f723a236433643364333b646973706c61793a60808501527f666c65783b6a7573746966792d636f6e74656e743a63656e7465723b616c696760a08501527f6e2d6974656d733a63656e7465723b6865696768743a31303076683b6d61726760c08501527f696e3a303b666f6e742d66616d696c793a417269616c2c73616e732d7365726960e08501527f663b746578742d616c69676e3a63656e7465727d3c2f7374796c653e3c6469766101008501527f3e3c68312069643d313e3c2f68313e3c68312069643d323e3c2f68313e3c2f646101208501527f69763e3c7363726970743e6c657420743d6e657720446174652800000000000061014085015261015a840190612292565b610211907f6533292c6d3d2257616974696e6720666f722072657665616c2e2e2e223b6c6581527f7420633b66756e6374696f6e207528297b6c657420653d6e657720446174652c60208201527f6e3d742d653b6e3c3d303f28636c656172496e74657276616c2863292c646f6360408201527f756d656e742e676574456c656d656e744279496428223122292e74657874436f8060608301527f6e74656e743d6d2c646f63756d656e742e676574456c656d656e74427949642860808301527f223222292e7374796c652e646973706c61793d226e6f6e6522293a646f63756d60a08301527f656e742e676574456c656d656e744279496428223222292e74657874436f6e7460c08301527f656e743d5b4d6174682e666c6f6f72286e2f3836346535292c4d6174682e666c60e08301527f6f6f72286e2538363465352f33366535292c4d6174682e666c6f6f72286e25336101008301527f3665352f366534292c4d6174682e666c6f6f72286e253665342f316533295d2e6101208301527f6d617028653d3e652e746f537472696e6728292e706164537461727428322c226101408301527f302229292e6a6f696e28223a22297d6e657720446174653c743f28646f63756d6101608301527f656e742e676574456c656d656e744279496428223122292e74657874436f6e746101808301527f656e743d2257616974696e6720666f72206d696e7420746f20636f6d706c65746101a08301527f65222c7528292c633d736574496e74657276616c28752c31653329293a646f636101c08301526101e08201527f6e74656e743d6d3b3c2f7363726970743e0000000000000000000000000000006102008201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810184528361110c565b906000915b808352600860205273ffffffffffffffffffffffffffffffffffffffff60408420541680612d8957507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811115612d3057611ced565b925050565b73ffffffffffffffffffffffffffffffffffffffff612dab612102565b16803303612db65790565b60046040517f82b42900000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60405190612e1c826110b3565b600782527f23303030303030000000000000000000000000000000000000000000000000006020830152565b6114676103b2600d612e586124f4565b61149b612e63612e0f565b9160db604051612e72816110b3565b6009815260208101907f6c6967687467726179000000000000000000000000000000000000000000000082526040519889967f3c7376672076696577426f783d2230203020313030203130302220786d6c6e7360208901527f3d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7260408901527f6563742077696474683d2231303022206865696768743d22313030222066696c60608901527f6c3d2200000000000000000000000000000000000000000000000000000000006080890152612f5081518092602060838c01910161033b565b8701917f22202f3e3c7465787420783d2235302220793d2236372220666f6e742d73697a60838401527f653d2234392220746578742d616e63686f723d226d6964646c65222066696c6c60a38401527f3d2200000000000000000000000000000000000000000000000000000000000060c384015251809360c584019061033b565b816131ad57505050612fe26124f4565b6103b2600d612fef612e0f565b60005b1561316e5761149b604051613006816110b3565b600581527f77686974650000000000000000000000000000000000000000000000000000006020820152945b60db6040519687947f3c7376672076696577426f783d2230203020313030203130302220786d6c6e7360208701527f3d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7260408701527f6563742077696474683d2231303022206865696768743d22313030222066696c60608701527f6c3d22000000000000000000000000000000000000000000000000000000000060808701526130e681518092602060838a01910161033b565b85017f22202f3e3c7465787420783d2235302220793d2236372220666f6e742d73697a60838201527f653d2234392220746578742d616e63686f723d226d6964646c65222066696c6c60a38201527f3d2200000000000000000000000000000000000000000000000000000000000060c382015261146782518093602060c58501910161033b565b61149b60405161317d816110b3565b600981527f6c69676874677261790000000000000000000000000000000000000000000000602082015294613032565b82156131da575b50506103b2600d60fc6131c68461252d565b5050935094935050509194600a1a11612ff2565b6131e49250612889565b38806131b4565b9061249e603660405180947f646174613a746578742f68746d6c3b6261736536342c00000000000000000000602083015261322f815180926020868601910161033b565b810103601681018552018361110c565b909392612cff90611bf0608561249e956040519889967f227d2c7b2274726169745f74797065223a224172726f77222c2276616c75652260208901527f3a22000000000000000000000000000000000000000000000000000000000000908160408a01526132b781518092602060428d01910161033b565b8801907f227d2c7b2274726169745f74797065223a22436f6c6f72222c2276616c756522604283015260628201526132f982518093602060648501910161033b565b017f227d2c7b2274726169745f74797065223a22546f6e65222c2276616c7565223a60648201527f22000000000000000000000000000000000000000000000000000000000000006084820152613359825180936020868501910161033b565b01016024907f227d2c7b2274726169745f74797065223a2243726561746f72222c2276616c7581527f65223a220000000000000000000000000000000000000000000000000000000060208201520190565b602361249e9193929360405194816133cd87935180926020808701910161033b565b82016133e2825180936020808501910161033b565b017f227d5d0000000000000000000000000000000000000000000000000000000000602082015203600381018552018361110c565b6134856136166103b2926135fa81516135ce6020840151611bf061357f604087015160a360608901519160808a015195603f6040519d8e809b7f5b7b2274726169745f74797065223a2253656564222c2276616c7565223a220060208301526020815194859301910161033b565b89017f227d2c7b2274726169745f74797065223a2254656d706f222c2276616c756522603f8201527f3a22000000000000000000000000000000000000000000000000000000000000605f8201526134e782518093602060618501910161033b565b01907f227d2c7b2274726169745f74797065223a2256696265222c2276616c7565223a60618301527f22000000000000000000000000000000000000000000000000000000000000009182608182015261354b82518093602060828501910161033b565b01907f227d2c7b2274726169745f74797065223a22526f6f74222c2276616c7565223a608283015260a28201520190612292565b7f227d2c7b2274726169745f74797065223a225374796c65222c2276616c75652281527f3a22000000000000000000000000000000000000000000000000000000000000602082015260220190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810185528461110c565b60a08101519060c081015161010060e08301519201519261323f565b906133ab565b60405190610120820182811067ffffffffffffffff8211176110cf576040528161010060609182815282602082015282604082015282808201528260808201528260a08201528260c08201528260e08201520152565b6040519061367f826110b3565b600182527f32000000000000000000000000000000000000000000000000000000000000006020830152565b604051906136b8826110b3565b600182527f33000000000000000000000000000000000000000000000000000000000000006020830152565b604051906136f1826110b3565b600182527f34000000000000000000000000000000000000000000000000000000000000006020830152565b6040519061372a826110b3565b600182527f36000000000000000000000000000000000000000000000000000000000000006020830152565b9060048110156137675760051b0190565b612de0565b60405190613779826110b3565b600482527f45e28281000000000000000000000000000000000000000000000000000000006020830152565b604051906137b2826110b3565b600482527f46e28281000000000000000000000000000000000000000000000000000000006020830152565b604051906137eb826110b3565b600f82527f46e299afe282812f47e299ade2828100000000000000000000000000000000006020830152565b60405190613824826110b3565b600482527f47e28281000000000000000000000000000000000000000000000000000000006020830152565b6040519061385d826110b3565b600f82527f47e299afe282812f41e299ade2828100000000000000000000000000000000006020830152565b60405190613896826110b3565b600482527f41e28281000000000000000000000000000000000000000000000000000000006020830152565b604051906138cf826110b3565b600f82527f41e299afe282812f42e299ade2828100000000000000000000000000000000006020830152565b60405190613908826110b3565b600482527f42e28281000000000000000000000000000000000000000000000000000000006020830152565b60405190613941826110b3565b600482527f43e28282000000000000000000000000000000000000000000000000000000006020830152565b6040519061397a826110b3565b600f82527f43e299afe282822f44e299ade2828200000000000000000000000000000000006020830152565b604051906139b3826110b3565b600482527f44e28282000000000000000000000000000000000000000000000000000000006020830152565b604051906139ec826110b3565b600f82527f44e299afe282822f45e299ade2828200000000000000000000000000000000006020830152565b60405190613a25826110b3565b600482527f45e28282000000000000000000000000000000000000000000000000000000006020830152565b60405190613a5e826110b3565b600482527f46e28282000000000000000000000000000000000000000000000000000000006020830152565b60405190613a97826110b3565b600f82527f46e299afe282822f47e299ade2828200000000000000000000000000000000006020830152565b60405190613ad0826110b3565b600482527f47e28282000000000000000000000000000000000000000000000000000000006020830152565b9060108110156137675760051b0190565b60405190613b1a826110b3565b600282527f31360000000000000000000000000000000000000000000000000000000000006020830152565b60405190613b53826110b3565b600382527fe2869900000000000000000000000000000000000000000000000000000000006020830152565b60405190613b8c826110b3565b600382527fe2869c00000000000000000000000000000000000000000000000000000000006020830152565b60405190613bc5826110b3565b600382527fe286a900000000000000000000000000000000000000000000000000000000006020830152565b60405190613bfe826110b3565b600382527fe2878700000000000000000000000000000000000000000000000000000000006020830152565b60405190613c37826110b3565b600382527fe2879000000000000000000000000000000000000000000000000000000000006020830152565b60405190613c70826110b3565b600382527fe287a400000000000000000000000000000000000000000000000000000000006020830152565b60405190613ca9826110b3565b600382527fe287a600000000000000000000000000000000000000000000000000000000006020830152565b60405190613ce2826110b3565b600382527fe28f8e00000000000000000000000000000000000000000000000000000000006020830152565b60405190613d1b826110b3565b600382527fe2978000000000000000000000000000000000000000000000000000000000006020830152565b60405190613d54826110b3565b600382527fe2a4b600000000000000000000000000000000000000000000000000000000006020830152565b60405190613d8d826110b3565b600782527f23303066666666000000000000000000000000000000000000000000000000006020830152565b60405190613dc6826110b3565b600782527f23666630306666000000000000000000000000000000000000000000000000006020830152565b60405190613dff826110b3565b600782527f23666666663030000000000000000000000000000000000000000000000000006020830152565b60405190613e38826110b3565b600782527f23303030306666000000000000000000000000000000000000000000000000006020830152565b60405190613e71826110b3565b600782527f23303066663030000000000000000000000000000000000000000000000000006020830152565b60405190613eaa826110b3565b600782527f23666630303030000000000000000000000000000000000000000000000000006020830152565b60405190613ee3826110b3565b600782527f23666666666666000000000000000000000000000000000000000000000000006020830152565b613f1761361c565b90613f2181614efb565b8252613f48613f43613f3e613f388460001a611d47565b607f1690565b611d55565b614d5f565b6020830152613f99613f5861114d565b613f60613672565b8152613f6a6136ab565b6020820152613f776136e4565b6040820152613f8461371d565b606082015260038360011a60061c1690613756565b51604083015261408f613faa61116d565b613fb261376c565b8152613fbc6137a5565b6020820152613fc96137de565b6040820152613fd6613817565b6060820152613fe3613850565b6080820152613ff0613889565b60a0820152613ffd6138c2565b60c082015261400a6138fb565b60e0820152614017613934565b61010082015261402561396d565b6101208201526140336139a6565b6101408201526140416139df565b61016082015261404f613a18565b61018082015261405d613a51565b6101a082015261406b613a8a565b6101c0820152614079613ac3565b6101e0820152600f8360021a60041c1690613afc565b51606083015260009080600b1a90600f808316146000146142d4576140b2613b0d565b60808501526141a76140c261116d565b6140ca6124f4565b81526140d4613b46565b60208201526140e16124f4565b60408201526140ee613b7f565b60608201526140fb613bb8565b60808201526141086124f4565b60a0820152614115613bf1565b60c0820152614122613c2a565b60e082015261412f6124f4565b61010082015261413d613c63565b61012082015261414b613c9c565b6101408201526141596124f4565b610160820152614167613cd5565b6101808201526141756124f4565b6101a0820152614183613d0e565b6101c0820152614191613d47565b6101e0820152600f8360081a60041c1690613afc565b5160a085015280600a1a92600f841615806142c2575b1561429a5761376757614215926141f260ff600f73ffffffffffffffffffffffffffffffffffffffff9560041c165b16614d5f565b60e086015260bd81101561421e5750614209612e0f565b60c08501525b16614fb9565b61010082015290565b60cd81101561423a5750614230613ed6565b60c085015261420f565b60dd81101561424c5750614230613e9d565b60ed81101561425e5750614230613e64565b60fd8110156142705750614230613e2b565b60fe8110156142825750614230613df2565b60ff111561429257614230613db9565b614230613d80565b5073ffffffffffffffffffffffffffffffffffffffff9150614215926141f260ff60006141ec565b505060006004600f84821c16106141bd565b6142e38160071a60041c614d5f565b6140b2565b6142fc816000526004602052604060002090565b5490811561432c57507c01000000000000000000000000000000000000000000000000000000008116614a135790565b905060009081548110156143f0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905b01614372816000526004602052604060002090565b549081156143c857507c010000000000000000000000000000000000000000000000000000000081161561287a576004827fdf2d9b42000000000000000000000000000000000000000000000000000000008152fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff915061435d565b6004827fdf2d9b42000000000000000000000000000000000000000000000000000000008152fd5b8015610bbf577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b90600091600080548210614455575050565b9192505b808252600460205260408220548061447e5750614477604091614418565b9050614459565b7c0100000000000000000000000000000000000000000000000000000000161592915050565b9190916144b0826142e8565b9073ffffffffffffffffffffffffffffffffffffffff8091169384828416036146d0576000848152600660205260409020805461450d73ffffffffffffffffffffffffffffffffffffffff881633908114908314171590565b1590565b614666575b61465c575b506145428573ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190556145928173ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b80546001019055169283917c0200000000000000000000000000000000000000000000000000000000804260a01b8517176145d7866000526004602052604060002090565b55811615614612575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a41561460d57565b614a91565b6001840161462a816000526004602052604060002090565b5415614637575b506145e0565b600054811461463157614654906000526004602052604060002090565b553880614631565b6000905538614517565b6146c66145096146bf3361469a8b73ffffffffffffffffffffffffffffffffffffffff166000526007602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b5460ff1690565b1561451257614a67565b614a3d565b9291906146e38282866144a4565b803b6146f0575b50505050565b6146f993614746565b1561470757388080806146ea565b7fd1a57ed60000000000000000000000000000000000000000000000000000000060005260046000fd5b9081602091031261024657516103b28161021c565b91926020916147b89160006040519586809581947f150b7a02000000000000000000000000000000000000000000000000000000009a8b845233600485015273ffffffffffffffffffffffffffffffffffffffff8095166024850152604484015260806064840152608483019061035e565b0393165af16000918161480d575b506147e7576147d3611e22565b8051156147e257805190602001fd5b614707565b7fffffffff00000000000000000000000000000000000000000000000000000000161490565b61482f91925060203d8111614836575b614827818361110c565b810190614731565b90386147c6565b503d61481d565b614846816142e8565b73ffffffffffffffffffffffffffffffffffffffff8116614874836000526006602052604060002090815490565b929061489c73ffffffffffffffffffffffffffffffffffffffff841633908114908614171590565b6149d5575b6000936149cc575b506148d48273ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b6fffffffffffffffffffffffffffffffff81540190557c03000000000000000000000000000000000000000000000000000000004260a01b831717614923856000526004602052604060002090565b557c0200000000000000000000000000000000000000000000000000000000811615614983575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8280a461249e61497e60015460010190565b600155565b6001840161499b816000526004602052604060002090565b54156149a8575b5061494a565b835481146149a2576149c4906000526004602052604060002090565b5538806149a2565b839055386148a9565b614a096145096146bf3361469a8773ffffffffffffffffffffffffffffffffffffffff166000526007602052604060002090565b156148a157614a67565b7fdf2d9b420000000000000000000000000000000000000000000000000000000060005260046000fd5b7fa11481000000000000000000000000000000000000000000000000000000000060005260046000fd5b7f59c896be0000000000000000000000000000000000000000000000000000000060005260046000fd5b7fea553b340000000000000000000000000000000000000000000000000000000060005260046000fd5b60405190614ac8826110f0565b6040808352366020840137565b60405190614c40820182811067ffffffffffffffff8211176110cf57604052614c0a8252614c20366020840137565b604051906080820182811067ffffffffffffffff8211176110cf57604052604282526060366020840137565b60405190614b3d826110f0565b602a82526040366020840137565b90614b558261118e565b614b62604051918261110c565b8281527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0614b90829461118e565b0190602036910137565b60405190614ba7826110f0565b604082527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f6040837f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208201520152565b8051908115614d5557614c1d614c18614c1184611d63565b6003900490565b612570565b90614c2f614c2a83611d71565b614b4b565b92614c38614b9a565b602085019260005b838110614cfb575050506003900680600114614caf57600214614c64575b50815290565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f3d0000000000000000000000000000000000000000000000000000000000000091015238614c5e565b507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7f3d3d00000000000000000000000000000000000000000000000000000000000091015238614c5e565b60036004910194858301516001603f9080828460121c16880101519160ff9283838387600c1c168b01015116906008918585858960061c168d0101511691831b01821b01901b931687010151160160e01b81520193614c40565b50506103b2611e0f565b806000917a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000080821015614ebf575b506d04ee2d6d415b85acef810000000080831015614eb0575b50662386f26fc1000080831015614ea1575b506305f5e10080831015614e92575b5061271080831015614e83575b506064821015614e73575b600a80921015614e69575b600190816021614df6828701614b4b565b95860101905b614e08575b5050505090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff849101917f30313233343536373839616263646566000000000000000000000000000000008282061a835304918215614e6457919082614dfc565b614e01565b9160010191614de5565b9190606460029104910191614dda565b60049193920491019138614dcf565b60089193920491019138614dc2565b60109193920491019138614db3565b60209193920491019138614da1565b604093508104915038614d88565b8051156137675760200190565b8051600110156137675760210190565b908151811015613767570160200190565b80614f04614b04565b916030614f1084614ecd565b536078614f1c84614eda565b5360415b60018111614f6b5750614f31575090565b6040517fe22e27eb000000000000000000000000000000000000000000000000000000008152600481019190915260206024820152604490fd5b90600f8116906010821015613767577f3031323334353637383961626364656600000000000000000000000000000000614fb4921a614faa8487614eea565b5360041c91614418565b614f20565b80614fc2614b30565b916030614fce84614ecd565b536078614fda84614eda565b5360295b600181116150295750614fef575090565b6040517fe22e27eb000000000000000000000000000000000000000000000000000000008152600481019190915260146024820152604490fd5b90600f8116906010821015613767577f3031323334353637383961626364656600000000000000000000000000000000615068921a614faa8487614eea565b614fde565b906150766151c7565b9061507f614abb565b91600090815b602081106150ce5750505050906150a8826020806103b29551830101910161523c565b90614c0a60016150b6614ad5565b9460208601903c61039e8301526103be820152614bf9565b8061519e61511161513961515e8661513f61513961511161510b8d6151056151006150fb6151c29e611dba565b6125a0565b61522d565b906125e6565b60ff1690565b60f81b7fff000000000000000000000000000000000000000000000000000000000000001690565b60f81c90565b8b61519661518461511161513961515e600f97888860041c1690614eea565b517fff000000000000000000000000000000000000000000000000000000000000001690565b61518d8a6125d0565b908d1a92614eea565b531687614eea565b6151bc6151b26151ad846125d0565b611d7f565b91861a9188614eea565b53615200565b615085565b604051906151d4826110b3565b601082527f30313233343536373839616263646566000000000000000000000000000000006020830152565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbf5760010190565b60ff8111610bbf576001901b90565b919082604091031261024657602082519201519056fea2646970667358221220c5766609f6f6384b4dbde9bde7514adeeefbd2f095f0c8af64c79c8e8b7ef99264736f6c63430008140033

Deployed Bytecode

0x6080604052600436101561001257600080fd5b60003560e01c806301ffc9a71461021757806306fdde031461021257806307aafa981461020d578063081812fc14610208578063095ea7b3146102035780631249c58b146101fe57806318160ddd146101f957806323b872dd146101f45780632f2c269c146101ef578063345cbc48146101ea57806340c10f19146101e557806342842e0e146101e057806342966c68146101db5780634c261247146101d65780635d87a48e146101d15780636352211e146101cc57806370a08231146101c757806395d89b41146101c25780639df5f95a146101bd578063a0712d68146101b8578063a22cb465146101b3578063a4f657c8146101ae578063a6c3e6b9146101a9578063b467e099146101a4578063b88d4fde1461019f578063c79178c61461019a578063c87b56dd14610195578063cc0970d714610190578063d48e638a1461018b578063e0d4ea3714610186578063e8a3d485146101815763e985e9c51461017c57600080fd5b611c4b565b6117a7565b61171f565b6116d4565b611697565b61158c565b611280565b6111ff565b610fd5565b610f4e565b610eb2565b610dc1565b610d8b565b610d4f565b610d15565b610c72565b610c18565b610af0565b610a6b565b610a31565b610a0e565b6109cc565b610954565b6108fb565b6108e7565b61085c565b610668565b610527565b610471565b610435565b6103b5565b61024b565b7fffffffff0000000000000000000000000000000000000000000000000000000081160361024657565b600080fd5b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760207fffffffff000000000000000000000000000000000000000000000000000000006004356102a98161021c565b167f01ffc9a7000000000000000000000000000000000000000000000000000000008114908115610311575b81156102e7575b506040519015158152f35b7f5b5e139f00000000000000000000000000000000000000000000000000000000915014386102dc565b7f80ac58cd00000000000000000000000000000000000000000000000000000000811491506102d5565b60005b83811061034e5750506000910152565b818101518382015260200161033e565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361039a8151809281875287808801910161033b565b0116010190565b9060206103b292818152019061035e565b90565b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316040516103f3816110b3565b600881527f526574e286b5726e000000000000000000000000000000000000000000000000602082015260405191829160208352602083019061035e565b0390f35b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576020600954604051908152f35b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576004356104ac81614443565b156104df576000526006602052602073ffffffffffffffffffffffffffffffffffffffff60406000205416604051908152f35b7fcf4700e40000000000000000000000000000000000000000000000000000000060005260046000fd5b73ffffffffffffffffffffffffffffffffffffffff81160361024657565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561055d81610509565b60243573ffffffffffffffffffffffffffffffffffffffff8061057f836142e8565b16908133036105ff575b600083815260066020526040812080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87161790559316907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b81600052600760205260ff6106383360406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b5416610589577fcfb3b9420000000000000000000000000000000000000000000000000000000060005260046000fd5b6000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261085957427f0000000000000000000000000000000000000000000000000000000064b15a97111561082f5766b1a2bc2ec500003403610805578054907c02000000000000000000000000000000000000000000000000000000004260a01b331717610705836000526004602052604060002090565b55336000818152600560205260409020805468010000000000000001019055156107dd578160018181019080805b610798575b846107958585835561075533916000526008602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b80f35b156107cc575b83818633877fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4610733565b8094019381850361079e5780610738565b807f2e0763000000000000000000000000000000000000000000000000000000000060049252fd5b60046040517fc755930f000000000000000000000000000000000000000000000000000000008152fd5b60046040517f844da602000000000000000000000000000000000000000000000000000000008152fd5b80fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760206000546001549003604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6060910112610246576004356108d381610509565b906024356108e081610509565b9060443590565b6108f96108f33661089d565b916144a4565b005b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760206040517f0000000000000000000000000000000000000000000000000000000064b15a978152f35b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316109b86109b3447f000000000000000000000000e16a2cb601ea61f3561ac5bd9039668609c6389061506d565b6131eb565b60405191829160208352602083019061035e565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576108f9600435610a0581610509565b6024359061261f565b6108f9610a1a3661089d565b9060405192610a28846110d4565b600084526146d5565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576108f96004356127b6565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465767ffffffffffffffff600435818111610246573660238201121561024657806004013591821161024657366024838301011161024657610431916024610ae09201611e52565b6040519081529081906020820190565b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657610b27612d8e565b50427f0000000000000000000000000000000000000000000000000000000064b15a9711610bee57600a54610bc45760404301804311610bbf57600a55600a54610b79610b7382611d1c565b91611d2a565b60408051838152602081018390529192917fef73cf832d827457ef61704e0c7f9c27fc5aa00c041fc24009dfdb7f965cbb6a9190a1604080519182526020820192909252f35b611ced565b60046040517fdd46f15c000000000000000000000000000000000000000000000000000000008152fd5b60046040517f302fd415000000000000000000000000000000000000000000000000000000008152fd5b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657602073ffffffffffffffffffffffffffffffffffffffff610c696004356142e8565b16604051908152f35b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465773ffffffffffffffffffffffffffffffffffffffff600435610cc281610509565b168015610ceb576000526005602052602067ffffffffffffffff60406000205416604051908152f35b7f8f4eb6040000000000000000000000000000000000000000000000000000000060005260046000fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316109b86124f4565b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576020600a54604051908152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576108f96004353361261f565b346102465760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657600435610dfc81610509565b602435908115158092036102465773ffffffffffffffffffffffffffffffffffffffff90336000526007602052610e578160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff851617905560405192835216907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657600954610f2457610ef36004356127b6565b15610efa57005b60046040517ffdab2ab4000000000000000000000000000000000000000000000000000000008152fd5b60046040517fa89ac151000000000000000000000000000000000000000000000000000000008152fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576020610f87612102565b73ffffffffffffffffffffffffffffffffffffffff60405191168152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60209101126102465760043590565b3461024657610fe336610fa5565b610fec9061252d565b94604097969794919493929351978897610100808a52890161100d9161035e565b88810360208a015261101e9161035e565b878103604089015261102f9161035e565b86810360608801526110409161035e565b85810360808701526110519161035e565b84810360a08601526110629161035e565b83810360c08501526110739161035e565b82810360e08401526104319161035e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff8211176110cf57604052565b611084565b6020810190811067ffffffffffffffff8211176110cf57604052565b6060810190811067ffffffffffffffff8211176110cf57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176110cf57604052565b604051906080820182811067ffffffffffffffff8211176110cf57604052565b60405190610200820182811067ffffffffffffffff8211176110cf57604052565b67ffffffffffffffff81116110cf57601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b9291926111d48261118e565b916111e2604051938461110c565b829481845281830111610246578281602093846000960137010152565b60807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561123581610509565b60243561124181610509565b6064359167ffffffffffffffff83116102465736602384011215610246576112766108f99336906024816004013591016111c8565b91604435916146d5565b34610246576020807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576004356112bc81614443565b15611562576114eb600d610431936114679360095490811560001461153257505061149b6112e86124f4565b60db6112f2612e0f565b9360005b156114f757604051611307816110b3565b600581527f776869746500000000000000000000000000000000000000000000000000000082820152905b6040519889967f3c7376672076696577426f783d2230203020313030203130302220786d6c6e73838901527f3d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7260408901527f6563742077696474683d2231303022206865696768743d22313030222066696c60608901527f6c3d22000000000000000000000000000000000000000000000000000000000060808901526113e2815180928560838c01910161033b565b8701917f22202f3e3c7465787420783d2235302220793d2236372220666f6e742d73697a60838401527f653d2234392220746578742d616e63686f723d226d6964646c65222066696c6c60a38401527f3d2200000000000000000000000000000000000000000000000000000000000060c3840152835193849160c58501910161033b565b0161149460c582017f2220666f6e742d66616d696c793d22417269616c223e000000000000000000009052565b0190612292565b7f3c2f746578743e3c2f7376673e000000000000000000000000000000000000008152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed81018452018261110c565b604051918291826103a1565b604051611503816110b3565b600981527f6c696768746772617900000000000000000000000000000000000000000000008282015290611332565b9160db61154461149b9360fc95612889565b9161154e8361252d565b5050935098935050509593600a1a116112f6565b60046040517fa14c4b50000000000000000000000000000000000000000000000000000000008152fd5b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576004356115c781614443565b15611562576114eb611657611611610431936009546115e68183612889565b916115f081614d5f565b9261161661161182851595866000146116865761160b612233565b95612fd2565b614bf9565b921561165c575061165161161161164c7f0000000000000000000000000000000000000000000000000000000064b15a97614d5f565b6128f0565b926122a9565b6124a0565b611651907f000000000000000000000000e16a2cb601ea61f3561ac5bd9039668609c6389061506d565b61160b61169283613f0f565b613417565b34610246576104316109b86109b36116ae36610fa5565b7f000000000000000000000000e16a2cb601ea61f3561ac5bd9039668609c6389061506d565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561170f81614443565b1561156257610f87602091612d2b565b346102465760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102465760043561175a81614443565b156115625760095490811561177d5760209161177591612889565b604051908152f35b60046040517f45772ba4000000000000000000000000000000000000000000000000000000008152fd5b346102465760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610246576104316114eb611657611bf66116116117f0611611612e48565b611c1f6040519384927f7b0000000000000000000000000000000000000000000000000000000000000060208501527f226e616d65223a2022526574e286b5726e222c2000000000000000000000000060218501527f22617574686f72223a202230616765222c20000000000000000000000000000060358501527f226465736372697074696f6e223a202247656e6572617469766520617564696f60478501527f76697375616c2061727420776865726520616c6c206d6574616461746120697360678501527f2073746f72656420616e642072656e6465726564206f6e636861696e2e20456160878501527f6368206d75736963616c20776f726b206973206d696e74656420696e20616e2060a78501527f756e72657665616c6564207374617465206f76657220616e206f70656e2c203360c78501527f206461792077696e646f772066726f6d206465706c6f796d656e742e2041667460e78501527f657220746865206d696e7420706861736520656e64732c20656e74726f7079206101078501527f697320736f75726365642066726f6d20626f746820612066757475726520626c6101278501527f6f636b20616e642066726f6d2061206d6573736167652077686f736520636f6e6101478501527f74656e74732061726520636f6d6d697474656420746f206174207468652074696101678501527f6d65206f66206465706c6f796d656e742e205468697320656e74726f707920696101878501527f73207573656420746f2066696e616c697a65206d6574616461746120616e64206101a78501527f72657665616c2074686520656e64207374617465206f662065616368206d696e6101c78501527f74656420776f726b2e2050726f76656e616e63652069732065737461626c69736101e78501527f68656420666f72206561636820746f6b656e206279207065726d616e656e746c6102078501527f79207265636f7264696e6720746865206163636f756e74207573656420746f206102278501527f63726561746520697420616e6420696e636f72706f726174696e6720746865206102478501527f6164647265737320696e746f20746865207365656420746861742064657465726102678501527f6d696e657320746f6b656e20617474726962757465732e205761726e696e673a6102878501527f20666c617368696e6720696d6167657279202620617564696f2070726573656e6102a78501527f742e222c200000000000000000000000000000000000000000000000000000006102c7850152611bf06102cc85016024907f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62617381527f6536342c0000000000000000000000000000000000000000000000000000000060208201520190565b90612292565b7f227d000000000000000000000000000000000000000000000000000000000000815260020190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810183528261110c565b346102465760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261024657602060ff611ce1600435611c8d81610509565b73ffffffffffffffffffffffffffffffffffffffff60243591611caf83610509565b166000526007845260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54166040519015158152f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b9060018201809211610bbf57565b9060ff8201809211610bbf57565b906107088201809211610bbf57565b9060c08201809211610bbf57565b9060408201809211610bbf57565b9060028201809211610bbf57565b9060208201809211610bbf57565b6001019081600111610bbf57565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201918211610bbf57565b601f0390601f8211610bbf57565b927fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008695929360549794865260601b16602085015260348401528483013701016000815290565b60405190611e1c826110d4565b60008252565b3d15611e4d573d90611e338261118e565b91611e41604051938461110c565b82523d6000602084013e565b606090565b611e5a612d8e565b91600954610f24577fdf1b8bdd0db9449895571155d1e7d8ba0b5891111de4164a8ebe2760472961b5611e8e3683856111c8565b60208151910120036120b757600a5490811561208d57438210156120635743611eb683611d2a565b1061203957600091611ec743611d8d565b8114612031575b8215612028575b508115611ffe576000809392819392611eff8394611c1f6040519384926020840196304689611dc8565b51902094611f0c86600955565b73ffffffffffffffffffffffffffffffffffffffff4791165af1611f2e611e22565b5015611fbe577f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c611fb8611fa0611f69600054600154900390565b60408051868152602081018390527f6765f1b8ca6c099f7378c6e9b12cf8afac970d483c3faf81745e4b40c26148db9190a1611d8d565b60405191829182919060206040840193600081520152565b0390a190565b62ffffff3d103d16611ff45760046040517fc224d493000000000000000000000000000000000000000000000000000000008152fd5b3d6000803e3d6000fd5b60046040517f23d50cb7000000000000000000000000000000000000000000000000000000008152fd5b40915038611ed5565b449250611ece565b60046040517f9a73e7fe000000000000000000000000000000000000000000000000000000008152fd5b60046040517f350e7b68000000000000000000000000000000000000000000000000000000008152fd5b60046040517f0a0ce86b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fa620d854000000000000000000000000000000000000000000000000000000008152fd5b9081602091031261024657516103b281610509565b6040513d6000823e3d90fd5b6040517f0178b8bf0000000000000000000000000000000000000000000000000000000081527f5be0d7c69b122a7f2a1860fccbecc010039f5bef0f34c5736dce569c6da6d834600482018190526020919082826024816e0c2e074ec69a0dfb2997ba6c7d2e1e5afa91821561220f5773ffffffffffffffffffffffffffffffffffffffff9284926121d192600092612214575b506040519485809481937f3b3b57de000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b0392165afa91821561220f576000926121e957505090565b6103b29250803d10612208575b612200818361110c565b8101906120e1565b503d6121f6565b6120f6565b61222c919250843d861161220857612200818361110c565b9038612196565b60405190612240826110f0565b602e82527f22556e72657665616c6564227d5d0000000000000000000000000000000000006040837f5b7b2274726169745f74797065223a22537461747573222c2276616c7565223a60208201520152565b906122a56020928281519485920161033b565b0190565b61244e6002929594611bf06123ff61249e9660c86040519a8b977f7b226e616d65223a22526574e286b5726e20e28094202300000000000000000060208a01526122fd81518092602060378d01910161033b565b88017f222c226465736372697074696f6e223a2247656e65726174697665206175646960378201527f6f76697375616c2061727420776865726520616c6c206d65746164617461206960578201527f732073746f72656420616e642072656e6465726564206f6e636861696e2e222c60778201527f2261747472696275746573223a0000000000000000000000000000000000000060978201526123ab82518093602060a48501910161033b565b017f2c22696d616765223a22646174613a696d6167652f7376672b786d6c3b62617360a48201527f6536342c0000000000000000000000000000000000000000000000000000000060c48201520190612292565b7f222c22616e696d6174696f6e5f75726c223a22646174613a746578742f68746d81527f6c3b6261736536342c0000000000000000000000000000000000000000000000602082015260290190565b7f227d0000000000000000000000000000000000000000000000000000000000008152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe281018552018361110c565b565b9061249e603d60405180947f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000060208301526124e4815180926020868601910161033b565b810103601d81018552018361110c565b60405190612501826110b3565b600382527fe286b500000000000000000000000000000000000000000000000000000000006020830152565b61253690613f0f565b602081015160408201516060830151608084015160a085015160c086015160e0870151610100909701519597949693959294919390929091565b908160021b917f3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811603610bbf57565b908160031b917f1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811603610bbf57565b908160011b9180830460021490151715610bbf57565b81156125f0570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b919091427f0000000000000000000000000000000000000000000000000000000064b15a97111561082f57670de0b6b3a76400009081840284159285820414831715610bbf5760149004340361080557600080549261278e576001946126de73ffffffffffffffffffffffffffffffffffffffff84169387831460e11b4260a01b1785176126b7876000526004602052604060002090565b5573ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b6801000000000000000182028154019055821561276657830191839580805b612721575b50505061249e9394505561075533916000526008602052604060002090565b15612755575b82818884867fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a46126fd565b809601958387036127275780612702565b6004827f2e076300000000000000000000000000000000000000000000000000000000008152fd5b807fb562e8dd0000000000000000000000000000000000000000000000000000000060049252fd5b6127e76127e16127c86127c8846142e8565b73ffffffffffffffffffffffffffffffffffffffff1690565b9161483d565b60006128127f0000000000000000000000000000000000000000000000000000000064b15a97611d38565b4210158061287f575b1561287a57506000808066b1a2bc2ec5000081945af1612839611e22565b501561284457600190565b62ffffff3d103d16611ff45760046040517ffdab2ab4000000000000000000000000000000000000000000000000000000008152fd5b905090565b506009541561281b565b906128eb7fffffffffffffffffffffffff000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff9260405160208101918683526040820152604081526128e1816110f0565b5190201692612d2b565b161790565b9061249e612a8b92612cff6040519485927f3c21646f637479706568746d6c3e3c7469746c653e5265742623383632393b7260208501527f6e3c2f7469746c653e3c6d65746120636f6e74656e743d30616765206e616d6560408501527f3d617574686f723e3c7374796c653e626f64797b6261636b67726f756e642d6360608501527f6f6c6f723a233030303b636f6c6f723a236433643364333b646973706c61793a60808501527f666c65783b6a7573746966792d636f6e74656e743a63656e7465723b616c696760a08501527f6e2d6974656d733a63656e7465723b6865696768743a31303076683b6d61726760c08501527f696e3a303b666f6e742d66616d696c793a417269616c2c73616e732d7365726960e08501527f663b746578742d616c69676e3a63656e7465727d3c2f7374796c653e3c6469766101008501527f3e3c68312069643d313e3c2f68313e3c68312069643d323e3c2f68313e3c2f646101208501527f69763e3c7363726970743e6c657420743d6e657720446174652800000000000061014085015261015a840190612292565b610211907f6533292c6d3d2257616974696e6720666f722072657665616c2e2e2e223b6c6581527f7420633b66756e6374696f6e207528297b6c657420653d6e657720446174652c60208201527f6e3d742d653b6e3c3d303f28636c656172496e74657276616c2863292c646f6360408201527f756d656e742e676574456c656d656e744279496428223122292e74657874436f8060608301527f6e74656e743d6d2c646f63756d656e742e676574456c656d656e74427949642860808301527f223222292e7374796c652e646973706c61793d226e6f6e6522293a646f63756d60a08301527f656e742e676574456c656d656e744279496428223222292e74657874436f6e7460c08301527f656e743d5b4d6174682e666c6f6f72286e2f3836346535292c4d6174682e666c60e08301527f6f6f72286e2538363465352f33366535292c4d6174682e666c6f6f72286e25336101008301527f3665352f366534292c4d6174682e666c6f6f72286e253665342f316533295d2e6101208301527f6d617028653d3e652e746f537472696e6728292e706164537461727428322c226101408301527f302229292e6a6f696e28223a22297d6e657720446174653c743f28646f63756d6101608301527f656e742e676574456c656d656e744279496428223122292e74657874436f6e746101808301527f656e743d2257616974696e6720666f72206d696e7420746f20636f6d706c65746101a08301527f65222c7528292c633d736574496e74657276616c28752c31653329293a646f636101c08301526101e08201527f6e74656e743d6d3b3c2f7363726970743e0000000000000000000000000000006102008201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810184528361110c565b906000915b808352600860205273ffffffffffffffffffffffffffffffffffffffff60408420541680612d8957507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811115612d3057611ced565b925050565b73ffffffffffffffffffffffffffffffffffffffff612dab612102565b16803303612db65790565b60046040517f82b42900000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60405190612e1c826110b3565b600782527f23303030303030000000000000000000000000000000000000000000000000006020830152565b6114676103b2600d612e586124f4565b61149b612e63612e0f565b9160db604051612e72816110b3565b6009815260208101907f6c6967687467726179000000000000000000000000000000000000000000000082526040519889967f3c7376672076696577426f783d2230203020313030203130302220786d6c6e7360208901527f3d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7260408901527f6563742077696474683d2231303022206865696768743d22313030222066696c60608901527f6c3d2200000000000000000000000000000000000000000000000000000000006080890152612f5081518092602060838c01910161033b565b8701917f22202f3e3c7465787420783d2235302220793d2236372220666f6e742d73697a60838401527f653d2234392220746578742d616e63686f723d226d6964646c65222066696c6c60a38401527f3d2200000000000000000000000000000000000000000000000000000000000060c384015251809360c584019061033b565b816131ad57505050612fe26124f4565b6103b2600d612fef612e0f565b60005b1561316e5761149b604051613006816110b3565b600581527f77686974650000000000000000000000000000000000000000000000000000006020820152945b60db6040519687947f3c7376672076696577426f783d2230203020313030203130302220786d6c6e7360208701527f3d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7260408701527f6563742077696474683d2231303022206865696768743d22313030222066696c60608701527f6c3d22000000000000000000000000000000000000000000000000000000000060808701526130e681518092602060838a01910161033b565b85017f22202f3e3c7465787420783d2235302220793d2236372220666f6e742d73697a60838201527f653d2234392220746578742d616e63686f723d226d6964646c65222066696c6c60a38201527f3d2200000000000000000000000000000000000000000000000000000000000060c382015261146782518093602060c58501910161033b565b61149b60405161317d816110b3565b600981527f6c69676874677261790000000000000000000000000000000000000000000000602082015294613032565b82156131da575b50506103b2600d60fc6131c68461252d565b5050935094935050509194600a1a11612ff2565b6131e49250612889565b38806131b4565b9061249e603660405180947f646174613a746578742f68746d6c3b6261736536342c00000000000000000000602083015261322f815180926020868601910161033b565b810103601681018552018361110c565b909392612cff90611bf0608561249e956040519889967f227d2c7b2274726169745f74797065223a224172726f77222c2276616c75652260208901527f3a22000000000000000000000000000000000000000000000000000000000000908160408a01526132b781518092602060428d01910161033b565b8801907f227d2c7b2274726169745f74797065223a22436f6c6f72222c2276616c756522604283015260628201526132f982518093602060648501910161033b565b017f227d2c7b2274726169745f74797065223a22546f6e65222c2276616c7565223a60648201527f22000000000000000000000000000000000000000000000000000000000000006084820152613359825180936020868501910161033b565b01016024907f227d2c7b2274726169745f74797065223a2243726561746f72222c2276616c7581527f65223a220000000000000000000000000000000000000000000000000000000060208201520190565b602361249e9193929360405194816133cd87935180926020808701910161033b565b82016133e2825180936020808501910161033b565b017f227d5d0000000000000000000000000000000000000000000000000000000000602082015203600381018552018361110c565b6134856136166103b2926135fa81516135ce6020840151611bf061357f604087015160a360608901519160808a015195603f6040519d8e809b7f5b7b2274726169745f74797065223a2253656564222c2276616c7565223a220060208301526020815194859301910161033b565b89017f227d2c7b2274726169745f74797065223a2254656d706f222c2276616c756522603f8201527f3a22000000000000000000000000000000000000000000000000000000000000605f8201526134e782518093602060618501910161033b565b01907f227d2c7b2274726169745f74797065223a2256696265222c2276616c7565223a60618301527f22000000000000000000000000000000000000000000000000000000000000009182608182015261354b82518093602060828501910161033b565b01907f227d2c7b2274726169745f74797065223a22526f6f74222c2276616c7565223a608283015260a28201520190612292565b7f227d2c7b2274726169745f74797065223a225374796c65222c2276616c75652281527f3a22000000000000000000000000000000000000000000000000000000000000602082015260220190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810185528461110c565b60a08101519060c081015161010060e08301519201519261323f565b906133ab565b60405190610120820182811067ffffffffffffffff8211176110cf576040528161010060609182815282602082015282604082015282808201528260808201528260a08201528260c08201528260e08201520152565b6040519061367f826110b3565b600182527f32000000000000000000000000000000000000000000000000000000000000006020830152565b604051906136b8826110b3565b600182527f33000000000000000000000000000000000000000000000000000000000000006020830152565b604051906136f1826110b3565b600182527f34000000000000000000000000000000000000000000000000000000000000006020830152565b6040519061372a826110b3565b600182527f36000000000000000000000000000000000000000000000000000000000000006020830152565b9060048110156137675760051b0190565b612de0565b60405190613779826110b3565b600482527f45e28281000000000000000000000000000000000000000000000000000000006020830152565b604051906137b2826110b3565b600482527f46e28281000000000000000000000000000000000000000000000000000000006020830152565b604051906137eb826110b3565b600f82527f46e299afe282812f47e299ade2828100000000000000000000000000000000006020830152565b60405190613824826110b3565b600482527f47e28281000000000000000000000000000000000000000000000000000000006020830152565b6040519061385d826110b3565b600f82527f47e299afe282812f41e299ade2828100000000000000000000000000000000006020830152565b60405190613896826110b3565b600482527f41e28281000000000000000000000000000000000000000000000000000000006020830152565b604051906138cf826110b3565b600f82527f41e299afe282812f42e299ade2828100000000000000000000000000000000006020830152565b60405190613908826110b3565b600482527f42e28281000000000000000000000000000000000000000000000000000000006020830152565b60405190613941826110b3565b600482527f43e28282000000000000000000000000000000000000000000000000000000006020830152565b6040519061397a826110b3565b600f82527f43e299afe282822f44e299ade2828200000000000000000000000000000000006020830152565b604051906139b3826110b3565b600482527f44e28282000000000000000000000000000000000000000000000000000000006020830152565b604051906139ec826110b3565b600f82527f44e299afe282822f45e299ade2828200000000000000000000000000000000006020830152565b60405190613a25826110b3565b600482527f45e28282000000000000000000000000000000000000000000000000000000006020830152565b60405190613a5e826110b3565b600482527f46e28282000000000000000000000000000000000000000000000000000000006020830152565b60405190613a97826110b3565b600f82527f46e299afe282822f47e299ade2828200000000000000000000000000000000006020830152565b60405190613ad0826110b3565b600482527f47e28282000000000000000000000000000000000000000000000000000000006020830152565b9060108110156137675760051b0190565b60405190613b1a826110b3565b600282527f31360000000000000000000000000000000000000000000000000000000000006020830152565b60405190613b53826110b3565b600382527fe2869900000000000000000000000000000000000000000000000000000000006020830152565b60405190613b8c826110b3565b600382527fe2869c00000000000000000000000000000000000000000000000000000000006020830152565b60405190613bc5826110b3565b600382527fe286a900000000000000000000000000000000000000000000000000000000006020830152565b60405190613bfe826110b3565b600382527fe2878700000000000000000000000000000000000000000000000000000000006020830152565b60405190613c37826110b3565b600382527fe2879000000000000000000000000000000000000000000000000000000000006020830152565b60405190613c70826110b3565b600382527fe287a400000000000000000000000000000000000000000000000000000000006020830152565b60405190613ca9826110b3565b600382527fe287a600000000000000000000000000000000000000000000000000000000006020830152565b60405190613ce2826110b3565b600382527fe28f8e00000000000000000000000000000000000000000000000000000000006020830152565b60405190613d1b826110b3565b600382527fe2978000000000000000000000000000000000000000000000000000000000006020830152565b60405190613d54826110b3565b600382527fe2a4b600000000000000000000000000000000000000000000000000000000006020830152565b60405190613d8d826110b3565b600782527f23303066666666000000000000000000000000000000000000000000000000006020830152565b60405190613dc6826110b3565b600782527f23666630306666000000000000000000000000000000000000000000000000006020830152565b60405190613dff826110b3565b600782527f23666666663030000000000000000000000000000000000000000000000000006020830152565b60405190613e38826110b3565b600782527f23303030306666000000000000000000000000000000000000000000000000006020830152565b60405190613e71826110b3565b600782527f23303066663030000000000000000000000000000000000000000000000000006020830152565b60405190613eaa826110b3565b600782527f23666630303030000000000000000000000000000000000000000000000000006020830152565b60405190613ee3826110b3565b600782527f23666666666666000000000000000000000000000000000000000000000000006020830152565b613f1761361c565b90613f2181614efb565b8252613f48613f43613f3e613f388460001a611d47565b607f1690565b611d55565b614d5f565b6020830152613f99613f5861114d565b613f60613672565b8152613f6a6136ab565b6020820152613f776136e4565b6040820152613f8461371d565b606082015260038360011a60061c1690613756565b51604083015261408f613faa61116d565b613fb261376c565b8152613fbc6137a5565b6020820152613fc96137de565b6040820152613fd6613817565b6060820152613fe3613850565b6080820152613ff0613889565b60a0820152613ffd6138c2565b60c082015261400a6138fb565b60e0820152614017613934565b61010082015261402561396d565b6101208201526140336139a6565b6101408201526140416139df565b61016082015261404f613a18565b61018082015261405d613a51565b6101a082015261406b613a8a565b6101c0820152614079613ac3565b6101e0820152600f8360021a60041c1690613afc565b51606083015260009080600b1a90600f808316146000146142d4576140b2613b0d565b60808501526141a76140c261116d565b6140ca6124f4565b81526140d4613b46565b60208201526140e16124f4565b60408201526140ee613b7f565b60608201526140fb613bb8565b60808201526141086124f4565b60a0820152614115613bf1565b60c0820152614122613c2a565b60e082015261412f6124f4565b61010082015261413d613c63565b61012082015261414b613c9c565b6101408201526141596124f4565b610160820152614167613cd5565b6101808201526141756124f4565b6101a0820152614183613d0e565b6101c0820152614191613d47565b6101e0820152600f8360081a60041c1690613afc565b5160a085015280600a1a92600f841615806142c2575b1561429a5761376757614215926141f260ff600f73ffffffffffffffffffffffffffffffffffffffff9560041c165b16614d5f565b60e086015260bd81101561421e5750614209612e0f565b60c08501525b16614fb9565b61010082015290565b60cd81101561423a5750614230613ed6565b60c085015261420f565b60dd81101561424c5750614230613e9d565b60ed81101561425e5750614230613e64565b60fd8110156142705750614230613e2b565b60fe8110156142825750614230613df2565b60ff111561429257614230613db9565b614230613d80565b5073ffffffffffffffffffffffffffffffffffffffff9150614215926141f260ff60006141ec565b505060006004600f84821c16106141bd565b6142e38160071a60041c614d5f565b6140b2565b6142fc816000526004602052604060002090565b5490811561432c57507c01000000000000000000000000000000000000000000000000000000008116614a135790565b905060009081548110156143f0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905b01614372816000526004602052604060002090565b549081156143c857507c010000000000000000000000000000000000000000000000000000000081161561287a576004827fdf2d9b42000000000000000000000000000000000000000000000000000000008152fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff915061435d565b6004827fdf2d9b42000000000000000000000000000000000000000000000000000000008152fd5b8015610bbf577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b90600091600080548210614455575050565b9192505b808252600460205260408220548061447e5750614477604091614418565b9050614459565b7c0100000000000000000000000000000000000000000000000000000000161592915050565b9190916144b0826142e8565b9073ffffffffffffffffffffffffffffffffffffffff8091169384828416036146d0576000848152600660205260409020805461450d73ffffffffffffffffffffffffffffffffffffffff881633908114908314171590565b1590565b614666575b61465c575b506145428573ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190556145928173ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b80546001019055169283917c0200000000000000000000000000000000000000000000000000000000804260a01b8517176145d7866000526004602052604060002090565b55811615614612575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a41561460d57565b614a91565b6001840161462a816000526004602052604060002090565b5415614637575b506145e0565b600054811461463157614654906000526004602052604060002090565b553880614631565b6000905538614517565b6146c66145096146bf3361469a8b73ffffffffffffffffffffffffffffffffffffffff166000526007602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b5460ff1690565b1561451257614a67565b614a3d565b9291906146e38282866144a4565b803b6146f0575b50505050565b6146f993614746565b1561470757388080806146ea565b7fd1a57ed60000000000000000000000000000000000000000000000000000000060005260046000fd5b9081602091031261024657516103b28161021c565b91926020916147b89160006040519586809581947f150b7a02000000000000000000000000000000000000000000000000000000009a8b845233600485015273ffffffffffffffffffffffffffffffffffffffff8095166024850152604484015260806064840152608483019061035e565b0393165af16000918161480d575b506147e7576147d3611e22565b8051156147e257805190602001fd5b614707565b7fffffffff00000000000000000000000000000000000000000000000000000000161490565b61482f91925060203d8111614836575b614827818361110c565b810190614731565b90386147c6565b503d61481d565b614846816142e8565b73ffffffffffffffffffffffffffffffffffffffff8116614874836000526006602052604060002090815490565b929061489c73ffffffffffffffffffffffffffffffffffffffff841633908114908614171590565b6149d5575b6000936149cc575b506148d48273ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090565b6fffffffffffffffffffffffffffffffff81540190557c03000000000000000000000000000000000000000000000000000000004260a01b831717614923856000526004602052604060002090565b557c0200000000000000000000000000000000000000000000000000000000811615614983575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8280a461249e61497e60015460010190565b600155565b6001840161499b816000526004602052604060002090565b54156149a8575b5061494a565b835481146149a2576149c4906000526004602052604060002090565b5538806149a2565b839055386148a9565b614a096145096146bf3361469a8773ffffffffffffffffffffffffffffffffffffffff166000526007602052604060002090565b156148a157614a67565b7fdf2d9b420000000000000000000000000000000000000000000000000000000060005260046000fd5b7fa11481000000000000000000000000000000000000000000000000000000000060005260046000fd5b7f59c896be0000000000000000000000000000000000000000000000000000000060005260046000fd5b7fea553b340000000000000000000000000000000000000000000000000000000060005260046000fd5b60405190614ac8826110f0565b6040808352366020840137565b60405190614c40820182811067ffffffffffffffff8211176110cf57604052614c0a8252614c20366020840137565b604051906080820182811067ffffffffffffffff8211176110cf57604052604282526060366020840137565b60405190614b3d826110f0565b602a82526040366020840137565b90614b558261118e565b614b62604051918261110c565b8281527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0614b90829461118e565b0190602036910137565b60405190614ba7826110f0565b604082527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f6040837f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208201520152565b8051908115614d5557614c1d614c18614c1184611d63565b6003900490565b612570565b90614c2f614c2a83611d71565b614b4b565b92614c38614b9a565b602085019260005b838110614cfb575050506003900680600114614caf57600214614c64575b50815290565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f3d0000000000000000000000000000000000000000000000000000000000000091015238614c5e565b507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7f3d3d00000000000000000000000000000000000000000000000000000000000091015238614c5e565b60036004910194858301516001603f9080828460121c16880101519160ff9283838387600c1c168b01015116906008918585858960061c168d0101511691831b01821b01901b931687010151160160e01b81520193614c40565b50506103b2611e0f565b806000917a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000080821015614ebf575b506d04ee2d6d415b85acef810000000080831015614eb0575b50662386f26fc1000080831015614ea1575b506305f5e10080831015614e92575b5061271080831015614e83575b506064821015614e73575b600a80921015614e69575b600190816021614df6828701614b4b565b95860101905b614e08575b5050505090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff849101917f30313233343536373839616263646566000000000000000000000000000000008282061a835304918215614e6457919082614dfc565b614e01565b9160010191614de5565b9190606460029104910191614dda565b60049193920491019138614dcf565b60089193920491019138614dc2565b60109193920491019138614db3565b60209193920491019138614da1565b604093508104915038614d88565b8051156137675760200190565b8051600110156137675760210190565b908151811015613767570160200190565b80614f04614b04565b916030614f1084614ecd565b536078614f1c84614eda565b5360415b60018111614f6b5750614f31575090565b6040517fe22e27eb000000000000000000000000000000000000000000000000000000008152600481019190915260206024820152604490fd5b90600f8116906010821015613767577f3031323334353637383961626364656600000000000000000000000000000000614fb4921a614faa8487614eea565b5360041c91614418565b614f20565b80614fc2614b30565b916030614fce84614ecd565b536078614fda84614eda565b5360295b600181116150295750614fef575090565b6040517fe22e27eb000000000000000000000000000000000000000000000000000000008152600481019190915260146024820152604490fd5b90600f8116906010821015613767577f3031323334353637383961626364656600000000000000000000000000000000615068921a614faa8487614eea565b614fde565b906150766151c7565b9061507f614abb565b91600090815b602081106150ce5750505050906150a8826020806103b29551830101910161523c565b90614c0a60016150b6614ad5565b9460208601903c61039e8301526103be820152614bf9565b8061519e61511161513961515e8661513f61513961511161510b8d6151056151006150fb6151c29e611dba565b6125a0565b61522d565b906125e6565b60ff1690565b60f81b7fff000000000000000000000000000000000000000000000000000000000000001690565b60f81c90565b8b61519661518461511161513961515e600f97888860041c1690614eea565b517fff000000000000000000000000000000000000000000000000000000000000001690565b61518d8a6125d0565b908d1a92614eea565b531687614eea565b6151bc6151b26151ad846125d0565b611d7f565b91861a9188614eea565b53615200565b615085565b604051906151d4826110b3565b601082527f30313233343536373839616263646566000000000000000000000000000000006020830152565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbf5760010190565b60ff8111610bbf576001901b90565b919082604091031261024657602082519201519056fea2646970667358221220c5766609f6f6384b4dbde9bde7514adeeefbd2f095f0c8af64c79c8e8b7ef99264736f6c63430008140033

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.