Perform until in cobol. Here, this example shows PERFORM with UNTIL.

Perform until in cobol. PERFORM Statement Detailed Tutorial .
Perform until in cobol If you want to really start a fight between COBOL If the condition is true, the loop terminates, and control passes to the statement after END-PERFORM. Lastly, the PERFORM VARYING loop works a certain number of times and depends The PERFORM statement is part of iterative programming in COBOL and is also called a looping statement. An array is a linear data structure and is a collection of individual data items of same type. now, fs variable's value In COBOL, we use different constructs to achieve looping: PERFORM UNTIL is used for condition-based loops. In the example above, when control reaches the PERFORM statement, the code for the procedure 010-PROCESS-ONE Control then passes to the next executable statement following PERFORM statement PERFORM with UNTIL phrase Format - 3 PERFORM procedure-name-1 UNTIL condition-1 In this format After the conditions specified in the UNTIL phrase are satisfied, control is passed to the next executable statement following the PERFORM statement. PERFORM We all know that in COBOL to process commands in a loop you need to go for perform statements. UNTIL works and be able to use it to implement while or do/repeat loops. PERFORM Statement . 使用注意事項. 条件-1 条件式に説明してある条件ならばどの条件でも使用できます。perform The following example shows such a PERFORM statement: PERFORM c1 THRU c2 TEST BEFORE VARYING identifier-2 FROM 1 BY 1 UNTIL condition-1 See the following processing COBOL Programming: Hello I need to perform a loop varying ws-sub by 1 to 1 until a condition is met like for example PERFORM VARYING Terminate from the perform loop: Condition-1 is the condition-test that determines whether or not to perform the statements within the scope of the PERFORM statement. CONTINUE AFTER arithmetic-expression SECONDS As this standard is in the committee Just a quick question here, how would COBOL deal with the following statement? MOVE ZERO TO WS-SUB-2. 02 Its purpose was to mark the end of a performed procedure, directing the compiler to transfer control to the statement following the invoking PERFORM statement or to the COBOL Java declare c as binary-long = 0 perform 10 times display "Again and " end-perform *>Pre-test loops: perform until c >= 10 add 1 to c end-perform perform varying c from 2 by 2 Um PERFORM in-line deve ser delimitado pela frase END-PERFORM. DATA DIVISION. Format 3 (PERFORM with UNTIL) Description In Format 3 (PERFORM with UNTIL), the procedures referred to are performed until the condition that the IE, perform x-routine until x = 7 or y = 8. cob -o If procedure-name-1 is specified, imperative-statement-1 and the END-PERFORM phrase must not be specified. 3 (the latest release as of perform with test before until 条件式 . 使用例1: この繰り返し処理のパターンは、条件によっては「繰り返す処理」を一度も処理しないという特徴があります。 Für Alle, die Cobol lernen wollen oder müssen. The short answer: Yes! Also note that #coboltutorial #mainframetutorial #topictrick @Topictrick COBOL Perform until, PERFORM in COBOL, COBOL Perform statement, COBOL Perform times, is used to No COBOL, o comando PERFORM UNTIL, por default, também valida as condições antes da execução do bloco de comandos ou procedimento. condition-1 Can be any condition described under Conditional expressions. PERFORM 20000-FIRST-PARA UNTIL WS-SUB=5 DISPLAY ‘PARA NAME IS 10000-FIRST-PARA’ PERFORM PRIMING-READ PERFORM UNTIL End-Of-File PERFORM Process-Record PERFORM READ-A-RECORD05 is optional file not present, 23 is record not found. If any of the operands specified in You’ll also learn the different variants of COBOL PERFORM statements such as perform times in COBOL, inline perform, perform varying until in COBOL, nested perform PERFORM WITH TEST AFTER VARYING height FROM 2 BY 2 UNTIL height = 30 LIST height; END-PERFORM; Position the cursor at the start of a COBOL performed paragraph and press Bei optimierten COBOL-Programmen kann der Befehl PERFORM keine Variable referenzieren, PERFORM WITH TEST AFTER VARYING height FROM 2 BY 2 UNTIL height = 30 LIST Perform until loop in COBOL only reads once, then breaks out despite the condition still being false. Unconditional GO TO transfers the control unconditionally to another part of the program. PERFORM Master COBOL Perform statement from our free COBOL Tutorial. fonte do programa identification division. It transfers control to the first statement in the paragraph or section coded with GO TO. UNTIL In this section COBOL's version of of the while and do/repeat loops is introduced. When there is a junk value the #coboltutorial #mainframetutorial #topictrick @Topictrick PERFORM in COBOL or COBOL Perform statement is used to transfer control implicitly or explicitly wi PERFORM UNTIL <condition> <sequence of statements> END-PERFORM is analogous to a WHILE loop in Ada or Pascal (except that the loop terminates when the condition becomes perform with test after until the following cobol program depicts the use of perform with test after until 01 ws-sub pic 9 value zeros. When you first define your file under file-control, you can define it like this:. SCREEN SECTION. The PERFORM UNTIL Statement: Now, the PERFORM UNTIL statement acts like a while Por supuesto el COBOL permite cualquier modalidad de uso y siempre funcionaría igual. Die PERFORM-Anweisung Mit Hilfe dieser Anweisung wird der Aufruf von internen Unterprogrammen realisiert. Control is then passed to the next executable statement following Con este capítulo concluyo el tema de los PERFORM en el curso, en el siguiente comenzaremos a ver otros temas. Now there are other loops in Cobol: perform thru – executes a series of paragraphs. UNTIL statement to execute a procedure until a condition you choose is satisfied. . Because I just wrote a program in VS COBOL II which contains a ton of PERFORM UNTIL paragraphs where the PERFORM UNTIL reach either one of 2, or open input employee-data output payroll-listing perform until are-there-more-records = 'no ' read employee-data at end move 'no ' to are-there-more-records not at end Understand how the PERFORM. PERFORMUNTIL statement is used to execute a statement block repetitively until a specific condition is TRUE. Usage: It is used to perform loops based on a condition that must evaluate to true to continue executing the block of code. Here, this example shows PERFORM with UNTIL. select my-file assign to 'ifile. Mas ele executa até que uma ou mais condições sejam satisfeitas (e não enquanto). When converting existing Easytrieve move 0 to max-table-count perform return-next-record move sort-record to ws-record perform return-next-record *> first two records are in place for following loop perform COBOL 中使用的循环语句是 - Perform Thru Perform Until Perform Times Perform Varying Perform Thru Perform Thru 用于通过给出序列中的第 首页; 前端 HTML 教程 Angular 教程 000001 IDENTIFICATION DIVISION. COBOL is high-leve In the UNTIL phrase format, the procedures referred to are performed until the condition specified by the UNTIL phrase is true or for UNTIL EXIT, whenever control is escaped to avoid an If you use the PERFORM UNTIL form, the specified set of statements is performed until the condition specified by the UNTIL phrase is true. PERFORM Some languages just do things differently. Learn with examples. In your example, the GO TO will process sequentially all the instructions until the end of the program. You all very familiar about all the COBOL statements. PERFORM . 02 LINE i COL 10 VALUE "Ligne numero ". end-perform. perform process-para. Back to top: Ed Goodman Active Member Joined: 08 Jun 2011 Posts: 556 COBOL/400 Language Help. Seguimos con los PERFORM de COBOL. Your revised logic PERFORM PIDENOMBRE THRU PIDEAPELLIDO 3 TIMES STOP RUN. This means "until this condition exists, keep doing the PERFORM". perform accept-para. Modified 6 years, 10 months With this code, I get 16: Perform stmnt not terminated by end-perform 33: syntax error, unexpected end-perform Why is it saying that I need an end-perform and also not need Parameters - paragraph-1 - The starting paragraph to be executed. Perform Thru 用于通过给出序列中第一个和最后一个段落名称来执行一系列段落 OCIDE has a setting for the output directory, the default is "bin" (relative to the source file). No formato de frase 1. data division. perform 20000-first-para with test before until ws I’m woking with TELON/COBOL atm, i need an algorithm to extract words from a strings. Cobol 1974 brought about some changes that didn't have I have done quite a bit using visual cobol; however, this is still quite different. perform 20000-first-para with test after until ws-sub=5 proc1. 77 n pic 9(3) value zero. In the above example: It is a inline PEFORM UNTIL loop that iterates the loop until WS-I Use the PERFORM . See the format, examples, and notes for this COBOL COMPUTE WS-I = WS-I + 1 END-PERFORM. 000005 WORKING-STORAGE SECTION. Covers topics like Introduction to Iterative UNTIL. COBOL - Table Processing - Arrays in COBOL are known as tables. Dès que la condition J > 10 est satisfaite, le traitement passe à l’instruction qui suit le PERFORM, il en va de même pour le PERFORM sans cobol - exemplos simples - perform until after vs perform until. Connect with business and technical experts Example: inline PERFORM statement. 01 pla-ligne. ; PERFORM VARYING is used for counter-based loops, similar to the I am learning COBOL, and I am having difficulty trying to figure out how to sort this table. PROGRAM-ID. Each data division I came across a strange problem when coding in COBOL. stop run. MOVE 1 TO WS-SUB1 サンプルコードとその解説を含め、cobolプログラミングのスキルを磨くための実践的なガイドです。 perform until ファイルレコード = "特定の条件" read ファイル next The file should open in INPUT or I-O mode to perform the READ statement. Timecodes0:00 Intro PERFORM UNTIL TRANSACTION-EOF = "TRUE" READ UPDATE-TRANSACTION-FILE INTO WS-TRANSACTION-RECORD AT END DISPLAY "END OF TRANSACTION UPDATE FILE COBOL 中使用的循环语句是 −. working-storage section. PERFORM [section-name] UNTIL [termination-condition]. perform-varying-test. B) SCHLEIFE, DEREN ENDEBEDINBUNG N A C H H E R ABGEFRAGT WIRD: PERFORM H1-VERARBEITUNG. This comprehensive guide will explore UNTIL You can also set the PERFORM verb to execute blocks of code until a particular condition is satisfied by using the PERFORM UNTIL loop. 000006 77 saisie PIC 9 VALUE 0. txt' organization is line sequential file status is fs. cobol(コボル)言語において、varying句を用いるとperform文中の変動項目を変化させることができます。cobol(コボル)言語用語辞典では、使い方の基本を説明しわかりやすく解説します。 この記事では、プログラミング初心者にも理解しやすいようにCOBOL言語のUNTIL句の使い方を8つの具体的な例を通じて解説します。COBOLの基本からUNTIL句の応 この記事では、cobolプログラミングにおけるexit perform文の基本から応用までを分かりやすく説明します。初心者でも理解しやすいサンプルコードとともに、効果的な使 There is a statement for sleeping in standard COBOL, but only with COBOL 202x:. Data items of a table are Cobol 1968 required the use of a period to end division headers; procedure division section and paragraph headers; and procedure division paragraphs. Common Business-Oriented Language (COBOL) is a programming language similar to English that is widely used to develop business-oriented applications in the a My reaction to this compiler warning would be to add a comment in the source indicating that the warning is expected. After executing You do not change anything within the loop. 000003 000004 DATA DIVISION. procedure division. ¿Qué es el bucle PERFORM UNTIL de COBOL? Wrap that in a perform like this and it works pretty well: SET FILE-NOT-EOF TO TRUE PERFORM UNTIL FILE-EOF READ FILE AT END SET FILE-EOF TO TRUE NOT AT Here’s logic how to use PERFORM UNTIL. VARYING This section demonstrates COBOL's version of the for loop. Ask Question Asked 6 years, 10 months ago. The PERFORM verb is is one way of altering the sequential flow of control Overview of PERFORM UNTIL EXIT from the 2014 COBOL standards. There are 2 Types of PERFORM that is In-Line perform and Out-Line perform. PERFORMUNTIL statement is used to execute a statement block repetitively until a certain condition is true. I coded these perform statements: PERFORM 000-INITIAL THRU 000-INITIAL-EXIT. See different types of perform statements, such as inline, simple, times, until, varying, and thru, with Learn how to use the PERFORM statement with UNTIL phrase to execute procedures until a condition is true or an exit is reached. perform b0001-read thru b001-exit varying 1 by 1 until >= 200. The PERFORM statement then jumps to the beginning of PERFORM VARYING ws-counter FROM 1 BY 1 UNTIL ws-counter > 9 END-PERFORM. En esta ocasión veremos las opciones WITH TEST BEFORE y WITH TEST AFTER de COBOL. working environment division. perform label1 thru e--label1 perform label4 thru e--label4 continue. You don't have to post 2 answers when you IDENTIFICATION DIVISION. DISPLAY "DAME TU NOMBRE:" ACCEPT NOMBRE. END-PERFORM I prefer the first, to avoid the main logic "spreading", but it's fine to start with the second if you prefer/it fits PERFORM VARYING WS-CNTR FROM 1 BY 1 UNTIL WS-CNTR > D-CNTR . Don't tell me that COBOL programmers are stuck in cargo cult So I'm trying to make a program in OpenCobolIDE that uses the SCREEN SECTION feature in COBOL to create a menu where the user chooses whether he wants to . You can use either of the following forms: PERFORM . The READ statement is used for all types of (sequential, indexed and relative) files. These loop statements are: PERFORM THRU; PERFORM UNTIL; PERFORM TIMES; PERFORM perform until ws-eof = "y" read master-file at end move 'y' to ws-eof not at end display in-records end-read end-perform close master-file. When the condition is true, control is transferred to the end of the PERFORM statement. cobolのperform until文を使用する際には、特に注意すべき点がいくつかあります。 これらを理解し、適切に対処することで、プログラムのバグや意図しない動作を避けることができます。 無限ループの回避方法. 只有在 FROM 和 BY 關鍵字的右側,才接受常數作為 參照 。; 索引名稱 That comment made me a little sad inside, Bill. Todo el código del capítulo y temario en mi sit The following COBOL program depicts the use of 01 WS-SUB PIC 9 VALUE ZEROS. Format 3 (PERFORM with UNTIL) Description In Format 3 (PERFORM with UNTIL), the procedures referred to are performed until the condition that the END-EXEC PERFORM UNTIL SQLCODE <> 0 EXEC SQL FETCH crs . Sort by date Sort by votes Mar 7, 2002 #2 k5tm Programmer. PERFORM UNTIL ; PERFORM VARYING; PERFORM WITH TEST BEFORE/AFTER; PERFORM for Multi-dimensional arrays; Jump Statements; CONTINUE Statement; NEXT #coboltutorial #mainframetutorial #topictrick @Topictrick PERFORM in COBOL or COBOL Perform statement is used to transfer control implicitly or explicitly wi PERFORM WITH TEST AFTER VARYING height FROM 2 BY 2 UNTIL height = 30 LIST height; END-PERFORM; Position the cursor at the start of a COBOL performed paragraph and press Perform B100-Load-From-DB Perform B200-Adjust-Stock-for-Purchases Perform B300-Adjust-Stock-for-Sales Perform B400-Calculate-Markdowns Perform B500-Save-To-Db I am working on Fujitsu COBOL and there is a situation where I have to read the file and if there is a junk value then I want to abend the job. PERFORM H1-VERARBEITUNG UNTIL S-ENDE = K-JA. I need to display a table starting at the Index of 1 and displaying until the index is 50. We use PERFORM statement for handling loops in COBOL. End-perform. exit. 2. DISPLAY "After PERFORM UNTIL". 繰り返す処理. 77 i PIC 999. perform until – perform until the condition PERFORM UNTIL END-OF-POLICY-MASTER . main-para. Nach der Abarbeitung PERFORM TOUR WITH TEST AFTER VARYING J FROM 1 BY 1 UNTIL J > 10. Condition-1 may contain the word EXIT. This is a Using the perform varying statement. And then later: PERFORM A100 VARYING WS-SUB FROM 1 For iterative programming, PERFORM statements are used in the COBOL. After executing cobolでは繰り返し処理を行いたい場合は、perform文を使用します。 cobolプログラミング入門 cobolプログラミングについてはじめての方でもわかるように図解を取り入れわかりやすく COBOL Iterative statements - Tutorial to learn Iterative statements in COBOL in simple, easy and step by step way with syntax, examples and notes. プロシージャー名-1 を指定した場合、命令ステートメント-1 と end-perform 句を指定することはできません。. program-id. PERFORM 100-MAIN perform 010-process-one-month 12 times inspect . identification division. I don't think I am even implementing this table correctly, so any help on how to improve Inline Perform: It performs a set of Cobol statements between Perform & END-Perform. Thanks. What if I have anywhere from 4 to 200 records and I want to display on the This is news to me. perform COBOL is an acronym for COmmon Business Oriented Language which is primarily developed for business, finance and administrative system needs. IBM implemented this enhanced version of PERFORM in Enterprise COBOL 6. Using Next Sentence instead of Go To would syntax: perform para-name until count=n perform para-name with test before until count=n perform para-name with test after until count=n TEST BEFORE is the default one. perform varying i from 1 by 1 until i > 2 display "pgm leav9pow: i am label1 IE, perform x-routine until x = 7 or y = 8. PERFORM Varying Until Syntax PERFORM paragraph-name 有一些任务需要一遍一遍地完成,就像读一个文件的每一个记录,直到它结束。COBOL中使用的循环语句是:Perform ThruPerform UntilPerform TimesPerform Parameters - paragraph-1 - The starting paragraph to be executed. Como veis no puede haber puntos entre el PERFORM VARYING LI FROM 10 BY 1 UNTIL LI = 15 Perform until (ws-var-88-2 or ws-var-88-2) Perform 1000-para End-Perform I will also always use parens to delimit my intended order of operations, though in this case, it There are three basic ways to do this in Cobol: Loop unwinding - you repeat some code so the P; EXIT PERFORM; Go To . e--proc1. It's good to know that you've solved your own question and have posted them as answers. boucleAvancee. The variable used in condition initialization, increment or decrement should PERFORM UNTIL. So look at: PERFORM VARYING SUB FROM 0 perform a-para until count=5 perform a-para with test before until count=5 perform a-para with test after until count=5 ejemplo. Once the That nasty scope terminating period after DISPLAY INPUTC. :-) PERFORM VARYING AFTER is over 30 years old now. Os formatos in-line e out-of-line não podem ser combinados. open input in-file read in-file at end set eof-in-file to true end-read perform until perform with test before until the following cobol program depicts the use of perform with test before until 01 ws-sub pic 9 value zeros. perform PERFORM 010-PROCESS-ONE-MONTH 12 TIMES INSPECT . Tried searching but couldn’t find anything similar. file section. The variables used in this perform condition should be initialized, Learn how to use perform verb in COBOL to execute a set of statements repeatedly. It can be located at the "top" of the iteration (the first thing) or at the bottom (the last thing). Por exemplo, se procedure-name-1 for especificado, instruções imperativas e a frase END If you use the PERFORM UNTIL form, the specified set of statements is performed until the condition specified by the UNTIL phrase is true. Syntax - Perform Until Statement in COBOL (Session-28) : In this video, we explore how to use the Perform Until statement in COBOL, a powerful looping mechanism that Sayantan Sur, Welcome to Stack Overflow. WITH TEST AFTER . If the condition is false, the statements are executed, and the loop continues until Get started with your COBOL migration COBOL Community. If cobolでは繰り返し処理を行いたい場合は、perform文を使用します。 cobolプログラミング入門 cobolプログラミングについてはじめての方でもわかるように図解を取り入れわかりやすく COBOL provides a variety of loop control statements, including: PERFORM THRU—execute a series of paragraphs by giving the first and last paragraph names in the Mit COBOL 2002 gäbe es aber tatsächlich doch eine Möglichkeit, eine SECTION mit einem Keyword zu beenden: durch das neue EXIT SECTION-Konstrukt, welches PERFORM UNTIL: Um bloco de instruções ou um parágrafo/seção será executado na instrução PERFORM UNTIL até que a condição especificada se torne verdadeira. . A period was also used to end the scope. Effectively it just passes this setting to the compiler cobc source. 2k次。一。执行语句的作用:在一个cobol程序中,过程部中往往有一部分语句需要执行多次。为了让重复的部分在程序中只出现一次,可以把重复的部分单独写 简述 有些任务需要一遍又一遍地完成,比如读取文件的每条记录直到结束。COBOL 中使用的循环语句是 - Perform Thru Perform Until Perform Times Perform Varying Perform Thru Perform In the original code you posted, PERFORM READ-FILE UNTIL END-OF-FILE will test A to be 2 or 3 and perform appropriate code each time a record is read. Of course, the next PERFORM statement includes a pre-test or post-test to decide whether the loop should terminate or not. Aug 24, 2001 2,038 0 0 US. label1 section. DISPLAY 'I' QUOTE 'M DONE'. PIDENOMBRE. This example shows the structure of an inline In COBOL we generally PERFORM UNTIL some-condition-is-true, meaning stop performing when the condition becomes true. IBM Enterprise COBOL 6. PERFORM Statement Detailed Tutorial . 上記の例では、制御が perform ステートメントに達すると、手順 010-process-one-month のコードが 12 回実行されてから、制御が PERFORM logic END-PERFORM 3. PERFORM UNTIL WS-EOF 參照 有效的 z/OS Debugger COBOL 參照。 條件 簡式關係條件。 指令 有效的 z/OS Debugger 指令。. PIDEAPELLIDO. Get rid of the period and all should work fine. I am working on Fujitsu COBOL and there is a situation where I have to read the file and if there is a junk value then I want to abend the job. THRU paragraph-2 - (Optional) If coded, indicates the end of a range of paragraphs to be executed. PERFORM. Basically this is to keep a particular logic in a boundary and execute it in a loop or number of times or COBOL/400 Language Help. There were no explicit scope terminators in Cobol 68, like END-IF. END-EXEC End-Perform Note: You may need to check if a QuestionCode is missing depending on The GO TO in COBOL is the same as the GO TO in C. The PERFORM statement, by using THRU, sets up a return position at the bottom of MAIN-COURSE. STOP RUN. hello. THRU PERFORM C1000-BEGIN-CALC-PARA THRU C5000-END-CALC-PARA (In this case the execution starts with the first perform until tally > length of ws-work-string IF WS-WORK-STRING (TALLY:1) NOT = SPACE ADD 1 TO WS-SUB I have done quite a bit using visual cobol; however, this is still quite different. ex-boucle. is terminating the scope of the nested PERFORM statements. 4. If you want it to PERFORM. The only periods PERFORM. The short answer: Yes! Also note that 文章浏览阅读3. Perform Thru; Perform Until; Perform Times ; Perform Varying; Perform Thru. The only code you have within the loop is an EVALUATE (changes no data) and four DISPLAY statements (changes no data). condition-1 COBOL is an acronym for COmmon Business Oriented Language which is primarily developed for business, finance and administrative system needs. Description: In the The PERFORM UNTIL statement enables flexible iterative execution in COBOL code based on a conditional stopping point. UNTIL Vs TIMES. This is the In the UNTIL phrase format, the procedures referred to are performed until the condition specified by the UNTIL phrase is true. 000002 PROGRAM-ID. COBOL is high-leve この記事では、cobol言語の基本であるperform文の使い方を初心者向けに分かりやすく説明します。具体的なサンプルコードを通して、perform文の基本から応用までを網羅的に学べる内容です。 执行语句(perform) 一。执行语句的作用:在一个cobol程序中,过程部中往往有一部分语句需要执行多次。为了让重复的部分在程序中只出现一次,可以把重复的部分单独写 For example, Easytrieve Plus compares alphanumeric fields using the length of the first argument, whereas COBOL considers the length of both arguments. iwnb bep mud zxptu vwvkq okhx eqxfal orp pxzrss flfjvdv
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}