Convert blob to pdf javascript. View our free demo for JavaScript to learn more.

Convert blob to pdf javascript. Sep 21, 2017 · As per Documentation , stream.
Convert blob to pdf javascript match(/. I am using following code, Jun 17, 2020 · Because when I save the file as a pdf it is corrupted. pdf). Dec 21, 2021 · I am trying to convert a blob object to a pdf and download it. Javascript download BLOB as PDF. state. Here's a simplified process: Download a fillable PDF form as a PDF file or get the form as Blob, Base64 URL, or raw PDF to preview it in your app or send it to a web server. toDataURL("image/png")); var file = new File(blob, "image. pdf’, or rename it as you see fit. I have a JS-Fiddle here with test byte array data that I can confirm via different base64 encoders/decoders that it is valid. After many tries of different combinations, I figured you gotta do something like this. Mar 10, 2021 · In this quick tutorial we’ll explore how to turn a Blob into a File. download="myFileName. How do I save that string as a pdf file? Jan 9, 2019 · I'am able to convert my pdf files into blob. First argument is file encoded in base64 and second one is mimeType e. – buzz Commented Jun 25, 2020 at 16:32 Oct 16, 2018 · Do not convert a Blob to a dataURI, 99%* of the time, Download PDF from javascript blob, without replacing the open page. editor. Jun 20, 2019 · The frontend of the application having a file download option (which can be in the following format: xlsx, csv, dat). I want to convert the base64 string to a Uint8Array as Uint8Array is supported from IE9 forward, and than I want to open pdf using pdf. 4. I'm trying the following code to convert the obje Apr 29, 2019 · There is a service called PdfService (see pdf. readAsDataURL(blob)}). Dec 3, 2018 · I need to base64 encode the content of a raw PDF (already got the raw content). pdf"; link. emitirAdvertencia({ parametros: [{ name: 'CODIGO', value: 880 }] }) . e. May 2, 2023 · How to convert to blob a pdf file? Ask Question Asked 1 year, javascript; reactjs; pdf; or ask your own question. Despite their terrible documentation, it’s one of the best solutions I’ve found. At least with pdf. length); const mappedData = bytes. They can be easly mapped application/pdf => 'pdf' etc. Explore more about Node. Sep 24, 2021 · In this article I will explain with an example, how to save BLOB (Binary Data) as PDF file using JavaScript. success(function(data) { var file = new Blob([data], { type: 'application/pdf' }); var fileURL = URL. Developer guide. Dec 23, 2015 · function solution1(base64Data) { var arrBuffer = base64ToArrayBuffer(base64Data); // It is necessary to create a new blob object with mime-type explicitly set // otherwise only Chrome works like it should var newBlob = new Blob([arrBuffer], { type: "application/pdf" }); // IE doesn't allow using a blob object directly as link href // instead it To convert a URL to a Blob for FileReader. getPDF = async (req, res) => { const { content } = req. js. Oct 21, 2019 · I would like to convert my generated excel with exceljs module (angular) to PDF. g. so again new blob url push to array. How can i create a PDF file with the blob contents? Feb 19, 2013 · If I try to retrieve their src blob URL using an XMLHttpRequest, as described in this post, no content is returned. Dec 18, 2014 · I need to convert a blob to file i javascript. Feb 11, 2024 · Converting a Blob to a PDF in Node. open(fileURL); }) Nov 11, 2022 · As entitled, how can I accomplish the following assuming the binary string is well-formed (regardless escape sequence) and that it is inline string (not requested by GET/XHR), where I want to use the converted string to BLOB in createObjectURL to avoid using Base64 encoding: Aug 14, 2018 · Looked at : Javascript: Open PDF in new tab from byte array and how to convert byte array to pdf and download my code is not really any different from what I can tell. js doesn't have a native Blob object, so you'll need to use a buffer equivalent. 11. Feb 18, 2020 · I am trying to convert the response to blob and then generate url to access that. What steps do I need to go through to convert the UTF-8 string into the proper blob object? Feb 11, 2024 · This creates a Blob containing the string "Hello World" with a MIME type of text/plain. getElementById('myimage'); var file = May 11, 2014 · I have a node web app that needs to convert a docx file into pdf (using client side resources only and no plugins). Jan 30, 2015 · I have the following situation into a Java application. text(20,20, 'Hello'); var blob = new Blob([doc], {type: 'application/pdf'}); I tried to create a blob from jsPDF object to include it into a zip file by using jsZIP. pdf'; // convert downloaded data to a Blob. log(myBlob); // logs: Blob { size: 1024, type: "image/jpeg" } }); But what if we want a File? Jan 9, 2019 · You can do it in one line of code — jsPDF natively supports outputting a blob URL as well as just a blob. SqlConnection pubsConn = new SqlConnection("Data Source=localhost;Integrated Security=SSPI;Initial Catalog=pubs;"); SqlCommand logoCMD = new SqlCommand("SELECT pub_id, logo FROM pub_info", pubsConn); FileStream fs; // Writes the BLOB to a file (*. toBlob('application/pdf'); return blob; }); Kindly go through the Documentation. pdf') Nov 13, 2018 · I tried converting the blob to a file using this. 56. Snippet from article: const binaryString = window. You can also use the Response() constructor to convert a Blob to an ArrayBuffer. How to Convert Blob to PDF in Node. files The file should come as a blob, I'm downloading to the local machine yes. 12 Encoding PDF binary data to base64 not working with NodeJS Sep 4, 2024 · This article explores how to convert a JavaScript Object Notation (JSON) object into a Blob object in JavaScript. append("blob",blob, filename);. In this quick tutorial we’ll explore how to turn a Blob into a File. Turn pdf into array of png's using javascript (with pdf. 0. createObjectURL(blob); link. bmp). js library. position = 'fixed'; a. I have a Base64 string representing a PDF file. js requires a buffer and a library like pdfkit. The old upload But I would like to export it to PDF. URL. Oct 27, 2017 · If you’re encoding a PDF, just change the name to ‘give_me_the_correct_extension. from(arrayBuffer); Apr 10, 2021 · I am trying to convert a dom element to Blob, which I want to use later for sending the same as attachment(as pdf). In this article you will learn how how to create PDF files out of your word document. I tried to do it this way with the help of Blob:. Can you please try below peice of code, stream. getSelectedImage(). If you face any issues please let us know. The response from the get request is Pdf. Aug 8, 2021 · Convert PDF to a Base64-encoded string in Javascript. service. From the database a retrieve this Blob object that is the representation of a PDF file on the DB: Blob blobPdf = cedolinoPdf. N Oct 30, 2018 · I have an ArrayBuffer of data for a PDF file and I would like to open it using the built-in PDF viewer for the browser. So far I've tried the following: downloadLink. Fetch. If you have a Blob object called blob, blob. then on submit all file send to server Nov 8, 2022 · Hey @sarvesh. js: rendering a pdf file using a base64 file source instead of url. csv but for the . saveAs(blob, 'foo. readAsDataURL() do this: Javascript convert blob to string and back. WARNING: Although the attached ‘64Test. type will give its content type. Convert Blob to Image file in Javascript. You can create fairly complicated PDFs Dec 25, 2016 · In our webapp, user selects a PDF file using input element, we save the PDF file to indexedDB for further needs. js JavaScript library and an extension to work with Base64. 12. Generate a unique filename for the PDF file. Jan 27, 2016 · I want to download the file which is coming in the form of bytes from the AJAX response. Having information about mimeType allows us to get information about extension which should be used to save file with. btoa('ééééééé'); >> Dec 11, 2017 · convert the blob to base64 and display it with a data url into an iframe. It's very important to use appropiate MIME types, see Proper MIME media type for PDF files, in order to make the pdfs are displayed instead of downloaded, or viceversa if wanted. In the class AppComponent (app. Questions may look like, why I want to convert the PDF file to bytes Stream and again why I want to show it as PDF in UI. I've made some research and I'm pretty sure it's possiblebut I can't seem to understand what I need to change in my code to make it work. 1 KB) So you can perform the same for your table data. If you got trully a string and you convert it to Blob with pdf type the file will be broken as the PDF would be invalid. Here is the backend api: exports. How we would do it with a normal file. href = window. Is it there any solution using a HTML5 canvas? Thanks. xlsx it does not work the files are corrupted. but i don't know why, but btoa() expect the input to be an ASCII char composed string. Well up until recently, creating complex or elegant PDFs in Javascript has been challenging. xlsx. 3. Oct 15, 2018 · I receive a PDF using Angular Http from an external API with using Content Type: application/pdf. Please help. Here Apr 17, 2020 · I have a Node Js server, in it, I am fetching a blob data from another web service (which is for a PDF file), now after receiving blob, I want to convert it again into PDF file. createObjectURL). addEventListener("loadend", function { // reader. target = '_blank'; downloadLink. 13. This solution could make it but I encountered several issues especially with rendering. Sep 13, 2020 · For FetchFiles method, basically it read the PDF file and convert it into bytes array. Now I need to convert this into a Blob object. js : JavaScript Mar 18, 2013 · Ok, Let's say I have document data stored somewhere, let's arbitrarily take this pdf. Push ArrayBuffer in Array for constructing a Blob. I can create Base64-encoded jpeg or png images in Javascript, but I could not find any way or sample code to create a Base64-encoded string from a PDF file. javascript; angular; blob; Share Jun 25, 2020 · I'm trying to convert the blob data into a file and place it in this. component. I had to add extra divs with   inside, and add X padding-top (X = page number) to the element i was page-breaking before, since each page's content would start higher and higher up. I'm trying to render MS Office file types in a web application within an IFrame. style. then((data) => { // code I use to exp Reading time: 10 minutes | Coding time: 15 minutes. With no luck on trying to display the stream on <embed src> tag, I just tried to display it on a new window. then(function(downloadedFile) { // create a download anchor tag var downloadLink = document. Anyone, who knows how to achieve this please help. We will try to adapt the code without using the extension. jsbut I can't figure out how to implent it in my code. This is what I used, although it did have difficulty putting the page breaks in the right spot. Create a new component in src/component/Viewer. getAsFile(), f May 26, 2015 · I like one-liners, so here's a Promise-based one to convert a blob to a data URL:. Base64 representing PDF to blob - JavaScript. Thank you TIM! HOWTO: Create a PDF, offline, "within" AI2 using jsPDF and base64 extn by Juan Antonio The code uses the jsPDF. Dec 8, 2015 · This blob is an internal implementation and exists only inside node-fetch or fetch-blob libraries, to convert it to a native NodeJS Buffer object you need to transform it to an arrayBuffer first: const arrayBuffer = await blob. then((string) => { // Convert this bas64 encoded word string to base64 encoded pdf string }); Alternatively, if we can convert the blob too, that is fine. The Blob. So far I have this: var fso = new ActiveXObject("Scripting. pdf as it's content. result); I know this question is old, but also wanted to accomplish this and came across it while looking. Mar 28, 2021 · I used Puppeteer to generate a buffer with pdf information and send it to frontend. data Jan 9, 2020 · I am able to convert blob into pdf attachment to view in browser without download by following code var ieEDGE = navigator. ts) I created, which basically fetches and returns the base64 encoded PDF content from GitHub Gist that I just created. 0 Convert PDF file into Base64 string with JavaScript. Feb 2, 2024 · This tutorial instructs how to convert blob to file using JavaScript. Firstly, I uploaded a sample PDF file as blob to my storage account container as below: My project structure looks like below, Code: PDFDownloader. Download a fillable PDF form as a PDF file or get the form as Blob, Base64 URL, or raw PDF to preview it in your app or send it to a web server. So, I first extracted the name of the file I was cropping and then gave the same filename so the cropped file while uploading it to server by doing form. js and file handling in this web development course. – Aug 2, 2021 · Input will be a URL which points to the file, from which I can extract the blob. const blob = new Blob([byteArray], {type: contentType}); The code above works. toBlob() is expecting type of output for blob, i. console. . JS to open a PDF via then in the success of your data call this should open up pdf in a new window:-getDocument() . The data comes from a restful API. But what i want to do is the opposite by converting it from blob to pdf. Read blob contents into an existing Nov 19, 2022 · To convert a string to a blob, you use the new Blob interface: const blob = new Blob([string], { type: 'image/jpeg' // or whatever your Content-Type is }); See this section of the document you linked to. body. var file = new File([blobData], "filename. const byteArray = new Uint8Array(byteNumbers); This in turn can be converted to a Blob by wrapping it in an array and passing it to the Blob constructor. 5. dat/. To answer the question of having the pdf file page exactly same as the canvas. Everything works fine for the format . But when we transfer the Base64 content to the client as a string value inside a JSON object (the server provides a RESTful API): { "file_data": "the base64 string" } And decode it with atob() and then create a Blob object to download the file later on, the PDF is always "empty"/broken. Web side: I'm getting the blob data from the database and trying to convert it into a PDF file using this JavaScript function: Feb 25, 2020 · Apex doesn't really have a notion of a "binary" data type that can address individual indices. You can convert base64 to a binary array, but then you still need to parse that using the PDF specs. application/text, application/pdf. Aug 24, 2017 · If anyone looking for solution with same problem, here is the nice article with cross browser support. The pdf file is saved in the database as a blob file. Convert url to file object with JavaScript. match(/Edge/g); var ie = navigator. userAgent. js: Mar 17, 2020 · Base64 representing PDF to blob - JavaScript. workbook. createElement('a'); a. Converting from blob to pdf. # Convert a Blob to an ArrayBuffer using the Response() constructor. onload=r; a. May 30, 2016 · 1) I need to convert the PDF file data to bytes arrray in JavaScript . If you've got a Blob or File object, then the data has to be converted to a typed array before you can view it: Jul 20, 2015 · we get a proper PDF file. Issue #1. var blob=new Blob([resultByte], {type: "application/pdf"}); var link=document. Download PDF in browser with blob. click(); Jul 2, 2014 · If you've got an typed array (e. After a while, some users want to export the PDF file from the browser to their com Nov 17, 2015 · I know of a similar question to this one: Pdf. href=window. How can I convert Excel documents (files) to PDF in an automated fashion? I am trying to adapt the solution found here to Excel. To convert the docx, i have the idea to save my blob document in mongodb with gridfs (already done and worked fine) and then get my blob and convert it to pdf (where i'm blocked) I am wondering how to convert this back into the necessary format to create a blob, so that after the document gets uploaded everything looks okay. What is JSON and Blob?JSON (JavaScript Object Notation): A light Aug 28, 2014 · Here is an animated version that downloads multiple images: Convert HTML5 Canvas Sequence to a Video File. fromDataURL(_this. zip (152. 7. js) 0. Thanks in advance. The PDF file will be downloaded as BLOB (Binary Data) using XmlHttpRequest AJAX call and then will be sent for download in the Browser using JavaScript. charCodeAt(i)); const blob = new Blob([mappedData], { type: 'application/pdf' }); FileSaver. Create a file object or Blob. What I actually want to do: I want upload a file from Apr 4, 2024 · We used the new Blob() constructor to convert the ArrayBuffer to a Blob. clipboardData. The script below converts a fetch response into a Blob. Dec 26, 2018 · I've been trying to find a solution that works but couldn't find one. Im using File API var blob = new Blob(byteArrays, { type: contentType }); This is return from a function reading a cropped images. This is a snippet for the code that I want to do Blob to Base64 string: This commented part works and when the URL generated by this is set to img src it displays the image: var blob = items[i]. then display that image and pdf file in web page using blob url (i am saving this blob url in array). In second time I choose another file. Oct 25, 2024 · Download image with Javascript and convert it to a Blob. pdf", {type: "application/pdf", lastModified: Date. How to open base64 encoded pdf in javascript. split your code into two phps: one for the page and other for the So for today, jspdf-1. The new window shows PDF Apr 28, 2015 · I was studying Blobs, and I noticed that when you have an ArrayBuffer, you can easily convert this to a Blob as follows: var dataView = new DataView(arrayBuffer); var blob = new Blob([dataView], { type: mimeString }); The question I have now is, is it possible to go from a Blob to an ArrayBuffer? Oct 14, 2012 · I realize this is a rather old question, but here's the solution I came up with today: doSomethingToRequestData(). query; const b Jun 19, 2017 · I am trying to parse blob object into base64 string in javascript. my code is var reader = new FileReader(); reader. I got the actual PDF file. Jan 24, 2019 · I am currently using Angular on the Front-End and I need to upload a file using form and convert it to blob before sending the file to server. I need to encode a PDF file to Base64 with Javascript. let blob = ; let dataUrl = await new Promise(r => {let a=new FileReader(); a. Dec 9, 2015 · I have the below base64 encoded string which contains the pdf file. The code for the same is as following: The code for the same is as following: Dom element: JavaScript handler will receive two values stored in array. js, you should be able to get the contents in a reasonable manner. Here's a simplified process: Remember, Node. The primary use of blobs is to hold images, videos, and other multimedia objects. Blobs represent raw data, similar to files, and can be useful for various tasks like downloading or processing JSON data. That question was awesomely answered by Codetoffel but my question is different in that my PDF is retrieved via a RESTful call to my Web API implementation. getAllegatoBlo Jan 22, 2019 · I am using one input field for multiple time to select files. Jul 15, 2016 · How to convert Blob to File in JavaScript. Sep 21, 2017 · As per Documentation , stream. Sending blob as Uint8Array to NodeJS and saving it to file. Here's my code that i generate excel with. It says below, Sep 13, 2020 · For FetchFiles method, basically it read the PDF file and convert it into bytes array. find and replace you are most likely going to corrupt it. Let me explain First, here's a basic way to use PDF. I want to convert it to a file with the Blob object using javascript. May 26, 2018 · I am trying to convert an image file captured from an input type=file element without success. then(e => e. toBase64String(doc). now()}); and then passed the file to the addFile() function but it creates a file which contains [object File]. If you are receiving it as a string and are using standard string manipulation functions on it, e. For example, when you use blob() on a fetch response object. on('finish', function { //get a blob you can do whatever you like with blob = stream. My guess is that either (a) they generated any empty Blob URL to use as a placeholder while feeding in data from another source or (b) the Blob somehow acts as a proxy for encrypted data (via HTML5 Encrypted Media Extensions). And then use it to create the blob. Jul 20, 2011 · I am currently uploading images pasted from the clipboard with the following code: // Turns out getAsFile will return a blob, not a file var blob = event. log(b instanceof Blob) and it should say true. View our free demo for JavaScript to learn more. createElement('a'); link. I've found a possible solution by converting my docx into HTML using docxjs and then HTML to PDF using jspdf (docx->HTML->PDF). Hot Network Questions Jul 1, 2016 · How to convert BLOB into PDF file in the Node environment? 8. target. [spoiler: currently not Mar 16, 2018 · I have this method in TypeScript/Angular, that generate my file imprimir() { this. open(typedarray, 0);. createElement('a'); downloadLink. pdf'; // convert downloaded data to a Blob var blob = new Blob([downloadedFile. 6. I've read about a plugin called pdf. text() method returns a Promise that resolves with a string containing the contents of the blob. 2. Is there a way to convert the base64 string of a word doc to base64 string of pdf in JavaScript? Packer. If you want to know if b is trully a blob just console. Save the Blob data into the PDF file. I have an object in javascript and it has some non-english characters in it. map((byte, i) => binaryString. download = 'name_to_give_saved_file. So you could deconstruct and reconstruct it as follows: Jan 2, 2020 · It all works great apart from the PDF is blank even though there is an average of 170kb per PDF. png"); Problem here is, that Google Chrome doesn't stick to specifications very much. For internet explorer I used code from here to save a Blob. For that, I use fileSaver. The blob (Binary Large Object) is defined as a small chunk of binary data stored in database systems as a single entity. result co Dec 3, 2019 · If you got a blob that is not PDF and you will re-wrap it to Blob with pdf type you might break the data. It says below, You can convert this array of byte values into a real typed byte array by passing it to the Uint8Array constructor. To create a blob from the base64 string there were many results on this site, so its not my code I just can't remember the specific source: Aug 5, 2022 · In this post from the old Forum, @TIMAI2 shows us how we can create a PDF file with JavaScript using the jsPDF. Here I’m going to show you step-by-step the path of to create beautiful PDFs. Nov 4, 2016 · var doc = new jsPDF(); doc. js? Converting a Blob to a PDF in Node. For example, In first time, I choose image file and pdf file. docx’ processes just fine, as you can see by examining or testing ‘file_encoded’, the Message Box activity chokes on it. After it's done i want to save the blob as a PDF file using FileSaver. Below is my javascript code var img = document. Jan 9, 2019 · JsPDF is a fantastic resource for building PDF files on the client side. $binary], { type: 'application/pdf' }); // create an object URL from the Blob. Hot Network Questions To convert a Blob into a PDF and make it downloadable in Laravel, you can follow these steps: Retrieve the Blob data from the database using the appropriate model and column. get Jun 30, 2023 · I tried below react js code to convert a PDF blob file content to PDF Readable format. createObjectURL(blob); a. Nov 8, 2022 · I tried ‘Save Response’ option of postman and saved the response as a file (response. subscribe( Sep 12, 2023 · Open PDF in new tab instead of Download – JavaScript – using Blob. var blob = new Blob([file. So a simple Get Request, nothing fancy. Jan 10, 2022 · Apryse WebViewer component can also be used to convert from DOCX to PDF, client-side, without any Office dependencies. We need to create a new blob from the pdf file and create new URL to show that file. Now in UiPath, I’ve used HTTP Request activity, which is giving same response in string. selection. Check docs about Data URLs. items[0]. What I want to do is make an AJAX call to this URL (because I need to pass some authentication headers and it is cross domain). 2) Using the above bytes array, I need to render it in the UI as PDF file. an Uint8Array), then the file can be opened using PDFView. Create a new PDF file using a library like Dompdf or TCPDF. First part : Mar 10, 2021 · Sometimes you get a Blob object when instead you would like to have a File. Apr 27, 2019 · A PDF consists of a set of objects in a non-trivial fashion. ts) the base64 content is decoded and converted to blob and that to a DOMString URL (via URL. Sep 1, 2021 · JavaScript Convert Blob to Float32Array (or other Typed Arrays) 0. Here is the code I am using: const blob = new Blob([pdfBuffer], { type: 'application/pdf' }); const a = document. createObjectURL(file); window. I would appreciate a detailed explanation. writeBuffer(). target = '_blank'; document. – Jun 8, 2022 · use this example and change the SQL database to your Database as well as the Select Statement. application/pdf. Feb 22, 2021 · I’m new to ionic and typescript. Reading this issue, I got to know that using html2pdf promise API, we could get the file instead of downloading it. Dec 2, 2014 · Trying the new File(Blob blob, DOMString name) In Google Chrome I tried this, according to the current specification: var blob = Blob. arrayBuffer(); const buffer = Buffer. appendChild(a Jun 29, 2022 · The problem is I want to let the user download the word document direclty as a PDF document but docxtemplater just permit us to save the file as a docx. I have been working on this problem for the last few days. atob(fileResponseData); const bytes = new Uint8Array(binaryString. b Here is the workaround for you to convert binary data blob to an image, [image] PFA - nmnithinkrishna_ByteArrToImg. download = fileName; a. The Overflow Blog “Data is the key”: Twilio The default for a blob when uploading it is blob. sooz ukawog cqbf lpleuvl utrfsz bxfif nexcanpu rkvazbg upbjc vmwhsr
{"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"}