欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費電子書(shū)等14項超值服

開(kāi)通VIP
INTRODUCTION TO JOB CONTROL LANGUAGE
University of Toledo -- Computer ServicesINTRODUCTION TO JOB CONTROL LANGUAGE (JCL)A. Documentation Sources include:1. IBM Manuals available at the Computer Services consultingdesks, including:a. IBM‘s OS/VS1 JCL Servicesb. IBM‘s OS/VS1 JCL Referencec. IBM‘s OS/VS Message Library: VS1 System Codesd. IBM‘s OS/VS Message Library: VS1 System Messages2. The HELP System within CMS:a. help datasets - how to create disk files to use inbatchb. help intro jclerror - debugging JCL error messagesc. help xedit jclget - build skeleton JCL filesd. help jobcard - how to construct a valid "JOB" statemente. help jobclass - defines JOB classes and their run order3. The following PHOENIX on-line courses (contact a full-timeconsultant for registration):a. JCLUSE - Basic JCL for end users and entry level dataprocessors.b. PGMJCL - JCL for programmers.c. VSJCL - Coding OS/VS JCL (written by IBM).d. See Help COURSES for a complete list of all availablecourses and their descriptions.B. What is JCL?1. JCL is used to define a task or job for the computer,including: where your program and data are located and howthey are stored; what compilers, packages, or programs youplan to use (i.e., FORTRAN, SPSSX); where to send theoutput or how to display it; what types and amounts ofresources you‘ll use, including time, disk, tape, and linesof print.2. JCL was invented by IBM and has been around a long time.While there may be minor variations among installations(like UT‘s JOB statement), basically the types and uses ofthe statements are the same.C. General Format+-------------------------------------------------------------+| || //name operation parameter1,parameter2,...... || |+-------------------------------------------------------------+1. All JCL must be entered in upper case.2. All JCL statements have // in columns 1 and 2.3. Positions 3-71 contain JCL information.4. There are three fields to each JCL statement (name,operation, parameters). Fields are separated from oneanother by blanks.5. The name field identifies the statement so that otherstatements can refer to it. Valid characters include:letters, numbers, and the special characters @, #, and $.The name must start with a letter or special character andalways starts in column 3 (right after the //).6. Operation refers to the type of JCL statement. Thefollowing statements are discussed in this outline:a. JOB - defines the beginning of a job; providesaccounting information and resource needs (i.e., time,tape drives)b. EXEC - specifies the procedure, compiler, package, orprogramc. DD - specifies the names and locations of input,output, and temporary files7. Individual parameters are separated by commas; do NOT placeblanks between parameters. If you do, everything after thespace is treated as a comment.8. If your JCL statement is too long for one line or you wantto place parameters on separate lines, break the statementafter a complete parameter (including the comma) at orbefore column 71. Enter // in columns 1 and 2 of the nextline, followed by 1 to 13 blanks, and then continue thestatement.9. Three special JCL statements:a. A /* in columns 1 and 2 indicates end-of-data; this iscalled a delimiter statement.b. A //* in columns 1 thru 3 indicates a comment card;this allows you to document your JCL files.c. A // in columns 1 and 2 indicates end-of-job; this iscalled a null statement. This statement should alwaysbe the last line of your JCL files. Otherwise, yourjob may be concatenated to the previous job -- andneither will run.D. The JOB Statement1. Defines the beginning of the JOB.2. Provides accounting information and an estimate of the timeit will take to run your JOB.3. May describe how many (and what) messages to print (andwhere to print them), and the number of tape drives youwill need to use.4. The basic format of the UT JOB card is://JOBThe following optional parameters may be added:TIME=minutes is an estimate of the CPU time (in minutes)needed for your JOB; the default (if no time is specified)is 10 secondsROUTE=aaaaaaaaaa is where you want the output sent;can be the name of a printer (i.e., XSTRAN, XENGR), yourreader (the default), or VAX/VMS account).REGION=xxxx is the amount of memory you need for yourjob; default is 4 meg.See Help JOBCARD for complete details.5. JOB card examples://JOB//JOB TIME=5//JOB ROUTE=XSTRAN,TIME=1//JOB ROUTE=UOFT02.STX9999,TIME=10E. The EXEC statement1. Indicates the compiler, program, package, or catalogedprocedure which should be called. There can be severalEXEC statements in a JOB stream. Each EXEC statement marksthe beginning of a new JOB step.2. Formats://stepname EXEC procedure-name//stepname EXEC procedure-name,parameters//stepname EXEC PGM=program-name//stepname EXEC PGM=program-name,parameters3. The stepname is optional; it allows you to refer toprevious steps in the JOB (for error checking, passing ofdata sets, etc.). It is a name you assign to the JOB step.4. Procedure-name is the name of a cataloged procedure. Torun a JOB, you usually need to supply several JCLstatements that not only name the program or package, butalso the input, output, and temporary files needed. Mostof the time, these files are exactly the same for everyonerunning the same program. A cataloged procedureautomatically generates these "typical" JCL statements andinserts them into your JOB stream. All languages and mostpackages here at UT have cataloged procedures available.5. PGM=program-name is the name of a program stored in asystem or private program library (for example, theACADEMIC LIBRARY). The library name may need to bespecified in either a JOBLIB or STEPLIB statement.6. PARM=‘x‘ are the values or codes used by the program duringprocessing (this varies with each program); these aresometimes called options.7. TIME=(minutes,seconds) is the maximum amount of time forthe job step; the default is the time from the second JOBcard minus the time used in previous steps (if any), up to30 minutes.8. Examples://SPSS EXEC SPSSX//STEP1 EXEC FORTVCLG,PARM=‘NOSOURCE,NOSRCFLG‘//STEP1 EXEC PGM=IEBGENERF. The DD statement1. The DD statement (Data Definition) describes input andoutput files and data sets. Only the most commonly usedparameters are discussed below.2. Format://ddname DD parameters3. The DDNAME is required. This name will be referred to in acomplete or abbreviated form by the program or package youare running.4. Instream input can be indicated in two ways:a. An * indicates that the program or data immediatelyfollows this statement.b. DATA,DLM=xx indicates that the data follows and thatthe data contains // or /* in columns 1 and 2. Theseusually mean end-of-job and end-of-input. When you usethis form of DD statement, the system looks for thecharacters xx in columns 1 and 2 to indicate end-of-jobor end-of-data. xx can be any set of alphabeticcharacters which do not occur in columns 1 and 2 ofyour data.c.Examples: //SYSIN DD *//INPUT DD DATA,DLM=XX5. Printed and Punched Outputa. SYSOUT=x where x can be:A line printerB card punch* user‘s virtual readerN TN (upper/lower case) print trainP Zeta Plotter (12 inch paper)S Zeta Plotter (36 inch paper)b. COPIES=nnn where nnn is the number of output copies youwant printed. The default is 1. Please note: if youwant more than 3 copies of output printed, specialarrangements must be made through Production Control;otherwise, your output will be purged from the system.Also, all output specifying multiple copies MUST beprinted on the IOROOM printer.c. OUTLIM=nnnnnn where nnnnnn is the number of lines ofoutput you need to have printed. The default is 4000lines. Please note: if you need more than 10,000lines printed, special arrangements must be madethrough Production Control; otherwise, your output willbe purged from the system. Also, all output with morethan 5000 lines MUST be printed on the IOROOM printer.d. Examples://PRINTER DD SYSOUT=*,COPIES=2,OUTLIM=6000//MIXCASE DD SYSOUT=N//GO.FT09F001 DD SYSOUT=P6. Disk and Tape Data Setsa. DSN=name where the DSN (Data Set Name) is composed of aseries of words connected by periods. Each word is 1-8alphanumeric characters; the word must start with aletter. The maximum number of characters in the entirename, including the periods, is 44. For example:ATS.A123456.MYNAME.DATAFILEType Help DATASET for UT‘s naming convention; data setswhich do not conform to this convention will be deletedfrom the system. All permanent tape and disk data setsmust be registered with Lance Stoll. If they are notregistered, they will be purged from the system atmidnight of the day they were created.b. UNIT=type indicates the type of device. The followingare the most common:Disk a disk data set; this unit designation is usedwhen your data set must be put on a particular disk.Used in conjuction with VOL=SER=volume-name (seebelow).SYSDA a system disk data set; used with temporary datasets.TAPE tells the system a reel tape will be used.TAPE80 tells the system a cartridge tape will be used.Eventually all tape files will be on cartridge tape.c. The DISPosition specifies what to do with the data set:DISP=statusDISP=(status,disp)DISP=(status,disp,cond)where status indicates the status of the data set atthe beginning of the step, disp indicates what to dowith the data set at the end of the step, and condindicates what to do with the data set if the stepabends (or fails). The value that each may take isindicated in the table below:status:______NEW new data setOLD existing data set; will be read or replacedMOD existing data set; records to be added to endSHR existing disk data set; share with other usersdisp:____PASS pass it to the next job stepKEEP keep it when the step is doneCATLG catalog the data setUNCATLG uncatalog the data setDELETE delete it when the step is donecond:____KEEP keep it when the step is doneCATLG catalog the data setUNCATLG uncatalog the data setDELETE delete it when the step is doned. VOL=SER=name specifies the volume/serial of the disk ortape that the data set is stored on; this is notrequired for cataloged data sets.e. LABEL=(n,type) where n specifies the sequence of thefile on tape (i.e., 2 for the second file); type can beeither SL (for IBM Standard Label) or NL (for NoLabel). All tapes created at UT must be SL tapes.f. SPACE=(unit,(primary,secondary)) specifies how muchspace will be required for a new disk data set.unit is either BLKSIZE, TRK (track), or CYL (cylinder);primary is the number of units initially allocated;secondary is the allocation if the primary is filled.A track holds about 235 80-character records; acylinder, about 7150 records.g. DCB=(characteristics) specifies some of the physicalcharacteristics of the data set:RECFM=xx indicates the general format of the records;xx can have one of the following values: F (fixed-length records - all records are the same length), FB(fixed-length records stored in blocks), V (variable-length records - record length varies), VB (variable-length records stored in blocks).LRECL=nn indicates the logical record length (how longeach line is), in bytes or characters.BLKSIZE=nn indicates the block size, in bytes;blocksize must be a multiple of the LRECL - i.e., ntimes LRECL - for fixed-length records or a multiple ofthe LRECL + 4 - i.e., (n times LRECL) + 4 - forvariable-length records.h. Examples://SYSIN DD *//SYSPRINT DD SYSOUT=*//OUTPUT DD DSN=ATS.A123456.NAME.DESC,// DISP=(NEW,CATLG,DELETE),// UNIT=SYSDA,SPACE=(3000,(10,1)),// DCB=(LRECL=75,BLKSIZE=3000,RECFM=FB)7. DD Statements and Your Programa. In the program or system you‘re using, at some pointyou mention the name or number of a file. That name ornumber is the same as, or is an abbreviation for, theddname on the DD statement. For example, when thesystem goes to open a file called RESULT in a COBOLprogram, it associates that file with the DD statementthrough the SELECT statement and its ASSIGN clause:SELECT OUTPUT-FILE ASSIGN TO RESULTb. Sometimes the link between the file name in the programand the DD statement isn‘t quite so clear. Forexample, in a FORTRAN program you refer to a unitnumber:WRITE (6,*) I,JThe unit number in the example above is 6 and makes up_just part of the DDNAME FT06F001:_//FT06F001 DD SYSOUT=*In some systems, the relationship is even less explicitand it may take a little detective work to figure outwhat DDNAME a file name is referring to.8. Records and Blocksa. Data is stored on disk and tape as a series of records.For example, perhaps you are generating a data file.For each subject, you have 100 characters ofinformation (an ID, name, address, etc.). You wouldcreate a file or data set and each record in it wouldbe 100 characters long. In terms of JCL, you would saythat: the records were fixed-length, and the recordlength was 100 (LRECL=100).+--------+--------+--------+--------+--------+|record |record |record |record |record |+--------+--------+--------+--------+--------+b. Computers can process data a lot faster than they canread or write it. If a program reads or writes onerecord at a time, it slows down processing. In orderto make the reading and writing more efficient, youusually work with groups or blocks of records. Forexample, you could group the 100-character records intoblocks of 40 records each. Each block would be 4000characters (100 times 40) long. In your JCL, you wouldsay that the blocksize is 4000 (BLKSIZE=4000) andindicate that blocks are used in the record format(RECFM=FB). Putting it all together, the DCB paramaterwould be:DCB=(RECFM=FB,LRECL=100,BLKSIZE=4000)9. Changing DD Statements in Cataloged Proceduresa. You may want to change one or more DD statements in acataloged procedure that supplies all the JCL for theprogram you are running. For example, you get 4000lines of output printed automatically but know that youwill need more than that. So, after the EXECstatement, add the DD statement to be changed:// EXEC COBUCLG//GO.SYSOUT DD SYSOUT=*,OUTLIM=6000b. There are three secrets to successful alteration ofcataloged procedures:You must know the name of the DD statement, includingthe stepname.If you change more than one statement, the newstatements must be in exactly the same sequence as theyappear in the cataloged procedure.These changes must occur before you specify additionalDD statements that are not in the cataloged procedure.c. You can find out this information by looking at the JCLsection of a previous run. If the MSGLEVEL on thesecond JOB card was specified as 11, then the JCL fromthe cataloged procedure will be listed (they‘ll have XXrather than // in columns 1 and 2). You may alsocontact an Academic Computing consultant for thisinformation.d. Examples of the basic JCL needed to run the majorlanguages and packages can be found in the Help system.Type Help JCLHELP to find the name of the Help file fora particular language or package.e. The JCLGET XEDIT command builds JCL for commonly usedbatch programs - including valid JOB cards. Type HelpXEDIT JCLGET for details about usage and for a list ofall currently available instant JCL.G. Common Error MessagesCode Possible Problems or Causes____ ___________________________IEF210I DDNAME - UNIT FIELD SPECIFIES INCORRECT DEVICE NAMELook at the field following the UNIT=, and make surethat it is SYSDA, DISK, or TAPE.IEF212I DDNAME - DATA SET NOT FOUNDYou did not spell the DSN correctly.The data set may have been deleted.You did not include VOL=SER and UNIT= on the DDstatement.IEF612I PROCEDURE NOT FOUNDYou were trying to EXEC a program and forgot the PGM=.You may have misspelled the PROC name.IEF621I EXPECTED CONTINUATION NOT RECEIVEDA DD statement has been deleted.The DD statement had a comma after the last operand.The JCL statement has gone beyond column 71.A blank appears in the middle of a statement, probablyafter a comma.//SYSIN DD * GENERATED STATEMENTSome JCL statements are incorrect or out of order.JOB HAS NO STEPSThe JOB you are running has no EXEC statements.H. SYSTEM ABENDs1. What is an ABEND? ABEND stands for ABnormal END; it meansthat the system, while running your JOB, detected a problemthat it could not compensate for and stopped.2. Common ABEND Codes:Code Possible Problems or Causes____ ___________________________S222 The operator cancelled your job for some reason.You‘ll have to talk to the operator to find outwhy.S322 JOB exceeded CPU specified on the JOB card (orwent over 30 minutes during a EXEC step).S522 Cancelled by the operating system because there wasno activity for 5 minutes. Usual causes: A tapewas requested and the operator did not catch themount message or your JOB was submitted to a no-tape class and requested a tape mount.S722 Your JOB generated more than 4000 lines of outputand the system stopped printing when it reached4000 lines.S80A More main storage was requested than is available.ORS804 Your program and/or data set is too large.S806 The requested program can‘t be found. Commoncauses: a misspelled name on the EXEC statementor a missing JOBLIB or STEPLIB statement.SB37 No more space for the data set. Increase theprimary allocation in the SPACE parameter or adda secondary allocation.&lt;/plaintext&gt;</plaintext> </div> <div class="fdz8wsd" id="divtort"><div style="color: #A5ABB5;font-size: 12px;margin: 18px 0 0;line-height: 17px;">本站僅提供存儲服務(wù),所有內容均由用戶(hù)發(fā)布,如發(fā)現有害或侵權內容,請<a href="http://www.zhengzhongguoji.com/complaint/index.html?articleid=1108318&username=" style="color: #4281CB;">點(diǎn)擊舉報</a>。</div></div> </div> </div> <a class="abtn_openapp" href="javascript:void(0);" onclick="imgLogArt(1,'w20-26-2');addStatisticsNew('34-40-1-8',true);pageDownAPP(4)">打開(kāi)APP,閱讀全文并永久保存</a> <a href="http://www.zhengzhongguoji.com/relevant/1108318.html" id="relevantmore_top" class="abtn_openvip" onclick="openAppOrLink(this,2,1);return false;">查看更多類(lèi)似文章</a> </div> <div id="pvnj0pb" class="w1"> <div id="b85qyux" class="youlike"> <div id="00vh35o" class="green_box"></div>猜你喜歡 </div> </div> <div id="t5ii380" class="like_content"> </div> <div id="8qewsz8" class="w1" style="padding-top: 14px;"> <div id="385cj0g" class="lswztit">類(lèi)似文章</div> </div> <div class="lcjuykr" id="relearticle"><a id="artid_409949510" href="http://www.zhengzhongguoji.com/article/19377040_409949510.html" onclick="addStatisticsNew('34-37-1-1',true)"><div id="qn5cc5b" class="listd1">填空3</div></a><a id="artid_444257529" href="http://www.zhengzhongguoji.com/article/363711_444257529.html" onclick="addStatisticsNew('34-37-1-1',true)"><div id="few0oyy" class="listd2">Foreign high-tech vendors may face stricter controls</div></a><a id="artid_210555136" href="http://www.zhengzhongguoji.com/article/171548_210555136.html" onclick="addStatisticsNew('34-37-1-1',true)"><div id="c30ryxt" class="listd1">vs2010 MSDN 使用經(jīng)典方式查看</div></a><a id="artid_738099315" href="http://www.zhengzhongguoji.com/article/12009696_738099315.html" onclick="addStatisticsNew('34-37-1-1',true)"><div id="hewx3hd" class="listd2">In</div></a><a id="artid_932396640" href="http://www.zhengzhongguoji.com/article/71281455_932396640.html" onclick="addStatisticsNew('34-37-1-1',true)"><div id="038nf3v" class="listd1">【SABCS2015】妊娠期間早期乳腺癌的5年總生存:法國多中心病例對照研究</div></a><a id="artid_178775395" href="http://www.zhengzhongguoji.com/article/1583618_178775395.html" onclick="addStatisticsNew('34-37-1-1',true)"><div id="vm0bolo" class="listd2">IBM服務(wù)器操作系統介紹</div></a></div> <div class="zqmn8xi" id="relevantmorediv" style="padding-top: 6px;"> <a href="http://www.zhengzhongguoji.com/relevant/1108318.html" id="relevantlink" class="p_newsmore" onclick="openAppOrLink(this,2,2);return false;">更多類(lèi)似文章 &gt;&gt;</a> </div> <div id="033cf5n" class="like_content"> </div> <div id="066vyf0" class="w1" style="padding-top: 14px;"> <div id="531vyq0" class="youlike"> <div id="m0k8ivc" class="green_box"></div> 生活服務(wù) </div> </div> <div id="qc0gnux" class="like_content"> </div> <div> <div class="wbtwd8a" id="edu-bot-container" style="position:fixed; width:100%;bottom:55px;left:0px; height: 500px; display:none; z-index:10000;background-color:#ffffff;"></div> <div style="padding:9px;margin-bottom: -20px;"> <div style="display:none;" id="gg_40000"><a id="adhref1" href="" target="_blank"><img id="adimgsrc1" src="" style="max-width: 100%;"/></a></div> <div style="padding: 0 9px;margin-bottom: 10px;display:none;" id="gg_80000"><a id="adhref8" href="" target="_blank"><img id="adimgsrc8" src="" style="max-width: 100%;"/></a></div> </div> <div id="aq0yu5x" class="footer_nav_box"> <ul class="footer_nav_ul"> <li><a href="/">首頁(yè)</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=2">萬(wàn)象</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=3">文化</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=4">人生</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=5">生活</a></li> <li id="j8y8ka0" class="last_li"><a href="http://www.zhengzhongguoji.com/index.html?classid=6">健康</a></li> </ul> <div style="clear: both;"></div> <ul class="footer_nav_ul"> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=7">教育</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=8">職場(chǎng)</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=9">理財</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=10">娛樂(lè )</a></li> <li><a href="http://www.zhengzhongguoji.com/index.html?classid=11">藝術(shù)</a></li> <li id="31kbipl" class="last_li"><a href="http://www.zhengzhongguoji.com/index.html?classid=12">上網(wǎng)</a></li> </ul> </div> </section> <div style="padding-top: 10px;"> <div id="ntew8mj" class="pic_nav_box"> <div id="xogc3dz" class="pic_nav pic_nav1 fl"><a href="http://www.zhengzhongguoji.com/advice.aspx?type=0">留言交流</a></div> <div id="gmc3ql0" class="pic_nav pic_nav3 fr"><a href="javascript:scroll(0,0)">回頂部</a></div> <div id="3iufxee" class="pic_nav pic_nav2"><a href="http://www.zhengzhongguoji.com/lianxiwomen.aspx">聯(lián)系我們</a></div> </div> </div> <footer data-sudaclick="footer"> <div id="36qtp0e" class="p_footer"> <p class="p_foot_v"> <a href="/" class="active">觸屏版</a>| <a href="javascript:void(0);" onclick="openAppOrLink(this,3)">下載APP</a> </p> <p class="p_foot_t">京B2-20242964&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a target="_blank">京ICP備05038915號</a></p> <p class="p_foot_t">京網(wǎng)文[2022]3822-110號&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;京公網(wǎng)安備 11010502030377號</p> </div> </footer> <div class="e0gi3bi" id="tipiphonediv" style="display: none;"></div> <div id="d3ss3et" class="fixedtoolbar" id="copytoolbar"> <a class="a2" href="javascript:void(0);" onclick="toMiniProgress(0);addStatisticsNew('34-33-1-2',true);">分享</a> <a class="a1" href="javascript:void(0);" id="isresaveidBottom" onclick="resavearticle(this);UserObj2.reSetHourTs();addStatisticsNew('34-32-1-2',true);"><span id="savernum_span">收藏</span><div class="wn0rc0a" id="autoresavetips" style="display:none">點(diǎn)擊這里,查看已保存的文章</div></a> <a class="a5" id="ArticleLongImgBtn" onclick="ArticleLongImgClick(0)">導長(cháng)圖</a> <a class="awx" href="javascript:void(0);" onclick="goWeiXinGGH();addStatisticsNew('34-36-1-1',true);" id="wxgzh">關(guān)注</a> <a class="a4" href="javascript:void(0);" id="CopyBtn" onclick="dateObj.isWorking();CopyMainContentObj.check();UserObj2.reSetHourTs();clickCopyBtn();" style="display:none">一鍵復制</a> <a class="a6" href="javascript:void(0);" id="ExportWordBtn" onclick="ExportWordBtnClick(0)">下載文章</a> </div> <div class="w0xu8dz" id="logandpay" class="logandpay" style="display: none;"> </div> <div id="iz0aw5f" class="viphelper" id="viphelper" onclick="TipLayerOuter.clickVipHelper()"> <div id="av3yk8t" class="d1">綁定賬號成功<br />后續可登錄賬號暢享VIP特權!</div> <div id="bozgncj" class="d2">如果VIP功能使用有故障,<br />可點(diǎn)擊這里聯(lián)系客服!<i class="newico"></i><div id="3wodtpl" class="serv"><span id="anjb8ju" class="newbefore"></span><p>聯(lián)系客服</p></div></div> </div> <div id="533tw3f" class="wx_logging_in" style="display:none;"> <div> <img src="/images/index/loading.gif"/> <p>微信登錄中...<br/>請勿關(guān)閉此頁(yè)面</p> </div> </div> <div class="zu8me8l" id="couponDiv" class="coupon_" style="display:none;"> <div> <div id="l35dk83" class="d1"> <div id="djjufug" class="str_">先別劃走!</div> <div id="r80yv1a" class="txt_">送你5元優(yōu)惠券,購買(mǎi)VIP限時(shí)立減!</div> <div id="5885szk" class="k_"> <div> <div id="npwodls" class="l_"><span>5</span>元</div> <div id="mldda3n" class="r_">優(yōu)惠券</div> </div> </div> <div id="wryfbbm" class="time_">優(yōu)惠券還有<span id="djsTimeSpan">10:00</span>過(guò)期</div> <a class="btn_" href="javascript:void(0);" onclick="UseCoupon()">馬上使用</a> </div> <a class="closer" href="javascript:void(0);" onclick="CloseCouponDiv()">×</a> </div> </div> <div style="width:100%;position:absolute;left:0;top:1.14rem"></div> <a href="http://www.zhengzhongguoji.com/">欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久</a> <script> (function(){ var canonicalURL, curProtocol; //Get the <link> tag var x=document.getElementsByTagName("link"); //Find the last canonical URL if(x.length > 0){ for (i=0;i<x.length;i++){ if(x[i].rel.toLowerCase() == 'canonical' && x[i].href){ canonicalURL=x[i].href; } } } //Get protocol if (!canonicalURL){ curProtocol = window.location.protocol.split(':')[0]; } else{ curProtocol = canonicalURL.split(':')[0]; } //Get current URL if the canonical URL does not exist if (!canonicalURL) canonicalURL = window.location.href; //Assign script content. Replace current URL with the canonical URL !function(){var e=/([http|https]:\/\/[a-zA-Z0-9\_\.]+\.baidu\.com)/gi,r=canonicalURL,t=document.referrer;if(!e.test(r)){var n=(String(curProtocol).toLowerCase() === 'https')?"https://sp0.baidu.com/9_Q4simg2RQJ8t7jm9iCKT-xh_/s.gif":"//api.share.baidu.com/s.gif";t?(n+="?r="+encodeURIComponent(document.referrer),r&&(n+="&l="+r)):r&&(n+="?l="+r);var i=new Image;i.src=n}}(window);})(); </script> </body><div id="gzecb" class="pl_css_ganrao" style="display: none;"><span id="gzecb"><label id="gzecb"><label id="gzecb"></label></label></span><dl id="gzecb"><address id="gzecb"><ul id="gzecb"></ul></address></dl><sup id="gzecb"></sup><tfoot id="gzecb"></tfoot><optgroup id="gzecb"><p id="gzecb"><thead id="gzecb"></thead></p></optgroup><rp id="gzecb"></rp><tr id="gzecb"></tr><abbr id="gzecb"></abbr><ul id="gzecb"><nobr id="gzecb"><tbody id="gzecb"></tbody></nobr></ul><cite id="gzecb"></cite><sub id="gzecb"><tbody id="gzecb"><tr id="gzecb"></tr></tbody></sub><div id="gzecb"><b id="gzecb"></b></div><abbr id="gzecb"><menu id="gzecb"><tbody id="gzecb"></tbody></menu></abbr><li id="gzecb"></li><samp id="gzecb"><thead id="gzecb"><tr id="gzecb"></tr></thead></samp><strike id="gzecb"></strike><center id="gzecb"><acronym id="gzecb"><small id="gzecb"><td id="gzecb"></td></small></acronym></center><big id="gzecb"><acronym id="gzecb"><menuitem id="gzecb"></menuitem></acronym></big><li id="gzecb"></li><var id="gzecb"></var><center id="gzecb"></center><tr id="gzecb"></tr><small id="gzecb"></small><dl id="gzecb"></dl><acronym id="gzecb"></acronym><dl id="gzecb"></dl><tfoot id="gzecb"><thead id="gzecb"><tr id="gzecb"><p id="gzecb"></p></tr></thead></tfoot><tbody id="gzecb"><font id="gzecb"></font></tbody><table id="gzecb"><th id="gzecb"><samp id="gzecb"><table id="gzecb"></table></samp></th></table><big id="gzecb"><small id="gzecb"><li id="gzecb"></li></small></big><dfn id="gzecb"></dfn><acronym id="gzecb"></acronym><progress id="gzecb"></progress><optgroup id="gzecb"><acronym id="gzecb"></acronym></optgroup><code id="gzecb"></code><th id="gzecb"><legend id="gzecb"><sub id="gzecb"></sub></legend></th><center id="gzecb"></center><progress id="gzecb"><dfn id="gzecb"></dfn></progress><dl id="gzecb"></dl><var id="gzecb"></var><u id="gzecb"><code id="gzecb"><td id="gzecb"><menuitem id="gzecb"></menuitem></td></code></u><var id="gzecb"></var><bdo id="gzecb"><dl id="gzecb"><cite id="gzecb"><strike id="gzecb"></strike></cite></dl></bdo><acronym id="gzecb"></acronym><address id="gzecb"></address><ins id="gzecb"><bdo id="gzecb"><dl id="gzecb"></dl></bdo></ins><del id="gzecb"><track id="gzecb"><menu id="gzecb"></menu></track></del><acronym id="gzecb"></acronym><option id="gzecb"><strong id="gzecb"><acronym id="gzecb"></acronym></strong></option><center id="gzecb"></center><menu id="gzecb"></menu><legend id="gzecb"><sub id="gzecb"><delect id="gzecb"></delect></sub></legend><tr id="gzecb"><p id="gzecb"><thead id="gzecb"><del id="gzecb"></del></thead></p></tr><object id="gzecb"><s id="gzecb"><sup id="gzecb"></sup></s></object><li id="gzecb"></li><dd id="gzecb"><output id="gzecb"><cite id="gzecb"></cite></output></dd><var id="gzecb"></var><center id="gzecb"></center><source id="gzecb"><sup id="gzecb"></sup></source><th id="gzecb"></th><legend id="gzecb"><tt id="gzecb"><var id="gzecb"><object id="gzecb"></object></var></tt></legend><em id="gzecb"><menu id="gzecb"><thead id="gzecb"></thead></menu></em><input id="gzecb"><thead id="gzecb"><dfn id="gzecb"><li id="gzecb"></li></dfn></thead></input><cite id="gzecb"></cite><wbr id="gzecb"><center id="gzecb"><small id="gzecb"></small></center></wbr><video id="gzecb"><track id="gzecb"><dl id="gzecb"></dl></track></video><var id="gzecb"></var><p id="gzecb"></p><samp id="gzecb"></samp><strike id="gzecb"></strike><acronym id="gzecb"></acronym><cite id="gzecb"></cite><dl id="gzecb"><blockquote id="gzecb"><abbr id="gzecb"><pre id="gzecb"></pre></abbr></blockquote></dl><tfoot id="gzecb"><video id="gzecb"></video></tfoot><th id="gzecb"><del id="gzecb"></del></th><u id="gzecb"><source id="gzecb"><meter id="gzecb"><center id="gzecb"></center></meter></source></u><listing id="gzecb"></listing><abbr id="gzecb"><strong id="gzecb"><pre id="gzecb"><ruby id="gzecb"></ruby></pre></strong></abbr><em id="gzecb"><cite id="gzecb"></cite></em><tbody id="gzecb"></tbody><acronym id="gzecb"><var id="gzecb"></var></acronym><center id="gzecb"><meter id="gzecb"><button id="gzecb"><code id="gzecb"></code></button></meter></center><tr id="gzecb"><menu id="gzecb"><delect id="gzecb"><del id="gzecb"></del></delect></menu></tr><tbody id="gzecb"><sup id="gzecb"><center id="gzecb"><mark id="gzecb"></mark></center></sup></tbody><dl id="gzecb"></dl><s id="gzecb"></s><del id="gzecb"><table id="gzecb"></table></del><fieldset id="gzecb"></fieldset><sup id="gzecb"></sup><var id="gzecb"></var><acronym id="gzecb"><dfn id="gzecb"><strong id="gzecb"><wbr id="gzecb"></wbr></strong></dfn></acronym><object id="gzecb"></object><td id="gzecb"><center id="gzecb"><form id="gzecb"><strong id="gzecb"></strong></form></center></td><rt id="gzecb"><center id="gzecb"><tbody id="gzecb"><s id="gzecb"></s></tbody></center></rt><pre id="gzecb"></pre><acronym id="gzecb"></acronym><option id="gzecb"></option><listing id="gzecb"></listing><strong id="gzecb"></strong><thead id="gzecb"></thead><dfn id="gzecb"><sup id="gzecb"><progress id="gzecb"><tbody id="gzecb"></tbody></progress></sup></dfn><em id="gzecb"><nobr id="gzecb"><thead id="gzecb"></thead></nobr></em><tbody id="gzecb"></tbody><mark id="gzecb"><optgroup id="gzecb"><acronym id="gzecb"></acronym></optgroup></mark><dd id="gzecb"><output id="gzecb"><code id="gzecb"><strong id="gzecb"></strong></code></output></dd><object id="gzecb"><tr id="gzecb"></tr></object><bdo id="gzecb"><center id="gzecb"></center></bdo><font id="gzecb"></font><rp id="gzecb"></rp><wbr id="gzecb"></wbr><blockquote id="gzecb"><em id="gzecb"><cite id="gzecb"><pre id="gzecb"></pre></cite></em></blockquote><small id="gzecb"></small><tt id="gzecb"><var id="gzecb"></var></tt><nobr id="gzecb"></nobr><pre id="gzecb"></pre><var id="gzecb"><object id="gzecb"></object></var><label id="gzecb"><td id="gzecb"><menuitem id="gzecb"></menuitem></td></label><tbody id="gzecb"></tbody><pre id="gzecb"></pre><dfn id="gzecb"></dfn><form id="gzecb"></form><tfoot id="gzecb"><thead id="gzecb"><tr id="gzecb"><menu id="gzecb"></menu></tr></thead></tfoot><label id="gzecb"><big id="gzecb"><acronym id="gzecb"><dfn id="gzecb"></dfn></acronym></big></label><dd id="gzecb"><menuitem id="gzecb"><option id="gzecb"></option></menuitem></dd><acronym id="gzecb"></acronym><samp id="gzecb"><noframes id="gzecb"></noframes></samp><fieldset id="gzecb"><acronym id="gzecb"></acronym></fieldset><optgroup id="gzecb"></optgroup><thead id="gzecb"><em id="gzecb"><dfn id="gzecb"><input id="gzecb"></input></dfn></em></thead><abbr id="gzecb"></abbr><li id="gzecb"><var id="gzecb"><legend id="gzecb"><tt id="gzecb"></tt></legend></var></li><source id="gzecb"><sup id="gzecb"></sup></source><tbody id="gzecb"><wbr id="gzecb"><b id="gzecb"></b></wbr></tbody><video id="gzecb"></video><meter id="gzecb"></meter><pre id="gzecb"></pre><tbody id="gzecb"></tbody><legend id="gzecb"></legend><strike id="gzecb"></strike><small id="gzecb"><big id="gzecb"><small id="gzecb"></small></big></small><strike id="gzecb"></strike><tr id="gzecb"></tr><tbody id="gzecb"></tbody><small id="gzecb"><dfn id="gzecb"><strong id="gzecb"><progress id="gzecb"></progress></strong></dfn></small><nav id="gzecb"><tfoot id="gzecb"><thead id="gzecb"></thead></tfoot></nav><output id="gzecb"><label id="gzecb"><pre id="gzecb"></pre></label></output><pre id="gzecb"><span id="gzecb"><rp id="gzecb"><noframes id="gzecb"></noframes></rp></span></pre><acronym id="gzecb"><small id="gzecb"><td id="gzecb"><acronym id="gzecb"></acronym></td></small></acronym><menu id="gzecb"></menu></div> </html>