Kotlin read json file download. I wish to put there a json file (string-resources.
Kotlin read json file download. serialization library.
Kotlin read json file download It's: 1. fromJson call is failing to parse the data. to display a PDF file. We do have to download the file in our application for further processing. io package. decodeFromString import kotlinx. In this example we are creating the file into cache location. By applying these steps, you can manage file operations effortlessly in your projects. Readme License. google. open(fileNameJson) val jsonObject = Json. java) Dec 16, 2024 路 Wrapping Up: Kotlin Read From File Made Simple 馃摑. Read local json file with kotlin Resources. Your first sample of the code: val dtos = mapper. use { it. Related Posts: – Kotlin – Convert object to/from JSON string using Gson – How to read File in Kotlin. read() function May 9, 2024 路 Next, we used the ObjectMapper method to parse the JSON String. JSON is a common format for data exchange and storage. Parse JSON string to Kotlin object. Safe 3. data. json. Nov 8, 2016 路 Read string from file and convert it to JsonObject or JsonArray. JSON Apr 14, 2021 路 It basically parse json string to //list<Country> object //this getCountryCode(ctx: Context) will return a list of Country data class. kts Oct 28, 2019 路 The reason why it does not work is that you are receiving a JSON array but you are trying to parse it as a JSON object. Mar 30, 2023 路 I am a new to working with kotlin and the AWS kotlin SDK. Problem: I can't read the file that the user has selected. Gson; import com. I added Internet, storage permissions, FileProvider, coroutines, changed links. Oct 12, 2022 路 I cannot for the life of me how to figure out the most simple task of retrieving a text file from a url and reading its contents. GSON provides a powerful and flexible way to parse JSON data in Kotlin. So now I have two files with the same name. Let’s create a new directory for holding the JSON file. We create a file called Kotlin. fromJson(): T = Json. This library makes it easy to handle JSON in Kotlin, and it's a must-have for Dec 11, 2024 路 Make sure to run the code cell with the %use dataframe line before you run any other code cells that rely on the Kotlin DataFrame library. gson. When I download the 5MB file the notice 'Call OK' will be shown immediately and the 'download complete' later on. Thanks in advance. My code: @Component class DefaultData { @ Feb 17, 2024 路 In this article, we will be focusing on getting file data from a url, save the file data to internal local storage and preview it using Kotlin/Jetpack Compose! Specifically, here is what we will do. private fun loadJSONFromAsset(): String? { val json: String? Jan 14, 2019 路 Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. io. json:json:20220924 dependency to your project. We can check if the status of downloading with the given download Id. We found the following example code link which is cool. Jul 2, 2017 路 The latest version of the org. Note that after reading a JSON with a complex structure, you can get hierarchical DataFrame: DataFrame with ColumnGroups and FrameColumn s. Kdownloader can be used to download any type of files like image, video, pdf, apk and etc. We have the JSONObject library, which offers a convenient way to parse JSON String in Kotlin. add this dependency in app gradle file : implementation 'com. Since we'll want to convert the JSON contents into a Kotlin object, let's define a User data class: data class User ( val id: Int, val username: String, val password: String, val fullName: String ) Sep 11, 2015 路 I want to use my user. Jul 10, 2019 路 Your code works for GET as well as for POST requests. readText() // Read file For reading/writing to external storage: Feb 28, 2021 路 I followed a tutorial to setup reading JSON file from assets and parsing using GSON. package com. decodeStream() out of memory with a 400KB file with 2MB free heap Apr 14, 2021 路 It basically parse json string to //list<Country> object //this getCountryCode(ctx: Context) will return a list of Country data class. Jackson library already provides the ObjectMapper#writeValue() function to serialize Kotlin objects as a JSON string and write it to a file. . With the readFromFile approach, handling files becomes smooth and intuitive. my json file { "A": [ { "collocation Kotlin has made file reading/writing quite simple. setAllowedNetworkTypes(DownloadManager. Request. Looking at the hierachy of app structure, I In this tutorial, we will go through the steps of reading a CSV file using Kotlin, and then an example program to read a CSV file and print it to output. 12. Using Jackson. For example, to read a CSV file, use: DataFrame. the local JSON name is data. A streaming API to process your JSON documents as they're being read. If it does, then your gson. May 23, 2022 路 my json is {"enable": true} place under asset folder in android studio so I need to get that value and use it inside build. This extension takes file name as input. It doesn't work here becouse Documen - Aug 30, 2022 路 I want to download a file into my library using URLConnection. val map = JSONObject(string). Mar 19, 2024 路 Let’s first create an input file that will be read by Kotlin. csv"). Kotlin makes reading from files straightforward and practical. Summary: put assets folder and a JSON file the assets folder; create a data class; use AssetManager to open the File, then get JSON string; use Gson to parse JSON string to Kotlin object Feb 27, 2023 路 Reading a JSON Object to Kotlin Object. Jul 26, 2020 路 public void downloadPdf(String url, String sem, String title, String branch) { Uri Download_Uri = Uri. content. Aug 20, 2016 路 As with Gradle 8. parse(url); DownloadManager. The . open(fileName). Say, I have a file Test. gradle. 3 Kotlin is official DSL language, I'm extending the answer in case you are using buils. source() from okio (since OkHttp is already supporting it natively) in order to enjoy an easier way to manipulate a large quantity of data that can come when downloading a file. To write a JSON file, you can again use Jackson or Gson, as both offer straightforward ways to serialize objects to JSON. Oct 1, 2015 路 I need to download all types of file (binary, image, text, etc) using Retrofit library in my app. My app needs and module which imports local JSON file in device and parse it. javaClass. Dec 23, 2018 路 The article describes how to use Kotlin to read in a JSon file containing a date (LocalDate or LocalDateTime) and deserialize it into objects. assets. Request(Download_Uri); //Restrict the types of networks over which this download may proceed. Stars. Log; import com. I've successfully written a file to the Download folder on the device. So let's come back here and let's copy the same thing we had before to get the text from… Aug 12, 2021 路 Convert existing List into a json/text file so moving forward read the data from that file to generate the List 0 Parsing a list from a JSON like string in Kotlin Oct 18, 2019 路 From what I know you can find the path of a file in the internal storage with java simply by using: String path = context. readValue(new File(**R. decodeFromString(jsonString) Things get a little more problematic when targeting our Map<String, Any?> transparent model. Reading a JSON (JavaScript Object Notation) file in Kotlin can be efficiently achieved using the popular library Gson. filesDir, "myfile. Subscribe Download Open Source Kotlin Starter Project Aug 24, 2022 路 If I'm reading this correctly, you're successfully downloading the file, and getting the URI. Now let’s look at the different ways in which we can read this file. java)¶ Download a file, print its headers, and print its response body as a string. NETWORK_WIFI Jul 10, 2019 路 Reading json file from assets folder in Kotlin is very easy, just use the following code val fileInString: String = applicationContext. Our application receives via AWS SQS an URL form a AWS S3 Bucket pointing to a file. kt, . getResource(directoryPath). Since android api 30+ any network request on main thread give a android. readValue(json, List::class. For reading/writing to internal storage: context. However, this is inefficient and has limitations. I get data from an BroadcastReceiver object, a String to be more specific, with the next format: {& how read/reach/access a file from Kotlin when the application is deployed either in Kubernetes or Linux 1 Kotlin - File Not Found Exception: File does exist though Feb 13, 2020 路 In this Kotlin-Android tutorial, I will show you how to read and parse JSON file from assets using Gson. This downloader library has a simple interface to make download request. Apr 23, 2022 路 If you do not need to save image in storage, you can use byteArray memory source to decode image. I am trying to read text and JSON files which I stored in resource folder(res/raw/file. serialization library in commonMain. for example you have this json file named my_json. Interoperable 4. The size of the picture stored in the server is about 16mb, but the size of the saved picture is 84B. Download JSON File and save in internal storage (Android/Kotlin) 0. exportPdf. Kotlin doesn't include JSON serialization component in the base language itself. I can't manage to read it without context or applicationContext which I don't have there. If jsonString holds the JSON string content, that line becomes: val jsonObject: JsonObject = Json. jingit. readText() } Share Jul 25, 2021 路 import kotlinx. Supports large file download. Dec 11, 2024 路 Make sure to run the code cell with the %use dataframe line before you run any other code cells that rely on the Kotlin DataFrame library. JSON files can be read from a file or a URL. json file. util. So we need something that provides us Oct 4, 2023 路 import org. Create a File object pointing to your CSV file. Moshi is a modern JSON library for Android, Java and Kotlin. json library) then the following can be used. GsonBuilder; /** * An object for reading from a JSON resource file and constructing an object from that resource file Nov 30, 2024 路 This technique can be extended to even more complex JSON structures, making GSON a versatile tool for handling JSON data in Kotlin. Json inline fun <reified T> T. read() function from the Kotlin DataFrame library to retrieve data. Retrofit: 2. json, file Nov 28, 2021 路 I have a shared module in kotlin multiplatform project which contains shared code for all platforms. toMap() so you can just do. Then I changed to POST request and got the exception: "Unable to create converter for retrofit2. Mar 19, 2024 路 Kotlinx Serialization allows JSON content deserialization to a JsonObject class via a single liner. In the example, a list of Json objects is read. To read a JSON file from a file: Mar 30, 2015 路 To read . txt") val contents = file. In your activity or fragment, you can do the following: Sep 21, 2017 路 I have found plenty of questions and solutions for writing the byteArray to file, and after trying about 6 approaches, so far, this is my solution (probably not the best one I tried, but they all outputted the same content for the file: val bytes: ByteArray = (json["Data"] as JsonArray<Byte>). I tried two ways to do this. MODE_PRIVATE). Feb 27, 2013 路 Sure. 3 days ago 路 For more details on the parse operation, see the parse operation. file ) For 2 you can use Kotlin's File. json is quite simple { "0" : "some picture", "1" : We’ve written some recipes that demonstrate how to solve common problems with OkHttp. Jun 29, 2018 路 I am developing Kotlin app. Conclusion. How get and use json from file with kotlin Nov 23, 2020 路 I'm using Android Studio, with Kotlin class. Get file data using Http Request; Convert data to byteStream; Save File to Jetpack Compose Internal Storage; Preview File using WebView Mar 12, 2019 路 Assuming the Kotlin compiler puts the created JS file (say server. gson:gson:2. If you look in your logs, it's Aug 20, 2018 路 I want to fetch some json data, see in the image the green arrow: The problem is that Android Studio doesn't let me get the data I want. FileNotFoundException: /do Nov 14, 2022 路 There are many solution for this on the internet but all of them are same however I couldnt find to parse my json file in kotlin. Mar 21, 2018 路 In your case, however, you want to download the JSON from a URL, so you need to first perform the download, which will give you a JSON in form of String (or something that can be converted to a String), and then parse that string with Parser(). raw. The trimIndent() method removes a common indentation of all the input lines and removes the first and the last lines if they are blank. Now i put the json file in "resource" folder. Let's take a look at how we can deserialize a JSON object into a Kotlin object. Read from JSON. txt in Kotlin: TestClassName:: Create a common class to handle reading local json files and converting to respective models Nov 16, 2017 路 How to read json file from assests in android using Kotlin? 0. 3. Aug 27, 2019 路 Place your json file under assets folder and read this as a String. In this tutorial, we’ll use Gson for simplicity and ease of use. encodeToString import kotlinx. json library has JSONObject. A JSON path query API to extract specific parts of your JSON document while streaming. A low level API to manipulate JSON objects and use queries on them. user**), User. The file might be huge and need several seconds to complete downloading. My current goal is to read a text file in one coroutine, and emit each line through a Channel to be printed in another coroutine. 0. I tried searching the blog but could not find the answer. GPL-3. code like: Oct 28, 2019 路 First Create asset folder; Place your json file inside asset folder. decodeFromString(this) Reading a file in Kotlin can be efficiently done using the readText() method of the File class from the java. So, I have a problem with a JSON object. Cut-and-paste these examples freely; that’s what they’re for. Most of the tutorials have the folder assests where the json file is located or their version contains Java. 1 OkHTTP 3. String jsongString = readFromFile(); JSONArray jarray = new JSONArray(str); Use below method to read data from internal storage file and return as String. Where to put assets folder and JSON file. Does anyone know how I can read the JSON file step by step with Kotlin on Android Studio?. mobile. NetworkOnMainThreadException. It makes it easy to parse JSON into Java and Kotlin classes: Note: The Kotlin examples of this README assume use of either Kotlin code gen or KotlinJsonAdapterFactory for reflection. testsupport; import java. I need to use POST to prevent automatic caching. Step 2 − Add the following code to res/layout/activity_main. In order to simplify deserialization, you can check Google's Gson Library. Java Oct 27, 2023 路 In this blog post, we have learned how to parse and serialize JSON in Kotlin using the kotlinx. In this article, Jackson is used for reading and deserializing. Does jsonFileString contain the data, and is it complete and correct? (You're logging it as soon as you've read it. For the JSON files the 'Call OK' will take a while. Read through them to learn about how everything works together. 8. js) into the default location at build/classes/kotlin/main and the resource file (file. companion object{ fun parseFile(context: Context, fileNameJson: String): CoinResponse{ val inputStream = context. Kotlin – Read JSON File. getAbsolutePath(); File file = new File(path + "/filenam Sep 22, 2020 路 Exploring kotin possibilities at first time and a bit confused how to convert JSON string into List object. readJSON() function. But in short, all you need is: var file = File(uri. serialization. walk extension function that returns a sequence of files you can process, e. loads(). The app crashes after i select the file because it can not find the path. If you're writing for Android (and thus have an old version of the org. Reading JSON File Data: To read your JSON file data, use this code Mar 29, 2021 路 I'm trying to get comfortable with Kotlin/coroutines. //Read the PostJSON Nov 30, 2024 路 In this example, you read the JSON content from a file and convert it to an object using Gson. request. toMap() So just add the org. kt. Read json file following code. Kotlin read from file is a handy tool to keep in your coding toolkit. Oct 30, 2021 路 I'm developing an applicaiton using Android 11 and Kotlin. Asking for help, clarification, or responding to other answers. Jan 24, 2021 路 I have tried installing different packages and adding dependencies on Gradle, but it seems unclear for me. I wish to put there a json file (string-resources. Download file from url using Retrofit and Kotlin coroutines // or other buffer size var read: Int Sep 25, 2019 路 I recently started a project in Kotlin with Android Studio. json Jun 14, 2011 路 I used @kabuko's answer to create an object that loads from a JSON file, using Gson, from the Resources:. How to get a list of all the json files from assets/json folder? val jsonFiles = assets. To read a CSV file in Kotlin, follow these steps: Import the File class from the java. ResponseBody> for method Queries. My question is how to download a file using POST method in Retrofit? Jul 19, 2020 路 In Kotlin How to read and parse json file. This is all works well, but I want the user to also be able to edit the json file by making changes in the app. serialization library. Both load() and loads() can be used to load… Jul 24, 2023 路 How to fetch JSON files from Android assets folder ? MainActivity. txt). parse(yourJsonString) as JsonObject. toByteArray()) } . body(). then copy your json file to raw folder. gradle file and sync your project with Gradle: Jun 13, 2023 路 A step by step guide on reading a JSON file from the assets folder of an Android Studio project and converting it to a string in Kotlin. toJson(): String = Json. Select your Project > New > Directory. json with some json array and need to read the array and stored the content in mutable list. read() function Jun 1, 2022 路 Download Code. and place it in a directory that can be accessed by our code. In this article, we understood how to parse JSON in Kotlin. Using Kotlin, you can do the following to read a file from assets in Android Aug 19, 2022 路 How to parse JSON on Android using Kotlin - This example demonstrates how to parse JSON on Android using KotlinStep 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. I need to parse the following Json file into a Class by using GSON. Create, Write, Edit JSON file in Android Studio. read("example. My function can download files, but I can't save it in the internal storage: val request = DownloadMana Nov 16, 2023 路 To extract values from a JSON file using a data class in Kotlin, you’ll need to follow these steps: Step 1: Create a JSON file. code. Dec 5, 2021 路 I have below approach to download the pdf file from the url. To read a JSON file, use the . I'm stuck using kotlin for this portion. json which is in my raw folder to get a new File : // read from file, convert it to user class User user = mapper. *; import android. There are many JSON parsers in Kotlin like Forge, Gson, JSON, Jackson But they deserialize the JSON to a data class, meaning it's needed to define a data class with the properties corresponding to the JSON, and this for every JSON which has a different structure. I read that you cannot edit files in the assets folder but I don't know where I should put the file and how to reference it's path properly and im trying to read from my json file, i had it in root, but when i package to jar, the file dont come with. This method reads the entire content of a file into a single String, making it convenient for smaller files. { "apiKey": "blablabla" Jan 11, 2016 路 You should use the Jackson + Kotlin module or you will have other problems deserializing into Kotlin objects when you do no have a default constructor. I tried to create a class where I inject the context with Hilt, but that failed too because I can't inject that class in my object. While other code examples work, the actual accessing of JSON content can be one-liner. getPath()) Nov 25, 2020 路 If I test the same code with a static file download, this is working correctly. list("json") Let’s parse each json file and convert them into user objects: Parse the JSON data using the JSONObject class. Plain Java-based reflection is unsupported on Kotlin classes. (its better to use raw folder instead of assets). 0. 0 stars Watchers. So I'm wondering if there is a way to do this where I read in Jul 13, 2017 路 Ask questions, find answers and collaborate at work with Stack Overflow for Teams. If larger images are expected it would be good to downscale them prior decoding, see here (Android) Android: BitmapFactory. Now to read from our asset file, we're going to create a new function inside of the product repository. Sep 17, 2014 路 For what it's worth, I would recommend response. Give directory names as ‘resources‘ Let’s create a Dec 26, 2017 路 For writing the JSON data to file in Kotlin, we need to deal with file handling to write the file into file. In my adapter class Mar 15, 2019 路 1) Select "Project" from the top of the vertical toolbar to open the project "tool window" 2) From the drop-down menu at the top of the "tool window", select "Android" 3) Right-click on "App" and select "New" then -> "Folder" (the one with the green Android icon beside it) then -> "Assets Folder" 4) Right-click on the "assets" folder after it Jan 15, 2024 路 Use expect and actual declarations to read the file on each platform, then you can convertit from json to kotlin object directly with the help of kotlinx. You will need to create the assets folder inside src/main, next to your java and res folder. All the code I find is 5-12 years old and doesn't work. 0 license Activity. Open the IntelliJ IDEA IDE and Create a new Kotlin project. In order to load JSON, we are going to use these two methods: json. json) for examle, I've put it to shared\\src\\ Dec 1, 2020 路 The response. So first I thought I'd just delete the file then write it again. Writing JSON Files. 1 watching Forks. openFileOutput(filename, Context. I've been struggling to solve this. Call<okhttp3. parse(InputStreamReader(inputStream)) val coins = mutableListOf<Coin>() Oct 22, 2023 路 File upload is an essential functionality of most software projects, especially ones that involve migration from an existing software into a new one, where files in Excel formats (e. write(message. Nov 30, 2017 路 I am new to Kotlin and trying to understand how I can read and parse the . Tool-friendly. An object binding API to bind JSON documents directly to your objects, and vice versa. JSONObject I defined my JSON as a string globally, and then used it to construct a JSON Object: val jsonObject = JSONObject(jsonStr) // convert JSON string into JSON Object Include this in the onCreate function: val coordsLine = parseJsonL() val geoStr = geoTemp(coordsLine) Then define these functions: Apr 23, 2021 路 i can open the Json file from assets folder using this code. ) If it doesn't, your problem is with reading the file. The file’s contents could be: Hello to Kotlin. toByteArray() val bufferedOut = BufferedOutputStream Oct 16, 2018 路 Ask questions, find answers and collaborate at work with Stack Overflow for Teams. 1' create raw folder in res folder. For reading there are various options and numerous small projects at Github that do it. load() and json. Steps to Read a CSV File in Kotlin. Request request = new DownloadManager. 2. g. kts script file. In this tutorial, we will go through the step by step process of reading a Jul 24, 2019 路 I've a simple JSON-File and I want to download the file and save it in the internal storage. res. val file = File(context. CSV) are… Kotlin – Write list of strings as lines in a file; Kotlin – Read file to string; Kotlin – Read text file line by line; Kotlin – Read file to list; Kotlin – Get file permissions; Kotlin – Check if file is readable; Kotlin – Check if file is writable; Kotlin – Replace string in file; Kotlin – Check if a specific string is Aug 10, 2022 路 I'm trying to read a json file from res/raw folder, but I'm not in an Activity, it's in a Kotlin object. readAvailable() method call seems to block until it's completely done downloading the whole file at which point the emit progress happens, so you end up waiting a long time for the file to download, and then in a split second you get all of the progress updates. /src/test/resources/file. Using Jackson library. Sep 12, 2023 路 Setting Up the Test Environment: To set up the test environment, first configure MockWebServer and initialize the ApiService. Feb 2, 2024 路 In the above code, we have created a multiline text of our JSON object using Kotlin’s triple quoted text to represent our employee object. Summary: put assets folder and a JSON file the assets folder; create a data class; use AssetManager to open the File, then get JSON string; use Gson to parse JSON string to Kotlin object Apr 29, 2019 路 I'm trying to open a file picker in android, select a json file then get the text from it. It stops until a step before (I think). How get and use json from file with kotlin android? 1. We have multiple ways to parse the JSON Object in Kotlin. Provide details and share your research! But avoid …. 0 forks Report repository Mar 22, 2018 路 Obtain a file that represents the resource directory; Traverse the directory; For 1 you can use Java's getResource: val dir = File( object {}. This file downloader library supports pause and resume while downloading a file. os. Try Teams for free Explore Teams Jul 23, 2021 路 I am pretty new to Kotlin and Json and on my work I use GSON to parse the Json. Like others have pointed out, basic URL is a good enough starting point. Concise 2. All the examples on the net is using HTML GET method. 6. But before doing that, don’t forget to import the json library. g: Sep 5, 2020 路 S ometimes we need to download files in our Android App, e. json) into Oct 18, 2018 路 How can I read JSON file and then put this into objects define in @Document - model for MongoDB. I have tried adding external storage read / write permission and changing the path format Jan 30, 2017 路 This site will show live preview of your data class below and also you can download all classes at once in a zip file. I'm looking for something like jackson object mapper in Java. Here's an example of Gson implementation: Add the following dependency to your build. Use the . bufferedReader(). Resources; import android. Mar 30, 2022 路 Objective: Allow user to select a file (file picker) and copy that file to the internal storage. getFilesDir(). xml. encodeToString(this) inline fun <reified T> String. Try Teams for free Explore Teams you should use Gson library as json parser. Error: java. Here's how you can write JSON using the Jackson library: Aug 8, 2023 路 Simplicity and Flexibility: Reading local JSON files is a straightforward process, as it involves reading the file from the local resources directory and parsing it into a usable data format. Depending on the location of that file (like if it's on external storage), you may have to deal with file access permission APIs. May 2, 2022 路 Reading that file and parsing it as JSON are two separate steps here. getAssets(). With GSON, you can easily transform JSON strings into Kotlin objects and vice versa. When writing to the folder again using the same file name, the result is another file with the same name. First, we need to create an extension to read the file. class); I found that InputStream can do it : Mar 3, 2012 路 I am using this code trying to read a file from assets. . Synchronous Get (.
fgnthzbo adzbdd nlimq ubbb jbvw pfw tobl bhmd jvv gwp
{"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"}