// **Group members profiles**   
// Each profile consists of (1) avatar, (2) username, (3) personal description, (4) number of "likes" the profile will receive throughout the interaction
	
window.others = {
  "posts" : [
      {
        "avatar": "avatars/others/george.png",
        "username": "Georgeee",
        "text": "I'm a 19 year old dude from Wisconsin (commence making fun of my accent). I love music and lately you can catch me listening to nothing but Joy Division, Echo & the bunnymen, and the smiths. Besides music I like learning languages, psychology, drawing, and writing.",
        "likes": [45000, 50000, 80000, 110000, 150000] //4
      },
      {
        "avatar": "avatars/others/sarah.png",
        "username": "Sarah",
        "text": "Let me introduce myself. I’m Sarah, 28, married, and mother of one wonderful baby. I graduated with a degree in history but now I'm an occupational assessor trying to help young people with disabilities to get a job. I’ve been trying to spend more time on my hobbies, such as singing, reading, and playing volleyball.",
        "likes": [12000, 15000, 35000, 100000, 110000, 20000] //6
      },
      {
        "avatar": "avatars/others/john.png",
        "username": "John",
        "text": "Hi there, I’m 25 years old, engaged. I'm a computer programmer at a school. Don’t worry: I don’t have the dusty haircut, oversized buttoned shirt and nerdie big frame glasses. Looking forward to working with you all. Cheers, John",
		"likes": [10000, 12000, 40000, 20000, 21000] //5
      },
      {
        "avatar": "avatars/others/anca.png",
        "username": "AncaD",
        "text": "I am a Psychology undergrad, interested in Natural Language processing. Also a lover of loose leaf tea and shows like Doctor Who. I’m curious about what this task is about.",
        "likes": [10000, 12000, 40000, 80000, 120000] //5
      },
      {
        "avatar": "avatars/others/niki.png",
        "username": "Nick",
        "text": "My life revolves around rock climbing. I started climbing when I was 12 (turning 21 soon) and usually climb 4-5 hours a day. Climbing never bores me, bc each time is different – the routes, the weather, my strength and endurance. Its great!",
        "likes": [40000, 450000, 90000, 100000, 150000, 155000] //6
      },
    {
        "avatar": "avatars/others/mary.png",
        "username": "Mary",
        "text": "My name s Mary. Im 22 and haev a dog named April. I like traveling, moives, and sports. I play a lot of card / board games to. Still in school, going for a economics degreee",
        "likes": [20000, 40000, 25000, 80000, 95000] //5
      },
      {
        "avatar": "avatars/others/lauren.png",
        "username": "Lauren",
        "text": "I’m Lauren, I love to hang out with friends and go shopping. I'm a part-time college student right now, working at the same time. Just doing some online studies here!",
        "likes": [10000, 12000, 20000, 38000, 40000, 88000] //6
      },
          {
        "avatar": "avatars/others/kim.png",
        "username": "Ky",
        "text": "Hey, guys. I'm 19. In my spare time, I like making all kinds of friends, having conversations about whatever, looking at paintings, doing makeup, reading, singing (show choir representtt!), making jewelry, and eating delicious food. Enjoy your day <3",
        "likes": [50000, 88000, 11000, 11500, 120000, 15000] //6
      },
      {
        "avatar": "avatars/others/arjen.png",
        "username": "Arjen",
        "text": "My name's Arjen, I study Art History. Also I like to use my free time to make all kinds of different things... I'm kind of a nerd too, I guess.",
        "likes": [12000, 11500, 30000, 40000, 88000, 120000] //6
      },
      {
        "avatar": "avatars/others/heather.png",
        "username": "Heather",
        "text": "Just now finishing up my first year of a difficult science curriculum in college. I also work at a cosmetics counter part-time and earn some money online in my free time. I have a lot planned for my future, and it's really exciting. I want to grow up and be a doctor with a family of lots of little dogs. It'll be fantastic.",
        "likes": [13000, 50000, 80000, 88000, 120000] //5
      },
      {
        "avatar": "avatars/others/jane.png",
        "username": "Jane",
        "text": "Dear all, my name is Jane. I have an important job interview soon. This is all I can think about these days. I hope you're doing well",
        "likes": [10000, 12000, 24000, 50000, 80000] //5
      },

    ]
  };
