pip install python-dateutil
sample_read_data
import json, time, datetime, math, csv, copy, sys
from dateutil.parser import parse
# % read worker attribute: worker_quality
worker_quality = {}
csvfile = open("worker_quality.csv", "r")
csvreader = csv.reader(csvfile)
header = next(csvreader) # 去除头行
for line in csvreader:
if float(line[1]) > 0.0:
worker_quality[int(line[0])] = float(line[1]) / 100.0
csvfile.close()
# % read project id
file = open("project_list.csv", "r")
project_list_lines = file.readlines()
file.close()
project_dir = "project/"
entry_dir = "entry/"
all_begin_time = parse("2018-01-01T0:0:0Z")
project_info = {}
entry_info = {}
limit = 24
industry_list = {}
for line in project_list_lines:
line = line.strip('\n').split(',')
project_id = int(line[0])
entry_count = int(line[1])
file = open(project_dir + "project_" + str(project_id) + ".txt", "r")
htmlcode = file.read()
file.close()
text = json.loads(htmlcode)
project_info[project_id] = {}
project_info[project_id]["sub_category"] = int(text["sub_category"]) #% project sub_category
project_info[project_id]["category"] = int(text["category"]) #% project category
project_info[project_id]["entry_count"] = int(text["entry_count"]) #% project answers in total
project_info[project_id]["start_date"] = parse(text["start_date"]) #% project start date
project_info[project_id]["deadline"] = parse(text["deadline"]) #% project end date
if text["industry"] not in industry_list:
industry_list[text["industry"]] = len(industry_list)
project_info[project_id]["industry"] = industry_list[text["industry"]] #% project domain
entry_info[project_id] = {}
k = 0
while k < entry_count:
file = open(entry_dir + "entry_" + str(project_id) + "_" + str(k) + ".txt", "r")
htmlcode = file.read()
file.close()
text = json.loads(htmlcode)
for item in text["results"]:
entry_number = int(item["entry_number"])
entry_info[project_id][entry_number] = {}
entry_info[project_id][entry_number]["entry_created_at"] = parse(item["entry_created_at"]) #% worker answer_time
entry_info[project_id][entry_number]["id"] = int(item["id"]) #% work_id,id为猜测参数,原参数为worker
k += limit
print("finish read_data")
text for project
{
"sub_category":17,
"title":"I AM FITNESS Template Powerpoint Presentation",
"industry":"physical-fitness",
"featured":false,
"status":"completed",
"deadline":"2018-01-02T15:14:23.901031Z",
"deadline_original":null,
"start_date":"2017-12-26T22:21:20.408368Z",
"category":5,
"nda_auto_approve":true,
"nda_portfolio_use_allowed":true,
"original_package":79,
"client_legal_name":"I AM FITNESS",
"client_legal_country":"us",
"one_to_one_negotiation_value":"0.00",
"one_to_one_creative":null,
"entry_ids":[
9940264,
9940049,
9940663,
9942277,
9942278,
9942281,
9941535,
9940292,
9941542,
9940127,
9942279,
9942275,
9942280,
9942576,
9942276,
9942335
],
"client_feedback":43.75,
"invoice_note":null,
"brief_answers":{
"company":"Wellness Coach",
"top_3":"Clean, smart, black and white",
"vision":"Clean template",
"select_fonts":[
"serif"
],
"how_presentation_used":"All 3 ways",
"industry":"physical-fitness",
"select_colors":[
[
"eeeeee",
"d0d0d0",
"b2b2b2",
"949494",
"777777",
"595959",
"3B3B3B",
"1D1D1D",
"000000"
]
],
"output":"powerpoint",
"anything_else":"www.iamfitnessss.com",
"initial_content":"Template Presentation - I need 20 pages including my logo in various designs and a template for my business"
},
"brief_questions":[
{
"description":"Please provide a 2-3 sentence summary of your project. This will be publicly visible, so don't share anything confidential.",
"name":"description",
"validations":[
"required"
],
"answer_label":"Project Summary",
"type":"textarea",
"label":"Summarize your project.",
"help":""
},
{
"validations":[
"required"
],
"help":"",
"name":"industry",
"options":[
{
"field":"advertising-and-marketing",
"label":"Advertising & Marketing"
},
{
"field":"agriculture",
"label":"Agriculture"
},
{
"field":"animal-pet",
"label":"Animal & Pet"
},
{
"field":"architectural",
"label":"Architectural"
},
{
"field":"art-design",
"label":"Art & Design"
},
{
"field":"automotive",
"label":"Automotive"
},
{
"field":"bar-nightclub",
"label":"Bar & Nightclub"
},
{
"field":"cleaning-maintenance",
"label":"Cleaning & Maintenance"
},
{
"field":"communications",
"label":"Communications"
},
{
"field":"community-non-profit",
"label":"Community & Non-Profit"
},
{
"field":"consulting-and-professional-services",
"label":"Consulting & Professional Services"
},
{
"field":"cosmetics-beauty",
"label":"Cosmetics & Beauty"
},
{
"field":"education-and-universities",
"label":"Education"
},
{
"field":"entertainment-and-sports",
"label":"Entertainment & Sports"
},
{
"field":"environmental",
"label":"Environmental"
},
{
"field":"fashion",
"label":"Fashion"
},
{
"field":"financial-services",
"label":"Financial Services"
},
{
"field":"food-and-beverage",
"label":"Food & Beverage"
},
{
"field":"games-recreational",
"label":"Games & Recreational"
},
{
"field":"government-and-municipal",
"label":"Government & Municipal"
},
{
"field":"health-care-and-biotech",
"label":"Health Care & Biotech"
},
{
"field":"home-furnishing",
"label":"Home Furnishing"
},
{
"field":"industrial",
"label":"Industrial"
},
{
"field":"internet",
"label":"Internet"
},
{
"field":"landscaping",
"label":"Landscaping"
},
{
"field":"legal",
"label":"Legal"
},
{
"field":"photography",
"label":"Photography"
},
{
"field":"physical-fitness",
"label":"Physical Fitness"
},
{
"field":"publishing-and-media",
"label":"Publishing & Media"
},
{
"field":"real-estate-and-construction",
"label":"Real Estate & Construction"
},
{
"field":"religious",
"label":"Religious"
},
{
"field":"retail",
"label":"Retail"
},
{
"field":"software-and-information-technology",
"label":"Software & Technology"
},
{
"field":"travel-hotel",
"label":"Travel & Hotel"
},
{
"field":"wedding-service",
"label":"Wedding Service"
},
{
"field":"other",
"label":"Other"
}
],
"answer_label":"Industry",
"type":"select",
"label":"What industry do you work in?",
"description":"Which industry most closely aligns with your company/organization?"
},
{
"description":"What do you do? Who is your target audience?",
"name":"company",
"validations":[
"required"
],
"answer_label":"About Your Company",
"type":"textarea",
"label":"Tell us about your company/organization.",
"help":"This more you share, the better your results will be."
},
{
"description":"Will it be delivered in person, on screen, projected?",
"name":"how_presentation_used",
"validations":[
"required"
],
"answer_label":"How presentation will be used",
"type":"textarea",
"label":"How will your presentation be used?",
"help":""
},
{
"validations":[
"required"
],
"help":"",
"name":"output",
"options":[
{
"field":"pdf",
"label":"PDF"
},
{
"field":"keynote",
"label":"Keynote"
},
{
"field":"powerpoint",
"label":"PowerPoint"
},
{
"field":"other",
"label":"Other"
}
],
"answer_label":"Output",
"type":"radio",
"label":"What is the desired output?",
"description":"What filetype do you need? Select all that apply."
},
{
"validations":[
"required"
],
"help":"",
"name":"select_colors",
"options":[
{
"colors":[
"ffcdd2",
"ef9a9a",
"e57373",
"ef5350",
"f44336",
"e53935",
"d32f2f",
"c62828",
"b71c1c"
],
"label":"Reds",
"name":"Red"
},
{
"colors":[
"F8BBD0",
"F48FB1",
"F06292",
"EC407A",
"E91E63",
"D81B60",
"C2185B",
"AD1457",
"880E4F"
],
"label":"Pinks",
"name":"Pink"
},
{
"colors":[
"D1C4E9",
"B39DDB",
"9575CD",
"7E57C2",
"673AB7",
"5E35B1",
"512DA8",
"4527A0",
"311B92"
],
"label":"Purples",
"name":"Purple"
},
{
"colors":[
"BBDEFB",
"90CAF9",
"64B5F6",
"42A5F5",
"2196F3",
"1E88E5",
"1976D2",
"1565C0",
"0D47A1"
],
"label":"Blues",
"name":"Blue"
},
{
"colors":[
"B2EBF2",
"80DEEA",
"4DD0E1",
"26C6DA",
"00BCD4",
"00ACC1",
"0097A7",
"00838F",
"006064"
],
"label":"Aquas",
"name":"Aqua"
},
{
"colors":[
"DCEDC8",
"C5E1A5",
"AED581",
"9CCC65",
"8BC34A",
"7CB342",
"689F38",
"558B2F",
"33691E"
],
"label":"Greens",
"name":"Green"
},
{
"colors":[
"FFF9C4",
"FFF59D",
"FFF176",
"FFEE58",
"FFEB3B",
"FDD835",
"FBC02D",
"F9A825",
"F57F17"
],
"label":"Yellows",
"name":"Yellow"
},
{
"colors":[
"FFE0B2",
"FFCC80",
"FFB74D",
"FFA726",
"FF9800",
"FB8C00",
"F57C00",
"EF6C00",
"E65100"
],
"label":"Oranges",
"name":"Orange"
},
{
"colors":[
"D7CCC8",
"BCAAA4",
"A1887F",
"8D6E63",
"795548",
"6D4C41",
"5D4037",
"4E342E",
"3E2723"
],
"label":"Browns",
"name":"Brown"
},
{
"colors":[
"eeeeee",
"d0d0d0",
"b2b2b2",
"949494",
"777777",
"595959",
"3B3B3B",
"1D1D1D",
"000000"
],
"label":"Greys",
"name":"Grey"
},
{
"colors":[
"f44336",
"4CAF50",
"2196F3",
"FFEB3B",
"673AB7",
"FF9800",
"00BCD4",
"795548",
"777777"
],
"label":"Designer's Choice",
"name":"Designer"
}
],
"answer_label":"Colors to Explore",
"type":"color-selector",
"label":"Which colors do you prefer?",
"description":"What colors do you want creatives to explore? Select up to 3."
},
{
"validations":[
"required"
],
"help":"",
"name":"select_fonts",
"options":[
{
"icon":"font-sans",
"field":"sans_serif",
"label":"Sans-serif"
},
{
"icon":"font-serif",
"field":"serif",
"label":"Serif"
},
{
"icon":"font-block",
"field":"block_serif",
"label":"Block Serif"
},
{
"icon":"font-script",
"field":"script",
"label":"Script"
},
{
"icon":"font-mono",
"field":"mono",
"label":"Mono"
},
{
"icon":"no-preference",
"field":"no_preference",
"label":"No Preference"
}
],
"answer_label":"Preferred Fonts",
"type":"multi-grid-select",
"label":"Which fonts do you prefer?",
"description":"Select all that apply."
},
{
"description":"Summarize the content you plan to upload, or list the specific content you need included, such as written copy, existing logo, photography, etc.",
"name":"initial_content",
"validations":[
"required"
],
"answer_label":"Content",
"type":"textarea",
"label":"What content should your presentation include?",
"help":"You can also upload a file in a later step."
},
{
"description":"What are the top 3 things you want to communicate through your presentation?",
"name":"top_3",
"validations":[
"required"
],
"answer_label":"Top 3 Things",
"type":"textarea",
"label":"What are your top 3 things?",
"help":"Examples: Modernity, Professionalism, Strength."
},
{
"description":"What does the winning presentation look like? Anything you don't want to see?",
"name":"vision",
"validations":[
"required"
],
"answer_label":"Vision",
"type":"textarea",
"label":"What is your vision for your presentation?",
"help":""
},
{
"description":"The more information, the better your results will be. Include links to things that inspired you, competitor information, or any other info. Remember to include any special file formats you will need.",
"name":"anything_else",
"validations":[
],
"answer_label":"Additional Info",
"type":"textarea",
"label":"Do you want to provide any additional info?",
"help":""
},
{
"description":"Share files like sketches, screenshots, examples or other reference material.",
"name":"file_upload",
"validations":[
],
"answer_label":"Files",
"type":"files",
"label":"Do you want to share any files?",
"help":""
}
],
"id":2892548,
"client":3064387,
"created_at":"2017-12-26T22:15:17.998456Z",
"updated_at":"2018-12-17T19:37:15.936835Z",
"slug":"i-am-fitness-template-powerpoint-presentation",
"entry_count":16,
"creative_count":4,
"unscored_entry_count":9,
"nda_pending_creative_count":0,
"creative_ids":[],
"watchers_count":8,
"average_score":3.3,
"entry_type":"image",
"is_one_to_one":false,
"is_legacy":false,
"one_to_one_negotiation_status":"not_started",
"total_awards":200,
"total_package_tips":0,
"assured":false,
"private_gallery":false,
"search_exclusion":false,
"nda_required":false,
"package_name":"Silver",
"message_stream_id":1304068,
"collaboration_allowed":false,
"platinum_only":false,
"elite_only":false,
"visible":true,
"billables":[],
"nda_manual_approval_allowed":false,
"elite_reservations":{},
"one_to_one_declined_creative_ids":[],
"project_thumbnail":"https://crowdspring3-production.s3.amazonaws.com/project_entries/fd/e6f9a4689ec942e88b657cd6186c8020",
"presentations_allowed":false,
"can_create_focus_group":true,
"give_back":false,
"removed_creative_ids":[],
"attachments_zip":"",
"attachments_zip_created_at":"",
"elite_participants":[],
"total_awards_and_tips":200,
"award_rules":[
{
"order":0,
"uuid":"eca7fbdb-2c4b-4a18-892c-696b6c7cf29f",
"id":303,
"feature":{
"common_name":null,
"fee_rules":[
{
"price":"15.00",
"start":200,
"id":320,
"price_calculation":"PERCENTAGE",
"end":null
},
{
"price":"0.00",
"start":0,
"id":319,
"price_calculation":"FLAT",
"end":200
}
],
"normal_price":null,
"active":true,
"default":true,
"pricing_algorithm":"first match",
"value":"200",
"id":346,
"included":true,
"price":"0.00",
"provides":[
{
"name":"Award",
"id":20,
"code":"AWARD"
}
],
"description":"",
"visible":true,
"value_display":null,
"overrides":[
],
"min":200,
"requires":null,
"read_only":false,
"fee_algorithm":"ranged",
"internal_name":"Presentation Award $200 (Silver)",
"options":[
],
"type":"free value",
"minimum_fee":null,
"position":1,
"group":null,
"name":"Award",
"pricing_rules":[
{
"price":"1.00",
"start":0,
"id":159,
"price_calculation":"UNITY",
"end":null
}
],
"max":null,
"fee":"0.00"
}
},
{
"order":1,
"uuid":"02b7f23f-76b8-49de-9fbc-3a79fe53ab40",
"id":304,
"feature":{
"common_name":null,
"fee_rules":[
{
"price":"15.00",
"start":200,
"id":304,
"price_calculation":"PERCENTAGE",
"end":null
},
{
"price":"15.00",
"start":0,
"id":303,
"price_calculation":"PERCENTAGE",
"end":200
}
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"200",
"id":338,
"included":false,
"price":"0.00",
"provides":[
{
"name":"Award",
"id":20,
"code":"AWARD"
}
],
"description":"",
"visible":false,
"value_display":null,
"overrides":[
],
"min":200,
"requires":null,
"read_only":false,
"fee_algorithm":"ranged",
"internal_name":"Presentation Silver $200 Extra Award",
"options":[
],
"type":"free value",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Award",
"pricing_rules":[
{
"price":"1.00",
"start":0,
"id":151,
"price_calculation":"UNITY",
"end":null
}
],
"max":null,
"fee":"0.00"
}
}
],
"features":[
{
"order":0,
"uuid":"7f8d7ae0-54e1-43c4-98a8-b2dd1a47823a",
"id":1599,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":true,
"default":true,
"pricing_algorithm":"first match",
"value":null,
"id":179,
"included":true,
"price":"99.00",
"provides":[
{
"name":"Fee",
"id":19,
"code":"FEE"
}
],
"description":"",
"visible":false,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":true,
"fee_algorithm":"first match",
"internal_name":"Fee $99 (Presentation Silver)",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Fee",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":0,
"uuid":"29b2b773-f179-4739-98ee-1cf2f800f7e8",
"id":1584,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":true,
"default":true,
"pricing_algorithm":"first match",
"value":"60",
"id":13,
"included":true,
"price":"0.00",
"provides":[
],
"description":"",
"visible":true,
"value_display":"~60",
"overrides":[
{
"name":"Designs to Expect",
"id":4,
"code":"DESIGNS_TO_EXPECT"
}
],
"min":null,
"requires":null,
"read_only":true,
"fee_algorithm":"first match",
"internal_name":"Designs to expect ~60",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Designs to expect",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":1,
"uuid":"65b3d166-7f6d-4aff-ae8d-0a8722024f48",
"id":1585,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":true,
"default":true,
"pricing_algorithm":"first match",
"value":"1",
"id":1,
"included":true,
"price":"0.00",
"provides":[
{
"name":"Money back guarantee",
"id":1,
"code":"MONEY_BACK_GUARANTEE"
}
],
"description":"If you're not completely happy with your design project, we'll promptly refund all your money. Promise.",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":null,
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Money back guarantee",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":2,
"uuid":"34f87766-d2aa-4c08-9d37-7c68e8759bd4",
"id":1586,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":true,
"default":true,
"pricing_algorithm":"first match",
"value":"0",
"id":10,
"included":true,
"price":"0.00",
"provides":[
{
"name":"Creatives",
"id":5,
"code":"CREATIVES"
}
],
"description":"we'll invite our entire community to participate in your project.",
"visible":true,
"value_display":"Unlimited",
"overrides":[
],
"min":null,
"requires":null,
"read_only":true,
"fee_algorithm":"first match",
"internal_name":"Creatives unlimited",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Creatives",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":3,
"uuid":"1aaf0627-d33e-4b34-bf7a-9071cc329acd",
"id":1587,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":true,
"default":true,
"pricing_algorithm":"first match",
"value":"1",
"id":63,
"included":true,
"price":"0.00",
"provides":[
{
"name":"Limited Focus Group",
"id":24,
"code":"FOCUS_GROUPS_LIMITED"
}
],
"description":"",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":true,
"fee_algorithm":"first match",
"internal_name":null,
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"One Focus Group",
"pricing_rules":[
],
"max":1,
"fee":"0.00"
}
},
{
"order":4,
"uuid":"0929b7c7-97c2-494d-b485-2a584ac0cfd1",
"id":1588,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":true,
"default":true,
"pricing_algorithm":"first match",
"value":"7",
"id":4,
"included":true,
"price":"0.00",
"provides":[
{
"name":"Length",
"id":3,
"code":"PROJECT_LENGTH"
}
],
"description":"",
"visible":false,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"7 day project - FREE",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"LENGTH",
"name":"7 day project",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":11,
"uuid":"26956bf9-ac5b-4864-ae90-984acbd672cd",
"id":1589,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"1",
"id":8,
"included":false,
"price":"79.00",
"provides":[
{
"name":"Length",
"id":3,
"code":"PROJECT_LENGTH"
}
],
"description":"",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"1 day project - $79",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"LENGTH",
"name":"1 day project",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":12,
"uuid":"af766492-645d-433c-9231-daee419a5048",
"id":1590,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"2",
"id":7,
"included":false,
"price":"59.00",
"provides":[
{
"name":"Length",
"id":3,
"code":"PROJECT_LENGTH"
}
],
"description":"",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"2 day project $59",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"LENGTH",
"name":"2 day project",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":13,
"uuid":"5f6a8e53-ccad-46da-98a1-a9d762f5c713",
"id":1591,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"3",
"id":5,
"included":false,
"price":"39.00",
"provides":[
{
"name":"Length",
"id":3,
"code":"PROJECT_LENGTH"
}
],
"description":"",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"3 day project - $39",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"LENGTH",
"name":"3 day project",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":20,
"uuid":"74d44b46-812d-45ce-9289-7e9616e23ab1",
"id":1593,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"1",
"id":66,
"included":false,
"price":"39.00",
"provides":[
{
"name":"Search Engine Exclusion",
"id":11,
"code":"SEARCH_EXCLUSION"
}
],
"description":"If you don’t want others to know about your project, hide it from search engines. Project titles can't be hidden, so please be sure that your project title doesn't contain any confidential information.",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"Search Exclusion - Optional",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Search Exclusion",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":20,
"uuid":"7980abba-5a07-4b9f-afb6-a5dd11ec3210",
"id":1592,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"1",
"id":33,
"included":false,
"price":"0.00",
"provides":[
{
"name":"Assure Your Award",
"id":16,
"code":"BUYER_ASSURED"
}
],
"description":"By assuring someone will win the award, you show creatives that you're a commited buyer.",
"visible":true,
"value_display":"FREE",
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"Assure Your Award - Optional",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Assure Your Award",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":20,
"uuid":"4d598324-a98a-4c87-a311-45fece547485",
"id":1594,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":null,
"id":68,
"included":false,
"price":"29.00",
"provides":[
{
"name":"Unlimited Focus Groups",
"id":10,
"code":"FOCUS_GROUPS"
}
],
"description":"",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"Unlimited Focus Groups - Optional",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":null,
"name":"Unlimited Focus Groups",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":30,
"uuid":"3bd34026-e7d0-4598-bf32-ad22d92bf5e3",
"id":1595,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"1",
"id":16,
"included":false,
"price":"69.00",
"provides":[
{
"name":"Starter Promotion (Twitter)",
"id":6,
"code":"STARTER_PROMO"
},
{
"name":"Post on Twitter",
"id":26,
"code":"POST_TWITTER"
}
],
"description":"<ul style='list-style: null;'>\r\n<li>Your project in lights - we\"ll tweet your project to a huge online community! </li>\r\n<li>The power of the social web at your command.</li>\r\n</ul>",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"Starter Promotion - Optional",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"PROMOTION",
"name":"Starter Promotion (Twitter)",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":31,
"uuid":"a8c6aa93-dc2d-4eff-b7bb-d6536649bcb7",
"id":1596,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"1",
"id":17,
"included":false,
"price":"49.00",
"provides":[
{
"name":"Basic Promotion",
"id":7,
"code":"BASIC_PROMO"
},
{
"name":"Featured Project",
"id":22,
"code":"FEATURED_PROJECT"
}
],
"description":"<ul style='list-style: null;'>\r\n<li><strong>25% more entries</strong> and <strong>27% more creatives</strong> on average.</li>\r\n<li>Highlighted listing on our Explore page to give your project more visibility.</li>\r\n</ul>",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"Basic Promotion - Optional",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"PROMOTION",
"name":"Basic Promotion",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":32,
"uuid":"5c4e4566-2f28-4bf0-b9f6-ec08d2bea58c",
"id":1597,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"1",
"id":19,
"included":false,
"price":"99.00",
"provides":[
{
"name":"Top Creatives Invited",
"id":28,
"code":"TOP_CREATIVES_INVITED"
},
{
"name":"Advanced Promotion",
"id":8,
"code":"ADVANCED_PROMO"
},
{
"name":"Featured Project",
"id":22,
"code":"FEATURED_PROJECT"
},
{
"name":"Include in promo newsletter",
"id":25,
"code":"INCLUDE_NEWSLETTER"
}
],
"description":"<ul style='list-style: null;'>\r\n<li><strong>80% more entries</strong> and <strong>70% more creatives</strong> on average.</li>\r\n<li>Everything in our Basic Promotion package.</li>\r\n<li>Inclusion in our Featured Projects newsletter sent to thousands of creatives.</li>\r\n<li>We automatically invite the top creatives in your category to your project.</li>\r\n</ul>",
"visible":true,
"value_display":null,
"overrides":[
],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"Advanced Promotion - Optional",
"options":[
],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"PROMOTION",
"name":"Advanced Promotion",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
},
{
"order":33,
"uuid":"c89e9901-6fdd-40a0-9ffa-d4664a095dba",
"id":1598,
"feature":{
"common_name":null,
"fee_rules":[
],
"normal_price":null,
"active":false,
"default":false,
"pricing_algorithm":"first match",
"value":"1",
"id":21,
"included":false,
"price":"139.00",
"provides":[
{
"name":"Ultimate Promotion",
"id":9,
"code":"ULTIMATE_PROMO"
},
{
"name":"Featured Project",
"id":22,
"code":"FEATURED_PROJECT"
},
{
"name":"Include in promo newsletter",
"id":25,
"code":"INCLUDE_NEWSLETTER"
},
{
"name":"Post on Twitter",
"id":26,
"code":"POST_TWITTER"
},
{
"name":"Top Creatives Invited",
"id":28,
"code":"TOP_CREATIVES_INVITED"
}
],
"description":"<ul style='list-style: null;'>\r\n<li>Our most popular promotion bundle. <span class='text-highlight'>Save 18%</span></li>\r\n<li>Includes everything in Starter, Basic and Advanced promotion packages.</li>\r\n</ul>",
"visible":true,
"value_display":null,
"overrides":[],
"min":null,
"requires":null,
"read_only":false,
"fee_algorithm":"first match",
"internal_name":"Ultimate Promotion - Optional",
"options":[],
"type":"simple",
"minimum_fee":null,
"position":0,
"group":"PROMOTION",
"name":"Ultimate Promotion",
"pricing_rules":[
],
"max":null,
"fee":"0.00"
}
}
],
"package_tips":[],
"client_username":"iamfitnessss",
"client_first_name":"Debbie",
"client_last_name":"Collins",
"client_avatar":"",
"collaborator_permissions":null,
"participants":[
"camisa15",
"imazing",
"smarikaahuja",
"studio1hub"
],
"one_to_one_creative_updated_at":null,
"one_to_one_creative_username":"",
"one_to_one_creative_first_name":"",
"one_to_one_creative_last_name":"",
"one_to_one_creative_avatar":"",
"one_to_one_creative_reputation":0,
"one_to_one_creative_is_platinum":false,
"one_to_one_creative_is_elite":false,
"one_to_one_creative_country":"",
"client_country":"us",
"nda_request_status":null,
"client_country_full_name":"United States",
"one_to_one_creative_country_full_name":"",
"client_date_joined":"2017-12-24T22:21:12.490567Z",
"elite_reservation_window_minutes":0
}
text for entry
{
"limit":24,
"count":83,
"next":24,
"previous":null,
"results":[
{
"id":24871,
"revisions":[
{
"id":24871,
"created_at":"2008-05-28T16:44:27+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":24871,
"description":"Blue Sky logo incorporating abstract ideas of a beaker, a though bubble, and a cloud, with shaded text.",
"score":4,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/2d/fac895a8ceed4d90b67ccc7a3b43b2d3.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/ea/6d7bdb782b094634bcb2ef11a96b4cc2.jpg"
],
"revision_number":65,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/2e/c3a0365726e144ffb882a780b34bd7bc.jpg"
}
],
"award_value":300,
"entry_created_at":"2008-05-28T16:44:27+00:00",
"updated_at":"2008-05-28T16:44:27+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":65,
"author":22944,
"finalist":true,
"winner":true,
"eliminated":false,
"entry_feedback":{
},
"author_username":"lightbox",
"entry_type":"image",
"offer_value":0
},
{
"id":25845,
"revisions":[
{
"id":25845,
"created_at":"2008-05-29T15:51:53+00:00",
"additional_costs":{
},
"width":801,
"new":false,
"entry":25845,
"description":"...",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/ed/c5f0cc2edaba43de8481499fc94964d8.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/52/0db68d5f522a45d8aeb9ed075a8c351c.jpg"
],
"revision_number":84,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/fb/52315ac4fc6c4691867069ed6e715b33.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T15:51:53+00:00",
"updated_at":"2008-05-29T15:51:53+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":84,
"author":25098,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"NancyCarterDesign",
"entry_type":"image",
"offer_value":0
},
{
"id":25766,
"revisions":[
{
"id":25766,
"created_at":"2008-05-29T14:33:49+00:00",
"additional_costs":{
},
"width":612,
"new":false,
"entry":25766,
"description":"Hi, I have submitted 5 different options for your review. \r\nI offer unlimited revisions until you are 100% happy!\r\n\r\nLet me know what you think!\r\n\r\nLaurie",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/fc/9e1479ff6d6640b38a33f5013ceefa8d.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/d7/893d4cb0fc314b9bbbcacccde071738d.jpg"
],
"revision_number":83,
"height":1080,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/1e/caec595aa1c1454d817056567bb29a3d.png"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T14:33:49+00:00",
"updated_at":"2008-05-29T14:33:49+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":83,
"author":8082,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"gardline",
"entry_type":"image",
"offer_value":0
},
{
"id":25748,
"revisions":[
{
"id":25748,
"created_at":"2008-05-29T14:17:29+00:00",
"additional_costs":{
},
"width":1667,
"new":false,
"entry":25748,
"description":"-",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/bf/50dda1bf219f4d869405059c3c3e2fd6.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/98/0044c169afdc4091bb7463f48390981e.jpg"
],
"revision_number":82,
"height":1667,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/92/a042267f44514083b0e6e706f27a5390.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T14:17:29+00:00",
"updated_at":"2008-05-29T14:17:29+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":82,
"author":14233,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"Su",
"entry_type":"image",
"offer_value":0
},
{
"id":25712,
"revisions":[
{
"id":25712,
"created_at":"2008-05-29T13:29:00+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":25712,
"description":"type exploration. color can change as well.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/b0/63b496cdd3034ed282037e4992a033e8.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/19/3fcc5de593994b2284b1aee73bcb17bd.jpg"
],
"revision_number":81,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/02/3ee4507995a74fb69d6096c37302d9e2.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T13:29:00+00:00",
"updated_at":"2008-05-29T13:29:00+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":81,
"author":15108,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"cbnc",
"entry_type":"image",
"offer_value":0
},
{
"id":25656,
"revisions":[
{
"id":25656,
"created_at":"2008-05-29T12:09:41+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":25656,
"description":"Using royalty free stock photography of the Northern Lights.\r\nLet me know if you want to see a more corporate typeface.",
"score":0,
"is_entirely_original":false,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/35/8d015e60a56142969aff1cf07ef33732.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/66/a4604d336d1e45a8b67dd360e8e91641.jpg"
],
"revision_number":80,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/be/bc1d40b998384c73abe4f19dc18c03bd.png"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T12:09:41+00:00",
"updated_at":"2008-05-29T12:09:41+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":80,
"author":20184,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"OpenHead",
"entry_type":"image",
"offer_value":0
},
{
"id":25648,
"revisions":[
{
"id":25648,
"created_at":"2008-05-29T11:43:31+00:00",
"additional_costs":{
},
"width":793,
"new":false,
"entry":25648,
"description":"2nd proposal. Rays of light forming a flask.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/b9/09896cedc8044cfd8f9cbbed56cb5198.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/da/4de452d1f85243ae960e1d177c5ab947.jpg"
],
"revision_number":79,
"height":708,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/0c/a17a8b548eb2482a9207acf078d385d0.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T11:43:31+00:00",
"updated_at":"2008-05-29T11:43:31+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":79,
"author":8108,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"Den-do",
"entry_type":"image",
"offer_value":0
},
{
"id":25633,
"revisions":[
{
"id":25633,
"created_at":"2008-05-29T11:32:35+00:00",
"additional_costs":{
},
"width":793,
"new":false,
"entry":25633,
"description":"My proposal.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/a8/373cb606ef7a45d3acf3f93bf66f6a77.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/c8/13f6d1c261904a03af893984864dea9c.jpg"
],
"revision_number":78,
"height":708,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/2b/f3dc7d7e32f441688a6544f6259860fd.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T11:32:35+00:00",
"updated_at":"2008-05-29T11:32:35+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":78,
"author":8108,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"Dendo",
"entry_type":"image",
"offer_value":0
},
{
"id":25511,
"revisions":[
{
"id":25511,
"created_at":"2008-05-29T08:22:02+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":25511,
"description":"A high tec kite symbol is used to reflect the freedom that BlueSky can give. This could be used in a wide variety of ways from nice flash animation to promotional items with real giveaway kites etc.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/47/3535aa38870242be9d8a8d1a9ddf6fca.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/ee/9ca80cce66e74cc0829d9f3b25859dfe.jpg"
],
"revision_number":77,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/25/fd0929ab880147178aef8e385c7c46d8.png"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T08:22:02+00:00",
"updated_at":"2008-05-29T08:22:02+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":77,
"author":19220,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"hollter",
"entry_type":"image",
"offer_value":0
},
{
"id":25509,
"revisions":[
{
"id":25509,
"created_at":"2008-05-29T08:17:28+00:00",
"additional_costs":{
},
"width":682,
"new":false,
"entry":25509,
"description":"Simple, elegant with the symbol representing a bird or butterfly taking off into the sky. Reflecting the way that BlueSky could take on and help to take off a business",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/80/8f84b73333864c068584c2e9f057a727.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/4a/b753c8fddb154622832d5d00294acbd3.jpg"
],
"revision_number":76,
"height":672,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/d3/12a6be88ecc74cfaa6b60c32636da8cf.png"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T08:17:28+00:00",
"updated_at":"2008-05-29T08:17:28+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":76,
"author":19220,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"hollter",
"entry_type":"image",
"offer_value":0
},
{
"id":25507,
"revisions":[
{
"id":25507,
"created_at":"2008-05-29T08:15:02+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":25507,
"description":"The idea behind this is that Blue Skys could lead to a brighter future for your company. Investing in someone is believing in what is on the horizon, that there will be a good outcome - I believe this idea reflects this.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/11/890e306b1ea04e3b8f7503abd1d40b36.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/5c/582f20817b7848e081a0830034eefe3f.jpg"
],
"revision_number":75,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/62/bce97235b2e943e7a1582d91492d46d3.png"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T08:15:02+00:00",
"updated_at":"2008-05-29T08:15:02+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":75,
"author":19220,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"hollter",
"entry_type":"image",
"offer_value":0
},
{
"id":25316,
"revisions":[
{
"id":25316,
"created_at":"2008-05-29T02:28:25+00:00",
"additional_costs":{
},
"width":852,
"new":false,
"entry":25316,
"description":"BLUESKAY",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/08/2f2ec4a1b8154ffa856b99c3fcc42f00.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/15/aa29b153d1d548578f1d34e1a79b0e20.jpg"
],
"revision_number":74,
"height":663,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/b9/e1706f738b8649a0964cc45dd39e13b8.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T02:28:25+00:00",
"updated_at":"2008-05-29T02:28:25+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":74,
"author":24024,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"djoki",
"entry_type":"image",
"offer_value":0
},
{
"id":25314,
"revisions":[
{
"id":25314,
"created_at":"2008-05-29T02:25:56+00:00",
"additional_costs":{
},
"width":852,
"new":false,
"entry":25314,
"description":"BLUESKAY",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/59/05ad1c0c0a8d45c49e4eda8af2f5d516.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/cd/c01569f75f964ff98fde1df6486d0b18.jpg"
],
"revision_number":73,
"height":663,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/dc/981bad7e76874b57bd3fec121116e0f2.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T02:25:56+00:00",
"updated_at":"2008-05-29T02:25:56+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":73,
"author":24024,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"djoki",
"entry_type":"image",
"offer_value":0
},
{
"id":25309,
"revisions":[
{
"id":25309,
"created_at":"2008-05-29T02:22:39+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":25309,
"description":"An alternative configuration of my previous entry.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/d9/890e16e5cb0343719982aee5058bade0.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/46/8cb510a010d34b418ec35a5aaa6e3a0f.jpg"
],
"revision_number":72,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/8b/702910409ca144ca9be2d89aeb8e7c42.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T02:22:39+00:00",
"updated_at":"2008-05-29T02:22:39+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":72,
"author":15640,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"jpfaraco",
"entry_type":"image",
"offer_value":0
},
{
"id":25307,
"revisions":[
{
"id":25307,
"created_at":"2008-05-29T02:22:31+00:00",
"additional_costs":{
},
"width":852,
"new":false,
"entry":25307,
"description":"BLUESKY",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/dd/52ae7ce3ad454c27afe5bb754b47f1ad.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/84/0f1d4e50c8c84c498f7dde10b98098f0.jpg"
],
"revision_number":71,
"height":663,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/3e/64f172eb7417467ead6333fc4538ad8c.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T02:22:31+00:00",
"updated_at":"2008-05-29T02:22:31+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":71,
"author":24024,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"djoki",
"entry_type":"image",
"offer_value":0
},
{
"id":25303,
"revisions":[
{
"id":25303,
"created_at":"2008-05-29T02:19:54+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":25303,
"description":"An abstract \"B\" inside a blue circle. A blue sky.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/42/efc5c7b5aebe42b883e5df1c0262e977.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/42/8fc7db21797d46cf9ce6a7456a875e56.jpg"
],
"revision_number":70,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/1b/170cdcd7544642ebaa3721cf7be2118e.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T02:19:54+00:00",
"updated_at":"2008-05-29T02:19:54+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":70,
"author":15640,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"jpfaraco",
"entry_type":"image",
"offer_value":0
},
{
"id":25270,
"revisions":[
{
"id":25270,
"created_at":"2008-05-29T01:11:51+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":25270,
"description":"Bluesky contest entry",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/f6/9241d324b13e4165856ff7621fb2b678.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/10/5764e5a19c0b4080b23f32b8dcee70ee.jpg"
],
"revision_number":69,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/c9/d90b338ff0fa43309d6d048c5e9258cc.png"
}
],
"award_value":null,
"entry_created_at":"2008-05-29T01:11:51+00:00",
"updated_at":"2008-05-29T01:11:51+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":69,
"author":8099,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"angrypuppy",
"entry_type":"image",
"offer_value":0
},
{
"id":24899,
"revisions":[
{
"id":24899,
"created_at":"2008-05-28T17:05:51+00:00",
"additional_costs":{
},
"width":533,
"new":false,
"entry":24899,
"description":"Logo idea.",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/a9/9966ad823ecf46ad889369b7c9bf6d10.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/da/b45c92d7fa3a4bfa87aa9bf7c3435c4c.jpg"
],
"revision_number":66,
"height":454,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/4e/17478b9e5b9240b29436674e4cb5263a.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-28T17:05:51+00:00",
"updated_at":"2008-05-28T17:05:51+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":66,
"author":20418,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"glowstars",
"entry_type":"image",
"offer_value":0
},
{
"id":24867,
"revisions":[
{
"id":24867,
"created_at":"2008-05-28T16:43:36+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":24867,
"description":"Blue Sky logo incorporating abstract ideas of a beaker, a though bubble, and a cloud",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/cf/972e23e2dbed4bf5adc1e929c1149638.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/c0/3b841e8835de4ecb836c04d1244bd560.jpg"
],
"revision_number":64,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/da/7eae5a16688b4bd8b2d1af8b9d08488c.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-28T16:43:36+00:00",
"updated_at":"2008-05-28T16:43:36+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":64,
"author":22944,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"lightbox",
"entry_type":"image",
"offer_value":0
},
{
"id":24714,
"revisions":[
{
"id":24714,
"created_at":"2008-05-28T14:44:08+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":24714,
"description":"Here's my entry",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/1c/d513261dd37a4734a7da07c4d5ed56e2.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/0c/dcb3822da24a410eac5e904bbefa9a92.jpg"
],
"revision_number":63,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/fe/4d788b7baccd483db76cbfef60234881.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-28T14:44:08+00:00",
"updated_at":"2008-05-28T14:44:08+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":63,
"author":20747,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"F599GTB",
"entry_type":"image",
"offer_value":0
},
{
"id":23693,
"revisions":[
{
"id":23693,
"created_at":"2008-05-27T22:34:37+00:00",
"additional_costs":{
},
"width":983,
"new":false,
"entry":23693,
"description":"thanks:)",
"score":4,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/f2/9e1f1f04f88f48fcbfb7f3313f0d859b.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/e3/d2507814e4434d2eaab1c323706dcd3c.jpg"
],
"revision_number":60,
"height":560,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/d8/0c65e138cfc74b719841746a87c8b6a6.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-27T22:34:37+00:00",
"updated_at":"2008-05-27T22:34:37+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":60,
"author":8112,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"tini1",
"entry_type":"image",
"offer_value":0
},
{
"id":23686,
"revisions":[
{
"id":23686,
"created_at":"2008-05-27T22:24:29+00:00",
"additional_costs":{
},
"width":800,
"new":false,
"entry":23686,
"description":"Hi this is another version. Here I've decided to present to you more imposing version of the logo. Hope you like it. Comments and feedback are welcome. Thanks",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/e8/6af6c4f2ceef4193a069f759336f9195.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/20/375bb337ddd742d5b4d8ee34aff1c708.jpg"
],
"revision_number":59,
"height":800,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/a6/5d3d035fb4ca4cdbbc43fb63c30a828a.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-27T22:24:29+00:00",
"updated_at":"2008-05-27T22:24:29+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":59,
"author":19472,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"baks",
"entry_type":"image",
"offer_value":0
},
{
"id":23676,
"revisions":[
{
"id":23676,
"created_at":"2008-05-27T22:16:35+00:00",
"additional_costs":{
},
"width":384,
"new":false,
"entry":23676,
"description":"feedback appreciated\")",
"score":0,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/6a/313bc54e148c48018229ce97d4d500bb.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/3e/dfc3d1b28ad64e288bc69a358ebf269a.jpg"
],
"revision_number":58,
"height":315,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/04/9da499f65f4f43668fe381937fbd08dc.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-27T22:16:35+00:00",
"updated_at":"2008-05-27T22:16:35+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":58,
"author":8112,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"tini1",
"entry_type":"image",
"offer_value":0
},
{
"id":23671,
"revisions":[
{
"id":23671,
"created_at":"2008-05-27T21:54:53+00:00",
"additional_costs":{
},
"width":520,
"new":false,
"entry":23671,
"description":":)",
"score":3,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/19/d3b45b71aed7499bbf0e0ab28f6e18cf.jpg",
"https://s3.amazonaws.com/crowdspring3-production/project_entries/bd/59b7089e5b3a4651b5fbb63da7845e3a.jpg"
],
"revision_number":57,
"height":309,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/69/291d73ee71ab4be8be6c3174cfbf1407.jpg"
}
],
"award_value":null,
"entry_created_at":"2008-05-27T21:54:53+00:00",
"updated_at":"2008-05-27T21:54:53+00:00",
"withdrawn":false,
"tip_value":0,
"withdrawn_by_admin":false,
"project":19393,
"entry_number":57,
"author":8112,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{
},
"author_username":"tini1",
"entry_type":"image",
"offer_value":0
}
]
}
{
"limit": 24,
"count": 317,
"next": 48,
"previous": 0,
"results": [
{
"entry_created_at": "2018-07-02T09:59:30.228987+00:00",
"author": 2518435,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/3b/d44802e58a4c4c479264f22019edabd8.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 3200,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/56/0927e26862eb4a5da15d57511c373f10",
"score": 0,
"is_entirely_original": true,
"description": ":)",
"id": 10048470,
"created_at": "2018-07-02T09:59:30.247357+00:00",
"revision_number": 305,
"height": 2176,
"entry": 10073783
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "and_1",
"tip_value": 0,
"eliminated": true,
"entry_number": 295,
"id": 10073783,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:15:20.730036+00:00"
},
{
"entry_created_at": "2018-07-02T09:05:59.347621+00:00",
"author": 2540258,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/5f/24e3843e97cd4074a94db24904706d61.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 900,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/cf/0e7b9bf8abc54cc8b717a8f701f6e1ad",
"score": 4,
"is_entirely_original": true,
"description": "",
"id": 10048443,
"created_at": "2018-07-02T09:05:59.366211+00:00",
"revision_number": 302,
"height": 900,
"entry": 10073752
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "logogod",
"tip_value": 0,
"eliminated": true,
"entry_number": 292,
"id": 10073752,
"entry_feedback": {
"feedback": "Looks good."
},
"winner": false,
"updated_at": "2018-07-02T18:13:30.870722+00:00"
},
{
"entry_created_at": "2018-07-02T09:04:56.850178+00:00",
"author": 3071186,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/9d/ec03ccdfe59a4ee0998ef32e6acf17cb.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1496,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/d9/5a7cb5d1199c4117949524c8eb9918e8",
"score": 0,
"is_entirely_original": true,
"description": "Hope you have herd of an expression \"as sure as sunrise\",I was guiding with that idea.\nHope you'll like it",
"id": 10048440,
"created_at": "2018-07-02T09:04:56.871005+00:00",
"revision_number": 301,
"height": 1061,
"entry": 10073749
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "Fisekovic",
"tip_value": 0,
"eliminated": true,
"entry_number": 291,
"id": 10073749,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:12:43.699980+00:00"
},
{
"entry_created_at": "2018-07-02T08:55:05.356449+00:00",
"author": 3069957,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/34/b9691744bdc6479b93c8b604a4a51047.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1199,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/b7/f5bddd31aaa04742b584b3b5517c0709",
"score": 0,
"is_entirely_original": true,
"description": ":)",
"id": 10048429,
"created_at": "2018-07-02T08:55:05.373852+00:00",
"revision_number": 300,
"height": 1199,
"entry": 10073737
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "MheaDeesign",
"tip_value": 0,
"eliminated": true,
"entry_number": 290,
"id": 10073737,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:12:32.971474+00:00"
},
{
"entry_created_at": "2018-07-02T08:30:46.242467+00:00",
"author": 2525252,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/32/ea0f51bddf224f0399c353320215a68f.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1148,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/a7/c310e367a5944b5da29c573896306f9b",
"score": 0,
"is_entirely_original": true,
"description": ":)",
"id": 10048410,
"created_at": "2018-07-02T08:30:46.261156+00:00",
"revision_number": 299,
"height": 882,
"entry": 10073712
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "alfatih",
"tip_value": 0,
"eliminated": true,
"entry_number": 289,
"id": 10073712,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:12:23.170055+00:00"
},
{
"entry_created_at": "2018-07-02T08:23:10.959371+00:00",
"author": 2525252,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/70/7007dd627cf44234a00f4674f57d04f5.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1148,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/7e/79f20726b66a44e397eacafc088b718e",
"score": 0,
"is_entirely_original": true,
"description": ":)",
"id": 10048401,
"created_at": "2018-07-02T08:23:10.978156+00:00",
"revision_number": 297,
"height": 882,
"entry": 10073703
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "alfatih",
"tip_value": 0,
"eliminated": true,
"entry_number": 287,
"id": 10073703,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:09:23.078977+00:00"
},
{
"entry_created_at": "2018-07-02T08:17:44.084751+00:00",
"author": 2525252,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/37/ef58dee940004c19828318a8fce3dcee.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1148,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/ce/da81dd7f0d98456ebe1fd4abf0d82fbe",
"score": 0,
"is_entirely_original": true,
"description": ":)",
"id": 10048399,
"created_at": "2018-07-02T08:17:44.101692+00:00",
"revision_number": 296,
"height": 882,
"entry": 10073701
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "alfatih",
"tip_value": 0,
"eliminated": true,
"entry_number": 286,
"id": 10073701,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:09:11.335907+00:00"
},
{
"entry_created_at": "2018-07-02T08:16:26.745262+00:00",
"author": 2525252,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/a6/2908a18c5b894643b205d4580ea08cb8.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1147,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/26/6c5a420dafad4f648867555a7f879f9e",
"score": 0,
"is_entirely_original": true,
"description": ":)",
"id": 10048397,
"created_at": "2018-07-02T08:16:26.764592+00:00",
"revision_number": 295,
"height": 882,
"entry": 10073698
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "alfatih",
"tip_value": 0,
"eliminated": true,
"entry_number": 285,
"id": 10073698,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:08:29.347362+00:00"
},
{
"entry_created_at": "2018-07-02T07:44:31.621043+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/a4/3b285efbe5c342d4a757340c88b3ab63.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/f7/6932b9184e2243bcaf513697653302ff",
"score": 0,
"is_entirely_original": true,
"description": "like a number one in your business....",
"id": 10048378,
"created_at": "2018-07-02T07:44:31.641253+00:00",
"revision_number": 292,
"height": 1241,
"entry": 10073675
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 282,
"id": 10073675,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:07:34.363909+00:00"
},
{
"entry_created_at": "2018-07-02T07:43:39.871609+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/c5/bf7bcbbc5bb0442a91f5ea98faa74cb2.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/2d/0db7109e07cb4f0093ba7a468823a29c",
"score": 0,
"is_entirely_original": true,
"description": "checked as assure...",
"id": 10048377,
"created_at": "2018-07-02T07:43:39.888929+00:00",
"revision_number": 291,
"height": 1241,
"entry": 10073674
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 281,
"id": 10073674,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:07:26.355842+00:00"
},
{
"entry_created_at": "2018-07-02T07:42:22.348831+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/e4/9ce31ea4abd648be9896147ade6ab3cb.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/ec/f655c2dc6f294710893dedb4f59da500",
"score": 0,
"is_entirely_original": true,
"description": "something simple and clean...",
"id": 10048376,
"created_at": "2018-07-02T07:42:22.366503+00:00",
"revision_number": 290,
"height": 1241,
"entry": 10073673
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 280,
"id": 10073673,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:07:17.919882+00:00"
},
{
"entry_created_at": "2018-07-02T07:34:30.982200+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/63/d9f1a9b1462d46a0b07747e2f12f9f04.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1751,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/66/b6f91e130ff141168aa3ac397c89e477",
"score": 0,
"is_entirely_original": true,
"description": "something new...",
"id": 10048370,
"created_at": "2018-07-02T07:34:31.000388+00:00",
"revision_number": 289,
"height": 1241,
"entry": 10073665
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 279,
"id": 10073665,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:07:07.456119+00:00"
},
{
"entry_created_at": "2018-07-02T07:31:46.206455+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/2e/90def94d9b594c349004647abcf78853.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/5d/5f0ab52567b14dfc9d382518a0e9df06",
"score": 0,
"is_entirely_original": true,
"description": "here is something simple and clean so it can be used in many ways...\nat the same time it's bold enough to stand for itself and represent what you are doing.",
"id": 10048367,
"created_at": "2018-07-02T07:31:46.224786+00:00",
"revision_number": 288,
"height": 1241,
"entry": 10073661
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 278,
"id": 10073661,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T09:39:08.051434+00:00"
},
{
"entry_created_at": "2018-07-02T07:26:09.222619+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/35/4808556fbf1d429181d020319477a404.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/13/047642074b67459dbdc00475792da512",
"score": 0,
"is_entirely_original": true,
"description": "something different...",
"id": 10048363,
"created_at": "2018-07-02T07:26:09.240635+00:00",
"revision_number": 287,
"height": 1241,
"entry": 10073656
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 277,
"id": 10073656,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:06:57.434029+00:00"
},
{
"entry_created_at": "2018-07-02T07:22:20.052119+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/84/aea48b90d21f4f4383113b32926b2f91.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/71/2134092810ef41219c027666ae8086d1",
"score": 0,
"is_entirely_original": true,
"description": "color are optional, off course",
"id": 10048358,
"created_at": "2018-07-02T07:22:20.069344+00:00",
"revision_number": 286,
"height": 1241,
"entry": 10073650
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 276,
"id": 10073650,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:06:48.148060+00:00"
},
{
"entry_created_at": "2018-07-02T07:17:49.855576+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/5b/e6fcbc2c61ee4f8da19ae04144a77824.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/41/1e5f7ba5fc0f48bb831b48c11c83e686",
"score": 0,
"is_entirely_original": true,
"description": "something abstract....",
"id": 10048354,
"created_at": "2018-07-02T07:17:49.873158+00:00",
"revision_number": 285,
"height": 1241,
"entry": 10073646
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 275,
"id": 10073646,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T18:06:32.325731+00:00"
},
{
"entry_created_at": "2018-07-02T07:13:34.320518+00:00",
"author": 2407019,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/d6/cf316149c6a247df94b2ca021752d1c5.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1754,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/89/c279b52f01044a71924d7dba06e61194",
"score": 0,
"is_entirely_original": true,
"description": "hi there,\nhere is some late entry and I hope it not to late....",
"id": 10048352,
"created_at": "2018-07-02T07:13:34.339362+00:00",
"revision_number": 284,
"height": 1241,
"entry": 10073642
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "srdjanplavsic",
"tip_value": 0,
"eliminated": true,
"entry_number": 274,
"id": 10073642,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T09:39:26.119999+00:00"
},
{
"entry_created_at": "2018-07-02T04:56:43.264043+00:00",
"author": 2518435,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/e5/be4d602646704cc582bb6225efeebe74.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1504,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/a5/0261866f9b004e82a22aed46f3a6e9d1",
"score": 4,
"is_entirely_original": true,
"description": "Halo sir,\nHow about my design?\nplease give me feedback\nthanks :)",
"id": 10048300,
"created_at": "2018-07-02T04:56:43.282265+00:00",
"revision_number": 281,
"height": 1494,
"entry": 10073587
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "and_1",
"tip_value": 0,
"eliminated": true,
"entry_number": 271,
"id": 10073587,
"entry_feedback": {
"feedback": "Looks good."
},
"winner": false,
"updated_at": "2018-07-02T18:06:03.858341+00:00"
},
{
"entry_created_at": "2018-07-02T04:51:22.963266+00:00",
"author": 2518435,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/11/cc6b1752e5b14d82a72ede2e4c6d1306.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1504,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/4e/5ffa53ad39ba416681690d4e9f97f018",
"score": 3,
"is_entirely_original": true,
"description": "Halo sir,\nHow about my design?\nplease give me feedback\nthanks :)",
"id": 10048298,
"created_at": "2018-07-02T04:51:22.989302+00:00",
"revision_number": 280,
"height": 1504,
"entry": 10073584
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "and_1",
"tip_value": 0,
"eliminated": true,
"entry_number": 270,
"id": 10073584,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T06:56:27.614250+00:00"
},
{
"entry_created_at": "2018-07-02T03:18:23.785127+00:00",
"author": 2540258,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/c2/644e81c8e90c480c95608b45be855917.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 900,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/49/3e029ea7c0e64f769d8520783f02a760",
"score": 3,
"is_entirely_original": true,
"description": "the General form of the composition is inscribed in the square, which gives a sense of confidence and reliability, there is also a dynamics of development up, reflects the innovation and digital industry, the overall composition is a rocket in flight, as is known in space can not make mistakes and the route to the goal should be laid as well thought-out without any mistakes, I tried to invest in the metaphor of the logo, when a new client appeals to you, he gets a perfectly thought-out course of development of his project \" from start to landing his rocket\"",
"id": 10048264,
"created_at": "2018-07-02T03:18:23.802327+00:00",
"revision_number": 277,
"height": 1495,
"entry": 10073545
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "logogod",
"tip_value": 0,
"eliminated": true,
"entry_number": 267,
"id": 10073545,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T07:27:56.081667+00:00"
},
{
"entry_created_at": "2018-07-02T02:44:12.561211+00:00",
"author": 2460080,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/31/f910a023bacf46a8b8db6bd0465c938d.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1800,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/9e/5023dee38f2447deb222fee28c85084c",
"score": 3,
"is_entirely_original": true,
"description": "Stong modern logo and one color variation. Logo concept comes from the idea of the legend of William Tell - great confidence and courage under pressure - and he hits the mark. I thought a story connected icon would open additional communication and promotional opportunities. Enjoy.",
"id": 10048255,
"created_at": "2018-07-02T02:44:12.578753+00:00",
"revision_number": 276,
"height": 1650,
"entry": 10073534
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "Dogwings",
"tip_value": 0,
"eliminated": true,
"entry_number": 266,
"id": 10073534,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T06:55:08.457433+00:00"
},
{
"entry_created_at": "2018-07-02T02:43:23.086177+00:00",
"author": 2460080,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/ca/dc2edaf9ee834cae87594ae2257ae1f4.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 1800,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/cc/2f1bbda5b7c04078a1307e3238441bd0",
"score": 3,
"is_entirely_original": true,
"description": "Stong modern logo and one color variation. Logo concept comes from the idea of the legend of William Tell - great confidence and courage under pressure - and he hits the mark. I thought a story connected icon would open additional communication and promotional opportunities. Enjoy.",
"id": 10048254,
"created_at": "2018-07-02T02:43:23.103949+00:00",
"revision_number": 275,
"height": 1650,
"entry": 10073533
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "Dogwings",
"tip_value": 0,
"eliminated": true,
"entry_number": 265,
"id": 10073533,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T07:27:47.351413+00:00"
},
{
"entry_created_at": "2018-07-02T02:10:45.915219+00:00",
"author": 2455264,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/cb/95350265960846678e4aebb0ac55cd11.jpg"
],
"additional_costs": {
"images": "",
"fonts": ""
},
"width": 800,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/59/b7b56e572c324ed7b034b91e2c3e0762",
"score": 3,
"is_entirely_original": true,
"description": "Assure_PMC_3",
"id": 10048241,
"created_at": "2018-07-02T02:10:45.932441+00:00",
"revision_number": 272,
"height": 800,
"entry": 10073517
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "tomblue",
"tip_value": 0,
"eliminated": true,
"entry_number": 262,
"id": 10073517,
"entry_feedback": {},
"winner": false,
"updated_at": "2018-07-02T06:56:04.121234+00:00"
},
{
"entry_created_at": "2018-07-02T01:20:33.197737+00:00",
"author": 2364454,
"withdrawn": false,
"project": 2900415,
"offer_value": 0,
"entry_type": "image",
"finalist": false,
"revisions": [
{
"thumbnails": [
"https://s3.amazonaws.com/crowdspring3-production/project_entries/89/1fccb21c505d4881af75fd31119d8f24.jpg"
],
"additional_costs": {
"images": "",
"fonts": 10
},
"width": 1355,
"new": false,
"image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/c2/7be28cfa3e1b4bc291dca46ad15523f8",
"score": 5,
"is_entirely_original": false,
"description": "",
"id": 10048228,
"created_at": "2018-07-02T01:20:33.223076+00:00",
"revision_number": 270,
"height": 1250,
"entry": 10073504
}
],
"withdrawn_by_admin": false,
"award_value": null,
"author_username": "diselgl",
"tip_value": 0,
"eliminated": true,
"entry_number": 260,
"id": 10073504,
"entry_feedback": {
"feedback": "Thank you"
},
"winner": false,
"updated_at": "2018-07-02T18:34:28.885254+00:00"
}
]
}
item for entry text
{
"id":9942250,
"revisions":[
{
"id":9930258,
"created_at":"2018-01-01T17:19:20.434476+00:00",
"additional_costs":{
"images":"",
"fonts":""
},
"width":1200,
"new":false,
"entry":9942250,
"description":"Dear CH,\n\nPlease find the attached conceptual logo for your business !\nwaiting for your feedback.\n\nThanks",
"score":4,
"is_entirely_original":true,
"thumbnails":[
"https://s3.amazonaws.com/crowdspring3-production/project_entries/6a/4a931356a7054ce1b2465e7eb255a78d.jpg"
],
"revision_number":2,
"height":1063,
"image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/de/3c7a09b4a6a44c4781887e91b27cd8d7"
}
],
"award_value":null,
"entry_created_at":"2018-01-01T17:19:20.408239+00:00",
"updated_at":"2018-10-01T21:34:42.443841+00:00",
"withdrawn":true,
"tip_value":0,
"withdrawn_by_admin":true,
"project":2892707,
"entry_number":1,
"author":2541384,
"finalist":false,
"winner":false,
"eliminated":false,
"entry_feedback":{},
"author_username":"destiny2487",
"entry_type":"image",
"offer_value":0
}