Jenkins list files in directory. gz $(find ${JENKINS_HOME}/jobs -name config.

Jenkins list files in directory. git) with Jenkins GitSCM plugin.
Jenkins list files in directory name } return list If you do not need recursive, just use eachFile instead of eachFileRecurse. Jul 22, 2020 · I would like to make two dropdowns in Jenkins where I can choose files at the first dropdown from a directory and the second dropdown should change based on the first dropdown (where the file has been selected) regarding the file content, these files have data in JSON format. asList(). endsWith("json")){list << file}}} node('master'){def list = [] def dir = new File("dirPathToBeDefined") fetFilenamesFromDir(dir,list) for (i in list){print i print("\n")}** The filesystem-list-parameter-plugin lists file system object names of a directory. Load 7 more related questions Show fewer related questions Sorted by: Reset to default May 15, 2019 · files = findFiles(glob: '**/. I also tried. In this set up, Windows machine is a Jenkins slave and the target server where i want to copy is Linux. I tried with: How to list files under a folder using jenkins. The description of this filed is here:. Jenkins versions = getArtifactsVersions() def getArtifactsVersions( Oct 7, 2021 · Don't use Groovy for this, use shell code instead. class files, is one of these directory-based tasks. I configure Jenkins to create the build, so it successfully pull my gitlab and then compile my project. This way you can have as many repositories in your project as you need, all in separate locations. This is the snippet I'm using To archive your entire folder in jenkins. // returns a list of changed files @NonCPS String getChangedFilesList() { changedFiles = [] for (changeLogSet in currentBuild. Ask Question Asked 6 years, 6 months ago. For example "File Rename", "Copy File", "Make May 4, 2019 · In Jenkins you can implement a script which checks for newly added files each time a change is detected or triggered by a hook, and skip further execution if no new files have been added. txt/) {file -> list << file} Mar 14, 2018 · I'm trying to list folders containing a certain file on jenkins and use later this array. I would want to get demo as parent folder and all the folders and files underneath it. FILES) { file -> file = file. I tried with ${workspace} dir in Jenkins but it is showing any output. Directory-based Tasks. eachFileRecurse{file-> println file. The problem: there is no way to get a list of changed files for all commits in PR When I try to use this command: git diff --name-only PR-BRANCH develop it returns error: fatal: ambiguous Jul 6, 2023 · Hi, we want to run an executable against each file of a list of files, using a pool of agents (preferably specified by a label). For some reason it does not seems to read the file system at all, neither its own workspace. Grab all the files in a directory and sum the lengths. zip} would give you the original file name passed from the browser (such as my. So, I would like to zip entire 'Test' folder with all subfolder. I am trying to archive all the files while keeping their folder structure. /foo' cleanWs() sh """ mkdir foo touch foo/bar1 touch foo/bar2 touch foo/bar3 """ def TMP_FILENAME = ". /B Uses bare format (no heading information or summary). DIRECTORIES def list = [] new File('/tmp'). docker_files_list" sh "ls ${FILES_DIR} > ${TMP_FILENAME}" def filenames = readFile(TMP_FILENAME). This happens at runtime (when container is created), if you want to have some default files in your docker image you do this at build time by using the COPY or ADD instructions, like you're doing, these files will be copied over to the image Jun 27, 2023 · Hi, we want to run an executable against each file of a list of files, using a pool of agents (preferably specified by a label). But if you are on Slave/Agent machine and want to access the details pertaining to a job you can use either REST call or jenkins-cli. xml" What is this config? Looks like its caching their sessions or something? Do I need to backup these files? What woudl the impact be if the users folder got deleted? Aug 7, 2022 · The code for Get a list of all the files in a directory (recursive) import groovy. The filesystem-list-parameter-plugin lists file system object names of a directory. I just need the list of direct subfolders. If you have other folders with the same name. It can be added directly to the job's exec shell script. In addition the objects can be filtered: ALL, DIRECTORY, FILE, SYMLINK. ) The name will not include the directory name portion. . These file info objects have name as a property, so you can easily get the name of the files as below: eg. The step returns an array of file info objects who's properties you can see in the below example. Nov 18, 2021 · I am running a shell script within the Jenkins pipeline and i want to run find command to get all extension files and copy them to the scan folder inside the &quot;AppName&quot; folder here's the c Nov 2, 2023 · It is usually applied to directories. How do I list the subfolders of a given folder in an Artifactory By default, Jenkins stores all of its data in this directory on the file system. dll files. The step returns an array of file info objects. Dec 6, 2018 · This is a cross-platform method to check whether a directory is empty or not (you will need the pipeline utility steps plugin). Is there a way we can pass multiple values to dir option of the zip me Jun 1, 2019 · Use findFiles() in Jenkins to get a list of files in the indicated directory, matching the given regular expression. If I remember correctly, there's a folder for plugins in the installation directory. e. This option, takes a list of job parameters that trigger an auto-refresh of the Reactive Parameter when any of the 'Referenced parameters' change Nov 14, 2016 · Directory/**/* Do not use Directory/**/*. Groovy code always runs on master whereas shell code runs on the current node, as expected. I want to stash just the sub directory and all files/folders underneath it, i. files[0]. If I run this I get the following output: In my Jenkins home dir I see these configs for all my users: "c:\Program Files (x86)\Jenkins\users\someuser\config. :gn, g sorts by folders and then files, and n puts those files in alphabetical order. Thanks. -k converts links to local files. Since you should have a link set up, you should get your config folder with a file /. FILES) { file -> list << file } Afterwards the list variable contains all files (java. I have got main folder with two additional directories inside (/app and /tests) and from tests I would like list all files. split( "\\r?\\n" ); sh "rm -f ${TMP_FILENAME}" for (int i = 0; i < filenames. ex: sonar. the rest of the JSON file and folders will remain in the same location and after moving the files, it will be deleted from the source location. The var final String reposDir="/tmp/repos" is set to an absolute path so there is no problem with being at the wrong position inside my directory tree. /test/. “Manage Jenkins” → “Setttings” displays it as the first item on the page, under the heading “Home directory”. Aug 30, 2017 · In a jenkinsfile i want to get the list of files in a directory in workspace and put them in parameters. g. zip. /O List by files in sorted order. Mirror mode also works with a directory structure that's set up as an ftp:// also. The number of files in the list may be greater than the number of agents, so the pipeline stage should process each file when an agent becomes available (i. Mar 30, 2020 · Another big issue here is that the . Also in your code you unstash in a different directory than you execute ls. I want all the files to be zipped and zip should now include the root folder and should include only the contents within the folder. /etc/sysconfig/jenkins on Red Hat Linux). Here is the screen that I am seeing. def fetFilenamesFromDir(def dir, def list){dir. has finished processing a file appearing earlier in the list). In your case let us say. zip, then ${abc. getItems()) { // for each commit in the detected changes for (file in entry Oct 1, 2020 · This is all being done through the Jenkins GUI. *') Find files in the current working directory. Here is a screenshot of the configuration page. vim. My idea would be to write a powershell which deletes all files where the modified date is older than 15 days. io. Jun 7, 2023 · Hi. I am thankful for any Information or Website anyone could help me with. I have a groovy file, I want to run from the Jenkinsfile. FileType def list = [] def dir = new File("path_to_parent_dir") dir. Is Feb 14, 2020 · Since I'm creating the source folder (even in my real build example), it seems that the best option is just to rename the folder before the move: sshRemove remote: remote, path: "/mnt/test" writeFile file: '. But Feb 4, 2021 · I used the previous example to load the list in the same build I send the command output to a file, to be consumed in the next step. #!groovy node('master') { FILES_DIR = '. Apr 5, 2017 · On a Windows environment this should be "rmdir 'mydir' /S /Q" to force deleting all contents and the directory itself it without asking, but the original quesiton looks like it was a Linux sceario, no idea how to do that I would like to check out my deployment scripts which reside in separate repo to the deployment folder in my workspace. jenkisfile: I have issue with archiving folder path in jenkins. Use your web container's admin tool to set the JENKINS_HOME environment variable. ', into: '/mnt/' Feb 13, 2018 · But this recursively lists all files, which is not what I'm looking for. If there are files that have changed compared to the develop branch, I would like to run the particular stage. Sep 19, 2017 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Oct 22, 2020 · You can use the following groovy script in the extended choice parameter to list all folders under a given folder (You will probably require an admin approval to run this script): Oct 12, 2017 · Using multiple project recognizers solves this for you to be able to scan all repos in your organization when they have different structures. Suppose a have a folder named TOPLEVEL, which contains many jobs inside. Jul 9, 2020 · You can list the files in a particular commit of a local repo, from the root directory of that repo, as follows: For a list of files that changed in a commit: git diff-tree --no-commit-id --name-only -r <hash/branch/tag> <file pattern> For a list of all files present in the file-tree (with or without a change) at a given commit: new File(path-to-your-directory). In this repository I've many sub-folders and files and now I want to list all of the files wi Jul 19, 2019 · There was an additional catch, the bat or cmd or whatever exe is executing the delete operation is refusing to delete the folder if it is not empty. lastModified() } I haven’t been able to cobble together the correct syntax, though, to fit that into what I’m doing. unlink to remove each file. * May 25, 2017 · add this line to your sonar-project. Apr 22, 2021 · I have several yaml files in my /resources directory and I would like to get a list of ALL of them. e. And once inside the stage called build. Hot Network Questions Review request: evolution of dragon "fire" Why does Cutter use a fireaxe to save a trapped Oct 5, 2021 · How to list files under a folder using jenkins. You can use findFiles: Find files in the current working directory. For instance, if you want to exclude any files under any directory named 'test' you would add the following exclusion: **/test/** May 27, 2016 · The name of the submitted file is available in the environment variable whose name is the same as file location. This folder already has some files in it, and the problem is that during the checkout of the scripts the folder gets cleared. Once it was defined at the top level inside the pipeline block. The finality is that I need to cd to those folders in a loop and perform some actions. Bumping this very old post only because I used the accepted answer and then spent way too long debugging it. I want to be able list all the folders that TOPLEVEL contains. Very welcome for your ideas / Snippets (Jenkins declarative Pipeline) Nov 17, 2021 · I am kinda new to Jenkins and need some help. Nov 23, 2021 · I have got a directory structure that I want to stash using Jenkinsfile. *. Yes, you can copy them to another server, I know that I did that almost 2 years ago. On my Jenkins Pipeline, I have to get access to files on a Network-directory (Windows-Server). For example, if you set the file location to be abc. list all jobs under a folder (not view) with the python-jenkins Another way with tree, not mentioned here, it goes recursively and unlike find or ls you don't have any errors (like: Permission denied, Not a directory) you also get the absolute path in case you want to feed the files to xargs or other command Jul 3, 2015 · will give you a list of all the contained items, with directories and files mixed. I upload files such as . its looking for dockerfile1 in root folder not inside app1. The same thing I want to see in Jenkins for windows. java be careful if you want to exclude a folder and inside the folder there is a file you must first exclude the files or add the files one by one for example imagine there is a folder like below: src/app. This is a declarative Oct 17, 2016 · I'm trying to use Jenkins' Publish Over SSH plugin to copy all files AND sub-directories of some given directory, but so far, I've only able to copy files and NOT directory. However, if you expect multiple jenkins files to be loaded from the same repo, unfortunately this cannot be done in one Organization Folder setup – Oct 18, 2021 · This is the snippet from my pipelins script. One of the steps will involve collecting files from across our directory tree and copying them into a single directory, for zipping up. Dec 12, 2017 · Can anyone assist how to display all the files in my workspace through any command. The downside is that you will have a dummy file in the folder (the dummy write is not necessary if you're going to write other files). The file no longer exists whereas it existed in the previous polling; The last modification date of the file has changed compared to the previous polling; The content of the file has changed; For the latest choice, the content file detection can be: the full content in a file (whatever the file type) Apr 7, 2023 · For example: In a file directory: Sample/Folder/ there are 3 sub folders: F1, F2, F3. how to delete all files in directory except one folder and one file? 121. Each file should be processed only once. I'm using split() which puts them into an Array. eachFileRecurse (FileType. /tst/abc. May 30, 2022 · Here's what worked for me. If there is a corrupt job, you will have to remove it from the master. exclusions=src/*. Alternatively, if the project you're using will allow that, you can use GIT sub modules, which are similar to external paths in SVN. I read about findFiles but I can't find a way to use it in this situation. There are a few ways to change the Jenkins home directory: Edit the JENKINS_HOME variable in your Jenkins configuration file (e. File upload is optional. If you don't have access to your jenkins installation folder, you could create a simple jenkins job and run a script that tars all the config files for the jobs: "tar -zcvf jenkins-jobs-configs. When Pull Request(PR) is created it triggers build configuratin from Jenkinsfile in project code. The jenkins build should be triggered when F3 is changed and should not include F1, F2 in the build. import static groovy. Feb 18, 2020 · I am having a monorepo, app1 and app2 in the root folder and I want when their is a change in app1 folder, only app1 should build and same for app2. Jul 31, 2016 · As for list of files in main workspace dir you could use findFiles from the Pipeline Utility Steps plugin: files = findFiles(glob: '*. Mar 19, 2012 · Setting this to folder will make the plugin to check out the repository into the folder relative to your workspace. properties file. java src/controllers/home. In Git you could implement the same logic in a hook, if such scripted hooks are supported by github, and trigger a Jenkins build only if new files have been Apr 11, 2019 · I want to checkout Git repository via Jenkins GitSCM plugin into one specific folder say 'MyFolder'. Sep 15, 2018 · I guess that * only includes files in the current directory. Jun 18, 2018 · Zip a directory in Jenkins Pipeline. Feb 17, 2021 · I have the below groovy script in one of my Jenkins Active choice parameters: import groovy. After starting the assembly, all files in the folder are deleted and file cloning starts again. Also fs. each { println it. FileType def list = [] def dir = new File ("path_to_parent_dir") dir. I have already tried using file operation plugin which actually zips the files. java src/services/test. model. So when you stash a path, it is available to be unstashed at any step later in the pipeline. forces the operation (like -f in PowerShell) Mar 30, 2016 · Is there a dynamic way to list files on a directory as choice parameters before jenkins build starts? I've seen a couple of plugins but I'm not quite sure if that's the way to go. toString() if (file. EDIT. "${BuildPathPublishRoot}" places the value of the BuildPathPublishRoot variable into the string, whereas '${BuildPathPublishRoot}' is taken literally to be the directory name. gz, zip, exe etc. Please note that directories cannot be matched and returned in the file list, only regular files. Sep 3, 2019 · A very strange situation. Given that the repository weighs 25 gigs, it took a lot of time to download Jan 14, 2019 · You can use the changeSets property of the currentBuild global variable to get information relating to the detected changes of the current build. Viewed 15k times Jenkins file operations zip: zip Mar 12, 2018 · Use DIRECTORIES instead of FILES. I was thinking maybe the Java method lastModified() would hold some solution, but I haven’t been able to find success with that, either. SUCCESS this way you can always trigger on check-ins to the repository, but build when files in the folder of interest change. git) with Jenkins GitSCM plugin. I have a directory named foo in my workspace, and during the build, I want to copy everything in this directory to a remote server. eachFileRecurse (DIRECTORIES) { file -> list << file. Then you can provide proper parent directory as well. File) of the given directory and its subdirectories: list. I added a post build action to archive files. node { sh 'ls -l' dir ('foo') { writeFile file:'dummy', text:'' } sh 'ls -l' } The sh steps is just there to show that the folder is created. Aug 27, 2024 · By following the steps outlined in this guide, you'll be able to quickly and efficiently list all files in a directory using CMD, making it easier to navigate and manage your files. I have defined the jenkinsfile in jenkins but when its build. If you want to archive complete "mydir" folder **/my_dir/** That is one way. Now I want to move all the DLLs and all the folders except one and JSON files to the destination folder. JsonSlurper import jenkins. readdir, then you can use fs. Modified 6 years, 1 month ago. I’ve configured a multi-branch project with cloudbees-bitbucket-branch-source plugin in jenkins. Oct 28, 2020 · I am out of my league here so forgive me if this is hard to understand. Just for all files except long path, write the following command: **dir /b /o:gn** For Tree: write in Jul 3, 2018 · Plugins are stored on master. I have tried accessing the following json tree url, but it d I'm required to read values from a file in my pipeline. sh', text: 'ls -lrt' sh "mv . To understand more, I want to achieve below (assuming repository is xyz. changeSets) { for (entry in changeLogSet. ' in them. With new version of Jenkins, I'm not really sure. Hot Network Questions Euler's Method on the equations of motion for the double pendulum Luke 4:6 - Did the devil tell Apr 15, 2019 · All the files that you see under /var/jenkins_home will be the same as in your host directory /folder. each {println it Jun 22, 2017 · To remove all files from a directory, first you need to list all files in the directory using fs. If this is set, regardless of the write and executable privileges that are set on the files in the directory, only the file owner, the directory owner, or the root user can rename or delete files in the directory. I am able to add all the files while losing their folder structure with this pattern: **/*. The code used for checkout: . Whether you're organizing your workspace or troubleshooting, mastering this CMD command to list directory contents will enhance your productivity and streamline Aug 25, 2016 · I am wondering if there is a way to get the files result of a Jenkins build. Note: Jul 16, 2020 · How to list files under a folder using jenkins. e that is demo/**/*. Please note that you'll need to use quotes (") in order for string interpolation to work, i. The number of files in the list may be greater t&hellip; May 15, 2019 · Get list of pjs files from my work-space and store to array. ie. Jan 21, 2019 · How can I delete files in directory using jenkins. How can I copy the file and the directory? Thanks – To exclude entire directories by changing the Jenkins JaCoCo plugin configuration you would need to add an entry to the 'Exclusions' field. All pre-requisite files to make the page, and a preserved directory structure should be the output. So it should have my files and the compilation result stored somewhere right? The only files I could see in the last build for my job directory are : build. I wanted to zip some files as output of my jenkins pipeline Aug 4, 2022 · To get detailed information about the existing subfolders under a specific directory/repository, you can use the following format of execution. /tst . In that case ** should do the trick since it also matches path separators. I'm attempting to do this using the Jenkins sh step and using glob patterns, but I can't seem to get this to work. I want only to archive what is inside my projects debug folder. /S Displays files in specified directories and all subdirectories. Here the jenkinsfile: Sep 29, 2017 · I've confirmed that a file is present in the location and that the folder and files have full control rights in Windows. Feb 19, 2016 · Hello @BruceP yes the directory /home/vagrant/dist is in the remote machine, as #helloV says I have put remote_src=yes but the problem is that "copy" doesn't work with directorys, and inside the directory "dist" there is a file and a directory. Ant style pattern of file paths that should match. groovy However, I am not sure how I can reference this file if it is stored in the same directory as the Jenkinsfile. Still the groovy code only shows one entry and stops afterwards. Some MSDN site said you can use /S to delete the entire tree directory tree including the stated folder and the /Q turns it quiet i. eachFileMatch(~/. How do I do that? file; I'm trying to write a pipeline jenkins job that loop through the subfolder of a specific directory and launch something. A simple example Jenkinsfile would be: I use RAW format repository in my Nexus called myrepo. Note: Make sure that you in the the correct directory (workspace) using pwd() and dir(). So when I unstash. You can save this output to a temporary file, then extract all lines that start with 'd'; those will be the directories. java Jun 12, 2019 · We have a Jenkins pipeline and I want to zip multiple files(. Jenkins is running on Linux. And yes it falls back to its then enclosing workspace path (in this case default) when it exits dir block. What I am trying to accomplish is to check if any files have changed in a certain directory during a pull request in my Jenkinsfile setup. Lines that start with an 'f' are files. Be aware that this function cannot be used when multiple executors try to access the same directory on the same node simultaneously, as the dir step will create a new entry for the other executors to avoid workspace sharing. * because then, on Linux, you will likely miss files without a '. path } Jun 14, 2022 · How to list files under a folder using jenkins. I have only one jenkins where everything is running. The order of the list can be reversed. tar. eachFileRecurse (FileType. How can I do this? I want to do SCP from Windows Jenkins node to Linux server. Name and Description should be clear May 21, 2019 · I have some files in Jenkins work space. import groovy. But problem using this plugin is that all the files are inside an root folder. The number of files in the list may be greater t… May 9, 2019 · For a standard installation, details of the job are stored at /var/lib/jenkins/jobs. /test" sshPut remote: remote, from: '. zip has 0,5 GB and in longterm that folder will get full. The problem I'm having Jan 20, 2018 · Each sub folder will have . Hot Network Questions Review request: evolution of dragon "fire" Why does Cutter use a fireaxe to save a trapped Rest seems alright, only to mention that path "/some-dir" should be writable by jenkins user (user used to run jenkins daemon). git then after checkout all files of repository should be in MyFolder/* and NOT in MyFolder/xyz/*. The working folder of stage 'build' is the Foo@2 folder. readdir will give just the file names, you need to concat with the directory name to get the full path. name. py and . Dec 2, 2017 · I'm trying to set up a Jenkinsfile to run our CI pipeline. I need to put them into an Arraylist so I'm using Arrays. The problem is to access the filesystem. I've set a shared library and I'm able to get a specific file by using libraryResource: libraryResource("some_file. java files into . Ask Question Asked 2 years, But I want to list all the files inside 'MyScripts' folder next. I am Oct 5, 2021 · How to list files under a folder using jenkins. The directory structure is build/demo/**/*. Jun 4, 2018 · How to list files under a folder using jenkins. load script. yaml") How can get a list of all yaml files from this path? Dec 6, 2019 · I would like to add parameter in Jenkins job that would discover files in specific folder and by ticking some of list elements let me choose only those I need. For example, the javac task, which compiles a directory tree with . cfg) located in multiple directories within my workspace. File) of //the given directory and its subdirectories list. I don't see any reason for the dir command, so I suggest to remove it. General rule of thumb: Jun 17, 2023 · If the files are still there, then confirm that the setting of the Jenkins home directory matches what you expect. jfrog rt search my-repo/foo/* --recursive=false but this doesn't return any results, because the search command only returns files, not folders. So if my repository is xyz. Feb 1, 2021 · I think you miss the option Referenced parameters as in the screenshot: . FileType. def list = [] // Obtain all text files within the specified directory def folder = "C:\\temp\\jenkins\\workspace\\pollandExecute_new\\swqa_git" new File(folder). xml -maxdepth 2) ". size(); i++) { def filename Jun 27, 2023 · Hi, we want to run an executable against each file of a list of files, using a pool of agents (preferably specified by a label). One of the object names can be selected as build parameter. These 3 folders should be independent in regards to the build but should be in the same file directory. As a rule, after starting the build, Jenkins completely deleted the folder with the downloaded files and downloaded them again. gz $(find ${JENKINS_HOME}/jobs -name config. Some tasks use directory trees for the actions they perform. Basically, if you are at any folder in your system and you open cmd and exceute dir in windows, it will display all the files in it. pjs') Find files in the current working directory. The ls -alF confirms, that there are more than only one file inside the directory. A common use for the sticky bit is on folders such as "/tmp". FILES) {file -> list file } //Afterwards the list variable contains all files (java. I need a way to keep these files. Use case: Nov 29, 2016 · While using the Jenkins Folders Plugin, is there a way to get a list of all jobs (including jobs in folders and possible the folder path) simular to how list-jobs in the default CLI works? I have made a small PowerShell script to get info for the last build of every job in the default dashboard and export relevant info to excel. If no files are detected it will exit 0, i. xml Oct 28, 2019 · The Foo@2 Foo@2@tmp folders were created because the agent was defined 2 times. json. Mar 17, 2022 · I am trying simply to list all jobs under a folder (not view) with the python-jenkins package. 1. kgpfi kwoq indcqk ehelp aiqbf ola xfuh nrs fwrcvxc jjpcqs
{"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"}